diff --git a/.github/ISSUE_TEMPLATE/bugreport.yaml b/.github/ISSUE_TEMPLATE/bugreport.yaml index 87c82c982a..f31971ab2a 100644 --- a/.github/ISSUE_TEMPLATE/bugreport.yaml +++ b/.github/ISSUE_TEMPLATE/bugreport.yaml @@ -64,7 +64,7 @@ body: You can find your log file here: Windows: `%APPDATA%\cura\\cura.log` or usually `C:\Users\\\AppData\Roaming\cura\\cura.log` MacOS: `$USER/Library/Application Support/cura//cura.log` - Ubuntu/Linus: `$USER/.local/share/cura//cura.log` + Ubuntu/Linux: `$USER/.local/share/cura//cura.log` If the Cura user interface still starts, you can also reach this directory from the application menu in Help -> Show settings folder - type: checkboxes diff --git a/.gitignore b/.gitignore index 2b1cfc37e0..51b98e330e 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,8 @@ resources/i18n/en_7S resources/i18n/x-test resources/firmware resources/materials +resources/images/whats_new +resources/texts/whats_new CuraEngine.exe LC_MESSAGES .cache @@ -37,6 +39,7 @@ cura.desktop #Externally located plug-ins commonly installed by our devs. plugins/cura-big-flame-graph +plugins/cura-camera-position plugins/cura-god-mode-plugin plugins/cura-siemensnx-plugin plugins/CuraBlenderPlugin @@ -56,6 +59,11 @@ plugins/SettingsGuide plugins/SettingsGuide2 plugins/SVGToolpathReader plugins/X3GWriter +plugins/CuraFlatPack +plugins/CuraRemoteSupport +plugins/ModelCutter +plugins/PrintProfileCreator +plugins/MultiPrintPlugin #Build stuff CMakeCache.txt diff --git a/CITATION.cff b/CITATION.cff index 808a403e1a..b97fdf7c49 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -7,5 +7,5 @@ license: "LGPL-3.0" message: "If you use this software, please cite it using these metadata." repository-code: "https://github.com/ultimaker/cura/" title: "Ultimaker Cura" -version: "4.10.0" -... \ No newline at end of file +version: "4.12.0" +... diff --git a/CMakeLists.txt b/CMakeLists.txt index 9bdd48c317..7846e219e3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ configure_file(${CMAKE_SOURCE_DIR}/com.ultimaker.cura.desktop.in ${CMAKE_BINARY_ configure_file(cura/CuraVersion.py.in CuraVersion.py @ONLY) -# FIXME: The new FindPython3 finds the system's Python3.6 reather than the Python3.5 that we built for Cura's environment. +# FIXME: The new FindPython3 finds the system's Python3.6 rather than the Python3.5 that we built for Cura's environment. # So we're using the old method here, with FindPythonInterp for now. find_package(PythonInterp 3 REQUIRED) diff --git a/README.md b/README.md index 345a55d12f..1090d13aa7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Cura ==== Ultimaker Cura is a state-of-the-art slicer application to prepare your 3D models for printing with a 3D printer. With hundreds of settings and hundreds of community-managed print profiles, Ultimaker Cura is sure to lead your next project to a success. -![Screenshot](screenshot.png) +![Screenshot](cura-logo.PNG) Logging Issues ------------ @@ -34,7 +34,7 @@ Build scripts ------------- Please check out [cura-build](https://github.com/Ultimaker/cura-build) for detailed building instructions. -If you want to build the entire environment from scratch before building Cura as well, [cura-build-environment](https://github.com/Ultimaker/cura-build) might be a starting point before cura-build. (Again, see cura-build for more details.) +If you want to build the entire environment from scratch before building Cura as well, [cura-build-environment](https://github.com/Ultimaker/cura-build-environment) might be a starting point before cura-build. (Again, see cura-build for more details.) Running from Source ------------- diff --git a/cmake/CuraTests.cmake b/cmake/CuraTests.cmake index babb86f745..b8127a70ec 100644 --- a/cmake/CuraTests.cmake +++ b/cmake/CuraTests.cmake @@ -4,7 +4,7 @@ include(CTest) include(CMakeParseArguments) -# FIXME: The new FindPython3 finds the system's Python3.6 reather than the Python3.5 that we built for Cura's environment. +# FIXME: The new FindPython3 finds the system's Python3.6 rather than the Python3.5 that we built for Cura's environment. # So we're using the old method here, with FindPythonInterp for now. find_package(PythonInterp 3 REQUIRED) diff --git a/com.ultimaker.cura.appdata.xml b/com.ultimaker.cura.appdata.xml index 781631e84a..bdd25e5242 100644 --- a/com.ultimaker.cura.appdata.xml +++ b/com.ultimaker.cura.appdata.xml @@ -28,6 +28,6 @@ https://raw.githubusercontent.com/Ultimaker/Cura/master/screenshot.png - https://ultimaker.com/en/products/cura-software?utm_source=cura&utm_medium=software&utm_campaign=resources + https://ultimaker.com/software/ultimaker-cura?utm_source=cura&utm_medium=software&utm_campaign=cura-update-linux Cura diff --git a/cura-logo.PNG b/cura-logo.PNG new file mode 100644 index 0000000000..52da8203a8 Binary files /dev/null and b/cura-logo.PNG differ diff --git a/cura/API/Account.py b/cura/API/Account.py index a85e2c64c5..9f1184a0a0 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -1,15 +1,15 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from datetime import datetime -from typing import Optional, Dict, TYPE_CHECKING, Callable +from datetime import datetime from PyQt5.QtCore import QObject, pyqtSignal, pyqtSlot, pyqtProperty, QTimer, Q_ENUMS +from typing import Any, Optional, Dict, TYPE_CHECKING, Callable from UM.Logger import Logger from UM.Message import Message from UM.i18n import i18nCatalog from cura.OAuth2.AuthorizationService import AuthorizationService -from cura.OAuth2.Models import OAuth2Settings +from cura.OAuth2.Models import OAuth2Settings, UserProfile from cura.UltimakerCloud import UltimakerCloudConstants if TYPE_CHECKING: @@ -46,6 +46,12 @@ class Account(QObject): loginStateChanged = pyqtSignal(bool) """Signal emitted when user logged in or out""" + userProfileChanged = pyqtSignal() + """Signal emitted when new account information is available.""" + + additionalRightsChanged = pyqtSignal("QVariantMap") + """Signal emitted when a users additional rights change""" + accessTokenChanged = pyqtSignal() syncRequested = pyqtSignal() """Sync services may connect to this signal to receive sync triggers. @@ -59,7 +65,7 @@ class Account(QObject): updatePackagesEnabledChanged = pyqtSignal(bool) CLIENT_SCOPES = "account.user.read drive.backup.read drive.backup.write packages.download " \ - "packages.rating.read packages.rating.write connect.cluster.read connect.cluster.write " \ + "packages.rating.read packages.rating.write connect.cluster.read connect.cluster.write connect.material.write " \ "library.project.read library.project.write cura.printjob.read cura.printjob.write " \ "cura.mesh.read cura.mesh.write" @@ -68,12 +74,14 @@ class Account(QObject): self._application = application self._new_cloud_printers_detected = False - self._error_message = None # type: Optional[Message] + self._error_message: Optional[Message] = None self._logged_in = False + self._user_profile: Optional[UserProfile] = None + self._additional_rights: Dict[str, Any] = {} self._sync_state = SyncState.IDLE self._manual_sync_enabled = False self._update_packages_enabled = False - self._update_packages_action = None # type: Optional[Callable] + self._update_packages_action: Optional[Callable] = None self._last_sync_str = "-" self._callback_port = 32118 @@ -99,7 +107,7 @@ class Account(QObject): self._update_timer.setSingleShot(True) self._update_timer.timeout.connect(self.sync) - self._sync_services = {} # type: Dict[str, int] + self._sync_services: Dict[str, int] = {} """contains entries "service_name" : SyncState""" def initialize(self) -> None: @@ -192,12 +200,17 @@ class Account(QObject): self._logged_in = logged_in self.loginStateChanged.emit(logged_in) if logged_in: + self._authorization_service.getUserProfile(self._onProfileChanged) self._setManualSyncEnabled(False) self._sync() else: if self._update_timer.isActive(): self._update_timer.stop() + def _onProfileChanged(self, profile: Optional[UserProfile]) -> None: + self._user_profile = profile + self.userProfileChanged.emit() + def _sync(self) -> None: """Signals all sync services to start syncing @@ -239,32 +252,28 @@ class Account(QObject): return self._authorization_service.startAuthorizationFlow(force_logout_before_login) - @pyqtProperty(str, notify=loginStateChanged) + @pyqtProperty(str, notify = userProfileChanged) def userName(self): - user_profile = self._authorization_service.getUserProfile() - if not user_profile: - return None - return user_profile.username + if not self._user_profile: + return "" + return self._user_profile.username - @pyqtProperty(str, notify = loginStateChanged) + @pyqtProperty(str, notify = userProfileChanged) def profileImageUrl(self): - user_profile = self._authorization_service.getUserProfile() - if not user_profile: - return None - return user_profile.profile_image_url + if not self._user_profile: + return "" + return self._user_profile.profile_image_url @pyqtProperty(str, notify=accessTokenChanged) def accessToken(self) -> Optional[str]: return self._authorization_service.getAccessToken() - @pyqtProperty("QVariantMap", notify = loginStateChanged) + @pyqtProperty("QVariantMap", notify = userProfileChanged) def userProfile(self) -> Optional[Dict[str, Optional[str]]]: """None if no user is logged in otherwise the logged in user as a dict containing containing user_id, username and profile_image_url """ - - user_profile = self._authorization_service.getUserProfile() - if not user_profile: + if not self._user_profile: return None - return user_profile.__dict__ + return self._user_profile.__dict__ @pyqtProperty(str, notify=lastSyncDateTimeChanged) def lastSyncDateTime(self) -> str: @@ -301,3 +310,14 @@ class Account(QObject): return # Nothing to do, user isn't logged in. self._authorization_service.deleteAuthData() + + def updateAdditionalRight(self, **kwargs) -> None: + """Update the additional rights of the account. + The argument(s) are the rights that need to be set""" + self._additional_rights.update(kwargs) + self.additionalRightsChanged.emit(self._additional_rights) + + @pyqtProperty("QVariantMap", notify = additionalRightsChanged) + def additionalRights(self) -> Dict[str, Any]: + """A dictionary which can be queried for additional account rights.""" + return self._additional_rights diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py index a23bc9332e..f367f61cc7 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. # --------- @@ -13,7 +13,7 @@ DEFAULT_CURA_DEBUG_MODE = False # Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for # example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the # CuraVersion.py.in template. -CuraSDKVersion = "7.6.0" +CuraSDKVersion = "7.9.0" try: from cura.CuraVersion import CuraAppName # type: ignore @@ -46,6 +46,10 @@ except ImportError: # Various convenience flags indicating what kind of Cura build it is. __ENTERPRISE_VERSION_TYPE = "enterprise" IsEnterpriseVersion = CuraBuildType.lower() == __ENTERPRISE_VERSION_TYPE +IsAlternateVersion = CuraBuildType.lower() not in [DEFAULT_CURA_BUILD_TYPE, __ENTERPRISE_VERSION_TYPE] +# NOTE: IsAlternateVersion is to make it possibile to have 'non-numbered' versions, at least as presented to the user. +# (Internally, it'll still have some sort of version-number, but the user is never meant to see it in the GUI). +# Warning: This will also change (some of) the icons/splash-screen to the 'work in progress' alternatives! try: from cura.CuraVersion import CuraAppDisplayName # type: ignore diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index fdac63cd9d..43d4d7f8a8 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -40,7 +40,7 @@ def findNodePlacement(nodes_to_arrange: List["SceneNode"], build_volume: "BuildV machine_width = build_volume.getWidth() machine_depth = build_volume.getDepth() - build_plate_bounding_box = Box(machine_width * factor, machine_depth * factor) + build_plate_bounding_box = Box(int(machine_width * factor), int(machine_depth * factor)) if fixed_nodes is None: fixed_nodes = [] @@ -91,7 +91,7 @@ def findNodePlacement(nodes_to_arrange: List["SceneNode"], build_volume: "BuildV if hull_polygon is not None and hull_polygon.getPoints() is not None and len(hull_polygon.getPoints()) > 2: # numpy array has to be explicitly checked against None for point in hull_polygon.getPoints(): - converted_points.append(Point(point[0] * factor, point[1] * factor)) + converted_points.append(Point(int(point[0] * factor), int(point[1] * factor))) item = Item(converted_points) item.markAsFixedInBin(0) node_items.append(item) @@ -110,18 +110,11 @@ def findNodePlacement(nodes_to_arrange: List["SceneNode"], build_volume: "BuildV return found_solution_for_all, node_items -def arrange(nodes_to_arrange: List["SceneNode"], build_volume: "BuildVolume", fixed_nodes: Optional[List["SceneNode"]] = None, factor = 10000, add_new_nodes_in_scene: bool = False) -> bool: - """ - Find placement for a set of scene nodes, and move them by using a single grouped operation. - :param nodes_to_arrange: The list of nodes that need to be moved. - :param build_volume: The build volume that we want to place the nodes in. It gets size & disallowed areas from this. - :param fixed_nodes: List of nods that should not be moved, but should be used when deciding where the others nodes - are placed. - :param factor: The library that we use is int based. This factor defines how accuracte we want it to be. - :param add_new_nodes_in_scene: Whether to create new scene nodes before applying the transformations and rotations - - :return: found_solution_for_all: Whether the algorithm found a place on the buildplate for all the objects - """ +def createGroupOperationForArrange(nodes_to_arrange: List["SceneNode"], + build_volume: "BuildVolume", + fixed_nodes: Optional[List["SceneNode"]] = None, + factor = 10000, + add_new_nodes_in_scene: bool = False) -> Tuple[GroupedOperation, int]: scene_root = Application.getInstance().getController().getScene().getRoot() found_solution_for_all, node_items = findNodePlacement(nodes_to_arrange, build_volume, fixed_nodes, factor) @@ -143,6 +136,27 @@ def arrange(nodes_to_arrange: List["SceneNode"], build_volume: "BuildVolume", fi grouped_operation.addOperation( TranslateOperation(node, Vector(200, node.getWorldPosition().y, -not_fit_count * 20), set_position = True)) not_fit_count += 1 - grouped_operation.push() - return found_solution_for_all + return grouped_operation, not_fit_count + + +def arrange(nodes_to_arrange: List["SceneNode"], + build_volume: "BuildVolume", + fixed_nodes: Optional[List["SceneNode"]] = None, + factor = 10000, + add_new_nodes_in_scene: bool = False) -> bool: + """ + Find placement for a set of scene nodes, and move them by using a single grouped operation. + :param nodes_to_arrange: The list of nodes that need to be moved. + :param build_volume: The build volume that we want to place the nodes in. It gets size & disallowed areas from this. + :param fixed_nodes: List of nods that should not be moved, but should be used when deciding where the others nodes + are placed. + :param factor: The library that we use is int based. This factor defines how accuracte we want it to be. + :param add_new_nodes_in_scene: Whether to create new scene nodes before applying the transformations and rotations + + :return: found_solution_for_all: Whether the algorithm found a place on the buildplate for all the objects + """ + + grouped_operation, not_fit_count = createGroupOperationForArrange(nodes_to_arrange, build_volume, fixed_nodes, factor, add_new_nodes_in_scene) + grouped_operation.push() + return not_fit_count == 0 diff --git a/cura/Backups/Backup.py b/cura/Backups/Backup.py index 85510e6b4c..a5fc3044ce 100644 --- a/cura/Backups/Backup.py +++ b/cura/Backups/Backup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import io @@ -168,7 +168,10 @@ class Backup: preferences_file = Resources.getPath(Resources.Preferences, "{}.cfg".format(preferences_file_name)) backup_preferences_file = os.path.join(version_data_dir, "{}.cfg".format(preferences_file_name)) Logger.log("d", "Moving preferences file from %s to %s", backup_preferences_file, preferences_file) - shutil.move(backup_preferences_file, preferences_file) + try: + shutil.move(backup_preferences_file, preferences_file) + except EnvironmentError as e: + Logger.error(f"Unable to back-up preferences file: {type(e)} - {str(e)}") # Read the preferences from the newly restored configuration (or else the cached Preferences will override the restored ones) self._application.readPreferencesFromConfiguration() @@ -178,8 +181,7 @@ class Backup: return extracted - @staticmethod - def _extractArchive(archive: "ZipFile", target_path: str) -> bool: + def _extractArchive(self, archive: "ZipFile", target_path: str) -> bool: """Extract the whole archive to the given target path. :param archive: The archive as ZipFile. @@ -198,11 +200,17 @@ class Backup: Resources.factoryReset() Logger.log("d", "Extracting backup to location: %s", target_path) name_list = archive.namelist() + ignore_string = re.compile("|".join(self.IGNORED_FILES + self.IGNORED_FOLDERS)) for archive_filename in name_list: + if ignore_string.search(archive_filename): + Logger.warning(f"File ({archive_filename}) in archive that doesn't fit current backup policy; ignored.") + continue try: archive.extract(archive_filename, target_path) except (PermissionError, EnvironmentError): Logger.logException("e", f"Unable to extract the file {archive_filename} from the backup due to permission or file system errors.") + except UnicodeEncodeError: + Logger.error(f"Unable to extract the file {archive_filename} because of an encoding error.") CuraApplication.getInstance().processEvents() return True diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index cf397e395e..d039a3c68f 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -6,6 +6,7 @@ import math from typing import List, Optional, TYPE_CHECKING, Any, Set, cast, Iterable, Dict +from UM.Logger import Logger from UM.Mesh.MeshData import MeshData from UM.Mesh.MeshBuilder import MeshBuilder @@ -65,12 +66,13 @@ class BuildVolume(SceneNode): self._height = 0 # type: float self._depth = 0 # type: float self._shape = "" # type: str + self._scale_vector = Vector(1.0, 1.0, 1.0) self._shader = None self._origin_mesh = None # type: Optional[MeshData] self._origin_line_length = 20 - self._origin_line_width = 1.5 + self._origin_line_width = 1 self._enabled = False self._grid_mesh = None # type: Optional[MeshData] @@ -289,7 +291,7 @@ class BuildVolume(SceneNode): # Mark the node as outside build volume if the set extruder is disabled extruder_position = node.callDecoration("getActiveExtruderPosition") try: - if not self._global_container_stack.extruderList[int(extruder_position)].isEnabled: + if not self._global_container_stack.extruderList[int(extruder_position)].isEnabled and not node.callDecoration("isGroup"): node.setOutsideBuildArea(True) continue except IndexError: # Happens when the extruder list is too short. We're not done building the printer in memory yet. @@ -512,6 +514,13 @@ class BuildVolume(SceneNode): self._disallowed_area_size = max(size, self._disallowed_area_size) return mb.build() + def _updateScaleFactor(self) -> None: + if not self._global_container_stack: + return + scale_xy = 100.0 / max(100.0, self._global_container_stack.getProperty("material_shrinkage_percentage_xy", "value")) + scale_z = 100.0 / max(100.0, self._global_container_stack.getProperty("material_shrinkage_percentage_z" , "value")) + self._scale_vector = Vector(scale_xy, scale_xy, scale_z) + def rebuild(self) -> None: """Recalculates the build volume & disallowed areas.""" @@ -553,9 +562,12 @@ class BuildVolume(SceneNode): self._error_mesh = self._buildErrorMesh(min_w, max_w, min_h, max_h, min_d, max_d, disallowed_area_height) + self._updateScaleFactor() + self._volume_aabb = AxisAlignedBox( - minimum = Vector(min_w, min_h - 1.0, min_d), - maximum = Vector(max_w, max_h - self._raft_thickness - self._extra_z_clearance, max_d)) + minimum = Vector(min_w, min_h - 1.0, min_d).scale(self._scale_vector), + maximum = Vector(max_w, max_h - self._raft_thickness - self._extra_z_clearance, max_d).scale(self._scale_vector) + ) bed_adhesion_size = self.getEdgeDisallowedSize() @@ -563,15 +575,15 @@ class BuildVolume(SceneNode): # This is probably wrong in all other cases. TODO! # The +1 and -1 is added as there is always a bit of extra room required to work properly. scale_to_max_bounds = AxisAlignedBox( - minimum = Vector(min_w + bed_adhesion_size + 1, min_h, min_d + self._disallowed_area_size - bed_adhesion_size + 1), - maximum = Vector(max_w - bed_adhesion_size - 1, max_h - self._raft_thickness - self._extra_z_clearance, max_d - self._disallowed_area_size + bed_adhesion_size - 1) + minimum = Vector(min_w + bed_adhesion_size + 1, min_h, min_d + self._disallowed_area_size - bed_adhesion_size + 1).scale(self._scale_vector), + maximum = Vector(max_w - bed_adhesion_size - 1, max_h - self._raft_thickness - self._extra_z_clearance, max_d - self._disallowed_area_size + bed_adhesion_size - 1).scale(self._scale_vector) ) self._application.getController().getScene()._maximum_bounds = scale_to_max_bounds # type: ignore self.updateNodeBoundaryCheck() - def getBoundingBox(self): + def getBoundingBox(self) -> Optional[AxisAlignedBox]: return self._volume_aabb def getRaftThickness(self) -> float: @@ -589,6 +601,7 @@ class BuildVolume(SceneNode): if self._adhesion_type == "raft": self._raft_thickness = ( self._global_container_stack.getProperty("raft_base_thickness", "value") + + self._global_container_stack.getProperty("raft_interface_layers", "value") * self._global_container_stack.getProperty("raft_interface_thickness", "value") + self._global_container_stack.getProperty("raft_surface_layers", "value") * self._global_container_stack.getProperty("raft_surface_thickness", "value") + @@ -632,18 +645,18 @@ class BuildVolume(SceneNode): for extruder in extruders: extruder.propertyChanged.connect(self._onSettingPropertyChanged) - self._width = self._global_container_stack.getProperty("machine_width", "value") + self._width = self._global_container_stack.getProperty("machine_width", "value") * self._scale_vector.x machine_height = self._global_container_stack.getProperty("machine_height", "value") if self._global_container_stack.getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1: - self._height = min(self._global_container_stack.getProperty("gantry_height", "value"), machine_height) - if self._height < machine_height: + self._height = min(self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height) + if self._height < (machine_height * self._scale_vector.z): self._build_volume_message.show() else: self._build_volume_message.hide() else: self._height = self._global_container_stack.getProperty("machine_height", "value") self._build_volume_message.hide() - self._depth = self._global_container_stack.getProperty("machine_depth", "value") + self._depth = self._global_container_stack.getProperty("machine_depth", "value") * self._scale_vector.y self._shape = self._global_container_stack.getProperty("machine_shape", "value") self._updateDisallowedAreas() @@ -677,18 +690,18 @@ class BuildVolume(SceneNode): if setting_key == "print_sequence": machine_height = self._global_container_stack.getProperty("machine_height", "value") if self._application.getGlobalContainerStack().getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1: - self._height = min(self._global_container_stack.getProperty("gantry_height", "value"), machine_height) - if self._height < machine_height: + self._height = min(self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height) + if self._height < (machine_height * self._scale_vector.z): self._build_volume_message.show() else: self._build_volume_message.hide() else: - self._height = self._global_container_stack.getProperty("machine_height", "value") + self._height = self._global_container_stack.getProperty("machine_height", "value") * self._scale_vector.z self._build_volume_message.hide() update_disallowed_areas = True # sometimes the machine size or shape settings are adjusted on the active machine, we should reflect this - if setting_key in self._machine_settings: + if setting_key in self._machine_settings or setting_key in self._material_size_settings: self._updateMachineSizeProperties() update_extra_z_clearance = True update_disallowed_areas = True @@ -737,9 +750,10 @@ class BuildVolume(SceneNode): def _updateMachineSizeProperties(self) -> None: if not self._global_container_stack: return - self._height = self._global_container_stack.getProperty("machine_height", "value") - self._width = self._global_container_stack.getProperty("machine_width", "value") - self._depth = self._global_container_stack.getProperty("machine_depth", "value") + self._updateScaleFactor() + self._height = self._global_container_stack.getProperty("machine_height", "value") * self._scale_vector.z + self._width = self._global_container_stack.getProperty("machine_width", "value") * self._scale_vector.x + self._depth = self._global_container_stack.getProperty("machine_depth", "value") * self._scale_vector.y self._shape = self._global_container_stack.getProperty("machine_shape", "value") def _updateDisallowedAreasAndRebuild(self): @@ -756,6 +770,14 @@ class BuildVolume(SceneNode): self._extra_z_clearance = self._calculateExtraZClearance(ExtruderManager.getInstance().getUsedExtruderStacks()) self.rebuild() + def _scaleAreas(self, result_areas: List[Polygon]) -> None: + if self._global_container_stack is None: + return + for i, polygon in enumerate(result_areas): + result_areas[i] = polygon.scale( + 100.0 / max(100.0, self._global_container_stack.getProperty("material_shrinkage_percentage_xy", "value")) + ) + def _updateDisallowedAreas(self) -> None: if not self._global_container_stack: return @@ -811,9 +833,11 @@ class BuildVolume(SceneNode): self._disallowed_areas = [] for extruder_id in result_areas: + self._scaleAreas(result_areas[extruder_id]) self._disallowed_areas.extend(result_areas[extruder_id]) self._disallowed_areas_no_brim = [] for extruder_id in result_areas_no_brim: + self._scaleAreas(result_areas_no_brim[extruder_id]) self._disallowed_areas_no_brim.extend(result_areas_no_brim[extruder_id]) def _computeDisallowedAreasPrinted(self, used_extruders): @@ -825,10 +849,10 @@ class BuildVolume(SceneNode): """ result = {} - adhesion_extruder = None #type: ExtruderStack + skirt_brim_extruder: ExtruderStack = None for extruder in used_extruders: - if int(extruder.getProperty("extruder_nr", "value")) == int(self._global_container_stack.getProperty("adhesion_extruder_nr", "value")): - adhesion_extruder = extruder + if int(extruder.getProperty("extruder_nr", "value")) == int(self._global_container_stack.getProperty("skirt_brim_extruder_nr", "value")): + skirt_brim_extruder = extruder result[extruder.getId()] = [] # Currently, the only normally printed object is the prime tower. @@ -842,11 +866,11 @@ class BuildVolume(SceneNode): prime_tower_x = prime_tower_x - machine_width / 2 #Offset by half machine_width and _depth to put the origin in the front-left. prime_tower_y = prime_tower_y + machine_depth / 2 - if adhesion_extruder is not None and self._global_container_stack.getProperty("prime_tower_brim_enable", "value") and self._global_container_stack.getProperty("adhesion_type", "value") != "raft": + if skirt_brim_extruder is not None and self._global_container_stack.getProperty("prime_tower_brim_enable", "value") and self._global_container_stack.getProperty("adhesion_type", "value") != "raft": brim_size = ( - adhesion_extruder.getProperty("brim_line_count", "value") * - adhesion_extruder.getProperty("skirt_brim_line_width", "value") / 100.0 * - adhesion_extruder.getProperty("initial_layer_line_width_factor", "value") + skirt_brim_extruder.getProperty("brim_line_count", "value") * + skirt_brim_extruder.getProperty("skirt_brim_line_width", "value") / 100.0 * + skirt_brim_extruder.getProperty("initial_layer_line_width_factor", "value") ) prime_tower_x -= brim_size prime_tower_y += brim_size @@ -1077,13 +1101,18 @@ class BuildVolume(SceneNode): # with the adhesion extruder, but it also prints one extra line by all other extruders. As such, the # setting does *not* have a limit_to_extruder setting (which means that we can't ask the global extruder what # the value is. - adhesion_extruder = self._global_container_stack.getProperty("adhesion_extruder_nr", "value") - skirt_brim_line_width = self._global_container_stack.extruderList[int(adhesion_extruder)].getProperty("skirt_brim_line_width", "value") + skirt_brim_extruder_nr = self._global_container_stack.getProperty("skirt_brim_extruder_nr", "value") + try: + skirt_brim_stack = self._global_container_stack.extruderList[int(skirt_brim_extruder_nr)] + except IndexError: + Logger.warning(f"Couldn't find extruder with index '{skirt_brim_extruder_nr}', defaulting to 0 instead.") + skirt_brim_stack = self._global_container_stack.extruderList[0] + skirt_brim_line_width = skirt_brim_stack.getProperty("skirt_brim_line_width", "value") - initial_layer_line_width_factor = self._global_container_stack.getProperty("initial_layer_line_width_factor", "value") + initial_layer_line_width_factor = skirt_brim_stack.getProperty("initial_layer_line_width_factor", "value") # Use brim width if brim is enabled OR the prime tower has a brim. if adhesion_type == "brim": - brim_line_count = self._global_container_stack.getProperty("brim_line_count", "value") + brim_line_count = skirt_brim_stack.getProperty("brim_line_count", "value") bed_adhesion_size = skirt_brim_line_width * brim_line_count * initial_layer_line_width_factor / 100.0 for extruder_stack in used_extruders: @@ -1092,8 +1121,8 @@ class BuildVolume(SceneNode): # We don't create an additional line for the extruder we're printing the brim with. bed_adhesion_size -= skirt_brim_line_width * initial_layer_line_width_factor / 100.0 elif adhesion_type == "skirt": - skirt_distance = self._global_container_stack.getProperty("skirt_gap", "value") - skirt_line_count = self._global_container_stack.getProperty("skirt_line_count", "value") + skirt_distance = skirt_brim_stack.getProperty("skirt_gap", "value") + skirt_line_count = skirt_brim_stack.getProperty("skirt_line_count", "value") bed_adhesion_size = skirt_distance + ( skirt_brim_line_width * skirt_line_count) * initial_layer_line_width_factor / 100.0 @@ -1104,7 +1133,7 @@ class BuildVolume(SceneNode): # We don't create an additional line for the extruder we're printing the skirt with. bed_adhesion_size -= skirt_brim_line_width * initial_layer_line_width_factor / 100.0 elif adhesion_type == "raft": - bed_adhesion_size = self._global_container_stack.getProperty("raft_margin", "value") + bed_adhesion_size = self._global_container_stack.getProperty("raft_margin", "value") # Should refer to the raft extruder if set. elif adhesion_type == "none": bed_adhesion_size = 0 else: @@ -1186,12 +1215,13 @@ class BuildVolume(SceneNode): _machine_settings = ["machine_width", "machine_depth", "machine_height", "machine_shape", "machine_center_is_zero"] _skirt_settings = ["adhesion_type", "skirt_gap", "skirt_line_count", "skirt_brim_line_width", "brim_width", "brim_line_count", "raft_margin", "draft_shield_enabled", "draft_shield_dist", "initial_layer_line_width_factor"] - _raft_settings = ["adhesion_type", "raft_base_thickness", "raft_interface_thickness", "raft_surface_layers", "raft_surface_thickness", "raft_airgap", "layer_0_z_overlap"] + _raft_settings = ["adhesion_type", "raft_base_thickness", "raft_interface_layers", "raft_interface_thickness", "raft_surface_layers", "raft_surface_thickness", "raft_airgap", "layer_0_z_overlap"] _extra_z_settings = ["retraction_hop_enabled", "retraction_hop"] _prime_settings = ["extruder_prime_pos_x", "extruder_prime_pos_y", "prime_blob_enable"] _tower_settings = ["prime_tower_enable", "prime_tower_size", "prime_tower_position_x", "prime_tower_position_y", "prime_tower_brim_enable"] _ooze_shield_settings = ["ooze_shield_enabled", "ooze_shield_dist"] _distance_settings = ["infill_wipe_dist", "travel_avoid_distance", "support_offset", "support_enable", "travel_avoid_other_parts", "travel_avoid_supports", "wall_line_count", "wall_line_width_0", "wall_line_width_x"] - _extruder_settings = ["support_enable", "support_bottom_enable", "support_roof_enable", "support_infill_extruder_nr", "support_extruder_nr_layer_0", "support_bottom_extruder_nr", "support_roof_extruder_nr", "brim_line_count", "adhesion_extruder_nr", "adhesion_type"] #Settings that can affect which extruders are used. - _limit_to_extruder_settings = ["wall_extruder_nr", "wall_0_extruder_nr", "wall_x_extruder_nr", "top_bottom_extruder_nr", "infill_extruder_nr", "support_infill_extruder_nr", "support_extruder_nr_layer_0", "support_bottom_extruder_nr", "support_roof_extruder_nr", "adhesion_extruder_nr"] - _disallowed_area_settings = _skirt_settings + _prime_settings + _tower_settings + _ooze_shield_settings + _distance_settings + _extruder_settings + _extruder_settings = ["support_enable", "support_bottom_enable", "support_roof_enable", "support_infill_extruder_nr", "support_extruder_nr_layer_0", "support_bottom_extruder_nr", "support_roof_extruder_nr", "brim_line_count", "skirt_brim_extruder_nr", "raft_base_extruder_nr", "raft_interface_extruder_nr", "raft_surface_extruder_nr", "adhesion_type"] #Settings that can affect which extruders are used. + _limit_to_extruder_settings = ["wall_extruder_nr", "wall_0_extruder_nr", "wall_x_extruder_nr", "top_bottom_extruder_nr", "infill_extruder_nr", "support_infill_extruder_nr", "support_extruder_nr_layer_0", "support_bottom_extruder_nr", "support_roof_extruder_nr", "skirt_brim_extruder_nr", "raft_base_extruder_nr", "raft_interface_extruder_nr", "raft_surface_extruder_nr"] + _material_size_settings = ["material_shrinkage_percentage", "material_shrinkage_percentage_xy", "material_shrinkage_percentage_z"] + _disallowed_area_settings = _skirt_settings + _prime_settings + _tower_settings + _ooze_shield_settings + _distance_settings + _extruder_settings + _material_size_settings diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py index db44daa77c..35e9aa832b 100644 --- a/cura/CrashHandler.py +++ b/cura/CrashHandler.py @@ -15,7 +15,7 @@ from typing import cast, Any try: from sentry_sdk.hub import Hub from sentry_sdk.utils import event_from_exception - from sentry_sdk import configure_scope + from sentry_sdk import configure_scope, add_breadcrumb with_sentry_sdk = True except ImportError: with_sentry_sdk = False @@ -424,6 +424,13 @@ class CrashHandler: if with_sentry_sdk: try: hub = Hub.current + if not Logger.getLoggers(): + # No loggers have been loaded yet, so we don't have any breadcrumbs :( + # So add them manually so we at least have some info... + add_breadcrumb(level = "info", message = "SentryLogging was not initialised yet") + for log_type, line in Logger.getUnloggedLines(): + add_breadcrumb(message=line) + event, hint = event_from_exception((self.exception_type, self.value, self.traceback)) hub.capture_event(event, hint=hint) hub.flush() diff --git a/cura/CuraActions.py b/cura/CuraActions.py index 4d121338d8..8b232ad1bf 100644 --- a/cura/CuraActions.py +++ b/cura/CuraActions.py @@ -35,7 +35,7 @@ class CuraActions(QObject): # Starting a web browser from a signal handler connected to a menu will crash on windows. # So instead, defer the call to the next run of the event loop, since that does work. # Note that weirdly enough, only signal handlers that open a web browser fail like that. - event = CallFunctionEvent(self._openUrl, [QUrl("https://ultimaker.com/en/resources/manuals/software")], {}) + event = CallFunctionEvent(self._openUrl, [QUrl("https://ultimaker.com/en/resources/manuals/software?utm_source=cura&utm_medium=software&utm_campaign=dropdown-documentation")], {}) cura.CuraApplication.CuraApplication.getInstance().functionEvent(event) @pyqtSlot() diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 8d63e7ec12..7645e88b7e 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -129,7 +129,7 @@ class CuraApplication(QtApplication): # SettingVersion represents the set of settings available in the machine/extruder definitions. # You need to make sure that this version number needs to be increased if there is any non-backwards-compatible # changes of the settings. - SettingVersion = 17 + SettingVersion = 19 Created = False @@ -152,16 +152,17 @@ class CuraApplication(QtApplication): def __init__(self, *args, **kwargs): super().__init__(name = ApplicationMetadata.CuraAppName, app_display_name = ApplicationMetadata.CuraAppDisplayName, - version = ApplicationMetadata.CuraVersion, + version = ApplicationMetadata.CuraVersion if not ApplicationMetadata.IsAlternateVersion else ApplicationMetadata.CuraBuildType, api_version = ApplicationMetadata.CuraSDKVersion, build_type = ApplicationMetadata.CuraBuildType, is_debug_mode = ApplicationMetadata.CuraDebugMode, - tray_icon_name = "cura-icon-32.png", + tray_icon_name = "cura-icon-32.png" if not ApplicationMetadata.IsAlternateVersion else "cura-icon-32_wip.png", **kwargs) self.default_theme = "cura-light" - self.change_log_url = "https://ultimaker.com/ultimaker-cura-latest-features" + self.change_log_url = "https://ultimaker.com/ultimaker-cura-latest-features?utm_source=cura&utm_medium=software&utm_campaign=cura-update-features" + self.beta_change_log_url = "https://ultimaker.com/ultimaker-cura-beta-features?utm_source=cura&utm_medium=software&utm_campaign=cura-update-features" self._boot_loading_time = time.time() @@ -320,7 +321,7 @@ class CuraApplication(QtApplication): super().initialize() self._preferences.addPreference("cura/single_instance", False) - self._use_single_instance = self._preferences.getValue("cura/single_instance") + self._use_single_instance = self._preferences.getValue("cura/single_instance") or self._cli_args.single_instance self.__sendCommandToSingleInstance() self._initializeSettingDefinitions() @@ -471,6 +472,8 @@ class CuraApplication(QtApplication): ("definition_changes", InstanceContainer.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.DefinitionChangesContainer, "application/x-uranium-instancecontainer"), ("variant", InstanceContainer.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.VariantInstanceContainer, "application/x-uranium-instancecontainer"), ("setting_visibility", SettingVisibilityPresetsModel.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.SettingVisibilityPreset, "application/x-uranium-preferences"), + ("machine", 2): (Resources.DefinitionContainers, "application/x-uranium-definitioncontainer"), + ("extruder", 2): (Resources.DefinitionContainers, "application/x-uranium-definitioncontainer") } ) @@ -481,7 +484,7 @@ class CuraApplication(QtApplication): if not self.getIsHeadLess(): try: - self.setWindowIcon(QIcon(Resources.getPath(Resources.Images, "cura-icon.png"))) + self.setWindowIcon(QIcon(Resources.getPath(Resources.Images, "cura-icon.png" if not ApplicationMetadata.IsAlternateVersion else "cura-icon_wip.png"))) except FileNotFoundError: Logger.log("w", "Unable to find the window icon.") @@ -491,7 +494,7 @@ class CuraApplication(QtApplication): "CuraEngineBackend", #Cura is useless without this one since you can't slice. "FileLogger", #You want to be able to read the log if something goes wrong. "XmlMaterialProfile", #Cura crashes without this one. - "Toolbox", #This contains the interface to enable/disable plug-ins, so if you disable it you can't enable it back. + "Marketplace", #This contains the interface to enable/disable plug-ins, so if you disable it you can't enable it back. "PrepareStage", #Cura is useless without this one since you can't load models. "PreviewStage", #This shows the list of the plugin views that are installed in Cura. "MonitorStage", #Major part of Cura's functionality. @@ -570,6 +573,10 @@ class CuraApplication(QtApplication): preferences.addPreference("general/accepted_user_agreement", False) + preferences.addPreference("cura/market_place_show_plugin_banner", True) + preferences.addPreference("cura/market_place_show_material_banner", True) + preferences.addPreference("cura/market_place_show_manage_packages_banner", True) + for key in [ "dialog_load_path", # dialog_save_path is in LocalFileOutputDevicePlugin "dialog_profile_path", @@ -672,22 +679,6 @@ class CuraApplication(QtApplication): self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Initializing Active Machine...")) super().setGlobalContainerStack(stack) - showMessageBox = pyqtSignal(str,str, str, str, int, int, - arguments = ["title", "text", "informativeText", "detailedText","buttons", "icon"]) - """A reusable dialogbox""" - - def messageBox(self, title, text, - informativeText = "", - detailedText = "", - buttons = QMessageBox.Ok, - icon = QMessageBox.NoIcon, - callback = None, - callback_arguments = [] - ): - self._message_box_callback = callback - self._message_box_callback_arguments = callback_arguments - self.showMessageBox.emit(title, text, informativeText, detailedText, buttons, icon) - showDiscardOrKeepProfileChanges = pyqtSignal() def discardOrKeepProfileChanges(self) -> bool: @@ -714,6 +705,7 @@ class CuraApplication(QtApplication): for extruder in global_stack.extruderList: extruder.userChanges.clear() global_stack.userChanges.clear() + self.getMachineManager().correctExtruderSettings() # if the user decided to keep settings then the user settings should be re-calculated and validated for errors # before slicing. To ensure that slicer uses right settings values @@ -748,7 +740,9 @@ class CuraApplication(QtApplication): @pyqtSlot(str, result = QUrl) def getDefaultPath(self, key): default_path = self.getPreferences().getValue("local_file/%s" % key) - return QUrl.fromLocalFile(default_path) + if os.path.exists(default_path): + return QUrl.fromLocalFile(default_path) + return QUrl() @pyqtSlot(str, str) def setDefaultPath(self, key, default_path): @@ -771,10 +765,14 @@ class CuraApplication(QtApplication): lib_suffixes = {""} for suffix in lib_suffixes: self._plugin_registry.addPluginLocation(os.path.join(QtApplication.getInstallPrefix(), "lib" + suffix, "cura")) + if not hasattr(sys, "frozen"): self._plugin_registry.addPluginLocation(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "plugins")) self._plugin_registry.preloaded_plugins.append("ConsoleLogger") + # Since it's possible to get crashes in code before the sentrylogger is loaded, we want to start this plugin + # as quickly as possible, as we might get unsolvable crash reports without it. + self._plugin_registry.preloaded_plugins.append("SentryLogger") self._plugin_registry.loadPlugins() if self.getBackend() is None: @@ -1310,9 +1308,9 @@ class CuraApplication(QtApplication): if not isinstance(node, SceneNode): continue if not node.getMeshData() and not node.callDecoration("isGroup"): - continue # Node that doesnt have a mesh and is not a group. + continue # Node that doesn't have a mesh and is not a group. if node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent().callDecoration("isSliceable"): - continue # Grouped nodes don't need resetting as their parent (the group) is resetted) + continue # Grouped nodes don't need resetting as their parent (the group) is reset) if not node.isSelectable(): continue # i.e. node with layer data if not node.callDecoration("isSliceable") and not node.callDecoration("isGroup"): @@ -1330,9 +1328,9 @@ class CuraApplication(QtApplication): if not isinstance(node, SceneNode): continue if not node.getMeshData() and not node.callDecoration("isGroup"): - continue # Node that doesnt have a mesh and is not a group. + continue # Node that doesn't have a mesh and is not a group. if node.getParent() and node.getParent().callDecoration("isGroup"): - continue # Grouped nodes don't need resetting as their parent (the group) is resetted) + continue # Grouped nodes don't need resetting as their parent (the group) is reset) if not node.isSelectable(): continue # i.e. node with layer data nodes.append(node) @@ -1359,9 +1357,9 @@ class CuraApplication(QtApplication): if not isinstance(node, SceneNode): continue if not node.getMeshData() and not node.callDecoration("isGroup"): - continue # Node that doesnt have a mesh and is not a group. + continue # Node that doesn't have a mesh and is not a group. if node.getParent() and node.getParent().callDecoration("isGroup"): - continue # Grouped nodes don't need resetting as their parent (the group) is resetted) + continue # Grouped nodes don't need resetting as their parent (the group) is reset) if not node.callDecoration("isSliceable") and not node.callDecoration("isGroup"): continue # i.e. node with layer data nodes.append(node) @@ -1388,7 +1386,7 @@ class CuraApplication(QtApplication): continue if not node.getMeshData() and not node.callDecoration("isGroup"): - continue # Node that doesnt have a mesh and is not a group. + continue # Node that doesn't have a mesh and is not a group. parent_node = node.getParent() if parent_node and parent_node.callDecoration("isGroup"): @@ -1416,11 +1414,11 @@ class CuraApplication(QtApplication): continue if not node.getMeshData() and not node.callDecoration("isGroup"): - continue # Node that doesnt have a mesh and is not a group. + continue # Node that doesn't have a mesh and is not a group. parent_node = node.getParent() if parent_node and parent_node.callDecoration("isGroup"): - continue # Grouped nodes don't need resetting as their parent (the group) is resetted) + continue # Grouped nodes don't need resetting as their parent (the group) is reset) if not node.isSelectable(): continue # i.e. node with layer data @@ -2037,11 +2035,11 @@ class CuraApplication(QtApplication): if not node.isEnabled(): continue if (not node.getMeshData() and not node.callDecoration("getLayerData")) and not node.callDecoration("isGroup"): - continue # Node that doesnt have a mesh and is not a group. + continue # Node that doesn't have a mesh and is not a group. if only_selectable and not node.isSelectable(): continue # Only remove nodes that are selectable. if not node.callDecoration("isSliceable") and not node.callDecoration("getLayerData") and not node.callDecoration("isGroup"): - continue # Grouped nodes don't need resetting as their parent (the group) is resetted) + continue # Grouped nodes don't need resetting as their parent (the group) is reset) nodes.append(node) if nodes: from UM.Operations.GroupedOperation import GroupedOperation diff --git a/cura/CuraPackageManager.py b/cura/CuraPackageManager.py index 26d6591099..af75aa7b66 100644 --- a/cura/CuraPackageManager.py +++ b/cura/CuraPackageManager.py @@ -1,13 +1,15 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import List, Tuple, TYPE_CHECKING, Optional +from typing import Any, cast, Dict, List, Set, Tuple, TYPE_CHECKING, Optional -from cura.CuraApplication import CuraApplication #To find some resource types. +from cura.CuraApplication import CuraApplication # To find some resource types. from cura.Settings.GlobalStack import GlobalStack -from UM.PackageManager import PackageManager #The class we're extending. -from UM.Resources import Resources #To find storage paths for some resource types. +from UM.PackageManager import PackageManager # The class we're extending. +from UM.Resources import Resources # To find storage paths for some resource types. +from UM.i18n import i18nCatalog +catalog = i18nCatalog("cura") if TYPE_CHECKING: from UM.Qt.QtApplication import QtApplication @@ -17,6 +19,31 @@ if TYPE_CHECKING: class CuraPackageManager(PackageManager): def __init__(self, application: "QtApplication", parent: Optional["QObject"] = None) -> None: super().__init__(application, parent) + self._local_packages: Optional[List[Dict[str, Any]]] = None + self._local_packages_ids: Optional[Set[str]] = None + self.installedPackagesChanged.connect(self._updateLocalPackages) + + def _updateLocalPackages(self) -> None: + self._local_packages = self.getAllLocalPackages() + self._local_packages_ids = set(pkg["package_id"] for pkg in self._local_packages) + + @property + def local_packages(self) -> List[Dict[str, Any]]: + """locally installed packages, lazy execution""" + if self._local_packages is None: + self._updateLocalPackages() + # _updateLocalPackages always results in a list of packages, not None. + # It's guaranteed to be a list now. + return cast(List[Dict[str, Any]], self._local_packages) + + @property + def local_packages_ids(self) -> Set[str]: + """locally installed packages, lazy execution""" + if self._local_packages_ids is None: + self._updateLocalPackages() + # _updateLocalPackages always results in a list of packages, not None. + # It's guaranteed to be a list now. + return cast(Set[str], self._local_packages_ids) def initialize(self) -> None: self._installation_dirs_dict["materials"] = Resources.getStoragePath(CuraApplication.ResourceTypes.MaterialInstanceContainer) @@ -47,3 +74,12 @@ class CuraPackageManager(PackageManager): machine_with_qualities.append((global_stack, str(extruder_nr), container_id)) return machine_with_materials, machine_with_qualities + + def getAllLocalPackages(self) -> List[Dict[str, Any]]: + """ Returns an unordered list of all the package_info of installed, to be installed, or bundled packages""" + packages: List[Dict[str, Any]] = [] + + for packages_to_add in self.getAllInstalledPackagesInfo().values(): + packages.extend(packages_to_add) + + return packages diff --git a/cura/CuraView.py b/cura/CuraView.py index d594ea9571..86d4254a7d 100644 --- a/cura/CuraView.py +++ b/cura/CuraView.py @@ -12,7 +12,7 @@ from cura.CuraApplication import CuraApplication # Since Cura has a few pre-defined "space claims" for the locations of certain components, we've provided some structure # to indicate this. # MainComponent works in the same way the MainComponent of a stage. -# the stageMenuComponent returns an item that should be used somehwere in the stage menu. It's up to the active stage +# the stageMenuComponent returns an item that should be used somewhere in the stage menu. It's up to the active stage # to actually do something with this. class CuraView(View): def __init__(self, parent = None, use_empty_menu_placeholder: bool = False) -> None: diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index 7f62a0a8fa..2c3b432b1d 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -59,7 +59,7 @@ class LayerPolygon: self._vertex_count = self._mesh_line_count + numpy.sum(self._types[1:] == self._types[:-1]) # Buffering the colors shouldn't be necessary as it is not - # re-used and can save alot of memory usage. + # re-used and can save a lot of memory usage. self._color_map = LayerPolygon.getColorMap() self._colors = self._color_map[self._types] # type: numpy.ndarray @@ -146,7 +146,7 @@ class LayerPolygon: # When the line type changes the index needs to be increased by 2. indices[self._index_begin:self._index_end, :] += numpy.cumsum(needed_points_list[line_mesh_mask.ravel(), 0], dtype = numpy.int32).reshape((-1, 1)) # Each line segment goes from it's starting point p to p+1, offset by the vertex index. - # The -1 is to compensate for the neccecarily True value of needed_points_list[0,0] which causes an unwanted +1 in cumsum above. + # The -1 is to compensate for the necessarily True value of needed_points_list[0,0] which causes an unwanted +1 in cumsum above. indices[self._index_begin:self._index_end, :] += numpy.array([self._vertex_begin - 1, self._vertex_begin]) self._build_cache_line_mesh_mask = None diff --git a/cura/Machines/MachineErrorChecker.py b/cura/Machines/MachineErrorChecker.py index 818d62de7c..8213734348 100644 --- a/cura/Machines/MachineErrorChecker.py +++ b/cura/Machines/MachineErrorChecker.py @@ -97,8 +97,7 @@ class MachineErrorChecker(QObject): def startErrorCheckPropertyChanged(self, key: str, property_name: str) -> None: """Start the error check for property changed - - this is seperate from the startErrorCheck because it ignores a number property types + this is separate from the startErrorCheck because it ignores a number property types :param key: :param property_name: diff --git a/cura/Machines/Models/ExtrudersModel.py b/cura/Machines/Models/ExtrudersModel.py index 1aba1d871a..5ae3c19874 100644 --- a/cura/Machines/Models/ExtrudersModel.py +++ b/cura/Machines/Models/ExtrudersModel.py @@ -59,6 +59,8 @@ class ExtrudersModel(ListModel): defaultColors = ["#ffc924", "#86ec21", "#22eeee", "#245bff", "#9124ff", "#ff24c8"] """List of colours to display if there is no material or the material has no known colour. """ + MaterialNameRole = Qt.UserRole + 13 + def __init__(self, parent = None): """Initialises the extruders model, defining the roles and listening for changes in the data. @@ -79,6 +81,7 @@ class ExtrudersModel(ListModel): self.addRoleName(self.MaterialBrandRole, "material_brand") self.addRoleName(self.ColorNameRole, "color_name") self.addRoleName(self.MaterialTypeRole, "material_type") + self.addRoleName(self.MaterialNameRole, "material_name") self._update_extruder_timer = QTimer() self._update_extruder_timer.setInterval(100) self._update_extruder_timer.setSingleShot(True) @@ -199,8 +202,8 @@ class ExtrudersModel(ListModel): "material_brand": material_brand, "color_name": color_name, "material_type": extruder.material.getMetaDataEntry("material") if extruder.material else "", + "material_name": extruder.material.getMetaDataEntry("name") if extruder.material else "", } - items.append(item) extruders_changed = True @@ -224,6 +227,7 @@ class ExtrudersModel(ListModel): "material_brand": "", "color_name": "", "material_type": "", + "material_label": "" } items.append(item) if self._items != items: diff --git a/cura/Machines/Models/GlobalStacksModel.py b/cura/Machines/Models/GlobalStacksModel.py index 712597c2e7..f27a1ec00b 100644 --- a/cura/Machines/Models/GlobalStacksModel.py +++ b/cura/Machines/Models/GlobalStacksModel.py @@ -1,7 +1,8 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from PyQt5.QtCore import Qt, QTimer +from PyQt5.QtCore import Qt, QTimer, pyqtProperty, pyqtSignal +from typing import List, Optional from UM.Qt.ListModel import ListModel from UM.i18n import i18nCatalog @@ -10,6 +11,7 @@ from UM.Util import parseBool from cura.PrinterOutput.PrinterOutputDevice import ConnectionType from cura.Settings.CuraContainerRegistry import CuraContainerRegistry from cura.Settings.GlobalStack import GlobalStack +from cura.UltimakerCloud.UltimakerCloudConstants import META_CAPABILITIES # To filter on the printer's capabilities. class GlobalStacksModel(ListModel): @@ -20,6 +22,7 @@ class GlobalStacksModel(ListModel): MetaDataRole = Qt.UserRole + 5 DiscoverySourceRole = Qt.UserRole + 6 # For separating local and remote printers in the machine management page RemovalWarningRole = Qt.UserRole + 7 + IsOnlineRole = Qt.UserRole + 8 def __init__(self, parent = None) -> None: super().__init__(parent) @@ -31,18 +34,70 @@ class GlobalStacksModel(ListModel): self.addRoleName(self.HasRemoteConnectionRole, "hasRemoteConnection") self.addRoleName(self.MetaDataRole, "metadata") self.addRoleName(self.DiscoverySourceRole, "discoverySource") + self.addRoleName(self.IsOnlineRole, "isOnline") self._change_timer = QTimer() self._change_timer.setInterval(200) self._change_timer.setSingleShot(True) self._change_timer.timeout.connect(self._update) + self._filter_connection_type = None # type: Optional[ConnectionType] + self._filter_online_only = False + self._filter_capabilities: List[str] = [] # Required capabilities that all listed printers must have. + # Listen to changes CuraContainerRegistry.getInstance().containerAdded.connect(self._onContainerChanged) CuraContainerRegistry.getInstance().containerMetaDataChanged.connect(self._onContainerChanged) CuraContainerRegistry.getInstance().containerRemoved.connect(self._onContainerChanged) self._updateDelayed() + filterConnectionTypeChanged = pyqtSignal() + filterCapabilitiesChanged = pyqtSignal() + filterOnlineOnlyChanged = pyqtSignal() + + def setFilterConnectionType(self, new_filter: Optional[ConnectionType]) -> None: + if self._filter_connection_type != new_filter: + self._filter_connection_type = new_filter + self.filterConnectionTypeChanged.emit() + + @pyqtProperty(int, fset = setFilterConnectionType, notify = filterConnectionTypeChanged) + def filterConnectionType(self) -> int: + """ + The connection type to filter the list of printers by. + + Only printers that match this connection type will be listed in the + model. + """ + if self._filter_connection_type is None: + return -1 + return self._filter_connection_type.value + + def setFilterOnlineOnly(self, new_filter: bool) -> None: + if self._filter_online_only != new_filter: + self._filter_online_only = new_filter + self.filterOnlineOnlyChanged.emit() + + @pyqtProperty(bool, fset = setFilterOnlineOnly, notify = filterOnlineOnlyChanged) + def filterOnlineOnly(self) -> bool: + """ + Whether to filter the global stacks to show only printers that are online. + """ + return self._filter_online_only + + def setFilterCapabilities(self, new_filter: List[str]) -> None: + if self._filter_capabilities != new_filter: + self._filter_capabilities = new_filter + self.filterCapabilitiesChanged.emit() + + @pyqtProperty("QStringList", fset = setFilterCapabilities, notify = filterCapabilitiesChanged) + def filterCapabilities(self) -> List[str]: + """ + Capabilities to require on the list of printers. + + Only printers that have all of these capabilities will be shown in this model. + """ + return self._filter_capabilities + def _onContainerChanged(self, container) -> None: """Handler for container added/removed events from registry""" @@ -58,6 +113,10 @@ class GlobalStacksModel(ListModel): container_stacks = CuraContainerRegistry.getInstance().findContainerStacks(type = "machine") for container_stack in container_stacks: + if self._filter_connection_type is not None: # We want to filter on connection types. + if not any((connection_type == self._filter_connection_type for connection_type in container_stack.configuredConnectionTypes)): + continue # No connection type on this printer matches the filter. + has_remote_connection = False for connection_type in container_stack.configuredConnectionTypes: @@ -67,6 +126,14 @@ class GlobalStacksModel(ListModel): if parseBool(container_stack.getMetaDataEntry("hidden", False)): continue + is_online = container_stack.getMetaDataEntry("is_online", False) + if self._filter_online_only and not is_online: + continue + + capabilities = set(container_stack.getMetaDataEntry(META_CAPABILITIES, "").split(",")) + if set(self._filter_capabilities) - capabilities: # Not all required capabilities are met. + continue + device_name = container_stack.getMetaDataEntry("group_name", container_stack.getName()) section_name = "Connected printers" if has_remote_connection else "Preset printers" section_name = self._catalog.i18nc("@info:title", section_name) @@ -82,6 +149,7 @@ class GlobalStacksModel(ListModel): "hasRemoteConnection": has_remote_connection, "metadata": container_stack.getMetaData().copy(), "discoverySource": section_name, - "removalWarning": removal_warning}) + "removalWarning": removal_warning, + "isOnline": is_online}) items.sort(key=lambda i: (not i["hasRemoteConnection"], i["name"])) self.setItems(items) diff --git a/cura/Machines/Models/IntentCategoryModel.py b/cura/Machines/Models/IntentCategoryModel.py index 09a71b8ed6..aeb1f878ca 100644 --- a/cura/Machines/Models/IntentCategoryModel.py +++ b/cura/Machines/Models/IntentCategoryModel.py @@ -106,11 +106,15 @@ class IntentCategoryModel(ListModel): for category in available_categories: qualities = IntentModel() qualities.setIntentCategory(category) + try: + weight = list(IntentCategoryModel._get_translations().keys()).index(category) + except ValueError: + weight = 99 result.append({ - "name": IntentCategoryModel.translation(category, "name", catalog.i18nc("@label", "Unknown")), + "name": IntentCategoryModel.translation(category, "name", category), "description": IntentCategoryModel.translation(category, "description", None), "intent_category": category, - "weight": list(IntentCategoryModel._get_translations().keys()).index(category), + "weight": weight, "qualities": qualities }) result.sort(key = lambda k: k["weight"]) diff --git a/cura/Machines/Models/MaterialManagementModel.py b/cura/Machines/Models/MaterialManagementModel.py index 6663dbdae1..ce31193eb8 100644 --- a/cura/Machines/Models/MaterialManagementModel.py +++ b/cura/Machines/Models/MaterialManagementModel.py @@ -2,24 +2,28 @@ # Cura is released under the terms of the LGPLv3 or higher. import copy # To duplicate materials. -from PyQt5.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject, QUrl +from PyQt5.QtCore import pyqtSignal, pyqtSlot, QObject, QUrl +from PyQt5.QtGui import QDesktopServices from typing import Any, Dict, Optional, TYPE_CHECKING import uuid # To generate new GUIDs for new materials. -import zipfile # To export all materials in a .zip archive. +from UM.Message import Message from UM.i18n import i18nCatalog from UM.Logger import Logger +from UM.Resources import Resources # To find QML files. from UM.Signal import postponeSignals, CompressTechnique -import cura.CuraApplication # Imported like this to prevent circular imports. +import cura.CuraApplication # Imported like this to prevent cirmanagecular imports. from cura.Machines.ContainerTree import ContainerTree from cura.Settings.CuraContainerRegistry import CuraContainerRegistry # To find the sets of materials belonging to each other, and currently loaded extruder stacks. +from cura.UltimakerCloud.CloudMaterialSync import CloudMaterialSync if TYPE_CHECKING: from cura.Machines.MaterialNode import MaterialNode catalog = i18nCatalog("cura") + class MaterialManagementModel(QObject): favoritesChanged = pyqtSignal(str) """Triggered when a favorite is added or removed. @@ -27,6 +31,66 @@ class MaterialManagementModel(QObject): :param The base file of the material is provided as parameter when this emits """ + def __init__(self, parent: Optional[QObject] = None) -> None: + super().__init__(parent = parent) + self._material_sync = CloudMaterialSync(parent=self) + self._checkIfNewMaterialsWereInstalled() + + def _checkIfNewMaterialsWereInstalled(self) -> None: + """ + Checks whether new material packages were installed in the latest startup. If there were, then it shows + a message prompting the user to sync the materials with their printers. + """ + application = cura.CuraApplication.CuraApplication.getInstance() + for package_id, package_data in application.getPackageManager().getPackagesInstalledOnStartup().items(): + if package_data["package_info"]["package_type"] == "material": + # At least one new material was installed + # TODO: This should be enabled again once CURA-8609 is merged + #self._showSyncNewMaterialsMessage() + break + + def _showSyncNewMaterialsMessage(self) -> None: + sync_materials_message = Message( + text = catalog.i18nc("@action:button", + "Please sync the material profiles with your printers before starting to print."), + title = catalog.i18nc("@action:button", "New materials installed"), + message_type = Message.MessageType.WARNING, + lifetime = 0 + ) + + sync_materials_message.addAction( + "sync", + name = catalog.i18nc("@action:button", "Sync materials"), + icon = "", + description = "Sync your newly installed materials with your printers.", + button_align = Message.ActionButtonAlignment.ALIGN_RIGHT + ) + + sync_materials_message.addAction( + "learn_more", + name = catalog.i18nc("@action:button", "Learn more"), + icon = "", + description = "Learn more about syncing your newly installed materials with your printers.", + button_align = Message.ActionButtonAlignment.ALIGN_LEFT, + button_style = Message.ActionButtonStyle.LINK + ) + sync_materials_message.actionTriggered.connect(self._onSyncMaterialsMessageActionTriggered) + + # Show the message only if there are printers that support material export + container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry() + global_stacks = container_registry.findContainerStacks(type = "machine") + if any([stack.supportsMaterialExport for stack in global_stacks]): + sync_materials_message.show() + + def _onSyncMaterialsMessageActionTriggered(self, sync_message: Message, sync_message_action: str): + if sync_message_action == "sync": + QDesktopServices.openUrl(QUrl("https://example.com/openSyncAllWindow")) + # self.openSyncAllWindow() + sync_message.hide() + elif sync_message_action == "learn_more": + QDesktopServices.openUrl(QUrl("https://support.ultimaker.com/hc/en-us/articles/360013137919?utm_source=cura&utm_medium=software&utm_campaign=sync-material-printer-message")) + + @pyqtSlot("QVariant", result = bool) def canMaterialBeRemoved(self, material_node: "MaterialNode") -> bool: """Can a certain material be deleted, or is it still in use in one of the container stacks anywhere? @@ -261,39 +325,10 @@ class MaterialManagementModel(QObject): except ValueError: # Material was not in the favorites list. Logger.log("w", "Material {material_base_file} was already not a favorite material.".format(material_base_file = material_base_file)) - @pyqtSlot(result = QUrl) - def getPreferredExportAllPath(self) -> QUrl: + @pyqtSlot() + def openSyncAllWindow(self) -> None: """ - Get the preferred path to export materials to. + Opens the window to sync all materials. + """ + self._material_sync.openSyncAllWindow() - If there is a removable drive, that should be the preferred path. Otherwise it should be the most recent local - file path. - :return: The preferred path to export all materials to. - """ - cura_application = cura.CuraApplication.CuraApplication.getInstance() - device_manager = cura_application.getOutputDeviceManager() - devices = device_manager.getOutputDevices() - for device in devices: - if device.__class__.__name__ == "RemovableDriveOutputDevice": - return QUrl.fromLocalFile(device.getId()) - else: # No removable drives? Use local path. - return cura_application.getDefaultPath("dialog_material_path") - - @pyqtSlot(QUrl) - def exportAll(self, file_path: QUrl) -> None: - """ - Export all materials to a certain file path. - :param file_path: The path to export the materials to. - """ - registry = CuraContainerRegistry.getInstance() - - archive = zipfile.ZipFile(file_path.toLocalFile(), "w", compression = zipfile.ZIP_DEFLATED) - for metadata in registry.findInstanceContainersMetadata(type = "material"): - if metadata["base_file"] != metadata["id"]: # Only process base files. - continue - if metadata["id"] == "empty_material": # Don't export the empty material. - continue - material = registry.findContainers(id = metadata["id"])[0] - suffix = registry.getMimeTypeForContainer(type(material)).preferredSuffix - filename = metadata["id"] + "." + suffix - archive.writestr(filename, material.serialize()) diff --git a/cura/Machines/Models/QualityManagementModel.py b/cura/Machines/Models/QualityManagementModel.py index df12b16c15..63c1ead29d 100644 --- a/cura/Machines/Models/QualityManagementModel.py +++ b/cura/Machines/Models/QualityManagementModel.py @@ -361,8 +361,15 @@ class QualityManagementModel(ListModel): "section_name": catalog.i18nc("@label", intent_translations.get(intent_category, {}).get("name", catalog.i18nc("@label", "Unknown"))), }) # Sort by quality_type for each intent category + intent_translations_list = list(intent_translations) - result = sorted(result, key = lambda x: (list(intent_translations).index(x["intent_category"]), x["quality_type"])) + def getIntentWeight(intent_category): + try: + return intent_translations_list.index(intent_category) + except ValueError: + return 99 + + result = sorted(result, key = lambda x: (getIntentWeight(x["intent_category"]), x["quality_type"])) item_list += result # Create quality_changes group items diff --git a/cura/Machines/Models/QualityProfilesDropDownMenuModel.py b/cura/Machines/Models/QualityProfilesDropDownMenuModel.py index 7aa30c6f82..f7316e9c09 100644 --- a/cura/Machines/Models/QualityProfilesDropDownMenuModel.py +++ b/cura/Machines/Models/QualityProfilesDropDownMenuModel.py @@ -41,10 +41,6 @@ class QualityProfilesDropDownMenuModel(ListModel): machine_manager.activeQualityGroupChanged.connect(self._onChange) machine_manager.activeMaterialChanged.connect(self._onChange) machine_manager.activeVariantChanged.connect(self._onChange) - machine_manager.extruderChanged.connect(self._onChange) - - extruder_manager = application.getExtruderManager() - extruder_manager.extrudersChanged.connect(self._onChange) self._layer_height_unit = "" # This is cached diff --git a/cura/Machines/Models/QualitySettingsModel.py b/cura/Machines/Models/QualitySettingsModel.py index 89a996fba1..2051f1748d 100644 --- a/cura/Machines/Models/QualitySettingsModel.py +++ b/cura/Machines/Models/QualitySettingsModel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from PyQt5.QtCore import pyqtProperty, pyqtSignal, Qt @@ -9,6 +9,7 @@ from UM import i18nCatalog from UM.Logger import Logger from UM.Qt.ListModel import ListModel from UM.Settings.ContainerRegistry import ContainerRegistry +from UM.Settings.SettingFunction import SettingFunction # To format setting functions differently. import os @@ -173,12 +174,22 @@ class QualitySettingsModel(ListModel): label = definition.label if self._i18n_catalog: label = self._i18n_catalog.i18nc(definition.key + " label", label) + if profile_value_source == "quality_changes": + label = f"{label}" # Make setting name italic if it's derived from the quality-changes profile. + + if isinstance(profile_value, SettingFunction): + if self._i18n_catalog: + profile_value_display = self._i18n_catalog.i18nc("@info:status", "Calculated") + else: + profile_value_display = "Calculated" + else: + profile_value_display = "" if profile_value is None else str(profile_value) items.append({ "key": definition.key, "label": label, "unit": definition.unit, - "profile_value": "" if profile_value is None else str(profile_value), # it is for display only + "profile_value": profile_value_display, "profile_value_source": profile_value_source, "user_value": "" if user_value is None else str(user_value), "category": current_category diff --git a/cura/Machines/Models/SettingVisibilityPresetsModel.py b/cura/Machines/Models/SettingVisibilityPresetsModel.py index d268774850..2ca0960de4 100644 --- a/cura/Machines/Models/SettingVisibilityPresetsModel.py +++ b/cura/Machines/Models/SettingVisibilityPresetsModel.py @@ -33,7 +33,7 @@ class SettingVisibilityPresetsModel(QObject): if basic_item is not None: basic_visibile_settings = ";".join(basic_item.settings) else: - Logger.log("w", "Unable to find the basic visiblity preset.") + Logger.log("w", "Unable to find the basic visibility preset.") basic_visibile_settings = "" self._preferences = preferences diff --git a/cura/MultiplyObjectsJob.py b/cura/MultiplyObjectsJob.py index 4c1caf137c..1446ae687e 100644 --- a/cura/MultiplyObjectsJob.py +++ b/cura/MultiplyObjectsJob.py @@ -6,11 +6,15 @@ from typing import List from UM.Application import Application from UM.Job import Job +from UM.Math.Vector import Vector from UM.Message import Message +from UM.Operations.AddSceneNodeOperation import AddSceneNodeOperation +from UM.Operations.GroupedOperation import GroupedOperation +from UM.Operations.TranslateOperation import TranslateOperation from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator from UM.Scene.SceneNode import SceneNode from UM.i18n import i18nCatalog -from cura.Arranging.Nest2DArrange import arrange +from cura.Arranging.Nest2DArrange import arrange, createGroupOperationForArrange i18n_catalog = i18nCatalog("cura") @@ -43,11 +47,11 @@ class MultiplyObjectsJob(Job): # Only count sliceable objects if node_.callDecoration("isSliceable"): fixed_nodes.append(node_) - + nodes_to_add_without_arrange = [] for node in self._objects: # If object is part of a group, multiply group current_node = node - while current_node.getParent() and (current_node.getParent().callDecoration("isGroup") or current_node.getParent().callDecoration("isSliceable")): + while current_node.getParent() and current_node.getParent().callDecoration("isGroup"): current_node = current_node.getParent() if current_node in processed_nodes: @@ -56,19 +60,38 @@ class MultiplyObjectsJob(Job): for _ in range(self._count): new_node = copy.deepcopy(node) - # Same build plate build_plate_number = current_node.callDecoration("getBuildPlateNumber") new_node.callDecoration("setBuildPlateNumber", build_plate_number) for child in new_node.getChildren(): child.callDecoration("setBuildPlateNumber", build_plate_number) - - nodes.append(new_node) + if not current_node.getParent().callDecoration("isSliceable"): + nodes.append(new_node) + else: + # The node we're trying to place has another node that is sliceable as a parent. + # As such, we shouldn't arrange it (but it should be added to the scene!) + nodes_to_add_without_arrange.append(new_node) + new_node.setParent(current_node.getParent()) found_solution_for_all = True + group_operation = GroupedOperation() if nodes: - found_solution_for_all = arrange(nodes, Application.getInstance().getBuildVolume(), fixed_nodes, - factor = 10000, add_new_nodes_in_scene = True) + group_operation, not_fit_count = createGroupOperationForArrange(nodes, + Application.getInstance().getBuildVolume(), + fixed_nodes, + factor = 10000, + add_new_nodes_in_scene = True) + found_solution_for_all = not_fit_count == 0 + + if nodes_to_add_without_arrange: + for nested_node in nodes_to_add_without_arrange: + group_operation.addOperation(AddSceneNodeOperation(nested_node, nested_node.getParent())) + # Move the node a tiny bit so it doesn't overlap with the existing one. + # This doesn't fix it if someone creates more than one duplicate, but it at least shows that something + # happened (and after moving it, it's clear that there are more underneath) + group_operation.addOperation(TranslateOperation(nested_node, Vector(2.5, 2.5, 2.5))) + + group_operation.push() status_message.hide() if not found_solution_for_all: diff --git a/cura/OAuth2/AuthorizationHelpers.py b/cura/OAuth2/AuthorizationHelpers.py index 5b95b3a3bb..77e3c66c11 100644 --- a/cura/OAuth2/AuthorizationHelpers.py +++ b/cura/OAuth2/AuthorizationHelpers.py @@ -1,18 +1,19 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from datetime import datetime -import json -import random -from hashlib import sha512 from base64 import b64encode -from typing import Optional -import requests - -from UM.i18n import i18nCatalog -from UM.Logger import Logger +from datetime import datetime +from hashlib import sha512 +from PyQt5.QtNetwork import QNetworkReply +import secrets +from typing import Callable, Optional +import urllib.parse from cura.OAuth2.Models import AuthenticationResponse, UserProfile, OAuth2Settings +from UM.i18n import i18nCatalog +from UM.Logger import Logger +from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To download log-in tokens. + catalog = i18nCatalog("cura") TOKEN_TIMESTAMP_FORMAT = "%Y-%m-%d %H:%M:%S" @@ -30,14 +31,13 @@ class AuthorizationHelpers: return self._settings - def getAccessTokenUsingAuthorizationCode(self, authorization_code: str, verification_code: str) -> "AuthenticationResponse": - """Request the access token from the authorization server. - + def getAccessTokenUsingAuthorizationCode(self, authorization_code: str, verification_code: str, callback: Callable[[AuthenticationResponse], None]) -> None: + """ + Request the access token from the authorization server. :param authorization_code: The authorization code from the 1st step. :param verification_code: The verification code needed for the PKCE extension. - :return: An AuthenticationResponse object. + :param callback: Once the token has been obtained, this function will be called with the response. """ - data = { "client_id": self._settings.CLIENT_ID if self._settings.CLIENT_ID is not None else "", "redirect_uri": self._settings.CALLBACK_URL if self._settings.CALLBACK_URL is not None else "", @@ -46,18 +46,21 @@ class AuthorizationHelpers: "code_verifier": verification_code, "scope": self._settings.CLIENT_SCOPES if self._settings.CLIENT_SCOPES is not None else "", } - try: - return self.parseTokenResponse(requests.post(self._token_url, data = data)) # type: ignore - except requests.exceptions.ConnectionError: - return AuthenticationResponse(success=False, err_message="Unable to connect to remote server") + headers = {"Content-type": "application/x-www-form-urlencoded"} + HttpRequestManager.getInstance().post( + self._token_url, + data = urllib.parse.urlencode(data).encode("UTF-8"), + headers_dict = headers, + callback = lambda response: self.parseTokenResponse(response, callback), + error_callback = lambda response, _: self.parseTokenResponse(response, callback) + ) - def getAccessTokenUsingRefreshToken(self, refresh_token: str) -> "AuthenticationResponse": - """Request the access token from the authorization server using a refresh token. - - :param refresh_token: - :return: An AuthenticationResponse object. + def getAccessTokenUsingRefreshToken(self, refresh_token: str, callback: Callable[[AuthenticationResponse], None]) -> None: + """ + Request the access token from the authorization server using a refresh token. + :param refresh_token: A long-lived token used to refresh the authentication token. + :param callback: Once the token has been obtained, this function will be called with the response. """ - Logger.log("d", "Refreshing the access token for [%s]", self._settings.OAUTH_SERVER_URL) data = { "client_id": self._settings.CLIENT_ID if self._settings.CLIENT_ID is not None else "", @@ -66,84 +69,108 @@ class AuthorizationHelpers: "refresh_token": refresh_token, "scope": self._settings.CLIENT_SCOPES if self._settings.CLIENT_SCOPES is not None else "", } - try: - return self.parseTokenResponse(requests.post(self._token_url, data = data)) # type: ignore - except requests.exceptions.ConnectionError: - return AuthenticationResponse(success = False, err_message = "Unable to connect to remote server") - except OSError as e: - return AuthenticationResponse(success = False, err_message = "Operating system is unable to set up a secure connection: {err}".format(err = str(e))) + headers = {"Content-type": "application/x-www-form-urlencoded"} + HttpRequestManager.getInstance().post( + self._token_url, + data = urllib.parse.urlencode(data).encode("UTF-8"), + headers_dict = headers, + callback = lambda response: self.parseTokenResponse(response, callback), + error_callback = lambda response, _: self.parseTokenResponse(response, callback) + ) - @staticmethod - def parseTokenResponse(token_response: requests.models.Response) -> "AuthenticationResponse": + def parseTokenResponse(self, token_response: QNetworkReply, callback: Callable[[AuthenticationResponse], None]) -> None: """Parse the token response from the authorization server into an AuthenticationResponse object. :param token_response: The JSON string data response from the authorization server. :return: An AuthenticationResponse object. """ - - token_data = None - - try: - token_data = json.loads(token_response.text) - except ValueError: - Logger.log("w", "Could not parse token response data: %s", token_response.text) - + token_data = HttpRequestManager.readJSON(token_response) if not token_data: - return AuthenticationResponse(success = False, err_message = catalog.i18nc("@message", "Could not read response.")) + callback(AuthenticationResponse(success = False, err_message = catalog.i18nc("@message", "Could not read response."))) + return - if token_response.status_code not in (200, 201): - return AuthenticationResponse(success = False, err_message = token_data["error_description"]) + if token_response.error() != QNetworkReply.NetworkError.NoError: + callback(AuthenticationResponse(success = False, err_message = token_data["error_description"])) + return - return AuthenticationResponse(success=True, - token_type=token_data["token_type"], - access_token=token_data["access_token"], - refresh_token=token_data["refresh_token"], - expires_in=token_data["expires_in"], - scope=token_data["scope"], - received_at=datetime.now().strftime(TOKEN_TIMESTAMP_FORMAT)) + callback(AuthenticationResponse(success = True, + token_type = token_data["token_type"], + access_token = token_data["access_token"], + refresh_token = token_data["refresh_token"], + expires_in = token_data["expires_in"], + scope = token_data["scope"], + received_at = datetime.now().strftime(TOKEN_TIMESTAMP_FORMAT))) + return - def parseJWT(self, access_token: str) -> Optional["UserProfile"]: + def checkToken(self, access_token: str, success_callback: Optional[Callable[[UserProfile], None]] = None, failed_callback: Optional[Callable[[], None]] = None) -> None: """Calls the authentication API endpoint to get the token data. + The API is called asynchronously. When a response is given, the callback is called with the user's profile. :param access_token: The encoded JWT token. - :return: Dict containing some profile data. + :param success_callback: When a response is given, this function will be called with a user profile. If None, + there will not be a callback. + :param failed_callback: When the request failed or the response didn't parse, this function will be called. """ - - try: - check_token_url = "{}/check-token".format(self._settings.OAUTH_SERVER_URL) - Logger.log("d", "Checking the access token for [%s]", check_token_url) - token_request = requests.get(check_token_url, headers = { - "Authorization": "Bearer {}".format(access_token) - }) - except (requests.exceptions.ConnectionError, requests.exceptions.Timeout): - # Connection was suddenly dropped. Nothing we can do about that. - Logger.logException("w", "Something failed while attempting to parse the JWT token") - return None - if token_request.status_code not in (200, 201): - Logger.log("w", "Could not retrieve token data from auth server: %s", token_request.text) - return None - user_data = token_request.json().get("data") - if not user_data or not isinstance(user_data, dict): - Logger.log("w", "Could not parse user data from token: %s", user_data) - return None - - return UserProfile( - user_id = user_data["user_id"], - username = user_data["username"], - profile_image_url = user_data.get("profile_image_url", ""), - organization_id = user_data.get("organization", {}).get("organization_id"), - subscriptions = user_data.get("subscriptions", []) + check_token_url = "{}/check-token".format(self._settings.OAUTH_SERVER_URL) + Logger.log("d", "Checking the access token for [%s]", check_token_url) + headers = { + "Authorization": f"Bearer {access_token}" + } + HttpRequestManager.getInstance().get( + check_token_url, + headers_dict = headers, + callback = lambda reply: self._parseUserProfile(reply, success_callback, failed_callback), + error_callback = lambda _, _2: failed_callback() if failed_callback is not None else None ) + def _parseUserProfile(self, reply: QNetworkReply, success_callback: Optional[Callable[[UserProfile], None]], failed_callback: Optional[Callable[[], None]] = None) -> None: + """ + Parses the user profile from a reply to /check-token. + + If the response is valid, the callback will be called to return the user profile to the caller. + :param reply: A network reply to a request to the /check-token URL. + :param success_callback: A function to call once a user profile was successfully obtained. + :param failed_callback: A function to call if parsing the profile failed. + """ + if reply.error() != QNetworkReply.NetworkError.NoError: + Logger.warning(f"Could not access account information. QNetworkError {reply.errorString()}") + if failed_callback is not None: + failed_callback() + return + + profile_data = HttpRequestManager.getInstance().readJSON(reply) + if profile_data is None or "data" not in profile_data: + Logger.warning("Could not parse user data from token.") + if failed_callback is not None: + failed_callback() + return + profile_data = profile_data["data"] + + required_fields = {"user_id", "username"} + if "user_id" not in profile_data or "username" not in profile_data: + Logger.warning(f"User data missing required field(s): {required_fields - set(profile_data.keys())}") + if failed_callback is not None: + failed_callback() + return + + if success_callback is not None: + success_callback(UserProfile( + user_id = profile_data["user_id"], + username = profile_data["username"], + profile_image_url = profile_data.get("profile_image_url", ""), + organization_id = profile_data.get("organization", {}).get("organization_id"), + subscriptions = profile_data.get("subscriptions", []) + )) + @staticmethod def generateVerificationCode(code_length: int = 32) -> str: """Generate a verification code of arbitrary length. - :param code_length:: How long should the code be? This should never be lower than 16, but it's probably + :param code_length:: How long should the code be in bytes? This should never be lower than 16, but it's probably better to leave it at 32 """ - return "".join(random.choice("0123456789ABCDEF") for i in range(code_length)) + return secrets.token_hex(code_length) @staticmethod def generateVerificationCodeChallenge(verification_code: str) -> str: diff --git a/cura/OAuth2/AuthorizationRequestHandler.py b/cura/OAuth2/AuthorizationRequestHandler.py index c7ce9b6faf..f303980e3c 100644 --- a/cura/OAuth2/AuthorizationRequestHandler.py +++ b/cura/OAuth2/AuthorizationRequestHandler.py @@ -2,6 +2,7 @@ # Cura is released under the terms of the LGPLv3 or higher. from http.server import BaseHTTPRequestHandler +from threading import Lock # To turn an asynchronous call synchronous. from typing import Optional, Callable, Tuple, Dict, Any, List, TYPE_CHECKING from urllib.parse import parse_qs, urlparse @@ -14,6 +15,7 @@ if TYPE_CHECKING: catalog = i18nCatalog("cura") + class AuthorizationRequestHandler(BaseHTTPRequestHandler): """This handler handles all HTTP requests on the local web server. @@ -24,11 +26,11 @@ class AuthorizationRequestHandler(BaseHTTPRequestHandler): super().__init__(request, client_address, server) # These values will be injected by the HTTPServer that this handler belongs to. - self.authorization_helpers = None # type: Optional[AuthorizationHelpers] - self.authorization_callback = None # type: Optional[Callable[[AuthenticationResponse], None]] - self.verification_code = None # type: Optional[str] + self.authorization_helpers: Optional[AuthorizationHelpers] = None + self.authorization_callback: Optional[Callable[[AuthenticationResponse], None]] = None + self.verification_code: Optional[str] = None - self.state = None # type: Optional[str] + self.state: Optional[str] = None # CURA-6609: Some browser seems to issue a HEAD instead of GET request as the callback. def do_HEAD(self) -> None: @@ -70,13 +72,23 @@ class AuthorizationRequestHandler(BaseHTTPRequestHandler): if state != self.state: token_response = AuthenticationResponse( success = False, - err_message=catalog.i18nc("@message", - "The provided state is not correct.") + err_message = catalog.i18nc("@message", "The provided state is not correct.") ) elif code and self.authorization_helpers is not None and self.verification_code is not None: + token_response = AuthenticationResponse( + success = False, + err_message = catalog.i18nc("@message", "Timeout when authenticating with the account server.") + ) # If the code was returned we get the access token. - token_response = self.authorization_helpers.getAccessTokenUsingAuthorizationCode( - code, self.verification_code) + lock = Lock() + lock.acquire() + + def callback(response: AuthenticationResponse) -> None: + nonlocal token_response + token_response = response + lock.release() + self.authorization_helpers.getAccessTokenUsingAuthorizationCode(code, self.verification_code, callback) + lock.acquire(timeout = 60) # Block thread until request is completed (which releases the lock). If not acquired, the timeout message stays. elif self._queryGet(query, "error_code") == "user_denied": # Otherwise we show an error message (probably the user clicked "Deny" in the auth dialog). diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index aba9558de8..0343af68a8 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -3,10 +3,9 @@ import json from datetime import datetime, timedelta -from typing import Optional, TYPE_CHECKING, Dict +from typing import Callable, Dict, Optional, TYPE_CHECKING, Union from urllib.parse import urlencode, quote_plus -import requests.exceptions from PyQt5.QtCore import QUrl from PyQt5.QtGui import QDesktopServices @@ -16,7 +15,7 @@ from UM.Signal import Signal from UM.i18n import i18nCatalog from cura.OAuth2.AuthorizationHelpers import AuthorizationHelpers, TOKEN_TIMESTAMP_FORMAT from cura.OAuth2.LocalAuthorizationServer import LocalAuthorizationServer -from cura.OAuth2.Models import AuthenticationResponse +from cura.OAuth2.Models import AuthenticationResponse, BaseModel i18n_catalog = i18nCatalog("cura") @@ -24,7 +23,8 @@ if TYPE_CHECKING: from cura.OAuth2.Models import UserProfile, OAuth2Settings from UM.Preferences import Preferences -MYCLOUD_LOGOFF_URL = "https://mycloud.ultimaker.com/logoff" +MYCLOUD_LOGOFF_URL = "https://account.ultimaker.com/logoff?utm_source=cura&utm_medium=software&utm_campaign=change-account-before-adding-printers" + class AuthorizationService: """The authorization service is responsible for handling the login flow, storing user credentials and providing @@ -43,12 +43,13 @@ class AuthorizationService: self._settings = settings self._auth_helpers = AuthorizationHelpers(settings) self._auth_url = "{}/authorize".format(self._settings.OAUTH_SERVER_URL) - self._auth_data = None # type: Optional[AuthenticationResponse] - self._user_profile = None # type: Optional["UserProfile"] + self._auth_data: Optional[AuthenticationResponse] = None + self._user_profile: Optional["UserProfile"] = None self._preferences = preferences self._server = LocalAuthorizationServer(self._auth_helpers, self._onAuthStateChanged, daemon=True) + self._currently_refreshing_token = False # Whether we are currently in the process of refreshing auth. Don't make new requests while busy. - self._unable_to_get_data_message = None # type: Optional[Message] + self._unable_to_get_data_message: Optional[Message] = None self.onAuthStateChanged.connect(self._authChanged) @@ -62,65 +63,83 @@ class AuthorizationService: if self._preferences: self._preferences.addPreference(self._settings.AUTH_DATA_PREFERENCE_KEY, "{}") - def getUserProfile(self) -> Optional["UserProfile"]: - """Get the user profile as obtained from the JWT (JSON Web Token). + def getUserProfile(self, callback: Optional[Callable[[Optional["UserProfile"]], None]] = None) -> None: + """ + Get the user profile as obtained from the JWT (JSON Web Token). - If the JWT is not yet parsed, calling this will take care of that. - - :return: UserProfile if a user is logged in, None otherwise. + If the JWT is not yet checked and parsed, calling this will take care of that. + :param callback: Once the user profile is obtained, this function will be called with the given user profile. If + the profile fails to be obtained, this function will be called with None. See also: :py:method:`cura.OAuth2.AuthorizationService.AuthorizationService._parseJWT` """ + if self._user_profile: + # We already obtained the profile. No need to make another request for it. + if callback is not None: + callback(self._user_profile) + return - if not self._user_profile: - # If no user profile was stored locally, we try to get it from JWT. - try: - self._user_profile = self._parseJWT() - except requests.exceptions.ConnectionError: - # Unable to get connection, can't login. - Logger.logException("w", "Unable to validate user data with the remote server.") - return None + # If no user profile was stored locally, we try to get it from JWT. + def store_profile(profile: Optional["UserProfile"]) -> None: + if profile is not None: + self._user_profile = profile + if callback is not None: + callback(profile) + elif self._auth_data: + # If there is no user profile from the JWT, we have to log in again. + Logger.warning("The user profile could not be loaded. The user must log in again!") + self.deleteAuthData() + if callback is not None: + callback(None) + else: + if callback is not None: + callback(None) - if not self._user_profile and self._auth_data: - # If there is still no user profile from the JWT, we have to log in again. - Logger.log("w", "The user profile could not be loaded. The user must log in again!") - self.deleteAuthData() - return None + self._parseJWT(callback = store_profile) - return self._user_profile - - def _parseJWT(self) -> Optional["UserProfile"]: - """Tries to parse the JWT (JSON Web Token) data, which it does if all the needed data is there. - - :return: UserProfile if it was able to parse, None otherwise. + def _parseJWT(self, callback: Callable[[Optional["UserProfile"]], None]) -> None: + """ + Tries to parse the JWT (JSON Web Token) data, which it does if all the needed data is there. + :param callback: A function to call asynchronously once the user profile has been obtained. It will be called + with `None` if it failed to obtain a user profile. """ if not self._auth_data or self._auth_data.access_token is None: # If no auth data exists, we should always log in again. - Logger.log("d", "There was no auth data or access token") - return None - user_data = self._auth_helpers.parseJWT(self._auth_data.access_token) - if user_data: - # If the profile was found, we return it immediately. - return user_data - # The JWT was expired or invalid and we should request a new one. - if self._auth_data.refresh_token is None: - Logger.log("w", "There was no refresh token in the auth data.") - return None - self._auth_data = self._auth_helpers.getAccessTokenUsingRefreshToken(self._auth_data.refresh_token) - if not self._auth_data or self._auth_data.access_token is None: - Logger.log("w", "Unable to use the refresh token to get a new access token.") - # The token could not be refreshed using the refresh token. We should login again. - return None - # Ensure it gets stored as otherwise we only have it in memory. The stored refresh token has been deleted - # from the server already. Do not store the auth_data if we could not get new auth_data (eg due to a - # network error), since this would cause an infinite loop trying to get new auth-data - if self._auth_data.success: - self._storeAuthData(self._auth_data) - return self._auth_helpers.parseJWT(self._auth_data.access_token) + Logger.debug("There was no auth data or access token") + callback(None) + return + + # When we checked the token we may get a user profile. This callback checks if that is a valid one and tries to refresh the token if it's not. + def check_user_profile(user_profile: Optional["UserProfile"]) -> None: + if user_profile: + # If the profile was found, we call it back immediately. + callback(user_profile) + return + # The JWT was expired or invalid and we should request a new one. + if self._auth_data is None or self._auth_data.refresh_token is None: + Logger.warning("There was no refresh token in the auth data.") + callback(None) + return + + def process_auth_data(auth_data: AuthenticationResponse) -> None: + if auth_data.access_token is None: + Logger.warning("Unable to use the refresh token to get a new access token.") + callback(None) + return + # Ensure it gets stored as otherwise we only have it in memory. The stored refresh token has been + # deleted from the server already. Do not store the auth_data if we could not get new auth_data (e.g. + # due to a network error), since this would cause an infinite loop trying to get new auth-data. + if auth_data.success: + self._storeAuthData(auth_data) + self._auth_helpers.checkToken(auth_data.access_token, callback, lambda: callback(None)) + + self._auth_helpers.getAccessTokenUsingRefreshToken(self._auth_data.refresh_token, process_auth_data) + + self._auth_helpers.checkToken(self._auth_data.access_token, check_user_profile, lambda: check_user_profile(None)) def getAccessToken(self) -> Optional[str]: - """Get the access token as provided by the repsonse data.""" + """Get the access token as provided by the response data.""" if self._auth_data is None: Logger.log("d", "No auth data to retrieve the access_token from") @@ -142,13 +161,20 @@ class AuthorizationService: if self._auth_data is None or self._auth_data.refresh_token is None: Logger.log("w", "Unable to refresh access token, since there is no refresh token.") return - response = self._auth_helpers.getAccessTokenUsingRefreshToken(self._auth_data.refresh_token) - if response.success: - self._storeAuthData(response) - self.onAuthStateChanged.emit(logged_in = True) - else: - Logger.log("w", "Failed to get a new access token from the server.") - self.onAuthStateChanged.emit(logged_in = False) + + def process_auth_data(response: AuthenticationResponse) -> None: + if response.success: + self._storeAuthData(response) + self.onAuthStateChanged.emit(logged_in = True) + else: + Logger.warning("Failed to get a new access token from the server.") + self.onAuthStateChanged.emit(logged_in = False) + + if self._currently_refreshing_token: + Logger.debug("Was already busy refreshing token. Do not start a new request.") + return + self._currently_refreshing_token = True + self._auth_helpers.getAccessTokenUsingRefreshToken(self._auth_data.refresh_token, process_auth_data) def deleteAuthData(self) -> None: """Delete the authentication data that we have stored locally (eg; logout)""" @@ -209,25 +235,27 @@ class AuthorizationService: link to force the a browser logout from mycloud.ultimaker.com :return: The authentication URL, properly formatted and encoded """ - auth_url = "{}?{}".format(self._auth_url, urlencode(query_parameters_dict)) + auth_url = f"{self._auth_url}?{urlencode(query_parameters_dict)}" if force_browser_logout: - # The url after '?next=' should be urlencoded - auth_url = "{}?next={}".format(MYCLOUD_LOGOFF_URL, quote_plus(auth_url)) + connecting_char = "&" if "?" in MYCLOUD_LOGOFF_URL else "?" + # The url after 'next=' should be urlencoded + auth_url = f"{MYCLOUD_LOGOFF_URL}{connecting_char}next={quote_plus(auth_url)}" return auth_url def _onAuthStateChanged(self, auth_response: AuthenticationResponse) -> None: """Callback method for the authentication flow.""" - if auth_response.success: + Logger.log("d", "Got callback from Authorization state. The user should now be logged in!") self._storeAuthData(auth_response) self.onAuthStateChanged.emit(logged_in = True) else: + Logger.log("d", "Got callback from Authorization state. Something went wrong: [%s]", auth_response.err_message) self.onAuthenticationError.emit(logged_in = False, error_message = auth_response.err_message) self._server.stop() # Stop the web server at all times. def loadAuthDataFromPreferences(self) -> None: """Load authentication data from preferences.""" - + Logger.log("d", "Attempting to load the auth data from preferences.") if self._preferences is None: Logger.log("e", "Unable to load authentication data, since no preference has been set!") return @@ -235,19 +263,23 @@ class AuthorizationService: preferences_data = json.loads(self._preferences.getValue(self._settings.AUTH_DATA_PREFERENCE_KEY)) if preferences_data: self._auth_data = AuthenticationResponse(**preferences_data) - # Also check if we can actually get the user profile information. - user_profile = self.getUserProfile() - if user_profile is not None: - self.onAuthStateChanged.emit(logged_in = True) - else: - if self._unable_to_get_data_message is not None: - self._unable_to_get_data_message.hide() - self._unable_to_get_data_message = Message(i18n_catalog.i18nc("@info", - "Unable to reach the Ultimaker account server."), - title = i18n_catalog.i18nc("@info:title", "Warning"), - message_type = Message.MessageType.ERROR) - self._unable_to_get_data_message.show() + # Also check if we can actually get the user profile information. + def callback(profile: Optional["UserProfile"]) -> None: + if profile is not None: + self.onAuthStateChanged.emit(logged_in = True) + Logger.debug("Auth data was successfully loaded") + else: + if self._unable_to_get_data_message is not None: + self._unable_to_get_data_message.show() + else: + self._unable_to_get_data_message = Message(i18n_catalog.i18nc("@info", + "Unable to reach the Ultimaker account server."), + title = i18n_catalog.i18nc("@info:title", "Log-in failed"), + message_type = Message.MessageType.ERROR) + Logger.warning("Unable to get user profile using auth data from preferences.") + self._unable_to_get_data_message.show() + self.getUserProfile(callback) except (ValueError, TypeError): Logger.logException("w", "Could not load auth data from preferences") @@ -260,10 +292,12 @@ class AuthorizationService: return self._auth_data = auth_data + self._currently_refreshing_token = False if auth_data: - self._user_profile = self.getUserProfile() + self.getUserProfile() self._preferences.setValue(self._settings.AUTH_DATA_PREFERENCE_KEY, json.dumps(auth_data.dump())) else: + Logger.log("d", "Clearing the user profile") self._user_profile = None self._preferences.resetPreference(self._settings.AUTH_DATA_PREFERENCE_KEY) diff --git a/cura/OAuth2/KeyringAttribute.py b/cura/OAuth2/KeyringAttribute.py index 9bb6e3c267..58b45a67ef 100644 --- a/cura/OAuth2/KeyringAttribute.py +++ b/cura/OAuth2/KeyringAttribute.py @@ -2,9 +2,10 @@ # Cura is released under the terms of the LGPLv3 or higher. from typing import Type, TYPE_CHECKING, Optional, List +from io import BlockingIOError import keyring from keyring.backend import KeyringBackend -from keyring.errors import NoKeyringError, PasswordSetError, KeyringLocked +from keyring.errors import NoKeyringError, PasswordSetError, KeyringLocked, KeyringError from UM.Logger import Logger @@ -14,13 +15,18 @@ if TYPE_CHECKING: # Need to do some extra workarounds on windows: import sys from UM.Platform import Platform -if Platform.isWindows() and hasattr(sys, "frozen"): - import win32timezone +if Platform.isWindows(): + if hasattr(sys, "frozen"): + import win32timezone from keyring.backends.Windows import WinVaultKeyring keyring.set_keyring(WinVaultKeyring()) -if Platform.isOSX() and hasattr(sys, "frozen"): +if Platform.isOSX(): from keyring.backends.macOS import Keyring keyring.set_keyring(Keyring()) +if Platform.isLinux(): + # We do not support the keyring on Linux, so make sure no Keyring backend is loaded, even if there is a system one. + from keyring.backends.fail import Keyring as NoKeyringBackend + keyring.set_keyring(NoKeyringBackend()) # Even if errors happen, we don't want this stored locally: DONT_EVER_STORE_LOCALLY: List[str] = ["refresh_token"] @@ -39,10 +45,18 @@ class KeyringAttribute: self._store_secure = False Logger.logException("w", "No keyring backend present") return getattr(instance, self._name) - except KeyringLocked: + except (KeyringLocked, BlockingIOError): self._store_secure = False Logger.log("i", "Access to the keyring was denied.") return getattr(instance, self._name) + except UnicodeDecodeError: + self._store_secure = False + Logger.log("w", "The password retrieved from the keyring cannot be used because it contains characters that cannot be decoded.") + return getattr(instance, self._name) + except KeyringError: + self._store_secure = False + Logger.logException("w", "Unknown keyring error.") + return getattr(instance, self._name) else: return getattr(instance, self._name) diff --git a/cura/PickingPass.py b/cura/PickingPass.py index eb190be16d..4d6ef671df 100644 --- a/cura/PickingPass.py +++ b/cura/PickingPass.py @@ -72,14 +72,14 @@ class PickingPass(RenderPass): window_size = self._renderer.getWindowSize() - px = (0.5 + x / 2.0) * window_size[0] - py = (0.5 + y / 2.0) * window_size[1] + px = int((0.5 + x / 2.0) * window_size[0]) + py = int((0.5 + y / 2.0) * window_size[1]) if px < 0 or px > (output.width() - 1) or py < 0 or py > (output.height() - 1): return -1 distance = output.pixel(px, py) # distance in micron, from in r, g & b channels - distance = (distance & 0x00ffffff) / 1000. # drop the alpha channel and covert to mm + distance = (distance & 0x00ffffff) / 1000. # drop the alpha channel and convert to mm return distance def getPickedPosition(self, x: int, y: int) -> Vector: diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 5fd2e70a1c..a2b8a87577 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -1,8 +1,7 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from PyQt5.QtCore import QTimer -from shapely.errors import TopologicalError # To capture errors if Shapely messes up. from UM.Application import Application from UM.Logger import Logger @@ -138,11 +137,7 @@ class PlatformPhysics: own_convex_hull = node.callDecoration("getConvexHull") other_convex_hull = other_node.callDecoration("getConvexHull") if own_convex_hull and other_convex_hull: - try: - overlap = own_convex_hull.translate(move_vector.x, move_vector.z).intersectsPolygon(other_convex_hull) - except TopologicalError as e: # Can happen if the convex hull is degenerate? - Logger.warning("Got a topological error when calculating convex hull intersection: {err}".format(err = str(e))) - overlap = False + overlap = own_convex_hull.translate(move_vector.x, move_vector.z).intersectsPolygon(other_convex_hull) if overlap: # Moving ensured that overlap was still there. Try anew! temp_move_vector = move_vector.set(x = move_vector.x + overlap[0] * self._move_factor, z = move_vector.z + overlap[1] * self._move_factor) diff --git a/cura/PrinterOutput/FirmwareUpdater.py b/cura/PrinterOutput/FirmwareUpdater.py index c4f3948c20..cfcfb2204f 100644 --- a/cura/PrinterOutput/FirmwareUpdater.py +++ b/cura/PrinterOutput/FirmwareUpdater.py @@ -49,7 +49,7 @@ class FirmwareUpdater(QObject): raise NotImplementedError("_updateFirmware needs to be implemented") def _cleanupAfterUpdate(self) -> None: - """Cleanup after a succesful update""" + """Cleanup after a successful update""" # Clean up for next attempt. self._update_firmware_thread = Thread(target=self._updateFirmware, daemon=True, name = "FirmwareUpdateThread") diff --git a/cura/PrinterOutput/Models/PrintJobOutputModel.py b/cura/PrinterOutput/Models/PrintJobOutputModel.py index 256999b96f..f7404f71ed 100644 --- a/cura/PrinterOutput/Models/PrintJobOutputModel.py +++ b/cura/PrinterOutput/Models/PrintJobOutputModel.py @@ -42,7 +42,7 @@ class PrintJobOutputModel(QObject): self._preview_image = None # type: Optional[QImage] @pyqtProperty("QStringList", notify=compatibleMachineFamiliesChanged) - def compatibleMachineFamilies(self): + def compatibleMachineFamilies(self) -> List[str]: # Hack; Some versions of cluster will return a family more than once... return list(set(self._compatible_machine_families)) @@ -77,11 +77,11 @@ class PrintJobOutputModel(QObject): self._configuration = configuration self.configurationChanged.emit() - @pyqtProperty(str, notify=ownerChanged) - def owner(self): + @pyqtProperty(str, notify = ownerChanged) + def owner(self) -> str: return self._owner - def updateOwner(self, owner): + def updateOwner(self, owner: str) -> None: if self._owner != owner: self._owner = owner self.ownerChanged.emit() @@ -132,7 +132,7 @@ class PrintJobOutputModel(QObject): @pyqtProperty(float, notify = timeElapsedChanged) def progress(self) -> float: - result = float(self.timeElapsed) / max(self.timeTotal, 1.0) # Prevent a division by zero exception. + result = float(self.timeElapsed) / max(self.timeTotal, 1.0) # Prevent a division by zero exception. return min(result, 1.0) # Never get a progress past 1.0 @pyqtProperty(str, notify=stateChanged) @@ -151,12 +151,12 @@ class PrintJobOutputModel(QObject): return False return True - def updateTimeTotal(self, new_time_total): + def updateTimeTotal(self, new_time_total: int) -> None: if self._time_total != new_time_total: self._time_total = new_time_total self.timeTotalChanged.emit() - def updateTimeElapsed(self, new_time_elapsed): + def updateTimeElapsed(self, new_time_elapsed: int) -> None: if self._time_elapsed != new_time_elapsed: self._time_elapsed = new_time_elapsed self.timeElapsedChanged.emit() diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index 2690c2651f..42c1cd78aa 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from UM.FileHandler.FileHandler import FileHandler #For typing. @@ -114,6 +114,11 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): return b"".join(file_data_bytes_list) def _update(self) -> None: + """ + Update the connection state of this device. + + This is called on regular intervals. + """ if self._last_response_time: time_since_last_response = time() - self._last_response_time else: @@ -127,11 +132,11 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): if time_since_last_response > self._timeout_time >= time_since_last_request: # Go (or stay) into timeout. if self._connection_state_before_timeout is None: - self._connection_state_before_timeout = self._connection_state + self._connection_state_before_timeout = self.connectionState self.setConnectionState(ConnectionState.Closed) - elif self._connection_state == ConnectionState.Closed: + elif self.connectionState == ConnectionState.Closed: # Go out of timeout. if self._connection_state_before_timeout is not None: # sanity check, but it should never be None here self.setConnectionState(self._connection_state_before_timeout) @@ -361,7 +366,7 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): self._last_response_time = time() - if self._connection_state == ConnectionState.Connecting: + if self.connectionState == ConnectionState.Connecting: self.setConnectionState(ConnectionState.Connected) callback_key = reply.url().toString() + str(reply.operation()) @@ -414,6 +419,6 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): @pyqtProperty(str, constant = True) def ipAddress(self) -> str: - """IP adress of this printer""" + """IP address of this printer""" return self._address diff --git a/cura/PrinterOutput/PrinterOutputDevice.py b/cura/PrinterOutput/PrinterOutputDevice.py index 526d713748..2939076a9a 100644 --- a/cura/PrinterOutput/PrinterOutputDevice.py +++ b/cura/PrinterOutput/PrinterOutputDevice.py @@ -1,11 +1,13 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. + from enum import IntEnum from typing import Callable, List, Optional, Union from PyQt5.QtCore import pyqtProperty, pyqtSignal, QObject, QTimer, QUrl from PyQt5.QtWidgets import QMessageBox +import cura.CuraApplication # Imported like this to prevent circular imports. from UM.Logger import Logger from UM.Signal import signalemitter from UM.Qt.QtApplication import QtApplication @@ -120,11 +122,22 @@ class PrinterOutputDevice(QObject, OutputDevice): callback(QMessageBox.Yes) def isConnected(self) -> bool: - return self._connection_state != ConnectionState.Closed and self._connection_state != ConnectionState.Error + """ + Returns whether we could theoretically send commands to this printer. + :return: `True` if we are connected, or `False` if not. + """ + return self.connectionState != ConnectionState.Closed and self.connectionState != ConnectionState.Error def setConnectionState(self, connection_state: "ConnectionState") -> None: - if self._connection_state != connection_state: + """ + Store the connection state of the printer. + + Causes everything that displays the connection state to update its QML models. + :param connection_state: The new connection state to store. + """ + if self.connectionState != connection_state: self._connection_state = connection_state + cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack().setMetaDataEntry("is_online", self.isConnected()) self.connectionStateChanged.emit(self._id) @pyqtProperty(int, constant = True) @@ -133,6 +146,10 @@ class PrinterOutputDevice(QObject, OutputDevice): @pyqtProperty(int, notify = connectionStateChanged) def connectionState(self) -> "ConnectionState": + """ + Get the connection state of the printer, e.g. whether it is connected, still connecting, error state, etc. + :return: The current connection state of this output device. + """ return self._connection_state def _update(self) -> None: diff --git a/cura/PrinterOutput/UploadMaterialsJob.py b/cura/PrinterOutput/UploadMaterialsJob.py new file mode 100644 index 0000000000..7a08a198c1 --- /dev/null +++ b/cura/PrinterOutput/UploadMaterialsJob.py @@ -0,0 +1,264 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import enum +import functools # For partial methods to use as callbacks with information pre-filled. +import json # To serialise metadata for API calls. +import os # To delete the archive when we're done. +from PyQt5.QtCore import QUrl +import tempfile # To create an archive before we upload it. + +import cura.CuraApplication # Imported like this to prevent circular imports. +from cura.Settings.CuraContainerRegistry import CuraContainerRegistry # To find all printers to upload to. +from cura.UltimakerCloud import UltimakerCloudConstants # To know where the API is. +from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope # To know how to communicate with this server. +from UM.i18n import i18nCatalog +from UM.Job import Job +from UM.Logger import Logger +from UM.Signal import Signal +from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To call the API. +from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope + +from typing import Any, cast, Dict, List, Optional, TYPE_CHECKING +if TYPE_CHECKING: + from PyQt5.QtNetwork import QNetworkReply + from cura.UltimakerCloud.CloudMaterialSync import CloudMaterialSync + +catalog = i18nCatalog("cura") + + +class UploadMaterialsError(Exception): + """ + Class to indicate something went wrong while uploading. + """ + pass + + +class UploadMaterialsJob(Job): + """ + Job that uploads a set of materials to the Digital Factory. + + The job has a number of stages: + - First, it generates an archive of all materials. This typically takes a lot of processing power during which the + GIL remains locked. + - Then it requests the API to upload an archive. + - Then it uploads the archive to the URL given by the first request. + - Then it tells the API that the archive can be distributed to the printers. + """ + + UPLOAD_REQUEST_URL = f"{UltimakerCloudConstants.CuraCloudAPIRoot}/connect/v1/materials/upload" + UPLOAD_CONFIRM_URL = UltimakerCloudConstants.CuraCloudAPIRoot + "/connect/v1/clusters/{cluster_id}/printers/{cluster_printer_id}/action/import_material" + + class Result(enum.IntEnum): + SUCCESS = 0 + FAILED = 1 + + class PrinterStatus(enum.Enum): + UPLOADING = "uploading" + SUCCESS = "success" + FAILED = "failed" + + def __init__(self, material_sync: "CloudMaterialSync"): + super().__init__() + self._material_sync = material_sync + self._scope = JsonDecoratorScope(UltimakerCloudScope(cura.CuraApplication.CuraApplication.getInstance())) # type: JsonDecoratorScope + self._archive_filename = None # type: Optional[str] + self._archive_remote_id = None # type: Optional[str] # ID that the server gives to this archive. Used to communicate about the archive to the server. + self._printer_sync_status = {} # type: Dict[str, str] + self._printer_metadata = [] # type: List[Dict[str, Any]] + self.processProgressChanged.connect(self._onProcessProgressChanged) + + uploadCompleted = Signal() # Triggered when the job is really complete, including uploading to the cloud. + processProgressChanged = Signal() # Triggered when we've made progress creating the archive. + uploadProgressChanged = Signal() # Triggered when we've made progress with the complete job. This signal emits a progress fraction (0-1) as well as the status of every printer. + + def run(self) -> None: + """ + Generates an archive of materials and starts uploading that archive to the cloud. + """ + self._printer_metadata = CuraContainerRegistry.getInstance().findContainerStacksMetadata( + type = "machine", + connection_type = "3", # Only cloud printers. + is_online = "True", # Only online printers. Otherwise the server gives an error. + host_guid = "*", # Required metadata field. Otherwise we get a KeyError. + um_cloud_cluster_id = "*" # Required metadata field. Otherwise we get a KeyError. + ) + + # Filter out any printer not capable of the 'import_material' capability. Needs FW 7.0.1-RC at the least! + self._printer_metadata = [ printer_data for printer_data in self._printer_metadata if ( + UltimakerCloudConstants.META_CAPABILITIES in printer_data and + "import_material" in printer_data[UltimakerCloudConstants.META_CAPABILITIES] + ) + ] + + for printer in self._printer_metadata: + self._printer_sync_status[printer["host_guid"]] = self.PrinterStatus.UPLOADING.value + + try: + archive_file = tempfile.NamedTemporaryFile("wb", delete = False) + archive_file.close() + self._archive_filename = archive_file.name + self._material_sync.exportAll(QUrl.fromLocalFile(self._archive_filename), notify_progress = self.processProgressChanged) + except OSError as e: + Logger.error(f"Failed to create archive of materials to sync with printers: {type(e)} - {e}") + self.failed(UploadMaterialsError(catalog.i18nc("@text:error", "Failed to create archive of materials to sync with printers."))) + return + + try: + file_size = os.path.getsize(self._archive_filename) + except OSError as e: + Logger.error(f"Failed to load the archive of materials to sync it with printers: {type(e)} - {e}") + self.failed(UploadMaterialsError(catalog.i18nc("@text:error", "Failed to load the archive of materials to sync it with printers."))) + return + + request_metadata = { + "data": { + "file_size": file_size, + "material_profile_name": "cura.umm", # File name can be anything as long as it's .umm. It's not used by anyone. + "content_type": "application/zip", # This endpoint won't receive files of different MIME types. + "origin": "cura" # Some identifier against hackers intercepting this upload request, apparently. + } + } + request_payload = json.dumps(request_metadata).encode("UTF-8") + + http = HttpRequestManager.getInstance() + http.put( + url = self.UPLOAD_REQUEST_URL, + data = request_payload, + callback = self.onUploadRequestCompleted, + error_callback = self.onError, + scope = self._scope + ) + + def onUploadRequestCompleted(self, reply: "QNetworkReply") -> None: + """ + Triggered when we successfully requested to upload a material archive. + + We then need to start uploading the material archive to the URL that the request answered with. + :param reply: The reply from the server to our request to upload an archive. + """ + response_data = HttpRequestManager.readJSON(reply) + if response_data is None: + Logger.error(f"Invalid response to material upload request. Could not parse JSON data.") + self.failed(UploadMaterialsError(catalog.i18nc("@text:error", "The response from Digital Factory appears to be corrupted."))) + return + if "data" not in response_data: + Logger.error(f"Invalid response to material upload request: Missing 'data' field that contains the entire response.") + self.failed(UploadMaterialsError(catalog.i18nc("@text:error", "The response from Digital Factory is missing important information."))) + return + if "upload_url" not in response_data["data"]: + Logger.error(f"Invalid response to material upload request: Missing 'upload_url' field to upload archive to.") + self.failed(UploadMaterialsError(catalog.i18nc("@text:error", "The response from Digital Factory is missing important information."))) + return + if "material_profile_id" not in response_data["data"]: + Logger.error(f"Invalid response to material upload request: Missing 'material_profile_id' to communicate about the materials with the server.") + self.failed(UploadMaterialsError(catalog.i18nc("@text:error", "The response from Digital Factory is missing important information."))) + return + + upload_url = response_data["data"]["upload_url"] + self._archive_remote_id = response_data["data"]["material_profile_id"] + try: + with open(cast(str, self._archive_filename), "rb") as f: + file_data = f.read() + except OSError as e: + Logger.error(f"Failed to load archive back in for sending to cloud: {type(e)} - {e}") + self.failed(UploadMaterialsError(catalog.i18nc("@text:error", "Failed to load the archive of materials to sync it with printers."))) + return + http = HttpRequestManager.getInstance() + http.put( + url = upload_url, + data = file_data, + callback = self.onUploadCompleted, + error_callback = self.onError, + scope = self._scope + ) + + def onUploadCompleted(self, reply: "QNetworkReply") -> None: + """ + When we've successfully uploaded the archive to the cloud, we need to notify the API to start syncing that + archive to every printer. + :param reply: The reply from the cloud storage when the upload succeeded. + """ + for container_stack in self._printer_metadata: + cluster_id = container_stack["um_cloud_cluster_id"] + printer_id = container_stack["host_guid"] + + http = HttpRequestManager.getInstance() + http.post( + url = self.UPLOAD_CONFIRM_URL.format(cluster_id = cluster_id, cluster_printer_id = printer_id), + callback = functools.partial(self.onUploadConfirmed, printer_id), + error_callback = functools.partial(self.onUploadConfirmed, printer_id), # Let this same function handle the error too. + scope = self._scope, + data = json.dumps({"data": {"material_profile_id": self._archive_remote_id}}).encode("UTF-8") + ) + + def onUploadConfirmed(self, printer_id: str, reply: "QNetworkReply", error: Optional["QNetworkReply.NetworkError"] = None) -> None: + """ + Triggered when we've got a confirmation that the material is synced with the printer, or that syncing failed. + + If syncing succeeded we mark this printer as having the status "success". If it failed we mark the printer as + "failed". If this is the last upload that needed to be completed, we complete the job with either a success + state (every printer successfully synced) or a failed state (any printer failed). + :param printer_id: The printer host_guid that we completed syncing with. + :param reply: The reply that the server gave to confirm. + :param error: If the request failed, this error gives an indication what happened. + """ + if error is not None: + Logger.error(f"Failed to confirm uploading material archive to printer {printer_id}: {error}") + self._printer_sync_status[printer_id] = self.PrinterStatus.FAILED.value + else: + self._printer_sync_status[printer_id] = self.PrinterStatus.SUCCESS.value + + still_uploading = len([val for val in self._printer_sync_status.values() if val == self.PrinterStatus.UPLOADING.value]) + self.uploadProgressChanged.emit(0.8 + (len(self._printer_sync_status) - still_uploading) / len(self._printer_sync_status), self.getPrinterSyncStatus()) + + if still_uploading == 0: # This is the last response to be processed. + if self.PrinterStatus.FAILED.value in self._printer_sync_status.values(): + self.setResult(self.Result.FAILED) + self.setError(UploadMaterialsError(catalog.i18nc("@text:error", "Failed to connect to Digital Factory to sync materials with some of the printers."))) + else: + self.setResult(self.Result.SUCCESS) + self.uploadCompleted.emit(self.getResult(), self.getError()) + + def onError(self, reply: "QNetworkReply", error: Optional["QNetworkReply.NetworkError"]) -> None: + """ + Used as callback from HTTP requests when the request failed. + + The given network error from the `HttpRequestManager` is logged, and the job is marked as failed. + :param reply: The main reply of the server. This reply will most likely not be valid. + :param error: The network error (Qt's enum) that occurred. + """ + Logger.error(f"Failed to upload material archive: {error}") + self.failed(UploadMaterialsError(catalog.i18nc("@text:error", "Failed to connect to Digital Factory."))) + + def getPrinterSyncStatus(self) -> Dict[str, str]: + """ + For each printer, identified by host_guid, this gives the current status of uploading the material archive. + + The possible states are given in the PrinterStatus enum. + :return: A dictionary with printer host_guids as keys, and their status as values. + """ + return self._printer_sync_status + + def failed(self, error: UploadMaterialsError) -> None: + """ + Helper function for when we have a general failure. + + This sets the sync status for all printers to failed, sets the error on + the job and the result of the job to FAILED. + :param error: An error to show to the user. + """ + self.setResult(self.Result.FAILED) + self.setError(error) + for printer_id in self._printer_sync_status: + self._printer_sync_status[printer_id] = self.PrinterStatus.FAILED.value + self.uploadProgressChanged.emit(1.0, self.getPrinterSyncStatus()) + self.uploadCompleted.emit(self.getResult(), self.getError()) + + def _onProcessProgressChanged(self, progress: float) -> None: + """ + When we progress in the process of uploading materials, we not only signal the new progress (float from 0 to 1) + but we also signal the current status of every printer. These are emitted as the two parameters of the signal. + :param progress: The progress of this job, between 0 and 1. + """ + self.uploadProgressChanged.emit(progress * 0.8, self.getPrinterSyncStatus()) # The processing is 80% of the progress bar. diff --git a/cura/Settings/ContainerManager.py b/cura/Settings/ContainerManager.py index 45f2edab20..518eaaa8fa 100644 --- a/cura/Settings/ContainerManager.py +++ b/cura/Settings/ContainerManager.py @@ -23,6 +23,8 @@ from UM.Settings.InstanceContainer import InstanceContainer import cura.CuraApplication from cura.Machines.ContainerTree import ContainerTree +from cura.Settings.ExtruderStack import ExtruderStack +from cura.Settings.GlobalStack import GlobalStack if TYPE_CHECKING: from cura.CuraApplication import CuraApplication @@ -319,7 +321,7 @@ class ContainerManager(QObject): stack.qualityChanges = quality_changes if not quality_changes or container_registry.isReadOnly(quality_changes.getId()): - Logger.log("e", "Could not update quality of a nonexistant or read only quality profile in stack %s", stack.getId()) + Logger.log("e", "Could not update quality of a nonexistent or read only quality profile in stack %s", stack.getId()) continue self._performMerge(quality_changes, stack.getTop()) @@ -408,7 +410,7 @@ class ContainerManager(QObject): container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry() for plugin_id, container_type in container_registry.getContainerTypes(): # Ignore default container types since those are not plugins - if container_type in (InstanceContainer, ContainerStack, DefinitionContainer): + if container_type in (InstanceContainer, ContainerStack, DefinitionContainer, GlobalStack, ExtruderStack): continue serialize_type = "" diff --git a/cura/Settings/CuraContainerRegistry.py b/cura/Settings/CuraContainerRegistry.py index 295d843fd7..6130019f4d 100644 --- a/cura/Settings/CuraContainerRegistry.py +++ b/cura/Settings/CuraContainerRegistry.py @@ -32,6 +32,10 @@ from cura.Machines.ContainerTree import ContainerTree from cura.ReaderWriters.ProfileReader import NoProfileException, ProfileReader from UM.i18n import i18nCatalog +from .DatabaseHandlers.IntentDatabaseHandler import IntentDatabaseHandler +from .DatabaseHandlers.QualityDatabaseHandler import QualityDatabaseHandler +from .DatabaseHandlers.VariantDatabaseHandler import VariantDatabaseHandler + catalog = i18nCatalog("cura") @@ -44,6 +48,10 @@ class CuraContainerRegistry(ContainerRegistry): # is added, we check to see if an extruder stack needs to be added. self.containerAdded.connect(self._onContainerAdded) + self._database_handlers["variant"] = VariantDatabaseHandler() + self._database_handlers["quality"] = QualityDatabaseHandler() + self._database_handlers["intent"] = IntentDatabaseHandler() + @override(ContainerRegistry) def addContainer(self, container: ContainerInterface) -> bool: """Overridden from ContainerRegistry diff --git a/cura/Settings/CuraStackBuilder.py b/cura/Settings/CuraStackBuilder.py index efc447b2cf..7ede6950d7 100644 --- a/cura/Settings/CuraStackBuilder.py +++ b/cura/Settings/CuraStackBuilder.py @@ -66,7 +66,7 @@ class CuraStackBuilder: Logger.logException("e", "Failed to create an extruder stack for position {pos}: {err}".format(pos = position, err = str(e))) return None - # If given, set the machine_extruder_count when creating the machine, or else the extruderList used bellow will + # If given, set the machine_extruder_count when creating the machine, or else the extruderList used below will # not return the correct extruder list (since by default, the machine_extruder_count is 1) in machines with # settable number of extruders. if machine_extruder_count and 0 <= machine_extruder_count <= len(extruder_dict): diff --git a/cura/Settings/DatabaseHandlers/IntentDatabaseHandler.py b/cura/Settings/DatabaseHandlers/IntentDatabaseHandler.py new file mode 100644 index 0000000000..cd6c662591 --- /dev/null +++ b/cura/Settings/DatabaseHandlers/IntentDatabaseHandler.py @@ -0,0 +1,25 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.Settings.SQLQueryFactory import SQLQueryFactory +from UM.Settings.DatabaseContainerMetadataController import DatabaseMetadataContainerController +from UM.Settings.InstanceContainer import InstanceContainer + + +class IntentDatabaseHandler(DatabaseMetadataContainerController): + """The Database handler for Intent containers""" + + def __init__(self) -> None: + super().__init__(SQLQueryFactory(table = "intent", + fields = { + "id": "text", + "name": "text", + "quality_type": "text", + "intent_category": "text", + "variant": "text", + "definition": "text", + "material": "text", + "version": "text", + "setting_version": "text" + })) + self._container_type = InstanceContainer diff --git a/cura/Settings/DatabaseHandlers/QualityDatabaseHandler.py b/cura/Settings/DatabaseHandlers/QualityDatabaseHandler.py new file mode 100644 index 0000000000..477bb56465 --- /dev/null +++ b/cura/Settings/DatabaseHandlers/QualityDatabaseHandler.py @@ -0,0 +1,38 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.Settings.SQLQueryFactory import SQLQueryFactory, metadata_type +from UM.Settings.DatabaseContainerMetadataController import DatabaseMetadataContainerController +from UM.Settings.InstanceContainer import InstanceContainer + + +class QualityDatabaseHandler(DatabaseMetadataContainerController): + """The Database handler for Quality containers""" + + def __init__(self): + super().__init__(SQLQueryFactory(table = "quality", + fields = { + "id": "text", + "name": "text", + "quality_type": "text", + "material": "text", + "variant": "text", + "global_quality": "bool", + "definition": "text", + "version": "text", + "setting_version": "text" + })) + self._container_type = InstanceContainer + + def groomMetadata(self, metadata: metadata_type) -> metadata_type: + """ + Ensures that the metadata is in the order of the field keys and has the right size. + if the metadata doesn't contains a key which is stored in the DB it will add it as + an empty string. Key, value pairs that are not stored in the DB are dropped. + If the `global_quality` isn't set it well default to 'False' + + :param metadata: The container metadata + """ + if "global_quality" not in metadata: + metadata["global_quality"] = "False" + return super().groomMetadata(metadata) diff --git a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py new file mode 100644 index 0000000000..4b1deae356 --- /dev/null +++ b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py @@ -0,0 +1,22 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.Settings.SQLQueryFactory import SQLQueryFactory +from UM.Settings.DatabaseContainerMetadataController import DatabaseMetadataContainerController +from UM.Settings.InstanceContainer import InstanceContainer + + +class VariantDatabaseHandler(DatabaseMetadataContainerController): + """The Database handler for Variant containers""" + + def __init__(self): + super().__init__(SQLQueryFactory(table = "variant", + fields = { + "id": "text", + "name": "text", + "hardware_type": "text", + "definition": "text", + "version": "text", + "setting_version": "text" + })) + self._container_type = InstanceContainer diff --git a/plugins/Toolbox/src/CloudSync/__init__.py b/cura/Settings/DatabaseHandlers/__init__.py similarity index 100% rename from plugins/Toolbox/src/CloudSync/__init__.py rename to cura/Settings/DatabaseHandlers/__init__.py diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index 1e9199d525..0fdc27ec81 100755 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.py @@ -12,6 +12,7 @@ from UM.Scene.SceneNode import SceneNode from UM.Scene.Selection import Selection from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator from UM.Settings.ContainerRegistry import ContainerRegistry # Finding containers by ID. +from cura.Machines.ContainerTree import ContainerTree from typing import Any, cast, Dict, List, Optional, TYPE_CHECKING, Union @@ -258,11 +259,21 @@ class ExtruderManager(QObject): if support_roof_enabled: used_extruder_stack_ids.add(self.extruderIds[self.extruderValueWithDefault(str(global_stack.getProperty("support_roof_extruder_nr", "value")))]) - # The platform adhesion extruder. Not used if using none. - if global_stack.getProperty("adhesion_type", "value") != "none" or ( - global_stack.getProperty("prime_tower_brim_enable", "value") and - global_stack.getProperty("adhesion_type", "value") != 'raft'): - extruder_str_nr = str(global_stack.getProperty("adhesion_extruder_nr", "value")) + # The platform adhesion extruders. + used_adhesion_extruders = set() + adhesion_type = global_stack.getProperty("adhesion_type", "value") + if adhesion_type == "skirt" and (global_stack.getProperty("skirt_line_count", "value") > 0 or global_stack.getProperty("skirt_brim_minimal_length", "value") > 0): + used_adhesion_extruders.add("skirt_brim_extruder_nr") # There's a skirt. + if (adhesion_type == "brim" or global_stack.getProperty("prime_tower_brim_enable", "value")) and (global_stack.getProperty("brim_line_count", "value") > 0 or global_stack.getProperty("skirt_brim_minimal_length", "value") > 0): + used_adhesion_extruders.add("skirt_brim_extruder_nr") # There's a brim or prime tower brim. + if adhesion_type == "raft": + used_adhesion_extruders.add("raft_base_extruder_nr") + if global_stack.getProperty("raft_interface_layers", "value") > 0: + used_adhesion_extruders.add("raft_interface_extruder_nr") + if global_stack.getProperty("raft_surface_layers", "value") > 0: + used_adhesion_extruders.add("raft_surface_extruder_nr") + for extruder_setting in used_adhesion_extruders: + extruder_str_nr = str(global_stack.getProperty(extruder_setting, "value")) if extruder_str_nr == "-1": extruder_str_nr = self._application.getMachineManager().defaultExtruderPosition if extruder_str_nr in self.extruderIds: @@ -285,8 +296,11 @@ class ExtruderManager(QObject): global_stack = application.getGlobalContainerStack() # Starts with the adhesion extruder. - if global_stack.getProperty("adhesion_type", "value") != "none": - return global_stack.getProperty("adhesion_extruder_nr", "value") + adhesion_type = global_stack.getProperty("adhesion_type", "value") + if adhesion_type in {"skirt", "brim"}: + return global_stack.getProperty("skirt_brim_extruder_nr", "value") + if adhesion_type == "raft": + return global_stack.getProperty("raft_base_extruder_nr", "value") # No adhesion? Well maybe there is still support brim. if (global_stack.getProperty("support_enable", "value") or global_stack.getProperty("support_structure", "value") == "tree") and global_stack.getProperty("support_brim_enable", "value"): @@ -403,6 +417,35 @@ class ExtruderManager(QObject): raise IndexError(msg) extruder_stack_0.definition = extruder_definition + @pyqtSlot("QVariant", result = bool) + def getExtruderHasQualityForMaterial(self, extruder_stack: "ExtruderStack") -> bool: + """Checks if quality nodes exist for the variant/material combination.""" + application = cura.CuraApplication.CuraApplication.getInstance() + global_stack = application.getGlobalContainerStack() + if not global_stack or not extruder_stack: + return False + + if not global_stack.getMetaDataEntry("has_materials"): + return True + + machine_node = ContainerTree.getInstance().machines[global_stack.definition.getId()] + + active_variant_name = extruder_stack.variant.getMetaDataEntry("name") + if active_variant_name not in machine_node.variants: + Logger.log("w", "Could not find the variant %s", active_variant_name) + return True + active_variant_node = machine_node.variants[active_variant_name] + try: + active_material_node = active_variant_node.materials[extruder_stack.material.getMetaDataEntry("base_file")] + except KeyError: # The material in this stack is not a supported material (e.g. wrong filament diameter, as loaded from a project file). + return False + + active_material_node_qualities = active_material_node.qualities + if not active_material_node_qualities: + return False + return list(active_material_node_qualities.keys())[0] != "empty_quality" + + @pyqtSlot(str, result="QVariant") def getInstanceExtruderValues(self, key: str) -> List: """Get all extruder values for a certain setting. diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 70a8a6aae7..648b1e9cae 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import time @@ -627,7 +627,7 @@ class MachineManager(QObject): return "" return global_container_stack.getIntentCategory() - # Provies a list of extruder positions that have a different intent from the active one. + # Provides a list of extruder positions that have a different intent from the active one. @pyqtProperty("QStringList", notify=activeIntentChanged) def extruderPositionsWithNonActiveIntent(self): global_container_stack = self._application.getGlobalContainerStack() @@ -855,7 +855,6 @@ class MachineManager(QObject): caution_message = Message( catalog.i18nc("@info:message Followed by a list of settings.", "Settings have been changed to match the current availability of extruders:") + " [{settings_list}]".format(settings_list = ", ".join(add_user_changes)), - lifetime = 0, title = catalog.i18nc("@info:title", "Settings updated")) caution_message.show() @@ -1191,7 +1190,7 @@ class MachineManager(QObject): self.setIntentByCategory(quality_changes_group.intent_category) self._reCalculateNumUserSettings() - + self.correctExtruderSettings() self.activeQualityGroupChanged.emit() self.activeQualityChangesGroupChanged.emit() @@ -1398,6 +1397,8 @@ class MachineManager(QObject): # previous one). self._global_container_stack.setUserChanges(global_user_changes) for i, user_changes in enumerate(per_extruder_user_changes): + if i >= len(self._global_container_stack.extruderList): # New printer has fewer extruders. + break self._global_container_stack.extruderList[i].setUserChanges(per_extruder_user_changes[i]) @pyqtSlot(QObject) @@ -1534,7 +1535,7 @@ class MachineManager(QObject): machine_node = ContainerTree.getInstance().machines.get(machine_definition_id) variant_node = machine_node.variants.get(variant_name) if variant_node is None: - Logger.error("There is no variant with the name {variant_name}.") + Logger.error(f"There is no variant with the name {variant_name}.") return self.setVariant(position, variant_node) diff --git a/cura/Settings/SettingInheritanceManager.py b/cura/Settings/SettingInheritanceManager.py index 6179e76ab7..34dfaeb616 100644 --- a/cura/Settings/SettingInheritanceManager.py +++ b/cura/Settings/SettingInheritanceManager.py @@ -61,6 +61,10 @@ class SettingInheritanceManager(QObject): result.append(key) return result + @pyqtSlot(str, str, result = bool) + def hasOverrides(self, key: str, extruder_index: str): + return key in self.getOverridesForExtruder(key, extruder_index) + @pyqtSlot(str, str, result = "QStringList") def getOverridesForExtruder(self, key: str, extruder_index: str) -> List[str]: if self._global_container_stack is None: diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index 6fcf0da6cf..597a4d5f32 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -18,6 +18,8 @@ class SingleInstance: self._single_instance_server = None + self._application.getPreferences().addPreference("cura/single_instance_clear_before_load", True) + # Starts a client that checks for a single instance server and sends the files that need to opened if the server # exists. Returns True if the single instance server is found, otherwise False. def startClient(self) -> bool: @@ -42,8 +44,9 @@ class SingleInstance: # "command" field is required and holds the name of the command to execute. # Other fields depend on the command. - payload = {"command": "clear-all"} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) + if self._application.getPreferences().getValue("cura/single_instance_clear_before_load"): + payload = {"command": "clear-all"} + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) payload = {"command": "focus"} single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) @@ -68,7 +71,7 @@ class SingleInstance: Logger.log("e", "Single instance server was not created.") def _onClientConnected(self) -> None: - Logger.log("i", "New connection recevied on our single-instance server") + Logger.log("i", "New connection received on our single-instance server") connection = None #type: Optional[QLocalSocket] if self._single_instance_server: connection = self._single_instance_server.nextPendingConnection() diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 08dd4d1030..a7b813610f 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -3,6 +3,7 @@ import numpy from PyQt5 import QtCore +from PyQt5.QtCore import QCoreApplication from PyQt5.QtGui import QImage from cura.PreviewPass import PreviewPass @@ -46,6 +47,7 @@ class Snapshot: render_width, render_height = (width, height) if active_camera is None else active_camera.getWindowSize() render_width = int(render_width) render_height = int(render_height) + QCoreApplication.processEvents() # This ensures that the opengl context is correctly available preview_pass = PreviewPass(render_width, render_height) root = scene.getRoot() diff --git a/cura/TaskManagement/OnExitCallbackManager.py b/cura/TaskManagement/OnExitCallbackManager.py index 2e8e42595b..7894931e9c 100644 --- a/cura/TaskManagement/OnExitCallbackManager.py +++ b/cura/TaskManagement/OnExitCallbackManager.py @@ -56,8 +56,8 @@ class OnExitCallbackManager: self._application.callLater(self._application.closeApplication) # This is the callback function which an on-exit callback should call when it finishes, it should provide the - # "should_proceed" flag indicating whether this check has "passed", or in other words, whether quiting the - # application should be blocked. If the last on-exit callback doesn't block the quiting, it will call the next + # "should_proceed" flag indicating whether this check has "passed", or in other words, whether quitting the + # application should be blocked. If the last on-exit callback doesn't block the quitting, it will call the next # registered on-exit callback if available. def onCurrentCallbackFinished(self, should_proceed: bool = True) -> None: if not should_proceed: diff --git a/cura/UI/CuraSplashScreen.py b/cura/UI/CuraSplashScreen.py index d9caa207f4..4fa798247d 100644 --- a/cura/UI/CuraSplashScreen.py +++ b/cura/UI/CuraSplashScreen.py @@ -17,7 +17,9 @@ class CuraSplashScreen(QSplashScreen): self._scale = 0.7 self._version_y_offset = 0 # when extra visual elements are in the background image, move version text down - if ApplicationMetadata.IsEnterpriseVersion: + if ApplicationMetadata.IsAlternateVersion: + splash_image = QPixmap(Resources.getPath(Resources.Images, "cura_wip.png")) + elif ApplicationMetadata.IsEnterpriseVersion: splash_image = QPixmap(Resources.getPath(Resources.Images, "cura_enterprise.png")) self._version_y_offset = 26 else: @@ -70,7 +72,7 @@ class CuraSplashScreen(QSplashScreen): font = QFont() # Using system-default font here font.setPixelSize(18) painter.setFont(font) - painter.drawText(60, 70 + self._version_y_offset, round(330 * self._scale), round(230 * self._scale), Qt.AlignLeft | Qt.AlignTop, version[0]) + painter.drawText(60, 70 + self._version_y_offset, round(330 * self._scale), round(230 * self._scale), Qt.AlignLeft | Qt.AlignTop, version[0] if not ApplicationMetadata.IsAlternateVersion else ApplicationMetadata.CuraBuildType) if len(version) > 1: font.setPixelSize(16) painter.setFont(font) diff --git a/cura/UI/ObjectsModel.py b/cura/UI/ObjectsModel.py index 0c109d7a4a..64a6e89054 100644 --- a/cura/UI/ObjectsModel.py +++ b/cura/UI/ObjectsModel.py @@ -90,7 +90,7 @@ class ObjectsModel(ListModel): parent = node.getParent() if parent and parent.callDecoration("isGroup"): - return False # Grouped nodes don't need resetting as their parent (the group) is resetted) + return False # Grouped nodes don't need resetting as their parent (the group) is reset) node_build_plate_number = node.callDecoration("getBuildPlateNumber") if Application.getInstance().getPreferences().getValue("view/filter_current_build_plate") and node_build_plate_number != self._build_plate_number: diff --git a/cura/UI/PrintInformation.py b/cura/UI/PrintInformation.py index d6bd336558..2135c6fe81 100644 --- a/cura/UI/PrintInformation.py +++ b/cura/UI/PrintInformation.py @@ -13,6 +13,8 @@ from UM.Qt.Duration import Duration from UM.Scene.SceneNode import SceneNode from UM.i18n import i18nCatalog from UM.MimeTypeDatabase import MimeTypeDatabase, MimeTypeNotFoundError +from UM.OutputDevice.OutputDevice import OutputDevice +from UM.OutputDevice.ProjectOutputDevice import ProjectOutputDevice if TYPE_CHECKING: from cura.CuraApplication import CuraApplication @@ -68,6 +70,7 @@ class PrintInformation(QObject): self._application.globalContainerStackChanged.connect(self.setToZeroPrintInformation) self._application.fileLoaded.connect(self.setBaseName) self._application.workspaceLoaded.connect(self.setProjectName) + self._application.getOutputDeviceManager().writeStarted.connect(self._onOutputStart) self._application.getMachineManager().rootMaterialChanged.connect(self._onActiveMaterialsChanged) self._application.getInstance().getPreferences().preferenceChanged.connect(self._onPreferencesChanged) @@ -439,3 +442,11 @@ class PrintInformation(QObject): """Listen to scene changes to check if we need to reset the print information""" self.setToZeroPrintInformation(self._active_build_plate) + + def _onOutputStart(self, output_device: OutputDevice) -> None: + """If this is the sort of output 'device' (like local or online file storage, rather than a printer), + the user could have altered the file-name, and thus the project name should be altered as well.""" + if isinstance(output_device, ProjectOutputDevice): + new_name = output_device.getLastOutputName() + if new_name is not None: + self.setJobName(os.path.splitext(os.path.basename(new_name))[0]) diff --git a/cura/UI/TextManager.py b/cura/UI/TextManager.py index e45689936b..77dadae809 100644 --- a/cura/UI/TextManager.py +++ b/cura/UI/TextManager.py @@ -46,7 +46,9 @@ class TextManager(QObject): line = line.replace("[", "") line = line.replace("]", "") open_version = Version(line) - if open_version > Version([14, 99, 99]): # Bit of a hack: We released the 15.x.x versions before 2.x + if open_version < Version([0, 0, 1]): # Something went wrong with parsing, assume non-numerical alternate version that should be on top. + open_version = Version([99, 99, 99]) + if Version([14, 99, 99]) < open_version < Version([16, 0, 0]): # Bit of a hack: We released the 15.x.x versions before 2.x open_version = Version([0, open_version.getMinor(), open_version.getRevision(), open_version.getPostfixVersion()]) open_header = "" change_logs_dict[open_version] = collections.OrderedDict() @@ -66,7 +68,9 @@ class TextManager(QObject): text_version = version if version < Version([1, 0, 0]): # Bit of a hack: We released the 15.x.x versions before 2.x text_version = Version([15, version.getMinor(), version.getRevision(), version.getPostfixVersion()]) - content += "

" + str(text_version) + "


" + if version > Version([99, 0, 0]): # Leave it out altogether if it was originally a non-numbered version. + text_version = "" + content += ("

" + str(text_version) + "


") if text_version else "" content += "" for change in change_logs_dict[version]: if str(change) != "": diff --git a/cura/UI/WelcomePagesModel.py b/cura/UI/WelcomePagesModel.py index 3c2d0503ab..890e34a31e 100644 --- a/cura/UI/WelcomePagesModel.py +++ b/cura/UI/WelcomePagesModel.py @@ -1,7 +1,9 @@ -# Copyright (c) 2019 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from collections import deque + import os + +from collections import deque from typing import TYPE_CHECKING, Optional, List, Dict, Any from PyQt5.QtCore import QUrl, Qt, pyqtSlot, pyqtProperty, pyqtSignal @@ -16,24 +18,23 @@ if TYPE_CHECKING: from cura.CuraApplication import CuraApplication -# -# This is the Qt ListModel that contains all welcome pages data. Each page is a page that can be shown as a step in the -# welcome wizard dialog. Each item in this ListModel represents a page, which contains the following fields: -# -# - id : A unique page_id which can be used in function goToPage(page_id) -# - page_url : The QUrl to the QML file that contains the content of this page -# - next_page_id : (OPTIONAL) The next page ID to go to when this page finished. This is optional. If this is not -# provided, it will go to the page with the current index + 1 -# - next_page_button_text: (OPTIONAL) The text to show for the "next" button, by default it's the translated text of -# "Next". Note that each step QML can decide whether to use this text or not, so it's not -# mandatory. -# - should_show_function : (OPTIONAL) An optional function that returns True/False indicating if this page should be -# shown. By default all pages should be shown. If a function returns False, that page will -# be skipped and its next page will be shown. -# -# Note that in any case, a page that has its "should_show_function" == False will ALWAYS be skipped. -# class WelcomePagesModel(ListModel): + """ + This is the Qt ListModel that contains all welcome pages data. Each page is a page that can be shown as a step in + the welcome wizard dialog. Each item in this ListModel represents a page, which contains the following fields: + - id : A unique page_id which can be used in function goToPage(page_id) + - page_url : The QUrl to the QML file that contains the content of this page + - next_page_id : (OPTIONAL) The next page ID to go to when this page finished. This is optional. If this is + not provided, it will go to the page with the current index + 1 + - next_page_button_text : (OPTIONAL) The text to show for the "next" button, by default it's the translated text of + "Next". Note that each step QML can decide whether to use this text or not, so it's not + mandatory. + - should_show_function : (OPTIONAL) An optional function that returns True/False indicating if this page should be + shown. By default all pages should be shown. If a function returns False, that page will + be skipped and its next page will be shown. + + Note that in any case, a page that has its "should_show_function" == False will ALWAYS be skipped. + """ IdRole = Qt.UserRole + 1 # Page ID PageUrlRole = Qt.UserRole + 2 # URL to the page's QML file @@ -55,11 +56,11 @@ class WelcomePagesModel(ListModel): self._default_next_button_text = self._catalog.i18nc("@action:button", "Next") - self._pages = [] # type: List[Dict[str, Any]] + self._pages: List[Dict[str, Any]] = [] self._current_page_index = 0 # Store all the previous page indices so it can go back. - self._previous_page_indices_stack = deque() # type: deque + self._previous_page_indices_stack: deque = deque() # If the welcome flow should be shown. It can show the complete flow or just the changelog depending on the # specific case. See initialize() for how this variable is set. @@ -72,17 +73,21 @@ class WelcomePagesModel(ListModel): def currentPageIndex(self) -> int: return self._current_page_index - # Returns a float number in [0, 1] which indicates the current progress. @pyqtProperty(float, notify = currentPageIndexChanged) def currentProgress(self) -> float: + """ + Returns a float number in [0, 1] which indicates the current progress. + """ if len(self._items) == 0: return 0 else: return self._current_page_index / len(self._items) - # Indicates if the current page is the last page. @pyqtProperty(bool, notify = currentPageIndexChanged) def isCurrentPageLast(self) -> bool: + """ + Indicates if the current page is the last page. + """ return self._current_page_index == len(self._items) - 1 def _setCurrentPageIndex(self, page_index: int) -> None: @@ -91,17 +96,22 @@ class WelcomePagesModel(ListModel): self._current_page_index = page_index self.currentPageIndexChanged.emit() - # Ends the Welcome-Pages. Put as a separate function for cases like the 'decline' in the User-Agreement. @pyqtSlot() def atEnd(self) -> None: + """ + Ends the Welcome-Pages. Put as a separate function for cases like the 'decline' in the User-Agreement. + """ self.allFinished.emit() self.resetState() - # Goes to the next page. - # If "from_index" is given, it will look for the next page to show starting from the "from_index" page instead of - # the "self._current_page_index". @pyqtSlot() def goToNextPage(self, from_index: Optional[int] = None) -> None: + """ + Goes to the next page. + If "from_index" is given, it will look for the next page to show starting from the "from_index" page instead of + the "self._current_page_index". + """ + # Look for the next page that should be shown current_index = self._current_page_index if from_index is None else from_index while True: @@ -137,9 +147,11 @@ class WelcomePagesModel(ListModel): # Move to the next page self._setCurrentPageIndex(next_page_index) - # Goes to the previous page. If there's no previous page, do nothing. @pyqtSlot() def goToPreviousPage(self) -> None: + """ + Goes to the previous page. If there's no previous page, do nothing. + """ if len(self._previous_page_indices_stack) == 0: Logger.log("i", "No previous page, do nothing") return @@ -148,9 +160,9 @@ class WelcomePagesModel(ListModel): self._current_page_index = previous_page_index self.currentPageIndexChanged.emit() - # Sets the current page to the given page ID. If the page ID is not found, do nothing. @pyqtSlot(str) def goToPage(self, page_id: str) -> None: + """Sets the current page to the given page ID. If the page ID is not found, do nothing.""" page_index = self.getPageIndexById(page_id) if page_index is None: # FIXME: If we cannot find the next page, we cannot do anything here. @@ -165,18 +177,22 @@ class WelcomePagesModel(ListModel): # Find the next page to show starting from the "page_index" self.goToNextPage(from_index = page_index) - # Checks if the page with the given index should be shown by calling the "should_show_function" associated with it. - # If the function is not present, returns True (show page by default). def _shouldPageBeShown(self, page_index: int) -> bool: + """ + Checks if the page with the given index should be shown by calling the "should_show_function" associated with + it. If the function is not present, returns True (show page by default). + """ next_page_item = self.getItem(page_index) should_show_function = next_page_item.get("should_show_function", lambda: True) return should_show_function() - # Resets the state of the WelcomePagesModel. This functions does the following: - # - Resets current_page_index to 0 - # - Clears the previous page indices stack @pyqtSlot() def resetState(self) -> None: + """ + Resets the state of the WelcomePagesModel. This functions does the following: + - Resets current_page_index to 0 + - Clears the previous page indices stack + """ self._current_page_index = 0 self._previous_page_indices_stack.clear() @@ -188,8 +204,8 @@ class WelcomePagesModel(ListModel): def shouldShowWelcomeFlow(self) -> bool: return self._should_show_welcome_flow - # Gets the page index with the given page ID. If the page ID doesn't exist, returns None. def getPageIndexById(self, page_id: str) -> Optional[int]: + """Gets the page index with the given page ID. If the page ID doesn't exist, returns None.""" page_idx = None for idx, page_item in enumerate(self._items): if page_item["id"] == page_id: @@ -197,8 +213,9 @@ class WelcomePagesModel(ListModel): break return page_idx - # Convenience function to get QUrl path to pages that's located in "resources/qml/WelcomePages". - def _getBuiltinWelcomePagePath(self, page_filename: str) -> "QUrl": + @staticmethod + def _getBuiltinWelcomePagePath(page_filename: str) -> QUrl: + """Convenience function to get QUrl path to pages that's located in "resources/qml/WelcomePages".""" from cura.CuraApplication import CuraApplication return QUrl.fromLocalFile(Resources.getPath(CuraApplication.ResourceTypes.QmlFiles, os.path.join("WelcomePages", page_filename))) @@ -213,21 +230,22 @@ class WelcomePagesModel(ListModel): self._initialize() def _initialize(self, update_should_show_flag: bool = True) -> None: - show_whatsnew_only = False + show_whats_new_only = False if update_should_show_flag: has_active_machine = self._application.getMachineManager().activeMachine is not None has_app_just_upgraded = self._application.hasJustUpdatedFromOldVersion() # Only show the what's new dialog if there's no machine and we have just upgraded show_complete_flow = not has_active_machine - show_whatsnew_only = has_active_machine and has_app_just_upgraded + show_whats_new_only = has_active_machine and has_app_just_upgraded # FIXME: This is a hack. Because of the circular dependency between MachineManager, ExtruderManager, and - # possibly some others, setting the initial active machine is not done when the MachineManager gets initialized. - # So at this point, we don't know if there will be an active machine or not. It could be that the active machine - # files are corrupted so we cannot rely on Preferences either. This makes sure that once the active machine - # gets changed, this model updates the flags, so it can decide whether to show the welcome flow or not. - should_show_welcome_flow = show_complete_flow or show_whatsnew_only + # possibly some others, setting the initial active machine is not done when the MachineManager gets + # initialized. So at this point, we don't know if there will be an active machine or not. It could be that + # the active machine files are corrupted so we cannot rely on Preferences either. This makes sure that once + # the active machine gets changed, this model updates the flags, so it can decide whether to show the + # welcome flow or not. + should_show_welcome_flow = show_complete_flow or show_whats_new_only if should_show_welcome_flow != self._should_show_welcome_flow: self._should_show_welcome_flow = should_show_welcome_flow self.shouldShowWelcomeFlowChanged.emit() @@ -274,23 +292,25 @@ class WelcomePagesModel(ListModel): ] pages_to_show = all_pages_list - if show_whatsnew_only: + if show_whats_new_only: pages_to_show = list(filter(lambda x: x["id"] == "whats_new", all_pages_list)) self._pages = pages_to_show self.setItems(self._pages) - # For convenience, inject the default "next" button text to each item if it's not present. def setItems(self, items: List[Dict[str, Any]]) -> None: + # For convenience, inject the default "next" button text to each item if it's not present. for item in items: if "next_page_button_text" not in item: item["next_page_button_text"] = self._default_next_button_text super().setItems(items) - # Indicates if the machine action panel should be shown by checking if there's any first start machine actions - # available. def shouldShowMachineActions(self) -> bool: + """ + Indicates if the machine action panel should be shown by checking if there's any first start machine actions + available. + """ global_stack = self._application.getMachineManager().activeMachine if global_stack is None: return False @@ -312,6 +332,3 @@ class WelcomePagesModel(ListModel): def addPage(self) -> None: pass - - -__all__ = ["WelcomePagesModel"] diff --git a/cura/UI/WhatsNewPagesModel.py b/cura/UI/WhatsNewPagesModel.py index 11320a0ebb..b99bdf30f0 100644 --- a/cura/UI/WhatsNewPagesModel.py +++ b/cura/UI/WhatsNewPagesModel.py @@ -1,27 +1,39 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from .WelcomePagesModel import WelcomePagesModel import os -from typing import Optional, Dict, List, Tuple +from typing import Optional, Dict, List, Tuple, TYPE_CHECKING + from PyQt5.QtCore import pyqtProperty, pyqtSlot + from UM.Logger import Logger from UM.Resources import Resources -# -# This Qt ListModel is more or less the same the WelcomePagesModel, except that this model is only for showing the -# "what's new" page. This is also used in the "Help" menu to show the changes log. -# +from cura.UI.WelcomePagesModel import WelcomePagesModel + +if TYPE_CHECKING: + from PyQt5.QtCore import QObject + from cura.CuraApplication import CuraApplication + + class WhatsNewPagesModel(WelcomePagesModel): + """ + This Qt ListModel is more or less the same the WelcomePagesModel, except that this model is only for showing the + "what's new" page. This is also used in the "Help" menu to show the changes log. + """ image_formats = [".png", ".jpg", ".jpeg", ".gif", ".svg"] text_formats = [".txt", ".htm", ".html"] image_key = "image" text_key = "text" + def __init__(self, application: "CuraApplication", parent: Optional["QObject"] = None) -> None: + super().__init__(application, parent) + self._subpages: List[Dict[str, Optional[str]]] = [] + @staticmethod def _collectOrdinalFiles(resource_type: int, include: List[str]) -> Tuple[Dict[int, str], int]: - result = {} #type: Dict[int, str] + result = {} # type: Dict[int, str] highest = -1 try: folder_path = Resources.getPath(resource_type, "whats_new") @@ -65,7 +77,7 @@ class WhatsNewPagesModel(WelcomePagesModel): texts, max_text = WhatsNewPagesModel._collectOrdinalFiles(Resources.Texts, WhatsNewPagesModel.text_formats) highest = max(max_image, max_text) - self._subpages = [] #type: List[Dict[str, Optional[str]]] + self._subpages = [] for n in range(0, highest + 1): self._subpages.append({ WhatsNewPagesModel.image_key: None if n not in images else images[n], @@ -93,5 +105,3 @@ class WhatsNewPagesModel(WelcomePagesModel): def getSubpageText(self, page: int) -> str: result = self._getSubpageItem(page, WhatsNewPagesModel.text_key) return result if result else "* * *" - -__all__ = ["WhatsNewPagesModel"] diff --git a/cura/UltimakerCloud/CloudMaterialSync.py b/cura/UltimakerCloud/CloudMaterialSync.py new file mode 100644 index 0000000000..8848b9bd60 --- /dev/null +++ b/cura/UltimakerCloud/CloudMaterialSync.py @@ -0,0 +1,218 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt5.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject, QUrl +from PyQt5.QtGui import QDesktopServices +from typing import Dict, Optional, TYPE_CHECKING +import zipfile # To export all materials in a .zip archive. + +import cura.CuraApplication # Imported like this to prevent circular imports. +from UM.Resources import Resources +from cura.PrinterOutput.UploadMaterialsJob import UploadMaterialsJob, UploadMaterialsError # To export materials to the output printer. +from cura.Settings.CuraContainerRegistry import CuraContainerRegistry +from UM.i18n import i18nCatalog +from UM.Logger import Logger +from UM.Message import Message + +if TYPE_CHECKING: + from UM.Signal import Signal +catalog = i18nCatalog("cura") + +class CloudMaterialSync(QObject): + """ + Handles the synchronisation of material profiles with cloud accounts. + """ + + def __init__(self, parent: QObject = None): + super().__init__(parent) + self.sync_all_dialog = None # type: Optional[QObject] + self._export_upload_status = "idle" + self._checkIfNewMaterialsWereInstalled() + self._export_progress = 0.0 + self._printer_status = {} # type: Dict[str, str] + + def _checkIfNewMaterialsWereInstalled(self) -> None: + """ + Checks whether new material packages were installed in the latest startup. If there were, then it shows + a message prompting the user to sync the materials with their printers. + """ + application = cura.CuraApplication.CuraApplication.getInstance() + for package_id, package_data in application.getPackageManager().getPackagesInstalledOnStartup().items(): + if package_data["package_info"]["package_type"] == "material": + # At least one new material was installed + self._showSyncNewMaterialsMessage() + break + + def openSyncAllWindow(self): + + self.reset() + + if self.sync_all_dialog is None: + qml_path = Resources.getPath(cura.CuraApplication.CuraApplication.ResourceTypes.QmlFiles, "Preferences", + "Materials", "MaterialsSyncDialog.qml") + self.sync_all_dialog = cura.CuraApplication.CuraApplication.getInstance().createQmlComponent( + qml_path, {}) + if self.sync_all_dialog is None: # Failed to load QML file. + return + self.sync_all_dialog.setProperty("syncModel", self) + self.sync_all_dialog.setProperty("pageIndex", 0) # Return to first page. + self.sync_all_dialog.setProperty("hasExportedUsb", False) # If the user exported USB before, reset that page. + self.sync_all_dialog.setProperty("syncStatusText", "") # Reset any previous error messages. + self.sync_all_dialog.show() + + def _showSyncNewMaterialsMessage(self) -> None: + sync_materials_message = Message( + text = catalog.i18nc("@action:button", + "Please sync the material profiles with your printers before starting to print."), + title = catalog.i18nc("@action:button", "New materials installed"), + message_type = Message.MessageType.WARNING, + lifetime = 0 + ) + + sync_materials_message.addAction( + "sync", + name = catalog.i18nc("@action:button", "Sync materials"), + icon = "", + description = "Sync your newly installed materials with your printers.", + button_align = Message.ActionButtonAlignment.ALIGN_RIGHT + ) + + sync_materials_message.addAction( + "learn_more", + name = catalog.i18nc("@action:button", "Learn more"), + icon = "", + description = "Learn more about syncing your newly installed materials with your printers.", + button_align = Message.ActionButtonAlignment.ALIGN_LEFT, + button_style = Message.ActionButtonStyle.LINK + ) + sync_materials_message.actionTriggered.connect(self._onSyncMaterialsMessageActionTriggered) + + # Show the message only if there are printers that support material export + container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry() + global_stacks = container_registry.findContainerStacks(type = "machine") + if any([stack.supportsMaterialExport for stack in global_stacks]): + sync_materials_message.show() + + def _onSyncMaterialsMessageActionTriggered(self, sync_message: Message, sync_message_action: str): + if sync_message_action == "sync": + self.openSyncAllWindow() + sync_message.hide() + elif sync_message_action == "learn_more": + QDesktopServices.openUrl(QUrl("https://support.ultimaker.com/hc/en-us/articles/360013137919?utm_source=cura&utm_medium=software&utm_campaign=sync-material-printer-message")) + + @pyqtSlot(result = QUrl) + def getPreferredExportAllPath(self) -> QUrl: + """ + Get the preferred path to export materials to. + + If there is a removable drive, that should be the preferred path. Otherwise it should be the most recent local + file path. + :return: The preferred path to export all materials to. + """ + cura_application = cura.CuraApplication.CuraApplication.getInstance() + device_manager = cura_application.getOutputDeviceManager() + devices = device_manager.getOutputDevices() + for device in devices: + if device.__class__.__name__ == "RemovableDriveOutputDevice": + return QUrl.fromLocalFile(device.getId()) + else: # No removable drives? Use local path. + return cura_application.getDefaultPath("dialog_material_path") + + @pyqtSlot(QUrl) + def exportAll(self, file_path: QUrl, notify_progress: Optional["Signal"] = None) -> None: + """ + Export all materials to a certain file path. + :param file_path: The path to export the materials to. + """ + registry = CuraContainerRegistry.getInstance() + + # Create empty archive. + try: + archive = zipfile.ZipFile(file_path.toLocalFile(), "w", compression = zipfile.ZIP_DEFLATED) + except OSError as e: + Logger.log("e", f"Can't write to destination {file_path.toLocalFile()}: {type(e)} - {str(e)}") + error_message = Message( + text = catalog.i18nc("@message:text", "Could not save material archive to {}:").format(file_path.toLocalFile()) + " " + str(e), + title = catalog.i18nc("@message:title", "Failed to save material archive"), + message_type = Message.MessageType.ERROR + ) + error_message.show() + return + + materials_metadata = registry.findInstanceContainersMetadata(type = "material") + for index, metadata in enumerate(materials_metadata): + if notify_progress is not None: + progress = index / len(materials_metadata) + notify_progress.emit(progress) + if metadata["base_file"] != metadata["id"]: # Only process base files. + continue + if metadata["id"] == "empty_material": # Don't export the empty material. + continue + material = registry.findContainers(id = metadata["id"])[0] + suffix = registry.getMimeTypeForContainer(type(material)).preferredSuffix + filename = metadata["id"] + "." + suffix + try: + archive.writestr(filename, material.serialize()) + except OSError as e: + Logger.log("e", f"An error has occurred while writing the material \'{metadata['id']}\' in the file \'{filename}\': {e}.") + + exportUploadStatusChanged = pyqtSignal() + + @pyqtProperty(str, notify = exportUploadStatusChanged) + def exportUploadStatus(self) -> str: + return self._export_upload_status + + @pyqtSlot() + def exportUpload(self) -> None: + """ + Export all materials and upload them to the user's account. + """ + self._export_upload_status = "uploading" + self.exportUploadStatusChanged.emit() + job = UploadMaterialsJob(self) + job.uploadProgressChanged.connect(self._onUploadProgressChanged) + job.uploadCompleted.connect(self.exportUploadCompleted) + job.start() + + def _onUploadProgressChanged(self, progress: float, printers_status: Dict[str, str]): + self.setExportProgress(progress) + self.setPrinterStatus(printers_status) + + def exportUploadCompleted(self, job_result: UploadMaterialsJob.Result, job_error: Optional[Exception]): + if not self.sync_all_dialog: # Shouldn't get triggered before the dialog is open, but better to check anyway. + return + if job_result == UploadMaterialsJob.Result.FAILED: + if isinstance(job_error, UploadMaterialsError): + self.sync_all_dialog.setProperty("syncStatusText", str(job_error)) + else: # Could be "None" + self.sync_all_dialog.setProperty("syncStatusText", catalog.i18nc("@text", "Unknown error.")) + self._export_upload_status = "error" + else: + self._export_upload_status = "success" + self.exportUploadStatusChanged.emit() + + exportProgressChanged = pyqtSignal(float) + + def setExportProgress(self, progress: float) -> None: + self._export_progress = progress + self.exportProgressChanged.emit(self._export_progress) + + @pyqtProperty(float, fset = setExportProgress, notify = exportProgressChanged) + def exportProgress(self) -> float: + return self._export_progress + + printerStatusChanged = pyqtSignal() + + def setPrinterStatus(self, new_status: Dict[str, str]) -> None: + self._printer_status = new_status + self.printerStatusChanged.emit() + + @pyqtProperty("QVariantMap", fset = setPrinterStatus, notify = printerStatusChanged) + def printerStatus(self) -> Dict[str, str]: + return self._printer_status + + def reset(self) -> None: + self.setPrinterStatus({}) + self.setExportProgress(0.0) + self._export_upload_status = "idle" + self.exportUploadStatusChanged.emit() diff --git a/cura/UltimakerCloud/UltimakerCloudConstants.py b/cura/UltimakerCloud/UltimakerCloudConstants.py index 0c8ea0c9c7..f65d500fb7 100644 --- a/cura/UltimakerCloud/UltimakerCloudConstants.py +++ b/cura/UltimakerCloud/UltimakerCloudConstants.py @@ -13,6 +13,9 @@ DEFAULT_DIGITAL_FACTORY_URL = "https://digitalfactory.ultimaker.com" # type: st META_UM_LINKED_TO_ACCOUNT = "um_linked_to_account" """(bool) Whether a cloud printer is linked to an Ultimaker account""" +META_CAPABILITIES = "capabilities" +"""(list[str]) a list of capabilities this printer supports""" + try: from cura.CuraVersion import CuraCloudAPIRoot # type: ignore if CuraCloudAPIRoot == "": diff --git a/cura/UltimakerCloud/UltimakerCloudScope.py b/cura/UltimakerCloud/UltimakerCloudScope.py index 5477423099..bbcc8e2aa9 100644 --- a/cura/UltimakerCloud/UltimakerCloudScope.py +++ b/cura/UltimakerCloud/UltimakerCloudScope.py @@ -1,9 +1,15 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + from PyQt5.QtNetwork import QNetworkRequest from UM.Logger import Logger from UM.TaskManagement.HttpRequestScope import DefaultUserAgentScope -from cura.API import Account -from cura.CuraApplication import CuraApplication + +from typing import TYPE_CHECKING +if TYPE_CHECKING: + from cura.CuraApplication import CuraApplication + from cura.API.Account import Account class UltimakerCloudScope(DefaultUserAgentScope): @@ -12,7 +18,7 @@ class UltimakerCloudScope(DefaultUserAgentScope): Also add the user agent headers (see DefaultUserAgentScope). """ - def __init__(self, application: CuraApplication): + def __init__(self, application: "CuraApplication"): super().__init__(application) api = application.getCuraAPI() self._account = api.account # type: Account diff --git a/cura_app.py b/cura_app.py index 57692ec0ae..1520d2da67 100755 --- a/cura_app.py +++ b/cura_app.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. # Remove the working directory from sys.path. @@ -15,6 +15,9 @@ if "" in sys.path: import argparse import faulthandler import os +if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway. + os.environ["QT_PLUGIN_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. + os.environ["QML2_IMPORT_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. from PyQt5.QtNetwork import QSslConfiguration, QSslSocket @@ -48,6 +51,8 @@ if with_sentry_sdk: sentry_env = "development" # Master is always a development version. elif "beta" in ApplicationMetadata.CuraVersion or "BETA" in ApplicationMetadata.CuraVersion: sentry_env = "beta" + elif "alpha" in ApplicationMetadata.CuraVersion or "ALPHA" in ApplicationMetadata.CuraVersion: + sentry_env = "alpha" try: if ApplicationMetadata.CuraVersion.split(".")[2] == "99": sentry_env = "nightly" diff --git a/docker/build.sh b/docker/build.sh index 990d28d2e8..1092ba4852 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -7,9 +7,9 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" PROJECT_DIR="$( cd "${SCRIPT_DIR}/.." && pwd )" # Make sure that environment variables are set properly -source /opt/rh/devtoolset-8/enable export PATH="${CURA_BUILD_ENV_PATH}/bin:${PATH}" export PKG_CONFIG_PATH="${CURA_BUILD_ENV_PATH}/lib/pkgconfig:${PKG_CONFIG_PATH}" +export LD_LIBRARY_PATH="${CURA_BUILD_ENV_PATH}/lib:${LD_LIBRARY_PATH}" cd "${PROJECT_DIR}" @@ -50,7 +50,7 @@ do echo "Found Uranium branch [${URANIUM_BRANCH}]." break else - echo "Could not find Uranium banch [${URANIUM_BRANCH}], try next." + echo "Could not find Uranium branch [${URANIUM_BRANCH}], try next." fi done @@ -60,7 +60,7 @@ export PYTHONPATH="${PROJECT_DIR}/Uranium:.:${PYTHONPATH}" mkdir build cd build -cmake3 \ +cmake \ -DCMAKE_BUILD_TYPE=Debug \ -DCMAKE_PREFIX_PATH="${CURA_BUILD_ENV_PATH}" \ -DURANIUM_DIR="${PROJECT_DIR}/Uranium" \ diff --git a/docker/test.sh b/docker/test.sh index 9284fede20..bae2bf785e 100755 --- a/docker/test.sh +++ b/docker/test.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash cd build -ctest3 -j4 --output-on-failure -T Test +ctest -j4 --output-on-failure -T Test diff --git a/docs/resources/PerObjectStack.png b/docs/resources/PerObjectStack.png new file mode 100644 index 0000000000..bc9db14d3b Binary files /dev/null and b/docs/resources/PerObjectStack.png differ diff --git a/docs/scene/build_volume.md b/docs/scene/build_volume.md index eb10e5e60e..8cdecb6d3a 100644 --- a/docs/scene/build_volume.md +++ b/docs/scene/build_volume.md @@ -8,7 +8,7 @@ The build volume draws a cube (for rectangular build plates) that represents the The build volume also draws a grid underneath the build volume. The grid features 1cm lines which allows the user to roughly estimate how big its print is or the distance between prints. It also features a finer 1mm line pattern within that grid. The grid is drawn as a single quad. This quad is then sent to the graphical card with a specialised shader which draws the grid pattern. -For elliptical build plates, the volume bounds are drawn as two circles, one at the top and one at the bottom of the available height. The build plate grid is drawn as a tesselated circle, but with the same shader. +For elliptical build plates, the volume bounds are drawn as two circles, one at the top and one at the bottom of the available height. The build plate grid is drawn as a tessellated circle, but with the same shader. Disallowed areas ---- diff --git a/icons/cura-128.png b/icons/cura-128.png index ac411c314e..bcd1700c29 100644 Binary files a/icons/cura-128.png and b/icons/cura-128.png differ diff --git a/icons/cura-32.png b/icons/cura-32.png index 5608ea00d4..b20e22dbac 100644 Binary files a/icons/cura-32.png and b/icons/cura-32.png differ diff --git a/icons/cura-48.png b/icons/cura-48.png index 0370b46a68..f88e7a1f0e 100644 Binary files a/icons/cura-48.png and b/icons/cura-48.png differ diff --git a/icons/cura-64.png b/icons/cura-64.png index 0eb24055d1..ff517ea645 100644 Binary files a/icons/cura-64.png and b/icons/cura-64.png differ diff --git a/icons/cura.icns b/icons/cura.icns index 6649f660a4..51d8ea71e8 100644 Binary files a/icons/cura.icns and b/icons/cura.icns differ diff --git a/icons/cura.ico b/icons/cura.ico index 9849ec07b8..b1d34e54d0 100644 Binary files a/icons/cura.ico and b/icons/cura.ico differ diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index ee8652839d..5f57e49cc6 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -49,7 +49,9 @@ _ignored_machine_network_metadata = { "removal_warning", "group_name", "group_size", - "connection_type" + "connection_type", + "capabilities", + "octoprint_api_key", } # type: Set[str] @@ -377,7 +379,9 @@ class ThreeMFWorkspaceReader(WorkspaceReader): # - the global stack DOESN'T exist but some/all of the extruder stacks exist # To simplify this, only check if the global stack exists or not global_stack_id = self._stripFileToId(global_stack_file) + serialized = archive.open(global_stack_file).read().decode("utf-8") + serialized = GlobalStack._updateSerialized(serialized, global_stack_file) machine_name = self._getMachineNameFromSerializedStack(serialized) self._machine_info.metadata_dict = self._getMetaDataDictFromSerializedStack(serialized) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 450f01fbd5..898b1ea993 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -6,7 +6,7 @@ import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 import QtQuick.Window 2.2 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.1 as Cura UM.Dialog @@ -19,9 +19,7 @@ UM.Dialog width: minimumWidth height: Math.max(dialogSummaryItem.height + 2 * buttonsItem.height, minimumHeight) // 2 * button height to also have some extra space around the button relative to the button size - property int comboboxHeight: 15 * screenScaleFactor - property int spacerHeight: 10 * screenScaleFactor - property int doubleSpacerHeight: 20 * screenScaleFactor + property int comboboxHeight: UM.Theme.getSize("default_margin").height onClosing: manager.notifyClosed() onVisibleChanged: @@ -46,10 +44,6 @@ UM.Dialog id: catalog name: "cura" } - SystemPalette - { - id: palette - } ListModel { @@ -68,45 +62,39 @@ UM.Dialog { width: parent.width height: childrenRect.height - spacing: 2 * screenScaleFactor - Label + spacing: UM.Theme.getSize("default_margin").height + + Column { - id: titleLabel - text: catalog.i18nc("@action:title", "Summary - Cura Project") - font.pointSize: 18 - } - Rectangle - { - id: separator - color: palette.text width: parent.width - height: 1 - } - Item // Spacer - { - height: doubleSpacerHeight - width: height + height: cildrenRect.height + + UM.Label + { + id: titleLabel + text: catalog.i18nc("@action:title", "Summary - Cura Project") + font: UM.Theme.getFont("large") + } + + Rectangle + { + id: separator + color: UM.Theme.getColor("text") + width: parent.width + height: UM.Theme.getSize("default_lining").height + } } - Row + Item { - height: childrenRect.height width: parent.width - Label - { - text: catalog.i18nc("@action:label", "Printer settings") - font.bold: true - width: (parent.width / 3) | 0 - } - Item - { - // spacer - height: spacerHeight - width: (parent.width / 3) | 0 - } + height: childrenRect.height + UM.TooltipArea { id: machineResolveStrategyTooltip + anchors.top: parent.top + anchors.right: parent.right width: (parent.width / 3) | 0 height: visible ? comboboxHeight : 0 visible: base.visible && machineResolveComboBox.model.count > 1 @@ -157,64 +145,65 @@ UM.Dialog } } } - } - Row - { - width: parent.width - height: childrenRect.height - Label + + Column { - text: catalog.i18nc("@action:label", "Type") - width: (parent.width / 3) | 0 - } - Label - { - text: manager.machineType - width: (parent.width / 3) | 0 + width: parent.width + height: cildrenRect.height + + UM.Label + { + id: printer_settings_label + text: catalog.i18nc("@action:label", "Printer settings") + font: UM.Theme.getFont("default_bold") + } + + Row + { + width: parent.width + height: childrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", "Type") + width: (parent.width / 3) | 0 + } + UM.Label + { + text: manager.machineType + width: (parent.width / 3) | 0 + } + } + + Row + { + width: parent.width + height: childrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", manager.isPrinterGroup ? "Printer Group" : "Printer Name") + width: (parent.width / 3) | 0 + } + UM.Label + { + text: manager.machineName + width: (parent.width / 3) | 0 + wrapMode: Text.WordWrap + } + } } } - Row + Item { width: parent.width height: childrenRect.height - Label - { - text: catalog.i18nc("@action:label", manager.isPrinterGroup ? "Printer Group" : "Printer Name") - width: (parent.width / 3) | 0 - } - Label - { - text: manager.machineName - width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap - } - } - Item // Spacer - { - height: doubleSpacerHeight - width: height - } - Row - { - height: childrenRect.height - width: parent.width - Label - { - text: catalog.i18nc("@action:label", "Profile settings") - font.bold: true - width: (parent.width / 3) | 0 - } - Item - { - // spacer - height: spacerHeight - width: (parent.width / 3) | 0 - } UM.TooltipArea { - id: qualityChangesResolveTooltip + anchors.right: parent.right + anchors.top: parent.top width: (parent.width / 3) | 0 height: visible ? comboboxHeight : 0 visible: manager.qualityChangesConflict @@ -232,96 +221,105 @@ UM.Dialog } } } + + Column + { + width: parent.width + height: cildrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", "Profile settings") + font: UM.Theme.getFont("default_bold") + } + + Row + { + width: parent.width + height: childrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", "Name") + width: (parent.width / 3) | 0 + } + UM.Label + { + text: manager.qualityName + width: (parent.width / 3) | 0 + wrapMode: Text.WordWrap + } + } + + Row + { + width: parent.width + height: childrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", "Intent") + width: (parent.width / 3) | 0 + } + UM.Label + { + text: manager.intentName + width: (parent.width / 3) | 0 + wrapMode: Text.WordWrap + } + } + + Row + { + width: parent.width + height: childrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", "Not in profile") + visible: manager.numUserSettings != 0 + width: (parent.width / 3) | 0 + } + UM.Label + { + text: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) + visible: manager.numUserSettings != 0 + width: (parent.width / 3) | 0 + } + } + + Row + { + width: parent.width + height: childrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", "Derivative from") + visible: manager.numSettingsOverridenByQualityChanges != 0 + width: (parent.width / 3) | 0 + } + UM.Label + { + text: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) + width: (parent.width / 3) | 0 + visible: manager.numSettingsOverridenByQualityChanges != 0 + wrapMode: Text.WordWrap + } + } + } } - Row + + Item { width: parent.width height: childrenRect.height - Label - { - text: catalog.i18nc("@action:label", "Name") - width: (parent.width / 3) | 0 - } - Label - { - text: manager.qualityName - width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap - } - } - Row - { - width: parent.width - height: childrenRect.height - Label - { - text: catalog.i18nc("@action:label", "Intent") - width: (parent.width / 3) | 0 - } - Label - { - text: manager.intentName - width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap - } - } - Row - { - width: parent.width - height: manager.numUserSettings != 0 ? childrenRect.height : 0 - Label - { - text: catalog.i18nc("@action:label", "Not in profile") - width: (parent.width / 3) | 0 - } - Label - { - text: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) - width: (parent.width / 3) | 0 - } - visible: manager.numUserSettings != 0 - } - Row - { - width: parent.width - height: manager.numSettingsOverridenByQualityChanges != 0 ? childrenRect.height : 0 - Label - { - text: catalog.i18nc("@action:label", "Derivative from") - width: (parent.width / 3) | 0 - } - Label - { - text: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) - width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap - } - visible: manager.numSettingsOverridenByQualityChanges != 0 - } - Item // Spacer - { - height: doubleSpacerHeight - width: height - } - Row - { - height: childrenRect.height - width: parent.width - Label - { - text: catalog.i18nc("@action:label", "Material settings") - font.bold: true - width: (parent.width / 3) | 0 - } - Item - { - // spacer - height: spacerHeight - width: (parent.width / 3) | 0 - } + UM.TooltipArea { id: materialResolveTooltip + anchors.right: parent.right + anchors.top: parent.top width: (parent.width / 3) | 0 height: visible ? comboboxHeight : 0 visible: manager.materialConflict @@ -339,76 +337,91 @@ UM.Dialog } } } + + Column + { + width: parent.width + height: cildrenRect.height + Row + { + height: childrenRect.height + width: parent.width + spacing: UM.Theme.getSize("narrow_margin").width + + UM.Label + { + text: catalog.i18nc("@action:label", "Material settings") + font: UM.Theme.getFont("default_bold") + width: (parent.width / 3) | 0 + } + } + + Repeater + { + model: manager.materialLabels + delegate: Row + { + width: parent.width + height: childrenRect.height + UM.Label + { + text: catalog.i18nc("@action:label", "Name") + width: (parent.width / 3) | 0 + } + UM.Label + { + text: modelData + width: (parent.width / 3) | 0 + wrapMode: Text.WordWrap + } + } + } + } } - Repeater + Column { - model: manager.materialLabels - delegate: Row + width: parent.width + height: cildrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", "Setting visibility") + font: UM.Theme.getFont("default_bold") + } + Row { width: parent.width height: childrenRect.height - Label + UM.Label { - text: catalog.i18nc("@action:label", "Name") + text: catalog.i18nc("@action:label", "Mode") width: (parent.width / 3) | 0 } - Label + UM.Label { - text: modelData + text: manager.activeMode + width: (parent.width / 3) | 0 + } + } + Row + { + width: parent.width + height: childrenRect.height + visible: manager.hasVisibleSettingsField + UM.Label + { + text: catalog.i18nc("@action:label", "Visible settings:") + width: (parent.width / 3) | 0 + } + UM.Label + { + text: catalog.i18nc("@action:label", "%1 out of %2" ).arg(manager.numVisibleSettings).arg(manager.totalNumberOfSettings) width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap } } } - Item // Spacer - { - height: doubleSpacerHeight - width: height - } - - Label - { - text: catalog.i18nc("@action:label", "Setting visibility") - font.bold: true - } - Row - { - width: parent.width - height: childrenRect.height - Label - { - text: catalog.i18nc("@action:label", "Mode") - width: (parent.width / 3) | 0 - } - Label - { - text: manager.activeMode - width: (parent.width / 3) | 0 - } - } - Row - { - width: parent.width - height: childrenRect.height - visible: manager.hasVisibleSettingsField - Label - { - text: catalog.i18nc("@action:label", "Visible settings:") - width: (parent.width / 3) | 0 - } - Label - { - text: catalog.i18nc("@action:label", "%1 out of %2" ).arg(manager.numVisibleSettings).arg(manager.totalNumberOfSettings) - width: (parent.width / 3) | 0 - } - } - Item // Spacer - { - height: spacerHeight - width: height - } Row { width: parent.width @@ -418,12 +431,10 @@ UM.Dialog { width: warningLabel.height height: width - source: UM.Theme.getIcon("Information") - color: palette.text - + color: UM.Theme.getColor("text") } - Label + UM.Label { id: warningLabel text: catalog.i18nc("@action:warning", "Loading a project will clear all models on the build plate.") @@ -432,44 +443,22 @@ UM.Dialog } } } - Item - { - id: buttonsItem - width: parent.width - height: childrenRect.height - anchors.bottom: parent.bottom - anchors.right: parent.right - Button + + buttonSpacing: UM.Theme.getSize("default_margin").width + + rightButtons: [ + Cura.TertiaryButton { - id: cancel_button - text: catalog.i18nc("@action:button","Cancel"); - onClicked: { manager.onCancelButtonClicked() } - enabled: true - anchors.bottom: parent.bottom - anchors.right: ok_button.left - anchors.rightMargin: 2 * screenScaleFactor - } - Button + text: catalog.i18nc("@action:button", "Cancel") + onClicked: reject() + }, + Cura.PrimaryButton { - id: ok_button - anchors.right: parent.right - anchors.bottom: parent.bottom - text: catalog.i18nc("@action:button","Open"); - onClicked: { manager.closeBackend(); manager.onOkButtonClicked() } + text: catalog.i18nc("@action:button", "Open") + onClicked: accept() } - } + ] - - function accept() { - manager.closeBackend(); - manager.onOkButtonClicked(); - base.visible = false; - base.accept(); - } - - function reject() { - manager.onCancelButtonClicked(); - base.visible = false; - base.rejected(); - } + onRejected: manager.onCancelButtonClicked() + onAccepted: manager.onOkButtonClicked() } diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index 9f4ab8e5fa..d6cc6ea159 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -32,6 +32,12 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): Logger.error("3MF Writer class is unavailable. Can't write workspace.") return False + global_stack = machine_manager.activeMachine + if global_stack is None: + self.setInformation(catalog.i18nc("@error", "There is no workspace yet to write. Please add a printer first.")) + Logger.error("Tried to write a 3MF workspace before there was a global stack.") + return False + # Indicate that the 3mf mesh writer should not close the archive just yet (we still need to add stuff to it). mesh_writer.setStoreArchive(True) mesh_writer.write(stream, nodes, mode) @@ -40,7 +46,6 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): if archive is None: # This happens if there was no mesh data to write. archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED) - global_stack = machine_manager.activeMachine try: # Add global container stack data to the archive. @@ -149,7 +154,8 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): "group_name", "group_size", "connection_type", - "octoprint_api_key" + "capabilities", + "octoprint_api_key", } serialized_data = container.serialize(ignored_metadata_keys = ignore_keys) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index c85eca88bf..45ba556d65 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -10,6 +10,10 @@ from UM.Application import Application from UM.Scene.SceneNode import SceneNode from cura.CuraApplication import CuraApplication +from cura.Utils.Threading import call_on_qt_thread +from cura.Snapshot import Snapshot + +from PyQt5.QtCore import QBuffer import Savitar @@ -149,6 +153,22 @@ class ThreeMFWriter(MeshWriter): relations_element = ET.Element("Relationships", xmlns = self._namespaces["relationships"]) model_relation_element = ET.SubElement(relations_element, "Relationship", Target = "/3D/3dmodel.model", Id = "rel0", Type = "http://schemas.microsoft.com/3dmanufacturing/2013/01/3dmodel") + # Attempt to add a thumbnail + snapshot = self._createSnapshot() + if snapshot: + thumbnail_buffer = QBuffer() + thumbnail_buffer.open(QBuffer.ReadWrite) + snapshot.save(thumbnail_buffer, "PNG") + + thumbnail_file = zipfile.ZipInfo("Metadata/thumbnail.png") + # Don't try to compress snapshot file, because the PNG is pretty much as compact as it will get + archive.writestr(thumbnail_file, thumbnail_buffer.data()) + + # Add PNG to content types file + thumbnail_type = ET.SubElement(content_types, "Default", Extension = "png", ContentType = "image/png") + # Add thumbnail relation to _rels/.rels file + thumbnail_relation_element = ET.SubElement(relations_element, "Relationship", Target = "/Metadata/thumbnail.png", Id = "rel1", Type = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail") + savitar_scene = Savitar.Scene() metadata_to_store = CuraApplication.getInstance().getController().getScene().getMetaData() @@ -212,3 +232,17 @@ class ThreeMFWriter(MeshWriter): self._archive = archive return True + + @call_on_qt_thread # must be called from the main thread because of OpenGL + def _createSnapshot(self): + Logger.log("d", "Creating thumbnail image...") + if not CuraApplication.getInstance().isVisible: + Logger.log("w", "Can't create snapshot when renderer not initialized.") + return None + try: + snapshot = Snapshot.snapshot(width = 300, height = 300) + except: + Logger.logException("w", "Failed to create snapshot image") + return None + + return snapshot diff --git a/plugins/CuraDrive/src/qml/components/BackupList.qml b/plugins/CuraDrive/src/qml/components/BackupList.qml index a4a460a885..8392792808 100644 --- a/plugins/CuraDrive/src/qml/components/BackupList.qml +++ b/plugins/CuraDrive/src/qml/components/BackupList.qml @@ -1,39 +1,34 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 import QtQuick.Controls 2.2 import QtQuick.Layouts 1.3 -import UM 1.1 as UM +import UM 1.5 as UM -ScrollView +ListView { - property alias model: backupList.model - width: parent.width clip: true - ListView + ScrollBar.vertical: UM.ScrollBar {} + + delegate: Item { - id: backupList - width: parent.width - delegate: Item + // Add a margin, otherwise the scrollbar is on top of the right most component + width: parent.width - UM.Theme.getSize("scrollbar").width + height: childrenRect.height + + BackupListItem { - // Add a margin, otherwise the scrollbar is on top of the right most component - width: parent.width - UM.Theme.getSize("default_margin").width - height: childrenRect.height + id: backupListItem + width: parent.width + } - BackupListItem - { - id: backupListItem - width: parent.width - } - - Rectangle - { - id: divider - color: UM.Theme.getColor("lining") - height: UM.Theme.getSize("default_lining").height - } + Rectangle + { + id: divider + color: UM.Theme.getColor("lining") + height: UM.Theme.getSize("default_lining").height } } } diff --git a/plugins/CuraDrive/src/qml/components/BackupListFooter.qml b/plugins/CuraDrive/src/qml/components/BackupListFooter.qml index 15af7521ed..76bd10bd66 100644 --- a/plugins/CuraDrive/src/qml/components/BackupListFooter.qml +++ b/plugins/CuraDrive/src/qml/components/BackupListFooter.qml @@ -5,7 +5,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.1 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura import "../components" @@ -35,7 +35,7 @@ RowLayout busy: CuraDrive.isCreatingBackup } - Cura.CheckBoxWithTooltip + UM.CheckBox { id: autoBackupEnabled checked: CuraDrive.autoBackupEnabled diff --git a/plugins/CuraDrive/src/qml/components/BackupListItem.qml b/plugins/CuraDrive/src/qml/components/BackupListItem.qml index e35c8351b7..a3b9770718 100644 --- a/plugins/CuraDrive/src/qml/components/BackupListItem.qml +++ b/plugins/CuraDrive/src/qml/components/BackupListItem.qml @@ -1,12 +1,11 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 import QtQuick.Controls 2.1 import QtQuick.Layouts 1.3 -import QtQuick.Dialogs 1.1 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -42,28 +41,22 @@ Item onClicked: backupListItem.showDetails = !backupListItem.showDetails } - Label + UM.Label { text: new Date(modelData.generated_time).toLocaleString(UM.Preferences.getValue("general/language")) - color: UM.Theme.getColor("text") elide: Text.ElideRight Layout.minimumWidth: 100 * screenScaleFactor Layout.maximumWidth: 500 * screenScaleFactor Layout.fillWidth: true - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } - Label + UM.Label { text: modelData.metadata.description - color: UM.Theme.getColor("text") elide: Text.ElideRight Layout.minimumWidth: 100 * screenScaleFactor Layout.maximumWidth: 500 * screenScaleFactor Layout.fillWidth: true - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } Cura.SecondaryButton @@ -94,21 +87,21 @@ Item anchors.top: dataRow.bottom } - MessageDialog + Cura.MessageDialog { id: confirmDeleteDialog title: catalog.i18nc("@dialog:title", "Delete Backup") text: catalog.i18nc("@dialog:info", "Are you sure you want to delete this backup? This cannot be undone.") - standardButtons: StandardButton.Yes | StandardButton.No - onYes: CuraDrive.deleteBackup(modelData.backup_id) + standardButtons: Dialog.Yes | Dialog.No + onAccepted: CuraDrive.deleteBackup(modelData.backup_id) } - MessageDialog + Cura.MessageDialog { id: confirmRestoreDialog title: catalog.i18nc("@dialog:title", "Restore Backup") text: catalog.i18nc("@dialog:info", "You will need to restart Cura before your backup is restored. Do you want to close Cura now?") - standardButtons: StandardButton.Yes | StandardButton.No - onYes: CuraDrive.restoreBackup(modelData.backup_id) + standardButtons: Dialog.Yes | Dialog.No + onAccepted: CuraDrive.restoreBackup(modelData.backup_id) } } diff --git a/plugins/CuraDrive/src/qml/components/BackupListItemDetailsRow.qml b/plugins/CuraDrive/src/qml/components/BackupListItemDetailsRow.qml index 9e4612fcf8..8ddf8e9d42 100644 --- a/plugins/CuraDrive/src/qml/components/BackupListItemDetailsRow.qml +++ b/plugins/CuraDrive/src/qml/components/BackupListItemDetailsRow.qml @@ -5,7 +5,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.1 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM RowLayout { @@ -26,27 +26,21 @@ RowLayout color: UM.Theme.getColor("text") } - Label + UM.Label { id: detailName - color: UM.Theme.getColor("text") elide: Text.ElideRight Layout.minimumWidth: 50 * screenScaleFactor Layout.maximumWidth: 100 * screenScaleFactor Layout.fillWidth: true - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } - Label + UM.Label { id: detailValue - color: UM.Theme.getColor("text") elide: Text.ElideRight Layout.minimumWidth: 50 * screenScaleFactor Layout.maximumWidth: 100 * screenScaleFactor Layout.fillWidth: true - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } } diff --git a/plugins/CuraDrive/src/qml/images/backup.svg b/plugins/CuraDrive/src/qml/images/backup.svg new file mode 100644 index 0000000000..852d369fb3 --- /dev/null +++ b/plugins/CuraDrive/src/qml/images/backup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/plugins/CuraDrive/src/qml/images/icon.png b/plugins/CuraDrive/src/qml/images/icon.png deleted file mode 100644 index 3f75491786..0000000000 Binary files a/plugins/CuraDrive/src/qml/images/icon.png and /dev/null differ diff --git a/plugins/CuraDrive/src/qml/pages/WelcomePage.qml b/plugins/CuraDrive/src/qml/pages/WelcomePage.qml index 0b207bc170..01fbca2229 100644 --- a/plugins/CuraDrive/src/qml/pages/WelcomePage.qml +++ b/plugins/CuraDrive/src/qml/pages/WelcomePage.qml @@ -5,7 +5,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.1 import QtQuick.Window 2.2 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura import "../components" @@ -23,23 +23,19 @@ Column { id: profileImage fillMode: Image.PreserveAspectFit - source: "../images/icon.png" + source: "../images/backup.svg" anchors.horizontalCenter: parent.horizontalCenter width: Math.round(parent.width / 4) } - Label + UM.Label { id: welcomeTextLabel text: catalog.i18nc("@description", "Backup and synchronize your Cura settings.") width: Math.round(parent.width / 2) - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter anchors.horizontalCenter: parent.horizontalCenter wrapMode: Label.WordWrap - renderType: Text.NativeRendering } Cura.PrimaryButton diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index f5f238c117..8636c465c0 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -159,7 +159,8 @@ class CuraEngineBackend(QObject, Backend): self._slicing_error_message = Message( text = catalog.i18nc("@message", "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."), - title = catalog.i18nc("@message:title", "Slicing failed") + title = catalog.i18nc("@message:title", "Slicing failed"), + message_type = Message.MessageType.ERROR ) self._slicing_error_message.addAction( action_id = "report_bug", @@ -427,6 +428,7 @@ class CuraEngineBackend(QObject, Backend): "Unable to slice with the current settings. The following settings have errors: {0}").format(", ".join(error_labels)), title = catalog.i18nc("@info:title", "Unable to slice"), message_type = Message.MessageType.WARNING) + Logger.warning(f"Unable to slice with the current settings. The following settings have errors: {', '.join(error_labels)}") self._error_message.show() self.setState(BackendState.Error) self.backendError.emit(job) @@ -453,6 +455,7 @@ class CuraEngineBackend(QObject, Backend): "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}").format(error_labels = ", ".join(errors.values())), title = catalog.i18nc("@info:title", "Unable to slice"), message_type = Message.MessageType.WARNING) + Logger.warning(f"Unable to slice due to per-object settings. The following settings have errors on one or more models: {', '.join(errors.values())}") self._error_message.show() self.setState(BackendState.Error) self.backendError.emit(job) @@ -467,6 +470,7 @@ class CuraEngineBackend(QObject, Backend): self._error_message.show() self.setState(BackendState.Error) self.backendError.emit(job) + return else: self.setState(BackendState.NotStarted) @@ -645,7 +649,7 @@ class CuraEngineBackend(QObject, Backend): for node in DepthFirstIterator(self._scene.getRoot()): if node.callDecoration("getLayerData"): if not build_plate_numbers or node.callDecoration("getBuildPlateNumber") in build_plate_numbers: - # We can asume that all nodes have a parent as we're looping through the scene (and filter out root) + # We can assume that all nodes have a parent as we're looping through the scene (and filter out root) cast(SceneNode, node.getParent()).removeChild(node) def markSliceAll(self) -> None: diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 453907ffc0..74e55ffe2d 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import numpy @@ -123,6 +123,9 @@ class StartSliceJob(Job): Job.yieldThread() for changed_setting_key in changed_setting_keys: + if not stack.getProperty(changed_setting_key, "enabled"): + continue + validation_state = stack.getProperty(changed_setting_key, "validationState") if validation_state is None: @@ -195,13 +198,20 @@ class StartSliceJob(Job): # Remove old layer data. for node in DepthFirstIterator(self._scene.getRoot()): if node.callDecoration("getLayerData") and node.callDecoration("getBuildPlateNumber") == self._build_plate_number: - # Singe we walk through all nodes in the scene, they always have a parent. + # Since we walk through all nodes in the scene, they always have a parent. cast(SceneNode, node.getParent()).removeChild(node) break # Get the objects in their groups to print. object_groups = [] if stack.getProperty("print_sequence", "value") == "one_at_a_time": + modifier_mesh_nodes = [] + + for node in DepthFirstIterator(self._scene.getRoot()): + build_plate_number = node.callDecoration("getBuildPlateNumber") + if node.callDecoration("isNonPrintingMesh") and build_plate_number == self._build_plate_number: + modifier_mesh_nodes.append(node) + for node in OneAtATimeIterator(self._scene.getRoot()): temp_list = [] @@ -218,7 +228,7 @@ class StartSliceJob(Job): temp_list.append(child_node) if temp_list: - object_groups.append(temp_list) + object_groups.append(temp_list + modifier_mesh_nodes) Job.yieldThread() if len(object_groups) == 0: Logger.log("w", "No objects suitable for one at a time found, or no correct order found") @@ -353,10 +363,19 @@ class StartSliceJob(Job): result[key] = stack.getProperty(key, "value") Job.yieldThread() - result["print_bed_temperature"] = result["material_bed_temperature"] # Renamed settings. + # Material identification in addition to non-human-readable GUID + result["material_id"] = stack.material.getMetaDataEntry("base_file", "") + result["material_type"] = stack.material.getMetaDataEntry("material", "") + result["material_name"] = stack.material.getMetaDataEntry("name", "") + result["material_brand"] = stack.material.getMetaDataEntry("brand", "") + + # Renamed settings. + result["print_bed_temperature"] = result["material_bed_temperature"] result["print_temperature"] = result["material_print_temperature"] result["travel_speed"] = result["speed_travel"] - result["time"] = time.strftime("%H:%M:%S") #Some extra settings. + + #Some extra settings. + result["time"] = time.strftime("%H:%M:%S") result["date"] = time.strftime("%d-%m-%Y") result["day"] = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"][int(time.strftime("%w"))] result["initial_extruder_nr"] = CuraApplication.getInstance().getExtruderManager().getInitialExtruderNr() @@ -455,9 +474,9 @@ class StartSliceJob(Job): bed_temperature_settings = ["material_bed_temperature", "material_bed_temperature_layer_0"] pattern = r"\{(%s)(,\s?\w+)?\}" % "|".join(bed_temperature_settings) # match {setting} as well as {setting, extruder_nr} settings["material_bed_temp_prepend"] = re.search(pattern, start_gcode) == None - print_temperature_settings = ["material_print_temperature", "material_print_temperature_layer_0", "default_material_print_temperature", "material_initial_print_temperature", "material_final_print_temperature", "material_standby_temperature"] + print_temperature_settings = ["material_print_temperature", "material_print_temperature_layer_0", "default_material_print_temperature", "material_initial_print_temperature", "material_final_print_temperature", "material_standby_temperature", "print_temperature"] pattern = r"\{(%s)(,\s?\w+)?\}" % "|".join(print_temperature_settings) # match {setting} as well as {setting, extruder_nr} - settings["material_print_temp_prepend"] = re.search(pattern, start_gcode) == None + settings["material_print_temp_prepend"] = re.search(pattern, start_gcode) is None # Replace the setting tokens in start and end g-code. # Use values from the first used extruder by default so we get the expected temperatures diff --git a/plugins/DigitalLibrary/plugin.json b/plugins/DigitalLibrary/plugin.json index 848346704f..5ed846da6a 100644 --- a/plugins/DigitalLibrary/plugin.json +++ b/plugins/DigitalLibrary/plugin.json @@ -2,7 +2,7 @@ "name": "Ultimaker Digital Library", "author": "Ultimaker B.V.", "description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.", - "version": "1.0.0", + "version": "1.1.0", "api": 7, "i18n-catalog": "cura" } diff --git a/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml b/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml index a7297c12fb..74bc52b69e 100644 --- a/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml +++ b/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml @@ -1,10 +1,9 @@ -// Copyright (C) 2021 Ultimaker B.V. +//Copyright (C) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Window 2.2 -import QtQuick.Controls 1.4 as OldControls // TableView doesn't exist in the QtQuick Controls 2.x in 5.10, so use the old one import QtQuick.Controls 2.3 -import QtQuick.Controls.Styles 1.4 import UM 1.2 as UM import Cura 1.6 as Cura diff --git a/plugins/DigitalLibrary/resources/qml/DigitalFactoryOpenDialog.qml b/plugins/DigitalLibrary/resources/qml/DigitalFactoryOpenDialog.qml index 58958e0069..11c5d687e8 100644 --- a/plugins/DigitalLibrary/resources/qml/DigitalFactoryOpenDialog.qml +++ b/plugins/DigitalLibrary/resources/qml/DigitalFactoryOpenDialog.qml @@ -1,10 +1,9 @@ -// Copyright (C) 2021 Ultimaker B.V. +//Copyright (C) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Window 2.2 -import QtQuick.Controls 1.4 as OldControls // TableView doesn't exist in the QtQuick Controls 2.x in 5.10, so use the old one import QtQuick.Controls 2.3 -import QtQuick.Controls.Styles 1.4 import UM 1.2 as UM import Cura 1.6 as Cura diff --git a/plugins/DigitalLibrary/resources/qml/DigitalFactorySaveDialog.qml b/plugins/DigitalLibrary/resources/qml/DigitalFactorySaveDialog.qml index 6d870d0c78..56109dbcbe 100644 --- a/plugins/DigitalLibrary/resources/qml/DigitalFactorySaveDialog.qml +++ b/plugins/DigitalLibrary/resources/qml/DigitalFactorySaveDialog.qml @@ -1,10 +1,9 @@ -// Copyright (C) 2021 Ultimaker B.V. +//Copyright (C) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Window 2.2 -import QtQuick.Controls 1.4 as OldControls // TableView doesn't exist in the QtQuick Controls 2.x in 5.10, so use the old one import QtQuick.Controls 2.3 -import QtQuick.Controls.Styles 1.4 import UM 1.2 as UM import Cura 1.6 as Cura diff --git a/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml index 5b237a3e48..5f594cb79e 100644 --- a/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml +++ b/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml @@ -1,10 +1,10 @@ -// Copyright (C) 2021 Ultimaker B.V. +//Copyright (C) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. -import QtQuick 2.10 +import Qt.labs.qmlmodels 1.0 +import QtQuick 2.15 import QtQuick.Window 2.2 -import QtQuick.Controls 1.4 as OldControls // TableView doesn't exist in the QtQuick Controls 2.x in 5.10, so use the old one import QtQuick.Controls 2.3 -import QtQuick.Controls.Styles 1.4 import UM 1.2 as UM import Cura 1.6 as Cura @@ -57,52 +57,32 @@ Item border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining") - - Cura.TableView + //We can't use Cura's TableView here, since in Cura >= 5.0 this uses QtQuick.TableView, while in Cura < 5.0 this uses QtControls1.TableView. + //So we have to define our own. Once support for 4.13 and earlier is dropped, we can switch to Cura.TableView. + Table { id: filesTableView anchors.fill: parent - model: manager.digitalFactoryFileModel - visible: model.count != 0 && manager.retrievingFileStatus != DF.RetrievalStatus.InProgress - selectionMode: OldControls.SelectionMode.SingleSelection - onDoubleClicked: + anchors.margins: parent.border.width + + columnHeaders: ["Name", "Uploaded by", "Uploaded at"] + model: TableModel + { + TableModelColumn { display: "fileName" } + TableModelColumn { display: "username" } + TableModelColumn { display: "uploadedAt" } + rows: manager.digitalFactoryFileModel.items + } + + onCurrentRowChanged: + { + manager.setSelectedFileIndices([currentRow]); + } + onDoubleClicked: function(row) { manager.setSelectedFileIndices([row]); openFilesButton.clicked(); } - - OldControls.TableViewColumn - { - id: fileNameColumn - role: "fileName" - title: "Name" - width: Math.round(filesTableView.width / 3) - } - - OldControls.TableViewColumn - { - id: usernameColumn - role: "username" - title: "Uploaded by" - width: Math.round(filesTableView.width / 3) - } - - OldControls.TableViewColumn - { - role: "uploadedAt" - title: "Uploaded at" - } - - Connections - { - target: filesTableView.selection - function onSelectionChanged() - { - let newSelection = []; - filesTableView.selection.forEach(function(rowIndex) { newSelection.push(rowIndex); }); - manager.setSelectedFileIndices(newSelection); - } - } } Label @@ -161,7 +141,6 @@ Item { // Make sure no files are selected when the file model changes filesTableView.currentRow = -1 - filesTableView.selection.clear() } } } @@ -187,7 +166,7 @@ Item anchors.bottom: parent.bottom anchors.right: parent.right text: "Open" - enabled: filesTableView.selection.count > 0 + enabled: filesTableView.currentRow >= 0 onClicked: { manager.openSelectedFiles() diff --git a/plugins/DigitalLibrary/resources/qml/ProjectSummaryCard.qml b/plugins/DigitalLibrary/resources/qml/ProjectSummaryCard.qml index 4374b2f998..ba2abf22a9 100644 --- a/plugins/DigitalLibrary/resources/qml/ProjectSummaryCard.qml +++ b/plugins/DigitalLibrary/resources/qml/ProjectSummaryCard.qml @@ -44,7 +44,7 @@ Cura.RoundedRectangle { id: projectImage anchors.verticalCenter: parent.verticalCenter - width: UM.Theme.getSize("toolbox_thumbnail_small").width + width: UM.Theme.getSize("card_icon").width height: Math.round(width * 3/4) sourceSize.width: width sourceSize.height: height diff --git a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml index 30e3513019..5cf0d571fe 100644 --- a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml @@ -1,12 +1,12 @@ -// Copyright (C) 2021 Ultimaker B.V. +//Copyright (C) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. +import Qt.labs.qmlmodels 1.0 import QtQuick 2.10 import QtQuick.Window 2.2 -import QtQuick.Controls 1.4 as OldControls // TableView doesn't exist in the QtQuick Controls 2.x in 5.10, so use the old one import QtQuick.Controls 2.3 -import QtQuick.Controls.Styles 1.4 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.6 as Cura import DigitalFactory 1.0 as DF @@ -86,35 +86,22 @@ Item border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining") - - Cura.TableView + //We can't use Cura's TableView here, since in Cura >= 5.0 this uses QtQuick.TableView, while in Cura < 5.0 this uses QtControls1.TableView. + //So we have to define our own. Once support for 4.13 and earlier is dropped, we can switch to Cura.TableView. + Table { id: filesTableView anchors.fill: parent - model: manager.digitalFactoryFileModel - visible: model.count != 0 && manager.retrievingFileStatus != DF.RetrievalStatus.InProgress - selectionMode: OldControls.SelectionMode.NoSelection + anchors.margins: parent.border.width - OldControls.TableViewColumn + allowSelection: false + columnHeaders: ["Name", "Uploaded by", "Uploaded at"] + model: TableModel { - id: fileNameColumn - role: "fileName" - title: "@tableViewColumn:title", "Name" - width: Math.round(filesTableView.width / 3) - } - - OldControls.TableViewColumn - { - id: usernameColumn - role: "username" - title: "Uploaded by" - width: Math.round(filesTableView.width / 3) - } - - OldControls.TableViewColumn - { - role: "uploadedAt" - title: "Uploaded at" + TableModelColumn { display: "fileName" } + TableModelColumn { display: "username" } + TableModelColumn { display: "uploadedAt" } + rows: manager.digitalFactoryFileModel.items } } @@ -173,8 +160,7 @@ Item function onItemsChanged() { // Make sure no files are selected when the file model changes - filesTableView.currentRow = -1 - filesTableView.selection.clear() + filesTableView.currentRow = -1; } } } @@ -200,7 +186,7 @@ Item anchors.bottom: parent.bottom anchors.right: parent.right text: "Save" - enabled: (asProjectCheckbox.checked || asSlicedCheckbox.checked) && dfFilenameTextfield.text.length >= 1 + enabled: (asProjectCheckbox.checked || asSlicedCheckbox.checked) && dfFilenameTextfield.text.length >= 1 && dfFilenameTextfield.state !== 'invalid' onClicked: { @@ -228,7 +214,7 @@ Item width: childrenRect.width spacing: UM.Theme.getSize("default_margin").width - Cura.CheckBox + UM.CheckBox { id: asProjectCheckbox height: UM.Theme.getSize("checkbox").height @@ -238,7 +224,7 @@ Item font: UM.Theme.getFont("medium") } - Cura.CheckBox + UM.CheckBox { id: asSlicedCheckbox height: UM.Theme.getSize("checkbox").height diff --git a/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml b/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml index 8b919e299d..89ebd0f215 100644 --- a/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml @@ -1,15 +1,13 @@ -// Copyright (C) 2021 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. +//Copyright (C) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Window 2.2 -import QtQuick.Controls 1.4 as OldControls // TableView doesn't exist in the QtQuick Controls 2.x in 5.10, so use the old one import QtQuick.Controls 2.3 -import QtQuick.Controls.Styles 1.4 import QtQuick.Layouts 1.1 import UM 1.2 as UM -import Cura 1.6 as Cura +import Cura 1.7 as Cura import DigitalFactory 1.0 as DF @@ -44,16 +42,13 @@ Item height: childrenRect.height spacing: UM.Theme.getSize("default_margin").width - Cura.TextField + Cura.SearchBar { id: searchBar Layout.fillWidth: true implicitHeight: createNewProjectButton.height - + focus: true onTextEdited: manager.projectFilter = text //Update the search filter when editing this text field. - - leftIcon: UM.Theme.getIcon("Magnifier") - placeholderText: "Search" } Cura.SecondaryButton @@ -76,12 +71,11 @@ Item id: upgradePlanButton text: "Upgrade plan" - iconSource: UM.Theme.getIcon("LinkExternal") + iconSource: UM.Theme.getIcon("external_link") visible: createNewProjectButtonVisible && !manager.userAccountCanCreateNewLibraryProject && (manager.retrievingProjectsStatus == DF.RetrievalStatus.Success || manager.retrievingProjectsStatus == DF.RetrievalStatus.Failed) - tooltip: "You have reached the maximum number of projects allowed by your subscription. Please upgrade to the Professional subscription to create more projects." - tooltipWidth: parent.width * 0.5 + tooltip: "Maximum number of projects reached. Please upgrade your subscription to create more projects." - onClicked: Qt.openUrlExternally("https://ultimaker.com/software/ultimaker-essentials/sign-up-cura?utm_source=cura&utm_medium=software&utm_campaign=lib-max") + onClicked: Qt.openUrlExternally("https://ultimaker.com/software/enterprise-software?utm_source=cura&utm_medium=software&utm_campaign=MaxProjLink") } } @@ -124,7 +118,7 @@ Item id: visitDigitalLibraryButton anchors.horizontalCenter: parent.horizontalCenter text: "Visit Digital Library" - onClicked: Qt.openUrlExternally(CuraApplication.ultimakerDigitalFactoryUrl + "/app/library") + onClicked: Qt.openUrlExternally(CuraApplication.ultimakerDigitalFactoryUrl + "/app/library?utm_source=cura&utm_medium=software&utm_campaign=empty-library") visible: searchBar.text === "" //Show the link to Digital Library when there are no projects in the user's Library. } } @@ -206,7 +200,7 @@ Item LoadMoreProjectsCard { id: loadMoreProjectsCard - height: UM.Theme.getSize("toolbox_thumbnail_small").height + height: UM.Theme.getSize("card_icon").height width: parent.width visible: manager.digitalFactoryProjectModel.count > 0 hasMoreProjectsToLoad: manager.hasMoreProjectsToLoad @@ -228,4 +222,4 @@ Item x: Math.round((parent.width - width) / 2) y: Math.round((parent.height - height) / 2) } -} \ No newline at end of file +} diff --git a/plugins/DigitalLibrary/resources/qml/Table.qml b/plugins/DigitalLibrary/resources/qml/Table.qml new file mode 100644 index 0000000000..c4aafc1ce4 --- /dev/null +++ b/plugins/DigitalLibrary/resources/qml/Table.qml @@ -0,0 +1,203 @@ +//Copyright (C) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. + +import Qt.labs.qmlmodels 1.0 +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +import UM 1.2 as UM + +/* + * A re-sizeable table of data. + * + * This table combines a list of headers with a TableView to show certain roles in a table. + * The columns of the table can be resized. + * When the table becomes too big, you can scroll through the table. When a column becomes too small, the contents of + * the table are elided. + * The table gets Cura's themeing. + */ +Item +{ + id: tableBase + + required property var columnHeaders //The text to show in the headers of each column. + property alias model: tableView.model //A TableModel to display in this table. To use a ListModel for the rows, use "rows: listModel.items" + property int currentRow: -1 //The selected row index. + property var onDoubleClicked: function(row) {} //Something to execute when double clicked. Accepts one argument: The index of the row that was clicked on. + property bool allowSelection: true //Whether to allow the user to select items. + + Row + { + id: headerBar + Repeater + { + id: headerRepeater + model: columnHeaders + Rectangle + { + //minimumWidth: Math.max(1, Math.round(tableBase.width / headerRepeater.count)) + width: 300 + height: UM.Theme.getSize("section").height + + color: UM.Theme.getColor("secondary") + + Label + { + id: contentText + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("narrow_margin").width + anchors.right: parent.right + anchors.rightMargin: UM.Theme.getSize("narrow_margin").width + + text: modelData + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + Rectangle //Resize handle. + { + anchors + { + right: parent.right + top: parent.top + bottom: parent.bottom + } + width: UM.Theme.getSize("thick_lining").width + + color: UM.Theme.getColor("thick_lining") + + MouseArea + { + anchors.fill: parent + + cursorShape: Qt.SizeHorCursor + drag + { + target: parent + axis: Drag.XAxis + } + onMouseXChanged: + { + if(drag.active) + { + let new_width = parent.parent.width + mouseX; + let sum_widths = mouseX; + for(let i = 0; i < headerBar.children.length; ++i) + { + sum_widths += headerBar.children[i].width; + } + if(sum_widths > tableBase.width) + { + new_width -= sum_widths - tableBase.width; //Limit the total width to not exceed the view. + } + let width_fraction = new_width / tableBase.width; //Scale with the same fraction along with the total width, if the table is resized. + parent.parent.width = Qt.binding(function() { return Math.max(10, Math.round(tableBase.width * width_fraction)) }); + } + } + } + } + + onWidthChanged: + { + tableView.forceLayout(); //Rescale table cells underneath as well. + } + } + } + } + + TableView + { + id: tableView + anchors + { + top: headerBar.bottom + left: parent.left + right: parent.right + bottom: parent.bottom + } + + flickableDirection: Flickable.AutoFlickIfNeeded + clip: true + ScrollBar.vertical: ScrollBar + { + // Vertical ScrollBar, styled similarly to the scrollBar in the settings panel + id: verticalScrollBar + visible: tableView.contentHeight > tableView.height + + background: Rectangle + { + implicitWidth: UM.Theme.getSize("scrollbar").width + radius: Math.round(implicitWidth / 2) + color: UM.Theme.getColor("scrollbar_background") + } + + contentItem: Rectangle + { + id: scrollViewHandle + implicitWidth: UM.Theme.getSize("scrollbar").width + radius: Math.round(implicitWidth / 2) + + color: verticalScrollBar.pressed ? UM.Theme.getColor("scrollbar_handle_down") : verticalScrollBar.hovered ? UM.Theme.getColor("scrollbar_handle_hover") : UM.Theme.getColor("scrollbar_handle") + Behavior on color { ColorAnimation { duration: 50; } } + } + } + columnWidthProvider: function(column) + { + return headerBar.children[column].width; //Cells get the same width as their column header. + } + + delegate: Rectangle + { + implicitHeight: Math.max(1, cellContent.height) + + color: UM.Theme.getColor((tableBase.currentRow == row) ? "primary" : ((row % 2 == 0) ? "main_background" : "viewport_background")) + + Label + { + id: cellContent + width: parent.width + + text: display + verticalAlignment: Text.AlignVCenter + elide: Text.ElideRight + font: UM.Theme.getFont("default") + color: UM.Theme.getColor("text") + } + TextMetrics + { + id: cellTextMetrics + text: cellContent.text + font: cellContent.font + elide: cellContent.elide + elideWidth: cellContent.width + } + UM.TooltipArea + { + anchors.fill: parent + + acceptedButtons: Qt.LeftButton + text: (cellTextMetrics.elidedText == cellContent.text) ? "" : cellContent.text //Show full text in tooltip if it was elided. + onClicked: + { + if(tableBase.allowSelection) + { + tableBase.currentRow = row; //Select this row. + } + } + onDoubleClicked: + { + tableBase.onDoubleClicked(row); + } + } + } + + Connections + { + target: model + function onRowCountChanged() + { + tableView.contentY = 0; //When the number of rows is reduced, make sure to scroll back to the start. + } + } + } +} \ No newline at end of file diff --git a/plugins/DigitalLibrary/src/BackwardsCompatibleMessage.py b/plugins/DigitalLibrary/src/BackwardsCompatibleMessage.py new file mode 100644 index 0000000000..7dd9f25ba0 --- /dev/null +++ b/plugins/DigitalLibrary/src/BackwardsCompatibleMessage.py @@ -0,0 +1,17 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +from typing import Optional + +from cura.CuraApplication import CuraApplication +from UM.Message import Message +from UM.Version import Version + + +def getBackwardsCompatibleMessage(text: str, title: str, message_type_str: str, lifetime: Optional[int] = 30) -> Message: + if CuraApplication.getInstance().getAPIVersion() < Version("7.7.0"): + return Message(text=text, title=title, lifetime=lifetime) + else: + message_type = Message.MessageType.NEUTRAL + if ("MessageType." + message_type_str) in [str(item) for item in Message.MessageType]: + message_type = Message.MessageType[message_type_str] + return Message(text=text, title=title, lifetime=lifetime, message_type=message_type) diff --git a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py index c8650004e9..a5560f32a8 100644 --- a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py +++ b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py @@ -14,6 +14,7 @@ from UM.Logger import Logger from UM.Message import Message from UM.Scene.SceneNode import SceneNode from cura.CuraApplication import CuraApplication +from .BackwardsCompatibleMessage import getBackwardsCompatibleMessage from .DFLibraryFileUploadRequest import DFLibraryFileUploadRequest from .DFLibraryFileUploadResponse import DFLibraryFileUploadResponse from .DFPrintJobUploadRequest import DFPrintJobUploadRequest @@ -69,11 +70,11 @@ class DFFileExportAndUploadManager: use_inactivity_timer = False ) - self._generic_success_message = Message( + self._generic_success_message = getBackwardsCompatibleMessage( text = "Your {} uploaded to '{}'.".format("file was" if len(self._file_upload_job_metadata) <= 1 else "files were", self._library_project_name), title = "Upload successful", - lifetime = 0, - message_type = Message.MessageType.POSITIVE + lifetime = 30, + message_type_str = "POSITIVE" ) self._generic_success_message.addAction( "open_df_project", @@ -217,11 +218,11 @@ class DFFileExportAndUploadManager: # Set the progress to 100% when the upload job fails, to avoid having the progress message stuck self._file_upload_job_metadata[filename]["upload_status"] = "failed" self._file_upload_job_metadata[filename]["upload_progress"] = 100 - self._file_upload_job_metadata[filename]["file_upload_failed_message"] = Message( + self._file_upload_job_metadata[filename]["file_upload_failed_message"] = getBackwardsCompatibleMessage( text = "Failed to export the file '{}'. The upload process is aborted.".format(filename), title = "Export error", - lifetime = 0, - message_type = Message.MessageType.ERROR + message_type_str = "ERROR", + lifetime = 30 ) self._on_upload_error() self._onFileUploadFinished(filename) @@ -240,11 +241,11 @@ class DFFileExportAndUploadManager: self._file_upload_job_metadata[filename_3mf]["upload_progress"] = 100 human_readable_error = self.extractErrorTitle(reply_string) - self._file_upload_job_metadata[filename_3mf]["file_upload_failed_message"] = Message( + self._file_upload_job_metadata[filename_3mf]["file_upload_failed_message"] = getBackwardsCompatibleMessage( text = "Failed to upload the file '{}' to '{}'. {}".format(filename_3mf, self._library_project_name, human_readable_error), title = "File upload error", - lifetime = 0, - message_type = Message.MessageType.ERROR + message_type_str = "ERROR", + lifetime = 30 ) self._on_upload_error() self._onFileUploadFinished(filename_3mf) @@ -263,11 +264,11 @@ class DFFileExportAndUploadManager: self._file_upload_job_metadata[filename_ufp]["upload_progress"] = 100 human_readable_error = self.extractErrorTitle(reply_string) - self._file_upload_job_metadata[filename_ufp]["file_upload_failed_message"] = Message( + self._file_upload_job_metadata[filename_ufp]["file_upload_failed_message"] = getBackwardsCompatibleMessage( title = "File upload error", text = "Failed to upload the file '{}' to '{}'. {}".format(filename_ufp, self._library_project_name, human_readable_error), - lifetime = 0, - message_type = Message.MessageType.ERROR + message_type_str = "ERROR", + lifetime = 30 ) self._on_upload_error() self._onFileUploadFinished(filename_ufp) @@ -300,11 +301,11 @@ class DFFileExportAndUploadManager: self._file_upload_job_metadata[filename]["upload_status"] = "failed" self._file_upload_job_metadata[filename]["upload_progress"] = 100 human_readable_error = self.extractErrorTitle(reply_string) - self._file_upload_job_metadata[filename]["file_upload_failed_message"] = Message( + self._file_upload_job_metadata[filename]["file_upload_failed_message"] = getBackwardsCompatibleMessage( title = "File upload error", text = "Failed to upload the file '{}' to '{}'. {}".format(self._file_name, self._library_project_name, human_readable_error), - lifetime = 0, - message_type = Message.MessageType.ERROR + message_type_str = "ERROR", + lifetime = 30 ) self._on_upload_error() @@ -319,7 +320,7 @@ class DFFileExportAndUploadManager: def _onMessageActionTriggered(self, message, action): if action == "open_df_project": - project_url = "{}/app/library/project/{}?wait_for_new_files=true".format(CuraApplication.getInstance().ultimakerDigitalFactoryUrl, self._library_project_id) + project_url = "{}/app/library/project/{}?wait_for_new_files=true&utm_source=cura&utm_medium=software&utm_campaign=saved-library-file-message".format(CuraApplication.getInstance().ultimakerDigitalFactoryUrl, self._library_project_id) QDesktopServices.openUrl(QUrl(project_url)) message.hide() @@ -337,17 +338,17 @@ class DFFileExportAndUploadManager: "upload_progress" : -1, "upload_status" : "", "file_upload_response": None, - "file_upload_success_message": Message( + "file_upload_success_message": getBackwardsCompatibleMessage( text = "'{}' was uploaded to '{}'.".format(filename_3mf, self._library_project_name), title = "Upload successful", - lifetime = 0, - message_type = Message.MessageType.POSITIVE + message_type_str = "POSITIVE", + lifetime = 30 ), - "file_upload_failed_message": Message( + "file_upload_failed_message": getBackwardsCompatibleMessage( text = "Failed to upload the file '{}' to '{}'.".format(filename_3mf, self._library_project_name), title = "File upload error", - lifetime = 0, - message_type = Message.MessageType.ERROR + message_type_str = "ERROR", + lifetime = 30 ) } job_3mf = ExportFileJob(self._file_handlers["3mf"], self._nodes, self._file_name, "3mf") @@ -361,17 +362,17 @@ class DFFileExportAndUploadManager: "upload_progress" : -1, "upload_status" : "", "file_upload_response": None, - "file_upload_success_message": Message( + "file_upload_success_message": getBackwardsCompatibleMessage( text = "'{}' was uploaded to '{}'.".format(filename_ufp, self._library_project_name), title = "Upload successful", - lifetime = 0, - message_type = Message.MessageType.POSITIVE + message_type_str = "POSITIVE", + lifetime = 30, ), - "file_upload_failed_message": Message( + "file_upload_failed_message": getBackwardsCompatibleMessage( text = "Failed to upload the file '{}' to '{}'.".format(filename_ufp, self._library_project_name), title = "File upload error", - lifetime = 0, - message_type = Message.MessageType.ERROR + message_type_str = "ERROR", + lifetime = 30 ) } job_ufp = ExportFileJob(self._file_handlers["ufp"], self._nodes, self._file_name, "ufp") diff --git a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py index ad87ea9b8a..5301151c5f 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py @@ -67,10 +67,12 @@ class DigitalFactoryApiClient: def callbackWrap(response: Optional[Any] = None, *args, **kwargs) -> None: if (response is not None and isinstance(response, DigitalFactoryFeatureBudgetResponse) and response.library_max_private_projects is not None): - callback( - response.library_max_private_projects == -1 or # Note: -1 is unlimited - response.library_max_private_projects > 0) + # A user has DF access when library_max_private_projects is either -1 (unlimited) or bigger then 0 + has_access = response.library_max_private_projects == -1 or response.library_max_private_projects > 0 + callback(has_access) self._library_max_private_projects = response.library_max_private_projects + # update the account with the additional user rights + self._account.updateAdditionalRight(df_access = has_access) else: Logger.warning(f"Digital Factory: Response is not a feature budget, likely an error: {str(response)}") callback(False) diff --git a/plugins/DigitalLibrary/src/DigitalFactoryController.py b/plugins/DigitalLibrary/src/DigitalFactoryController.py index c0323100c8..ba5ee48888 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryController.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryController.py @@ -23,6 +23,7 @@ from UM.TaskManagement.HttpRequestManager import HttpRequestManager from cura.API import Account from cura.CuraApplication import CuraApplication from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope +from .BackwardsCompatibleMessage import getBackwardsCompatibleMessage from .DFFileExportAndUploadManager import DFFileExportAndUploadManager from .DigitalFactoryApiClient import DigitalFactoryApiClient from .DigitalFactoryFileModel import DigitalFactoryFileModel @@ -260,7 +261,10 @@ class DigitalFactoryController(QObject): """ Error function, called whenever the retrieval of the files in a library project fails. """ - Logger.log("w", "Failed to retrieve the list of files in project '{}' from the Digital Library".format(self._project_model._projects[self._selected_project_idx])) + try: + Logger.warning(f"Failed to retrieve the list of files in project '{self._project_model._projects[self._selected_project_idx]}' from the Digital Library") + except IndexError: + Logger.warning(f"Failed to retrieve the list of files in a project from the Digital Library. And failed to get the project too.") self.setRetrievingFilesStatus(RetrievalStatus.Failed) @pyqtSlot() @@ -527,11 +531,11 @@ class DigitalFactoryController(QObject): except IOError as ex: Logger.logException("e", "Can't write Digital Library file {0}/{1} download to temp-directory {2}.", ex, project_name, file_name, temp_dir) - Message( + getBackwardsCompatibleMessage( text = "Failed to write to temporary file for '{}'.".format(file_name), title = "File-system error", - lifetime = 10, - message_type=Message.MessageType.ERROR + message_type_str="ERROR", + lifetime = 10 ).show() return @@ -542,11 +546,11 @@ class DigitalFactoryController(QObject): f = file_name) -> None: progress_message.hide() Logger.error("An error {0} {1} occurred while downloading {2}/{3}".format(str(error), str(reply), p, f)) - Message( + getBackwardsCompatibleMessage( text = "Failed Digital Library download for '{}'.".format(f), title = "Network error {}".format(error), - lifetime = 10, - message_type=Message.MessageType.ERROR + message_type_str="ERROR", + lifetime = 10 ).show() download_manager = HttpRequestManager.getInstance() @@ -591,17 +595,19 @@ class DigitalFactoryController(QObject): if filename == "": Logger.log("w", "The file name cannot be empty.") - Message(text = "Cannot upload file with an empty name to the Digital Library", + getBackwardsCompatibleMessage( + text = "Cannot upload file with an empty name to the Digital Library", title = "Empty file name provided", - lifetime = 0, - message_type = Message.MessageType.ERROR).show() + message_type_str = "ERROR", + lifetime = 0 + ).show() return self._saveFileToSelectedProjectHelper(filename, formats) def _saveFileToSelectedProjectHelper(self, filename: str, formats: List[str]) -> None: - # Indicate we have started sending a job. - self.uploadStarted.emit() + # Indicate we have started sending a job (and propagate any user file name changes back to the open project) + self.uploadStarted.emit(filename if "3mf" in formats else None) library_project_id = self._project_model.items[self._selected_project_idx]["libraryProjectId"] library_project_name = self._project_model.items[self._selected_project_idx]["displayName"] diff --git a/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py b/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py index 70e3ac34f2..0a10ea034c 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py @@ -8,6 +8,8 @@ from UM.Logger import Logger from UM.OutputDevice import OutputDeviceError from UM.OutputDevice.ProjectOutputDevice import ProjectOutputDevice from UM.Scene.SceneNode import SceneNode +from UM.Version import Version +from cura import ApplicationMetadata from cura.API import Account from cura.CuraApplication import CuraApplication from .DigitalFactoryController import DigitalFactoryController @@ -105,8 +107,11 @@ class DigitalFactoryOutputDevice(ProjectOutputDevice): self.enabled = logged_in and self._controller.userAccountHasLibraryAccess() self.enabledChanged.emit() - def _onWriteStarted(self) -> None: + def _onWriteStarted(self, new_name: Optional[str] = None) -> None: self._writing = True + if new_name and Version(ApplicationMetadata.CuraSDKVersion) >= Version("7.8.0"): + # setLastOutputName is only supported in sdk version 7.8.0 and up + self.setLastOutputName(new_name) # On saving, the user can change the name, this should propagate. self.writeStarted.emit(self) def _onWriteFinished(self) -> None: diff --git a/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py b/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py index d726cc04a9..8d08cde37b 100644 --- a/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py +++ b/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py @@ -12,7 +12,7 @@ from urllib.error import URLError from typing import Dict import ssl -import certifi +import certifi # type: ignore from .FirmwareUpdateCheckerLookup import FirmwareUpdateCheckerLookup, getSettingsKeyForMachine from .FirmwareUpdateCheckerMessage import FirmwareUpdateCheckerMessage diff --git a/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml b/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml index b5b6c15f50..c679c4328c 100644 --- a/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml +++ b/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml @@ -1,19 +1,19 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.1 import QtQuick.Layouts 1.1 import QtQuick.Window 2.1 import QtQuick.Dialogs 1.2 // For filedialog -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Cura.MachineAction { - anchors.fill: parent; + anchors.fill: parent property bool printerConnected: Cura.MachineManager.printerConnected property var activeOutputDevice: printerConnected ? Cura.MachineManager.printerOutputDevices[0] : null property bool canUpdateFirmware: activeOutputDevice ? activeOutputDevice.activePrinter.canUpdateFirmware : false @@ -25,25 +25,22 @@ Cura.MachineAction UM.I18nCatalog { id: catalog; name: "cura"} spacing: UM.Theme.getSize("default_margin").height - Label + UM.Label { width: parent.width text: catalog.i18nc("@title", "Update Firmware") - wrapMode: Text.WordWrap font.pointSize: 18 } - Label + UM.Label { width: parent.width - wrapMode: Text.WordWrap text: catalog.i18nc("@label", "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work.") } - Label + UM.Label { width: parent.width - wrapMode: Text.WordWrap - text: catalog.i18nc("@label", "The firmware shipping with new printers works, but new versions tend to have more features and improvements."); + text: catalog.i18nc("@label", "The firmware shipping with new printers works, but new versions tend to have more features and improvements.") } Row @@ -52,10 +49,10 @@ Cura.MachineAction width: childrenRect.width spacing: UM.Theme.getSize("default_margin").width property string firmwareName: Cura.MachineManager.activeMachine.getDefaultFirmwareName() - Button + Cura.SecondaryButton { id: autoUpgradeButton - text: catalog.i18nc("@action:button", "Automatically upgrade Firmware"); + text: catalog.i18nc("@action:button", "Automatically upgrade Firmware") enabled: parent.firmwareName != "" && canUpdateFirmware onClicked: { @@ -63,10 +60,10 @@ Cura.MachineAction activeOutputDevice.updateFirmware(parent.firmwareName); } } - Button + Cura.SecondaryButton { id: manualUpgradeButton - text: catalog.i18nc("@action:button", "Upload custom Firmware"); + text: catalog.i18nc("@action:button", "Upload custom Firmware") enabled: canUpdateFirmware onClicked: { @@ -75,20 +72,18 @@ Cura.MachineAction } } - Label + UM.Label { width: parent.width - wrapMode: Text.WordWrap visible: !printerConnected && !updateProgressDialog.visible - text: catalog.i18nc("@label", "Firmware can not be updated because there is no connection with the printer."); + text: catalog.i18nc("@label", "Firmware can not be updated because there is no connection with the printer.") } Label { width: parent.width - wrapMode: Text.WordWrap visible: printerConnected && !canUpdateFirmware - text: catalog.i18nc("@label", "Firmware can not be updated because the connection with the printer does not support upgrading firmware."); + text: catalog.i18nc("@label", "Firmware can not be updated because the connection with the printer does not support upgrading firmware.") } } @@ -122,7 +117,7 @@ Cura.MachineAction { anchors.fill: parent - Label + UM.Label { anchors { @@ -157,12 +152,10 @@ Cura.MachineAction wrapMode: Text.Wrap } - ProgressBar + UM.ProgressBar { id: prog - value: (manager.firmwareUpdater != null) ? manager.firmwareUpdater.firmwareProgress : 0 - minimumValue: 0 - maximumValue: 100 + value: (manager.firmwareUpdater != null) ? manager.firmwareUpdater.firmwareProgress / 100 : 0 indeterminate: { if(manager.firmwareUpdater == null) @@ -173,18 +166,18 @@ Cura.MachineAction } anchors { - left: parent.left; - right: parent.right; + left: parent.left + right: parent.right } } } rightButtons: [ - Button + Cura.SecondaryButton { - text: catalog.i18nc("@action:button","Close"); - enabled: (manager.firmwareUpdater != null) ? manager.firmwareUpdater.firmwareUpdateState != 1 : true; - onClicked: updateProgressDialog.visible = false; + text: catalog.i18nc("@action:button", "Close") + enabled: manager.firmwareUpdater != null ? manager.firmwareUpdater.firmwareUpdateState != 1 : true + onClicked: updateProgressDialog.visible = false } ] } diff --git a/plugins/GCodeReader/FlavorParser.py b/plugins/GCodeReader/FlavorParser.py index 56e50d2145..ac24ce3184 100644 --- a/plugins/GCodeReader/FlavorParser.py +++ b/plugins/GCodeReader/FlavorParser.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import math @@ -24,7 +24,7 @@ from cura.Settings.ExtruderManager import ExtruderManager catalog = i18nCatalog("cura") -PositionOptional = NamedTuple("Position", [("x", Optional[float]), ("y", Optional[float]), ("z", Optional[float]), ("f", Optional[float]), ("e", Optional[float])]) +PositionOptional = NamedTuple("PositionOptional", [("x", Optional[float]), ("y", Optional[float]), ("z", Optional[float]), ("f", Optional[float]), ("e", Optional[float])]) Position = NamedTuple("Position", [("x", float), ("y", float), ("z", float), ("f", float), ("e", List[float])]) @@ -53,7 +53,7 @@ class FlavorParser: def _clearValues(self) -> None: self._extruder_number = 0 - self._extrusion_length_offset = [0] # type: List[float] + self._extrusion_length_offset = [0] * 8 # type: List[float] self._layer_type = LayerPolygon.Inset0Type self._layer_number = 0 self._previous_z = 0 # type: float @@ -153,7 +153,7 @@ class FlavorParser: Af = (self._filament_diameter / 2) ** 2 * numpy.pi # Length of the extruded filament de = current_extrusion - previous_extrusion - # Volumne of the extruded filament + # Volume of the extruded filament dVe = de * Af # Length of the printed line dX = numpy.sqrt((current_point[0] - previous_point[0])**2 + (current_point[2] - previous_point[2])**2) @@ -198,7 +198,7 @@ class FlavorParser: # Only when extruding we can determine the latest known "layer height" which is the difference in height between extrusions # Also, 1.5 is a heuristic for any priming or whatsoever, we skip those. - if z > self._previous_z and (z - self._previous_z < 1.5): + if z > self._previous_z and (z - self._previous_z < 1.5) and (params.x is not None or params.y is not None): self._current_layer_thickness = z - self._previous_z # allow a tiny overlap self._previous_z = z elif self._previous_extrusion_value > e[self._extruder_number]: @@ -283,8 +283,9 @@ class FlavorParser: return func(position, params, path) return position - def processTCode(self, T: int, line: str, position: Position, path: List[List[Union[float, int]]]) -> Position: + def processTCode(self, global_stack, T: int, line: str, position: Position, path: List[List[Union[float, int]]]) -> Position: self._extruder_number = T + self._filament_diameter = global_stack.extruderList[self._extruder_number].getProperty("material_diameter", "value") if self._extruder_number + 1 > len(position.e): self._extrusion_length_offset.extend([0] * (self._extruder_number - len(position.e) + 1)) position.e.extend([0] * (self._extruder_number - len(position.e) + 1)) @@ -354,7 +355,7 @@ class FlavorParser: Logger.log("d", "Parsing g-code...") - current_position = Position(0, 0, 0, 0, [0]) + current_position = Position(0, 0, 0, 0, [0] * 8) current_path = [] #type: List[List[float]] min_layer_number = 0 negative_layers = 0 @@ -428,7 +429,7 @@ class FlavorParser: G = self._getInt(line, "G") if G is not None: - # When find a movement, the new posistion is calculated and added to the current_path, but + # When find a movement, the new position is calculated and added to the current_path, but # don't need to create a polygon until the end of the layer current_position = self.processGCode(G, line, current_position, current_path) continue @@ -444,7 +445,7 @@ class FlavorParser: # When changing tool, store the end point of the previous path, then process the code and finally # add another point with the new position of the head. current_path.append([current_position.x, current_position.y, current_position.z, current_position.f, current_position.e[self._extruder_number], LayerPolygon.MoveCombingType]) - current_position = self.processTCode(T, line, current_position, current_path) + current_position = self.processTCode(global_stack, T, line, current_position, current_path) current_path.append([current_position.x, current_position.y, current_position.z, current_position.f, current_position.e[self._extruder_number], LayerPolygon.MoveCombingType]) if line.startswith("M"): diff --git a/plugins/GCodeReader/MarlinFlavorParser.py b/plugins/GCodeReader/MarlinFlavorParser.py index 482285a2c9..988070178a 100644 --- a/plugins/GCodeReader/MarlinFlavorParser.py +++ b/plugins/GCodeReader/MarlinFlavorParser.py @@ -3,7 +3,7 @@ from . import FlavorParser -# This parser is intented for interpret the Marlin/Sprinter Firmware flavor +# This parser is intended to interpret the Marlin/Sprinter Firmware flavor class MarlinFlavorParser(FlavorParser.FlavorParser): def __init__(self): diff --git a/plugins/ImageReader/ConfigUI.qml b/plugins/ImageReader/ConfigUI.qml index a3dceed50d..28fd1f9106 100644 --- a/plugins/ImageReader/ConfigUI.qml +++ b/plugins/ImageReader/ConfigUI.qml @@ -1,239 +1,333 @@ -// Copyright (c) 2015 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.1 -import QtQuick.Controls 1.1 -import QtQuick.Layouts 1.1 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.3 import QtQuick.Window 2.1 -import UM 1.1 as UM +import UM 1.5 as UM +import Cura 1.0 as Cura UM.Dialog { - width: minimumWidth; - minimumWidth: 350 * screenScaleFactor; + title: catalog.i18nc("@title:window", "Convert Image") - height: minimumHeight; - minimumHeight: 250 * screenScaleFactor; - - title: catalog.i18nc("@title:window", "Convert Image...") + minimumWidth: grid.width + 2 * UM.Theme.getSize("default_margin").height + minimumHeight: UM.Theme.getSize("modal_window_minimum").height + width: minimumWidth + height: minimumHeight GridLayout { - UM.I18nCatalog{id: catalog; name: "cura"} - anchors.fill: parent; - Layout.fillWidth: true - columnSpacing: 16 * screenScaleFactor - rowSpacing: 4 * screenScaleFactor - columns: 1 + UM.I18nCatalog { id: catalog; name: "cura" } + id: grid + columnSpacing: UM.Theme.getSize("narrow_margin").width + rowSpacing: UM.Theme.getSize("narrow_margin").height + columns: 2 - UM.TooltipArea { - Layout.fillWidth:true - height: childrenRect.height - text: catalog.i18nc("@info:tooltip","The maximum distance of each pixel from \"Base.\"") - Row { - width: parent.width + UM.Label + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + text: catalog.i18nc("@action:label", "Height (mm)") + Layout.alignment: Qt.AlignVCenter - Label { - text: catalog.i18nc("@action:label", "Height (mm)") - width: 150 * screenScaleFactor - anchors.verticalCenter: parent.verticalCenter - } - - TextField { - id: peak_height - objectName: "Peak_Height" - validator: RegExpValidator {regExp: /^\d{0,3}([\,|\.]\d*)?$/} - width: 180 * screenScaleFactor - onTextChanged: { manager.onPeakHeightChanged(text) } - } + MouseArea { + id: peak_height_label + anchors.fill: parent + hoverEnabled: true } } - UM.TooltipArea { - Layout.fillWidth:true - height: childrenRect.height - text: catalog.i18nc("@info:tooltip","The base height from the build plate in millimeters.") - Row { - width: parent.width + Cura.TextField + { + id: peak_height + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + selectByMouse: true + objectName: "Peak_Height" + validator: RegExpValidator { regExp: /^\d{0,3}([\,|\.]\d*)?$/ } + onTextChanged: manager.onPeakHeightChanged(text) + } - Label { - text: catalog.i18nc("@action:label", "Base (mm)") - width: 150 * screenScaleFactor - anchors.verticalCenter: parent.verticalCenter - } + UM.ToolTip + { + text: catalog.i18nc("@info:tooltip", "The maximum distance of each pixel from \"Base.\"") + visible: peak_height.hovered || peak_height_label.containsMouse + targetPoint: Qt.point(peak_height.x + Math.round(peak_height.width / 2), 0) + y: peak_height.y + peak_height.height + UM.Theme.getSize("default_margin").height + } - TextField { - id: base_height - objectName: "Base_Height" - validator: RegExpValidator {regExp: /^\d{0,3}([\,|\.]\d*)?$/} - width: 180 * screenScaleFactor - onTextChanged: { manager.onBaseHeightChanged(text) } - } + UM.Label + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + text: catalog.i18nc("@action:label", "Base (mm)") + Layout.alignment: Qt.AlignVCenter + + MouseArea + { + id: base_height_label + anchors.fill: parent + hoverEnabled: true } } - UM.TooltipArea { - Layout.fillWidth:true - height: childrenRect.height - text: catalog.i18nc("@info:tooltip","The width in millimeters on the build plate.") - Row { - width: parent.width + Cura.TextField + { + id: base_height + selectByMouse: true + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + objectName: "Base_Height" + validator: RegExpValidator { regExp: /^\d{0,3}([\,|\.]\d*)?$/ } + onTextChanged: manager.onBaseHeightChanged(text) + } - Label { - text: catalog.i18nc("@action:label", "Width (mm)") - width: 150 * screenScaleFactor - anchors.verticalCenter: parent.verticalCenter - } + UM.ToolTip + { + text: catalog.i18nc("@info:tooltip", "The base height from the build plate in millimeters.") + visible: base_height.hovered || base_height_label.containsMouse + targetPoint: Qt.point(base_height.x + Math.round(base_height.width / 2), 0) + y: base_height.y + base_height.height + UM.Theme.getSize("default_margin").height + } - TextField { - id: width - objectName: "Width" - focus: true - validator: RegExpValidator {regExp: /^[1-9]\d{0,2}([\,|\.]\d*)?$/} - width: 180 * screenScaleFactor - onTextChanged: { manager.onWidthChanged(text) } - } + UM.Label + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + text: catalog.i18nc("@action:label", "Width (mm)") + Layout.alignment: Qt.AlignVCenter + + MouseArea { + id: width_label + anchors.fill: parent + hoverEnabled: true } } - UM.TooltipArea { - Layout.fillWidth:true - height: childrenRect.height - text: catalog.i18nc("@info:tooltip","The depth in millimeters on the build plate") - Row { - width: parent.width + Cura.TextField + { + id: width + selectByMouse: true + objectName: "Width" + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + focus: true + validator: RegExpValidator { regExp: /^[1-9]\d{0,2}([\,|\.]\d*)?$/ } + onTextChanged: manager.onWidthChanged(text) + } - Label { - text: catalog.i18nc("@action:label", "Depth (mm)") - width: 150 * screenScaleFactor - anchors.verticalCenter: parent.verticalCenter - } - TextField { - id: depth - objectName: "Depth" - focus: true - validator: RegExpValidator {regExp: /^[1-9]\d{0,2}([\,|\.]\d*)?$/} - width: 180 * screenScaleFactor - onTextChanged: { manager.onDepthChanged(text) } - } + UM.ToolTip + { + text: catalog.i18nc("@info:tooltip", "The width in millimeters on the build plate") + visible: width.hovered || width_label.containsMouse + targetPoint: Qt.point(width.x + Math.round(width.width / 2), 0) + y: width.y + width.height + UM.Theme.getSize("default_margin").height + } + + UM.Label + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + text: catalog.i18nc("@action:label", "Depth (mm)") + Layout.alignment: Qt.AlignVCenter + + MouseArea { + id: depth_label + anchors.fill: parent + hoverEnabled: true } } - UM.TooltipArea { - Layout.fillWidth:true - height: childrenRect.height - text: catalog.i18nc("@info:tooltip","For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model.") - Row { - width: parent.width + Cura.TextField + { + id: depth + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + selectByMouse: true + objectName: "Depth" + focus: true + validator: RegExpValidator { regExp: /^[1-9]\d{0,2}([\,|\.]\d*)?$/ } + onTextChanged: manager.onDepthChanged(text) + } - //Empty label so 2 column layout works. - Label { - text: "" - width: 150 * screenScaleFactor - anchors.verticalCenter: parent.verticalCenter - } - ComboBox { - id: lighter_is_higher - objectName: "Lighter_Is_Higher" - model: [ catalog.i18nc("@item:inlistbox","Darker is higher"), catalog.i18nc("@item:inlistbox","Lighter is higher") ] - width: 180 * screenScaleFactor - onCurrentIndexChanged: { manager.onImageColorInvertChanged(currentIndex) } - } + UM.ToolTip + { + text: catalog.i18nc("@info:tooltip", "The depth in millimeters on the build plate") + visible: depth.hovered || depth_label.containsMouse + targetPoint: Qt.point(depth.x + Math.round(depth.width / 2), 0) + y: depth.y + depth.height + UM.Theme.getSize("default_margin").height + } + + UM.Label + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + text: "" + Layout.alignment: Qt.AlignVCenter + + MouseArea { + id: lighter_is_higher_label + anchors.fill: parent + hoverEnabled: true } } - UM.TooltipArea { - Layout.fillWidth:true - height: childrenRect.height - text: catalog.i18nc("@info:tooltip","For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly.") - Row { - width: parent.width + Cura.ComboBox + { + id: lighter_is_higher + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + Layout.preferredHeight: UM.Theme.getSize("setting_control").height + objectName: "Lighter_Is_Higher" + textRole: "text" + model: [ + { text: catalog.i18nc("@item:inlistbox", "Darker is higher") }, + { text: catalog.i18nc("@item:inlistbox", "Lighter is higher") } + ] + onCurrentIndexChanged: { manager.onImageColorInvertChanged(currentIndex) } + } - Label { - text: "Color Model" - width: 150 * screenScaleFactor - anchors.verticalCenter: parent.verticalCenter - } - ComboBox { - id: color_model - objectName: "ColorModel" - model: [ catalog.i18nc("@item:inlistbox","Linear"), catalog.i18nc("@item:inlistbox","Translucency") ] - width: 180 * screenScaleFactor - onCurrentIndexChanged: { manager.onColorModelChanged(currentIndex) } - } + UM.ToolTip + { + text: catalog.i18nc("@info:tooltip", "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model.") + visible: lighter_is_higher.hovered || lighter_is_higher_label.containsMouse + targetPoint: Qt.point(lighter_is_higher.x + Math.round(lighter_is_higher.width / 2), 0) + y: lighter_is_higher.y + lighter_is_higher.height + UM.Theme.getSize("default_margin").height + } + + UM.Label + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + text: catalog.i18nc("@action:label", "Color Model") + Layout.alignment: Qt.AlignVCenter + + MouseArea { + id: color_model_label + anchors.fill: parent + hoverEnabled: true } } - UM.TooltipArea { - Layout.fillWidth:true - height: childrenRect.height - text: catalog.i18nc("@info:tooltip","The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image.") - visible: color_model.currentText == catalog.i18nc("@item:inlistbox","Translucency") - Row { - width: parent.width + Cura.ComboBox + { + id: color_model + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + Layout.preferredHeight: UM.Theme.getSize("setting_control").height + objectName: "ColorModel" + textRole: "text" + model: [ + { text: catalog.i18nc("@item:inlistbox", "Linear") }, + { text: catalog.i18nc("@item:inlistbox", "Translucency") } + ] + onCurrentIndexChanged: { manager.onColorModelChanged(currentIndex) } + } - Label { - text: catalog.i18nc("@action:label", "1mm Transmittance (%)") - width: 150 * screenScaleFactor - anchors.verticalCenter: parent.verticalCenter - } - TextField { - id: transmittance - objectName: "Transmittance" - focus: true - validator: RegExpValidator {regExp: /^[1-9]\d{0,2}([\,|\.]\d*)?$/} - width: 180 * screenScaleFactor - onTextChanged: { manager.onTransmittanceChanged(text) } - } + UM.ToolTip + { + text: catalog.i18nc("@info:tooltip", "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly.") + visible: color_model.hovered || color_model_label.containsMouse + targetPoint: Qt.point(color_model.x + Math.round(color_model.width / 2), 0) + y: color_model.y + color_model.height + UM.Theme.getSize("default_margin").height + } + + UM.Label + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + text: catalog.i18nc("@action:label", "1mm Transmittance (%)") + Layout.alignment: Qt.AlignVCenter + + MouseArea { + id: transmittance_label + anchors.fill: parent + hoverEnabled: true } } - UM.TooltipArea { - Layout.fillWidth:true - height: childrenRect.height - text: catalog.i18nc("@info:tooltip","The amount of smoothing to apply to the image.") - Row { - width: parent.width + Cura.TextField + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + selectByMouse: true + objectName: "Transmittance" + validator: RegExpValidator { regExp: /^[1-9]\d{0,2}([\,|\.]\d*)?$/ } + onTextChanged: manager.onTransmittanceChanged(text) - Label { - text: catalog.i18nc("@action:label", "Smoothing") - width: 150 * screenScaleFactor - anchors.verticalCenter: parent.verticalCenter - } - - Item { - width: 180 * screenScaleFactor - height: 20 * screenScaleFactor - Layout.fillWidth: true - - Slider { - id: smoothing - objectName: "Smoothing" - maximumValue: 100.0 - stepSize: 1.0 - width: 180 - onValueChanged: { manager.onSmoothingChanged(value) } - } - } + UM.ToolTip + { + text: catalog.i18nc("@info:tooltip", "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image.") + visible: parent.hovered || transmittance_label.containsMouse + targetPoint: Qt.point(parent.x + Math.round(parent.width / 2), 0) + y: parent.y + parent.height + UM.Theme.getSize("default_margin").height } } + + UM.Label + { + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + text: catalog.i18nc("@action:label", "Smoothing") + Layout.alignment: Qt.AlignVCenter + + MouseArea + { + id: smoothing_label + anchors.fill: parent + hoverEnabled: true + } + } + + Cura.SpinBox + { + id: smoothing + Layout.fillWidth: true + Layout.minimumWidth: UM.Theme.getSize("setting_control").width + objectName: "Smoothing" + to: 100.0 + stepSize: 1.0 + onValueChanged: manager.onSmoothingChanged(value) + } + + UM.ToolTip + { + text: catalog.i18nc("@info:tooltip", "The amount of smoothing to apply to the image.") + visible: smoothing.hovered || smoothing_label.containsMouse + targetPoint: Qt.point(smoothing.x + Math.round(smoothing.width / 2), 0) + y: smoothing.y + smoothing.height + UM.Theme.getSize("default_margin").height + } } + Item + { + ButtonGroup + { + buttons: [ok_button, cancel_button] + checkedButton: ok_button + } + } + + onAccepted: manager.onOkButtonClicked() + onRejected: manager.onCancelButtonClicked() + + buttonSpacing: UM.Theme.getSize("default_margin").width + rightButtons: [ - Button + Cura.TertiaryButton { - id:ok_button - text: catalog.i18nc("@action:button","OK"); - onClicked: { manager.onOkButtonClicked() } - enabled: true + id: cancel_button + text: catalog.i18nc("@action:button", "Cancel") + onClicked: manager.onCancelButtonClicked() }, - Button + Cura.PrimaryButton { - id:cancel_button - text: catalog.i18nc("@action:button","Cancel"); - onClicked: { manager.onCancelButtonClicked() } - enabled: true + id: ok_button + text: catalog.i18nc("@action:button", "OK") + onClicked: manager.onOkButtonClicked() } ] } diff --git a/plugins/MachineSettingsAction/MachineSettingsAction.qml b/plugins/MachineSettingsAction/MachineSettingsAction.qml index 8c4c00a3a5..7f72fea4c3 100644 --- a/plugins/MachineSettingsAction/MachineSettingsAction.qml +++ b/plugins/MachineSettingsAction/MachineSettingsAction.qml @@ -1,11 +1,11 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -88,7 +88,7 @@ Cura.MachineAction } } - Label + UM.Label { id: machineNameLabel anchors.top: parent.top @@ -97,7 +97,6 @@ Cura.MachineAction text: Cura.MachineManager.activeMachine.name horizontalAlignment: Text.AlignHCenter font: UM.Theme.getFont("large_bold") - renderType: Text.NativeRendering } UM.TabRow @@ -111,6 +110,7 @@ Cura.MachineAction model: tabNameModel delegate: UM.TabRowButton { + checked: model.index == 0 text: model.name } } diff --git a/plugins/Marketplace/Constants.py b/plugins/Marketplace/Constants.py new file mode 100644 index 0000000000..9f0f78b966 --- /dev/null +++ b/plugins/Marketplace/Constants.py @@ -0,0 +1,12 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from cura.UltimakerCloud import UltimakerCloudConstants +from cura.ApplicationMetadata import CuraSDKVersion + +ROOT_URL = f"{UltimakerCloudConstants.CuraCloudAPIRoot}/cura-packages/v{UltimakerCloudConstants.CuraCloudAPIVersion}" +ROOT_CURA_URL = f"{ROOT_URL}/cura/v{CuraSDKVersion}" # Root of all Marketplace API requests. +ROOT_USER_URL = f"{ROOT_URL}/user" +PACKAGES_URL = f"{ROOT_CURA_URL}/packages" # URL to use for requesting the list of packages. +PACKAGE_UPDATES_URL = f"{PACKAGES_URL}/package-updates" # URL to use for requesting the list of packages that can be updated. +USER_PACKAGES_URL = f"{ROOT_USER_URL}/packages" diff --git a/plugins/Marketplace/LocalPackageList.py b/plugins/Marketplace/LocalPackageList.py new file mode 100644 index 0000000000..a609e72d33 --- /dev/null +++ b/plugins/Marketplace/LocalPackageList.py @@ -0,0 +1,126 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, List, Optional, TYPE_CHECKING + +from PyQt5.QtCore import pyqtSlot, QObject + +from UM.Version import Version +from UM.i18n import i18nCatalog +from UM.TaskManagement.HttpRequestManager import HttpRequestManager +from UM.Logger import Logger + +from .PackageList import PackageList +from .PackageModel import PackageModel +from .Constants import PACKAGE_UPDATES_URL + +if TYPE_CHECKING: + from PyQt5.QtCore import QObject + from PyQt5.QtNetwork import QNetworkReply + +catalog = i18nCatalog("cura") + + +class LocalPackageList(PackageList): + PACKAGE_CATEGORIES = { + "installed": + { + "plugin": catalog.i18nc("@label", "Installed Plugins"), + "material": catalog.i18nc("@label", "Installed Materials") + }, + "bundled": + { + "plugin": catalog.i18nc("@label", "Bundled Plugins"), + "material": catalog.i18nc("@label", "Bundled Materials") + } + } # The section headers to be used for the different package categories + + def __init__(self, parent: Optional["QObject"] = None) -> None: + super().__init__(parent) + self._has_footer = False + self._ongoing_requests["check_updates"] = None + self._package_manager.packagesWithUpdateChanged.connect(self._sortSectionsOnUpdate) + self._package_manager.packageUninstalled.connect(self._removePackageModel) + + def _sortSectionsOnUpdate(self) -> None: + section_order = dict(zip([i for k, v in self.PACKAGE_CATEGORIES.items() for i in self.PACKAGE_CATEGORIES[k].values()], ["a", "b", "c", "d"])) + self.sort(lambda model: (section_order[model.sectionTitle], model.canUpdate, model.displayName.lower()), key = "package") + + def _removePackageModel(self, package_id: str) -> None: + """ + Cleanup function to remove the package model from the list. Note that this is only done if the package can't + be updated, it is in the to remove list and isn't in the to be installed list + """ + package = self.getPackageModel(package_id) + + if package and not package.canUpdate and \ + package_id in self._package_manager.getToRemovePackageIDs() and \ + package_id not in self._package_manager.getPackagesToInstall(): + index = self.find("package", package_id) + if index < 0: + Logger.error(f"Could not find card in Listview corresponding with {package_id}") + self.updatePackages() + return + self.removeItem(index) + + @pyqtSlot() + def updatePackages(self) -> None: + """Update the list with local packages, these are materials or plugin, either bundled or user installed. The list + will also contain **to be removed** or **to be installed** packages since the user might still want to interact + with these. + """ + self.setErrorMessage("") # Clear any previous errors. + self.setIsLoading(True) + + # Obtain and sort the local packages + self.setItems([{"package": p} for p in [self._makePackageModel(p) for p in self._package_manager.local_packages]]) + self._sortSectionsOnUpdate() + self.checkForUpdates(self._package_manager.local_packages) + + self.setIsLoading(False) + self.setHasMore(False) # All packages should have been loaded at this time + + def _makePackageModel(self, package_info: Dict[str, Any]) -> PackageModel: + """ Create a PackageModel from the package_info and determine its section_title""" + + package_id = package_info["package_id"] + bundled_or_installed = "bundled" if self._package_manager.isBundledPackage(package_id) else "installed" + package_type = package_info["package_type"] + section_title = self.PACKAGE_CATEGORIES[bundled_or_installed][package_type] + package = PackageModel(package_info, section_title = section_title, parent = self) + self._connectManageButtonSignals(package) + return package + + def checkForUpdates(self, packages: List[Dict[str, Any]]) -> None: + installed_packages = "&".join([f"installed_packages={package['package_id']}:{package['package_version']}" for package in packages]) + request_url = f"{PACKAGE_UPDATES_URL}?{installed_packages}" + + self._ongoing_requests["check_updates"] = HttpRequestManager.getInstance().get( + request_url, + scope = self._scope, + callback = self._parseResponse + ) + + def _parseResponse(self, reply: "QNetworkReply") -> None: + """ + Parse the response from the package list API request which can update. + + :param reply: A reply containing information about a number of packages. + """ + response_data = HttpRequestManager.readJSON(reply) + if "data" not in response_data: + Logger.error( + f"Could not interpret the server's response. Missing 'data' from response data. Keys in response: {response_data.keys()}") + return + if len(response_data["data"]) == 0: + return + + packages = response_data["data"] + for package in packages: + self._package_manager.addAvailablePackageVersion(package["package_id"], Version(package["package_version"])) + package_model = self.getPackageModel(package["package_id"]) + if package_model: + # Also make sure that the local list knows where to get an update + package_model.setDownloadUrl(package["download_url"]) + + self._ongoing_requests["check_updates"] = None diff --git a/plugins/Marketplace/Marketplace.py b/plugins/Marketplace/Marketplace.py new file mode 100644 index 0000000000..2d98947572 --- /dev/null +++ b/plugins/Marketplace/Marketplace.py @@ -0,0 +1,114 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import os.path +from PyQt5.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject +from typing import Optional, cast + +from cura.CuraApplication import CuraApplication # Creating QML objects and managing packages. + +from UM.Extension import Extension # We are implementing the main object of an extension here. +from UM.PluginRegistry import PluginRegistry # To find out where we are stored (the proper way). + +from .RemotePackageList import RemotePackageList # To register this type with QML. +from .LocalPackageList import LocalPackageList # To register this type with QML. + + +class Marketplace(Extension, QObject): + """ + The main managing object for the Marketplace plug-in. + """ + def __init__(self, parent: Optional[QObject] = None) -> None: + QObject.__init__(self, parent) + Extension.__init__(self) + self._window: Optional["QObject"] = None # If the window has been loaded yet, it'll be cached in here. + self._plugin_registry: Optional[PluginRegistry] = None + self._package_manager = CuraApplication.getInstance().getPackageManager() + + self._material_package_list: Optional[RemotePackageList] = None + self._plugin_package_list: Optional[RemotePackageList] = None + + # Not entirely the cleanest code, since the localPackage list also checks the server if there are updates + # Since that in turn will trigger notifications to be shown, we do need to construct it here and make sure + # that it checks for updates... + self._local_package_list = LocalPackageList(self) + self._local_package_list.checkForUpdates(self._package_manager.local_packages) + + self._package_manager.installedPackagesChanged.connect(self.checkIfRestartNeeded) + + self._tab_shown: int = 0 + self._restart_needed = False + + def getTabShown(self) -> int: + return self._tab_shown + + def setTabShown(self, tab_shown: int) -> None: + if tab_shown != self._tab_shown: + self._tab_shown = tab_shown + self.tabShownChanged.emit() + + tabShownChanged = pyqtSignal() + tabShown = pyqtProperty(int, fget=getTabShown, fset=setTabShown, notify=tabShownChanged) + + @pyqtProperty(QObject, constant=True) + def MaterialPackageList(self): + if self._material_package_list is None: + self._material_package_list = RemotePackageList() + self._material_package_list.packageTypeFilter = "material" + + return self._material_package_list + + @pyqtProperty(QObject, constant=True) + def PluginPackageList(self): + if self._plugin_package_list is None: + self._plugin_package_list = RemotePackageList() + self._plugin_package_list.packageTypeFilter = "plugin" + return self._plugin_package_list + + @pyqtProperty(QObject, constant=True) + def LocalPackageList(self): + return self._local_package_list + + @pyqtSlot() + def show(self) -> None: + """ + Opens the window of the Marketplace. + + If the window hadn't been loaded yet into Qt, it will be created lazily. + """ + if self._window is None: + self._plugin_registry = PluginRegistry.getInstance() + self._plugin_registry.pluginsEnabledOrDisabledChanged.connect(self.checkIfRestartNeeded) + plugin_path = PluginRegistry.getInstance().getPluginPath(self.getPluginId()) + if plugin_path is None: + plugin_path = os.path.dirname(__file__) + path = os.path.join(plugin_path, "resources", "qml", "Marketplace.qml") + self._window = CuraApplication.getInstance().createQmlComponent(path, {"manager": self}) + if self._window is None: # Still None? Failed to load the QML then. + return + if not self._window.isVisible(): + self.setTabShown(0) + self._window.show() + self._window.requestActivate() # Bring window into focus, if it was already open in the background. + + @pyqtSlot() + def setVisibleTabToMaterials(self) -> None: + """ + Set the tab shown to the remote materials one. + Not implemented in a more generic way because it needs the ability to be called with 'callExtensionMethod'. + """ + self.setTabShown(1) + + def checkIfRestartNeeded(self) -> None: + if self._package_manager.hasPackagesToRemoveOrInstall or \ + cast(PluginRegistry, self._plugin_registry).getCurrentSessionActivationChangedPlugins(): + self._restart_needed = True + else: + self._restart_needed = False + self.showRestartNotificationChanged.emit() + + showRestartNotificationChanged = pyqtSignal() + + @pyqtProperty(bool, notify=showRestartNotificationChanged) + def showRestartNotification(self) -> bool: + return self._restart_needed diff --git a/plugins/Marketplace/PackageList.py b/plugins/Marketplace/PackageList.py new file mode 100644 index 0000000000..04b602002c --- /dev/null +++ b/plugins/Marketplace/PackageList.py @@ -0,0 +1,305 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +import tempfile +import json +import os.path + +from PyQt5.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, Qt +from typing import cast, Dict, Optional, Set, TYPE_CHECKING + +from UM.i18n import i18nCatalog +from UM.Qt.ListModel import ListModel +from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope +from UM.TaskManagement.HttpRequestManager import HttpRequestData, HttpRequestManager +from UM.Logger import Logger +from UM import PluginRegistry + +from cura.CuraApplication import CuraApplication +from cura.CuraPackageManager import CuraPackageManager +from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope # To make requests to the Ultimaker API with correct authorization. + +from .PackageModel import PackageModel +from .Constants import USER_PACKAGES_URL, PACKAGES_URL + +if TYPE_CHECKING: + from PyQt5.QtCore import QObject + from PyQt5.QtNetwork import QNetworkReply + +catalog = i18nCatalog("cura") + + +class PackageList(ListModel): + """ A List model for Packages, this class serves as parent class for more detailed implementations. + such as Packages obtained from Remote or Local source + """ + PackageRole = Qt.UserRole + 1 + DISK_WRITE_BUFFER_SIZE = 256 * 1024 # 256 KB + + def __init__(self, parent: Optional["QObject"] = None) -> None: + super().__init__(parent) + self._package_manager: CuraPackageManager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) + self._plugin_registry: PluginRegistry = CuraApplication.getInstance().getPluginRegistry() + self._account = CuraApplication.getInstance().getCuraAPI().account + self._error_message = "" + self.addRoleName(self.PackageRole, "package") + self._is_loading = False + self._has_more = False + self._has_footer = True + self._to_install: Dict[str, str] = {} + + self._ongoing_requests: Dict[str, Optional[HttpRequestData]] = {"download_package": None} + self._scope = JsonDecoratorScope(UltimakerCloudScope(CuraApplication.getInstance())) + self._license_dialogs: Dict[str, QObject] = {} + + def __del__(self) -> None: + """ When this object is deleted it will loop through all registered API requests and aborts them """ + try: + self.isLoadingChanged.disconnect() + self.hasMoreChanged.disconnect() + except RuntimeError: + pass + + self.cleanUpAPIRequest() + + def abortRequest(self, request_id: str) -> None: + """Aborts a single request""" + if request_id in self._ongoing_requests and self._ongoing_requests[request_id]: + HttpRequestManager.getInstance().abortRequest(self._ongoing_requests[request_id]) + self._ongoing_requests[request_id] = None + + @pyqtSlot() + def cleanUpAPIRequest(self) -> None: + for request_id in self._ongoing_requests: + self.abortRequest(request_id) + + @pyqtSlot() + def updatePackages(self) -> None: + """ A Qt slot which will update the List from a source. Actual implementation should be done in the child class""" + pass + + def reset(self) -> None: + """ Resets and clears the list""" + self.clear() + + isLoadingChanged = pyqtSignal() + + def setIsLoading(self, value: bool) -> None: + if self._is_loading != value: + self._is_loading = value + self.isLoadingChanged.emit() + + @pyqtProperty(bool, fset = setIsLoading, notify = isLoadingChanged) + def isLoading(self) -> bool: + """ Indicating if the the packages are loading + :return" ``True`` if the list is being obtained, otherwise ``False`` + """ + return self._is_loading + + hasMoreChanged = pyqtSignal() + + def setHasMore(self, value: bool) -> None: + if self._has_more != value: + self._has_more = value + self.hasMoreChanged.emit() + + @pyqtProperty(bool, fset = setHasMore, notify = hasMoreChanged) + def hasMore(self) -> bool: + """ Indicating if there are more packages available to load. + :return: ``True`` if there are more packages to load, or ``False``. + """ + return self._has_more + + errorMessageChanged = pyqtSignal() + + def setErrorMessage(self, error_message: str) -> None: + if self._error_message != error_message: + self._error_message = error_message + self.errorMessageChanged.emit() + + @pyqtProperty(str, notify = errorMessageChanged, fset = setErrorMessage) + def errorMessage(self) -> str: + """ If an error occurred getting the list of packages, an error message will be held here. + + If no error occurred (yet), this will be an empty string. + :return: An error message, if any, or an empty string if everything went okay. + """ + return self._error_message + + @pyqtProperty(bool, constant = True) + def hasFooter(self) -> bool: + """ Indicating if the PackageList should have a Footer visible. For paginated PackageLists + :return: ``True`` if a Footer should be displayed in the ListView, e.q.: paginated lists, ``False`` Otherwise""" + return self._has_footer + + def getPackageModel(self, package_id: str) -> Optional[PackageModel]: + index = self.find("package", package_id) + data = self.getItem(index) + if data: + return data.get("package") + return None + + def _openLicenseDialog(self, package_id: str, license_content: str) -> None: + plugin_path = self._plugin_registry.getPluginPath("Marketplace") + if plugin_path is None: + plugin_path = os.path.dirname(__file__) + + # create a QML component for the license dialog + license_dialog_component_path = os.path.join(plugin_path, "resources", "qml", "LicenseDialog.qml") + dialog = CuraApplication.getInstance().createQmlComponent(license_dialog_component_path, { + "licenseContent": license_content, + "packageId": package_id, + "handler": self + }) + dialog.show() + # place dialog in class such that it does not get remove by garbage collector + self._license_dialogs[package_id] = dialog + + @pyqtSlot(str) + def onLicenseAccepted(self, package_id: str) -> None: + # close dialog + dialog = self._license_dialogs.pop(package_id) + if dialog is not None: + dialog.deleteLater() + # install relevant package + self._install(package_id) + + @pyqtSlot(str) + def onLicenseDeclined(self, package_id: str) -> None: + # close dialog + dialog = self._license_dialogs.pop(package_id) + if dialog is not None: + dialog.deleteLater() + # reset package card + self._package_manager.packageInstallingFailed.emit(package_id) + + def _requestInstall(self, package_id: str, update: bool = False) -> None: + package_path = self._to_install[package_id] + license_content = self._package_manager.getPackageLicense(package_path) + + if not update and license_content is not None and license_content != "": + # If installation is not and update, and the packages contains a license then + # open dialog, prompting the using to accept the plugin license + self._openLicenseDialog(package_id, license_content) + else: + # Otherwise continue the installation + self._install(package_id, update) + + def _install(self, package_id: str, update: bool = False) -> None: + package_path = self._to_install.pop(package_id) + to_be_installed = self._package_manager.installPackage(package_path) is not None + if not to_be_installed: + Logger.warning(f"Could not install {package_id}") + return + package = self.getPackageModel(package_id) + if package: + self.subscribeUserToPackage(package_id, str(package.sdk_version)) + else: + Logger.log("w", f"Unable to get data on package {package_id}") + + def download(self, package_id: str, url: str, update: bool = False) -> None: + """Initiate the download request + + :param package_id: the package identification string + :param url: the URL from which the package needs to be obtained + :param update: A flag if this is download request is an update process + """ + + if url == "": + url = f"{PACKAGES_URL}/{package_id}/download" + + def downloadFinished(reply: "QNetworkReply") -> None: + self._downloadFinished(package_id, reply, update) + + def downloadError(reply: "QNetworkReply", error: "QNetworkReply.NetworkError") -> None: + self._downloadError(package_id, update, reply, error) + + self._ongoing_requests["download_package"] = HttpRequestManager.getInstance().get( + url, + scope = self._scope, + callback = downloadFinished, + error_callback = downloadError + ) + + def _downloadFinished(self, package_id: str, reply: "QNetworkReply", update: bool = False) -> None: + with tempfile.NamedTemporaryFile(mode = "wb+", suffix = ".curapackage", delete = False) as temp_file: + try: + bytes_read = reply.read(self.DISK_WRITE_BUFFER_SIZE) + while bytes_read: + temp_file.write(bytes_read) + bytes_read = reply.read(self.DISK_WRITE_BUFFER_SIZE) + except IOError as e: + Logger.error(f"Failed to write downloaded package to temp file {e}") + temp_file.close() + self._downloadError(package_id, update) + except RuntimeError: + # Setting the ownership of this object to not qml can still result in a RuntimeError. Which can occur when quickly toggling + # between de-/constructing Remote or Local PackageLists. This try-except is here to prevent a hard crash when the wrapped C++ object + # was deleted when it was still parsing the response + temp_file.close() + return + temp_file.close() + self._to_install[package_id] = temp_file.name + self._ongoing_requests["download_package"] = None + self._requestInstall(package_id, update) + + def _downloadError(self, package_id: str, update: bool = False, reply: Optional["QNetworkReply"] = None, error: Optional["QNetworkReply.NetworkError"] = None) -> None: + if reply: + reply_string = bytes(reply.readAll()).decode() + Logger.error(f"Failed to download package: {package_id} due to {reply_string}") + self._package_manager.packageInstallingFailed.emit(package_id) + + def subscribeUserToPackage(self, package_id: str, sdk_version: str) -> None: + """Subscribe the user (if logged in) to the package for a given SDK + + :param package_id: the package identification string + :param sdk_version: the SDK version + """ + if self._account.isLoggedIn: + HttpRequestManager.getInstance().put( + url = USER_PACKAGES_URL, + data = json.dumps({"data": {"package_id": package_id, "sdk_version": sdk_version}}).encode(), + scope = self._scope + ) + + def unsunscribeUserFromPackage(self, package_id: str) -> None: + """Unsubscribe the user (if logged in) from the package + + :param package_id: the package identification string + """ + if self._account.isLoggedIn: + HttpRequestManager.getInstance().delete(url = f"{USER_PACKAGES_URL}/{package_id}", scope = self._scope) + + # --- Handle the manage package buttons --- + + def _connectManageButtonSignals(self, package: PackageModel) -> None: + package.installPackageTriggered.connect(self.installPackage) + package.uninstallPackageTriggered.connect(self.uninstallPackage) + package.updatePackageTriggered.connect(self.updatePackage) + + def installPackage(self, package_id: str, url: str) -> None: + """Install a package from the Marketplace + + :param package_id: the package identification string + """ + if not self._package_manager.reinstallPackage(package_id): + self.download(package_id, url, False) + else: + package = self.getPackageModel(package_id) + if package: + self.subscribeUserToPackage(package_id, str(package.sdk_version)) + + def uninstallPackage(self, package_id: str) -> None: + """Uninstall a package from the Marketplace + + :param package_id: the package identification string + """ + self._package_manager.removePackage(package_id) + self.unsunscribeUserFromPackage(package_id) + + def updatePackage(self, package_id: str, url: str) -> None: + """Update a package from the Marketplace + + :param package_id: the package identification string + """ + self._package_manager.removePackage(package_id, force_add = not self._package_manager.isBundledPackage(package_id)) + self.download(package_id, url, True) diff --git a/plugins/Marketplace/PackageModel.py b/plugins/Marketplace/PackageModel.py new file mode 100644 index 0000000000..29c8abe653 --- /dev/null +++ b/plugins/Marketplace/PackageModel.py @@ -0,0 +1,387 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import re +from enum import Enum +from typing import Any, cast, Dict, List, Optional + +from PyQt5.QtCore import pyqtProperty, QObject, pyqtSignal, pyqtSlot +from PyQt5.QtQml import QQmlEngine + +from cura.CuraApplication import CuraApplication +from cura.CuraPackageManager import CuraPackageManager +from cura.Settings.CuraContainerRegistry import CuraContainerRegistry # To get names of materials we're compatible with. +from UM.i18n import i18nCatalog # To translate placeholder names if data is not present. +from UM.Logger import Logger +from UM.PluginRegistry import PluginRegistry + +catalog = i18nCatalog("cura") + + +class PackageModel(QObject): + """ + Represents a package, containing all the relevant information to be displayed about a package. + """ + + def __init__(self, package_data: Dict[str, Any], section_title: Optional[str] = None, parent: Optional[QObject] = None) -> None: + """ + Constructs a new model for a single package. + :param package_data: The data received from the Marketplace API about the package to create. + :param section_title: If the packages are to be categorized per section provide the section_title + :param parent: The parent QML object that controls the lifetime of this model (normally a PackageList). + """ + super().__init__(parent) + QQmlEngine.setObjectOwnership(self, QQmlEngine.CppOwnership) + self._package_manager: CuraPackageManager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) + self._plugin_registry: PluginRegistry = CuraApplication.getInstance().getPluginRegistry() + + self._package_id = package_data.get("package_id", "UnknownPackageId") + self._package_type = package_data.get("package_type", "") + self._is_bundled = package_data.get("is_bundled", False) + self._icon_url = package_data.get("icon_url", "") + self._marketplace_url = package_data.get("marketplace_url", "") + self._display_name = package_data.get("display_name", catalog.i18nc("@label:property", "Unknown Package")) + tags = package_data.get("tags", []) + self._is_checked_by_ultimaker = (self._package_type == "plugin" and "verified" in tags) or ( + self._package_type == "material" and "certified" in tags) + self._package_version = package_data.get("package_version", "") # Display purpose, no need for 'UM.Version'. + self._package_info_url = package_data.get("website", "") # Not to be confused with 'download_url'. + self._download_count = package_data.get("download_count", 0) + self._description = package_data.get("description", "") + self._formatted_description = self._format(self._description) + + self._download_url = package_data.get("download_url", "") + self._release_notes = package_data.get("release_notes", "") # Not used yet, propose to add to description? + + subdata = package_data.get("data", {}) + self._technical_data_sheet = self._findLink(subdata, "technical_data_sheet") + self._safety_data_sheet = self._findLink(subdata, "safety_data_sheet") + self._where_to_buy = self._findLink(subdata, "where_to_buy") + self._compatible_printers = self._getCompatiblePrinters(subdata) + self._compatible_support_materials = self._getCompatibleSupportMaterials(subdata) + self._is_compatible_material_station = self._isCompatibleMaterialStation(subdata) + self._is_compatible_air_manager = self._isCompatibleAirManager(subdata) + + author_data = package_data.get("author", {}) + self._author_name = author_data.get("display_name", catalog.i18nc("@label:property", "Unknown Author")) + self._author_info_url = author_data.get("website", "") + if not self._icon_url or self._icon_url == "": + self._icon_url = author_data.get("icon_url", "") + + self._can_update = False + self._section_title = section_title + self.sdk_version = package_data.get("sdk_version_semver", "") + # Note that there's a lot more info in the package_data than just these specified here. + + self.enablePackageTriggered.connect(self._plugin_registry.enablePlugin) + self.disablePackageTriggered.connect(self._plugin_registry.disablePlugin) + + self._plugin_registry.pluginsEnabledOrDisabledChanged.connect(self.stateManageButtonChanged) + self._package_manager.packageInstalled.connect(lambda pkg_id: self._packageInstalled(pkg_id)) + self._package_manager.packageUninstalled.connect(lambda pkg_id: self._packageInstalled(pkg_id)) + self._package_manager.packageInstallingFailed.connect(lambda pkg_id: self._packageInstalled(pkg_id)) + self._package_manager.packagesWithUpdateChanged.connect(self._processUpdatedPackages) + + self._is_busy = False + + @pyqtSlot() + def _processUpdatedPackages(self): + self.setCanUpdate(self._package_manager.checkIfPackageCanUpdate(self._package_id)) + + def __del__(self): + self._package_manager.packagesWithUpdateChanged.disconnect(self._processUpdatedPackages) + + def __eq__(self, other: object) -> bool: + if isinstance(other, PackageModel): + return other == self + elif isinstance(other, str): + return other == self._package_id + else: + return False + + def __repr__(self) -> str: + return f"<{self._package_id} : {self._package_version} : {self._section_title}>" + + def _findLink(self, subdata: Dict[str, Any], link_type: str) -> str: + """ + Searches the package data for a link of a certain type. + + The links are not in a fixed path in the package data. We need to iterate over the available links to find them. + :param subdata: The "data" element in the package data, which should contain links. + :param link_type: The type of link to find. + :return: A URL of where the link leads, or an empty string if there is no link of that type in the package data. + """ + links = subdata.get("links", []) + for link in links: + if link.get("type", "") == link_type: + return link.get("url", "") + else: + return "" # No link with the correct type was found. + + def _format(self, text: str) -> str: + """ + Formats a user-readable block of text for display. + :return: A block of rich text with formatting embedded. + """ + # Turn all in-line hyperlinks into actual links. + url_regex = re.compile(r"(((http|https)://)[a-zA-Z0-9@:%.\-_+~#?&/=]{2,256}\.[a-z]{2,12}(/[a-zA-Z0-9@:%.\-_+~#?&/=]*)?)") + text = re.sub(url_regex, r'\1', text) + + # Turn newlines into
so that they get displayed as newlines when rendering as rich text. + text = text.replace("\n", "
") + + return text + + def _getCompatiblePrinters(self, subdata: Dict[str, Any]) -> List[str]: + """ + Gets the list of printers that this package provides material compatibility with. + + Any printer is listed, even if it's only for a single nozzle on a single material in the package. + :param subdata: The "data" element in the package data, which should contain this compatibility information. + :return: A list of printer names that this package provides material compatibility with. + """ + result = set() + + for material in subdata.get("materials", []): + for compatibility in material.get("compatibility", []): + printer_name = compatibility.get("machine_name") + if printer_name is None: + continue # Missing printer name information. Skip this one. + for subcompatibility in compatibility.get("compatibilities", []): + if subcompatibility.get("hardware_compatible", False): + result.add(printer_name) + break + + return list(sorted(result)) + + def _getCompatibleSupportMaterials(self, subdata: Dict[str, Any]) -> List[str]: + """ + Gets the list of support materials that the materials in this package are compatible with. + + Since the materials are individually encoded as keys in the API response, only PVA and Breakaway are currently + supported. + :param subdata: The "data" element in the package data, which should contain this compatibility information. + :return: A list of support materials that the materials in this package are compatible with. + """ + result = set() + + container_registry = CuraContainerRegistry.getInstance() + try: + pva_name = container_registry.findContainersMetadata(id = "ultimaker_pva")[0].get("name", "Ultimaker PVA") + except IndexError: + pva_name = "Ultimaker PVA" + try: + breakaway_name = container_registry.findContainersMetadata(id = "ultimaker_bam")[0].get("name", "Ultimaker Breakaway") + except IndexError: + breakaway_name = "Ultimaker Breakaway" + + for material in subdata.get("materials", []): + if material.get("pva_compatible", False): + result.add(pva_name) + if material.get("breakaway_compatible", False): + result.add(breakaway_name) + + return list(sorted(result)) + + def _isCompatibleMaterialStation(self, subdata: Dict[str, Any]) -> bool: + """ + Finds out if this package provides any material that is compatible with the material station. + :param subdata: The "data" element in the package data, which should contain this compatibility information. + :return: Whether this package provides any material that is compatible with the material station. + """ + for material in subdata.get("materials", []): + for compatibility in material.get("compatibility", []): + if compatibility.get("material_station_optimized", False): + return True + return False + + def _isCompatibleAirManager(self, subdata: Dict[str, Any]) -> bool: + """ + Finds out if this package provides any material that is compatible with the air manager. + :param subdata: The "data" element in the package data, which should contain this compatibility information. + :return: Whether this package provides any material that is compatible with the air manager. + """ + for material in subdata.get("materials", []): + for compatibility in material.get("compatibility", []): + if compatibility.get("air_manager_optimized", False): + return True + return False + + @pyqtProperty(str, constant = True) + def packageId(self) -> str: + return self._package_id + + @pyqtProperty(str, constant=True) + def marketplaceURL(self)-> str: + return self._marketplace_url + + @pyqtProperty(str, constant = True) + def packageType(self) -> str: + return self._package_type + + @pyqtProperty(str, constant = True) + def iconUrl(self) -> str: + return self._icon_url + + @pyqtProperty(str, constant = True) + def displayName(self) -> str: + return self._display_name + + @pyqtProperty(bool, constant = True) + def isCheckedByUltimaker(self): + return self._is_checked_by_ultimaker + + @pyqtProperty(str, constant = True) + def packageVersion(self) -> str: + return self._package_version + + @pyqtProperty(str, constant = True) + def packageInfoUrl(self) -> str: + return self._package_info_url + + @pyqtProperty(int, constant = True) + def downloadCount(self) -> str: + return self._download_count + + @pyqtProperty(str, constant = True) + def description(self) -> str: + return self._description + + @pyqtProperty(str, constant = True) + def formattedDescription(self) -> str: + return self._formatted_description + + @pyqtProperty(str, constant = True) + def authorName(self) -> str: + return self._author_name + + @pyqtProperty(str, constant = True) + def authorInfoUrl(self) -> str: + return self._author_info_url + + @pyqtProperty(str, constant = True) + def sectionTitle(self) -> Optional[str]: + return self._section_title + + @pyqtProperty(str, constant = True) + def technicalDataSheet(self) -> str: + return self._technical_data_sheet + + @pyqtProperty(str, constant = True) + def safetyDataSheet(self) -> str: + return self._safety_data_sheet + + @pyqtProperty(str, constant = True) + def whereToBuy(self) -> str: + return self._where_to_buy + + @pyqtProperty("QStringList", constant = True) + def compatiblePrinters(self) -> List[str]: + return self._compatible_printers + + @pyqtProperty("QStringList", constant = True) + def compatibleSupportMaterials(self) -> List[str]: + return self._compatible_support_materials + + @pyqtProperty(bool, constant = True) + def isCompatibleMaterialStation(self) -> bool: + return self._is_compatible_material_station + + @pyqtProperty(bool, constant = True) + def isCompatibleAirManager(self) -> bool: + return self._is_compatible_air_manager + + @pyqtProperty(bool, constant = True) + def isBundled(self) -> bool: + return self._is_bundled + + def setDownloadUrl(self, download_url): + self._download_url = download_url + + # --- manage buttons signals --- + + stateManageButtonChanged = pyqtSignal() + + installPackageTriggered = pyqtSignal(str, str) + + uninstallPackageTriggered = pyqtSignal(str) + + updatePackageTriggered = pyqtSignal(str, str) + + enablePackageTriggered = pyqtSignal(str) + + disablePackageTriggered = pyqtSignal(str) + + busyChanged = pyqtSignal() + + @pyqtSlot() + def install(self): + self.setBusy(True) + self.installPackageTriggered.emit(self.packageId, self._download_url) + + @pyqtSlot() + def update(self): + self.setBusy(True) + self.updatePackageTriggered.emit(self.packageId, self._download_url) + + @pyqtSlot() + def uninstall(self): + self.uninstallPackageTriggered.emit(self.packageId) + + @pyqtProperty(bool, notify= busyChanged) + def busy(self): + """ + Property indicating that some kind of upgrade is active. + """ + return self._is_busy + + @pyqtSlot() + def enable(self): + self.enablePackageTriggered.emit(self.packageId) + + @pyqtSlot() + def disable(self): + self.disablePackageTriggered.emit(self.packageId) + + def setBusy(self, value: bool): + if self._is_busy != value: + self._is_busy = value + try: + self.busyChanged.emit() + except RuntimeError: + pass + + def _packageInstalled(self, package_id: str) -> None: + if self._package_id != package_id: + return + self.setBusy(False) + try: + self.stateManageButtonChanged.emit() + except RuntimeError: + pass + + @pyqtProperty(bool, notify = stateManageButtonChanged) + def isInstalled(self) -> bool: + return self._package_id in self._package_manager.getAllInstalledPackageIDs() + + @pyqtProperty(bool, notify = stateManageButtonChanged) + def isToBeInstalled(self) -> bool: + return self._package_id in self._package_manager.getPackagesToInstall() + + @pyqtProperty(bool, notify = stateManageButtonChanged) + def isActive(self) -> bool: + return not self._package_id in self._plugin_registry.getDisabledPlugins() + + @pyqtProperty(bool, notify = stateManageButtonChanged) + def canDowngrade(self) -> bool: + """Flag if the installed package can be downgraded to a bundled version""" + return self._package_manager.canDowngrade(self._package_id) + + def setCanUpdate(self, value: bool) -> None: + self._can_update = value + self.stateManageButtonChanged.emit() + + @pyqtProperty(bool, fset = setCanUpdate, notify = stateManageButtonChanged) + def canUpdate(self) -> bool: + """Flag indicating if the package can be updated""" + return self._can_update diff --git a/plugins/Marketplace/RemotePackageList.py b/plugins/Marketplace/RemotePackageList.py new file mode 100644 index 0000000000..4c82f2b29a --- /dev/null +++ b/plugins/Marketplace/RemotePackageList.py @@ -0,0 +1,148 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt5.QtCore import pyqtProperty, pyqtSignal, pyqtSlot +from PyQt5.QtNetwork import QNetworkReply +from typing import Optional, TYPE_CHECKING + +from UM.i18n import i18nCatalog +from UM.Logger import Logger +from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To request the package list from the API. + +from .Constants import PACKAGES_URL # To get the list of packages. Imported this way to prevent circular imports. +from .PackageList import PackageList +from .PackageModel import PackageModel # The contents of this list. + +if TYPE_CHECKING: + from PyQt5.QtCore import QObject + +catalog = i18nCatalog("cura") + + +class RemotePackageList(PackageList): + ITEMS_PER_PAGE = 20 # Pagination of number of elements to download at once. + + def __init__(self, parent: Optional["QObject"] = None) -> None: + super().__init__(parent) + + self._package_type_filter = "" + self._requested_search_string = "" + self._current_search_string = "" + self._request_url = self._initialRequestUrl() + self._ongoing_requests["get_packages"] = None + self.isLoadingChanged.connect(self._onLoadingChanged) + self.isLoadingChanged.emit() + + @pyqtSlot() + def updatePackages(self) -> None: + """ + Make a request for the first paginated page of packages. + + When the request is done, the list will get updated with the new package models. + """ + self.setErrorMessage("") # Clear any previous errors. + self.setIsLoading(True) + + self._ongoing_requests["get_packages"] = HttpRequestManager.getInstance().get( + self._request_url, + scope = self._scope, + callback = self._parseResponse, + error_callback = self._onError + ) + + def reset(self) -> None: + self.clear() + self._request_url = self._initialRequestUrl() + + packageTypeFilterChanged = pyqtSignal() + searchStringChanged = pyqtSignal() + + def setPackageTypeFilter(self, new_filter: str) -> None: + if new_filter != self._package_type_filter: + self._package_type_filter = new_filter + self.reset() + self.packageTypeFilterChanged.emit() + + def setSearchString(self, new_search: str) -> None: + self._requested_search_string = new_search + self._onLoadingChanged() + + @pyqtProperty(str, fset = setPackageTypeFilter, notify = packageTypeFilterChanged) + def packageTypeFilter(self) -> str: + """ + Get the package type this package list is filtering on, like ``plugin`` or ``material``. + :return: The package type this list is filtering on. + """ + return self._package_type_filter + + @pyqtProperty(str, fset = setSearchString, notify = searchStringChanged) + def searchString(self) -> str: + """ + Get the string the user is currently searching for (as in: the list is updating) within the packages, + or an empty string if no extra search filter has to be applied. Does not override package-type filter! + :return: String the user is searching for. Empty denotes 'no search filter'. + """ + return self._current_search_string + + def _onLoadingChanged(self) -> None: + if self._requested_search_string != self._current_search_string and not self._is_loading: + self._current_search_string = self._requested_search_string + self.reset() + self.updatePackages() + self.searchStringChanged.emit() + + def _initialRequestUrl(self) -> str: + """ + Get the URL to request the first paginated page with. + :return: A URL to request. + """ + request_url = f"{PACKAGES_URL}?limit={self.ITEMS_PER_PAGE}" + if self._package_type_filter != "": + request_url += f"&package_type={self._package_type_filter}" + if self._current_search_string != "": + request_url += f"&search={self._current_search_string}" + return request_url + + def _parseResponse(self, reply: "QNetworkReply") -> None: + """ + Parse the response from the package list API request. + + This converts that response into PackageModels, and triggers the ListModel to update. + :param reply: A reply containing information about a number of packages. + """ + response_data = HttpRequestManager.readJSON(reply) + if "data" not in response_data or "links" not in response_data: + Logger.error(f"Could not interpret the server's response. Missing 'data' or 'links' from response data. Keys in response: {response_data.keys()}") + self.setErrorMessage(catalog.i18nc("@info:error", "Could not interpret the server's response.")) + return + + for package_data in response_data["data"]: + try: + package = PackageModel(package_data, parent = self) + self._connectManageButtonSignals(package) + self.appendItem({"package": package}) # Add it to this list model. + except RuntimeError: + # Setting the ownership of this object to not qml can still result in a RuntimeError. Which can occur when quickly toggling + # between de-/constructing RemotePackageLists. This try-except is here to prevent a hard crash when the wrapped C++ object + # was deleted when it was still parsing the response + continue + + self._request_url = response_data["links"].get("next", "") # Use empty string to signify that there is no next page. + self._ongoing_requests["get_packages"] = None + self.setIsLoading(False) + self.setHasMore(self._request_url != "") + + def _onError(self, reply: "QNetworkReply", error: Optional[QNetworkReply.NetworkError]) -> None: + """ + Handles networking and server errors when requesting the list of packages. + :param reply: The reply with packages. This will most likely be incomplete and should be ignored. + :param error: The error status of the request. + """ + if error == QNetworkReply.NetworkError.OperationCanceledError: + Logger.debug("Cancelled request for packages.") + self._ongoing_requests["get_packages"] = None + return # Don't show an error about this to the user. + Logger.error("Could not reach Marketplace server.") + self.setErrorMessage(catalog.i18nc("@info:error", "Could not reach Marketplace.")) + self._ongoing_requests["get_packages"] = None + self.setIsLoading(False) diff --git a/plugins/Marketplace/__init__.py b/plugins/Marketplace/__init__.py new file mode 100644 index 0000000000..bd65062ba6 --- /dev/null +++ b/plugins/Marketplace/__init__.py @@ -0,0 +1,17 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from .Marketplace import Marketplace + +def getMetaData(): + """ + Extension-type plug-ins don't have any specific metadata being used by Cura. + """ + return {} + + +def register(app): + """ + Register the plug-in object with Uranium. + """ + return { "extension": Marketplace() } diff --git a/plugins/Marketplace/plugin.json b/plugins/Marketplace/plugin.json new file mode 100644 index 0000000000..7eeeb5c986 --- /dev/null +++ b/plugins/Marketplace/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Marketplace", + "author": "Ultimaker B.V.", + "version": "1.0.0", + "api": 7, + "description": "Manages extensions to the application and allows browsing extensions from the Ultimaker website.", + "i18n-catalog": "cura" +} diff --git a/plugins/Marketplace/resources/images/Plugin.svg b/plugins/Marketplace/resources/images/Plugin.svg new file mode 100644 index 0000000000..51356d842c --- /dev/null +++ b/plugins/Marketplace/resources/images/Plugin.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/Marketplace/resources/images/Spool.svg b/plugins/Marketplace/resources/images/Spool.svg new file mode 100644 index 0000000000..dae9b43030 --- /dev/null +++ b/plugins/Marketplace/resources/images/Spool.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/Toolbox/resources/images/placeholder.svg b/plugins/Marketplace/resources/images/placeholder.svg similarity index 100% rename from plugins/Toolbox/resources/images/placeholder.svg rename to plugins/Marketplace/resources/images/placeholder.svg diff --git a/plugins/Marketplace/resources/qml/LicenseDialog.qml b/plugins/Marketplace/resources/qml/LicenseDialog.qml new file mode 100644 index 0000000000..09d7c5b59a --- /dev/null +++ b/plugins/Marketplace/resources/qml/LicenseDialog.qml @@ -0,0 +1,91 @@ +//Copyright (c) 2021 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Dialogs 1.1 +import QtQuick.Window 2.2 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 + +import UM 1.6 as UM +import Cura 1.6 as Cura + +UM.Dialog +{ + id: licenseDialog + title: catalog.i18nc("@button", "Plugin license agreement") + minimumWidth: UM.Theme.getSize("modal_window_minimum").width + minimumHeight: UM.Theme.getSize("modal_window_minimum").height + width: minimumWidth + height: minimumHeight + backgroundColor: UM.Theme.getColor("main_background") + + property variant catalog: UM.I18nCatalog { name: "cura" } + + ColumnLayout + { + anchors.fill: parent + spacing: UM.Theme.getSize("thick_margin").height + + Row + { + Layout.fillWidth: true + height: childrenRect.height + spacing: UM.Theme.getSize("default_margin").width + leftPadding: UM.Theme.getSize("narrow_margin").width + + UM.RecolorImage + { + id: icon + width: UM.Theme.getSize("marketplace_large_icon").width + height: UM.Theme.getSize("marketplace_large_icon").height + color: UM.Theme.getColor("text") + source: UM.Theme.getIcon("Certificate", "high") + } + + Label + { + text: catalog.i18nc("@text", "Please read and agree with the plugin licence.") + color: UM.Theme.getColor("text") + font: UM.Theme.getFont("large") + anchors.verticalCenter: icon.verticalCenter + height: UM.Theme.getSize("marketplace_large_icon").height + verticalAlignment: Qt.AlignVCenter + wrapMode: Text.Wrap + renderType: Text.NativeRendering + } + } + + Cura.ScrollableTextArea + { + Layout.fillWidth: true + Layout.fillHeight: true + anchors.topMargin: UM.Theme.getSize("default_margin").height + + textArea.text: licenseContent + textArea.readOnly: true + } + + } + rightButtons: + [ + Cura.PrimaryButton + { + text: catalog.i18nc("@button", "Accept") + onClicked: handler.onLicenseAccepted(packageId) + } + ] + + leftButtons: + [ + Cura.SecondaryButton + { + text: catalog.i18nc("@button", "Decline") + onClicked: handler.onLicenseDeclined(packageId) + } + ] + + onAccepted: handler.onLicenseAccepted(packageId) + onRejected: handler.onLicenseDeclined(packageId) + onClosing: handler.onLicenseDeclined(packageId) +} diff --git a/plugins/Marketplace/resources/qml/ManageButton.qml b/plugins/Marketplace/resources/qml/ManageButton.qml new file mode 100644 index 0000000000..36022ffd54 --- /dev/null +++ b/plugins/Marketplace/resources/qml/ManageButton.qml @@ -0,0 +1,114 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.1 + +import UM 1.6 as UM +import Cura 1.6 as Cura + +Item +{ + id: manageButton + property bool button_style: true + property string text + property bool busy: false + property bool confirmed: false + + implicitWidth: childrenRect.width + implicitHeight: childrenRect.height + + signal clicked() + + property Component primaryButton: Component + { + Cura.PrimaryButton + { + text: manageButton.text + onClicked: manageButton.clicked() + } + } + + property Component secondaryButton: Component + { + Cura.SecondaryButton + { + text: manageButton.text + onClicked: manageButton.clicked() + } + } + + property Component busyButton: Component + { + Item + { + height: UM.Theme.getSize("action_button").height + width: childrenRect.width + + UM.RecolorImage + { + id: busyIndicator + visible: parent.visible + height: UM.Theme.getSize("action_button").height - 2 * UM.Theme.getSize("narrow_margin").height + width: height + anchors.left: parent.left + anchors.verticalCenter: parent.verticalCenter + + source: UM.Theme.getIcon("Spinner") + color: UM.Theme.getColor("primary") + + RotationAnimator + { + target: busyIndicator + running: parent.visible + from: 0 + to: 360 + loops: Animation.Infinite + duration: 2500 + } + } + Label + { + visible: parent.visible + anchors.left: busyIndicator.right + anchors.leftMargin: UM.Theme.getSize("narrow_margin").width + anchors.verticalCenter: parent.verticalCenter + text: manageButton.text + + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("primary") + } + } + } + + property Component confirmButton: Component + { + Item + { + height: UM.Theme.getSize("action_button").height + width: childrenRect.width + + Label + { + anchors.verticalCenter: parent.verticalCenter + text: manageButton.text + + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("primary") + } + } + } + + Loader + { + + sourceComponent: + { + if (busy) { return manageButton.busyButton; } + else if (confirmed) { return manageButton.confirmButton; } + else if (manageButton.button_style) { return manageButton.primaryButton; } + else { return manageButton.secondaryButton; } + } + } +} diff --git a/plugins/Marketplace/resources/qml/ManagePackagesButton.qml b/plugins/Marketplace/resources/qml/ManagePackagesButton.qml new file mode 100644 index 0000000000..fc9e7d757f --- /dev/null +++ b/plugins/Marketplace/resources/qml/ManagePackagesButton.qml @@ -0,0 +1,49 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import UM 1.5 as UM +import Cura 1.6 as Cura + +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +TabButton +{ + id: root + width: UM.Theme.getSize("button_icon").width + UM.Theme.getSize("narrow_margin").width + height: UM.Theme.getSize("button_icon").height + hoverEnabled: true + property color inactiveBackgroundColor : hovered ? UM.Theme.getColor("action_button_hovered") : UM.Theme.getColor("detail_background") + property color activeBackgroundColor : UM.Theme.getColor("main_background") + leftInset: UM.Theme.getSize("narrow_margin").width + + background: Rectangle + { + color: parent.checked ? activeBackgroundColor : inactiveBackgroundColor + border.color: parent.checked ? UM.Theme.getColor("detail_background") : "transparent" + border.width: UM.Theme.getSize("thick_lining").width + radius: Math.round(width * 0.5) + } + + UM.ToolTip + { + id: tooltip + + tooltipText: catalog.i18nc("@info:tooltip", "Manage packages") + visible: root.hovered + } + + UM.RecolorImage + { + id: icon + + width: UM.Theme.getSize("section_icon").width + height: UM.Theme.getSize("section_icon").height + + color: UM.Theme.getColor("icon") + source: UM.Theme.getIcon("Settings") + anchors.horizontalCenter: parent.horizontalCenter + anchors.horizontalCenterOffset: Math.round(UM.Theme.getSize("narrow_margin").width /2) + anchors.verticalCenter: parent.verticalCenter + } +} diff --git a/plugins/Marketplace/resources/qml/ManagedPackages.qml b/plugins/Marketplace/resources/qml/ManagedPackages.qml new file mode 100644 index 0000000000..9358a04f07 --- /dev/null +++ b/plugins/Marketplace/resources/qml/ManagedPackages.qml @@ -0,0 +1,26 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.15 + +import UM 1.4 as UM + +Packages +{ + pageTitle: catalog.i18nc("@header", "Manage packages") + + bannerVisible: UM.Preferences.getValue("cura/market_place_show_manage_packages_banner"); + bannerIcon: UM.Theme.getIcon("ArrowDoubleCircleRight") + bannerText: catalog.i18nc("@text", "Manage your Ultimaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly.") + bannerReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/4411125921426/?utm_source=cura&utm_medium=software&utm_campaign=marketplace-learn-manage" + onRemoveBanner: function() { + UM.Preferences.setValue("cura/market_place_show_manage_packages_banner", false); + bannerVisible = false; + } + searchInBrowserUrl: "https://marketplace.ultimaker.com/app/cura/plugins?utm_source=cura&utm_medium=software&utm_campaign=marketplace-search-plugins-browser" + showUpdateButton: true + showInstallButton: true + showDisableButton: true + model: manager.LocalPackageList +} diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml new file mode 100644 index 0000000000..8fcba852bd --- /dev/null +++ b/plugins/Marketplace/resources/qml/Marketplace.qml @@ -0,0 +1,283 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.15 +import QtQuick.Window 2.2 + +import UM 1.2 as UM +import Cura 1.6 as Cura + +Window +{ + id: marketplaceDialog + property variant catalog: UM.I18nCatalog { name: "cura" } + + signal searchStringChanged(string new_search) + + minimumWidth: UM.Theme.getSize("modal_window_minimum").width + minimumHeight: UM.Theme.getSize("modal_window_minimum").height + width: minimumWidth + height: minimumHeight + + onVisibleChanged: + { + while(contextStack.depth > 1) + { + contextStack.pop(); //Do NOT use the StackView.Immediate transition here, since it causes the window to stay empty. Seemingly a Qt bug: https://bugreports.qt.io/browse/QTBUG-60670? + } + } + + Connections + { + target: Cura.API.account + function onLoginStateChanged() + { + close(); + } + } + + title: "Marketplace" //Seen by Ultimaker as a brand name, so this doesn't get translated. + modality: Qt.NonModal + + // Background color + Rectangle + { + anchors.fill: parent + color: UM.Theme.getColor("main_background") + } + //The Marketplace can have a page in front of everything with package details. The stack view controls its visibility. + StackView + { + id: contextStack + anchors.fill: parent + + initialItem: packageBrowse + + ColumnLayout + { + id: packageBrowse + + spacing: UM.Theme.getSize("narrow_margin").height + + // Page title. + Item + { + Layout.preferredWidth: parent.width + Layout.preferredHeight: childrenRect.height + UM.Theme.getSize("default_margin").height + + Label + { + id: pageTitle + anchors + { + left: parent.left + leftMargin: UM.Theme.getSize("default_margin").width + right: parent.right + rightMargin: UM.Theme.getSize("default_margin").width + bottom: parent.bottom + } + + font: UM.Theme.getFont("large") + color: UM.Theme.getColor("text") + text: content.item ? content.item.pageTitle: catalog.i18nc("@title", "Loading...") + } + } + + OnboardBanner + { + visible: content.item && content.item.bannerVisible + text: content.item && content.item.bannerText + icon: content.item && content.item.bannerIcon + onRemove: content.item && content.item.onRemoveBanner + readMoreUrl: content.item && content.item.bannerReadMoreUrl + + Layout.fillWidth: true + Layout.leftMargin: UM.Theme.getSize("default_margin").width + Layout.rightMargin: UM.Theme.getSize("default_margin").width + } + + // Search & Top-Level Tabs + Item + { + implicitHeight: childrenRect.height + implicitWidth: parent.width - 2 * UM.Theme.getSize("default_margin").width + Layout.alignment: Qt.AlignHCenter + RowLayout + { + width: parent.width + height: UM.Theme.getSize("button_icon").height + UM.Theme.getSize("default_margin").height + spacing: UM.Theme.getSize("thin_margin").width + + Cura.SearchBar + { + id: searchBar + implicitHeight: UM.Theme.getSize("button_icon").height + Layout.fillWidth: true + onTextEdited: searchStringChanged(text) + } + + // Page selection. + TabBar + { + id: pageSelectionTabBar + Layout.alignment: Qt.AlignRight + height: UM.Theme.getSize("button_icon").height + spacing: 0 + background: Rectangle { color: "transparent" } + currentIndex: manager.tabShown + + onCurrentIndexChanged: + { + manager.tabShown = currentIndex + searchBar.text = ""; + searchBar.visible = currentItem.hasSearch; + content.source = currentItem.sourcePage; + } + + PackageTypeTab + { + id: pluginTabText + width: implicitWidth + text: catalog.i18nc("@button", "Plugins") + property string sourcePage: "Plugins.qml" + property bool hasSearch: true + } + PackageTypeTab + { + id: materialsTabText + width: implicitWidth + text: catalog.i18nc("@button", "Materials") + property string sourcePage: "Materials.qml" + property bool hasSearch: true + } + ManagePackagesButton + { + property string sourcePage: "ManagedPackages.qml" + property bool hasSearch: false + + Cura.NotificationIcon + { + anchors + { + horizontalCenter: parent.right + verticalCenter: parent.top + } + visible: CuraApplication.getPackageManager().packagesWithUpdate.length > 0 + + labelText: + { + const itemCount = CuraApplication.getPackageManager().packagesWithUpdate.length + return itemCount > 9 ? "9+" : itemCount + } + } + } + } + } + } + + FontMetrics + { + id: fontMetrics + font: UM.Theme.getFont("default") + } + + Cura.TertiaryButton + { + text: catalog.i18nc("@info", "Search in the browser") + iconSource: UM.Theme.getIcon("LinkExternal") + visible: pageSelectionTabBar.currentItem.hasSearch + isIconOnRightSide: true + height: fontMetrics.height + textFont: fontMetrics.font + textColor: UM.Theme.getColor("text") + + onClicked: content.item && Qt.openUrlExternally(content.item.searchInBrowserUrl) + } + + // Page contents. + Rectangle + { + Layout.preferredWidth: parent.width + Layout.fillHeight: true + color: UM.Theme.getColor("detail_background") + + // Page contents. + Loader + { + id: content + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + source: "Plugins.qml" + + Connections + { + target: content + function onLoaded() + { + pageTitle.text = content.item.pageTitle + searchStringChanged.connect(handleSearchStringChanged) + } + function handleSearchStringChanged(new_search) + { + content.item.model.searchString = new_search + } + } + } + } + } + } + + Rectangle + { + height: quitButton.height + 2 * UM.Theme.getSize("default_margin").width + color: UM.Theme.getColor("primary") + visible: manager.showRestartNotification + anchors + { + left: parent.left + right: parent.right + bottom: parent.bottom + } + + RowLayout + { + anchors + { + left: parent.left + right: parent.right + verticalCenter: parent.verticalCenter + margins: UM.Theme.getSize("default_margin").width + } + spacing: UM.Theme.getSize("default_margin").width + UM.RecolorImage + { + id: bannerIcon + source: UM.Theme.getIcon("Plugin") + + color: UM.Theme.getColor("primary_button_text") + implicitWidth: UM.Theme.getSize("banner_icon_size").width + implicitHeight: UM.Theme.getSize("banner_icon_size").height + } + Text + { + color: UM.Theme.getColor("primary_button_text") + text: catalog.i18nc("@button", "In order to use the package you will need to restart Cura") + font: UM.Theme.getFont("default") + renderType: Text.NativeRendering + Layout.fillWidth: true + } + Cura.SecondaryButton + { + id: quitButton + text: catalog.i18nc("@info:button, %1 is the application name", "Quit %1").arg(CuraApplication.applicationDisplayName) + onClicked: + { + marketplaceDialog.hide(); + CuraApplication.closeApplication(); + } + } + } + } +} diff --git a/plugins/Marketplace/resources/qml/Materials.qml b/plugins/Marketplace/resources/qml/Materials.qml new file mode 100644 index 0000000000..c10a937d67 --- /dev/null +++ b/plugins/Marketplace/resources/qml/Materials.qml @@ -0,0 +1,23 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import UM 1.4 as UM + +Packages +{ + pageTitle: catalog.i18nc("@header", "Install Materials") + + bannerVisible: UM.Preferences.getValue("cura/market_place_show_material_banner") + bannerIcon: UM.Theme.getIcon("Spool") + bannerText: catalog.i18nc("@text", "Select and install material profiles optimised for your Ultimaker 3D printers.") + bannerReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/360011968360/?utm_source=cura&utm_medium=software&utm_campaign=marketplace-learn-materials" + onRemoveBanner: function() { + UM.Preferences.setValue("cura/market_place_show_material_banner", false); + bannerVisible = false; + } + searchInBrowserUrl: "https://marketplace.ultimaker.com/app/cura/materials?utm_source=cura&utm_medium=software&utm_campaign=marketplace-search-materials-browser" + showUpdateButton: true + showInstallButton: true + + model: manager.MaterialPackageList +} diff --git a/plugins/Marketplace/resources/qml/OnboardBanner.qml b/plugins/Marketplace/resources/qml/OnboardBanner.qml new file mode 100644 index 0000000000..7d973cb74a --- /dev/null +++ b/plugins/Marketplace/resources/qml/OnboardBanner.qml @@ -0,0 +1,116 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.1 + +import UM 1.6 as UM +import Cura 1.6 as Cura + +// Onboarding banner. +Rectangle +{ + property alias icon: onboardingIcon.source + property alias text: infoText.text + property var onRemove + property string readMoreUrl + + implicitHeight: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height + color: UM.Theme.getColor("action_panel_secondary") + + // Icon + UM.RecolorImage + { + id: onboardingIcon + anchors + { + top: parent.top + left: parent.left + margins: UM.Theme.getSize("default_margin").width + } + width: UM.Theme.getSize("banner_icon_size").width + height: UM.Theme.getSize("banner_icon_size").height + } + + // Close button + UM.SimpleButton + { + id: onboardingClose + anchors + { + top: parent.top + right: parent.right + margins: UM.Theme.getSize("default_margin").width + } + width: UM.Theme.getSize("message_close").width + height: UM.Theme.getSize("message_close").height + color: UM.Theme.getColor("primary_text") + hoverColor: UM.Theme.getColor("primary_text_hover") + iconSource: UM.Theme.getIcon("Cancel") + + onClicked: onRemove() + } + + // Body + Label { + id: infoText + anchors + { + top: parent.top + left: onboardingIcon.right + right: onboardingClose.left + margins: UM.Theme.getSize("default_margin").width + } + + font: UM.Theme.getFont("default") + + renderType: Text.NativeRendering + color: UM.Theme.getColor("primary_text") + wrapMode: Text.Wrap + elide: Text.ElideRight + + onLineLaidOut: + { + if(line.isLast) + { + // Check if read more button still fits after the body text + if (line.implicitWidth + readMoreButton.width + UM.Theme.getSize("default_margin").width > width) + { + // If it does place it after the body text + readMoreButton.anchors.bottomMargin = -(fontMetrics.height); + readMoreButton.anchors.leftMargin = UM.Theme.getSize("thin_margin").width; + } + else + { + // Otherwise place it under the text + readMoreButton.anchors.leftMargin = line.implicitWidth + UM.Theme.getSize("default_margin").width; + readMoreButton.anchors.bottomMargin = 0; + } + } + } + } + + FontMetrics + { + id: fontMetrics + font: UM.Theme.getFont("default") + } + + Cura.TertiaryButton + { + id: readMoreButton + anchors.left: infoText.left + anchors.bottom: infoText.bottom + text: "Learn More" + textFont: UM.Theme.getFont("default") + textColor: infoText.color + leftPadding: 0 + rightPadding: 0 + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + height: fontMetrics.height + + onClicked: Qt.openUrlExternally(readMoreUrl) + } +} \ No newline at end of file diff --git a/plugins/Marketplace/resources/qml/PackageCard.qml b/plugins/Marketplace/resources/qml/PackageCard.qml new file mode 100644 index 0000000000..7442c63aa6 --- /dev/null +++ b/plugins/Marketplace/resources/qml/PackageCard.qml @@ -0,0 +1,53 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.1 + +import UM 1.6 as UM +import Cura 1.6 as Cura + +Rectangle +{ + property alias packageData: packageCardHeader.packageData + property alias showUpdateButton: packageCardHeader.showUpdateButton + property alias showDisableButton: packageCardHeader.showDisableButton + property alias showInstallButton: packageCardHeader.showInstallButton + + height: childrenRect.height + color: UM.Theme.getColor("main_background") + radius: UM.Theme.getSize("default_radius").width + + PackageCardHeader + { + id: packageCardHeader + + Item + { + id: shortDescription + + anchors.fill: parent + + Label + { + id: descriptionLabel + width: parent.width + + text: packageData.description + font: UM.Theme.getFont("default") + color: UM.Theme.getColor("text") + maximumLineCount: 2 + wrapMode: Text.Wrap + elide: Text.ElideRight + visible: text !== "" + } + } + } + + FontMetrics + { + id: fontMetrics + font: UM.Theme.getFont("default") + } +} diff --git a/plugins/Marketplace/resources/qml/PackageCardHeader.qml b/plugins/Marketplace/resources/qml/PackageCardHeader.qml new file mode 100644 index 0000000000..1c39d4b063 --- /dev/null +++ b/plugins/Marketplace/resources/qml/PackageCardHeader.qml @@ -0,0 +1,248 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.1 + +import UM 1.6 as UM +import Cura 1.6 as Cura + +// As both the PackageCard and Package contain similar components; a package icon, title, author bar. These components +// are combined into the reusable "PackageCardHeader" component +Item +{ + default property alias contents: contentItem.children + + property var packageData + property bool showDisableButton: false + property bool showInstallButton: false + property bool showUpdateButton: false + + + width: parent.width + height: UM.Theme.getSize("card").height + + // card icon + Item + { + id: packageItem + anchors + { + top: parent.top + left: parent.left + margins: UM.Theme.getSize("default_margin").width + } + width: UM.Theme.getSize("card_icon").width + height: width + + property bool packageHasIcon: packageData.iconUrl != "" + + Image + { + visible: parent.packageHasIcon + anchors.fill: parent + source: packageData.iconUrl + sourceSize.height: height + sourceSize.width: width + } + + UM.RecolorImage + { + visible: !parent.packageHasIcon + anchors.fill: parent + sourceSize.height: height + sourceSize.width: width + color: UM.Theme.getColor("text") + source: + { + switch (packageData.packageType) + { + case "plugin": + return "../images/Plugin.svg"; + case "material": + return "../images/Spool.svg"; + default: + return "../images/placeholder.svg"; + } + } + } + } + + ColumnLayout + { + anchors + { + left: packageItem.right + leftMargin: UM.Theme.getSize("default_margin").width + right: parent.right + rightMargin: UM.Theme.getSize("default_margin").width + top: parent.top + topMargin: UM.Theme.getSize("narrow_margin").height + } + height: packageItem.height + packageItem.anchors.margins * 2 + + // Title row. + RowLayout + { + id: titleBar + Layout.preferredWidth: parent.width + Layout.preferredHeight: childrenRect.height + + Label + { + text: packageData.displayName + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("text") + verticalAlignment: Text.AlignTop + } + VerifiedIcon + { + enabled: packageData.isCheckedByUltimaker + visible: packageData.isCheckedByUltimaker + } + + Label + { + id: packageVersionLabel + text: packageData.packageVersion + font: UM.Theme.getFont("default") + color: UM.Theme.getColor("text") + Layout.fillWidth: true + } + + Button + { + id: externalLinkButton + + // For some reason if i set padding, they don't match up. If i set all of them explicitly, it does work? + leftPadding: UM.Theme.getSize("narrow_margin").width + rightPadding: UM.Theme.getSize("narrow_margin").width + topPadding: UM.Theme.getSize("narrow_margin").width + bottomPadding: UM.Theme.getSize("narrow_margin").width + + Layout.preferredWidth: UM.Theme.getSize("card_tiny_icon").width + 2 * padding + Layout.preferredHeight: UM.Theme.getSize("card_tiny_icon").width + 2 * padding + contentItem: UM.RecolorImage + { + source: UM.Theme.getIcon("LinkExternal") + color: UM.Theme.getColor("icon") + implicitWidth: UM.Theme.getSize("card_tiny_icon").width + implicitHeight: UM.Theme.getSize("card_tiny_icon").height + } + + background: Rectangle + { + color: externalLinkButton.hovered ? UM.Theme.getColor("action_button_hovered"): "transparent" + radius: externalLinkButton.width / 2 + } + onClicked: Qt.openUrlExternally(packageData.marketplaceURL) + } + } + + // When a package Card companent is created and children are provided to it they are rendered here + Item { + id: contentItem + Layout.fillHeight: true + Layout.preferredWidth: parent.width + } + + // Author and action buttons. + RowLayout + { + id: authorAndActionButton + Layout.preferredWidth: parent.width + Layout.preferredHeight: childrenRect.height + + spacing: UM.Theme.getSize("narrow_margin").width + + // label "By" + Label + { + id: authorBy + Layout.alignment: Qt.AlignCenter + + text: catalog.i18nc("@label", "By") + font: UM.Theme.getFont("default") + color: UM.Theme.getColor("text") + } + + // clickable author name + Item + { + Layout.fillWidth: true + implicitHeight: authorBy.height + Layout.alignment: Qt.AlignTop + Cura.TertiaryButton + { + text: packageData.authorName + textFont: UM.Theme.getFont("default_bold") + textColor: UM.Theme.getColor("text") // override normal link color + leftPadding: 0 + rightPadding: 0 + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + + onClicked: Qt.openUrlExternally(packageData.authorInfoUrl) + } + } + + ManageButton + { + id: enableManageButton + visible: showDisableButton && packageData.isInstalled && !packageData.isToBeInstalled && packageData.packageType != "material" + enabled: !packageData.busy + + button_style: !packageData.isActive + Layout.alignment: Qt.AlignTop + + text: button_style ? catalog.i18nc("@button", "Enable") : catalog.i18nc("@button", "Disable") + + onClicked: packageData.isActive ? packageData.disable(): packageData.enable() + } + + ManageButton + { + id: installManageButton + visible: showInstallButton && (packageData.canDowngrade || !packageData.isBundled) + enabled: !packageData.busy + busy: packageData.busy + button_style: !(packageData.isInstalled || packageData.isToBeInstalled) + Layout.alignment: Qt.AlignTop + + text: + { + if (packageData.canDowngrade) + { + if (busy) { return catalog.i18nc("@button", "Downgrading..."); } + else { return catalog.i18nc("@button", "Downgrade"); } + } + if (!(packageData.isInstalled || packageData.isToBeInstalled)) + { + if (busy) { return catalog.i18nc("@button", "Installing..."); } + else { return catalog.i18nc("@button", "Install"); } + } + else + { + return catalog.i18nc("@button", "Uninstall"); + } + } + + onClicked: packageData.isInstalled || packageData.isToBeInstalled ? packageData.uninstall(): packageData.install() + } + + ManageButton + { + id: updateManageButton + visible: showUpdateButton && packageData.canUpdate + enabled: !packageData.busy + busy: packageData.busy + Layout.alignment: Qt.AlignTop + + text: busy ? catalog.i18nc("@button", "Updating..."): catalog.i18nc("@button", "Update") + + onClicked: packageData.update() + } + } + } +} diff --git a/plugins/Marketplace/resources/qml/PackageDetails.qml b/plugins/Marketplace/resources/qml/PackageDetails.qml new file mode 100644 index 0000000000..6e5ec0fbf5 --- /dev/null +++ b/plugins/Marketplace/resources/qml/PackageDetails.qml @@ -0,0 +1,96 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.3 + +import Cura 1.0 as Cura +import UM 1.5 as UM + +Item +{ + id: detailPage + property var packageData: packages.selectedPackage + property string title: catalog.i18nc("@header", "Package details") + + RowLayout + { + id: header + anchors + { + top: parent.top + topMargin: UM.Theme.getSize("default_margin").height + left: parent.left + leftMargin: UM.Theme.getSize("default_margin").width + right: parent.right + rightMargin: anchors.leftMargin + } + + spacing: UM.Theme.getSize("default_margin").width + + Cura.SecondaryButton + { + Layout.alignment: Qt.AlignVCenter + Layout.preferredHeight: UM.Theme.getSize("action_button").height + Layout.preferredWidth: height + + onClicked: contextStack.pop() //Remove this page, returning to the main package list or whichever thing is beneath it. + + tooltip: catalog.i18nc("@button:tooltip", "Back") + toolTipContentAlignment: UM.Enums.ContentAlignment.AlignRight + leftPadding: UM.Theme.getSize("narrow_margin").width + rightPadding: leftPadding + iconSource: UM.Theme.getIcon("ArrowLeft") + iconSize: height - leftPadding * 2 + } + + Label + { + Layout.alignment: Qt.AlignVCenter + Layout.fillWidth: true + + text: detailPage.title + font: UM.Theme.getFont("large") + color: UM.Theme.getColor("text") + } + } + + Rectangle + { + anchors + { + top: header.bottom + topMargin: UM.Theme.getSize("default_margin").height + left: parent.left + right: parent.right + bottom: parent.bottom + } + color: UM.Theme.getColor("detail_background") + + ScrollView + { + anchors.fill: parent + + clip: true //Need to clip, not for the bottom (which is off the window) but for the top (which would overlap the header). + ScrollBar.horizontal.policy: ScrollBar.AlwaysOff + contentHeight: packagePage.height + UM.Theme.getSize("default_margin").height * 2 + + PackagePage + { + id: packagePage + anchors + { + left: parent.left + leftMargin: UM.Theme.getSize("default_margin").width + right: parent.right + rightMargin: anchors.leftMargin + top: parent.top + topMargin: UM.Theme.getSize("default_margin").height + } + + packageData: detailPage.packageData + } + } + } +} \ No newline at end of file diff --git a/plugins/Marketplace/resources/qml/PackagePage.qml b/plugins/Marketplace/resources/qml/PackagePage.qml new file mode 100644 index 0000000000..e590ee6091 --- /dev/null +++ b/plugins/Marketplace/resources/qml/PackagePage.qml @@ -0,0 +1,301 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.1 + +import UM 1.6 as UM +import Cura 1.6 as Cura + +Rectangle +{ + id: root + property alias packageData: packageCardHeader.packageData + + height: childrenRect.height + color: UM.Theme.getColor("main_background") + radius: UM.Theme.getSize("default_radius").width + + Column + { + width: parent.width + + spacing: 0 + + Item + { + width: parent.width + height: UM.Theme.getSize("card").height + + PackageCardHeader + { + id: packageCardHeader + showUpdateButton: true + showInstallButton: true + showDisableButton: true + + anchors.fill: parent + + Row + { + id: downloadCount + Layout.preferredWidth: parent.width + Layout.fillHeight: true + // It's not the perfect way to handle this, since a package really can have 0 downloads + // But we re-use the package page for the manage plugins as well. The one user that doesn't see + // the num downloads is an acceptable "sacrifice" to make this easy to fix. + visible: packageData.downloadCount != "0" + UM.RecolorImage + { + id: downloadsIcon + width: UM.Theme.getSize("card_tiny_icon").width + height: UM.Theme.getSize("card_tiny_icon").height + + source: UM.Theme.getIcon("Download") + color: UM.Theme.getColor("text") + } + + Label + { + + anchors.verticalCenter: downloadsIcon.verticalCenter + + color: UM.Theme.getColor("text") + font: UM.Theme.getFont("default") + text: packageData.downloadCount + } + } + } + } + + Column + { + id: extendedDescription + width: parent.width + + padding: UM.Theme.getSize("default_margin").width + topPadding: 0 + spacing: UM.Theme.getSize("default_margin").height + + Label + { + width: parent.width - parent.padding * 2 + + text: catalog.i18nc("@header", "Description") + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + + Label + { + width: parent.width - parent.padding * 2 + + text: packageData.formattedDescription + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + linkColor: UM.Theme.getColor("text_link") + wrapMode: Text.Wrap + textFormat: Text.RichText + + onLinkActivated: UM.UrlUtil.openUrl(link, ["http", "https"]) + } + + Column //Separate column to have no spacing between compatible printers. + { + id: compatiblePrinterColumn + width: parent.width - parent.padding * 2 + + visible: packageData.packageType === "material" + spacing: 0 + + Label + { + width: parent.width + + text: catalog.i18nc("@header", "Compatible printers") + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + + Repeater + { + model: packageData.compatiblePrinters + + Label + { + width: compatiblePrinterColumn.width + + text: modelData + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + } + + Label + { + width: parent.width + + visible: packageData.compatiblePrinters.length == 0 + text: "(" + catalog.i18nc("@info", "No compatibility information") + ")" + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + } + + Column + { + id: compatibleSupportMaterialColumn + width: parent.width - parent.padding * 2 + + visible: packageData.packageType === "material" + spacing: 0 + + Label + { + width: parent.width + + text: catalog.i18nc("@header", "Compatible support materials") + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + + Repeater + { + model: packageData.compatibleSupportMaterials + + Label + { + width: compatibleSupportMaterialColumn.width + + text: modelData + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + } + + Label + { + width: parent.width + + visible: packageData.compatibleSupportMaterials.length == 0 + text: "(" + catalog.i18nc("@info No materials", "None") + ")" + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + } + + Column + { + width: parent.width - parent.padding * 2 + + visible: packageData.packageType === "material" + spacing: 0 + + Label + { + width: parent.width + + text: catalog.i18nc("@header", "Compatible with Material Station") + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + + Label + { + width: parent.width + + text: packageData.isCompatibleMaterialStation ? catalog.i18nc("@info", "Yes") : catalog.i18nc("@info", "No") + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + } + + Column + { + width: parent.width - parent.padding * 2 + + visible: packageData.packageType === "material" + spacing: 0 + + Label + { + width: parent.width + + text: catalog.i18nc("@header", "Optimized for Air Manager") + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + + Label + { + width: parent.width + + text: packageData.isCompatibleAirManager ? catalog.i18nc("@info", "Yes") : catalog.i18nc("@info", "No") + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + } + + Row + { + id: externalButtonRow + anchors.horizontalCenter: parent.horizontalCenter + + spacing: UM.Theme.getSize("narrow_margin").width + + Cura.SecondaryButton + { + text: packageData.packageType === "plugin" ? catalog.i18nc("@button", "Visit plug-in website") : catalog.i18nc("@button", "Website") + iconSource: UM.Theme.getIcon("Globe") + outlineColor: "transparent" + onClicked: Qt.openUrlExternally(packageData.packageInfoUrl) + } + + Cura.SecondaryButton + { + visible: packageData.packageType === "material" + text: catalog.i18nc("@button", "Buy spool") + iconSource: UM.Theme.getIcon("ShoppingCart") + outlineColor: "transparent" + onClicked: Qt.openUrlExternally(packageData.whereToBuy) + } + + Cura.SecondaryButton + { + visible: packageData.packageType === "material" + text: catalog.i18nc("@button", "Safety datasheet") + iconSource: UM.Theme.getIcon("Warning") + outlineColor: "transparent" + onClicked: Qt.openUrlExternally(packageData.safetyDataSheet) + } + + Cura.SecondaryButton + { + visible: packageData.packageType === "material" + text: catalog.i18nc("@button", "Technical datasheet") + iconSource: UM.Theme.getIcon("DocumentFilled") + outlineColor: "transparent" + onClicked: Qt.openUrlExternally(packageData.technicalDataSheet) + } + } + } + } + + FontMetrics + { + id: fontMetrics + font: UM.Theme.getFont("default") + } +} diff --git a/plugins/Marketplace/resources/qml/PackageTypeTab.qml b/plugins/Marketplace/resources/qml/PackageTypeTab.qml new file mode 100644 index 0000000000..79eaa9a16c --- /dev/null +++ b/plugins/Marketplace/resources/qml/PackageTypeTab.qml @@ -0,0 +1,33 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import UM 1.0 as UM + +TabButton +{ + property string pageTitle + padding: UM.Theme.getSize("narrow_margin").width + horizontalPadding: UM.Theme.getSize("default_margin").width + hoverEnabled: true + property color inactiveBackgroundColor : hovered ? UM.Theme.getColor("action_button_hovered") : UM.Theme.getColor("detail_background") + property color activeBackgroundColor : UM.Theme.getColor("main_background") + + background: Rectangle + { + anchors.fill: parent + color: parent.checked ? activeBackgroundColor : inactiveBackgroundColor + border.color: UM.Theme.getColor("detail_background") + border.width: UM.Theme.getSize("thick_lining").width + } + + contentItem: Label + { + text: parent.text + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("text") + width: contentWidth + anchors.centerIn: parent + } +} \ No newline at end of file diff --git a/plugins/Marketplace/resources/qml/Packages.qml b/plugins/Marketplace/resources/qml/Packages.qml new file mode 100644 index 0000000000..56fffe036e --- /dev/null +++ b/plugins/Marketplace/resources/qml/Packages.qml @@ -0,0 +1,246 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import UM 1.4 as UM + + +ListView +{ + id: packages + width: parent.width + + property string pageTitle + property var selectedPackage + property string searchInBrowserUrl + property bool bannerVisible + property var bannerIcon + property string bannerText + property string bannerReadMoreUrl + property var onRemoveBanner + + property bool showUpdateButton + property bool showDisableButton + property bool showInstallButton + + clip: true + + Component.onCompleted: model.updatePackages() + Component.onDestruction: model.cleanUpAPIRequest() + + spacing: UM.Theme.getSize("default_margin").height + + section.property: "package.sectionTitle" + section.delegate: Rectangle + { + width: packages.width + height: sectionHeaderText.height + UM.Theme.getSize("default_margin").height + + color: UM.Theme.getColor("detail_background") + + Label + { + id: sectionHeaderText + anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + + text: section + font: UM.Theme.getFont("large") + color: UM.Theme.getColor("text") + } + } + + ScrollBar.vertical: ScrollBar + { + // Vertical ScrollBar, styled similarly to the scrollBar in the settings panel + id: verticalScrollBar + visible: packages.contentHeight > packages.height + anchors.right: parent.right + background: Item {} + + contentItem: Rectangle + { + id: scrollViewHandle + implicitWidth: UM.Theme.getSize("scrollbar").width + radius: Math.round(implicitWidth / 2) + color: verticalScrollBar.pressed ? UM.Theme.getColor("scrollbar_handle_down") : verticalScrollBar.hovered ? UM.Theme.getColor("scrollbar_handle_hover") : UM.Theme.getColor("scrollbar_handle") + Behavior on color { ColorAnimation { duration: 50; } } + } + } + + delegate: MouseArea + { + id: cardMouseArea + width: parent ? parent.width : 0 + height: childrenRect.height + + hoverEnabled: true + onClicked: + { + packages.selectedPackage = model.package; + contextStack.push(packageDetailsComponent); + } + + PackageCard + { + showUpdateButton: packages.showUpdateButton + showDisableButton: packages.showDisableButton + showInstallButton: packages.showInstallButton + packageData: model.package + width: { + if (verticalScrollBar.visible) + { + return parent.width - UM.Theme.getSize("default_margin").width - UM.Theme.getSize("default_margin").width + } + else + { + return parent.width - UM.Theme.getSize("default_margin").width + } + } + color: cardMouseArea.containsMouse ? UM.Theme.getColor("action_button_hovered") : UM.Theme.getColor("main_background") + } + } + + Component + { + id: packageDetailsComponent + + PackageDetails + { + packageData: packages.selectedPackage + title: packages.pageTitle + } + } + + //Wrapper item to add spacing between content and footer. + footer: Item + { + width: parent.width - UM.Theme.getSize("default_margin").width - UM.Theme.getSize("narrow_margin").width + height: model.hasFooter || packages.model.errorMessage != "" ? UM.Theme.getSize("card").height + packages.spacing : 0 + visible: model.hasFooter || packages.model.errorMessage != "" + Button + { + id: loadMoreButton + width: parent.width + height: UM.Theme.getSize("card").height + anchors.bottom: parent.bottom + + enabled: packages.model.hasMore && !packages.model.isLoading || packages.model.errorMessage != "" + onClicked: packages.model.updatePackages() //Load next page in plug-in list. + + background: Rectangle + { + anchors.fill: parent + radius: UM.Theme.getSize("default_radius").width + color: UM.Theme.getColor("main_background") + } + + Row + { + anchors.centerIn: parent + + spacing: UM.Theme.getSize("thin_margin").width + + states: + [ + State + { + name: "Error" + when: packages.model.errorMessage != "" + PropertyChanges + { + target: errorIcon + visible: true + } + PropertyChanges + { + target: loadMoreIcon + visible: false + } + PropertyChanges + { + target: loadMoreLabel + text: catalog.i18nc("@button", "Failed to load packages:") + " " + packages.model.errorMessage + "\n" + catalog.i18nc("@button", "Retry?") + } + }, + State + { + name: "Loading" + when: packages.model.isLoading + PropertyChanges + { + target: loadMoreIcon + source: UM.Theme.getIcon("ArrowDoubleCircleRight") + color: UM.Theme.getColor("action_button_disabled_text") + } + PropertyChanges + { + target: loadMoreLabel + text: catalog.i18nc("@button", "Loading") + color: UM.Theme.getColor("action_button_disabled_text") + } + }, + State + { + name: "LastPage" + when: !packages.model.hasMore + PropertyChanges + { + target: loadMoreIcon + visible: false + } + PropertyChanges + { + target: loadMoreLabel + text: packages.model.count > 0 ? catalog.i18nc("@message", "No more results to load") : catalog.i18nc("@message", "No results found with current filter") + color: UM.Theme.getColor("action_button_disabled_text") + } + } + ] + + Item + { + width: (errorIcon.visible || loadMoreIcon.visible) ? UM.Theme.getSize("small_button_icon").width : 0 + height: UM.Theme.getSize("small_button_icon").height + anchors.verticalCenter: loadMoreLabel.verticalCenter + + UM.StatusIcon + { + id: errorIcon + anchors.fill: parent + + status: UM.StatusIcon.Status.ERROR + visible: false + } + UM.RecolorImage + { + id: loadMoreIcon + anchors.fill: parent + + source: UM.Theme.getIcon("ArrowDown") + color: UM.Theme.getColor("secondary_button_text") + + RotationAnimator + { + target: loadMoreIcon + from: 0 + to: 360 + duration: 1000 + loops: Animation.Infinite + running: packages.model.isLoading + alwaysRunToEnd: true + } + } + } + Label + { + id: loadMoreLabel + text: catalog.i18nc("@button", "Load more") + font: UM.Theme.getFont("medium_bold") + color: UM.Theme.getColor("secondary_button_text") + } + } + } + } +} diff --git a/plugins/Marketplace/resources/qml/Plugins.qml b/plugins/Marketplace/resources/qml/Plugins.qml new file mode 100644 index 0000000000..739e0c01a7 --- /dev/null +++ b/plugins/Marketplace/resources/qml/Plugins.qml @@ -0,0 +1,23 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import UM 1.4 as UM + +Packages +{ + pageTitle: catalog.i18nc("@header", "Install Plugins") + + bannerVisible: UM.Preferences.getValue("cura/market_place_show_plugin_banner") + bannerIcon: UM.Theme.getIcon("Shop") + bannerText: catalog.i18nc("@text", "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users.") + bannerReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/360011968360/?utm_source=cura&utm_medium=software&utm_campaign=marketplace-learn-plugins" + onRemoveBanner: function() { + UM.Preferences.setValue("cura/market_place_show_plugin_banner", false) + bannerVisible = false; + } + searchInBrowserUrl: "https://marketplace.ultimaker.com/app/cura/plugins?utm_source=cura&utm_medium=software&utm_campaign=marketplace-search-plugins-browser" + showUpdateButton: true + showInstallButton: true + + model: manager.PluginPackageList +} diff --git a/plugins/Marketplace/resources/qml/VerifiedIcon.qml b/plugins/Marketplace/resources/qml/VerifiedIcon.qml new file mode 100644 index 0000000000..6b9d7b6017 --- /dev/null +++ b/plugins/Marketplace/resources/qml/VerifiedIcon.qml @@ -0,0 +1,45 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.1 + +import UM 1.6 as UM +import Cura 1.6 as Cura +Control +{ + implicitWidth: UM.Theme.getSize("card_tiny_icon").width + implicitHeight: UM.Theme.getSize("card_tiny_icon").height + + UM.ToolTip + { + tooltipText: + { + switch(packageData.packageType) + { + case "plugin": return catalog.i18nc("@info", "Ultimaker Verified Plug-in"); + case "material": return catalog.i18nc("@info", "Ultimaker Certified Material"); + default: return catalog.i18nc("@info", "Ultimaker Verified Package"); + } + } + visible: parent.hovered + targetPoint: Qt.point(0, Math.round(parent.y + parent.height / 4)) + } + + Rectangle + { + anchors.fill: parent + color: UM.Theme.getColor("action_button_hovered") + radius: width + UM.RecolorImage + { + anchors.fill: parent + color: UM.Theme.getColor("primary") + source: packageData.packageType == "plugin" ? UM.Theme.getIcon("CheckCircle") : UM.Theme.getIcon("Certified") + } + } + + //NOTE: Can we link to something here? (Probably a static link explaining what verified is): + // onClicked: Qt.openUrlExternally( XXXXXX ) +} \ No newline at end of file diff --git a/plugins/ModelChecker/ModelChecker.qml b/plugins/ModelChecker/ModelChecker.qml index ddeed063b1..41c49c9a25 100644 --- a/plugins/ModelChecker/ModelChecker.qml +++ b/plugins/ModelChecker/ModelChecker.qml @@ -2,43 +2,20 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 - import UM 1.2 as UM -Button +UM.SimpleButton { id: modelCheckerButton - UM.I18nCatalog - { - id: catalog - name: "cura" - } - visible: manager.hasWarnings - tooltip: catalog.i18nc("@info:tooltip", "Some things could be problematic in this print. Click to see tips for adjustment.") onClicked: manager.showWarnings() width: UM.Theme.getSize("save_button_specs_icons").width height: UM.Theme.getSize("save_button_specs_icons").height - + iconSource: "model_checker.svg" anchors.verticalCenter: parent ? parent.verticalCenter : undefined - - style: ButtonStyle - { - background: Item - { - UM.RecolorImage - { - width: UM.Theme.getSize("save_button_specs_icons").width; - height: UM.Theme.getSize("save_button_specs_icons").height; - sourceSize.height: width; - color: control.hovered ? UM.Theme.getColor("text_scene_hover") : UM.Theme.getColor("text_scene"); - source: "model_checker.svg" - } - } - } + color: UM.Theme.getColor("text_scene") + hoverColor: UM.Theme.getColor("text_scene_hover") } diff --git a/plugins/MonitorStage/MonitorMain.qml b/plugins/MonitorStage/MonitorMain.qml index cb16b91cb8..aa717ce95c 100644 --- a/plugins/MonitorStage/MonitorMain.qml +++ b/plugins/MonitorStage/MonitorMain.qml @@ -3,7 +3,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.0 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura // We show a nice overlay on the 3D viewer when the current output device has no monitor view @@ -90,7 +90,7 @@ Rectangle visible: monitorViewComponent.sourceComponent == null // CASE 2: CAN MONITOR & NOT CONNECTED - Label + UM.Label { anchors { @@ -99,14 +99,10 @@ Rectangle visible: isNetworkConfigured && !isConnected text: catalog.i18nc("@info", "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers.") font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - wrapMode: Text.WordWrap - lineHeight: UM.Theme.getSize("monitor_text_line_large").height - lineHeightMode: Text.FixedHeight width: contentWidth } - Label + UM.Label { id: noNetworkLabel anchors @@ -116,11 +112,7 @@ Rectangle visible: !isNetworkConfigured && isNetworkConfigurable text: catalog.i18nc("@info", "Please connect your printer to the network.") font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - wrapMode: Text.WordWrap width: contentWidth - lineHeight: UM.Theme.getSize("monitor_text_line_large").height - lineHeightMode: Text.FixedHeight } Item { @@ -129,7 +121,6 @@ Rectangle left: noNetworkLabel.left } visible: !isNetworkConfigured && isNetworkConfigurable - height: UM.Theme.getSize("monitor_text_line").height width: childrenRect.width UM.RecolorImage @@ -138,8 +129,8 @@ Rectangle anchors.verticalCenter: parent.verticalCenter color: UM.Theme.getColor("text_link") source: UM.Theme.getIcon("LinkExternal") - width: UM.Theme.getSize("monitor_external_link_icon").width - height: UM.Theme.getSize("monitor_external_link_icon").height + width: UM.Theme.getSize("icon_indicator").width + height: UM.Theme.getSize("icon_indicator").height } Label { @@ -159,7 +150,7 @@ Rectangle { anchors.fill: parent hoverEnabled: true - onClicked: Qt.openUrlExternally("https://ultimaker.com/en/resources/manuals/ultimaker-3d-printers") + onClicked: Qt.openUrlExternally("https://ultimaker.com/in/cura/troubleshooting/network?utm_source=cura&utm_medium=software&utm_campaign=monitor-not-connected") onEntered: manageQueueText.font.underline = true onExited: manageQueueText.font.underline = false } diff --git a/plugins/PerObjectSettingsTool/PerObjectCategory.qml b/plugins/PerObjectSettingsTool/PerObjectCategory.qml index 58192f0acd..3d0b1d826e 100644 --- a/plugins/PerObjectSettingsTool/PerObjectCategory.qml +++ b/plugins/PerObjectSettingsTool/PerObjectCategory.qml @@ -1,59 +1,62 @@ -// Copyright (c) 2015 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Uranium is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 -import QtQuick.Layouts 1.1 - -import UM 1.1 as UM +import QtQuick.Controls 2.1 +import UM 1.5 as UM +import Cura 1.0 as Cura import ".." Button { id: base; - style: ButtonStyle { - background: Item { } - label: Row + background: Rectangle { + color: UM.Theme.getColor("category_background") + } + + contentItem: Row + { + spacing: UM.Theme.getSize("default_lining").width + + Item //Wrapper to give space before icon with fixed width. This allows aligning checkbox with category icon. { - spacing: UM.Theme.getSize("default_lining").width + height: label.height + width: height + anchors.verticalCenter: parent.verticalCenter UM.RecolorImage { anchors.verticalCenter: parent.verticalCenter height: (label.height / 2) | 0 width: height - source: control.checked ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight"); - color: control.hovered ? palette.highlight : palette.buttonText + source: base.checked ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight") + color: base.hovered ? UM.Theme.getColor("primary_button_hover"): UM.Theme.getColor("text") } - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - height: label.height - width: height - source: control.iconSource - color: control.hovered ? palette.highlight : palette.buttonText - } - Label - { - id: label - anchors.verticalCenter: parent.verticalCenter - text: control.text - color: control.hovered ? palette.highlight : palette.buttonText - font.bold: true - } - - SystemPalette { id: palette } + } + UM.RecolorImage + { + anchors.verticalCenter: parent.verticalCenter + height: label.height + width: height + source: UM.Theme.getIcon(definition.icon) + color: base.hovered ? UM.Theme.getColor("primary_button_hover") : UM.Theme.getColor("text") + } + UM.Label + { + id: label + anchors.verticalCenter: parent.verticalCenter + text: base.text + color: base.hovered ? UM.Theme.getColor("primary_button_hover") : UM.Theme.getColor("text") + font.bold: true } } - signal showTooltip(string text); - signal hideTooltip(); + signal showTooltip(string text) + signal hideTooltip() signal contextMenuRequested() text: definition.label - iconSource: UM.Theme.getIcon(definition.icon) checkable: true checked: definition.expanded diff --git a/plugins/PerObjectSettingsTool/PerObjectItem.qml b/plugins/PerObjectSettingsTool/PerObjectItem.qml index bb1c31e1f3..0c8015541e 100644 --- a/plugins/PerObjectSettingsTool/PerObjectItem.qml +++ b/plugins/PerObjectSettingsTool/PerObjectItem.qml @@ -3,23 +3,32 @@ import QtQuick 2.1 import QtQuick.Layouts 1.1 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 +import QtQuick.Controls 2.1 -import UM 1.2 as UM +import UM 1.5 as UM +import Cura 1.0 as Cura UM.TooltipArea { - x: model.depth * UM.Theme.getSize("default_margin").width; - text: model.description; + x: model.depth * UM.Theme.getSize("default_margin").width + text: model.description - width: childrenRect.width; - height: childrenRect.height; + width: childrenRect.width + height: childrenRect.height - CheckBox + Item + { + id: spacer + // Align checkbox with PerObjectCategory icon + width: UM.Theme.getSize("default_margin").width + } + + UM.CheckBox { id: check + anchors.left: spacer.right + text: definition.label checked: addedSettingsModel.getVisible(model.key) diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py b/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py index 401396f2b8..9fca618322 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py +++ b/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py @@ -62,7 +62,7 @@ class PerObjectSettingVisibilityHandler(UM.Settings.Models.SettingVisibilityHand all_instances = settings.findInstances() visibility_changed = False # Flag to check if at the end the signal needs to be emitted - # Remove all instances that are not in visibility list + # Remove all SettingInstances that are not in visibility list for instance in all_instances: # exceptionally skip setting if instance.definition.key in self._skip_reset_setting_set: @@ -71,29 +71,30 @@ class PerObjectSettingVisibilityHandler(UM.Settings.Models.SettingVisibilityHand settings.removeInstance(instance.definition.key) visibility_changed = True - # Add all instances that are not added, but are in visibility list + # Add all SettingInstances that are not added, but are in visibility list for item in visible: if settings.getInstance(item) is not None: # Setting was added already. continue definition = self._stack.getSettingDefinition(item) if not definition: - Logger.log("w", f"Unable to add instance ({item}) to per-object visibility because we couldn't find the matching definition.") + Logger.log("w", f"Unable to add SettingInstance ({item}) to the per-object visibility because we couldn't find the matching SettingDefinition.") continue new_instance = SettingInstance(definition, settings) stack_nr = -1 stack = None - # Check from what stack we should copy the raw property of the setting from. + # Check from what ContainerStack we should copy the raw property of the setting from. if self._stack.getProperty("machine_extruder_count", "value") > 1: if definition.limit_to_extruder != "-1": - # A limit to extruder function was set and it's a multi extrusion machine. Check what stack we do need to use. + # A limit_to_extruder function was set and it's a multi extrusion machine. Check what stack we + # do need to use. stack_nr = str(int(round(float(self._stack.getProperty(item, "limit_to_extruder"))))) # Check if the found stack_number is in the extruder list of extruders. if stack_nr not in ExtruderManager.getInstance().extruderIds and self._stack.getProperty("extruder_nr", "value") is not None: stack_nr = -1 - # Use the found stack number to get the right stack to copy the value from. + # Use the found stack_number to get the right ContainerStack to copy the value from. if stack_nr in ExtruderManager.getInstance().extruderIds: stack = ContainerRegistry.getInstance().findContainerStacks(id = ExtruderManager.getInstance().extruderIds[stack_nr])[0] else: diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml index e96337e6bb..17bdee2618 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml +++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml @@ -1,11 +1,10 @@ -// Copyright (c) 2021 Ultimaker B.V. -// Uranium is released under the terms of the LGPLv3 or higher. +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.2 -import QtQuick.Controls.Styles 1.2 +import QtQuick.Controls 2.15 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura import ".." @@ -76,63 +75,72 @@ Item id: meshTypeButtons spacing: UM.Theme.getSize("default_margin").width - Button + UM.ToolbarButton { id: normalButton text: catalog.i18nc("@label", "Normal model") - iconSource: UM.Theme.getIcon("Infill0"); + toolItem: UM.RecolorImage + { + source: UM.Theme.getIcon("Infill0") + color: UM.Theme.getColor("icon") + } property bool needBorder: true checkable: true onClicked: setMeshType(normalMeshType); - style: UM.Theme.styles.tool_button; z: 4 } - Button + UM.ToolbarButton { id: supportMeshButton text: catalog.i18nc("@label", "Print as support") - iconSource: UM.Theme.getIcon("MeshTypeSupport"); + toolItem: UM.RecolorImage + { + source: UM.Theme.getIcon("MeshTypeSupport") + color: UM.Theme.getColor("icon") + } property bool needBorder: true checkable:true onClicked: setMeshType(supportMeshType) - style: UM.Theme.styles.tool_button; z: 3 } - Button + UM.ToolbarButton { id: overlapMeshButton text: catalog.i18nc("@label", "Modify settings for overlaps") - iconSource: UM.Theme.getIcon("MeshTypeIntersect"); + toolItem: UM.RecolorImage + { + source: UM.Theme.getIcon("MeshTypeIntersect") + color: UM.Theme.getColor("icon") + } property bool needBorder: true checkable:true onClicked: setMeshType(infillMeshType) - style: UM.Theme.styles.tool_button; z: 2 } - Button + UM.ToolbarButton { id: antiOverhangMeshButton text: catalog.i18nc("@label", "Don't support overlaps") - iconSource: UM.Theme.getIcon("BlockSupportOverlaps"); + toolItem: UM.RecolorImage + { + source: UM.Theme.getIcon("BlockSupportOverlaps") + color: UM.Theme.getColor("icon") + } property bool needBorder: true checkable: true onClicked: setMeshType(antiOverhangMeshType) - style: UM.Theme.styles.tool_button; z: 1 } } - Label + UM.Label { id: meshTypeLabel - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") height: UM.Theme.getSize("setting").height - verticalAlignment: Text.AlignVCenter } @@ -182,189 +190,184 @@ Item height: Math.min(contents.count * (UM.Theme.getSize("section").height + UM.Theme.getSize("default_lining").height), maximumHeight) visible: currentMeshType != "anti_overhang_mesh" - ScrollView + ListView { + id: contents height: parent.height width: UM.Theme.getSize("setting").width + UM.Theme.getSize("default_margin").width - style: UM.Theme.styles.scrollview - ListView + ScrollBar.vertical: UM.ScrollBar {} + clip: true + spacing: UM.Theme.getSize("default_lining").height + + model: UM.SettingDefinitionsModel { - id: contents - spacing: UM.Theme.getSize("default_lining").height - - model: UM.SettingDefinitionsModel + id: addedSettingsModel + containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" + expanded: [ "*" ] + filter: { - id: addedSettingsModel - containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" - expanded: [ "*" ] - filter: + if (printSequencePropertyProvider.properties.value == "one_at_a_time") { - if (printSequencePropertyProvider.properties.value == "one_at_a_time") + return {"settable_per_meshgroup": true} + } + return {"settable_per_mesh": true} + } + exclude: + { + var excluded_settings = [ "support_mesh", "anti_overhang_mesh", "cutting_mesh", "infill_mesh" ] + + if (currentMeshType == "support_mesh") + { + excluded_settings = excluded_settings.concat(base.allCategoriesExceptSupport) + } + return excluded_settings + } + + visibilityHandler: Cura.PerObjectSettingVisibilityHandler + { + id: visibility_handler + selectedObjectId: UM.ActiveTool.properties.getValue("SelectedObjectId") + } + + // For some reason the model object is updated after removing him from the memory and + // it happens only on Windows. For this reason, set the destroyed value manually. + Component.onDestruction: + { + setDestroyed(true) + } + } + + delegate: Row + { + spacing: - UM.Theme.getSize("default_margin").width + Loader + { + id: settingLoader + width: UM.Theme.getSize("setting").width + height: UM.Theme.getSize("section").height + enabled: provider.properties.enabled === "True" + property var definition: model + property var settingDefinitionsModel: addedSettingsModel + property var propertyProvider: provider + property var globalPropertyProvider: inheritStackProvider + property var externalResetHandler: false + + //Qt5.4.2 and earlier has a bug where this causes a crash: https://bugreports.qt.io/browse/QTBUG-35989 + //In addition, while it works for 5.5 and higher, the ordering of the actual combo box drop down changes, + //causing nasty issues when selecting different options. So disable asynchronous loading of enum type completely. + asynchronous: model.type != "enum" && model.type != "extruder" + + onLoaded: + { + settingLoader.item.showRevertButton = false + settingLoader.item.showInheritButton = false + settingLoader.item.showLinkedSettingIcon = false + settingLoader.item.doDepthIndentation = false + settingLoader.item.doQualityUserSettingEmphasis = false + } + + sourceComponent: + { + switch(model.type) { - return {"settable_per_meshgroup": true} + case "int": + return settingTextField + case "[int]": + return settingTextField + case "float": + return settingTextField + case "enum": + return settingComboBox + case "extruder": + return settingExtruder + case "optional_extruder": + return settingOptionalExtruder + case "bool": + return settingCheckBox + case "str": + return settingTextField + case "category": + return settingCategory + default: + return settingUnknown } - return {"settable_per_mesh": true} - } - exclude: - { - var excluded_settings = [ "support_mesh", "anti_overhang_mesh", "cutting_mesh", "infill_mesh" ] - - if (currentMeshType == "support_mesh") - { - excluded_settings = excluded_settings.concat(base.allCategoriesExceptSupport) - } - return excluded_settings - } - - visibilityHandler: Cura.PerObjectSettingVisibilityHandler - { - id: visibility_handler - selectedObjectId: UM.ActiveTool.properties.getValue("SelectedObjectId") - } - - // For some reason the model object is updated after removing him from the memory and - // it happens only on Windows. For this reason, set the destroyed value manually. - Component.onDestruction: - { - setDestroyed(true) } } - delegate: Row + Button { - spacing: - UM.Theme.getSize("default_margin").width - Loader + width: Math.round(UM.Theme.getSize("setting").height / 2) + height: UM.Theme.getSize("setting").height + + onClicked: addedSettingsModel.setVisible(model.key, false) + + background: Item { - id: settingLoader - width: UM.Theme.getSize("setting").width - height: UM.Theme.getSize("section").height - enabled: provider.properties.enabled === "True" - property var definition: model - property var settingDefinitionsModel: addedSettingsModel - property var propertyProvider: provider - property var globalPropertyProvider: inheritStackProvider - property var externalResetHandler: false - - //Qt5.4.2 and earlier has a bug where this causes a crash: https://bugreports.qt.io/browse/QTBUG-35989 - //In addition, while it works for 5.5 and higher, the ordering of the actual combo box drop down changes, - //causing nasty issues when selecting different options. So disable asynchronous loading of enum type completely. - asynchronous: model.type != "enum" && model.type != "extruder" - - onLoaded: + UM.RecolorImage { - settingLoader.item.showRevertButton = false - settingLoader.item.showInheritButton = false - settingLoader.item.showLinkedSettingIcon = false - settingLoader.item.doDepthIndentation = false - settingLoader.item.doQualityUserSettingEmphasis = false - } - - sourceComponent: - { - switch(model.type) - { - case "int": - return settingTextField - case "[int]": - return settingTextField - case "float": - return settingTextField - case "enum": - return settingComboBox - case "extruder": - return settingExtruder - case "optional_extruder": - return settingOptionalExtruder - case "bool": - return settingCheckBox - case "str": - return settingTextField - case "category": - return settingCategory - default: - return settingUnknown - } + anchors.verticalCenter: parent.verticalCenter + width: parent.width + height: width + sourceSize.height: width + color: parent.hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button") + source: UM.Theme.getIcon("Minus") } } + } - Button + // Specialty provider that only watches global_inherits (we can't filter on what property changed we get events + // so we bypass that to make a dedicated provider). + UM.SettingPropertyProvider + { + id: provider + + containerStackId: UM.ActiveTool.properties.getValue("ContainerID") + key: model.key + watchedProperties: [ "value", "enabled", "validationState" ] + storeIndex: 0 + removeUnusedValue: false + } + + UM.SettingPropertyProvider + { + id: inheritStackProvider + containerStackId: UM.ActiveTool.properties.getValue("ContainerID") + key: model.key + watchedProperties: [ "limit_to_extruder" ] + } + + Connections + { + target: inheritStackProvider + function onPropertiesChanged() { provider.forcePropertiesChanged() } + } + + Connections + { + target: UM.ActiveTool + function onPropertiesChanged() { - width: Math.round(UM.Theme.getSize("setting").height / 2) - height: UM.Theme.getSize("setting").height - - onClicked: addedSettingsModel.setVisible(model.key, false) - - style: ButtonStyle + // the values cannot be bound with UM.ActiveTool.properties.getValue() calls, + // so here we connect to the signal and update the those values. + if (typeof UM.ActiveTool.properties.getValue("SelectedObjectId") !== "undefined") { - background: Item + const selectedObjectId = UM.ActiveTool.properties.getValue("SelectedObjectId") + if (addedSettingsModel.visibilityHandler.selectedObjectId != selectedObjectId) { - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - width: parent.width - height: width - sourceSize.height: width - color: control.hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button") - source: UM.Theme.getIcon("Minus") - } + addedSettingsModel.visibilityHandler.selectedObjectId = selectedObjectId } } - } - - // Specialty provider that only watches global_inherits (we cant filter on what property changed we get events - // so we bypass that to make a dedicated provider). - UM.SettingPropertyProvider - { - id: provider - - containerStackId: UM.ActiveTool.properties.getValue("ContainerID") - key: model.key - watchedProperties: [ "value", "enabled", "validationState" ] - storeIndex: 0 - removeUnusedValue: false - } - - UM.SettingPropertyProvider - { - id: inheritStackProvider - containerStackId: UM.ActiveTool.properties.getValue("ContainerID") - key: model.key - watchedProperties: [ "limit_to_extruder" ] - } - - Connections - { - target: inheritStackProvider - function onPropertiesChanged() { provider.forcePropertiesChanged() } - } - - Connections - { - target: UM.ActiveTool - function onPropertiesChanged() + if (typeof UM.ActiveTool.properties.getValue("ContainerID") !== "undefined") { - // the values cannot be bound with UM.ActiveTool.properties.getValue() calls, - // so here we connect to the signal and update the those values. - if (typeof UM.ActiveTool.properties.getValue("SelectedObjectId") !== "undefined") + const containerId = UM.ActiveTool.properties.getValue("ContainerID") + if (provider.containerStackId != containerId) { - const selectedObjectId = UM.ActiveTool.properties.getValue("SelectedObjectId") - if (addedSettingsModel.visibilityHandler.selectedObjectId != selectedObjectId) - { - addedSettingsModel.visibilityHandler.selectedObjectId = selectedObjectId - } + provider.containerStackId = containerId } - if (typeof UM.ActiveTool.properties.getValue("ContainerID") !== "undefined") + if (inheritStackProvider.containerStackId != containerId) { - const containerId = UM.ActiveTool.properties.getValue("ContainerID") - if (provider.containerStackId != containerId) - { - provider.containerStackId = containerId - } - if (inheritStackProvider.containerStackId != containerId) - { - inheritStackProvider.containerStackId = containerId - } + inheritStackProvider.containerStackId = containerId } } } @@ -422,8 +425,6 @@ Item storeIndex: 0 } - SystemPalette { id: palette } - Component { id: settingTextField diff --git a/plugins/PerObjectSettingsTool/SettingPickDialog.qml b/plugins/PerObjectSettingsTool/SettingPickDialog.qml index 28ddb7e642..d7d8091121 100644 --- a/plugins/PerObjectSettingsTool/SettingPickDialog.qml +++ b/plugins/PerObjectSettingsTool/SettingPickDialog.qml @@ -1,8 +1,10 @@ -import QtQuick 2.2 -import QtQuick.Controls 1.2 -import QtQuick.Controls.Styles 1.2 +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. -import UM 1.2 as UM +import QtQuick 2.2 +import QtQuick.Controls 2.2 + +import UM 1.5 as UM import Cura 1.0 as Cura import ".." @@ -11,7 +13,8 @@ UM.Dialog id: settingPickDialog title: catalog.i18nc("@title:window", "Select Settings to Customize for this model") - width: screenScaleFactor * 360 + width: UM.Theme.getSize("small_popup_dialog").width + backgroundColor: UM.Theme.getColor("background_1") property var additional_excluded_settings @@ -40,9 +43,10 @@ UM.Dialog listview.model.filter = new_filter } - TextField + Cura.TextField { id: filterInput + selectByMouse: true anchors { @@ -57,76 +61,77 @@ UM.Dialog onTextChanged: settingPickDialog.updateFilter() } - CheckBox + UM.CheckBox { id: toggleShowAll anchors { top: parent.top right: parent.right + verticalCenter: filterInput.verticalCenter } text: catalog.i18nc("@label:checkbox", "Show all") } - ScrollView + ListView { - id: scrollView - + id: listview anchors { top: filterInput.bottom + topMargin: UM.Theme.getSize("default_margin").height left: parent.left right: parent.right bottom: parent.bottom } - ListView + + ScrollBar.vertical: UM.ScrollBar { id: scrollBar } + clip: true + + model: UM.SettingDefinitionsModel { - id: listview - model: UM.SettingDefinitionsModel + id: definitionsModel + containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" + visibilityHandler: UM.SettingPreferenceVisibilityHandler {} + expanded: [ "*" ] + exclude: { - id: definitionsModel - containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" - visibilityHandler: UM.SettingPreferenceVisibilityHandler {} - expanded: [ "*" ] - exclude: - { - var excluded_settings = [ "machine_settings", "command_line_settings", "support_mesh", "anti_overhang_mesh", "cutting_mesh", "infill_mesh" ] - excluded_settings = excluded_settings.concat(settingPickDialog.additional_excluded_settings) - return excluded_settings - } - showAll: toggleShowAll.checked || filterInput.text !== "" + var excluded_settings = [ "machine_settings", "command_line_settings", "support_mesh", "anti_overhang_mesh", "cutting_mesh", "infill_mesh" ] + excluded_settings = excluded_settings.concat(settingPickDialog.additional_excluded_settings) + return excluded_settings } - delegate:Loader - { - id: loader - - width: parent.width - height: model.type != undefined ? UM.Theme.getSize("section").height : 0 - - property var definition: model - property var settingDefinitionsModel: definitionsModel - - asynchronous: true - source: - { - switch(model.type) - { - case "category": - return "PerObjectCategory.qml" - default: - return "PerObjectItem.qml" - } - } - } - Component.onCompleted: settingPickDialog.updateFilter() + showAll: toggleShowAll.checked || filterInput.text !== "" } + delegate: Loader + { + id: loader + + width: listview.width - scrollBar.width + height: model.type != undefined ? UM.Theme.getSize("section").height : 0 + + property var definition: model + property var settingDefinitionsModel: definitionsModel + + asynchronous: true + source: + { + switch(model.type) + { + case "category": + return "PerObjectCategory.qml" + default: + return "PerObjectItem.qml" + } + } + } + Component.onCompleted: settingPickDialog.updateFilter() } rightButtons: [ - Button + Cura.TertiaryButton { text: catalog.i18nc("@action:button", "Close") - onClicked: settingPickDialog.visible = false + onClicked: reject() } ] } \ No newline at end of file diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.py b/plugins/PostProcessingPlugin/PostProcessingPlugin.py index 8968e2c547..755d815d0a 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.py +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.py @@ -193,6 +193,8 @@ class PostProcessingPlugin(QObject, Extension): spec = importlib.util.spec_from_file_location(__name__ + "." + script_name, file_path) + if spec is None: + continue loaded_script = importlib.util.module_from_spec(spec) if spec.loader is None: continue diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index 7397ec8196..8ce6e3f94f 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml @@ -1,16 +1,13 @@ -// Copyright (c) 2015 Jaime van Kessel, Ultimaker B.V. +// Copyright (c) 2022 Jaime van Kessel, Ultimaker B.V. // The PostProcessingPlugin is released under the terms of the AGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls 2.15 as QQC2 -import QtQuick.Controls.Styles 1.1 +import QtQuick.Controls 2.15 import QtQml.Models 2.15 as Models import QtQuick.Layouts 1.1 -import QtQuick.Dialogs 1.1 import QtQuick.Window 2.2 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura UM.Dialog @@ -18,14 +15,15 @@ UM.Dialog id: dialog title: catalog.i18nc("@title:window", "Post Processing Plugin") - width: 700 * screenScaleFactor; - height: 500 * screenScaleFactor; - minimumWidth: 400 * screenScaleFactor; - minimumHeight: 250 * screenScaleFactor; + width: 700 * screenScaleFactor + height: 500 * screenScaleFactor + minimumWidth: 400 * screenScaleFactor + minimumHeight: 250 * screenScaleFactor onVisibleChanged: { - if(!visible) //Whenever the window is closed (either via the "Close" button or the X on the window frame), we want to update it in the stack. + // Whenever the window is closed (either via the "Close" button or the X on the window frame), we want to update it in the stack. + if (!visible) { manager.writeScriptsToStack() } @@ -36,234 +34,211 @@ UM.Dialog UM.I18nCatalog{id: catalog; name: "cura"} id: base property int columnWidth: Math.round((base.width / 2) - UM.Theme.getSize("default_margin").width) - property int textMargin: Math.round(UM.Theme.getSize("default_margin").width / 2) + property int textMargin: UM.Theme.getSize("narrow_margin").width property string activeScriptName - SystemPalette{ id: palette } - SystemPalette{ id: disabledPalette; colorGroup: SystemPalette.Disabled } + anchors.fill: parent - ExclusiveGroup + ButtonGroup { id: selectedScriptGroup } - Item + Column { id: activeScripts - anchors.left: parent.left width: base.columnWidth height: parent.height - Label + spacing: base.textMargin + + UM.Label { id: activeScriptsHeader text: catalog.i18nc("@label", "Post Processing Scripts") - anchors.top: parent.top - anchors.topMargin: base.textMargin anchors.left: parent.left - anchors.leftMargin: base.textMargin anchors.right: parent.right - anchors.rightMargin: base.textMargin font: UM.Theme.getFont("large_bold") elide: Text.ElideRight } ListView { id: activeScriptsList - anchors { - top: activeScriptsHeader.bottom left: parent.left right: parent.right rightMargin: base.textMargin - topMargin: base.textMargin - leftMargin: UM.Theme.getSize("default_margin").width } + height: Math.min(contentHeight, parent.height - parent.spacing * 2 - activeScriptsHeader.height - addButton.height) //At the window height, start scrolling this one. - height: childrenRect.height - model: manager.scriptList - delegate: Item + clip: true + ScrollBar.vertical: UM.ScrollBar { - width: parent.width - height: activeScriptButton.height - Button - { - id: activeScriptButton - text: manager.getScriptLabelByKey(modelData.toString()) - exclusiveGroup: selectedScriptGroup - width: parent.width - height: UM.Theme.getSize("setting").height - checkable: true + id: activeScriptsScrollBar + } + model: manager.scriptList - checked: + delegate: Button + { + id: activeScriptButton + + width: parent.width - activeScriptsScrollBar.width + height: UM.Theme.getSize("standard_list_lineheight").height + + ButtonGroup.group: selectedScriptGroup + checkable: true + + checked: + { + if (manager.selectedScriptIndex == index) { - if (manager.selectedScriptIndex == index) - { - base.activeScriptName = manager.getScriptLabelByKey(modelData.toString()) - return true - } - else - { - return false - } - } - onClicked: - { - forceActiveFocus() - manager.setSelectedScriptIndex(index) base.activeScriptName = manager.getScriptLabelByKey(modelData.toString()) + return true } - - style: ButtonStyle + else { - background: Rectangle - { - color: activeScriptButton.checked ? palette.highlight : "transparent" - width: parent.width - height: parent.height - } - label: Label - { - wrapMode: Text.Wrap - text: control.text - elide: Text.ElideRight - color: activeScriptButton.checked ? palette.highlightedText : palette.text - } + return false } } - Button + background: Rectangle { - id: removeButton - text: "x" - width: 20 * screenScaleFactor - height: 20 * screenScaleFactor - anchors.right:parent.right - anchors.rightMargin: base.textMargin - anchors.verticalCenter: parent.verticalCenter - onClicked: manager.removeScriptByIndex(index) - style: ButtonStyle - { - label: Item - { - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: Math.round(control.width / 2.7) - height: Math.round(control.height / 2.7) - sourceSize.height: width - color: palette.text - source: UM.Theme.getIcon("Cancel") - } - } - } + color: activeScriptButton.checked ? UM.Theme.getColor("background_3") : "transparent" } - Button + + onClicked: { - id: downButton - text: "" - anchors.right: removeButton.left - anchors.verticalCenter: parent.verticalCenter - enabled: index != manager.scriptList.length - 1 - width: 20 * screenScaleFactor - height: 20 * screenScaleFactor - onClicked: - { - if (manager.selectedScriptIndex == index) - { - manager.setSelectedScriptIndex(index + 1) - } - return manager.moveScript(index, index + 1) - } - style: ButtonStyle - { - label: Item - { - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: Math.round(control.width / 2.5) - height: Math.round(control.height / 2.5) - sourceSize.height: width - color: control.enabled ? palette.text : disabledPalette.text - source: UM.Theme.getIcon("ChevronSingleDown") - } - } - } + forceActiveFocus() + manager.setSelectedScriptIndex(index) + base.activeScriptName = manager.getScriptLabelByKey(modelData.toString()) } - Button + + RowLayout { - id: upButton - text: "" - enabled: index != 0 - width: 20 * screenScaleFactor - height: 20 * screenScaleFactor - anchors.right: downButton.left - anchors.verticalCenter: parent.verticalCenter - onClicked: + anchors.fill: parent + + UM.Label { - if (manager.selectedScriptIndex == index) - { - manager.setSelectedScriptIndex(index - 1) - } - return manager.moveScript(index, index - 1) + Layout.fillWidth: true + text: manager.getScriptLabelByKey(modelData.toString()) } - style: ButtonStyle + + Item { - label: Item - { - UM.RecolorImage + id: downButton + Layout.preferredWidth: height + Layout.fillHeight: true + enabled: index != manager.scriptList.length - 1 + + MouseArea + { + anchors.fill: parent + onClicked: { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: Math.round(control.width / 2.5) - height: Math.round(control.height / 2.5) - sourceSize.height: width - color: control.enabled ? palette.text : disabledPalette.text - source: UM.Theme.getIcon("ChevronSingleUp") + if (manager.selectedScriptIndex == index) + { + manager.setSelectedScriptIndex(index + 1) + } + return manager.moveScript(index, index + 1) } } + + UM.RecolorImage + { + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + sourceSize.width: width + sourceSize.height: height + color: parent.enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("text_disabled") + source: UM.Theme.getIcon("ChevronSingleDown") + } + } + Item + { + id: upButton + Layout.preferredWidth: height + Layout.fillHeight: true + enabled: index != 0 + + MouseArea + { + anchors.fill: parent + onClicked: + { + if (manager.selectedScriptIndex == index) + { + manager.setSelectedScriptIndex(index - 1) + } + return manager.moveScript(index, index - 1) + } + } + + UM.RecolorImage + { + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + sourceSize.width: width + sourceSize.height: height + color: upButton.enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("text_disabled") + source: UM.Theme.getIcon("ChevronSingleUp") + } + } + + Item + { + id: removeButton + Layout.preferredWidth: height + Layout.fillHeight: true + + MouseArea + { + anchors.fill: parent + onClicked: manager.removeScriptByIndex(index) + } + + UM.RecolorImage + { + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + sourceSize.width: width + sourceSize.height: height + color: UM.Theme.getColor("text") + source: UM.Theme.getIcon("Cancel") + } } } } } - Button + Cura.SecondaryButton { id: addButton text: catalog.i18nc("@action", "Add a script") - anchors.left: parent.left - anchors.leftMargin: base.textMargin - anchors.top: activeScriptsList.bottom - anchors.topMargin: base.textMargin onClicked: scriptsMenu.open() - style: ButtonStyle - { - label: Label - { - text: control.text - } - } } - QQC2.Menu + } + + Cura.Menu + { + id: scriptsMenu + + Models.Instantiator { - id: scriptsMenu - width: parent.width + model: manager.loadedScriptList - Models.Instantiator + Cura.MenuItem { - model: manager.loadedScriptList - - QQC2.MenuItem - { - text: manager.getScriptLabelByKey(modelData.toString()) - onTriggered: manager.addScriptToList(modelData.toString()) - } - - onObjectAdded: scriptsMenu.insertItem(index, object) - onObjectRemoved: scriptsMenu.removeItem(object) + text: manager.getScriptLabelByKey(modelData.toString()) + onTriggered: manager.addScriptToList(modelData.toString()) } + + onObjectAdded: scriptsMenu.insertItem(index, object) + onObjectRemoved: scriptsMenu.removeItem(object) } } @@ -296,9 +271,9 @@ UM.Dialog color: UM.Theme.getColor("text") } - ScrollView + ListView { - id: scrollView + id: listview anchors { top: scriptSpecsHeader.bottom @@ -309,124 +284,114 @@ UM.Dialog bottom: parent.bottom } + ScrollBar.vertical: UM.ScrollBar {} + clip: true visible: manager.selectedScriptDefinitionId != "" - style: UM.Theme.styles.scrollview; + spacing: UM.Theme.getSize("default_lining").height - ListView + model: UM.SettingDefinitionsModel { - id: listview - spacing: UM.Theme.getSize("default_lining").height - model: UM.SettingDefinitionsModel + id: definitionsModel + containerId: manager.selectedScriptDefinitionId + showAll: true + } + + delegate: Loader + { + id: settingLoader + + width: listview.width + height: { - id: definitionsModel - containerId: manager.selectedScriptDefinitionId - showAll: true + if (provider.properties.enabled == "True" && model.type != undefined) + { + return UM.Theme.getSize("section").height; + } + else + { + return 0 + } + } + Behavior on height { NumberAnimation { duration: 100 } } + opacity: provider.properties.enabled == "True" ? 1 : 0 + + Behavior on opacity { NumberAnimation { duration: 100 } } + enabled: opacity > 0 + + property var definition: model + property var settingDefinitionsModel: definitionsModel + property var propertyProvider: provider + property var globalPropertyProvider: inheritStackProvider + + //Qt5.4.2 and earlier has a bug where this causes a crash: https://bugreports.qt.io/browse/QTBUG-35989 + //In addition, while it works for 5.5 and higher, the ordering of the actual combo box drop down changes, + //causing nasty issues when selecting different options. So disable asynchronous loading of enum type completely. + asynchronous: model.type != "enum" && model.type != "extruder" + + onLoaded: + { + settingLoader.item.showRevertButton = false + settingLoader.item.showInheritButton = false + settingLoader.item.showLinkedSettingIcon = false + settingLoader.item.doDepthIndentation = false + settingLoader.item.doQualityUserSettingEmphasis = false } - delegate: Loader + sourceComponent: { - id: settingLoader - - width: parent.width - height: + switch(model.type) { - if(provider.properties.enabled == "True") - { - if(model.type != undefined) - { - return UM.Theme.getSize("section").height - } - else - { - return 0 - } - } - else - { - return 0 - } + case "int": + return settingTextField + case "float": + return settingTextField + case "enum": + return settingComboBox + case "extruder": + return settingExtruder + case "bool": + return settingCheckBox + case "str": + return settingTextField + case "category": + return settingCategory + default: + return settingUnknown } - Behavior on height { NumberAnimation { duration: 100 } } - opacity: provider.properties.enabled == "True" ? 1 : 0 + } - Behavior on opacity { NumberAnimation { duration: 100 } } - enabled: opacity > 0 + UM.SettingPropertyProvider + { + id: provider + containerStackId: manager.selectedScriptStackId + key: model.key ? model.key : "None" + watchedProperties: [ "value", "enabled", "state", "validationState" ] + storeIndex: 0 + } - property var definition: model - property var settingDefinitionsModel: definitionsModel - property var propertyProvider: provider - property var globalPropertyProvider: inheritStackProvider + // Specialty provider that only watches global_inherits (we can't filter on what property changed we get events + // so we bypass that to make a dedicated provider). + UM.SettingPropertyProvider + { + id: inheritStackProvider + containerStack: Cura.MachineManager.activeMachine + key: model.key ? model.key : "None" + watchedProperties: [ "limit_to_extruder" ] + } - //Qt5.4.2 and earlier has a bug where this causes a crash: https://bugreports.qt.io/browse/QTBUG-35989 - //In addition, while it works for 5.5 and higher, the ordering of the actual combo box drop down changes, - //causing nasty issues when selecting different options. So disable asynchronous loading of enum type completely. - asynchronous: model.type != "enum" && model.type != "extruder" + Connections + { + target: item - onLoaded: + function onShowTooltip(text) { - settingLoader.item.showRevertButton = false - settingLoader.item.showInheritButton = false - settingLoader.item.showLinkedSettingIcon = false - settingLoader.item.doDepthIndentation = false - settingLoader.item.doQualityUserSettingEmphasis = false + tooltip.text = text; + var position = settingLoader.mapToItem(settingsPanel, settingsPanel.x, 0); + tooltip.show(position); + tooltip.target.x = position.x + 1; } - sourceComponent: - { - switch(model.type) - { - case "int": - return settingTextField - case "float": - return settingTextField - case "enum": - return settingComboBox - case "extruder": - return settingExtruder - case "bool": - return settingCheckBox - case "str": - return settingTextField - case "category": - return settingCategory - default: - return settingUnknown - } - } - - UM.SettingPropertyProvider - { - id: provider - containerStackId: manager.selectedScriptStackId - key: model.key ? model.key : "None" - watchedProperties: [ "value", "enabled", "state", "validationState" ] - storeIndex: 0 - } - - // Specialty provider that only watches global_inherits (we cant filter on what property changed we get events - // so we bypass that to make a dedicated provider). - UM.SettingPropertyProvider - { - id: inheritStackProvider - containerStack: Cura.MachineManager.activeMachine - key: model.key ? model.key : "None" - watchedProperties: [ "limit_to_extruder" ] - } - - Connections - { - target: item - - function onShowTooltip(text) - { - tooltip.text = text - var position = settingLoader.mapToItem(settingsPanel, settingsPanel.x, 0) - tooltip.show(position) - tooltip.target.x = position.x + 1 - } - - function onHideTooltip() { tooltip.hide() } - } + function onHideTooltip() { tooltip.hide() } } } } @@ -480,10 +445,9 @@ UM.Dialog } } - rightButtons: Button + rightButtons: Cura.TertiaryButton { text: catalog.i18nc("@action:button", "Close") - iconName: "dialog-close" onClicked: dialog.accept() } @@ -515,7 +479,7 @@ UM.Dialog } return tipText } - toolTipContentAlignment: Cura.ToolTip.ContentAlignment.AlignLeft + toolTipContentAlignment: UM.Enums.ContentAlignment.AlignLeft onClicked: dialog.show() iconSource: "Script.svg" fixedWidthMode: false @@ -527,10 +491,8 @@ UM.Dialog visible: activeScriptsList.count > 0 anchors { - top: parent.top - right: parent.right - rightMargin: (-0.5 * width) | 0 - topMargin: (-0.5 * height) | 0 + horizontalCenter: parent.right + verticalCenter: parent.top } labelText: activeScriptsList.count diff --git a/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py b/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py index a23e52b750..72b26b13f6 100644 --- a/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py +++ b/plugins/PostProcessingPlugin/scripts/ChangeAtZ.py @@ -9,8 +9,10 @@ # Modified by Ricardo Gomez, ricardoga@otulook.com, to add Bed Temperature and make it work with Cura_13.06.04+ # Modified by Stefan Heule, Dim3nsioneer@gmx.ch since V3.0 (see changelog below) # Modified by Jaime van Kessel (Ultimaker), j.vankessel@ultimaker.com to make it work for 15.10 / 2.x -# Modified by Ruben Dulek (Ultimaker), r.dulek@ultimaker.com, to debug. +# Modified by Ghostkeeper (Ultimaker), rubend@tutanota.com, to debug. # Modified by Wes Hanney, https://github.com/novamxd, Retract Length + Speed, Clean up +# Modified by Alex Jaxon, https://github.com/legend069, Added option to modify Build Volume Temperature + # history / changelog: # V3.0.1: TweakAtZ-state default 1 (i.e. the plugin works without any TweakAtZ comment) @@ -31,15 +33,19 @@ # V4.9.93: Minor bugfixes (input settings) / documentation # V4.9.94: Bugfix Combobox-selection; remove logger # V5.0: Bugfix for fall back after one layer and doubled G0 commands when using print speed tweak, Initial version for Cura 2.x -# V5.0.1: Bugfix for calling unknown property 'bedTemp' of previous settings storage and unkown variable 'speed' +# V5.0.1: Bugfix for calling unknown property 'bedTemp' of previous settings storage and unknown variable 'speed' # V5.1: API Changes included for use with Cura 2.2 -# V5.2.0: Wes Hanney. Added support for changing Retract Length and Speed. Removed layer spread option. Fixed issue of cumulative ChangeZ +# V5.2.0: Wes Hanney. Added support for changing Retract Length and Speed. Removed layer spread option. Fixed issue of cumulative ChangeAtZ # mods so they can now properly be stacked on top of each other. Applied code refactoring to clean up various coding styles. Added comments. # Broke up functions for clarity. Split up class so it can be debugged outside of Cura. # V5.2.1: Wes Hanney. Added support for firmware based retractions. Fixed issue of properly restoring previous values in single layer option. # Added support for outputting changes to LCD (untested). Added type hints to most functions and variables. Added more comments. Created GCodeCommand # class for better detection of G1 vs G10 or G11 commands, and accessing arguments. Moved most GCode methods to GCodeCommand class. Improved wording # of Single Layer vs Keep Layer to better reflect what was happening. +# V5.3.0 Alex Jaxon, Added option to modify Build Volume Temperature keeping current format +# + + # Uses - # M220 S - set speed factor override percentage @@ -56,9 +62,9 @@ from ..Script import Script import re -# this was broken up into a separate class so the main ChangeZ script could be debugged outside of Cura +# this was broken up into a separate class so the main ChangeAtZ script could be debugged outside of Cura class ChangeAtZ(Script): - version = "5.2.1" + version = "5.3.0" def getSettingDataString(self): return """{ @@ -69,10 +75,10 @@ class ChangeAtZ(Script): "settings": { "caz_enabled": { "label": "Enabled", - "description": "Allows adding multiple ChangeZ mods and disabling them as needed.", + "description": "Allows adding multiple ChangeAtZ mods and disabling them as needed.", "type": "bool", "default_value": true - }, + }, "a_trigger": { "label": "Trigger", "description": "Trigger at height or at layer no.", @@ -119,7 +125,7 @@ class ChangeAtZ(Script): "description": "Displays the current changes to the LCD", "type": "bool", "default_value": false - }, + }, "e1_Change_speed": { "label": "Change Speed", "description": "Select if total speed (print and travel) has to be changed", @@ -222,6 +228,23 @@ class ChangeAtZ(Script): "maximum_value_warning": "120", "enabled": "h1_Change_bedTemp" }, + "h1_Change_buildVolumeTemperature": { + "label": "Change Build Volume Temperature", + "description": "Select if Build Volume Temperature has to be changed", + "type": "bool", + "default_value": false + }, + "h2_buildVolumeTemperature": { + "label": "Build Volume Temperature", + "description": "New Build Volume Temperature", + "unit": "C", + "type": "float", + "default_value": 20, + "minimum_value": "0", + "minimum_value_warning": "10", + "maximum_value_warning": "50", + "enabled": "h1_Change_buildVolumeTemperature" + }, "i1_Change_extruderOne": { "label": "Change Extruder 1 Temp", "description": "Select if First Extruder Temperature has to be changed", @@ -278,25 +301,25 @@ class ChangeAtZ(Script): "description": "Indicates you would like to modify retraction properties.", "type": "bool", "default_value": false - }, + }, "caz_retractstyle": { "label": "Retract Style", "description": "Specify if you're using firmware retraction or linear move based retractions. Check your printer settings to see which you're using.", "type": "enum", "options": { - "linear": "Linear Move", + "linear": "Linear Move", "firmware": "Firmware" }, "default_value": "linear", "enabled": "caz_change_retract" - }, + }, "caz_change_retractfeedrate": { "label": "Change Retract Feed Rate", "description": "Changes the retraction feed rate during print", "type": "bool", "default_value": false, "enabled": "caz_change_retract" - }, + }, "caz_retractfeedrate": { "label": "Retract Feed Rate", "description": "New Retract Feed Rate (mm/s)", @@ -325,7 +348,7 @@ class ChangeAtZ(Script): "minimum_value_warning": "0", "maximum_value_warning": "20", "enabled": "caz_change_retractlength" - } + } } }""" @@ -345,6 +368,7 @@ class ChangeAtZ(Script): self.setIntSettingIfEnabled(caz_instance, "g3_Change_flowrateOne", "flowrateOne", "g4_flowrateOne") self.setIntSettingIfEnabled(caz_instance, "g5_Change_flowrateTwo", "flowrateTwo", "g6_flowrateTwo") self.setFloatSettingIfEnabled(caz_instance, "h1_Change_bedTemp", "bedTemp", "h2_bedTemp") + self.setFloatSettingIfEnabled(caz_instance, "h1_Change_buildVolumeTemperature", "buildVolumeTemperature", "h2_buildVolumeTemperature") self.setFloatSettingIfEnabled(caz_instance, "i1_Change_extruderOne", "extruderOne", "i2_extruderOne") self.setFloatSettingIfEnabled(caz_instance, "i3_Change_extruderTwo", "extruderTwo", "i4_extruderTwo") self.setIntSettingIfEnabled(caz_instance, "j1_Change_fanSpeed", "fanSpeed", "j2_fanSpeed") @@ -657,7 +681,7 @@ class ChangeAtZProcessor: # Indicates if the user has opted for linear move retractions or firmware retractions linearRetraction = True - # Indicates if we're targetting by layer or height value + # Indicates if we're targeting by layer or height value targetByLayer = True # Indicates if we have injected our changed values for the given layer yet @@ -776,6 +800,10 @@ class ChangeAtZProcessor: if "bedTemp" in values: codes.append("BedTemp: " + str(round(values["bedTemp"]))) + # looking for wait for Build Volume Temperature + if "buildVolumeTemperature" in values: + codes.append("buildVolumeTemperature: " + str(round(values["buildVolumeTemperature"]))) + # set our extruder one temp (if specified) if "extruderOne" in values: codes.append("Extruder 1 Temp: " + str(round(values["extruderOne"]))) @@ -858,6 +886,10 @@ class ChangeAtZProcessor: if "bedTemp" in values: codes.append("M140 S" + str(values["bedTemp"])) + # looking for wait for Build Volume Temperature + if "buildVolumeTemperature" in values: + codes.append("M141 S" + str(values["buildVolumeTemperature"])) + # set our extruder one temp (if specified) if "extruderOne" in values: codes.append("M104 S" + str(values["extruderOne"]) + " T0") @@ -943,7 +975,7 @@ class ChangeAtZProcessor: # nothing to do return "" - # Returns the unmodified GCODE line from previous ChangeZ edits + # Returns the unmodified GCODE line from previous ChangeAtZ edits @staticmethod def getOriginalLine(line: str) -> str: @@ -990,7 +1022,7 @@ class ChangeAtZProcessor: else: return self.currentZ >= self.targetZ - # Marks any current ChangeZ layer defaults in the layer for deletion + # Marks any current ChangeAtZ layer defaults in the layer for deletion @staticmethod def markChangesForDeletion(layer: str): return re.sub(r";\[CAZD:", ";[CAZD:DELETE:", layer) @@ -1079,7 +1111,7 @@ class ChangeAtZProcessor: else: modified_gcode += line + "\n" - # if we're targetting by layer we want to add our values just after the layer label + # if we're targeting by layer we want to add our values just after the layer label if ";LAYER:" in line: modified_gcode += self.getInjectCode() @@ -1288,7 +1320,7 @@ class ChangeAtZProcessor: # flag that we're inside our target layer self.insideTargetLayer = True - # Removes all the ChangeZ layer defaults from the given layer + # Removes all the ChangeAtZ layer defaults from the given layer @staticmethod def removeMarkedChanges(layer: str) -> str: return re.sub(r";\[CAZD:DELETE:[\s\S]+?:CAZD\](\n|$)", "", layer) @@ -1364,14 +1396,24 @@ class ChangeAtZProcessor: # move to the next command return + # handle Build Volume Temperature changes, really shouldn't want to wait for enclousure temp mid print though. + if command.command == "M141" or command.command == "M191": + + # get our bed temp if provided + if "S" in command.arguments: + self.lastValues["buildVolumeTemperature"] = command.getArgumentAsFloat("S") + + # move to the next command + return + # handle extruder temp changes if command.command == "M104" or command.command == "M109": - # get our tempurature - tempurature = command.getArgumentAsFloat("S") + # get our temperature + temperature = command.getArgumentAsFloat("S") - # don't bother if we don't have a tempurature - if tempurature is None: + # don't bother if we don't have a temperature + if temperature is None: return # get our extruder, default to extruder one @@ -1379,10 +1421,10 @@ class ChangeAtZProcessor: # set our extruder temp based on the extruder if extruder is None or extruder == 0: - self.lastValues["extruderOne"] = tempurature + self.lastValues["extruderOne"] = temperature if extruder is None or extruder == 1: - self.lastValues["extruderTwo"] = tempurature + self.lastValues["extruderTwo"] = temperature # move to the next command return @@ -1401,10 +1443,10 @@ class ChangeAtZProcessor: if command.command == "M221": # get our flow rate - tempurature = command.getArgumentAsFloat("S") + temperature = command.getArgumentAsFloat("S") # don't bother if we don't have a flow rate (for some reason) - if tempurature is None: + if temperature is None: return # get our extruder, default to global @@ -1412,11 +1454,11 @@ class ChangeAtZProcessor: # set our extruder temp based on the extruder if extruder is None: - self.lastValues["flowrate"] = tempurature + self.lastValues["flowrate"] = temperature elif extruder == 1: - self.lastValues["flowrateOne"] = tempurature + self.lastValues["flowrateOne"] = temperature elif extruder == 1: - self.lastValues["flowrateTwo"] = tempurature + self.lastValues["flowrateTwo"] = temperature # move to the next command return diff --git a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py index d589e63fb3..69489bfcad 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py @@ -5,7 +5,7 @@ # Description: This plugin shows custom messages about your print on the Status bar... # Please look at the 3 options -# - Scolling (SCROLL_LONG_FILENAMES) if enabled in Marlin and you arent printing a small item select this option. +# - Scrolling (SCROLL_LONG_FILENAMES) if enabled in Marlin and you aren't printing a small item select this option. # - Name: By default it will use the name generated by Cura (EG: TT_Test_Cube) - Type a custom name in here # - Max Layer: Enabling this will show how many layers are in the entire print (EG: Layer 1 of 265!) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py index fd1c8af004..eb74955319 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py @@ -1,7 +1,7 @@ # Cura PostProcessingPlugin -# Author: Mathias Lyngklip Kjeldgaard, Alexander Gee, Kimmo Toivanen +# Author: Mathias Lyngklip Kjeldgaard, Alexander Gee, Kimmo Toivanen, Inigo Martinez # Date: July 31, 2019 -# Modified: Okt 22, 2020 +# Modified: Nov 30, 2021 # Description: This plugin displays progress on the LCD. It can output the estimated time remaining and the completion percentage. @@ -37,7 +37,8 @@ class DisplayProgressOnLCD(Script): "type": "enum", "options": { "m117":"M117 - All printers", - "m73":"M73 - Prusa, Marlin 2" + "m73":"M73 - Prusa, Marlin 2", + "m118":"M118 - Octoprint" }, "enabled": "time_remaining", "default_value": "m117" @@ -77,6 +78,10 @@ class DisplayProgressOnLCD(Script): current_time_string = "{:d}h{:02d}m{:02d}s".format(int(h), int(m), int(s)) # And now insert that into the GCODE lines.insert(line_index, "M117 Time Left {}".format(current_time_string)) + elif mode == "m118": + current_time_string = "{:d}h{:02d}m{:02d}s".format(int(h), int(m), int(s)) + # And now insert that into the GCODE + lines.insert(line_index, "M118 A1 P0 action:notification Time Left {}".format(current_time_string)) else: mins = int(60 * h + m + s / 30) lines.insert(line_index, "M73 R{}".format(mins)) @@ -107,7 +112,10 @@ class DisplayProgressOnLCD(Script): if output_percentage: # Emit 0 percent to sure Marlin knows we are overriding the completion percentage - lines.insert(line_index, "M73 P0") + if output_time_method == "m118": + lines.insert(line_index, "M118 A1 P0 action:notification Data Left 0/100") + else: + lines.insert(line_index, "M73 P0") elif line.startswith(";TIME_ELAPSED:"): # We've found one of the time elapsed values which are added at the end of layers @@ -178,7 +186,10 @@ class DisplayProgressOnLCD(Script): output = min(percentage + previous_layer_end_percentage, 100) # Now insert the sanitized percentage into the GCODE - lines.insert(percentage_line_index, "M73 P{}".format(output)) + if output_time_method == "m118": + lines.insert(percentage_line_index, "M118 A1 P0 action:notification Data Left {}/100".format(output)) + else: + lines.insert(percentage_line_index, "M73 P{}".format(output)) previous_layer_end_percentage = layer_end_percentage diff --git a/plugins/PostProcessingPlugin/scripts/FilamentChange.py b/plugins/PostProcessingPlugin/scripts/FilamentChange.py index 17ff045b8d..ff62e1949c 100644 --- a/plugins/PostProcessingPlugin/scripts/FilamentChange.py +++ b/plugins/PostProcessingPlugin/scripts/FilamentChange.py @@ -7,6 +7,8 @@ from typing import List from ..Script import Script +from UM.Application import Application #To get the current printer's settings. + class FilamentChange(Script): _layer_keyword = ";LAYER:" @@ -81,10 +83,51 @@ class FilamentChange(Script): "type": "float", "default_value": 0, "minimum_value": 0 + }, + "retract_method": + { + "label": "Retract method", + "description": "The gcode variant to use for retract.", + "type": "enum", + "options": {"U": "Marlin (M600 U)", "L": "Reprap (M600 L)"}, + "default_value": "U", + "value": "\\\"L\\\" if machine_gcode_flavor==\\\"RepRap (RepRap)\\\" else \\\"U\\\"", + "enabled": "not firmware_config" + }, + "machine_gcode_flavor": + { + "label": "G-code flavor", + "description": "The type of g-code to be generated. This setting is controlled by the script and will not be visible.", + "type": "enum", + "options": + { + "RepRap (Marlin/Sprinter)": "Marlin", + "RepRap (Volumetric)": "Marlin (Volumetric)", + "RepRap (RepRap)": "RepRap", + "UltiGCode": "Ultimaker 2", + "Griffin": "Griffin", + "Makerbot": "Makerbot", + "BFB": "Bits from Bytes", + "MACH3": "Mach3", + "Repetier": "Repetier" + }, + "default_value": "RepRap (Marlin/Sprinter)", + "enabled": "false" } } }""" + ## Copy machine name and gcode flavor from global stack so we can use their value in the script stack + def initialize(self) -> None: + super().initialize() + + global_container_stack = Application.getInstance().getGlobalContainerStack() + if global_container_stack is None or self._instance is None: + return + + for key in ["machine_gcode_flavor"]: + self._instance.setProperty(key, "value", global_container_stack.getProperty(key, "value")) + def execute(self, data: List[str]): """Inserts the filament change g-code at specific layer numbers. @@ -106,7 +149,10 @@ class FilamentChange(Script): color_change = color_change + (" E%.2f" % initial_retract) if later_retract is not None and later_retract > 0.: - color_change = color_change + (" L%.2f" % later_retract) + # Reprap uses 'L': https://reprap.org/wiki/G-code#M600:_Filament_change_pause + # Marlin uses 'U' https://marlinfw.org/docs/gcode/M600.html + retract_method = self.getSettingValueByKey("retract_method") + color_change = color_change + (" %s%.2f" % (retract_method, later_retract)) if x_pos is not None: color_change = color_change + (" X%.2f" % x_pos) diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index 5c28073fb1..b31b8efa7c 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -54,10 +54,10 @@ class PauseAtHeight(Script): "label": "Method", "description": "The method or gcode command to use for pausing.", "type": "enum", - "options": {"marlin": "Marlin (M0)", "griffin": "Griffin (M0, firmware retract)", "bq": "BQ (M25)", "reprap": "RepRap (M226)", "repetier": "Repetier (@pause)"}, + "options": {"marlin": "Marlin (M0)", "griffin": "Griffin (M0, firmware retract)", "bq": "BQ (M25)", "reprap": "RepRap (M226)", "repetier": "Repetier/OctoPrint (@pause)"}, "default_value": "marlin", "value": "\\\"griffin\\\" if machine_gcode_flavor==\\\"Griffin\\\" else \\\"reprap\\\" if machine_gcode_flavor==\\\"RepRap (RepRap)\\\" else \\\"repetier\\\" if machine_gcode_flavor==\\\"Repetier\\\" else \\\"bq\\\" if \\\"BQ\\\" in machine_name or \\\"Flying Bear Ghost 4S\\\" in machine_name else \\\"marlin\\\"" - }, + }, "disarm_timeout": { "label": "Disarm timeout", @@ -69,6 +69,14 @@ class PauseAtHeight(Script): "maximum_value_warning": "1800", "unit": "s" }, + "head_park_enabled": + { + "label": "Park Print", + "description": "Instruct the head to move to a safe location when pausing. Leave this unchecked if your printer handles parking for you.", + "type": "bool", + "default_value": true, + "enabled": "pause_method != \\\"griffin\\\"" + }, "head_park_x": { "label": "Park Print Head X", @@ -76,7 +84,7 @@ class PauseAtHeight(Script): "unit": "mm", "type": "float", "default_value": 190, - "enabled": "pause_method != \\\"griffin\\\"" + "enabled": "head_park_enabled and pause_method != \\\"griffin\\\"" }, "head_park_y": { @@ -85,7 +93,7 @@ class PauseAtHeight(Script): "unit": "mm", "type": "float", "default_value": 190, - "enabled": "pause_method != \\\"griffin\\\"" + "enabled": "head_park_enabled and pause_method != \\\"griffin\\\"" }, "head_move_z": { @@ -94,7 +102,7 @@ class PauseAtHeight(Script): "unit": "mm", "type": "float", "default_value": 15.0, - "enabled": "pause_method == \\\"repetier\\\"" + "enabled": "head_park_enabled and pause_method == \\\"repetier\\\"" }, "retraction_amount": { @@ -239,6 +247,7 @@ class PauseAtHeight(Script): retraction_speed = self.getSettingValueByKey("retraction_speed") extrude_amount = self.getSettingValueByKey("extrude_amount") extrude_speed = self.getSettingValueByKey("extrude_speed") + park_enabled = self.getSettingValueByKey("head_park_enabled") park_x = self.getSettingValueByKey("head_park_x") park_y = self.getSettingValueByKey("head_park_y") move_z = self.getSettingValueByKey("head_move_z") @@ -389,11 +398,12 @@ class PauseAtHeight(Script): if retraction_amount != 0: prepend_gcode += self.putValue(G = 1, E = -retraction_amount, F = 6000) + "\n" - #Move the head away - prepend_gcode += self.putValue(G = 1, Z = current_z + 1, F = 300) + " ; move up a millimeter to get out of the way\n" - prepend_gcode += self.putValue(G = 1, X = park_x, Y = park_y, F = 9000) + "\n" - if current_z < move_z: - prepend_gcode += self.putValue(G = 1, Z = current_z + move_z, F = 300) + "\n" + if park_enabled: + #Move the head away + prepend_gcode += self.putValue(G = 1, Z = current_z + 1, F = 300) + " ; move up a millimeter to get out of the way\n" + prepend_gcode += self.putValue(G = 1, X = park_x, Y = park_y, F = 9000) + "\n" + if current_z < move_z: + prepend_gcode += self.putValue(G = 1, Z = current_z + move_z, F = 300) + "\n" #Disable the E steppers prepend_gcode += self.putValue(M = 84, E = 0) + "\n" @@ -409,14 +419,15 @@ class PauseAtHeight(Script): else: prepend_gcode += self.putValue(G = 1, E = -retraction_amount, F = retraction_speed * 60) + "\n" - # Move the head away - prepend_gcode += self.putValue(G = 1, Z = current_z + 1, F = 300) + " ; move up a millimeter to get out of the way\n" + if park_enabled: + # Move the head away + prepend_gcode += self.putValue(G = 1, Z = current_z + 1, F = 300) + " ; move up a millimeter to get out of the way\n" - # This line should be ok - prepend_gcode += self.putValue(G = 1, X = park_x, Y = park_y, F = 9000) + "\n" + # This line should be ok + prepend_gcode += self.putValue(G = 1, X = park_x, Y = park_y, F = 9000) + "\n" - if current_z < 15: - prepend_gcode += self.putValue(G = 1, Z = 15, F = 300) + " ; too close to bed--move to at least 15mm\n" + if current_z < 15: + prepend_gcode += self.putValue(G = 1, Z = 15, F = 300) + " ; too close to bed--move to at least 15mm\n" if control_temperatures: # Set extruder standby temperature @@ -447,7 +458,7 @@ class PauseAtHeight(Script): # Optionally extrude material if extrude_amount != 0: - prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = 200) + "\n" + prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = 200) + "; Extra extrude after the unpause\n" prepend_gcode += self.putValue("@info wait for cleaning nozzle from previous filament") + "\n" prepend_gcode += self.putValue("@pause remove the waste filament from parking area and press continue printing") + "\n" @@ -456,8 +467,10 @@ class PauseAtHeight(Script): prepend_gcode += self.putValue(G = 1, E = -retraction_amount, F = 6000) + "\n" #Move the head back - prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + "\n" - prepend_gcode += self.putValue(G = 1, X = x, Y = y, F = 9000) + "\n" + if park_enabled: + prepend_gcode += self.putValue(G = 1, X = x, Y = y, F = 9000) + "\n" + prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + "\n" + if retraction_amount != 0: prepend_gcode += self.putValue(G = 1, E = retraction_amount, F = 6000) + "\n" @@ -466,7 +479,15 @@ class PauseAtHeight(Script): else: Logger.log("w", "No previous feedrate found in gcode, feedrate for next layer(s) might be incorrect") - prepend_gcode += self.putValue(M = 82) + "\n" + extrusion_mode_string = "absolute" + extrusion_mode_numeric = 82 + + relative_extrusion = Application.getInstance().getGlobalContainerStack().getProperty("relative_extrusion", "value") + if relative_extrusion: + extrusion_mode_string = "relative" + extrusion_mode_numeric = 83 + + prepend_gcode += self.putValue(M = extrusion_mode_numeric) + " ; switch back to " + extrusion_mode_string + " E values\n" # reset extrude value to pre pause value prepend_gcode += self.putValue(G = 92, E = current_e) + "\n" @@ -476,24 +497,25 @@ class PauseAtHeight(Script): # Set extruder resume temperature prepend_gcode += self.putValue(M = 109, S = int(target_temperature.get(current_t, 0))) + " ; resume temperature\n" - # Push the filament back, - if retraction_amount != 0: - prepend_gcode += self.putValue(G = 1, E = retraction_amount, F = retraction_speed * 60) + "\n" + if extrude_amount != 0: # Need to prime after the pause. + # Push the filament back. + if retraction_amount != 0: + prepend_gcode += self.putValue(G = 1, E = retraction_amount, F = retraction_speed * 60) + "\n" - # Optionally extrude material - if extrude_amount != 0: - prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = extrude_speed * 60) + "\n" + # Prime the material. + prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = extrude_speed * 60) + "; Extra extrude after the unpause\n" - # and retract again, the properly primes the nozzle - # when changing filament. - if retraction_amount != 0: - prepend_gcode += self.putValue(G = 1, E = -retraction_amount, F = retraction_speed * 60) + "\n" + # And retract again to make the movements back to the starting position. + if retraction_amount != 0: + prepend_gcode += self.putValue(G = 1, E = -retraction_amount, F = retraction_speed * 60) + "\n" # Move the head back - if current_z < 15: - prepend_gcode += self.putValue(G = 1, Z = current_z + 1, F = 300) + "\n" - prepend_gcode += self.putValue(G = 1, X = x, Y = y, F = 9000) + "\n" - prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + " ; move back down to resume height\n" + if park_enabled: + if current_z < 15: + prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + "\n" + prepend_gcode += self.putValue(G = 1, X = x, Y = y, F = 9000) + "\n" + prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + " ; move back down to resume height\n" + if retraction_amount != 0: if firmware_retract: #Can't set the distance directly to what the user wants. We have to choose ourselves. retraction_count = 1 if control_temperatures else 3 #Retract more if we don't control the temperature. diff --git a/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py b/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py index a0c3648304..40a56ace57 100644 --- a/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py +++ b/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017 Ruben Dulek +# Copyright (c) 2017 Ghostkeeper # The PostProcessingPlugin is released under the terms of the AGPLv3 or higher. import re #To perform the search and replace. diff --git a/plugins/PostProcessingPlugin/scripts/Stretch.py b/plugins/PostProcessingPlugin/scripts/Stretch.py index e56a9f48b1..924563d305 100644 --- a/plugins/PostProcessingPlugin/scripts/Stretch.py +++ b/plugins/PostProcessingPlugin/scripts/Stretch.py @@ -195,7 +195,7 @@ class Stretcher: i.e. it is a travel move """ if i_pos == 0: - return True # Begining a layer always breaks filament (for simplicity) + return True # Beginning a layer always breaks filament (for simplicity) step = layer_steps[i_pos] prev_step = layer_steps[i_pos - 1] if step.step_e != prev_step.step_e: diff --git a/plugins/PrepareStage/PrepareMain.qml b/plugins/PrepareStage/PrepareMain.qml index ab3cf0e07c..1347be674d 100644 --- a/plugins/PrepareStage/PrepareMain.qml +++ b/plugins/PrepareStage/PrepareMain.qml @@ -1,10 +1,7 @@ -//Copyright (c) 2020 Ultimaker B.V. +//Copyright (c) 2021 Ultimaker B.V. //Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.4 -import QtQuick.Controls 1.2 -import QtQuick.Layouts 1.1 -import QtQuick.Controls.Styles 1.1 import UM 1.0 as UM import Cura 1.0 as Cura diff --git a/plugins/PrepareStage/PrepareMenu.qml b/plugins/PrepareStage/PrepareMenu.qml index cf7665bda6..f0779df98f 100644 --- a/plugins/PrepareStage/PrepareMenu.qml +++ b/plugins/PrepareStage/PrepareMenu.qml @@ -5,7 +5,7 @@ import QtQuick 2.9 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -131,14 +131,10 @@ Item height: UM.Theme.getSize("action_button").height hoverEnabled: true - contentItem: Label + contentItem: UM.Label { text: model.displayText - color: UM.Theme.getColor("text") font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter - width: contentWidth height: parent.height } diff --git a/plugins/PreviewStage/PreviewMain.qml b/plugins/PreviewStage/PreviewMain.qml index 2926f0d012..25e53318dc 100644 --- a/plugins/PreviewStage/PreviewMain.qml +++ b/plugins/PreviewStage/PreviewMain.qml @@ -1,11 +1,7 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2021 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.4 -import QtQuick.Controls 1.2 -import QtQuick.Layouts 1.1 -import QtQuick.Controls.Styles 1.1 - import UM 1.0 as UM import Cura 1.0 as Cura diff --git a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py index 05543813db..067773d988 100644 --- a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py +++ b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py @@ -136,7 +136,7 @@ class RemovableDriveOutputDevice(OutputDevice): self._stream.close() self._stream = None except: - Logger.logException("w", "An execption occured while trying to write to removable drive.") + Logger.logException("w", "An exception occurred while trying to write to removable drive.") message = Message(catalog.i18nc("@info:status", "Could not save to removable drive {0}: {1}").format(self.getName(),str(job.getError())), title = catalog.i18nc("@info:title", "Error"), message_type = Message.MessageType.ERROR) diff --git a/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py b/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py index d59d1296e3..d60e4b34f0 100644 --- a/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py +++ b/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py @@ -48,7 +48,7 @@ class RemovableDrivePlugin(OutputDevicePlugin): result = False if result: - Logger.log("i", "Succesfully ejected the device") + Logger.log("i", "Successfully ejected the device") return result def performEjectDevice(self, device): diff --git a/plugins/SentryLogger/SentryLogger.py b/plugins/SentryLogger/SentryLogger.py index 29230abb1f..0a65e1e00a 100644 --- a/plugins/SentryLogger/SentryLogger.py +++ b/plugins/SentryLogger/SentryLogger.py @@ -11,7 +11,6 @@ try: except ImportError: pass from typing import Optional -import os class SentryLogger(LogOutput): diff --git a/plugins/SimulationView/LayerSlider.qml b/plugins/SimulationView/LayerSlider.qml index d6de45df9b..0a24ca9023 100644 --- a/plugins/SimulationView/LayerSlider.qml +++ b/plugins/SimulationView/LayerSlider.qml @@ -1,10 +1,8 @@ -// Copyright (c) 2017 Ultimaker B.V. +// Copyright (c) 2021 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.2 import QtQuick.Layouts 1.1 -import QtQuick.Controls.Styles 1.1 import UM 1.0 as UM import Cura 1.0 as Cura @@ -187,7 +185,7 @@ Item { sliderRoot.manuallyChanged = true - // don't allow the lower handle to be heigher than the upper handle + // don't allow the lower handle to be higher than the upper handle if (lowerHandle.y - (y + height) < sliderRoot.minimumRangeHandleSize) { lowerHandle.y = y + height + sliderRoot.minimumRangeHandleSize @@ -300,7 +298,7 @@ Item // don't allow the upper handle to be lower than the lower handle if (y - (upperHandle.y + upperHandle.height) < sliderRoot.minimumRangeHandleSize) { - upperHandle.y = y - (upperHandle.heigth + sliderRoot.minimumRangeHandleSize) + upperHandle.y = y - (upperHandle.height + sliderRoot.minimumRangeHandleSize) } // update the range handle diff --git a/plugins/SimulationView/PathSlider.qml b/plugins/SimulationView/PathSlider.qml index facdbb6a53..70e5acc4f1 100644 --- a/plugins/SimulationView/PathSlider.qml +++ b/plugins/SimulationView/PathSlider.qml @@ -1,10 +1,8 @@ -// Copyright (c) 2017 Ultimaker B.V. +// Copyright (c) 2021 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.2 import QtQuick.Layouts 1.1 -import QtQuick.Controls.Styles 1.1 import UM 1.0 as UM import Cura 1.0 as Cura diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index 2754fb5d94..1294b37db4 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from UM.Math.Color import Color diff --git a/plugins/SimulationView/SimulationSliderLabel.qml b/plugins/SimulationView/SimulationSliderLabel.qml index c1fb0f4de9..1c434ae935 100644 --- a/plugins/SimulationView/SimulationSliderLabel.qml +++ b/plugins/SimulationView/SimulationSliderLabel.qml @@ -1,14 +1,15 @@ -// Copyright (c) 2017 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. + import QtQuick 2.5 -import QtQuick.Controls 1.2 +import QtQuick.Controls 2.2 import QtQuick.Layouts 1.1 -import QtQuick.Controls.Styles 1.1 import UM 1.0 as UM import Cura 1.0 as Cura -UM.PointingRectangle { +UM.PointingRectangle +{ id: sliderLabelRoot // custom properties @@ -28,47 +29,41 @@ UM.PointingRectangle { borderColor: UM.Theme.getColor("lining") borderWidth: UM.Theme.getSize("default_lining").width - Behavior on height { - NumberAnimation { - duration: 50 - } - } + Behavior on height { NumberAnimation { duration: 50 } } // catch all mouse events so they're not handled by underlying 3D scene - MouseArea { + MouseArea + { anchors.fill: parent } - TextMetrics { + TextMetrics + { id: maxValueMetrics font: valueLabel.font text: maximumValue + 1 // layers are 0 based, add 1 for display value - } - TextField { + TextField + { id: valueLabel - anchors { - verticalCenter: parent.verticalCenter - horizontalCenter: parent.horizontalCenter - alignWhenCentered: false - } + anchors.centerIn: parent - width: maxValueMetrics.width + UM.Theme.getSize("default_margin").width + //width: maxValueMetrics.contentWidth + 2 * UM.Theme.getSize("default_margin").width text: sliderLabelRoot.value + startFrom // the current handle value, add 1 because layers is an array horizontalAlignment: TextInput.AlignHCenter + leftPadding: UM.Theme.getSize("narrow_margin").width + rightPadding: UM.Theme.getSize("narrow_margin").width - // key bindings, work when label is currenctly focused (active handle in LayerSlider) + // key bindings, work when label is currently focused (active handle in LayerSlider) Keys.onUpPressed: sliderLabelRoot.setValue(sliderLabelRoot.value + ((event.modifiers & Qt.ShiftModifier) ? 10 : 1)) Keys.onDownPressed: sliderLabelRoot.setValue(sliderLabelRoot.value - ((event.modifiers & Qt.ShiftModifier) ? 10 : 1)) - - style: TextFieldStyle { - textColor: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - background: Item { } - } + color: UM.Theme.getColor("text") + font: UM.Theme.getFont("default") + renderType: Text.NativeRendering + background: Item {} + selectByMouse: true onEditingFinished: { @@ -84,16 +79,18 @@ UM.PointingRectangle { } } - validator: IntValidator { + validator: IntValidator + { bottom: startFrom top: sliderLabelRoot.maximumValue + startFrom // +startFrom because maybe we want to start in a different value rather than 0 } } - - BusyIndicator { + BusyIndicator + { id: busyIndicator - anchors { + anchors + { left: parent.right leftMargin: Math.round(UM.Theme.getSize("default_margin").width / 2) verticalCenter: parent.verticalCenter diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index 9232516673..4fb238f6da 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -2,9 +2,6 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.4 -import QtQuick.Controls 1.2 -import QtQuick.Layouts 1.1 -import QtQuick.Controls.Styles 1.1 import UM 1.4 as UM import Cura 1.0 as Cura @@ -190,11 +187,11 @@ Item } } - // Scrolls trough Z layers + // Scrolls through Z layers LayerSlider { property var preferredHeight: UM.Theme.getSize("slider_layerview_size").height - property double heightMargin: UM.Theme.getSize("default_margin").height * 3 // extra margin to accomodate layer number tooltips + property double heightMargin: UM.Theme.getSize("default_margin").height * 3 // extra margin to accommodate layer number tooltips property double layerSliderSafeHeight: layerSliderSafeYMax - layerSliderSafeYMin id: layerSlider diff --git a/plugins/SimulationView/SimulationViewMenuComponent.qml b/plugins/SimulationView/SimulationViewMenuComponent.qml index 6dde44c8ae..ba13a75ea7 100644 --- a/plugins/SimulationView/SimulationViewMenuComponent.qml +++ b/plugins/SimulationView/SimulationViewMenuComponent.qml @@ -1,13 +1,12 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.4 -import QtQuick.Controls 1.2 import QtQuick.Layouts 1.1 -import QtQuick.Controls.Styles 1.1 +import QtQuick.Controls 2.1 import QtGraphicalEffects 1.0 -import UM 1.0 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -43,22 +42,19 @@ Cura.ExpandableComponent headerItem: Item { - Label + UM.Label { id: colorSchemeLabel text: catalog.i18nc("@label", "Color scheme") - verticalAlignment: Text.AlignVCenter height: parent.height elide: Text.ElideRight font: UM.Theme.getFont("medium") color: UM.Theme.getColor("text_medium") - renderType: Text.NativeRendering } - Label + UM.Label { text: layerTypeCombobox.currentText - verticalAlignment: Text.AlignVCenter anchors { left: colorSchemeLabel.right @@ -68,8 +64,6 @@ Cura.ExpandableComponent height: parent.height elide: Text.ElideRight font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } } @@ -99,7 +93,8 @@ Cura.ExpandableComponent spacing: UM.Theme.getSize("layerview_row_spacing").height - ListModel // matches SimulationView.py + // matches SimulationView.py + ListModel { id: layerViewTypes } @@ -132,18 +127,17 @@ Cura.ExpandableComponent }) } - ComboBox + Cura.ComboBox { id: layerTypeCombobox + textRole: "text" + valueRole: "type_id" width: parent.width + implicitHeight: UM.Theme.getSize("setting_control").height model: layerViewTypes visible: !UM.SimulationView.compatibilityMode - style: UM.Theme.styles.combobox - onActivated: - { - UM.Preferences.setValue("layerview/layer_view_type", index); - } + onActivated: UM.Preferences.setValue("layerview/layer_view_type", index) Component.onCompleted: { @@ -165,16 +159,13 @@ Cura.ExpandableComponent } } - Label + UM.Label { id: compatibilityModeLabel text: catalog.i18nc("@label", "Compatibility Mode") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") visible: UM.SimulationView.compatibilityMode height: UM.Theme.getSize("layerview_row").height width: parent.width - renderType: Text.NativeRendering } Item // Spacer @@ -187,7 +178,7 @@ Cura.ExpandableComponent { model: CuraApplication.getExtrudersModel() - CheckBox + UM.CheckBox { id: extrudersModelCheckBox checked: viewSettings.extruder_opacities[index] > 0.5 || viewSettings.extruder_opacities[index] == undefined || viewSettings.extruder_opacities[index] == "" @@ -201,8 +192,6 @@ Cura.ExpandableComponent UM.Preferences.setValue("layerview/extruder_opacities", viewSettings.extruder_opacities.join("|")); } - style: UM.Theme.styles.checkbox - Rectangle { id: swatch @@ -215,12 +204,11 @@ Cura.ExpandableComponent border.color: UM.Theme.getColor("lining") } - Label + UM.Label { text: model.name elide: Text.ElideRight color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") anchors { verticalCenter: parent.verticalCenter @@ -229,7 +217,6 @@ Cura.ExpandableComponent leftMargin: UM.Theme.getSize("checkbox").width + Math.round(UM.Theme.getSize("default_margin").width / 2) rightMargin: UM.Theme.getSize("default_margin").width * 2 } - renderType: Text.NativeRendering } } } @@ -277,7 +264,7 @@ Cura.ExpandableComponent } } - CheckBox + UM.CheckBox { id: legendModelCheckBox checked: model.initialValue @@ -285,8 +272,6 @@ Cura.ExpandableComponent height: UM.Theme.getSize("layerview_row").height + UM.Theme.getSize("default_lining").height width: parent.width - style: UM.Theme.styles.checkbox - Rectangle { anchors.verticalCenter: parent.verticalCenter @@ -299,7 +284,7 @@ Cura.ExpandableComponent visible: viewSettings.show_legend } - Label + UM.Label { text: label font: UM.Theme.getFont("default") @@ -315,24 +300,22 @@ Cura.ExpandableComponent } } - CheckBox + UM.CheckBox { checked: viewSettings.only_show_top_layers onClicked: UM.Preferences.setValue("view/only_show_top_layers", checked ? 1.0 : 0.0) text: catalog.i18nc("@label", "Only Show Top Layers") visible: UM.SimulationView.compatibilityMode - style: UM.Theme.styles.checkbox width: parent.width } - CheckBox + UM.CheckBox { checked: viewSettings.top_layer_count == 5 onClicked: UM.Preferences.setValue("view/top_layer_count", checked ? 5 : 1) text: catalog.i18nc("@label", "Show 5 Detailed Layers On Top") width: parent.width visible: UM.SimulationView.compatibilityMode - style: UM.Theme.styles.checkbox } Repeater @@ -353,7 +336,7 @@ Cura.ExpandableComponent } } - Label + UM.Label { text: label visible: viewSettings.show_legend @@ -362,8 +345,6 @@ Cura.ExpandableComponent height: UM.Theme.getSize("layerview_row").height + UM.Theme.getSize("default_lining").height width: parent.width color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering Rectangle { anchors.verticalCenter: parent.verticalCenter @@ -388,7 +369,7 @@ Cura.ExpandableComponent width: parent.width height: UM.Theme.getSize("layerview_row").height - Label //Minimum value. + UM.Label //Minimum value. { text: { @@ -419,12 +400,9 @@ Cura.ExpandableComponent return catalog.i18nc("@label","min") } anchors.left: parent.left - color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } - Label //Unit in the middle. + UM.Label //Unit in the middle. { text: { @@ -456,10 +434,9 @@ Cura.ExpandableComponent anchors.horizontalCenter: parent.horizontalCenter color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") } - Label //Maximum value. + UM.Label //Maximum value. { text: { if (UM.SimulationView.layerActivity && CuraApplication.platformActivity) @@ -490,7 +467,6 @@ Cura.ExpandableComponent anchors.right: parent.right color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") } } diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader index f9d67f284c..b43d998690 100644 --- a/plugins/SimulationView/layers3d.shader +++ b/plugins/SimulationView/layers3d.shader @@ -56,12 +56,12 @@ vertex41core = value = (abs_value - min_value) / (max_value - min_value); } float red = value; - float green = 1-abs(1-4*value); + float green = 1.0 - abs(1.0 - 4.0 * value); if (value > 0.375) { green = 0.5; } - float blue = max(1-4*value, 0); + float blue = max(1.0 - 4.0 * value, 0.0); return vec4(red, green, blue, 1.0); } @@ -76,7 +76,7 @@ vertex41core = { value = (abs_value - min_value) / (max_value - min_value); } - float red = min(max(4*value-2, 0), 1); + float red = min(max(4.0 * value - 2.0, 0.0), 1.0); float green = min(1.5*value, 0.75); if (value > 0.75) { @@ -98,18 +98,18 @@ vertex41core = value = (abs_value - min_value) / (max_value - min_value); } float red = value; - float green = 1 - abs(1 - 4 * value); + float green = 1.0 - abs(1.0 - 4.0 * value); if(value > 0.375) { green = 0.5; } - float blue = max(1 - 4 * value, 0); + float blue = max(1.0 - 4.0 * value, 0.0); return vec4(red, green, blue, 1.0); } float clamp(float v) { - float t = v < 0 ? 0 : v; + float t = v < 0.0 ? 0.0 : v; return t > 1.0 ? 1.0 : t; } diff --git a/plugins/SimulationView/plugin.json b/plugins/SimulationView/plugin.json index 5ea5e20596..39c528f89d 100644 --- a/plugins/SimulationView/plugin.json +++ b/plugins/SimulationView/plugin.json @@ -2,7 +2,7 @@ "name": "Simulation View", "author": "Ultimaker B.V.", "version": "1.0.1", - "description": "Provides the Simulation view.", + "description": "Provides the preview of sliced layerdata.", "api": 7, "i18n-catalog": "cura" } diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 02e71207e0..0e8db0f88a 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -130,6 +130,7 @@ class SliceInfo(QObject, Extension): data["cura_version"] = self._application.getVersion() data["cura_build_type"] = ApplicationMetadata.CuraBuildType org_id = user_profile.get("organization_id", None) if user_profile else None + data["is_logged_in"] = self._application.getCuraAPI().account.isLoggedIn data["organization_id"] = org_id if org_id else None data["subscriptions"] = user_profile.get("subscriptions", []) if user_profile else [] diff --git a/plugins/SliceInfoPlugin/example_data.html b/plugins/SliceInfoPlugin/example_data.html index 5b97f1cba6..85a9f554ff 100644 --- a/plugins/SliceInfoPlugin/example_data.html +++ b/plugins/SliceInfoPlugin/example_data.html @@ -7,6 +7,7 @@ Intent Profile: Default
Quality Profile: Fast
Using Custom Settings: No
+ Is Logged In: Yes
Organization ID (if any): ABCDefGHIjKlMNOpQrSTUvYxWZ0-1234567890abcDE=
Subscriptions (if any):
    diff --git a/plugins/SupportEraser/SupportEraser.py b/plugins/SupportEraser/SupportEraser.py index 35f597dcc5..b64a0f4eed 100644 --- a/plugins/SupportEraser/SupportEraser.py +++ b/plugins/SupportEraser/SupportEraser.py @@ -6,6 +6,7 @@ from PyQt5.QtWidgets import QApplication from UM.Application import Application from UM.Math.Vector import Vector +from UM.Operations.TranslateOperation import TranslateOperation from UM.Tool import Tool from UM.Event import Event, MouseEvent from UM.Mesh.MeshBuilder import MeshBuilder @@ -120,8 +121,8 @@ class SupportEraser(Tool): # First add node to the scene at the correct position/scale, before parenting, so the eraser mesh does not get scaled with the parent op.addOperation(AddSceneNodeOperation(node, self._controller.getScene().getRoot())) op.addOperation(SetParentOperation(node, parent)) + op.addOperation(TranslateOperation(node, position, set_position = True)) op.push() - node.setPosition(position, CuraSceneNode.TransformSpace.World) CuraApplication.getInstance().getController().getScene().sceneChanged.emit(node) diff --git a/plugins/Toolbox/__init__.py b/plugins/Toolbox/__init__.py deleted file mode 100644 index 51f1b643d0..0000000000 --- a/plugins/Toolbox/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (c) 2018 Ultimaker B.V. -# Toolbox is released under the terms of the LGPLv3 or higher. - -from .src import Toolbox -from .src.CloudSync.SyncOrchestrator import SyncOrchestrator - - -def getMetaData(): - return {} - - -def register(app): - return { - "extension": [Toolbox.Toolbox(app), SyncOrchestrator(app)] - } diff --git a/plugins/Toolbox/plugin.json b/plugins/Toolbox/plugin.json deleted file mode 100644 index ed4a3eae97..0000000000 --- a/plugins/Toolbox/plugin.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "Toolbox", - "author": "Ultimaker B.V.", - "version": "1.0.1", - "api": 7, - "description": "Find, manage and install new Cura packages." -} diff --git a/plugins/Toolbox/resources/images/Shop.svg b/plugins/Toolbox/resources/images/Shop.svg deleted file mode 100755 index 5056a25c51..0000000000 --- a/plugins/Toolbox/resources/images/Shop.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/plugins/Toolbox/resources/images/installed_check.svg b/plugins/Toolbox/resources/images/installed_check.svg deleted file mode 100644 index 1f1302770b..0000000000 --- a/plugins/Toolbox/resources/images/installed_check.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/plugins/Toolbox/resources/qml/Toolbox.qml b/plugins/Toolbox/resources/qml/Toolbox.qml deleted file mode 100644 index b67d175194..0000000000 --- a/plugins/Toolbox/resources/qml/Toolbox.qml +++ /dev/null @@ -1,112 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -// Main window for the Toolbox - -import QtQuick 2.2 -import QtQuick.Dialogs 1.1 -import QtQuick.Window 2.2 -import UM 1.1 as UM - -import "./pages" -import "./dialogs" -import "./components" - -Window -{ - id: base - property var selection: null - title: catalog.i18nc("@title", "Marketplace") - modality: Qt.ApplicationModal - flags: Qt.Dialog | Qt.CustomizeWindowHint | Qt.WindowTitleHint | Qt.WindowCloseButtonHint - - width: UM.Theme.getSize("large_popup_dialog").width - height: UM.Theme.getSize("large_popup_dialog").height - minimumWidth: width - maximumWidth: minimumWidth - minimumHeight: height - maximumHeight: minimumHeight - color: UM.Theme.getColor("main_background") - UM.I18nCatalog - { - id: catalog - name: "cura" - } - Item - { - anchors.fill: parent - - WelcomePage - { - visible: toolbox.viewPage === "welcome" - } - - ToolboxHeader - { - id: header - visible: toolbox.viewPage !== "welcome" - } - - Item - { - id: mainView - width: parent.width - z: parent.z - 1 - anchors - { - top: header.bottom - bottom: footer.top - } - // TODO: This could be improved using viewFilter instead of viewCategory - ToolboxLoadingPage - { - id: viewLoading - visible: toolbox.viewCategory !== "installed" && toolbox.viewPage === "loading" - } - ToolboxErrorPage - { - id: viewErrored - visible: toolbox.viewCategory !== "installed" && toolbox.viewPage === "errored" - } - ToolboxDownloadsPage - { - id: viewDownloads - visible: toolbox.viewCategory !== "installed" && toolbox.viewPage === "overview" - } - ToolboxDetailPage - { - id: viewDetail - visible: toolbox.viewCategory !== "installed" && toolbox.viewPage === "detail" - } - ToolboxAuthorPage - { - id: viewAuthor - visible: toolbox.viewCategory !== "installed" && toolbox.viewPage === "author" - } - ToolboxInstalledPage - { - id: installedPluginList - visible: toolbox.viewCategory === "installed" - } - } - - ToolboxFooter - { - id: footer - visible: toolbox.restartRequired - height: visible ? UM.Theme.getSize("toolbox_footer").height : 0 - } - - Connections - { - target: toolbox - function onShowLicenseDialog() { licenseDialog.show() } - function onCloseLicenseDialog() { licenseDialog.close() } - } - - ToolboxLicenseDialog - { - id: licenseDialog - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxActionButtonStyle.qml b/plugins/Toolbox/resources/qml/components/ToolboxActionButtonStyle.qml deleted file mode 100644 index eff74278c9..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxActionButtonStyle.qml +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.2 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.1 as UM - -ButtonStyle -{ - background: Rectangle - { - implicitWidth: UM.Theme.getSize("toolbox_action_button").width - implicitHeight: UM.Theme.getSize("toolbox_action_button").height - color: "transparent" - border - { - width: UM.Theme.getSize("default_lining").width - color: UM.Theme.getColor("lining") - } - } - label: Label - { - text: control.text - color: UM.Theme.getColor("text") - verticalAlignment: Text.AlignVCenter - horizontalAlignment: Text.AlignHCenter - } -} \ No newline at end of file diff --git a/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml b/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml deleted file mode 100644 index 9874a977f5..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.1 as UM - -Item -{ - id: sidebar - height: parent.height - width: UM.Theme.getSize("toolbox_back_column").width - anchors - { - top: parent.top - left: parent.left - topMargin: UM.Theme.getSize("wide_margin").height - leftMargin: UM.Theme.getSize("default_margin").width - rightMargin: UM.Theme.getSize("default_margin").width - } - Button - { - id: button - text: catalog.i18nc("@action:button", "Back") - enabled: !toolbox.isDownloading - UM.RecolorImage - { - id: backArrow - anchors - { - verticalCenter: parent.verticalCenter - left: parent.left - rightMargin: UM.Theme.getSize("default_margin").width - } - width: UM.Theme.getSize("standard_arrow").width - height: UM.Theme.getSize("standard_arrow").height - sourceSize - { - width: width - height: height - } - color: button.enabled ? (button.hovered ? UM.Theme.getColor("primary") : UM.Theme.getColor("text")) : UM.Theme.getColor("text_inactive") - source: UM.Theme.getIcon("ChevronSingleLeft") - } - width: UM.Theme.getSize("toolbox_back_button").width - height: UM.Theme.getSize("toolbox_back_button").height - onClicked: - { - toolbox.viewPage = "overview" - if (toolbox.viewCategory == "material") - { - toolbox.filterModelByProp("authors", "package_types", "material") - } - else if (toolbox.viewCategory == "plugin") - { - toolbox.filterModelByProp("packages", "type", "plugin") - } - - } - style: ButtonStyle - { - background: Rectangle - { - color: "transparent" - } - label: Label - { - id: labelStyle - text: control.text - color: control.enabled ? (control.hovered ? UM.Theme.getColor("primary") : UM.Theme.getColor("text")) : UM.Theme.getColor("text_inactive") - font: UM.Theme.getFont("medium_bold") - horizontalAlignment: Text.AlignLeft - anchors - { - left: parent.left - leftMargin: UM.Theme.getSize("default_margin").width - } - width: control.width - renderType: Text.NativeRendering - } - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml b/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml deleted file mode 100644 index e1f88a473f..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml +++ /dev/null @@ -1,209 +0,0 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 - -import UM 1.5 as UM - -Item -{ - id: base - - property var packageData - property var technicalDataSheetUrl: packageData.links.technicalDataSheet - property var safetyDataSheetUrl: packageData.links.safetyDataSheet - property var printingGuidelinesUrl: packageData.links.printingGuidelines - property var materialWebsiteUrl: packageData.links.website - - height: childrenRect.height - onVisibleChanged: packageData.type === "material" && (compatibilityItem.visible || dataSheetLinks.visible) - - Column - { - id: compatibilityItem - visible: packageData.has_configs - width: parent.width - // This is a bit of a hack, but the whole QML is pretty messy right now. This needs a big overhaul. - height: visible ? heading.height + table.height: 0 - - Label - { - id: heading - width: parent.width - text: catalog.i18nc("@label", "Compatibility") - wrapMode: Text.WordWrap - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - } - - TableView - { - id: table - width: parent.width - frameVisible: false - - // Workaround for scroll issues (QTBUG-49652) - flickableItem.interactive: false - Component.onCompleted: - { - for (var i = 0; i < flickableItem.children.length; ++i) - { - flickableItem.children[i].enabled = false - } - } - selectionMode: 0 - model: packageData.supported_configs - headerDelegate: Rectangle - { - color: UM.Theme.getColor("main_background") - height: UM.Theme.getSize("toolbox_chart_row").height - Label - { - anchors.verticalCenter: parent.verticalCenter - elide: Text.ElideRight - text: styleData.value || "" - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default_bold") - renderType: Text.NativeRendering - } - Rectangle - { - anchors.bottom: parent.bottom - height: UM.Theme.getSize("default_lining").height - width: parent.width - color: "black" - } - } - rowDelegate: Item - { - height: UM.Theme.getSize("toolbox_chart_row").height - Label - { - anchors.verticalCenter: parent.verticalCenter - elide: Text.ElideRight - text: styleData.value || "" - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - } - } - itemDelegate: Item - { - height: UM.Theme.getSize("toolbox_chart_row").height - Label - { - anchors.verticalCenter: parent.verticalCenter - elide: Text.ElideRight - text: styleData.value || "" - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - } - } - - Component - { - id: columnTextDelegate - Label - { - anchors.fill: parent - verticalAlignment: Text.AlignVCenter - text: styleData.value || "" - elide: Text.ElideRight - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - } - } - - TableViewColumn - { - role: "machine" - title: catalog.i18nc("@label:table_header", "Machine") - width: Math.floor(table.width * 0.25) - delegate: columnTextDelegate - } - TableViewColumn - { - role: "print_core" - title: "Print Core" //This term should not be translated. - width: Math.floor(table.width * 0.2) - } - TableViewColumn - { - role: "build_plate" - title: catalog.i18nc("@label:table_header", "Build Plate") - width: Math.floor(table.width * 0.225) - } - TableViewColumn - { - role: "support_material" - title: catalog.i18nc("@label:table_header", "Support") - width: Math.floor(table.width * 0.225) - } - TableViewColumn - { - role: "quality" - title: catalog.i18nc("@label:table_header", "Quality") - width: Math.floor(table.width * 0.1) - } - } - } - - Label - { - id: dataSheetLinks - anchors.top: compatibilityItem.bottom - anchors.topMargin: UM.Theme.getSize("narrow_margin").height - visible: base.technicalDataSheetUrl !== undefined || - base.safetyDataSheetUrl !== undefined || - base.printingGuidelinesUrl !== undefined || - base.materialWebsiteUrl !== undefined - - text: - { - var result = "" - if (base.technicalDataSheetUrl !== undefined) - { - var tds_name = catalog.i18nc("@action:label", "Technical Data Sheet") - result += "%2".arg(base.technicalDataSheetUrl).arg(tds_name) - } - if (base.safetyDataSheetUrl !== undefined) - { - if (result.length > 0) - { - result += "
    " - } - var sds_name = catalog.i18nc("@action:label", "Safety Data Sheet") - result += "%2".arg(base.safetyDataSheetUrl).arg(sds_name) - } - if (base.printingGuidelinesUrl !== undefined) - { - if (result.length > 0) - { - result += "
    " - } - var pg_name = catalog.i18nc("@action:label", "Printing Guidelines") - result += "%2".arg(base.printingGuidelinesUrl).arg(pg_name) - } - if (base.materialWebsiteUrl !== undefined) - { - if (result.length > 0) - { - result += "
    " - } - var pg_name = catalog.i18nc("@action:label", "Website") - result += "%2".arg(base.materialWebsiteUrl).arg(pg_name) - } - - return result - } - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - linkColor: UM.Theme.getColor("text_link") - onLinkActivated: UM.UrlUtil.openUrl(link, ["http", "https"]) - renderType: Text.NativeRendering - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxDetailList.qml b/plugins/Toolbox/resources/qml/components/ToolboxDetailList.qml deleted file mode 100644 index 22c6b6045f..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxDetailList.qml +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 -import UM 1.1 as UM - -Item -{ - id: detailList - ScrollView - { - clip: true - anchors.fill: detailList - - Column - { - anchors - { - right: parent.right - topMargin: UM.Theme.getSize("wide_margin").height - bottomMargin: UM.Theme.getSize("wide_margin").height - top: parent.top - } - height: childrenRect.height + 2 * UM.Theme.getSize("wide_margin").height - spacing: UM.Theme.getSize("default_margin").height - - Repeater - { - model: toolbox.packagesModel - delegate: Loader - { - // FIXME: When using asynchronous loading, on Mac and Windows, the tile may fail to load complete, - // leaving an empty space below the title part. We turn it off for now to make it work on Mac and - // Windows. - // Can be related to this QT bug: https://bugreports.qt.io/browse/QTBUG-50992 - asynchronous: false - source: "ToolboxDetailTile.qml" - } - } - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxDetailTile.qml b/plugins/Toolbox/resources/qml/components/ToolboxDetailTile.qml deleted file mode 100644 index 5badc6b66d..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxDetailTile.qml +++ /dev/null @@ -1,74 +0,0 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 - -import UM 1.1 as UM - -Item -{ - id: tile - width: detailList.width - UM.Theme.getSize("wide_margin").width - height: normalData.height + 2 * UM.Theme.getSize("wide_margin").height - Column - { - id: normalData - - anchors - { - top: parent.top - left: parent.left - right: controls.left - rightMargin: UM.Theme.getSize("wide_margin").width - } - - Label - { - width: parent.width - height: UM.Theme.getSize("toolbox_property_label").height - text: model.name - wrapMode: Text.WordWrap - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("medium_bold") - renderType: Text.NativeRendering - } - - Label - { - width: parent.width - text: model.description - maximumLineCount: 25 - elide: Text.ElideRight - wrapMode: Text.WordWrap - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - } - - ToolboxCompatibilityChart - { - width: parent.width - packageData: model - } - } - - ToolboxDetailTileActions - { - id: controls - anchors.right: tile.right - anchors.top: tile.top - width: childrenRect.width - height: childrenRect.height - packageData: model - } - - Rectangle - { - color: UM.Theme.getColor("lining") - width: tile.width - height: UM.Theme.getSize("default_lining").height - anchors.top: normalData.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height + UM.Theme.getSize("wide_margin").height //Normal margin for spacing after chart, wide margin between items. - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml b/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml deleted file mode 100644 index d683877605..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml +++ /dev/null @@ -1,121 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.5 as UM -import Cura 1.1 as Cura - -Column -{ - property bool installed: toolbox.isInstalled(model.id) - property bool canUpdate: CuraApplication.getPackageManager().packagesWithUpdate.indexOf(model.id) != -1 - property bool loginRequired: model.login_required && !Cura.API.account.isLoggedIn - property var packageData - - width: UM.Theme.getSize("toolbox_action_button").width - spacing: UM.Theme.getSize("narrow_margin").height - - Item - { - width: installButton.width - height: installButton.height - ToolboxProgressButton - { - id: installButton - active: toolbox.isDownloading && toolbox.activePackage == model - onReadyAction: - { - toolbox.activePackage = model - toolbox.startDownload(model.download_url) - } - onActiveAction: toolbox.cancelDownload() - - // Don't allow installing while another download is running - enabled: installed || (!(toolbox.isDownloading && toolbox.activePackage != model) && !loginRequired) - opacity: enabled ? 1.0 : 0.5 - visible: !updateButton.visible && !installed // Don't show when the update button is visible - } - - Cura.SecondaryButton - { - id: installedButton - visible: installed - onClicked: toolbox.viewCategory = "installed" - text: catalog.i18nc("@action:button", "Installed") - fixedWidthMode: true - width: installButton.width - height: installButton.height - } - } - - Label - { - wrapMode: Text.WordWrap - text: catalog.i18nc("@label:The string between and is the highlighted link", "Log in is required to install or update") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - linkColor: UM.Theme.getColor("text_link") - visible: loginRequired - width: installButton.width - renderType: Text.NativeRendering - - MouseArea - { - anchors.fill: parent - onClicked: Cura.API.account.login() - } - } - - Label - { - property var whereToBuyUrl: - { - var pg_name = "whereToBuy" - return (pg_name in packageData.links) ? packageData.links[pg_name] : undefined - } - - renderType: Text.NativeRendering - text: catalog.i18nc("@label:The string between and is the highlighted link", "Buy material spools") - linkColor: UM.Theme.getColor("text_link") - visible: whereToBuyUrl != undefined - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - MouseArea - { - anchors.fill: parent - onClicked: UM.UrlUtil.openUrl(parent.whereToBuyUrl, ["https", "http"]) - } - } - - ToolboxProgressButton - { - id: updateButton - active: toolbox.isDownloading && toolbox.activePackage == model - readyLabel: catalog.i18nc("@action:button", "Update") - activeLabel: catalog.i18nc("@action:button", "Updating") - completeLabel: catalog.i18nc("@action:button", "Updated") - - onReadyAction: - { - toolbox.activePackage = model - toolbox.update(model.id) - } - onActiveAction: toolbox.cancelDownload() - // Don't allow installing while another download is running - enabled: !(toolbox.isDownloading && toolbox.activePackage != model) && !loginRequired - opacity: enabled ? 1.0 : 0.5 - visible: canUpdate - } - - Connections - { - target: toolbox - function onInstallChanged() { installed = toolbox.isInstalled(model.id) } - function onFilterChanged() - { - installed = toolbox.isInstalled(model.id) - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxDownloadsGrid.qml b/plugins/Toolbox/resources/qml/components/ToolboxDownloadsGrid.qml deleted file mode 100644 index 6682281a31..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxDownloadsGrid.qml +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 -import UM 1.1 as UM - -Column -{ - property var heading: "" - property var model - id: gridArea - height: childrenRect.height + 2 * padding - width: parent.width - spacing: UM.Theme.getSize("default_margin").height - padding: UM.Theme.getSize("wide_margin").height - Label - { - id: heading - text: gridArea.heading - width: parent.width - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("large") - renderType: Text.NativeRendering - } - Grid - { - id: grid - width: parent.width - 2 * parent.padding - columns: 2 - columnSpacing: UM.Theme.getSize("default_margin").height - rowSpacing: UM.Theme.getSize("default_margin").width - Repeater - { - model: gridArea.model - delegate: Loader - { - asynchronous: true - width: Math.round((grid.width - (grid.columns - 1) * grid.columnSpacing) / grid.columns) - height: UM.Theme.getSize("toolbox_thumbnail_small").height - source: "ToolboxDownloadsGridTile.qml" - } - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxDownloadsGridTile.qml b/plugins/Toolbox/resources/qml/components/ToolboxDownloadsGridTile.qml deleted file mode 100644 index c310bd7121..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxDownloadsGridTile.qml +++ /dev/null @@ -1,125 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import QtQuick.Layouts 1.3 -import UM 1.1 as UM -import Cura 1.1 as Cura - -Item -{ - id: toolboxDownloadsGridTile - property int packageCount: (toolbox.viewCategory == "material" && model.type === undefined) ? toolbox.getTotalNumberOfMaterialPackagesByAuthor(model.id) : 1 - property int installedPackages: (toolbox.viewCategory == "material" && model.type === undefined) ? toolbox.getNumberOfInstalledPackagesByAuthor(model.id) : (toolbox.isInstalled(model.id) ? 1 : 0) - height: childrenRect.height - Layout.alignment: Qt.AlignTop | Qt.AlignLeft - - MouseArea - { - anchors.fill: parent - hoverEnabled: true - onEntered: thumbnail.border.color = UM.Theme.getColor("primary") - onExited: thumbnail.border.color = UM.Theme.getColor("lining") - onClicked: - { - base.selection = model - switch(toolbox.viewCategory) - { - case "material": - - // If model has a type, it must be a package - if (model.type !== undefined) - { - toolbox.viewPage = "detail" - toolbox.filterModelByProp("packages", "id", model.id) - } - else - { - toolbox.viewPage = "author" - toolbox.setFilters("packages", { - "author_id": model.id, - "type": "material" - }) - } - break - default: - toolbox.viewPage = "detail" - toolbox.filterModelByProp("packages", "id", model.id) - break - } - } - } - - Rectangle - { - id: thumbnail - width: UM.Theme.getSize("toolbox_thumbnail_small").width - height: UM.Theme.getSize("toolbox_thumbnail_small").height - color: UM.Theme.getColor("main_background") - border.width: UM.Theme.getSize("default_lining").width - border.color: UM.Theme.getColor("lining") - - Image - { - anchors.centerIn: parent - width: UM.Theme.getSize("toolbox_thumbnail_small").width - UM.Theme.getSize("wide_margin").width - height: UM.Theme.getSize("toolbox_thumbnail_small").height - UM.Theme.getSize("wide_margin").width - sourceSize.width: width - sourceSize.height: height - fillMode: Image.PreserveAspectFit - source: model.icon_url || "../../images/placeholder.svg" - mipmap: true - } - UM.RecolorImage - { - width: (parent.width * 0.4) | 0 - height: (parent.height * 0.4) | 0 - anchors - { - bottom: parent.bottom - right: parent.right - } - sourceSize.height: height - visible: installedPackages != 0 - color: (installedPackages >= packageCount) ? UM.Theme.getColor("primary") : UM.Theme.getColor("border") - source: "../../images/installed_check.svg" - } - } - Item - { - anchors - { - left: thumbnail.right - leftMargin: Math.floor(UM.Theme.getSize("narrow_margin").width) - right: parent.right - top: parent.top - bottom: parent.bottom - } - - Label - { - id: name - text: model.name - width: parent.width - elide: Text.ElideRight - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default_bold") - } - Label - { - id: info - text: model.description - elide: Text.ElideRight - width: parent.width - wrapMode: Text.WordWrap - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - anchors.top: name.bottom - anchors.bottom: parent.bottom - verticalAlignment: Text.AlignVCenter - maximumLineCount: 2 - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml b/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml deleted file mode 100644 index b3f6cb42e1..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.1 as UM - -Rectangle -{ - color: UM.Theme.getColor("secondary") - height: childrenRect.height - width: parent.width - Column - { - height: childrenRect.height + 2 * padding - spacing: UM.Theme.getSize("default_margin").height - width: parent.width - padding: UM.Theme.getSize("wide_margin").height - Item - { - width: parent.width - parent.padding * 2 - height: childrenRect.height - Label - { - id: heading - text: catalog.i18nc("@label", "Premium") - width: contentWidth - height: contentHeight - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("large") - renderType: Text.NativeRendering - } - UM.TooltipArea - { - width: childrenRect.width - height: childrenRect.height - anchors.right: parent.right - text: catalog.i18nc("@info:tooltip", "Go to Web Marketplace") - Label - { - text: "".arg(toolbox.getWebMarketplaceUrl("materials")) + catalog.i18nc("@label", "Search materials") + "" - width: contentWidth - height: contentHeight - horizontalAlignment: Text.AlignRight - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - - linkColor: UM.Theme.getColor("text_link") - onLinkActivated: Qt.openUrlExternally(link) - - visible: toolbox.viewCategory === "material" - } - } - } - Grid - { - height: childrenRect.height - spacing: UM.Theme.getSize("wide_margin").width - columns: 3 - anchors.horizontalCenter: parent.horizontalCenter - - Repeater - { - model: - { - if (toolbox.viewCategory == "plugin") - { - return toolbox.pluginsShowcaseModel - } - if (toolbox.viewCategory == "material") - { - return toolbox.materialsShowcaseModel - } - } - delegate: Loader - { - asynchronous: true - source: "ToolboxDownloadsShowcaseTile.qml" - } - } - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcaseTile.qml b/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcaseTile.qml deleted file mode 100644 index 6695921126..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcaseTile.qml +++ /dev/null @@ -1,114 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 - -import UM 1.1 as UM - -Rectangle -{ - property int packageCount: toolbox.viewCategory == "material" ? toolbox.getTotalNumberOfMaterialPackagesByAuthor(model.id) : 1 - property int installedPackages: toolbox.viewCategory == "material" ? toolbox.getNumberOfInstalledPackagesByAuthor(model.id) : (toolbox.isInstalled(model.id) ? 1 : 0) - id: tileBase - width: UM.Theme.getSize("toolbox_thumbnail_large").width + (2 * UM.Theme.getSize("default_lining").width) - height: thumbnail.height + packageName.height + UM.Theme.getSize("default_margin").width - border.width: UM.Theme.getSize("default_lining").width - border.color: UM.Theme.getColor("lining") - color: UM.Theme.getColor("main_background") - Image - { - id: thumbnail - height: UM.Theme.getSize("toolbox_thumbnail_large").height - 4 * UM.Theme.getSize("default_margin").height - width: UM.Theme.getSize("toolbox_thumbnail_large").height - 4 * UM.Theme.getSize("default_margin").height - sourceSize.height: height - sourceSize.width: width - fillMode: Image.PreserveAspectFit - source: model.icon_url || "../../images/placeholder.svg" - mipmap: true - anchors - { - top: parent.top - topMargin: UM.Theme.getSize("default_margin").height - horizontalCenter: parent.horizontalCenter - } - } - Label - { - id: packageName - text: model.name - anchors - { - horizontalCenter: parent.horizontalCenter - top: thumbnail.bottom - } - verticalAlignment: Text.AlignVCenter - horizontalAlignment: Text.AlignHCenter - renderType: Text.NativeRendering - height: UM.Theme.getSize("toolbox_heading_label").height - width: parent.width - UM.Theme.getSize("default_margin").width - wrapMode: Text.WordWrap - elide: Text.ElideRight - font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") - } - UM.RecolorImage - { - width: (parent.width * 0.20) | 0 - height: width - anchors - { - bottom: bottomBorder.top - right: parent.right - } - visible: installedPackages != 0 - color: (installedPackages >= packageCount) ? UM.Theme.getColor("primary") : UM.Theme.getColor("border") - source: "../../images/installed_check.svg" - } - - Rectangle - { - id: bottomBorder - color: UM.Theme.getColor("primary") - anchors.bottom: parent.bottom - width: parent.width - height: UM.Theme.getSize("toolbox_header_highlight").height - } - - MouseArea - { - anchors.fill: parent - hoverEnabled: true - onEntered: tileBase.border.color = UM.Theme.getColor("primary") - onExited: tileBase.border.color = UM.Theme.getColor("lining") - onClicked: - { - base.selection = model - switch(toolbox.viewCategory) - { - case "material": - - // If model has a type, it must be a package - if (model.type !== undefined) - { - toolbox.viewPage = "detail" - toolbox.filterModelByProp("packages", "id", model.id) - } - else - { - toolbox.viewPage = "author" - toolbox.setFilters("packages", { - "author_id": model.id, - "type": "material" - }) - } - break - default: - toolbox.viewPage = "detail" - toolbox.filterModelByProp("packages", "id", model.id) - break - } - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml deleted file mode 100644 index 9863bd9a93..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 - -import UM 1.1 as UM -import Cura 1.0 as Cura - -Item -{ - id: footer - width: parent.width - anchors.bottom: parent.bottom - height: visible ? UM.Theme.getSize("toolbox_footer").height : 0 - - Label - { - text: catalog.i18nc("@info", "You will need to restart Cura before changes in packages have effect.") - color: UM.Theme.getColor("text") - height: UM.Theme.getSize("toolbox_footer_button").height - verticalAlignment: Text.AlignVCenter - wrapMode: Text.WordWrap - anchors - { - top: restartButton.top - left: parent.left - leftMargin: UM.Theme.getSize("wide_margin").width - right: restartButton.left - rightMargin: UM.Theme.getSize("default_margin").width - } - renderType: Text.NativeRendering - } - - Cura.PrimaryButton - { - id: restartButton - anchors - { - top: parent.top - topMargin: UM.Theme.getSize("default_margin").height - right: parent.right - rightMargin: UM.Theme.getSize("wide_margin").width - } - height: UM.Theme.getSize("toolbox_footer_button").height - text: catalog.i18nc("@info:button, %1 is the application name", "Quit %1").arg(CuraApplication.applicationDisplayName) - onClicked: - { - base.hide() - toolbox.restart() - } - } - - ToolboxShadow - { - visible: footer.visible - anchors.bottom: footer.top - reversed: true - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml b/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml deleted file mode 100644 index 1bdfa80b79..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml +++ /dev/null @@ -1,112 +0,0 @@ -// Copyright (c) 2020 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 - -import UM 1.4 as UM -import Cura 1.0 as Cura - -Item -{ - id: header - width: parent.width - height: UM.Theme.getSize("toolbox_header").height - Row - { - id: bar - spacing: UM.Theme.getSize("default_margin").width - height: childrenRect.height - width: childrenRect.width - anchors - { - left: parent.left - leftMargin: UM.Theme.getSize("default_margin").width - } - - ToolboxTabButton - { - id: pluginsTabButton - text: catalog.i18nc("@title:tab", "Plugins") - active: toolbox.viewCategory == "plugin" && enabled - enabled: !toolbox.isDownloading && toolbox.viewPage != "loading" && toolbox.viewPage != "errored" - onClicked: - { - toolbox.filterModelByProp("packages", "type", "plugin") - toolbox.viewCategory = "plugin" - toolbox.viewPage = "overview" - } - } - - ToolboxTabButton - { - id: materialsTabButton - text: catalog.i18nc("@title:tab", "Materials") - active: toolbox.viewCategory == "material" && enabled - enabled: !toolbox.isDownloading && toolbox.viewPage != "loading" && toolbox.viewPage != "errored" - onClicked: - { - toolbox.filterModelByProp("authors", "package_types", "material") - toolbox.viewCategory = "material" - toolbox.viewPage = "overview" - } - } - - ToolboxTabButton - { - id: installedTabButton - text: catalog.i18nc("@title:tab", "Installed") - active: toolbox.viewCategory == "installed" - enabled: !toolbox.isDownloading - onClicked: toolbox.viewCategory = "installed" - width: UM.Theme.getSize("toolbox_header_tab").width + marketplaceNotificationIcon.width - UM.Theme.getSize("default_margin").width - } - - - } - - Cura.NotificationIcon - { - id: marketplaceNotificationIcon - visible: CuraApplication.getPackageManager().packagesWithUpdate.length > 0 - anchors.right: bar.right - labelText: - { - const itemCount = CuraApplication.getPackageManager().packagesWithUpdate.length - return itemCount > 9 ? "9+" : itemCount - } - } - - - UM.TooltipArea - { - id: webMarketplaceButtonTooltipArea - width: childrenRect.width - height: parent.height - text: catalog.i18nc("@info:tooltip", "Go to Web Marketplace") - anchors - { - right: parent.right - rightMargin: UM.Theme.getSize("default_margin").width - verticalCenter: parent.verticalCenter - } - acceptedButtons: Qt.LeftButton - onClicked: Qt.openUrlExternally(toolbox.getWebMarketplaceUrl("plugins")) - UM.RecolorImage - { - id: cloudMarketplaceButton - source: "../../images/Shop.svg" - color: UM.Theme.getColor(webMarketplaceButtonTooltipArea.containsMouse ? "primary" : "text") - height: parent.height / 2 - width: height - anchors.verticalCenter: parent.verticalCenter - sourceSize.width: width - sourceSize.height: height - } - } - - ToolboxShadow - { - anchors.top: bar.bottom - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml b/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml deleted file mode 100644 index e5c94fc996..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml +++ /dev/null @@ -1,123 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.1 as UM - -Item -{ - height: UM.Theme.getSize("toolbox_installed_tile").height - width: parent.width - property bool isEnabled: true - - Rectangle - { - color: UM.Theme.getColor("lining") - width: parent.width - height: Math.floor(UM.Theme.getSize("default_lining").height) - anchors.bottom: parent.top - visible: index != 0 - } - Row - { - id: tileRow - height: parent.height - width: parent.width - spacing: UM.Theme.getSize("default_margin").width - topPadding: UM.Theme.getSize("default_margin").height - - CheckBox - { - id: disableButton - anchors.verticalCenter: pluginInfo.verticalCenter - checked: isEnabled - visible: model.type == "plugin" - width: visible ? UM.Theme.getSize("checkbox").width : 0 - enabled: !toolbox.isDownloading - style: UM.Theme.styles.checkbox - onClicked: toolbox.isEnabled(model.id) ? toolbox.disable(model.id) : toolbox.enable(model.id) - } - Column - { - id: pluginInfo - topPadding: UM.Theme.getSize("narrow_margin").height - property var color: model.type === "plugin" && !isEnabled ? UM.Theme.getColor("lining") : UM.Theme.getColor("text") - width: Math.floor(tileRow.width - (authorInfo.width + pluginActions.width + 2 * tileRow.spacing + ((disableButton.visible) ? disableButton.width + tileRow.spacing : 0))) - Label - { - text: model.name - width: parent.width - maximumLineCount: 1 - elide: Text.ElideRight - wrapMode: Text.WordWrap - font: UM.Theme.getFont("large_bold") - color: pluginInfo.color - renderType: Text.NativeRendering - } - Label - { - text: model.description - font: UM.Theme.getFont("default") - maximumLineCount: 3 - elide: Text.ElideRight - width: parent.width - wrapMode: Text.WordWrap - color: pluginInfo.color - renderType: Text.NativeRendering - } - } - Column - { - id: authorInfo - width: Math.floor(UM.Theme.getSize("toolbox_action_button").width * 1.25) - - Label - { - text: - { - if (model.author_email) - { - return "" + model.author_name + "" - } - else - { - return model.author_name - } - } - font: UM.Theme.getFont("medium") - width: parent.width - height: Math.floor(UM.Theme.getSize("toolbox_property_label").height) - wrapMode: Text.WordWrap - verticalAlignment: Text.AlignVCenter - horizontalAlignment: Text.AlignLeft - onLinkActivated: Qt.openUrlExternally("mailto:" + model.author_email + "?Subject=Cura: " + model.name + " Plugin") - color: model.enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("lining") - linkColor: UM.Theme.getColor("text_link") - renderType: Text.NativeRendering - } - - Label - { - text: model.version - font: UM.Theme.getFont("default") - width: parent.width - height: UM.Theme.getSize("toolbox_property_label").height - color: UM.Theme.getColor("text") - verticalAlignment: Text.AlignVCenter - horizontalAlignment: Text.AlignLeft - renderType: Text.NativeRendering - } - } - ToolboxInstalledTileActions - { - id: pluginActions - } - Connections - { - target: toolbox - function onToolboxEnabledChanged() { isEnabled = toolbox.isEnabled(model.id) } - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml b/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml deleted file mode 100644 index 1726497c00..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml +++ /dev/null @@ -1,90 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.1 as UM - -import Cura 1.1 as Cura - -Column -{ - property bool canUpdate: CuraApplication.getPackageManager().packagesWithUpdate.indexOf(model.id) != -1 - property bool canDowngrade: false - property bool loginRequired: model.login_required && !Cura.API.account.isLoggedIn - width: UM.Theme.getSize("toolbox_action_button").width - spacing: UM.Theme.getSize("narrow_margin").height - - Label - { - visible: !model.is_installed - text: catalog.i18nc("@label", "Will install upon restarting") - color: UM.Theme.getColor("lining") - font: UM.Theme.getFont("default") - wrapMode: Text.WordWrap - width: parent.width - renderType: Text.NativeRendering - } - - ToolboxProgressButton - { - id: updateButton - active: toolbox.isDownloading && toolbox.activePackage == model - readyLabel: catalog.i18nc("@action:button", "Update") - activeLabel: catalog.i18nc("@action:button", "Updating") - completeLabel: catalog.i18nc("@action:button", "Updated") - onReadyAction: - { - toolbox.activePackage = model - toolbox.update(model.id) - } - onActiveAction: toolbox.cancelDownload() - - // Don't allow installing while another download is running - enabled: !(toolbox.isDownloading && toolbox.activePackage != model) && !loginRequired - opacity: enabled ? 1.0 : 0.5 - visible: canUpdate - } - - Label - { - wrapMode: Text.WordWrap - text: catalog.i18nc("@label:The string between and is the highlighted link", "Log in is required to update") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - linkColor: UM.Theme.getColor("text_link") - visible: loginRequired - width: updateButton.width - renderType: Text.NativeRendering - - MouseArea - { - anchors.fill: parent - onClicked: Cura.API.account.login() - } - } - - Cura.SecondaryButton - { - id: removeButton - text: canDowngrade ? catalog.i18nc("@action:button", "Downgrade") : catalog.i18nc("@action:button", "Uninstall") - visible: !model.is_bundled && model.is_installed - enabled: !toolbox.isDownloading - - width: UM.Theme.getSize("toolbox_action_button").width - height: UM.Theme.getSize("toolbox_action_button").height - - fixedWidthMode: true - - onClicked: toolbox.checkPackageUsageAndUninstall(model.id) - Connections - { - target: toolbox - function onMetadataChanged() - { - canDowngrade = toolbox.canDowngrade(model.id) - } - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml b/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml deleted file mode 100644 index 40d6c1af47..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 - -import UM 1.1 as UM -import Cura 1.0 as Cura - - -Cura.PrimaryButton -{ - id: button - - property var active: false - property var complete: false - - property var readyLabel: catalog.i18nc("@action:button", "Install") - property var activeLabel: catalog.i18nc("@action:button", "Cancel") - property var completeLabel: catalog.i18nc("@action:button", "Installed") - - signal readyAction() // Action when button is ready and clicked (likely install) - signal activeAction() // Action when button is active and clicked (likely cancel) - signal completeAction() // Action when button is complete and clicked (likely go to installed) - - width: UM.Theme.getSize("toolbox_action_button").width - height: UM.Theme.getSize("toolbox_action_button").height - fixedWidthMode: true - text: - { - if (complete) - { - return completeLabel - } - else if (active) - { - return activeLabel - } - else - { - return readyLabel - } - } - onClicked: - { - if (complete) - { - completeAction() - } - else if (active) - { - activeAction() - } - else - { - readyAction() - } - } - busy: active -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxShadow.qml b/plugins/Toolbox/resources/qml/components/ToolboxShadow.qml deleted file mode 100644 index 0f2f98beb9..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxShadow.qml +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.2 - -Rectangle -{ - property bool reversed: false - width: parent.width - height: 8 - gradient: Gradient - { - GradientStop - { - position: reversed ? 1.0 : 0.0 - color: reversed ? Qt.rgba(0,0,0,0.05) : Qt.rgba(0,0,0,0.2) - } - GradientStop - { - position: reversed ? 0.0 : 1.0 - color: Qt.rgba(0,0,0,0) - } - } -} diff --git a/plugins/Toolbox/resources/qml/components/ToolboxTabButton.qml b/plugins/Toolbox/resources/qml/components/ToolboxTabButton.qml deleted file mode 100644 index 7a7d2be48a..0000000000 --- a/plugins/Toolbox/resources/qml/components/ToolboxTabButton.qml +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 -import UM 1.1 as UM - -Button -{ - id: control - property bool active: false - - implicitWidth: UM.Theme.getSize("toolbox_header_tab").width - implicitHeight: UM.Theme.getSize("toolbox_header_tab").height - - background: Item - { - id: backgroundItem - Rectangle - { - id: highlight - - visible: control.active - color: UM.Theme.getColor("primary") - anchors.bottom: parent.bottom - width: parent.width - height: UM.Theme.getSize("toolbox_header_highlight").height - } - } - - contentItem: Label - { - id: label - text: control.text - color: UM.Theme.getColor("toolbox_header_button_text_inactive") - font: UM.Theme.getFont("medium") - - verticalAlignment: Text.AlignVCenter - horizontalAlignment: Text.AlignHCenter - - renderType: Text.NativeRendering - } - - states: - [ - State - { - name: "disabled" - when: !control.enabled - PropertyChanges - { - target: label - font: UM.Theme.getFont("default_italic") - } - }, - State - { - name: "active" - when: control.active - PropertyChanges - { - target: label - font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("action_button_text") - } - } - ] -} \ No newline at end of file diff --git a/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml b/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml deleted file mode 100644 index b33036847b..0000000000 --- a/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml +++ /dev/null @@ -1,153 +0,0 @@ -// Copyright (c) 2020 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Window 2.2 -import QtQuick.Controls 2.3 - -import UM 1.1 as UM -import Cura 1.6 as Cura - - -UM.Dialog{ - visible: true - title: catalog.i18nc("@title", "Changes from your account") - width: UM.Theme.getSize("popup_dialog").width - height: UM.Theme.getSize("popup_dialog").height - minimumWidth: width - maximumWidth: minimumWidth - minimumHeight: height - maximumHeight: minimumHeight - margin: 0 - - property string actionButtonText: subscribedPackagesModel.hasIncompatiblePackages && !subscribedPackagesModel.hasCompatiblePackages ? catalog.i18nc("@button", "Dismiss") : catalog.i18nc("@button", "Next") - - Rectangle - { - id: root - anchors.fill: parent - color: UM.Theme.getColor("main_background") - - UM.I18nCatalog - { - id: catalog - name: "cura" - } - - ScrollView - { - width: parent.width - height: parent.height - nextButton.height - nextButton.anchors.margins * 2 // We want some leftover space for the button at the bottom - clip: true - - Column - { - anchors.fill: parent - anchors.margins: UM.Theme.getSize("default_margin").width - - // Compatible packages - Label - { - font: UM.Theme.getFont("default") - text: catalog.i18nc("@label", "The following packages will be added:") - visible: subscribedPackagesModel.hasCompatiblePackages - color: UM.Theme.getColor("text") - height: contentHeight + UM.Theme.getSize("default_margin").height - } - Repeater - { - model: subscribedPackagesModel - Component - { - Item - { - width: parent.width - property int lineHeight: 60 - visible: model.is_compatible - height: visible ? (lineHeight + UM.Theme.getSize("default_margin").height) : 0 // We only show the compatible packages here - Image - { - id: packageIcon - source: model.icon_url || "../../images/placeholder.svg" - height: lineHeight - width: height - sourceSize.height: height - sourceSize.width: width - mipmap: true - fillMode: Image.PreserveAspectFit - } - Label - { - text: model.display_name - font: UM.Theme.getFont("medium_bold") - anchors.left: packageIcon.right - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.verticalCenter: packageIcon.verticalCenter - color: UM.Theme.getColor("text") - elide: Text.ElideRight - } - } - } - } - - // Incompatible packages - Label - { - font: UM.Theme.getFont("default") - text: catalog.i18nc("@label", "The following packages can not be installed because of an incompatible Cura version:") - visible: subscribedPackagesModel.hasIncompatiblePackages - color: UM.Theme.getColor("text") - height: contentHeight + UM.Theme.getSize("default_margin").height - } - Repeater - { - model: subscribedPackagesModel - Component - { - Item - { - width: parent.width - property int lineHeight: 60 - visible: !model.is_compatible && !model.is_dismissed - height: visible ? (lineHeight + UM.Theme.getSize("default_margin").height) : 0 // We only show the incompatible packages here - Image - { - id: packageIcon - source: model.icon_url || "../../images/placeholder.svg" - height: lineHeight - width: height - sourceSize.height: height - sourceSize.width: width - mipmap: true - fillMode: Image.PreserveAspectFit - } - Label - { - text: model.display_name - font: UM.Theme.getFont("medium_bold") - anchors.left: packageIcon.right - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.verticalCenter: packageIcon.verticalCenter - color: UM.Theme.getColor("text") - elide: Text.ElideRight - } - } - } - } - } - - } // End of ScrollView - - Cura.PrimaryButton - { - id: nextButton - anchors.bottom: parent.bottom - anchors.right: parent.right - anchors.margins: UM.Theme.getSize("default_margin").height - text: actionButtonText - onClicked: accept() - leftPadding: UM.Theme.getSize("dialog_primary_button_padding").width - rightPadding: UM.Theme.getSize("dialog_primary_button_padding").width - } - } -} diff --git a/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml b/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml deleted file mode 100644 index 1b5e4d1d46..0000000000 --- a/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml +++ /dev/null @@ -1,96 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 -import QtQuick.Layouts 1.1 -import QtQuick.Dialogs 1.1 -import QtQuick.Window 2.1 - -import UM 1.3 as UM -import Cura 1.0 as Cura - - -UM.Dialog -{ - // This dialog asks the user to confirm he/she wants to uninstall materials/pprofiles which are currently in use - id: base - - title: catalog.i18nc("@title:window", "Confirm uninstall") + toolbox.pluginToUninstall - width: 450 * screenScaleFactor - height: 50 * screenScaleFactor + dialogText.height + buttonBar.height - - maximumWidth: 450 * screenScaleFactor - maximumHeight: 450 * screenScaleFactor - minimumWidth: 450 * screenScaleFactor - minimumHeight: 150 * screenScaleFactor - - modality: Qt.WindowModal - - Column - { - UM.I18nCatalog { id: catalog; name: "cura" } - - anchors - { - fill: parent - leftMargin: Math.round(20 * screenScaleFactor) - rightMargin: Math.round(20 * screenScaleFactor) - topMargin: Math.round(10 * screenScaleFactor) - bottomMargin: Math.round(10 * screenScaleFactor) - } - spacing: Math.round(15 * screenScaleFactor) - - Label - { - id: dialogText - text: - { - var base_text = catalog.i18nc("@text:window", "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults.") - var materials_text = catalog.i18nc("@text:window", "Materials") - var qualities_text = catalog.i18nc("@text:window", "Profiles") - var machines_with_materials = toolbox.uninstallUsedMaterials - var machines_with_qualities = toolbox.uninstallUsedQualities - if (machines_with_materials != "") - { - base_text += "\n\n" + materials_text +": \n" + machines_with_materials - } - if (machines_with_qualities != "") - { - base_text += "\n\n" + qualities_text + ": \n" + machines_with_qualities - } - return base_text - } - anchors.left: parent.left - anchors.right: parent.right - font: UM.Theme.getFont("default") - wrapMode: Text.WordWrap - renderType: Text.NativeRendering - } - - // Buttons - Item { - id: buttonBar - anchors.right: parent.right - anchors.left: parent.left - height: childrenRect.height - - Button { - id: cancelButton - text: catalog.i18nc("@action:button", "Cancel") - anchors.right: confirmButton.left - anchors.rightMargin: UM.Theme.getSize("default_margin").width - isDefault: true - onClicked: toolbox.closeConfirmResetDialog() - } - - Button { - id: confirmButton - text: catalog.i18nc("@action:button", "Confirm") - anchors.right: parent.right - onClicked: toolbox.resetMaterialsQualitiesAndUninstall() - } - } - } -} diff --git a/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml b/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml deleted file mode 100644 index 9219f4ed32..0000000000 --- a/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Dialogs 1.1 -import QtQuick.Window 2.2 -import QtQuick.Controls 2.3 -import QtQuick.Layouts 1.3 -import QtQuick.Controls.Styles 1.4 - -import UM 1.1 as UM -import Cura 1.6 as Cura - -UM.Dialog -{ - id: licenseDialog - title: licenseModel.dialogTitle - minimumWidth: UM.Theme.getSize("license_window_minimum").width - minimumHeight: UM.Theme.getSize("license_window_minimum").height - width: minimumWidth - height: minimumHeight - backgroundColor: UM.Theme.getColor("main_background") - margin: screenScaleFactor * 10 - - ColumnLayout - { - anchors.fill: parent - spacing: UM.Theme.getSize("thick_margin").height - - UM.I18nCatalog{id: catalog; name: "cura"} - - Label - { - id: licenseHeader - Layout.fillWidth: true - text: catalog.i18nc("@label", "You need to accept the license to install the package") - color: UM.Theme.getColor("text") - wrapMode: Text.Wrap - renderType: Text.NativeRendering - } - - Row { - id: packageRow - - Layout.fillWidth: true - height: childrenRect.height - spacing: UM.Theme.getSize("default_margin").width - leftPadding: UM.Theme.getSize("narrow_margin").width - - Image - { - id: icon - width: 30 * screenScaleFactor - height: width - sourceSize.width: width - sourceSize.height: height - fillMode: Image.PreserveAspectFit - source: licenseModel.iconUrl || "../../images/placeholder.svg" - mipmap: true - } - - Label - { - id: packageName - text: licenseModel.packageName - color: UM.Theme.getColor("text") - font.bold: true - anchors.verticalCenter: icon.verticalCenter - height: contentHeight - wrapMode: Text.Wrap - renderType: Text.NativeRendering - } - - - } - - Cura.ScrollableTextArea - { - - Layout.fillWidth: true - Layout.fillHeight: true - anchors.topMargin: UM.Theme.getSize("default_margin").height - - textArea.text: licenseModel.licenseText - textArea.readOnly: true - } - - } - rightButtons: - [ - Cura.PrimaryButton - { - leftPadding: UM.Theme.getSize("dialog_primary_button_padding").width - rightPadding: UM.Theme.getSize("dialog_primary_button_padding").width - - text: licenseModel.acceptButtonText - onClicked: { handler.onLicenseAccepted() } - } - ] - - leftButtons: - [ - Cura.SecondaryButton - { - id: declineButton - text: licenseModel.declineButtonText - onClicked: { handler.onLicenseDeclined() } - } - ] -} diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml deleted file mode 100644 index 2fa4224388..0000000000 --- a/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml +++ /dev/null @@ -1,176 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.5 as UM - -import "../components" - -Item -{ - id: page - property var details: base.selection || {} - anchors.fill: parent - ToolboxBackColumn - { - id: sidebar - } - Item - { - id: header - anchors - { - left: sidebar.right - right: parent.right - rightMargin: UM.Theme.getSize("wide_margin").width - } - height: UM.Theme.getSize("toolbox_detail_header").height - Image - { - id: thumbnail - width: UM.Theme.getSize("toolbox_thumbnail_medium").width - height: UM.Theme.getSize("toolbox_thumbnail_medium").height - fillMode: Image.PreserveAspectFit - source: details && details.icon_url ? details.icon_url : "../../images/placeholder.svg" - mipmap: true - anchors - { - top: parent.top - left: parent.left - leftMargin: UM.Theme.getSize("wide_margin").width - topMargin: UM.Theme.getSize("wide_margin").height - } - } - - Label - { - id: title - anchors - { - top: thumbnail.top - left: thumbnail.right - leftMargin: UM.Theme.getSize("default_margin").width - right: parent.right - rightMargin: UM.Theme.getSize("wide_margin").width - bottomMargin: UM.Theme.getSize("default_margin").height - } - text: details && details.name ? details.name : "" - font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text_medium") - wrapMode: Text.WordWrap - width: parent.width - height: UM.Theme.getSize("toolbox_property_label").height - renderType: Text.NativeRendering - } - Label - { - id: description - text: details && details.description ? details.description : "" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text_medium") - anchors - { - top: title.bottom - left: title.left - topMargin: UM.Theme.getSize("default_margin").height - } - renderType: Text.NativeRendering - } - Column - { - id: properties - anchors - { - top: description.bottom - left: description.left - topMargin: UM.Theme.getSize("default_margin").height - } - spacing: Math.floor(UM.Theme.getSize("narrow_margin").height) - width: childrenRect.width - - Label - { - text: catalog.i18nc("@label", "Website") + ":" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text_medium") - renderType: Text.NativeRendering - } - Label - { - text: catalog.i18nc("@label", "Email") + ":" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text_medium") - renderType: Text.NativeRendering - } - } - Column - { - id: values - anchors - { - top: description.bottom - left: properties.right - leftMargin: UM.Theme.getSize("default_margin").width - right: parent.right - rightMargin: UM.Theme.getSize("default_margin").width - topMargin: UM.Theme.getSize("default_margin").height - } - spacing: Math.floor(UM.Theme.getSize("narrow_margin").height) - - Label - { - text: - { - if (details && details.website) - { - return "" + details.website + "" - } - return "" - } - width: parent.width - elide: Text.ElideRight - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - linkColor: UM.Theme.getColor("text_link") - onLinkActivated: UM.UrlUtil.openUrl(link, ["https", "http"]) - renderType: Text.NativeRendering - } - - Label - { - text: - { - if (details && details.email) - { - return "" + details.email + "" - } - return "" - } - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - linkColor: UM.Theme.getColor("text_link") - onLinkActivated: Qt.openUrlExternally(link) - renderType: Text.NativeRendering - } - } - Rectangle - { - color: UM.Theme.getColor("lining") - width: parent.width - height: UM.Theme.getSize("default_lining").height - anchors.bottom: parent.bottom - } - } - ToolboxDetailList - { - anchors - { - top: header.bottom - bottom: page.bottom - left: header.left - right: page.right - } - } -} diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml deleted file mode 100644 index 645b77a8c9..0000000000 --- a/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml +++ /dev/null @@ -1,188 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.5 as UM - -import Cura 1.1 as Cura - -import "../components" - -Item -{ - id: page - property var details: base.selection || {} - anchors.fill: parent - ToolboxBackColumn - { - id: sidebar - } - Item - { - id: header - anchors - { - left: sidebar.right - right: parent.right - rightMargin: UM.Theme.getSize("wide_margin").width - } - height: childrenRect.height + 3 * UM.Theme.getSize("default_margin").width - Rectangle - { - id: thumbnail - width: UM.Theme.getSize("toolbox_thumbnail_medium").width - height: UM.Theme.getSize("toolbox_thumbnail_medium").height - anchors - { - top: parent.top - left: parent.left - leftMargin: UM.Theme.getSize("wide_margin").width - topMargin: UM.Theme.getSize("wide_margin").height - } - color: UM.Theme.getColor("main_background") - Image - { - anchors.fill: parent - fillMode: Image.PreserveAspectFit - source: details === null ? "" : (details.icon_url || "../../images/placeholder.svg") - mipmap: true - height: UM.Theme.getSize("toolbox_thumbnail_large").height - 4 * UM.Theme.getSize("default_margin").height - width: UM.Theme.getSize("toolbox_thumbnail_large").height - 4 * UM.Theme.getSize("default_margin").height - sourceSize.height: height - sourceSize.width: width - } - } - - Label - { - id: title - anchors - { - top: thumbnail.top - left: thumbnail.right - leftMargin: UM.Theme.getSize("default_margin").width - } - text: details === null ? "" : (details.name || "") - font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") - width: contentWidth - height: contentHeight - renderType: Text.NativeRendering - } - - Column - { - id: properties - anchors - { - top: title.bottom - left: title.left - topMargin: UM.Theme.getSize("default_margin").height - } - spacing: Math.floor(UM.Theme.getSize("narrow_margin").height) - width: childrenRect.width - height: childrenRect.height - Label - { - text: catalog.i18nc("@label", "Version") + ":" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text_medium") - renderType: Text.NativeRendering - } - Label - { - text: catalog.i18nc("@label", "Last updated") + ":" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text_medium") - renderType: Text.NativeRendering - } - Label - { - text: catalog.i18nc("@label", "Brand") + ":" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text_medium") - renderType: Text.NativeRendering - } - Label - { - text: catalog.i18nc("@label", "Downloads") + ":" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text_medium") - renderType: Text.NativeRendering - } - } - Column - { - id: values - anchors - { - top: title.bottom - left: properties.right - leftMargin: UM.Theme.getSize("default_margin").width - topMargin: UM.Theme.getSize("default_margin").height - } - spacing: Math.floor(UM.Theme.getSize("narrow_margin").height) - height: childrenRect.height - Label - { - text: details === null ? "" : (details.version || catalog.i18nc("@label", "Unknown")) - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - } - Label - { - text: - { - if (details === null) - { - return "" - } - var date = new Date(details.last_updated) - return date.toLocaleString(UM.Preferences.getValue("general/language")) - } - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - } - Label - { - text: - { - if (details === null) - { - return "" - } - else - { - return "" + details.author_name + "" - } - } - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - linkColor: UM.Theme.getColor("text_link") - onLinkActivated: UM.UrlUtil.openUrl(link, ["http", "https"]) - renderType: Text.NativeRendering - } - Label - { - text: details === null ? "" : (details.download_count || catalog.i18nc("@label", "Unknown")) - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - } - } - } - ToolboxDetailList - { - anchors - { - top: header.bottom - bottom: page.bottom - left: header.left - right: page.right - } - } -} diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml deleted file mode 100644 index 9be8cbe2b9..0000000000 --- a/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 -import UM 1.1 as UM - -import "../components" - -ScrollView -{ - clip: true - width: parent.width - height: parent.height - contentHeight: mainColumn.height - - Column - { - id: mainColumn - width: base.width - spacing: UM.Theme.getSize("default_margin").height - - ToolboxDownloadsShowcase - { - id: showcase - width: parent.width - } - - ToolboxDownloadsGrid - { - id: allPlugins - width: parent.width - heading: toolbox.viewCategory === "material" ? catalog.i18nc("@label", "Community Contributions") : catalog.i18nc("@label", "Community Plugins") - model: toolbox.viewCategory === "material" ? toolbox.materialsAvailableModel : toolbox.pluginsAvailableModel - } - - ToolboxDownloadsGrid - { - id: genericMaterials - visible: toolbox.viewCategory === "material" - width: parent.width - heading: catalog.i18nc("@label", "Generic Materials") - model: toolbox.materialsGenericModel - } - } -} diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml deleted file mode 100644 index e57e63dbb9..0000000000 --- a/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 - -Rectangle -{ - id: page - width: parent.width - height: parent.height - color: "transparent" - Label - { - text: catalog.i18nc("@info", "Could not connect to the Cura Package database. Please check your connection.") - anchors - { - centerIn: parent - } - renderType: Text.NativeRendering - } -} diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml deleted file mode 100644 index 48620d5def..0000000000 --- a/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml +++ /dev/null @@ -1,221 +0,0 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 - -import UM 1.1 as UM - -import "../components" - -ScrollView -{ - id: page - clip: true - width: parent.width - height: parent.height - - Column - { - width: page.width - spacing: UM.Theme.getSize("default_margin").height - padding: UM.Theme.getSize("wide_margin").width - height: childrenRect.height + 2 * UM.Theme.getSize("wide_margin").height - - Label - { - anchors - { - left: parent.left - right: parent.right - margins: parent.padding - } - text: catalog.i18nc("@title:tab", "Installed plugins") - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - } - - Rectangle - { - anchors - { - left: parent.left - right: parent.right - margins: parent.padding - } - id: installedPlugins - color: "transparent" - height: childrenRect.height + UM.Theme.getSize("default_margin").width - border.color: UM.Theme.getColor("lining") - border.width: UM.Theme.getSize("default_lining").width - Column - { - anchors - { - top: parent.top - right: parent.right - left: parent.left - margins: UM.Theme.getSize("default_margin").width - } - Repeater - { - id: pluginList - model: toolbox.pluginsInstalledModel - delegate: ToolboxInstalledTile { } - } - } - Label - { - visible: toolbox.pluginsInstalledModel.count < 1 - padding: UM.Theme.getSize("default_margin").width - text: catalog.i18nc("@info", "No plugin has been installed.") - font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - } - } - - Label - { - anchors - { - left: parent.left - right: parent.right - margins: parent.padding - } - text: catalog.i18nc("@title:tab", "Installed materials") - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - } - - Rectangle - { - anchors - { - left: parent.left - right: parent.right - margins: parent.padding - } - id: installedMaterials - color: "transparent" - height: childrenRect.height + UM.Theme.getSize("default_margin").width - border.color: UM.Theme.getColor("lining") - border.width: UM.Theme.getSize("default_lining").width - Column - { - anchors - { - top: parent.top - right: parent.right - left: parent.left - margins: UM.Theme.getSize("default_margin").width - } - Repeater - { - id: installedMaterialsList - model: toolbox.materialsInstalledModel - delegate: ToolboxInstalledTile { } - } - } - Label - { - visible: toolbox.materialsInstalledModel.count < 1 - padding: UM.Theme.getSize("default_margin").width - text: catalog.i18nc("@info", "No material has been installed.") - font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - } - } - - Label - { - anchors - { - left: parent.left - right: parent.right - margins: parent.padding - } - text: catalog.i18nc("@title:tab", "Bundled plugins") - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - } - - Rectangle - { - anchors - { - left: parent.left - right: parent.right - margins: parent.padding - } - id: bundledPlugins - color: "transparent" - height: childrenRect.height + UM.Theme.getSize("default_margin").width - border.color: UM.Theme.getColor("lining") - border.width: UM.Theme.getSize("default_lining").width - Column - { - anchors - { - top: parent.top - right: parent.right - left: parent.left - margins: UM.Theme.getSize("default_margin").width - } - Repeater - { - id: bundledPluginsList - model: toolbox.pluginsBundledModel - delegate: ToolboxInstalledTile { } - } - } - } - - Label - { - anchors - { - left: parent.left - right: parent.right - margins: parent.padding - } - text: catalog.i18nc("@title:tab", "Bundled materials") - color: UM.Theme.getColor("text_medium") - font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - } - - Rectangle - { - anchors - { - left: parent.left - right: parent.right - margins: parent.padding - } - id: bundledMaterials - color: "transparent" - height: childrenRect.height + UM.Theme.getSize("default_margin").width - border.color: UM.Theme.getColor("lining") - border.width: UM.Theme.getSize("default_lining").width - Column - { - anchors - { - top: parent.top - right: parent.right - left: parent.left - margins: UM.Theme.getSize("default_margin").width - } - Repeater - { - id: bundledMaterialsList - model: toolbox.materialsBundledModel - delegate: ToolboxInstalledTile {} - } - } - } - } -} diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml deleted file mode 100644 index a30af6b335..0000000000 --- a/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.3 as UM - -Rectangle -{ - id: page - width: parent.width - height: parent.height - color: "transparent" - Label - { - text: catalog.i18nc("@info", "Fetching packages...") - color: UM.Theme.getColor("text") - anchors - { - centerIn: parent - } - renderType: Text.NativeRendering - } -} diff --git a/plugins/Toolbox/resources/qml/pages/WelcomePage.qml b/plugins/Toolbox/resources/qml/pages/WelcomePage.qml deleted file mode 100644 index 04110cbc0f..0000000000 --- a/plugins/Toolbox/resources/qml/pages/WelcomePage.qml +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.7 -import QtQuick.Controls 2.1 -import QtQuick.Window 2.2 - -import UM 1.3 as UM -import Cura 1.1 as Cura - -Column -{ - id: welcomePage - spacing: UM.Theme.getSize("wide_margin").height - width: parent.width - height: childrenRect.height - anchors.centerIn: parent - - Label - { - id: welcomeTextLabel - text: catalog.i18nc("@description", "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise") - width: Math.round(parent.width / 2) - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - verticalAlignment: Text.AlignVCenter - horizontalAlignment: Text.AlignHCenter - anchors.horizontalCenter: parent.horizontalCenter - wrapMode: Label.WordWrap - renderType: Text.NativeRendering - } - - Cura.PrimaryButton - { - id: loginButton - width: UM.Theme.getSize("account_button").width - height: UM.Theme.getSize("account_button").height - anchors.horizontalCenter: parent.horizontalCenter - text: catalog.i18nc("@button", "Sign in") - onClicked: Cura.API.account.login() - fixedWidthMode: true - } -} - diff --git a/plugins/Toolbox/src/AuthorsModel.py b/plugins/Toolbox/src/AuthorsModel.py deleted file mode 100644 index 04c8ed3a40..0000000000 --- a/plugins/Toolbox/src/AuthorsModel.py +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright (c) 2018 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -import re -from typing import Dict, List, Optional, Union, cast - -from PyQt5.QtCore import Qt, pyqtProperty - -from UM.Qt.ListModel import ListModel - - -class AuthorsModel(ListModel): - """Model that holds cura packages. - - By setting the filter property the instances held by this model can be changed. - """ - - def __init__(self, parent = None) -> None: - super().__init__(parent) - - self._metadata = None # type: Optional[List[Dict[str, Union[str, List[str], int]]]] - - self.addRoleName(Qt.UserRole + 1, "id") - self.addRoleName(Qt.UserRole + 2, "name") - self.addRoleName(Qt.UserRole + 3, "email") - self.addRoleName(Qt.UserRole + 4, "website") - self.addRoleName(Qt.UserRole + 5, "package_count") - self.addRoleName(Qt.UserRole + 6, "package_types") - self.addRoleName(Qt.UserRole + 7, "icon_url") - self.addRoleName(Qt.UserRole + 8, "description") - - # List of filters for queries. The result is the union of the each list of results. - self._filter = {} # type: Dict[str, str] - - def setMetadata(self, data: List[Dict[str, Union[str, List[str], int]]]): - if self._metadata != data: - self._metadata = data - self._update() - - def _update(self) -> None: - items = [] # type: List[Dict[str, Union[str, List[str], int, None]]] - if not self._metadata: - self.setItems(items) - return - - for author in self._metadata: - items.append({ - "id": author.get("author_id"), - "name": author.get("display_name"), - "email": author.get("email"), - "website": author.get("website"), - "package_count": author.get("package_count", 0), - "package_types": author.get("package_types", []), - "icon_url": author.get("icon_url"), - "description": "Material and quality profiles from {author_name}".format(author_name = author.get("display_name", "")) - }) - - # Filter on all the key-word arguments. - for key, value in self._filter.items(): - if key == "package_types": - key_filter = lambda item, value = value: value in item["package_types"] # type: ignore - elif "*" in value: - key_filter = lambda item, key = key, value = value: self._matchRegExp(item, key, value) # type: ignore - else: - key_filter = lambda item, key = key, value = value: self._matchString(item, key, value) # type: ignore - items = filter(key_filter, items) # type: ignore - - # Execute all filters. - filtered_items = list(items) - - filtered_items.sort(key = lambda k: cast(str, k["name"])) - self.setItems(filtered_items) - - def setFilter(self, filter_dict: Dict[str, str]) -> None: - """Set the filter of this model based on a string. - - :param filter_dict: Dictionary to do the filtering by. - """ - if filter_dict != self._filter: - self._filter = filter_dict - self._update() - - @pyqtProperty("QVariantMap", fset = setFilter, constant = True) - def filter(self) -> Dict[str, str]: - return self._filter - - # Check to see if a container matches with a regular expression - def _matchRegExp(self, metadata, property_name, value): - if property_name not in metadata: - return False - value = re.escape(value) #Escape for regex patterns. - value = "^" + value.replace("\\*", ".*") + "$" #Instead of (now escaped) asterisks, match on any string. Also add anchors for a complete match. - if self._ignore_case: - value_pattern = re.compile(value, re.IGNORECASE) - else: - value_pattern = re.compile(value) - - return value_pattern.match(str(metadata[property_name])) - - # Check to see if a container matches with a string - def _matchString(self, metadata, property_name, value): - if property_name not in metadata: - return False - return value.lower() == str(metadata[property_name]).lower() diff --git a/plugins/Toolbox/src/CloudApiModel.py b/plugins/Toolbox/src/CloudApiModel.py deleted file mode 100644 index bef37d8173..0000000000 --- a/plugins/Toolbox/src/CloudApiModel.py +++ /dev/null @@ -1,29 +0,0 @@ -from typing import Union - -from cura import ApplicationMetadata -from cura.UltimakerCloud import UltimakerCloudConstants - - -class CloudApiModel: - sdk_version = ApplicationMetadata.CuraSDKVersion # type: Union[str, int] - cloud_api_version = UltimakerCloudConstants.CuraCloudAPIVersion # type: str - cloud_api_root = UltimakerCloudConstants.CuraCloudAPIRoot # type: str - api_url = "{cloud_api_root}/cura-packages/v{cloud_api_version}/cura/v{sdk_version}".format( - cloud_api_root = cloud_api_root, - cloud_api_version = cloud_api_version, - sdk_version = sdk_version - ) # type: str - - # https://api.ultimaker.com/cura-packages/v1/user/packages - api_url_user_packages = "{cloud_api_root}/cura-packages/v{cloud_api_version}/user/packages".format( - cloud_api_root=cloud_api_root, - cloud_api_version=cloud_api_version, - ) - - @classmethod - def userPackageUrl(cls, package_id: str) -> str: - """https://api.ultimaker.com/cura-packages/v1/user/packages/{package_id}""" - - return (CloudApiModel.api_url_user_packages + "/{package_id}").format( - package_id=package_id - ) diff --git a/plugins/Toolbox/src/CloudSync/CloudApiClient.py b/plugins/Toolbox/src/CloudSync/CloudApiClient.py deleted file mode 100644 index 21eb1bdbd2..0000000000 --- a/plugins/Toolbox/src/CloudSync/CloudApiClient.py +++ /dev/null @@ -1,52 +0,0 @@ -from UM.Logger import Logger -from UM.TaskManagement.HttpRequestManager import HttpRequestManager -from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope -from cura.CuraApplication import CuraApplication -from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope -from ..CloudApiModel import CloudApiModel - - -class CloudApiClient: - """Manages Cloud subscriptions - - When a package is added to a user's account, the user is 'subscribed' to that package. - Whenever the user logs in on another instance of Cura, these subscriptions can be used to sync the user's plugins - - Singleton: use CloudApiClient.getInstance() instead of CloudApiClient() - """ - - __instance = None - - @classmethod - def getInstance(cls, app: CuraApplication): - if not cls.__instance: - cls.__instance = CloudApiClient(app) - return cls.__instance - - def __init__(self, app: CuraApplication) -> None: - if self.__instance is not None: - raise RuntimeError("This is a Singleton. use getInstance()") - - self._scope = JsonDecoratorScope(UltimakerCloudScope(app)) # type: JsonDecoratorScope - - app.getPackageManager().packageInstalled.connect(self._onPackageInstalled) - - def unsubscribe(self, package_id: str) -> None: - url = CloudApiModel.userPackageUrl(package_id) - HttpRequestManager.getInstance().delete(url = url, scope = self._scope) - - def _subscribe(self, package_id: str) -> None: - """You probably don't want to use this directly. All installed packages will be automatically subscribed.""" - - Logger.debug("Subscribing to {}", package_id) - data = "{\"data\": {\"package_id\": \"%s\", \"sdk_version\": \"%s\"}}" % (package_id, CloudApiModel.sdk_version) - HttpRequestManager.getInstance().put( - url = CloudApiModel.api_url_user_packages, - data = data.encode(), - scope = self._scope - ) - - def _onPackageInstalled(self, package_id: str): - if CuraApplication.getInstance().getCuraAPI().account.isLoggedIn: - # We might already be subscribed, but checking would take one extra request. Instead, simply subscribe - self._subscribe(package_id) diff --git a/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py b/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py deleted file mode 100644 index f864e2ee8d..0000000000 --- a/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py +++ /dev/null @@ -1,164 +0,0 @@ -# Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -import json -from typing import List, Dict, Any, Set -from typing import Optional - -from PyQt5.QtCore import QObject -from PyQt5.QtNetwork import QNetworkReply, QNetworkRequest - -from UM import i18nCatalog -from UM.Logger import Logger -from UM.Message import Message -from UM.Signal import Signal -from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope -from cura.API.Account import SyncState -from cura.CuraApplication import CuraApplication, ApplicationMetadata -from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope -from .SubscribedPackagesModel import SubscribedPackagesModel -from ..CloudApiModel import CloudApiModel - - -class CloudPackageChecker(QObject): - - SYNC_SERVICE_NAME = "CloudPackageChecker" - - def __init__(self, application: CuraApplication) -> None: - super().__init__() - - self.discrepancies = Signal() # Emits SubscribedPackagesModel - self._application = application # type: CuraApplication - self._scope = JsonDecoratorScope(UltimakerCloudScope(application)) - self._model = SubscribedPackagesModel() - self._message = None # type: Optional[Message] - - self._application.initializationFinished.connect(self._onAppInitialized) - self._i18n_catalog = i18nCatalog("cura") - self._sdk_version = ApplicationMetadata.CuraSDKVersion - self._last_notified_packages = set() # type: Set[str] - """Packages for which a notification has been shown. No need to bother the user twice fo equal content""" - - # This is a plugin, so most of the components required are not ready when - # this is initialized. Therefore, we wait until the application is ready. - def _onAppInitialized(self) -> None: - self._package_manager = self._application.getPackageManager() - # initial check - self._getPackagesIfLoggedIn() - - self._application.getCuraAPI().account.loginStateChanged.connect(self._onLoginStateChanged) - self._application.getCuraAPI().account.syncRequested.connect(self._getPackagesIfLoggedIn) - - def _onLoginStateChanged(self) -> None: - # reset session - self._last_notified_packages = set() - self._getPackagesIfLoggedIn() - - def _getPackagesIfLoggedIn(self) -> None: - if self._application.getCuraAPI().account.isLoggedIn: - self._getUserSubscribedPackages() - else: - self._hideSyncMessage() - - def _getUserSubscribedPackages(self) -> None: - self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.SYNCING) - url = CloudApiModel.api_url_user_packages - self._application.getHttpRequestManager().get(url, - callback = self._onUserPackagesRequestFinished, - error_callback = self._onUserPackagesRequestFinished, - timeout=10, - scope = self._scope) - - def _onUserPackagesRequestFinished(self, reply: "QNetworkReply", error: Optional["QNetworkReply.NetworkError"] = None) -> None: - if error is not None or reply.attribute(QNetworkRequest.HttpStatusCodeAttribute) != 200: - Logger.log("w", - "Requesting user packages failed, response code %s while trying to connect to %s", - reply.attribute(QNetworkRequest.HttpStatusCodeAttribute), reply.url()) - self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.ERROR) - return - - try: - json_data = json.loads(bytes(reply.readAll()).decode("utf-8")) - # Check for errors: - if "errors" in json_data: - for error in json_data["errors"]: - Logger.log("e", "%s", error["title"]) - self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.ERROR) - return - self._handleCompatibilityData(json_data["data"]) - except json.decoder.JSONDecodeError: - Logger.log("w", "Received invalid JSON for user subscribed packages from the Web Marketplace") - - self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.SUCCESS) - - def _handleCompatibilityData(self, subscribed_packages_payload: List[Dict[str, Any]]) -> None: - user_subscribed_packages = {plugin["package_id"] for plugin in subscribed_packages_payload} - user_installed_packages = self._package_manager.getAllInstalledPackageIDs() - - # We need to re-evaluate the dismissed packages - # (i.e. some package might got updated to the correct SDK version in the meantime, - # hence remove them from the Dismissed Incompatible list) - self._package_manager.reEvaluateDismissedPackages(subscribed_packages_payload, self._sdk_version) - user_dismissed_packages = self._package_manager.getDismissedPackages() - if user_dismissed_packages: - user_installed_packages.update(user_dismissed_packages) - - # We check if there are packages installed in Web Marketplace but not in Cura marketplace - package_discrepancy = list(user_subscribed_packages.difference(user_installed_packages)) - - if user_subscribed_packages != self._last_notified_packages: - # scenario: - # 1. user subscribes to a package - # 2. dismisses the license/unsubscribes - # 3. subscribes to the same package again - # in this scenario we want to notify the user again. To capture that there was a change during - # step 2, we clear the last_notified after step 2. This way, the user will be notified after - # step 3 even though the list of packages for step 1 and 3 are equal - self._last_notified_packages = set() - - if package_discrepancy: - account = self._application.getCuraAPI().account - account.setUpdatePackagesAction(lambda: self._onSyncButtonClicked(None, None)) - - if user_subscribed_packages == self._last_notified_packages: - # already notified user about these - return - - Logger.log("d", "Discrepancy found between Cloud subscribed packages and Cura installed packages") - self._model.addDiscrepancies(package_discrepancy) - self._model.initialize(self._package_manager, subscribed_packages_payload) - self._showSyncMessage() - self._last_notified_packages = user_subscribed_packages - - def _showSyncMessage(self) -> None: - """Show the message if it is not already shown""" - - if self._message is not None: - self._message.show() - return - - sync_message = Message(self._i18n_catalog.i18nc( - "@info:generic", - "Do you want to sync material and software packages with your account?"), - title = self._i18n_catalog.i18nc("@info:title", "Changes detected from your Ultimaker account", )) - sync_message.addAction("sync", - name = self._i18n_catalog.i18nc("@action:button", "Sync"), - icon = "", - description = "Sync your plugins and print profiles to Ultimaker Cura.", - button_align = Message.ActionButtonAlignment.ALIGN_RIGHT) - sync_message.actionTriggered.connect(self._onSyncButtonClicked) - sync_message.show() - self._message = sync_message - - def _hideSyncMessage(self) -> None: - """Hide the message if it is showing""" - - if self._message is not None: - self._message.hide() - self._message = None - - def _onSyncButtonClicked(self, sync_message: Optional[Message], sync_message_action: Optional[str]) -> None: - if sync_message is not None: - sync_message.hide() - self._hideSyncMessage() # Should be the same message, but also sets _message to None - self.discrepancies.emit(self._model) diff --git a/plugins/Toolbox/src/CloudSync/DiscrepanciesPresenter.py b/plugins/Toolbox/src/CloudSync/DiscrepanciesPresenter.py deleted file mode 100644 index cee2f6318a..0000000000 --- a/plugins/Toolbox/src/CloudSync/DiscrepanciesPresenter.py +++ /dev/null @@ -1,41 +0,0 @@ -import os -from typing import Optional - -from PyQt5.QtCore import QObject, pyqtSlot - -from UM.Qt.QtApplication import QtApplication -from UM.Signal import Signal -from .SubscribedPackagesModel import SubscribedPackagesModel - - -class DiscrepanciesPresenter(QObject): - """Shows a list of packages to be added or removed. The user can select which packages to (un)install. The user's - - choices are emitted on the `packageMutations` Signal. - """ - - def __init__(self, app: QtApplication) -> None: - super().__init__(app) - - self.packageMutations = Signal() # Emits SubscribedPackagesModel - - self._app = app - self._package_manager = app.getPackageManager() - self._dialog = None # type: Optional[QObject] - self._compatibility_dialog_path = "resources/qml/dialogs/CompatibilityDialog.qml" - - def present(self, plugin_path: str, model: SubscribedPackagesModel) -> None: - path = os.path.join(plugin_path, self._compatibility_dialog_path) - self._dialog = self._app.createQmlComponent(path, {"subscribedPackagesModel": model, "handler": self}) - assert self._dialog - self._dialog.accepted.connect(lambda: self._onConfirmClicked(model)) - - def _onConfirmClicked(self, model: SubscribedPackagesModel) -> None: - # If there are incompatible packages - automatically dismiss them - if model.getIncompatiblePackages(): - self._package_manager.dismissAllIncompatiblePackages(model.getIncompatiblePackages()) - # For now, all compatible packages presented to the user should be installed. - # Later, we might remove items for which the user unselected the package - if model.getCompatiblePackages(): - model.setItems(model.getCompatiblePackages()) - self.packageMutations.emit(model) diff --git a/plugins/Toolbox/src/CloudSync/DownloadPresenter.py b/plugins/Toolbox/src/CloudSync/DownloadPresenter.py deleted file mode 100644 index a070065540..0000000000 --- a/plugins/Toolbox/src/CloudSync/DownloadPresenter.py +++ /dev/null @@ -1,151 +0,0 @@ -# Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -import tempfile -from typing import Dict, List, Any - -from PyQt5.QtNetwork import QNetworkReply - -from UM import i18n_catalog -from UM.Logger import Logger -from UM.Message import Message -from UM.Signal import Signal -from UM.TaskManagement.HttpRequestManager import HttpRequestManager -from cura.CuraApplication import CuraApplication -from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope -from .SubscribedPackagesModel import SubscribedPackagesModel - - -class DownloadPresenter: - """Downloads a set of packages from the Ultimaker Cloud Marketplace - - use download() exactly once: should not be used for multiple sets of downloads since this class contains state - """ - - DISK_WRITE_BUFFER_SIZE = 256 * 1024 # 256 KB - - def __init__(self, app: CuraApplication) -> None: - # Emits (Dict[str, str], List[str]) # (success_items, error_items) - # Dict{success_package_id, temp_file_path} - # List[errored_package_id] - self.done = Signal() - - self._app = app - self._scope = UltimakerCloudScope(app) - - self._started = False - self._progress_message = self._createProgressMessage() - self._progress = {} # type: Dict[str, Dict[str, Any]] # package_id, Dict - self._error = [] # type: List[str] # package_id - - def download(self, model: SubscribedPackagesModel) -> None: - if self._started: - Logger.error("Download already started. Create a new %s instead", self.__class__.__name__) - return - - manager = HttpRequestManager.getInstance() - for item in model.items: - package_id = item["package_id"] - - def finishedCallback(reply: QNetworkReply, pid = package_id) -> None: - self._onFinished(pid, reply) - - def progressCallback(rx: int, rt: int, pid = package_id) -> None: - self._onProgress(pid, rx, rt) - - def errorCallback(reply: QNetworkReply, error: QNetworkReply.NetworkError, pid = package_id) -> None: - self._onError(pid) - - request_data = manager.get( - item["download_url"], - callback = finishedCallback, - download_progress_callback = progressCallback, - error_callback = errorCallback, - scope = self._scope) - - self._progress[package_id] = { - "received": 0, - "total": 1, # make sure this is not considered done yet. Also divByZero-safe - "file_written": None, - "request_data": request_data, - "package_model": item - } - - self._started = True - self._progress_message.show() - - def abort(self) -> None: - manager = HttpRequestManager.getInstance() - for item in self._progress.values(): - manager.abortRequest(item["request_data"]) - - # Aborts all current operations and returns a copy with the same settings such as app and scope - def resetCopy(self) -> "DownloadPresenter": - self.abort() - self.done.disconnectAll() - return DownloadPresenter(self._app) - - def _createProgressMessage(self) -> Message: - return Message(i18n_catalog.i18nc("@info:generic", "Syncing..."), - lifetime = 0, - use_inactivity_timer = False, - progress = 0.0, - title = i18n_catalog.i18nc("@info:title", "Changes detected from your Ultimaker account", )) - - def _onFinished(self, package_id: str, reply: QNetworkReply) -> None: - self._progress[package_id]["received"] = self._progress[package_id]["total"] - - try: - with tempfile.NamedTemporaryFile(mode = "wb+", suffix = ".curapackage", delete = False) as temp_file: - bytes_read = reply.read(self.DISK_WRITE_BUFFER_SIZE) - while bytes_read: - temp_file.write(bytes_read) - bytes_read = reply.read(self.DISK_WRITE_BUFFER_SIZE) - self._app.processEvents() - self._progress[package_id]["file_written"] = temp_file.name - except IOError as e: - Logger.logException("e", "Failed to write downloaded package to temp file", e) - self._onError(package_id) - temp_file.close() - - self._checkDone() - - def _onProgress(self, package_id: str, rx: int, rt: int) -> None: - self._progress[package_id]["received"] = rx - self._progress[package_id]["total"] = rt - - received = 0 - total = 0 - for item in self._progress.values(): - received += item["received"] - total += item["total"] - - if total == 0: # Total download size is 0, or unknown, or there are no progress items at all. - self._progress_message.setProgress(100.0) - return - - self._progress_message.setProgress(100.0 * (received / total)) # [0 .. 100] % - - def _onError(self, package_id: str) -> None: - self._progress.pop(package_id) - self._error.append(package_id) - self._checkDone() - - def _checkDone(self) -> bool: - for item in self._progress.values(): - if not item["file_written"]: - return False - - success_items = { - package_id: - { - "package_path": value["file_written"], - "icon_url": value["package_model"]["icon_url"] - } - for package_id, value in self._progress.items() - } - error_items = [package_id for package_id in self._error] - - self._progress_message.hide() - self.done.emit(success_items, error_items) - return True diff --git a/plugins/Toolbox/src/CloudSync/LicenseModel.py b/plugins/Toolbox/src/CloudSync/LicenseModel.py deleted file mode 100644 index 335a91ef84..0000000000 --- a/plugins/Toolbox/src/CloudSync/LicenseModel.py +++ /dev/null @@ -1,77 +0,0 @@ -from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal -from UM.i18n import i18nCatalog - -catalog = i18nCatalog("cura") - - -# Model for the ToolboxLicenseDialog -class LicenseModel(QObject): - DEFAULT_DECLINE_BUTTON_TEXT = catalog.i18nc("@button", "Decline") - ACCEPT_BUTTON_TEXT = catalog.i18nc("@button", "Agree") - - dialogTitleChanged = pyqtSignal() - packageNameChanged = pyqtSignal() - licenseTextChanged = pyqtSignal() - iconChanged = pyqtSignal() - - def __init__(self, decline_button_text: str = DEFAULT_DECLINE_BUTTON_TEXT) -> None: - super().__init__() - - self._current_page_idx = 0 - self._page_count = 1 - self._dialogTitle = "" - self._license_text = "" - self._package_name = "" - self._icon_url = "" - self._decline_button_text = decline_button_text - - @pyqtProperty(str, constant = True) - def acceptButtonText(self): - return self.ACCEPT_BUTTON_TEXT - - @pyqtProperty(str, constant = True) - def declineButtonText(self): - return self._decline_button_text - - @pyqtProperty(str, notify=dialogTitleChanged) - def dialogTitle(self) -> str: - return self._dialogTitle - - @pyqtProperty(str, notify=packageNameChanged) - def packageName(self) -> str: - return self._package_name - - def setPackageName(self, name: str) -> None: - self._package_name = name - self.packageNameChanged.emit() - - @pyqtProperty(str, notify=iconChanged) - def iconUrl(self) -> str: - return self._icon_url - - def setIconUrl(self, url: str): - self._icon_url = url - self.iconChanged.emit() - - @pyqtProperty(str, notify=licenseTextChanged) - def licenseText(self) -> str: - return self._license_text - - def setLicenseText(self, license_text: str) -> None: - if self._license_text != license_text: - self._license_text = license_text - self.licenseTextChanged.emit() - - def setCurrentPageIdx(self, idx: int) -> None: - self._current_page_idx = idx - self._updateDialogTitle() - - def setPageCount(self, count: int) -> None: - self._page_count = count - self._updateDialogTitle() - - def _updateDialogTitle(self): - self._dialogTitle = catalog.i18nc("@title:window", "Plugin License Agreement") - if self._page_count > 1: - self._dialogTitle = self._dialogTitle + " ({}/{})".format(self._current_page_idx + 1, self._page_count) - self.dialogTitleChanged.emit() diff --git a/plugins/Toolbox/src/CloudSync/LicensePresenter.py b/plugins/Toolbox/src/CloudSync/LicensePresenter.py deleted file mode 100644 index 9a68c93d71..0000000000 --- a/plugins/Toolbox/src/CloudSync/LicensePresenter.py +++ /dev/null @@ -1,135 +0,0 @@ -import os -from collections import OrderedDict -from typing import Dict, Optional, List, Any - -from PyQt5.QtCore import QObject, pyqtSlot - -from UM.Logger import Logger -from UM.PackageManager import PackageManager -from UM.Signal import Signal -from cura.CuraApplication import CuraApplication -from UM.i18n import i18nCatalog - -from .LicenseModel import LicenseModel - - -class LicensePresenter(QObject): - """Presents licenses for a set of packages for the user to accept or reject. - - Call present() exactly once to show a licenseDialog for a set of packages - Before presenting another set of licenses, create a new instance using resetCopy(). - - licenseAnswers emits a list of Dicts containing answers when the user has made a choice for all provided packages. - """ - - def __init__(self, app: CuraApplication) -> None: - super().__init__() - self._presented = False - """Whether present() has been called and state is expected to be initialized""" - self._catalog = i18nCatalog("cura") - self._dialog = None # type: Optional[QObject] - self._package_manager = app.getPackageManager() # type: PackageManager - # Emits List[Dict[str, [Any]] containing for example - # [{ "package_id": "BarbarianPlugin", "package_path" : "/tmp/dg345as", "accepted" : True }] - self.licenseAnswers = Signal() - - self._current_package_idx = 0 - self._package_models = [] # type: List[Dict] - decline_button_text = self._catalog.i18nc("@button", "Decline and remove from account") - self._license_model = LicenseModel(decline_button_text=decline_button_text) # type: LicenseModel - self._page_count = 0 - - self._app = app - - self._compatibility_dialog_path = "resources/qml/dialogs/ToolboxLicenseDialog.qml" - - def present(self, plugin_path: str, packages: Dict[str, Dict[str, str]]) -> None: - """Show a license dialog for multiple packages where users can read a license and accept or decline them - - :param plugin_path: Root directory of the Toolbox plugin - :param packages: Dict[package id, file path] - """ - if self._presented: - Logger.error("{clazz} is single-use. Create a new {clazz} instead", clazz=self.__class__.__name__) - return - - path = os.path.join(plugin_path, self._compatibility_dialog_path) - - self._initState(packages) - - if self._page_count == 0: - self.licenseAnswers.emit(self._package_models) - return - - if self._dialog is None: - - context_properties = { - "catalog": self._catalog, - "licenseModel": self._license_model, - "handler": self - } - self._dialog = self._app.createQmlComponent(path, context_properties) - self._presentCurrentPackage() - self._presented = True - - def resetCopy(self) -> "LicensePresenter": - """Clean up and return a new copy with the same settings such as app""" - if self._dialog: - self._dialog.close() - self.licenseAnswers.disconnectAll() - return LicensePresenter(self._app) - - @pyqtSlot() - def onLicenseAccepted(self) -> None: - self._package_models[self._current_package_idx]["accepted"] = True - self._checkNextPage() - - @pyqtSlot() - def onLicenseDeclined(self) -> None: - self._package_models[self._current_package_idx]["accepted"] = False - self._checkNextPage() - - def _initState(self, packages: Dict[str, Dict[str, Any]]) -> None: - - implicitly_accepted_count = 0 - - for package_id, item in packages.items(): - item["package_id"] = package_id - item["licence_content"] = self._package_manager.getPackageLicense(item["package_path"]) - if item["licence_content"] is None: - # Implicitly accept when there is no license - item["accepted"] = True - implicitly_accepted_count = implicitly_accepted_count + 1 - self._package_models.append(item) - else: - item["accepted"] = None #: None: no answer yet - # When presenting the packages, we want to show packages which have a license first. - # In fact, we don't want to show the others at all because they are implicitly accepted - self._package_models.insert(0, item) - CuraApplication.getInstance().processEvents() - self._page_count = len(self._package_models) - implicitly_accepted_count - self._license_model.setPageCount(self._page_count) - - - def _presentCurrentPackage(self) -> None: - package_model = self._package_models[self._current_package_idx] - package_info = self._package_manager.getPackageInfo(package_model["package_path"]) - - self._license_model.setCurrentPageIdx(self._current_package_idx) - self._license_model.setPackageName(package_info["display_name"]) - self._license_model.setIconUrl(package_model["icon_url"]) - self._license_model.setLicenseText(package_model["licence_content"]) - if self._dialog: - self._dialog.open() # Does nothing if already open - - def _checkNextPage(self) -> None: - if self._current_package_idx + 1 < self._page_count: - self._current_package_idx += 1 - self._presentCurrentPackage() - else: - if self._dialog: - self._dialog.close() - self.licenseAnswers.emit(self._package_models) - - - diff --git a/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py b/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py deleted file mode 100644 index 8776d1782a..0000000000 --- a/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py +++ /dev/null @@ -1,32 +0,0 @@ -from UM import i18nCatalog -from UM.Message import Message -from cura.CuraApplication import CuraApplication - - -class RestartApplicationPresenter: - """Presents a dialog telling the user that a restart is required to apply changes - - Since we cannot restart Cura, the app is closed instead when the button is clicked - """ - def __init__(self, app: CuraApplication) -> None: - self._app = app - self._i18n_catalog = i18nCatalog("cura") - - def present(self) -> None: - app_name = self._app.getApplicationDisplayName() - - message = Message(self._i18n_catalog.i18nc("@info:generic", - "You need to quit and restart {} before changes have effect.", - app_name)) - - message.addAction("quit", - name="Quit " + app_name, - icon = "", - description="Close the application", - button_align=Message.ActionButtonAlignment.ALIGN_RIGHT) - - message.actionTriggered.connect(self._quitClicked) - message.show() - - def _quitClicked(self, *_): - self._app.windowClosed() diff --git a/plugins/Toolbox/src/CloudSync/SubscribedPackagesModel.py b/plugins/Toolbox/src/CloudSync/SubscribedPackagesModel.py deleted file mode 100644 index db16c5ea84..0000000000 --- a/plugins/Toolbox/src/CloudSync/SubscribedPackagesModel.py +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -from PyQt5.QtCore import Qt, pyqtProperty, pyqtSlot - -from UM.PackageManager import PackageManager -from UM.Qt.ListModel import ListModel -from UM.Version import Version - -from cura import ApplicationMetadata -from typing import List, Dict, Any - - -class SubscribedPackagesModel(ListModel): - def __init__(self, parent = None): - super().__init__(parent) - - self._items = [] - self._metadata = None - self._discrepancies = None - self._sdk_version = ApplicationMetadata.CuraSDKVersion - - self.addRoleName(Qt.UserRole + 1, "package_id") - self.addRoleName(Qt.UserRole + 2, "display_name") - self.addRoleName(Qt.UserRole + 3, "icon_url") - self.addRoleName(Qt.UserRole + 4, "is_compatible") - self.addRoleName(Qt.UserRole + 5, "is_dismissed") - - @pyqtProperty(bool, constant=True) - def hasCompatiblePackages(self) -> bool: - for item in self._items: - if item['is_compatible']: - return True - return False - - @pyqtProperty(bool, constant=True) - def hasIncompatiblePackages(self) -> bool: - for item in self._items: - if not item['is_compatible']: - return True - return False - - def addDiscrepancies(self, discrepancy: List[str]) -> None: - self._discrepancies = discrepancy - - def getCompatiblePackages(self) -> List[Dict[str, Any]]: - return [package for package in self._items if package["is_compatible"]] - - def getIncompatiblePackages(self) -> List[str]: - return [package["package_id"] for package in self._items if not package["is_compatible"]] - - def initialize(self, package_manager: PackageManager, subscribed_packages_payload: List[Dict[str, Any]]) -> None: - self._items.clear() - for item in subscribed_packages_payload: - if item["package_id"] not in self._discrepancies: - continue - package = { - "package_id": item["package_id"], - "display_name": item["display_name"], - "sdk_versions": item["sdk_versions"], - "download_url": item["download_url"], - "md5_hash": item["md5_hash"], - "is_dismissed": False, - } - - compatible = any(package_manager.isPackageCompatible(Version(version)) for version in item["sdk_versions"]) - package.update({"is_compatible": compatible}) - - try: - package.update({"icon_url": item["icon_url"]}) - except KeyError: # There is no 'icon_url" in the response payload for this package - package.update({"icon_url": ""}) - self._items.append(package) - self.setItems(self._items) diff --git a/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py b/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py deleted file mode 100644 index bb37c6d4a9..0000000000 --- a/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright (c) 2021 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -import os -from typing import List, Dict, Any, cast - -from UM import i18n_catalog -from UM.Extension import Extension -from UM.Logger import Logger -from UM.Message import Message -from UM.PluginRegistry import PluginRegistry -from cura.CuraApplication import CuraApplication -from .CloudPackageChecker import CloudPackageChecker -from .CloudApiClient import CloudApiClient -from .DiscrepanciesPresenter import DiscrepanciesPresenter -from .DownloadPresenter import DownloadPresenter -from .LicensePresenter import LicensePresenter -from .RestartApplicationPresenter import RestartApplicationPresenter -from .SubscribedPackagesModel import SubscribedPackagesModel - - -class SyncOrchestrator(Extension): - """Orchestrates the synchronizing of packages from the user account to the installed packages - - Example flow: - - - CloudPackageChecker compares a list of packages the user `subscribed` to in their account - If there are `discrepancies` between the account and locally installed packages, they are emitted - - DiscrepanciesPresenter shows a list of packages to be added or removed to the user. It emits the `packageMutations` - the user selected to be performed - - The SyncOrchestrator uses PackageManager to remove local packages the users wants to see removed - - The DownloadPresenter shows a download progress dialog. It emits A tuple of succeeded and failed downloads - - The LicensePresenter extracts licenses from the downloaded packages and presents a license for each package to - be installed. It emits the `licenseAnswers` signal for accept or declines - - The CloudApiClient removes the declined packages from the account - - The SyncOrchestrator uses PackageManager to install the downloaded packages and delete temp files. - - The RestartApplicationPresenter notifies the user that a restart is required for changes to take effect - """ - - def __init__(self, app: CuraApplication) -> None: - super().__init__() - # Differentiate This PluginObject from the Toolbox. self.getId() includes _name. - # getPluginId() will return the same value for The toolbox extension and this one - self._name = "SyncOrchestrator" - - self._package_manager = app.getPackageManager() - # Keep a reference to the CloudApiClient. it watches for installed packages and subscribes to them - self._cloud_api = CloudApiClient.getInstance(app) # type: CloudApiClient - - self._checker = CloudPackageChecker(app) # type: CloudPackageChecker - self._checker.discrepancies.connect(self._onDiscrepancies) - - self._discrepancies_presenter = DiscrepanciesPresenter(app) # type: DiscrepanciesPresenter - self._discrepancies_presenter.packageMutations.connect(self._onPackageMutations) - - self._download_presenter = DownloadPresenter(app) # type: DownloadPresenter - - self._license_presenter = LicensePresenter(app) # type: LicensePresenter - self._license_presenter.licenseAnswers.connect(self._onLicenseAnswers) - - self._restart_presenter = RestartApplicationPresenter(app) - - def _onDiscrepancies(self, model: SubscribedPackagesModel) -> None: - plugin_path = cast(str, PluginRegistry.getInstance().getPluginPath(self.getPluginId())) - self._discrepancies_presenter.present(plugin_path, model) - - def _onPackageMutations(self, mutations: SubscribedPackagesModel) -> None: - self._download_presenter = self._download_presenter.resetCopy() - self._download_presenter.done.connect(self._onDownloadFinished) - self._download_presenter.download(mutations) - - def _onDownloadFinished(self, success_items: Dict[str, Dict[str, str]], error_items: List[str]) -> None: - """Called when a set of packages have finished downloading - - :param success_items:: Dict[package_id, Dict[str, str]] - :param error_items:: List[package_id] - """ - if error_items: - message = i18n_catalog.i18nc("@info:generic", "{} plugins failed to download".format(len(error_items))) - self._showErrorMessage(message) - - plugin_path = cast(str, PluginRegistry.getInstance().getPluginPath(self.getPluginId())) - self._license_presenter = self._license_presenter.resetCopy() - self._license_presenter.licenseAnswers.connect(self._onLicenseAnswers) - self._license_presenter.present(plugin_path, success_items) - - # Called when user has accepted / declined all licenses for the downloaded packages - def _onLicenseAnswers(self, answers: List[Dict[str, Any]]) -> None: - has_changes = False # True when at least one package is installed - - for item in answers: - if item["accepted"]: - # install and subscribe packages - if not self._package_manager.installPackage(item["package_path"]): - message = "Could not install {}".format(item["package_id"]) - self._showErrorMessage(message) - continue - has_changes = True - else: - self._cloud_api.unsubscribe(item["package_id"]) - # delete temp file - try: - os.remove(item["package_path"]) - except EnvironmentError as e: # File was already removed, no access rights, etc. - Logger.error("Can't delete temporary package file: {err}".format(err = str(e))) - - if has_changes: - self._restart_presenter.present() - - def _showErrorMessage(self, text: str): - """Logs an error and shows it to the user""" - - Logger.error(text) - Message(text, lifetime = 0, message_type = Message.MessageType.ERROR).show() diff --git a/plugins/Toolbox/src/ConfigsModel.py b/plugins/Toolbox/src/ConfigsModel.py deleted file mode 100644 index a53817653f..0000000000 --- a/plugins/Toolbox/src/ConfigsModel.py +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright (c) 2018 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -from PyQt5.QtCore import Qt - -from UM.Qt.ListModel import ListModel - - -class ConfigsModel(ListModel): - """Model that holds supported configurations (for material/quality packages).""" - - def __init__(self, parent = None): - super().__init__(parent) - - self._configs = None - - self.addRoleName(Qt.UserRole + 1, "machine") - self.addRoleName(Qt.UserRole + 2, "print_core") - self.addRoleName(Qt.UserRole + 3, "build_plate") - self.addRoleName(Qt.UserRole + 4, "support_material") - self.addRoleName(Qt.UserRole + 5, "quality") - - def setConfigs(self, configs): - self._configs = configs - self._update() - - def _update(self): - items = [] - for item in self._configs: - items.append({ - "machine": item["machine"], - "print_core": item["print_core"], - "build_plate": item["build_plate"], - "support_material": item["support_material"], - "quality": item["quality"] - }) - - self.setItems(items) diff --git a/plugins/Toolbox/src/PackagesModel.py b/plugins/Toolbox/src/PackagesModel.py deleted file mode 100644 index b11661c51e..0000000000 --- a/plugins/Toolbox/src/PackagesModel.py +++ /dev/null @@ -1,162 +0,0 @@ -# Copyright (c) 2021 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -import re -from typing import Dict - -from PyQt5.QtCore import Qt, pyqtProperty - -from UM.Logger import Logger -from UM.Qt.ListModel import ListModel - -from .ConfigsModel import ConfigsModel - - -class PackagesModel(ListModel): - """Model that holds Cura packages. - - By setting the filter property the instances held by this model can be changed. - """ - - def __init__(self, parent = None): - super().__init__(parent) - - self._metadata = None - - self.addRoleName(Qt.UserRole + 1, "id") - self.addRoleName(Qt.UserRole + 2, "type") - self.addRoleName(Qt.UserRole + 3, "name") - self.addRoleName(Qt.UserRole + 4, "version") - self.addRoleName(Qt.UserRole + 5, "author_id") - self.addRoleName(Qt.UserRole + 6, "author_name") - self.addRoleName(Qt.UserRole + 7, "author_email") - self.addRoleName(Qt.UserRole + 8, "description") - self.addRoleName(Qt.UserRole + 9, "icon_url") - self.addRoleName(Qt.UserRole + 10, "image_urls") - self.addRoleName(Qt.UserRole + 11, "download_url") - self.addRoleName(Qt.UserRole + 12, "last_updated") - self.addRoleName(Qt.UserRole + 13, "is_bundled") - self.addRoleName(Qt.UserRole + 14, "is_active") - self.addRoleName(Qt.UserRole + 15, "is_installed") # Scheduled pkgs are included in the model but should not be marked as actually installed - self.addRoleName(Qt.UserRole + 16, "has_configs") - self.addRoleName(Qt.UserRole + 17, "supported_configs") - self.addRoleName(Qt.UserRole + 18, "download_count") - self.addRoleName(Qt.UserRole + 19, "tags") - self.addRoleName(Qt.UserRole + 20, "links") - self.addRoleName(Qt.UserRole + 21, "website") - self.addRoleName(Qt.UserRole + 22, "login_required") - - # List of filters for queries. The result is the union of the each list of results. - self._filter = {} # type: Dict[str, str] - - def setMetadata(self, data): - if self._metadata != data: - self._metadata = data - self._update() - - def _update(self): - items = [] - - if self._metadata is None: - Logger.logException("w", "Failed to load packages for Marketplace") - self.setItems(items) - return - - for package in self._metadata: - has_configs = False - configs_model = None - - links_dict = {} - if "data" in package: - # Links is a list of dictionaries with "title" and "url". Convert this list into a dict so it's easier - # to process. - link_list = package["data"]["links"] if "links" in package["data"] else [] - links_dict = {d["title"]: d["url"] for d in link_list} - - # This code never gets executed because the API response does not contain "supported_configs" in it - # It is so because 2y ago when this was created - it did contain it. But it was a prototype only - # and never got to production. As agreed with the team, it'll stay here for now, in case we decide to rework and use it - # The response payload has been changed. Please see: - # https://github.com/Ultimaker/Cura/compare/CURA-7072-temp?expand=1 - if "supported_configs" in package["data"]: - if len(package["data"]["supported_configs"]) > 0: - has_configs = True - configs_model = ConfigsModel() - configs_model.setConfigs(package["data"]["supported_configs"]) - - if "author_id" not in package["author"] or "display_name" not in package["author"]: - package["author"]["author_id"] = "" - package["author"]["display_name"] = "" - - items.append({ - "id": package["package_id"], - "type": package["package_type"], - "name": package["display_name"].strip(), - "version": package["package_version"], - "author_id": package["author"]["author_id"], - "author_name": package["author"]["display_name"], - "author_email": package["author"]["email"] if "email" in package["author"] else None, - "description": package["description"] if "description" in package else None, - "icon_url": package["icon_url"] if "icon_url" in package else None, - "image_urls": package["image_urls"] if "image_urls" in package else None, - "download_url": package["download_url"] if "download_url" in package else None, - "last_updated": package["last_updated"] if "last_updated" in package else None, - "is_bundled": package["is_bundled"] if "is_bundled" in package else False, - "is_active": package["is_active"] if "is_active" in package else False, - "is_installed": package["is_installed"] if "is_installed" in package else False, - "has_configs": has_configs, - "supported_configs": configs_model, - "download_count": package["download_count"] if "download_count" in package else 0, - "tags": package["tags"] if "tags" in package else [], - "links": links_dict, - "website": package["website"] if "website" in package else None, - "login_required": "login-required" in package.get("tags", []), - }) - - # Filter on all the key-word arguments. - for key, value in self._filter.items(): - if key == "tags": - key_filter = lambda item, v = value: v in item["tags"] - elif "*" in value: - key_filter = lambda candidate, k = key, v = value: self._matchRegExp(candidate, k, v) - else: - key_filter = lambda candidate, k = key, v = value: self._matchString(candidate, k, v) - items = filter(key_filter, items) - - # Execute all filters. - filtered_items = list(items) - - filtered_items.sort(key = lambda k: k["name"]) - self.setItems(filtered_items) - - def setFilter(self, filter_dict: Dict[str, str]) -> None: - """Set the filter of this model based on a string. - - :param filter_dict: Dictionary to do the filtering by. - """ - if filter_dict != self._filter: - self._filter = filter_dict - self._update() - - @pyqtProperty("QVariantMap", fset = setFilter, constant = True) - def filter(self) -> Dict[str, str]: - return self._filter - - # Check to see if a container matches with a regular expression - def _matchRegExp(self, metadata, property_name, value): - if property_name not in metadata: - return False - value = re.escape(value) #Escape for regex patterns. - value = "^" + value.replace("\\*", ".*") + "$" #Instead of (now escaped) asterisks, match on any string. Also add anchors for a complete match. - if self._ignore_case: - value_pattern = re.compile(value, re.IGNORECASE) - else: - value_pattern = re.compile(value) - - return value_pattern.match(str(metadata[property_name])) - - # Check to see if a container matches with a string - def _matchString(self, metadata, property_name, value): - if property_name not in metadata: - return False - return value.lower() == str(metadata[property_name]).lower() diff --git a/plugins/Toolbox/src/Toolbox.py b/plugins/Toolbox/src/Toolbox.py deleted file mode 100644 index c238d3f009..0000000000 --- a/plugins/Toolbox/src/Toolbox.py +++ /dev/null @@ -1,871 +0,0 @@ -# Copyright (c) 2020 Ultimaker B.V. -# Toolbox is released under the terms of the LGPLv3 or higher. - -import json -import os -import tempfile -from typing import cast, Any, Dict, List, Set, TYPE_CHECKING, Tuple, Optional, Union - -from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal, pyqtSlot -from PyQt5.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkReply - -from UM.Extension import Extension -from UM.Logger import Logger -from UM.PluginRegistry import PluginRegistry -from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope -from UM.Version import Version -from UM.i18n import i18nCatalog -from cura import ApplicationMetadata -from cura.CuraApplication import CuraApplication -from cura.Machines.ContainerTree import ContainerTree -from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope -from .AuthorsModel import AuthorsModel -from .CloudApiModel import CloudApiModel -from .CloudSync.LicenseModel import LicenseModel -from .PackagesModel import PackagesModel - -if TYPE_CHECKING: - from UM.TaskManagement.HttpRequestData import HttpRequestData - from cura.Settings.GlobalStack import GlobalStack - -i18n_catalog = i18nCatalog("cura") - -DEFAULT_MARKETPLACE_ROOT = "https://marketplace.ultimaker.com" # type: str - -try: - from cura.CuraVersion import CuraMarketplaceRoot -except ImportError: - CuraMarketplaceRoot = DEFAULT_MARKETPLACE_ROOT - - -class Toolbox(QObject, Extension): - """Provides a marketplace for users to download plugins an materials""" - - def __init__(self, application: CuraApplication) -> None: - super().__init__() - - self._application = application # type: CuraApplication - - # Network: - self._download_request_data = None # type: Optional[HttpRequestData] - self._download_progress = 0 # type: float - self._is_downloading = False # type: bool - self._cloud_scope = UltimakerCloudScope(application) # type: UltimakerCloudScope - self._json_scope = JsonDecoratorScope(self._cloud_scope) # type: JsonDecoratorScope - - self._request_urls = {} # type: Dict[str, str] - self._to_update = [] # type: List[str] # Package_ids that are waiting to be updated - self._old_plugin_ids = set() # type: Set[str] - self._old_plugin_metadata = dict() # type: Dict[str, Dict[str, Any]] - - # The responses as given by the server parsed to a list. - self._server_response_data = { - "authors": [], - "packages": [], - "updates": [] - } # type: Dict[str, List[Any]] - - # Models: - self._models = { - "authors": AuthorsModel(self), - "packages": PackagesModel(self), - "updates": PackagesModel(self) - } # type: Dict[str, Union[AuthorsModel, PackagesModel]] - - self._plugins_showcase_model = PackagesModel(self) - self._plugins_available_model = PackagesModel(self) - self._plugins_installed_model = PackagesModel(self) - self._plugins_installed_model.setFilter({"is_bundled": "False"}) - self._plugins_bundled_model = PackagesModel(self) - self._plugins_bundled_model.setFilter({"is_bundled": "True"}) - self._materials_showcase_model = AuthorsModel(self) - self._materials_available_model = AuthorsModel(self) - self._materials_installed_model = PackagesModel(self) - self._materials_installed_model.setFilter({"is_bundled": "False"}) - self._materials_bundled_model = PackagesModel(self) - self._materials_bundled_model.setFilter({"is_bundled": "True"}) - self._materials_generic_model = PackagesModel(self) - - self._license_model = LicenseModel() - - # These properties are for keeping track of the UI state: - # ---------------------------------------------------------------------- - # View category defines which filter to use, and therefore effectively - # which category is currently being displayed. For example, possible - # values include "plugin" or "material", but also "installed". - self._view_category = "plugin" # type: str - - # View page defines which type of page layout to use. For example, - # possible values include "overview", "detail" or "author". - self._view_page = "welcome" # type: str - - # Active package refers to which package is currently being downloaded, - # installed, or otherwise modified. - self._active_package = None # type: Optional[Dict[str, Any]] - - self._dialog = None # type: Optional[QObject] - self._confirm_reset_dialog = None # type: Optional[QObject] - self._resetUninstallVariables() - - self._restart_required = False # type: bool - - # variables for the license agreement dialog - self._license_dialog_plugin_file_location = "" # type: str - - self._application.initializationFinished.connect(self._onAppInitialized) - - # Signals: - # -------------------------------------------------------------------------- - # Downloading changes - activePackageChanged = pyqtSignal() - onDownloadProgressChanged = pyqtSignal() - onIsDownloadingChanged = pyqtSignal() - restartRequiredChanged = pyqtSignal() - installChanged = pyqtSignal() - toolboxEnabledChanged = pyqtSignal() - - # UI changes - viewChanged = pyqtSignal() - detailViewChanged = pyqtSignal() - filterChanged = pyqtSignal() - metadataChanged = pyqtSignal() - showLicenseDialog = pyqtSignal() - closeLicenseDialog = pyqtSignal() - uninstallVariablesChanged = pyqtSignal() - - def _restart(self): - """Go back to the start state (welcome screen or loading if no login required)""" - - # For an Essentials build, login is mandatory - if not self._application.getCuraAPI().account.isLoggedIn and ApplicationMetadata.IsEnterpriseVersion: - self.setViewPage("welcome") - else: - self.setViewPage("loading") - self._fetchPackageData() - - def _resetUninstallVariables(self) -> None: - self._package_id_to_uninstall = None # type: Optional[str] - self._package_name_to_uninstall = "" - self._package_used_materials = [] # type: List[Tuple[GlobalStack, str, str]] - self._package_used_qualities = [] # type: List[Tuple[GlobalStack, str, str]] - - def getLicenseDialogPluginFileLocation(self) -> str: - return self._license_dialog_plugin_file_location - - def openLicenseDialog(self, plugin_name: str, license_content: str, plugin_file_location: str, icon_url: str) -> None: - # Set page 1/1 when opening the dialog for a single package - self._license_model.setCurrentPageIdx(0) - self._license_model.setPageCount(1) - self._license_model.setIconUrl(icon_url) - - self._license_model.setPackageName(plugin_name) - self._license_model.setLicenseText(license_content) - self._license_dialog_plugin_file_location = plugin_file_location - self.showLicenseDialog.emit() - - # This is a plugin, so most of the components required are not ready when - # this is initialized. Therefore, we wait until the application is ready. - def _onAppInitialized(self) -> None: - self._plugin_registry = self._application.getPluginRegistry() - self._package_manager = self._application.getPackageManager() - - # We need to construct a query like installed_packages=ID:VERSION&installed_packages=ID:VERSION, etc. - installed_package_ids_with_versions = [":".join(items) for items in - self._package_manager.getAllInstalledPackageIdsAndVersions()] - installed_packages_query = "&installed_packages=".join(installed_package_ids_with_versions) - - self._request_urls = { - "authors": "{base_url}/authors".format(base_url = CloudApiModel.api_url), - "packages": "{base_url}/packages".format(base_url = CloudApiModel.api_url), - "updates": "{base_url}/packages/package-updates?installed_packages={query}".format( - base_url = CloudApiModel.api_url, query = installed_packages_query) - } - - self._application.getCuraAPI().account.loginStateChanged.connect(self._restart) - - preferences = CuraApplication.getInstance().getPreferences() - - preferences.addPreference("info/automatic_plugin_update_check", True) - - # On boot we check which packages have updates. - if preferences.getValue("info/automatic_plugin_update_check") and len(installed_package_ids_with_versions) > 0: - # Request the latest and greatest! - self._makeRequestByType("updates") - - def _fetchPackageData(self) -> None: - self._makeRequestByType("packages") - self._makeRequestByType("authors") - self._updateInstalledModels() - - # Displays the toolbox - @pyqtSlot() - def launch(self) -> None: - if not self._dialog: - self._dialog = self._createDialog("Toolbox.qml") - - if not self._dialog: - Logger.log("e", "Unexpected error trying to create the 'Marketplace' dialog.") - return - - self._restart() - - self._dialog.show() - # Apply enabled/disabled state to installed plugins - self.toolboxEnabledChanged.emit() - - def _createDialog(self, qml_name: str) -> Optional[QObject]: - Logger.log("d", "Marketplace: Creating dialog [%s].", qml_name) - plugin_path = PluginRegistry.getInstance().getPluginPath(self.getPluginId()) - if not plugin_path: - return None - path = os.path.join(plugin_path, "resources", "qml", qml_name) - - dialog = self._application.createQmlComponent(path, { - "toolbox": self, - "handler": self, - "licenseModel": self._license_model - }) - if not dialog: - return None - return dialog - - def _convertPluginMetadata(self, plugin_data: Dict[str, Any]) -> Optional[Dict[str, Any]]: - try: - highest_sdk_version_supported = Version(0) - for supported_version in plugin_data["plugin"]["supported_sdk_versions"]: - if supported_version > highest_sdk_version_supported: - highest_sdk_version_supported = supported_version - - formatted = { - "package_id": plugin_data["id"], - "package_type": "plugin", - "display_name": plugin_data["plugin"]["name"], - "package_version": plugin_data["plugin"]["version"], - "sdk_version": highest_sdk_version_supported, - "author": { - "author_id": plugin_data["plugin"]["author"], - "display_name": plugin_data["plugin"]["author"] - }, - "is_installed": True, - "description": plugin_data["plugin"]["description"] - } - return formatted - except KeyError: - Logger.log("w", "Unable to convert plugin meta data %s", str(plugin_data)) - return None - - @pyqtSlot() - def _updateInstalledModels(self) -> None: - # This is moved here to avoid code duplication and so that after installing plugins they get removed from the - # list of old plugins - old_plugin_ids = self._plugin_registry.getInstalledPlugins() - installed_package_ids = self._package_manager.getAllInstalledPackageIDs() - scheduled_to_remove_package_ids = self._package_manager.getToRemovePackageIDs() - - self._old_plugin_ids = set() - self._old_plugin_metadata = dict() - - for plugin_id in old_plugin_ids: - # Neither the installed packages nor the packages that are scheduled to remove are old plugins - if plugin_id not in installed_package_ids and plugin_id not in scheduled_to_remove_package_ids: - Logger.log("d", "Found a plugin that was installed with the old plugin browser: %s", plugin_id) - - old_metadata = self._plugin_registry.getMetaData(plugin_id) - new_metadata = self._convertPluginMetadata(old_metadata) - if new_metadata is None: - # Something went wrong converting it. - continue - self._old_plugin_ids.add(plugin_id) - self._old_plugin_metadata[new_metadata["package_id"]] = new_metadata - - all_packages = self._package_manager.getAllInstalledPackagesInfo() - if "plugin" in all_packages: - # For old plugins, we only want to include the old custom plugin that were installed via the old toolbox. - # The bundled plugins will be included in JSON files in the "bundled_packages" folder, so the bundled - # plugins should be excluded from the old plugins list/dict. - all_plugin_package_ids = set(package["package_id"] for package in all_packages["plugin"]) - self._old_plugin_ids = set(plugin_id for plugin_id in self._old_plugin_ids - if plugin_id not in all_plugin_package_ids) - self._old_plugin_metadata = {k: v for k, v in self._old_plugin_metadata.items() if k in self._old_plugin_ids} - - self._plugins_installed_model.setMetadata(all_packages["plugin"] + list(self._old_plugin_metadata.values())) - self._plugins_bundled_model.setMetadata(all_packages["plugin"] + list(self._old_plugin_metadata.values())) - self.metadataChanged.emit() - if "material" in all_packages: - self._materials_installed_model.setMetadata(all_packages["material"]) - self._materials_bundled_model.setMetadata(all_packages["material"]) - self.metadataChanged.emit() - - @pyqtSlot(str) - def install(self, file_path: str) -> Optional[str]: - package_id = self._package_manager.installPackage(file_path) - self.installChanged.emit() - self._updateInstalledModels() - self.metadataChanged.emit() - self._restart_required = True - self.restartRequiredChanged.emit() - return package_id - - @pyqtSlot(str) - def checkPackageUsageAndUninstall(self, package_id: str) -> None: - """Check package usage and uninstall - - If the package is in use, you'll get a confirmation dialog to set everything to default - """ - - package_used_materials, package_used_qualities = self._package_manager.getMachinesUsingPackage(package_id) - if package_used_materials or package_used_qualities: - # Set up "uninstall variables" for resetMaterialsQualitiesAndUninstall - self._package_id_to_uninstall = package_id - package_info = self._package_manager.getInstalledPackageInfo(package_id) - self._package_name_to_uninstall = package_info.get("display_name", package_info.get("package_id")) - self._package_used_materials = package_used_materials - self._package_used_qualities = package_used_qualities - # Ask change to default material / profile - if self._confirm_reset_dialog is None: - self._confirm_reset_dialog = self._createDialog("dialogs/ToolboxConfirmUninstallResetDialog.qml") - self.uninstallVariablesChanged.emit() - if self._confirm_reset_dialog is None: - Logger.log("e", "ToolboxConfirmUninstallResetDialog should have been initialized, but it is not. Not showing dialog and not uninstalling package.") - else: - self._confirm_reset_dialog.show() - else: - # Plain uninstall - self.uninstall(package_id) - - @pyqtProperty(str, notify = uninstallVariablesChanged) - def pluginToUninstall(self) -> str: - return self._package_name_to_uninstall - - @pyqtProperty(str, notify = uninstallVariablesChanged) - def uninstallUsedMaterials(self) -> str: - return "\n".join(["%s (%s)" % (str(global_stack.getName()), material) for global_stack, extruder_nr, material in self._package_used_materials]) - - @pyqtProperty(str, notify = uninstallVariablesChanged) - def uninstallUsedQualities(self) -> str: - return "\n".join(["%s (%s)" % (str(global_stack.getName()), quality) for global_stack, extruder_nr, quality in self._package_used_qualities]) - - @pyqtSlot() - def closeConfirmResetDialog(self) -> None: - if self._confirm_reset_dialog is not None: - self._confirm_reset_dialog.close() - - @pyqtSlot() - def resetMaterialsQualitiesAndUninstall(self) -> None: - """Uses "uninstall variables" to reset qualities and materials, then uninstall - - It's used as an action on Confirm reset on Uninstall - """ - - application = CuraApplication.getInstance() - machine_manager = application.getMachineManager() - container_tree = ContainerTree.getInstance() - - for global_stack, extruder_nr, container_id in self._package_used_materials: - extruder = global_stack.extruderList[int(extruder_nr)] - approximate_diameter = extruder.getApproximateMaterialDiameter() - variant_node = container_tree.machines[global_stack.definition.getId()].variants[extruder.variant.getName()] - default_material_node = variant_node.preferredMaterial(approximate_diameter) - machine_manager.setMaterial(extruder_nr, default_material_node, global_stack = global_stack) - for global_stack, extruder_nr, container_id in self._package_used_qualities: - variant_names = [extruder.variant.getName() for extruder in global_stack.extruderList] - material_bases = [extruder.material.getMetaDataEntry("base_file") for extruder in global_stack.extruderList] - extruder_enabled = [extruder.isEnabled for extruder in global_stack.extruderList] - definition_id = global_stack.definition.getId() - machine_node = container_tree.machines[definition_id] - default_quality_group = machine_node.getQualityGroups(variant_names, material_bases, extruder_enabled)[machine_node.preferred_quality_type] - machine_manager.setQualityGroup(default_quality_group, global_stack = global_stack) - - if self._package_id_to_uninstall is not None: - self._markPackageMaterialsAsToBeUninstalled(self._package_id_to_uninstall) - self.uninstall(self._package_id_to_uninstall) - self._resetUninstallVariables() - self.closeConfirmResetDialog() - - @pyqtSlot() - def onLicenseAccepted(self): - self.closeLicenseDialog.emit() - package_id = self.install(self.getLicenseDialogPluginFileLocation()) - - - @pyqtSlot() - def onLicenseDeclined(self): - self.closeLicenseDialog.emit() - - def _markPackageMaterialsAsToBeUninstalled(self, package_id: str) -> None: - container_registry = self._application.getContainerRegistry() - - all_containers = self._package_manager.getPackageContainerIds(package_id) - for container_id in all_containers: - containers = container_registry.findInstanceContainers(id = container_id) - if not containers: - continue - container = containers[0] - if container.getMetaDataEntry("type") != "material": - continue - root_material_id = container.getMetaDataEntry("base_file") - root_material_containers = container_registry.findInstanceContainers(id = root_material_id) - if not root_material_containers: - continue - root_material_container = root_material_containers[0] - root_material_container.setMetaDataEntry("removed", True) - - @pyqtSlot(str) - def uninstall(self, package_id: str) -> None: - self._package_manager.removePackage(package_id, force_add = True) - self.installChanged.emit() - self._updateInstalledModels() - self.metadataChanged.emit() - self._restart_required = True - self.restartRequiredChanged.emit() - - def _update(self) -> None: - """Actual update packages that are in self._to_update""" - - if self._to_update: - plugin_id = self._to_update.pop(0) - remote_package = self.getRemotePackage(plugin_id) - if remote_package: - download_url = remote_package["download_url"] - Logger.log("d", "Updating package [%s]..." % plugin_id) - self.startDownload(download_url) - else: - Logger.log("e", "Could not update package [%s] because there is no remote package info available.", plugin_id) - - if self._to_update: - self._application.callLater(self._update) - - @pyqtSlot(str) - def update(self, plugin_id: str) -> None: - """Update a plugin by plugin_id""" - - self._to_update.append(plugin_id) - self._application.callLater(self._update) - - @pyqtSlot(str) - def enable(self, plugin_id: str) -> None: - self._plugin_registry.enablePlugin(plugin_id) - self.toolboxEnabledChanged.emit() - Logger.log("i", "%s was set as 'active'.", plugin_id) - self._restart_required = True - self.restartRequiredChanged.emit() - - @pyqtSlot(str) - def disable(self, plugin_id: str) -> None: - self._plugin_registry.disablePlugin(plugin_id) - self.toolboxEnabledChanged.emit() - Logger.log("i", "%s was set as 'deactive'.", plugin_id) - self._restart_required = True - self.restartRequiredChanged.emit() - - @pyqtProperty(bool, notify = metadataChanged) - def dataReady(self) -> bool: - return self._packages_model is not None - - @pyqtProperty(bool, notify = restartRequiredChanged) - def restartRequired(self) -> bool: - return self._restart_required - - @pyqtSlot() - def restart(self) -> None: - self._application.windowClosed() - - def getRemotePackage(self, package_id: str) -> Optional[Dict]: - # TODO: make the lookup in a dict, not a loop. canUpdate is called for every item. - remote_package = None - for package in self._server_response_data["packages"]: - if package["package_id"] == package_id: - remote_package = package - break - return remote_package - - @pyqtSlot(str, result = bool) - def canDowngrade(self, package_id: str) -> bool: - # If the currently installed version is higher than the bundled version (if present), the we can downgrade - # this package. - local_package = self._package_manager.getInstalledPackageInfo(package_id) - if local_package is None: - return False - - bundled_package = self._package_manager.getBundledPackageInfo(package_id) - if bundled_package is None: - return False - - local_version = Version(local_package["package_version"]) - bundled_version = Version(bundled_package["package_version"]) - return bundled_version < local_version - - @pyqtSlot(str, result = bool) - def isInstalled(self, package_id: str) -> bool: - result = self._package_manager.isPackageInstalled(package_id) - # Also check the old plugins list if it's not found in the package manager. - if not result: - result = self.isOldPlugin(package_id) - return result - - @pyqtSlot(str, result = int) - def getNumberOfInstalledPackagesByAuthor(self, author_id: str) -> int: - count = 0 - for package in self._materials_installed_model.items: - if package["author_id"] == author_id: - count += 1 - return count - - # This slot is only used to get the number of material packages by author, not any other type of packages. - @pyqtSlot(str, result = int) - def getTotalNumberOfMaterialPackagesByAuthor(self, author_id: str) -> int: - count = 0 - for package in self._server_response_data["packages"]: - if package["package_type"] == "material": - if package["author"]["author_id"] == author_id: - count += 1 - return count - - @pyqtSlot(str, result = bool) - def isEnabled(self, package_id: str) -> bool: - return package_id in self._plugin_registry.getActivePlugins() - - # Check for plugins that were installed with the old plugin browser - def isOldPlugin(self, plugin_id: str) -> bool: - return plugin_id in self._old_plugin_ids - - def getOldPluginPackageMetadata(self, plugin_id: str) -> Optional[Dict[str, Any]]: - return self._old_plugin_metadata.get(plugin_id) - - def isLoadingComplete(self) -> bool: - populated = 0 - for metadata_list in self._server_response_data.items(): - if metadata_list: - populated += 1 - return populated == len(self._server_response_data.items()) - - # Make API Calls - # -------------------------------------------------------------------------- - def _makeRequestByType(self, request_type: str) -> None: - Logger.log("d", "Requesting [%s] metadata from server.", request_type) - url = self._request_urls[request_type] - - callback = lambda r, rt = request_type: self._onDataRequestFinished(rt, r) - error_callback = lambda r, e, rt = request_type: self._onDataRequestError(rt, r, e) - self._application.getHttpRequestManager().get(url, - callback = callback, - error_callback = error_callback, - scope=self._json_scope) - - @pyqtSlot(str) - def startDownload(self, url: str) -> None: - Logger.log("i", "Attempting to download & install package from %s.", url) - - callback = lambda r: self._onDownloadFinished(r) - error_callback = lambda r, e: self._onDownloadFailed(r, e) - download_progress_callback = self._onDownloadProgress - request_data = self._application.getHttpRequestManager().get(url, - callback = callback, - error_callback = error_callback, - download_progress_callback = download_progress_callback, - scope=self._cloud_scope - ) - - self._download_request_data = request_data - self.setDownloadProgress(0) - self.setIsDownloading(True) - - @pyqtSlot() - def cancelDownload(self) -> None: - Logger.log("i", "User cancelled the download of a package. request %s", self._download_request_data) - if self._download_request_data is not None: - self._application.getHttpRequestManager().abortRequest(self._download_request_data) - self._download_request_data = None - self.resetDownload() - - def resetDownload(self) -> None: - self.setDownloadProgress(0) - self.setIsDownloading(False) - - # Handlers for Network Events - # -------------------------------------------------------------------------- - def _onDataRequestError(self, request_type: str, reply: "QNetworkReply", error: "QNetworkReply.NetworkError") -> None: - Logger.log("e", "Request [%s] failed due to error [%s]: %s", request_type, error, reply.errorString()) - self.setViewPage("errored") - - def _onDataRequestFinished(self, request_type: str, reply: "QNetworkReply") -> None: - if reply.operation() != QNetworkAccessManager.GetOperation: - Logger.log("e", "_onDataRequestFinished() only handles GET requests but got [%s] instead", reply.operation()) - return - - http_status_code = reply.attribute(QNetworkRequest.HttpStatusCodeAttribute) - if http_status_code != 200: - Logger.log("e", "Request type [%s] got non-200 HTTP response: [%s]", http_status_code) - self.setViewPage("errored") - return - - data = bytes(reply.readAll()) - try: - json_data = json.loads(data.decode("utf-8")) - except json.decoder.JSONDecodeError: - Logger.log("e", "Failed to decode response data as JSON for request type [%s], response data [%s]", - request_type, data) - self.setViewPage("errored") - return - - # Check for errors: - if "errors" in json_data: - for error in json_data["errors"]: - Logger.log("e", "Request type [%s] got response showing error: %s", error.get("title", "No error title found")) - self.setViewPage("errored") - return - - # Create model and apply metadata: - if not self._models[request_type]: - Logger.log("e", "Could not find the model for request type [%s].", request_type) - self.setViewPage("errored") - return - - self._server_response_data[request_type] = json_data["data"] - self._models[request_type].setMetadata(self._server_response_data[request_type]) - - if request_type == "packages": - self._models[request_type].setFilter({"type": "plugin"}) - self.reBuildMaterialsModels() - self.reBuildPluginsModels() - self._notifyPackageManager() - elif request_type == "authors": - self._models[request_type].setFilter({"package_types": "material"}) - self._models[request_type].setFilter({"tags": "generic"}) - elif request_type == "updates": - # Tell the package manager that there's a new set of updates available. - packages = set([pkg["package_id"] for pkg in self._server_response_data[request_type]]) - self._package_manager.setPackagesWithUpdate(packages) - - self.metadataChanged.emit() - - if self.isLoadingComplete(): - self.setViewPage("overview") - - # This function goes through all known remote versions of a package and notifies the package manager of this change - def _notifyPackageManager(self): - for package in self._server_response_data["packages"]: - self._package_manager.addAvailablePackageVersion(package["package_id"], Version(package["package_version"])) - - def _onDownloadFinished(self, reply: "QNetworkReply") -> None: - self.resetDownload() - - if reply.attribute(QNetworkRequest.HttpStatusCodeAttribute) != 200: - Logger.log("w", "Failed to download package. The following error was returned: %s", - json.loads(reply.readAll().data().decode("utf-8"))) - return - # Must not delete the temporary file on Windows - self._temp_plugin_file = tempfile.NamedTemporaryFile(mode = "w+b", suffix = ".curapackage", delete = False) - file_path = self._temp_plugin_file.name - # Write first and close, otherwise on Windows, it cannot read the file - self._temp_plugin_file.write(reply.readAll()) - self._temp_plugin_file.close() - self._onDownloadComplete(file_path) - - def _onDownloadFailed(self, reply: "QNetworkReply", error: "QNetworkReply.NetworkError") -> None: - Logger.log("w", "Failed to download package. The following error was returned: %s", error) - - self.resetDownload() - - def _onDownloadProgress(self, bytes_sent: int, bytes_total: int) -> None: - if bytes_total > 0: - new_progress = bytes_sent / bytes_total * 100 - self.setDownloadProgress(new_progress) - Logger.log("d", "new download progress %s / %s : %s%%", bytes_sent, bytes_total, new_progress) - - def _onDownloadComplete(self, file_path: str) -> None: - Logger.log("i", "Download complete.") - package_info = self._package_manager.getPackageInfo(file_path) - if not package_info: - Logger.log("w", "Package file [%s] was not a valid CuraPackage.", file_path) - return - - license_content = self._package_manager.getPackageLicense(file_path) - package_id = package_info["package_id"] - if license_content is not None: - # get the icon url for package_id, make sure the result is a string, never None - icon_url = next((x["icon_url"] for x in self.packagesModel.items if x["id"] == package_id), None) or "" - self.openLicenseDialog(package_info["display_name"], license_content, file_path, icon_url) - return - - installed_id = self.install(file_path) - if installed_id != package_id: - Logger.error("Installed package {} does not match {}".format(installed_id, package_id)) - - # Getter & Setters for Properties: - # -------------------------------------------------------------------------- - def setDownloadProgress(self, progress: float) -> None: - if progress != self._download_progress: - self._download_progress = progress - self.onDownloadProgressChanged.emit() - - @pyqtProperty(int, fset = setDownloadProgress, notify = onDownloadProgressChanged) - def downloadProgress(self) -> float: - return self._download_progress - - def setIsDownloading(self, is_downloading: bool) -> None: - if self._is_downloading != is_downloading: - self._is_downloading = is_downloading - self.onIsDownloadingChanged.emit() - - @pyqtProperty(bool, fset = setIsDownloading, notify = onIsDownloadingChanged) - def isDownloading(self) -> bool: - return self._is_downloading - - def setActivePackage(self, package: QObject) -> None: - if self._active_package != package: - self._active_package = package - self.activePackageChanged.emit() - - @pyqtProperty(QObject, fset = setActivePackage, notify = activePackageChanged) - def activePackage(self) -> Optional[QObject]: - """The active package is the package that is currently being downloaded""" - - return self._active_package - - def setViewCategory(self, category: str = "plugin") -> None: - if self._view_category != category: - self._view_category = category - self.viewChanged.emit() - - # Function explicitly defined so that it can be called through the callExtensionsMethod - # which cannot receive arguments. - def setViewCategoryToMaterials(self) -> None: - self.setViewCategory("material") - - @pyqtProperty(str, fset = setViewCategory, notify = viewChanged) - def viewCategory(self) -> str: - return self._view_category - - def setViewPage(self, page: str = "overview") -> None: - if self._view_page != page: - self._view_page = page - self.viewChanged.emit() - - @pyqtProperty(str, fset = setViewPage, notify = viewChanged) - def viewPage(self) -> str: - return self._view_page - - # Exposed Models: - # -------------------------------------------------------------------------- - @pyqtProperty(QObject, constant = True) - def authorsModel(self) -> AuthorsModel: - return cast(AuthorsModel, self._models["authors"]) - - @pyqtProperty(QObject, constant = True) - def packagesModel(self) -> PackagesModel: - return cast(PackagesModel, self._models["packages"]) - - @pyqtProperty(QObject, constant = True) - def pluginsShowcaseModel(self) -> PackagesModel: - return self._plugins_showcase_model - - @pyqtProperty(QObject, constant = True) - def pluginsAvailableModel(self) -> PackagesModel: - return self._plugins_available_model - - @pyqtProperty(QObject, constant = True) - def pluginsInstalledModel(self) -> PackagesModel: - return self._plugins_installed_model - - @pyqtProperty(QObject, constant = True) - def pluginsBundledModel(self) -> PackagesModel: - return self._plugins_bundled_model - - @pyqtProperty(QObject, constant = True) - def materialsShowcaseModel(self) -> AuthorsModel: - return self._materials_showcase_model - - @pyqtProperty(QObject, constant = True) - def materialsAvailableModel(self) -> AuthorsModel: - return self._materials_available_model - - @pyqtProperty(QObject, constant = True) - def materialsInstalledModel(self) -> PackagesModel: - return self._materials_installed_model - - @pyqtProperty(QObject, constant = True) - def materialsBundledModel(self) -> PackagesModel: - return self._materials_bundled_model - - @pyqtProperty(QObject, constant = True) - def materialsGenericModel(self) -> PackagesModel: - return self._materials_generic_model - - @pyqtSlot(str, result = str) - def getWebMarketplaceUrl(self, page: str) -> str: - root = CuraMarketplaceRoot - if root == "": - root = DEFAULT_MARKETPLACE_ROOT - return root + "/app/cura/" + page - - # Filter Models: - # -------------------------------------------------------------------------- - @pyqtSlot(str, str, str) - def filterModelByProp(self, model_type: str, filter_type: str, parameter: str) -> None: - if not self._models[model_type]: - Logger.log("w", "Couldn't filter %s model because it doesn't exist.", model_type) - return - self._models[model_type].setFilter({filter_type: parameter}) - self.filterChanged.emit() - - @pyqtSlot(str, "QVariantMap") - def setFilters(self, model_type: str, filter_dict: dict) -> None: - if not self._models[model_type]: - Logger.log("w", "Couldn't filter %s model because it doesn't exist.", model_type) - return - self._models[model_type].setFilter(filter_dict) - self.filterChanged.emit() - - @pyqtSlot(str) - def removeFilters(self, model_type: str) -> None: - if not self._models[model_type]: - Logger.log("w", "Couldn't remove filters on %s model because it doesn't exist.", model_type) - return - self._models[model_type].setFilter({}) - self.filterChanged.emit() - - # HACK(S): - # -------------------------------------------------------------------------- - def reBuildMaterialsModels(self) -> None: - materials_showcase_metadata = [] - materials_available_metadata = [] - materials_generic_metadata = [] - - processed_authors = [] # type: List[str] - - for item in self._server_response_data["packages"]: - if item["package_type"] == "material": - - author = item["author"] - if author["author_id"] in processed_authors: - continue - - # Generic materials to be in the same section - if "generic" in item["tags"]: - materials_generic_metadata.append(item) - else: - if "showcase" in item["tags"]: - materials_showcase_metadata.append(author) - else: - materials_available_metadata.append(author) - - processed_authors.append(author["author_id"]) - - self._materials_showcase_model.setMetadata(materials_showcase_metadata) - self._materials_available_model.setMetadata(materials_available_metadata) - self._materials_generic_model.setMetadata(materials_generic_metadata) - - def reBuildPluginsModels(self) -> None: - plugins_showcase_metadata = [] - plugins_available_metadata = [] - - for item in self._server_response_data["packages"]: - if item["package_type"] == "plugin": - if "showcase" in item["tags"]: - plugins_showcase_metadata.append(item) - else: - plugins_available_metadata.append(item) - - self._plugins_showcase_model.setMetadata(plugins_showcase_metadata) - self._plugins_available_model.setMetadata(plugins_available_metadata) diff --git a/plugins/Toolbox/src/__init__.py b/plugins/Toolbox/src/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/plugins/UFPReader/plugin.json b/plugins/UFPReader/plugin.json index 389b555b95..cac7e86236 100644 --- a/plugins/UFPReader/plugin.json +++ b/plugins/UFPReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for reading Ultimaker Format Packages.", - "supported_sdk_versions": ["7.6.0"], + "supported_sdk_versions": ["7.9.0"], "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/resources/qml/CameraButton.qml b/plugins/UM3NetworkPrinting/resources/qml/CameraButton.qml index 8dca61ec38..4458b48996 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/CameraButton.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/CameraButton.qml @@ -3,7 +3,6 @@ import QtQuick 2.3 import QtQuick.Controls 2.4 -import QtQuick.Controls.Styles 1.3 import UM 1.3 as UM import Cura 1.0 as Cura @@ -19,7 +18,7 @@ Button { anchors.fill: parent radius: 0.5 * width - color: parent.enabled ? (parent.hovered ? UM.Theme.getColor("monitor_secondary_button_hover") : "transparent") : UM.Theme.getColor("monitor_icon_disabled") + color: parent.enabled ? (parent.hovered ? UM.Theme.getColor("monitor_card_hover") : "transparent") : UM.Theme.getColor("monitor_icon_disabled") } UM.RecolorImage @@ -30,7 +29,7 @@ Button horizontalCenter: parent.horizontalCenter verticalCenter: parent.verticalCenter } - color: UM.Theme.getColor("primary") + color: enabled ? UM.Theme.getColor("primary") : UM.Theme.getColor("main_background") height: width source: iconSource width: Math.round(parent.width / 2) diff --git a/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml b/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml index e6bc464dea..e68f552f7b 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml @@ -1,14 +1,13 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.5 as Cura import QtQuick 2.2 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.9 import QtQuick.Layouts 1.1 import QtQuick.Window 2.1 -import QtQuick.Dialogs 1.2 Cura.MachineAction { @@ -36,32 +35,27 @@ Cura.MachineAction id: discoverUM3Action spacing: UM.Theme.getSize("default_margin").height - SystemPalette { id: palette } UM.I18nCatalog { id: catalog; name:"cura" } - Label + + UM.Label { id: pageTitle width: parent.width text: catalog.i18nc("@title:window", "Connect to Networked Printer") - wrapMode: Text.WordWrap - renderType: Text.NativeRendering - font.pointSize: 18 } - Label + UM.Label { id: pageDescription width: parent.width - wrapMode: Text.WordWrap - renderType: Text.NativeRendering text: catalog.i18nc("@label", "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.") + "\n\n" + catalog.i18nc("@label", "Select your printer from the list below:") } Row { - spacing: UM.Theme.getSize("default_lining").width + spacing: UM.Theme.getSize("thin_margin").width - Button + Cura.SecondaryButton { id: addButton text: catalog.i18nc("@action:button", "Add"); @@ -71,7 +65,7 @@ Cura.MachineAction } } - Button + Cura.SecondaryButton { id: editButton text: catalog.i18nc("@action:button", "Edit") @@ -82,7 +76,7 @@ Cura.MachineAction } } - Button + Cura.SecondaryButton { id: removeButton text: catalog.i18nc("@action:button", "Remove") @@ -90,7 +84,7 @@ Cura.MachineAction onClicked: manager.removeManualDevice(base.selectedDevice.key, base.selectedDevice.ipAddress) } - Button + Cura.SecondaryButton { id: rediscoverButton text: catalog.i18nc("@action:button", "Refresh") @@ -109,71 +103,62 @@ Cura.MachineAction width: Math.round(parent.width * 0.5) spacing: UM.Theme.getSize("default_margin").height - ScrollView + ListView { - id: objectListContainer - frameVisible: true + id: listview + width: parent.width height: base.height - contentRow.y - discoveryTip.height - Rectangle + ScrollBar.vertical: UM.ScrollBar {} + clip: true + + model: manager.foundDevices + currentIndex: -1 + onCurrentIndexChanged: { - parent: viewport - anchors.fill: parent - color: palette.light + base.selectedDevice = listview.model[currentIndex]; + // Only allow connecting if the printer has responded to API query since the last refresh + base.completeProperties = base.selectedDevice != null && base.selectedDevice.getProperty("incomplete") != "true"; } + Component.onCompleted: manager.startDiscovery() - ListView + delegate: UM.Label { - id: listview - model: manager.foundDevices - width: parent.width - currentIndex: -1 - onCurrentIndexChanged: - { - base.selectedDevice = listview.model[currentIndex]; - // Only allow connecting if the printer has responded to API query since the last refresh - base.completeProperties = base.selectedDevice != null && base.selectedDevice.getProperty("incomplete") != "true"; - } - Component.onCompleted: manager.startDiscovery() - delegate: Rectangle - { - height: childrenRect.height - color: ListView.isCurrentItem ? palette.highlight : index % 2 ? palette.base : palette.alternateBase - width: parent.width - Label - { - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - text: listview.model[index].name - color: parent.ListView.isCurrentItem ? palette.highlightedText : palette.text - elide: Text.ElideRight - renderType: Text.NativeRendering - } + id: printNameLabel + width: listview.width + height: contentHeight + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width - MouseArea + anchors.right: parent.right + text: listview.model[index].name + elide: Text.ElideRight + + MouseArea + { + anchors.fill: parent; + onClicked: { - anchors.fill: parent; - onClicked: + if(!parent.ListView.isCurrentItem) { - if(!parent.ListView.isCurrentItem) - { - parent.ListView.view.currentIndex = index; - } + parent.ListView.view.currentIndex = index; } } } + + background: Rectangle + { + color: parent.ListView.isCurrentItem ? UM.Theme.getColor("background_3") : "transparent" + } } } - Label + UM.Label { id: discoveryTip anchors.left: parent.left anchors.right: parent.right - wrapMode: Text.WordWrap - renderType: Text.NativeRendering - text: catalog.i18nc("@label", "If your printer is not listed, read the network printing troubleshooting guide").arg("https://support.ultimaker.com/hc/en-us/articles/360012795419"); + text: catalog.i18nc("@label", "If your printer is not listed, read the network printing troubleshooting guide").arg("https://ultimaker.com/en/cura/troubleshooting/network?utm_source=cura&utm_medium=software&utm_campaign=manage-network-printer"); onLinkActivated: Qt.openUrlExternally(link) } @@ -183,32 +168,26 @@ Cura.MachineAction width: Math.round(parent.width * 0.5) visible: base.selectedDevice ? true : false spacing: UM.Theme.getSize("default_margin").height - Label + UM.Label { width: parent.width - wrapMode: Text.WordWrap text: base.selectedDevice ? base.selectedDevice.name : "" font: UM.Theme.getFont("large_bold") elide: Text.ElideRight - renderType: Text.NativeRendering } - Grid + GridLayout { visible: base.completeProperties width: parent.width columns: 2 - Label + UM.Label { - width: Math.round(parent.width * 0.5) - wrapMode: Text.WordWrap - renderType: Text.NativeRendering + Layout.fillWidth: true text: catalog.i18nc("@label", "Type") } - Label + UM.Label { - width: Math.round(parent.width * 0.5) - wrapMode: Text.WordWrap - renderType: Text.NativeRendering + Layout.fillWidth: true text: { if (base.selectedDevice) { @@ -217,41 +196,31 @@ Cura.MachineAction return "" } } - Label + UM.Label { - width: Math.round(parent.width * 0.5) - wrapMode: Text.WordWrap - renderType: Text.NativeRendering + Layout.fillWidth: true text: catalog.i18nc("@label", "Firmware version") } - Label + UM.Label { - width: Math.round(parent.width * 0.5) - wrapMode: Text.WordWrap - renderType: Text.NativeRendering + Layout.fillWidth: true text: base.selectedDevice ? base.selectedDevice.firmwareVersion : "" } - Label + UM.Label { - width: Math.round(parent.width * 0.5) - wrapMode: Text.WordWrap - renderType: Text.NativeRendering + Layout.fillWidth: true text: catalog.i18nc("@label", "Address") } - Label + UM.Label { - width: Math.round(parent.width * 0.5) - wrapMode: Text.WordWrap - renderType: Text.NativeRendering + Layout.fillWidth: true text: base.selectedDevice ? base.selectedDevice.ipAddress : "" } } - Label + UM.Label { width: parent.width - wrapMode: Text.WordWrap - renderType: Text.NativeRendering text:{ // The property cluster size does not exist for older UM3 devices. if(!base.selectedDevice || base.selectedDevice.clusterSize == null || base.selectedDevice.clusterSize == 1) @@ -269,16 +238,14 @@ Cura.MachineAction } } - Label + UM.Label { width: parent.width - wrapMode: Text.WordWrap - renderType: Text.NativeRendering visible: base.selectedDevice != null && !base.completeProperties text: catalog.i18nc("@label", "The printer at this address has not yet responded." ) } - Button + Cura.SecondaryButton { text: catalog.i18nc("@action:button", "Connect") enabled: (base.selectedDevice && base.completeProperties && base.selectedDevice.clusterSize > 0) ? true : false @@ -288,18 +255,15 @@ Cura.MachineAction } } - MessageDialog + Cura.MessageDialog { id: invalidIPAddressMessageDialog - x: parent ? (parent.x + (parent.width) / 2) : 0 - y: parent ? (parent.y + (parent.height) / 2) : 0 title: catalog.i18nc("@title:window", "Invalid IP address") text: catalog.i18nc("@text", "Please enter a valid IP address.") - icon: StandardIcon.Warning - standardButtons: StandardButton.Ok + standardButtons: Dialog.Ok } - UM.Dialog + Cura.MessageDialog { id: manualPrinterDialog property string printerKey @@ -307,17 +271,19 @@ Cura.MachineAction title: catalog.i18nc("@title:window", "Printer Address") - minimumWidth: 400 * screenScaleFactor - minimumHeight: 130 * screenScaleFactor - width: minimumWidth - height: minimumHeight + width: UM.Theme.getSize("small_popup_dialog").width + height: UM.Theme.getSize("small_popup_dialog").height + + anchors.centerIn: Overlay.overlay + + standardButtons: Dialog.Yes | Dialog.No signal showDialog(string key, string address) onShowDialog: { printerKey = key; addressText = address; - manualPrinterDialog.show(); + manualPrinterDialog.open(); addressField.selectAll(); addressField.focus = true; } @@ -326,67 +292,45 @@ Cura.MachineAction anchors.fill: parent spacing: UM.Theme.getSize("default_margin").height - Label + UM.Label { text: catalog.i18nc("@label", "Enter the IP address of your printer on the network.") - width: parent.width - wrapMode: Text.WordWrap renderType: Text.NativeRendering } - TextField + Cura.TextField { id: addressField width: parent.width - validator: RegExpValidator - { - regExp: /[a-zA-Z0-9\.\-\_]*/ - } - - onAccepted: btnOk.clicked() + validator: RegExpValidator { regExp: /[a-zA-Z0-9\.\-\_]*/ } } } - rightButtons: [ - Button { - text: catalog.i18nc("@action:button","Cancel") - onClicked: - { - manualPrinterDialog.reject() - manualPrinterDialog.hide() - } - }, - Button { - id: btnOk - text: catalog.i18nc("@action:button", "OK") - onClicked: - { - // Validate the input first - if (!networkingUtil.isValidIP(manualPrinterDialog.addressText)) - { - invalidIPAddressMessageDialog.open() - return - } - - // if the entered IP address has already been discovered, switch the current item to that item - // and do nothing else. - for (var i = 0; i < manager.foundDevices.length; i++) - { - var device = manager.foundDevices[i] - if (device.address == manualPrinterDialog.addressText) - { - currentItemIndex = i - manualPrinterDialog.hide() - return - } - } - - manager.setManualDevice(manualPrinterDialog.printerKey, manualPrinterDialog.addressText) - manualPrinterDialog.hide() - } - enabled: manualPrinterDialog.addressText.trim() != "" - isDefault: true + onAccepted: + { + // Validate the input first + if (!networkingUtil.isValidIP(manualPrinterDialog.addressText)) + { + // prefent closing of element, as we want to keep the dialog active after a wrongly entered IP adress + manualPrinterDialog.open() + // show invalid ip warning + invalidIPAddressMessageDialog.open(); + return; } - ] + + // if the entered IP address has already been discovered, switch the current item to that item + // and do nothing else. + for (var i = 0; i < manager.foundDevices.length; i++) + { + var device = manager.foundDevices[i] + if (device.address == manualPrinterDialog.addressText) + { + currentItemIndex = i; + return; + } + } + + manager.setManualDevice(manualPrinterDialog.printerKey, manualPrinterDialog.addressText); + } } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/GenericPopUp.qml b/plugins/UM3NetworkPrinting/resources/qml/GenericPopUp.qml index 61981dab2c..580338ae0c 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/GenericPopUp.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/GenericPopUp.qml @@ -3,8 +3,6 @@ import QtQuick 2.2 import QtQuick.Controls 2.0 -import QtQuick.Controls.Styles 1.4 -import QtQuick.Dialogs 1.1 import QtGraphicalEffects 1.0 import UM 1.3 as UM diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml index 0f4aec5424..60e3726a32 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml @@ -3,7 +3,7 @@ import QtQuick 2.2 import QtQuick.Controls 2.0 -import UM 1.3 as UM +import UM 1.5 as UM /** * This component comprises a buildplate icon and the buildplate name. It is @@ -51,25 +51,21 @@ Item anchors.centerIn: parent color: UM.Theme.getColor("monitor_icon_primary") height: UM.Theme.getSize("medium_button_icon").width - source: "../svg/icons/Buildplate.svg" + source: UM.Theme.getIcon("Buildplate") width: height visible: buildplate } } - Label + UM.Label { id: buildplateLabel - color: UM.Theme.getColor("text") elide: Text.ElideRight - font: UM.Theme.getFont("default") // 12pt, regular text: buildplate ? buildplate : "" visible: text !== "" // FIXED-LINE-HEIGHT: height: 18 * screenScaleFactor // TODO: Theme! - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml index 1fe766d9f7..47586f3925 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml @@ -2,10 +2,10 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.3 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.4 import QtQuick.Layouts 1.3 -import QtQuick.Dialogs 1.2 -import UM 1.3 as UM +import UM 1.5 as UM +import Cura 1.5 as Cura UM.Dialog { @@ -18,12 +18,21 @@ UM.Dialog width: minimumWidth height: minimumHeight title: catalog.i18nc("@title:window", "Configuration Changes") + buttonSpacing: UM.Theme.getSize("narrow_margin").width rightButtons: [ - Button + Cura.TertiaryButton + { + id: cancelButton + text: catalog.i18nc("@action:button", "Cancel") + onClicked: + { + overrideConfirmationDialog.reject() + } + }, + Cura.PrimaryButton { id: overrideButton - anchors.margins: UM.Theme.getSize("default_margin").width text: catalog.i18nc("@action:button", "Override") onClicked: { @@ -50,20 +59,10 @@ UM.Dialog } return true } - }, - Button - { - id: cancelButton - anchors.margins: UM.Theme.getSize("default_margin").width - text: catalog.i18nc("@action:button", "Cancel") - onClicked: - { - overrideConfirmationDialog.reject() - } } ] - Label + UM.Label { anchors { @@ -72,7 +71,6 @@ UM.Dialog bottomMargin: 56 * screenScaleFactor // TODO: Theme! } wrapMode: Text.WordWrap - renderType: Text.NativeRendering text: { if (!printer || !printer.activePrintJob) diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml index 34ca3c6df2..03e9477d08 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.3 -import QtQuick.Controls 2.0 -import QtQuick.Dialogs 1.1 -import UM 1.3 as UM +import QtQuick.Controls 2.15 +import UM 1.5 as UM +import Cura 1.6 as Cura /** * A MonitorInfoBlurb is an extension of the GenericPopUp used to show static information (vs. interactive context @@ -134,32 +134,29 @@ Item } } - MessageDialog { + Cura.MessageDialog + { id: sendToTopConfirmationDialog - Component.onCompleted: visible = false - icon: StandardIcon.Warning - onYes: OutputDevice.sendJobToTop(printJob.key) - standardButtons: StandardButton.Yes | StandardButton.No + onAccepted: OutputDevice.sendJobToTop(printJob.key) + standardButtons: Dialog.Yes | Dialog.No text: printJob && printJob.name ? catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to move %1 to the top of the queue?").arg(printJob.name) : "" title: catalog.i18nc("@window:title", "Move print job to top") } - MessageDialog { + Cura.MessageDialog + { id: deleteConfirmationDialog - Component.onCompleted: visible = false - icon: StandardIcon.Warning - onYes: OutputDevice.deleteJobFromQueue(printJob.key) - standardButtons: StandardButton.Yes | StandardButton.No + onAccepted: OutputDevice.deleteJobFromQueue(printJob.key) + standardButtons: Dialog.Yes | Dialog.No text: printJob && printJob.name ? catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to delete %1?").arg(printJob.name) : "" title: catalog.i18nc("@window:title", "Delete print job") } - MessageDialog { + Cura.MessageDialog + { id: abortConfirmationDialog - Component.onCompleted: visible = false - icon: StandardIcon.Warning - onYes: printJob.setState("abort") - standardButtons: StandardButton.Yes | StandardButton.No + onAccepted: printJob.setState("abort") + standardButtons: Dialog.Yes | Dialog.No text: printJob && printJob.name ? catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to abort %1?").arg(printJob.name) : "" title: catalog.i18nc("@window:title", "Abort print") } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenuButton.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenuButton.qml index 0be3732cef..1c6cfda121 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenuButton.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenuButton.qml @@ -3,7 +3,7 @@ import QtQuick 2.3 import QtQuick.Controls 2.0 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Button @@ -17,13 +17,12 @@ Button radius: Math.round(0.5 * width) width: base.width } - contentItem: Label { + contentItem: UM.Label + { color: enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("monitor_text_disabled") font.pixelSize: 32 * screenScaleFactor horizontalAlignment: Text.AlignHCenter text: base.text - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering; } height: width hoverEnabled: enabled diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml index ad0e8a6777..f22ac53298 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml @@ -3,7 +3,7 @@ import QtQuick 2.2 import QtQuick.Controls 2.0 -import UM 1.3 as UM +import UM 1.5 as UM /** * This component is a sort of "super icon" which includes a colored SVG image @@ -35,18 +35,16 @@ Item width: size } - Label + UM.Label { id: positionLabel anchors.centerIn: icon font: UM.Theme.getFont("small") - color: UM.Theme.getColor("text") height: Math.round(size / 2) horizontalAlignment: Text.AlignHCenter text: position + 1 - verticalAlignment: Text.AlignVCenter + width: Math.round(size / 2) visible: position >= 0 - renderType: Text.NativeRendering } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml index 32e19c1cdb..5c32c2435a 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml @@ -40,7 +40,6 @@ Item width: 240 * screenScaleFactor // TODO: Theme! color: UM.Theme.getColor("monitor_tooltip_text") font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml index 65bf4e3a07..2974e5ce6b 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml @@ -2,7 +2,7 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 import QtQuick.Controls 2.0 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura /** @@ -55,10 +55,9 @@ Item visible: !printJob radius: 2 * screenScaleFactor // TODO: Theme! } - Label + UM.Label { text: printJob && printJob.name ? printJob.name : "" - color: UM.Theme.getColor("text") elide: Text.ElideRight font: UM.Theme.getFont("medium") // 14pt, regular visible: printJob @@ -66,8 +65,6 @@ Item // FIXED-LINE-HEIGHT: width: parent.width height: parent.height - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } @@ -86,18 +83,15 @@ Item radius: 2 * screenScaleFactor // TODO: Theme! } - Label + UM.Label { text: printJob ? OutputDevice.formatDuration(printJob.timeTotal) : "" - color: UM.Theme.getColor("text") elide: Text.ElideRight font: UM.Theme.getFont("medium") // 14pt, regular visible: printJob // FIXED-LINE-HEIGHT: height: Math.round(18 * screenScaleFactor) // TODO: Theme! - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } @@ -116,11 +110,10 @@ Item radius: 2 * screenScaleFactor // TODO: Theme! } - Label + UM.Label { id: printerAssignmentLabel anchors.verticalCenter: parent.verticalCenter - color: UM.Theme.getColor("text") elide: Text.ElideRight font: UM.Theme.getFont("medium") // 14pt, regular text: { @@ -143,8 +136,6 @@ Item // FIXED-LINE-HEIGHT: height: parent.height - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } Row @@ -186,17 +177,15 @@ Item height: Math.round(72 * screenScaleFactor) // TODO: Theme! } - Label { + UM.Label + { text: printJob && printJob.owner ? printJob.owner : "" - color: UM.Theme.getColor("text") elide: Text.ElideRight font: UM.Theme.getFont("medium") // 14pt, regular anchors.top: printerConfiguration.top // FIXED-LINE-HEIGHT: height: Math.round(18 * screenScaleFactor) // TODO: Theme! - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml index 98cd3916fb..65c37ffe16 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml @@ -2,9 +2,7 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.3 -import QtQuick.Controls.Styles 1.3 -import QtQuick.Controls 1.4 -import UM 1.3 as UM +import UM 1.5 as UM /** * NOTE: For most labels, a fixed height with vertical alignment is used to make @@ -16,11 +14,11 @@ Item { id: base - // The print job which all other information is dervied from + // The print job which all other information is derived from property var printJob: null width: childrenRect.width - height: UM.Theme.getSize("monitor_text_line").height + height: percentLabel.height UM.ProgressBar { @@ -34,36 +32,28 @@ Item width: UM.Theme.getSize("monitor_progress_bar").width } - Label + UM.Label { id: percentLabel anchors { left: progressBar.right - leftMargin: UM.Theme.getSize("monitor_margin").width - verticalCenter: parent.verticalCenter + leftMargin: UM.Theme.getSize("default_margin").width } text: printJob ? Math.round(printJob.progress * 100) + "%" : "0%" color: printJob && printJob.isActive ? UM.Theme.getColor("text") : UM.Theme.getColor("monitor_text_disabled") width: contentWidth - font: UM.Theme.getFont("default") // 12pt, regular - - // FIXED-LINE-HEIGHT: - height: UM.Theme.getSize("monitor_text_line").height - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering + wrapMode: Text.NoWrap } - Label + UM.Label { id: statusLabel anchors { left: percentLabel.right - leftMargin: UM.Theme.getSize("monitor_margin").width - verticalCenter: parent.verticalCenter + leftMargin: UM.Theme.getSize("default_margin").width } - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") + wrapMode: Text.NoWrap text: { if (!printJob) @@ -73,6 +63,8 @@ Item switch (printJob.state) { case "wait_cleanup": + // This hack was removed previously. Then we found out that we don't get back 'aborted_wait_cleanup' + // for the UM2+C it seems. Will communicate this to other teams, in the mean time, put this back. if (printJob.timeTotal > printJob.timeElapsed) { return catalog.i18nc("@label:status", "Aborted"); @@ -88,6 +80,20 @@ Item return catalog.i18nc("@label:status", "Aborting..."); case "aborted": // NOTE: Unused, see above return catalog.i18nc("@label:status", "Aborted"); + case "aborted_post_print": + return catalog.i18nc("@label:status", "Aborted"); + case "aborted_wait_user_action": + return catalog.i18nc("@label:status", "Aborted"); + case "aborted_wait_cleanup": + return catalog.i18nc("@label:status", "Aborted"); + case "failed": + return catalog.i18nc("@label:status", "Failed"); + case "failed_post_print": + return catalog.i18nc("@label:status", "Failed"); + case "failed_wait_user_action": + return catalog.i18nc("@label:status", "Failed"); + case "failed_wait_cleanup": + return catalog.i18nc("@label:status", "Failed"); case "pausing": return catalog.i18nc("@label:status", "Pausing..."); case "paused": @@ -97,14 +103,9 @@ Item case "queued": return catalog.i18nc("@label:status", "Action required"); default: - return catalog.i18nc("@label:status", "Finishes %1 at %2".arg(OutputDevice.getDateCompleted(printJob.timeRemaining)).arg(OutputDevice.getTimeCompleted(printJob.timeRemaining))); + return catalog.i18nc("@label:status", "Finishes %1 at %2").arg(OutputDevice.getDateCompleted(printJob.timeRemaining)).arg(OutputDevice.getTimeCompleted(printJob.timeRemaining)); } } width: contentWidth - - // FIXED-LINE-HEIGHT: - height: UM.Theme.getSize("monitor_text_line").height - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml index 7dbb78e8fb..df701b1d1f 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml @@ -3,8 +3,7 @@ import QtQuick 2.3 import QtQuick.Controls 2.0 -import QtQuick.Dialogs 1.1 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura /** @@ -64,7 +63,7 @@ Item leftMargin: 36 * screenScaleFactor // TODO: Theme! verticalCenter: parent.verticalCenter } - spacing: 18 * screenScaleFactor // TODO: Theme! + spacing: UM.Theme.getSize("default_margin").width Rectangle { @@ -96,23 +95,18 @@ Item { id: printerNameLabel color: printer ? "transparent" : UM.Theme.getColor("monitor_skeleton_loading") - height: 18 * screenScaleFactor // TODO: Theme! + height: UM.Theme.getSize("default_margin").width width: parent.width - radius: 2 * screenScaleFactor // TODO: Theme! + radius: UM.Theme.getSize("default_radius").width - Label + UM.Label { text: printer && printer.name ? printer.name : "" - color: UM.Theme.getColor("text") elide: Text.ElideRight font: UM.Theme.getFont("large") // 16pt, bold width: parent.width visible: printer - - // FIXED-LINE-HEIGHT: height: parent.height - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } @@ -120,7 +114,7 @@ Item { color: UM.Theme.getColor("monitor_skeleton_loading") height: 18 * screenScaleFactor // TODO: Theme! - radius: 2 * screenScaleFactor // TODO: Theme! + radius: UM.Theme.getSize("default_radius").width visible: !printer width: 48 * screenScaleFactor // TODO: Theme! } @@ -138,21 +132,20 @@ Item Item { id: managePrinterLink - anchors { + anchors + { top: printerFamilyPill.bottom topMargin: UM.Theme.getSize("narrow_margin").height } height: 18 * screenScaleFactor // TODO: Theme! width: childrenRect.width - Label + UM.Label { id: managePrinterText anchors.verticalCenter: managePrinterLink.verticalCenter color: UM.Theme.getColor("text_link") - font: UM.Theme.getFont("default") text: catalog.i18nc("@label link to Connect and Cloud interfaces", "Manage printer") - renderType: Text.NativeRendering } UM.RecolorImage { @@ -165,22 +158,16 @@ Item } color: UM.Theme.getColor("text_link") source: UM.Theme.getIcon("LinkExternal") - width: 12 * screenScaleFactor - height: 12 * screenScaleFactor + width: UM.Theme.getSize("icon").width + height: UM.Theme.getSize("icon").height } } MouseArea { anchors.fill: managePrinterLink - onClicked: OutputDevice.openPrintJobControlPanel() - onEntered: - { - manageQueueText.font.underline = true - } - onExited: - { - manageQueueText.font.underline = false - } + onClicked: OutputDevice.openPrinterControlPanel() + onEntered: manageQueueText.font.underline = true + onExited: manageQueueText.font.underline = false } } @@ -271,8 +258,8 @@ Item } // For cloud printing, add this mouse area over the disabled cameraButton to indicate that it's not available - //Warning message is commented out because it's factually incorrect. Fix CURA-7637 to allow camera connections via cloud. - /* MouseArea + // Fix CURA-7637 to allow camera connections via cloud. + MouseArea { id: cameraDisabledButtonArea anchors.fill: cameraButton @@ -282,13 +269,13 @@ Item enabled: !cameraButton.enabled } - MonitorInfoBlurb { id: cameraDisabledInfo - text: catalog.i18nc("@info", "The webcam is not available because you are monitoring a cloud printer.") + text: catalog.i18nc("@info", "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." + + " Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam.") target: cameraButton - }*/ + } } // Divider @@ -332,9 +319,9 @@ Item leftMargin: 36 * screenScaleFactor // TODO: Theme! } height: childrenRect.height - spacing: 18 * screenScaleFactor // TODO: Theme! + spacing: UM.Theme.getSize("default_margin").width - Label + UM.Label { id: printerStatus anchors @@ -371,7 +358,6 @@ Item return "" } visible: text !== "" - renderType: Text.NativeRendering } Item @@ -401,22 +387,18 @@ Item height: printerNameLabel.height + printerFamilyPill.height + 6 * screenScaleFactor // TODO: Theme! visible: printer && printer.activePrintJob && !printerStatus.visible - Label + UM.Label { id: printerJobNameLabel color: printer && printer.activePrintJob && printer.activePrintJob.isActive ? UM.Theme.getColor("text") : UM.Theme.getColor("monitor_text_disabled") elide: Text.ElideRight + wrapMode: Text.NoWrap font: UM.Theme.getFont("large") // 16pt, bold text: printer && printer.activePrintJob ? printer.activePrintJob.name : catalog.i18nc("@label", "Untitled") width: parent.width - - // FIXED-LINE-HEIGHT: - height: 18 * screenScaleFactor // TODO: Theme! - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } - Label + UM.Label { id: printerJobOwnerLabel anchors @@ -427,14 +409,8 @@ Item } color: printer && printer.activePrintJob && printer.activePrintJob.isActive ? UM.Theme.getColor("text") : UM.Theme.getColor("monitor_text_disabled") elide: Text.ElideRight - font: UM.Theme.getFont("default") // 12pt, regular text: printer && printer.activePrintJob ? printer.activePrintJob.owner : catalog.i18nc("@label", "Anonymous") width: parent.width - - // FIXED-LINE-HEIGHT: - height: 18 * screenScaleFactor // TODO: Theme! - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } @@ -448,59 +424,27 @@ Item visible: printer && printer.activePrintJob && printer.activePrintJob.configurationChanges.length === 0 && !printerStatus.visible } - Label + UM.Label { anchors { verticalCenter: parent.verticalCenter } - font: UM.Theme.getFont("default") text: catalog.i18nc("@label:status", "Requires configuration changes") visible: printer && printer.activePrintJob && printer.activePrintJob.configurationChanges.length > 0 && !printerStatus.visible - color: UM.Theme.getColor("text") - - // FIXED-LINE-HEIGHT: - height: 18 * screenScaleFactor // TODO: Theme! - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } - Button + Cura.SecondaryButton { id: detailsButton anchors { verticalCenter: parent.verticalCenter right: parent.right - rightMargin: 18 * screenScaleFactor // TODO: Theme! + rightMargin: UM.Theme.getSize("default_margin").width } - background: Rectangle - { - color: UM.Theme.getColor("monitor_secondary_button_shadow") - radius: 2 * screenScaleFactor // Todo: Theme! - Rectangle - { - anchors.fill: parent - anchors.bottomMargin: 2 * screenScaleFactor // TODO: Theme! - color: detailsButton.hovered ? UM.Theme.getColor("monitor_secondary_button_hover") : UM.Theme.getColor("monitor_secondary_button") - radius: 2 * screenScaleFactor // Todo: Theme! - } - } - contentItem: Label - { - anchors.fill: parent - anchors.bottomMargin: 2 * screenScaleFactor // TODO: Theme! - color: UM.Theme.getColor("monitor_secondary_button_text") - font: UM.Theme.getFont("medium") // 14pt, regular - text: catalog.i18nc("@action:button", "Details"); - verticalAlignment: Text.AlignVCenter - horizontalAlignment: Text.AlignHCenter - height: 18 * screenScaleFactor // TODO: Theme! - renderType: Text.NativeRendering - } - implicitHeight: 32 * screenScaleFactor // TODO: Theme! - implicitWidth: 96 * screenScaleFactor // TODO: Theme! + text: catalog.i18nc("@action:button", "Details") visible: printer && printer.activePrintJob && printer.activePrintJob.configurationChanges.length > 0 && !printerStatus.visible onClicked: base.enabled ? overrideConfirmationDialog.open() : {} enabled: OutputDevice.supportsPrintJobActions diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterPill.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterPill.qml index 4cd9d58cae..d2c9251bec 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterPill.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterPill.qml @@ -2,8 +2,7 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.4 -import UM 1.2 as UM +import UM 1.5 as UM /** * A MonitorPrinterPill is a blue-colored tag indicating which printers a print @@ -17,20 +16,19 @@ Item implicitHeight: 18 * screenScaleFactor // TODO: Theme! implicitWidth: Math.max(printerNameLabel.contentWidth + 12 * screenScaleFactor, 36 * screenScaleFactor) // TODO: Theme! - Rectangle { + Rectangle + { id: background anchors.fill: parent color: printerNameLabel.visible ? UM.Theme.getColor("monitor_printer_family_tag") : UM.Theme.getColor("monitor_skeleton_loading") radius: 2 * screenScaleFactor // TODO: Theme! } - Label { + UM.Label + { id: printerNameLabel anchors.centerIn: parent - color: UM.Theme.getColor("text") text: monitorPrinterPill.text - font.pointSize: 10 // TODO: Theme! visible: monitorPrinterPill.text !== "" - renderType: Text.NativeRendering } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml index 1b94625bf0..87b7cab83e 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml @@ -1,10 +1,9 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.3 as UM +import QtQuick.Controls 2.15 +import UM 1.5 as UM import Cura 1.0 as Cura /** @@ -18,18 +17,16 @@ Item // they might not need to though. property bool cloudConnection: Cura.MachineManager.activeMachineIsUsingCloudConnection - Label + UM.Label { id: queuedLabel anchors { - left: queuedPrintJobs.left + left: printJobList.left top: parent.top } - color: UM.Theme.getColor("text") font: UM.Theme.getFont("large") text: catalog.i18nc("@label", "Queued") - renderType: Text.NativeRendering } Item @@ -37,7 +34,7 @@ Item id: manageQueueLabel anchors { - right: queuedPrintJobs.right + right: printJobList.right verticalCenter: queuedLabel.verticalCenter } height: 18 * screenScaleFactor // TODO: Theme! @@ -52,7 +49,7 @@ Item width: 16 * screenScaleFactor // TODO: Theme! (Y U NO USE 18 LIKE ALL OTHER ICONS?!) height: 16 * screenScaleFactor // TODO: Theme! (Y U NO USE 18 LIKE ALL OTHER ICONS?!) } - Label + UM.Label { id: manageQueueText anchors @@ -64,7 +61,6 @@ Item color: UM.Theme.getColor("text_link") font: UM.Theme.getFont("medium") // 14pt, regular text: catalog.i18nc("@label link to connect manager", "Manage in browser") - renderType: Text.NativeRendering } } @@ -72,14 +68,9 @@ Item { anchors.fill: manageQueueLabel onClicked: OutputDevice.openPrintJobControlPanel() - onEntered: - { - manageQueueText.font.underline = true - } - onExited: - { - manageQueueText.font.underline = false - } + onEntered: manageQueueText.font.underline = true + + onExited: manageQueueText.font.underline = false } Row @@ -87,96 +78,85 @@ Item id: printJobQueueHeadings anchors { - left: queuedPrintJobs.left + left: printJobList.left leftMargin: UM.Theme.getSize("narrow_margin").width top: queuedLabel.bottom topMargin: 24 * screenScaleFactor // TODO: Theme! } spacing: 18 * screenScaleFactor // TODO: Theme! - Label + UM.Label { text: catalog.i18nc("@label", "There are no print jobs in the queue. Slice and send a job to add one.") - color: UM.Theme.getColor("text") font: UM.Theme.getFont("medium") anchors.verticalCenter: parent.verticalCenter - - renderType: Text.NativeRendering visible: printJobList.count === 0 } - Label + UM.Label { text: catalog.i18nc("@label", "Print jobs") - color: UM.Theme.getColor("text") font: UM.Theme.getFont("medium") // 14pt, regular anchors.verticalCenter: parent.verticalCenter width: 284 * screenScaleFactor // TODO: Theme! (Should match column size) - - renderType: Text.NativeRendering visible: printJobList.count > 0 } - Label + UM.Label { text: catalog.i18nc("@label", "Total print time") - color: UM.Theme.getColor("text") font: UM.Theme.getFont("medium") // 14pt, regular anchors.verticalCenter: parent.verticalCenter width: UM.Theme.getSize("monitor_column").width - - renderType: Text.NativeRendering visible: printJobList.count > 0 } - Label + UM.Label { text: catalog.i18nc("@label", "Waiting for") - color: UM.Theme.getColor("text") font: UM.Theme.getFont("medium") // 14pt, regular anchors.verticalCenter: parent.verticalCenter width: UM.Theme.getSize("monitor_column").width - - renderType: Text.NativeRendering visible: printJobList.count > 0 } } - ScrollView + ListView { - id: queuedPrintJobs + id: printJobList anchors { bottom: parent.bottom horizontalCenter: parent.horizontalCenter top: printJobQueueHeadings.bottom - topMargin: 12 * screenScaleFactor // TODO: Theme! + topMargin: UM.Theme.getSize("default_margin").width } - style: UM.Theme.styles.scrollview width: parent.width - ListView + ScrollBar.vertical: UM.ScrollBar { - id: printJobList - anchors.fill: parent - delegate: MonitorPrintJobCard + id: printJobScrollBar + } + spacing: UM.Theme.getSize("narrow_margin").width + clip: true + + delegate: MonitorPrintJobCard + { + anchors { - anchors - { - left: parent.left - right: parent.right - } - printJob: modelData + left: parent.left + right: parent.right + rightMargin: printJobScrollBar.width } - model: + printJob: modelData + } + model: + { + if (OutputDevice.receivedData) { - if (OutputDevice.receivedData) - { - return OutputDevice.queuedPrintJobs - } - return [null, null] + return OutputDevice.queuedPrintJobs } - spacing: 6 // TODO: Theme! + return [null, null] } } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml index 5d5b3ceab4..9e73662e1d 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml @@ -2,8 +2,6 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 import UM 1.3 as UM import Cura 1.0 as Cura diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrintJobContextMenuItem.qml b/plugins/UM3NetworkPrinting/resources/qml/PrintJobContextMenuItem.qml index 3288896572..c7ebf803d5 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/PrintJobContextMenuItem.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/PrintJobContextMenuItem.qml @@ -1,24 +1,24 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2021 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 import QtQuick.Controls 2.0 -import QtQuick.Controls.Styles 1.4 -import UM 1.3 as UM +import UM 1.5 as UM -Button { - background: Rectangle { - opacity: parent.down || parent.hovered ? 1 : 0; +Button +{ + background: Rectangle + { + opacity: parent.down || parent.hovered ? 1 : 0 color: UM.Theme.getColor("monitor_context_menu_hover") } - contentItem: Label { - color: enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("monitor_text_disabled"); + contentItem: UM.Label + { + color: enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("monitor_text_disabled") text: parent.text - horizontalAlignment: Text.AlignLeft; - verticalAlignment: Text.AlignVCenter; - renderType: Text.NativeRendering; + horizontalAlignment: Text.AlignLeft } - height: visible ? 39 * screenScaleFactor : 0; // TODO: Theme! - hoverEnabled: true; - width: parent.width; + height: visible ? 39 * screenScaleFactor : 0 // TODO: Theme! + hoverEnabled: true + width: parent.width } diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml b/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml index 6d9f375788..441766a8e7 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml @@ -2,7 +2,8 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 import QtQuick.Window 2.2 -import QtQuick.Controls 1.2 +import QtQuick.Controls 2.15 + import UM 1.1 as UM UM.Dialog { @@ -84,6 +85,7 @@ UM.Dialog { ComboBox { id: printerComboBox; + currentIndex: 0; Behavior on height { NumberAnimation { duration: 100 } } height: 40 * screenScaleFactor; model: ListModel { diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml b/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml index 291e2a14f5..7fce1478a1 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml @@ -2,8 +2,6 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 import UM 1.3 as UM import Cura 1.0 as Cura diff --git a/plugins/UM3NetworkPrinting/resources/svg/CloudPlatform.svg b/plugins/UM3NetworkPrinting/resources/svg/CloudPlatform.svg new file mode 100644 index 0000000000..5da9f17bbf --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/svg/CloudPlatform.svg @@ -0,0 +1,353 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/plugins/UM3NetworkPrinting/resources/svg/cloud-flow-completed.svg b/plugins/UM3NetworkPrinting/resources/svg/cloud-flow-completed.svg deleted file mode 100644 index 8eba62ecc8..0000000000 --- a/plugins/UM3NetworkPrinting/resources/svg/cloud-flow-completed.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - Group 2 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/resources/svg/cloud-flow-start.svg b/plugins/UM3NetworkPrinting/resources/svg/cloud-flow-start.svg deleted file mode 100644 index 746dc269fd..0000000000 --- a/plugins/UM3NetworkPrinting/resources/svg/cloud-flow-start.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - Cloud_connection-icon - Created with Sketch. - - - - - - - - \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 9eaa133ef5..85e802215c 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -262,7 +262,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): icon="", description=I18N_CATALOG.i18nc("@action:tooltip", "Track the print in Ultimaker Digital Factory"), button_align=message.ActionButtonAlignment.ALIGN_RIGHT) - df_url = f"https://digitalfactory.ultimaker.com/app/jobs/{self._cluster.cluster_id}?utm_source=cura&utm_medium=software&utm_campaign=monitor-button" + df_url = f"https://digitalfactory.ultimaker.com/app/jobs/{self._cluster.cluster_id}?utm_source=cura&utm_medium=software&utm_campaign=message-printjob-sent" message.pyQtActionTriggered.connect(lambda message, action: (QDesktopServices.openUrl(QUrl(df_url)), message.hide())) message.show() @@ -334,11 +334,11 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): @pyqtSlot(name="openPrintJobControlPanel") def openPrintJobControlPanel(self) -> None: - QDesktopServices.openUrl(QUrl(self.clusterCloudUrl)) + QDesktopServices.openUrl(QUrl(self.clusterCloudUrl + "?utm_source=cura&utm_medium=software&utm_campaign=monitor-manage-browser")) @pyqtSlot(name="openPrinterControlPanel") def openPrinterControlPanel(self) -> None: - QDesktopServices.openUrl(QUrl(self.clusterCloudUrl)) + QDesktopServices.openUrl(QUrl(self.clusterCloudUrl + "?utm_source=cura&utm_medium=software&utm_campaign=monitor-manage-printer")) @property def clusterData(self) -> CloudClusterResponse: @@ -357,4 +357,4 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): """Gets the URL on which to monitor the cluster via the cloud.""" root_url_prefix = "-staging" if self._account.is_staging else "" - return "https://mycloud{}.ultimaker.com/app/jobs/{}".format(root_url_prefix, self.clusterData.cluster_id) + return "https://digitalfactory{}.ultimaker.com/app/jobs/{}".format(root_url_prefix, self.clusterData.cluster_id) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py index a900edeb75..8eecafd49c 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import os @@ -16,9 +16,10 @@ from UM.Util import parseBool from cura.API import Account from cura.API.Account import SyncState from cura.CuraApplication import CuraApplication +from cura.Settings.CuraContainerRegistry import CuraContainerRegistry # To update printer metadata with information received about cloud printers. from cura.Settings.CuraStackBuilder import CuraStackBuilder from cura.Settings.GlobalStack import GlobalStack -from cura.UltimakerCloud.UltimakerCloudConstants import META_UM_LINKED_TO_ACCOUNT +from cura.UltimakerCloud.UltimakerCloudConstants import META_CAPABILITIES, META_UM_LINKED_TO_ACCOUNT from .CloudApiClient import CloudApiClient from .CloudOutputDevice import CloudOutputDevice from ..Models.Http.CloudClusterResponse import CloudClusterResponse @@ -127,8 +128,12 @@ class CloudOutputDeviceManager: # to the current account if not parseBool(self._um_cloud_printers[device_id].getMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, "true")): self._um_cloud_printers[device_id].setMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, True) + if not self._um_cloud_printers[device_id].getMetaDataEntry(META_CAPABILITIES, None): + self._um_cloud_printers[device_id].setMetaDataEntry(META_CAPABILITIES, ",".join(cluster_data.capabilities)) self._onDevicesDiscovered(new_clusters) + self._updateOnlinePrinters(all_clusters) + # Hide the current removed_printers_message, if there is any if self._removed_printers_message: self._removed_printers_message.actionTriggered.disconnect(self._onRemovedPrintersMessageActionTriggered) @@ -154,6 +159,8 @@ class CloudOutputDeviceManager: self._syncing = False self._account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.SUCCESS) + Logger.debug("Synced cloud printers with account.") + def _onGetRemoteClusterFailed(self, reply: QNetworkReply, error: QNetworkReply.NetworkError) -> None: self._syncing = False self._account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.ERROR) @@ -216,11 +223,6 @@ class CloudOutputDeviceManager: online_cluster_names = {c.friendly_name.lower() for c in clusters if c.is_online and not c.friendly_name is None} new_devices.sort(key = lambda x: ("a{}" if x.name.lower() in online_cluster_names else "b{}").format(x.name.lower())) - image_path = os.path.join( - CuraApplication.getInstance().getPluginRegistry().getPluginPath("UM3NetworkPrinting") or "", - "resources", "svg", "cloud-flow-completed.svg" - ) - message = Message( title = self.i18n_catalog.i18ncp( "info:status", @@ -230,7 +232,6 @@ class CloudOutputDeviceManager: ), progress = 0, lifetime = 0, - image_source = image_path, message_type = Message.MessageType.POSITIVE ) message.show() @@ -261,6 +262,16 @@ class CloudOutputDeviceManager: message_text = self.i18n_catalog.i18nc("info:status", "Printers added from Digital Factory:") + "
      " + device_names + "
    " message.setText(message_text) + def _updateOnlinePrinters(self, printer_responses: Dict[str, CloudClusterResponse]) -> None: + """ + Update the metadata of the printers to store whether they are online or not. + :param printer_responses: The responses received from the API about the printer statuses. + """ + for container_stack in CuraContainerRegistry.getInstance().findContainerStacks(type = "machine"): + cluster_id = container_stack.getMetaDataEntry("um_cloud_cluster_id", "") + if cluster_id in printer_responses: + container_stack.setMetaDataEntry("is_online", printer_responses[cluster_id].is_online) + def _updateOutdatedMachine(self, outdated_machine: GlobalStack, new_cloud_output_device: CloudOutputDevice) -> None: """ Update the cloud metadata of a pre-existing machine that is rediscovered (e.g. if the printer was removed and @@ -332,7 +343,7 @@ class CloudOutputDeviceManager: message_text += self.i18n_catalog.i18nc( "info:status", - "To establish a connection, please visit the {website_link}".format(website_link = "{}.".format(digital_factory_string)) + "To establish a connection, please visit the {website_link}".format(website_link = "{}.".format(digital_factory_string)) ) self._removed_printers_message.setText(message_text) self._removed_printers_message.addAction("keep_printer_configurations_action", @@ -419,7 +430,7 @@ class CloudOutputDeviceManager: machine.setMetaDataEntry("group_name", device.name) machine.setMetaDataEntry("group_size", device.clusterSize) digital_factory_string = self.i18n_catalog.i18nc("info:name", "Ultimaker Digital Factory") - digital_factory_link = "{digital_factory_string}".format(digital_factory_string = digital_factory_string) + digital_factory_link = "{digital_factory_string}".format(digital_factory_string = digital_factory_string) removal_warning_string = self.i18n_catalog.i18nc("@message {printer_name} is replaced with the name of the printer", "{printer_name} will be removed until the next account sync.").format(printer_name = device.name) \ + "
    " + self.i18n_catalog.i18nc("@message {printer_name} is replaced with the name of the printer", "To remove {printer_name} permanently, visit {digital_factory_link}").format(printer_name = device.name, digital_factory_link = digital_factory_link) \ + "

    " + self.i18n_catalog.i18nc("@message {printer_name} is replaced with the name of the printer", "Are you sure you want to remove {printer_name} temporarily?").format(printer_name = device.name) diff --git a/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py b/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py index c453537d81..34687339a9 100644 --- a/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py +++ b/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py @@ -15,27 +15,26 @@ I18N_CATALOG = i18nCatalog("cura") class CloudFlowMessage(Message): - def __init__(self, address: str) -> None: - + def __init__(self, printer_name: str) -> None: image_path = os.path.join( CuraApplication.getInstance().getPluginRegistry().getPluginPath("UM3NetworkPrinting") or "", - "resources", "svg", "cloud-flow-start.svg" + "resources", "svg", "CloudPlatform.svg" ) - super().__init__( - text=I18N_CATALOG.i18nc("@info:status", - "Send and monitor print jobs from anywhere using your Ultimaker account."), - lifetime=0, - dismissable=True, - option_state=False, - image_source=QUrl.fromLocalFile(image_path), - image_caption=I18N_CATALOG.i18nc("@info:status Ultimaker Cloud should not be translated.", - "Connect to Ultimaker Digital Factory"), + text = I18N_CATALOG.i18nc("@info:status", + f"Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"), + title = I18N_CATALOG.i18nc("@info:title", "Are you ready for cloud printing?"), + image_source = QUrl.fromLocalFile(image_path) ) - self._address = address - self.addAction("", I18N_CATALOG.i18nc("@action", "Get started"), "", "") + self._printer_name = printer_name + self.addAction("get_started", I18N_CATALOG.i18nc("@action", "Get started"), "", "") + self.addAction("learn_more", I18N_CATALOG.i18nc("@action", "Learn more"), "", "", button_style = Message.ActionButtonStyle.LINK, button_align = Message.ActionButtonAlignment.ALIGN_LEFT) + self.actionTriggered.connect(self._onCloudFlowStarted) - def _onCloudFlowStarted(self, messageId: str, actionId: str) -> None: - QDesktopServices.openUrl(QUrl("http://{}/cloud_connect".format(self._address))) - self.hide() + def _onCloudFlowStarted(self, message_id: str, action_id: str) -> None: + if action_id == "get_started": + QDesktopServices.openUrl(QUrl("https://digitalfactory.ultimaker.com/app/printers?add_printer=true&utm_source=cura&utm_medium=software&utm_campaign=message-networkprinter-added")) + self.hide() + else: + QDesktopServices.openUrl(QUrl("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=add-cloud-printer")) diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py index 1af3d83964..ce6dd1de4d 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py @@ -37,7 +37,7 @@ class CloudClusterResponse(BaseModel): self.friendly_name = friendly_name self.printer_type = printer_type self.printer_count = printer_count - self.capabilities = capabilities + self.capabilities = capabilities if capabilities is not None else [] super().__init__(**kwargs) # Validates the model, raising an exception if the model is invalid. @@ -45,3 +45,10 @@ class CloudClusterResponse(BaseModel): super().validate() if not self.cluster_id: raise ValueError("cluster_id is required on CloudCluster") + + def __repr__(self) -> str: + """ + Convenience function for printing when debugging. + :return: A human-readable representation of the data in this object. + """ + return str({k: v for k, v in self.__dict__.items() if k in {"cluster_id", "host_guid", "host_name", "status", "is_online", "host_version", "host_internal_ip", "friendly_name", "printer_type", "printer_count", "capabilities"}}) diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrintJobStatus.py b/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrintJobStatus.py index 987ca9fab1..6873582074 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrintJobStatus.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrintJobStatus.py @@ -40,7 +40,7 @@ class ClusterPrintJobStatus(BaseModel): configuration_changes_required: List[ Union[Dict[str, Any], ClusterPrintJobConfigurationChange]] = None, build_plate: Union[Dict[str, Any], ClusterBuildPlate] = None, - compatible_machine_families: List[str] = None, + compatible_machine_families: Optional[List[str]] = None, impediments_to_printing: List[Union[Dict[str, Any], ClusterPrintJobImpediment]] = None, preview_url: Optional[str] = None, **kwargs) -> None: @@ -97,7 +97,7 @@ class ClusterPrintJobStatus(BaseModel): configuration_changes_required) \ if configuration_changes_required else [] self.build_plate = self.parseModel(ClusterBuildPlate, build_plate) if build_plate else None - self.compatible_machine_families = compatible_machine_families if compatible_machine_families else [] + self.compatible_machine_families = compatible_machine_families if compatible_machine_families is not None else [] self.impediments_to_printing = self.parseModels(ClusterPrintJobImpediment, impediments_to_printing) \ if impediments_to_printing else [] @@ -130,8 +130,10 @@ class ClusterPrintJobStatus(BaseModel): model.updateConfiguration(self._createConfigurationModel()) model.updateTimeTotal(self.time_total) - model.updateTimeElapsed(self.time_elapsed) - model.updateOwner(self.owner) + if self.time_elapsed is not None: + model.updateTimeElapsed(self.time_elapsed) + if self.owner is not None: + model.updateOwner(self.owner) model.updateState(self.status) model.setCompatibleMachineFamilies(self.compatible_machine_families) diff --git a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py index e79709d3dc..0cd5304cf9 100644 --- a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py @@ -52,7 +52,6 @@ class LocalClusterOutputDeviceManager: def start(self) -> None: """Start the network discovery.""" - self._zero_conf_client.start() for address in self._getStoredManualAddresses(): self.addManualDevice(address) @@ -292,4 +291,4 @@ class LocalClusterOutputDeviceManager: if not CuraApplication.getInstance().getCuraAPI().account.isLoggedIn: # Do not show the message if the user is not signed in. return - CloudFlowMessage(device.ipAddress).show() + CloudFlowMessage(device.name).show() diff --git a/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py b/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py index 96a2b78e8f..877eaebcb7 100644 --- a/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py +++ b/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py @@ -133,6 +133,9 @@ class SendMaterialJob(Job): except FileNotFoundError: Logger.error("Unable to send material {material_id}, since it has been deleted in the meanwhile.".format(material_id = material_id)) return + except EnvironmentError as e: + Logger.error(f"Unable to send material {material_id}. We can't open that file for reading: {str(e)}") + return # Add the material signature file if needed. signature_file_path = "{}.sig".format(file_path) diff --git a/plugins/USBPrinting/AvrFirmwareUpdater.py b/plugins/USBPrinting/AvrFirmwareUpdater.py index 0f7146560d..7023179fea 100644 --- a/plugins/USBPrinting/AvrFirmwareUpdater.py +++ b/plugins/USBPrinting/AvrFirmwareUpdater.py @@ -52,11 +52,11 @@ class AvrFirmwareUpdater(FirmwareUpdater): try: programmer.programChip(hex_file) except SerialException as e: - Logger.log("e", "A serial port exception occured during firmware update: %s" % e) + Logger.log("e", "A serial port exception occurred during firmware update: %s" % e) self._setFirmwareUpdateState(FirmwareUpdateState.io_error) return except Exception as e: - Logger.log("e", "An unknown exception occured during firmware update: %s" % e) + Logger.log("e", "An unknown exception occurred during firmware update: %s" % e) self._setFirmwareUpdateState(FirmwareUpdateState.unknown_error) return diff --git a/plugins/USBPrinting/MonitorItem.qml b/plugins/USBPrinting/MonitorItem.qml index c86353f814..3ca8140107 100644 --- a/plugins/USBPrinting/MonitorItem.qml +++ b/plugins/USBPrinting/MonitorItem.qml @@ -3,7 +3,6 @@ import QtQuick 2.10 import QtQuick.Controls 2.0 -import QtQuick.Layouts 1.3 import UM 1.2 as UM import Cura 1.0 as Cura diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index 92f4bf4e4d..d91be99f46 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/plugins/USBPrinting/USBPrinterOutputDevice.py @@ -311,7 +311,7 @@ class USBPrinterOutputDevice(PrinterOutputDevice): if line == b"": # An empty line means that the firmware is idle # Multiple empty lines probably means that the firmware and Cura are waiting - # for eachother due to a missed "ok", so we keep track of empty lines + # for each other due to a missed "ok", so we keep track of empty lines self._firmware_idle_count += 1 else: self._firmware_idle_count = 0 diff --git a/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml b/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml index 565ba2fa0e..3d7b4a054f 100644 --- a/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml +++ b/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -33,7 +33,7 @@ Cura.MachineAction renderType: Text.NativeRendering } - Cura.CheckBox + UM.CheckBox { anchors.top: pageDescription.bottom anchors.topMargin: UM.Theme.getSize("default_margin").height diff --git a/plugins/VersionUpgrade/VersionUpgrade411to412/VersionUpgrade411to412.py b/plugins/VersionUpgrade/VersionUpgrade411to412/VersionUpgrade411to412.py new file mode 100644 index 0000000000..2ae94a11f7 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade411to412/VersionUpgrade411to412.py @@ -0,0 +1,137 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import configparser +import io +import json +import os.path +from typing import List, Tuple + +from UM.VersionUpgrade import VersionUpgrade + + +class VersionUpgrade411to412(VersionUpgrade): + """ + Upgrades configurations from the state they were in at version 4.11 to the + state they should be in at version 4.12. + """ + + _flsun_profile_mapping = { + "extra_coarse": "flsun_sr_normal", + "coarse": "flsun_sr_normal", + "extra_fast": "flsun_sr_normal", + "draft": "flsun_sr_normal", + "fast": "flsun_sr_normal", + "normal": "flsun_sr_normal", + "high": "flsun_sr_fine" + } + + _flsun_quality_type_mapping = { + "extra coarse": "normal", + "coarse" : "normal", + "verydraft" : "normal", + "draft" : "normal", + "fast" : "normal", + "normal" : "normal", + "high" : "fine" + } + + def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades preferences to have the new version number. + :param serialized: The original contents of the preferences file. + :param filename: The file name of the preferences file. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = "19" + + # If the account scope in 4.11 is outdated, delete it so that the user is enforced to log in again and get the + # correct permissions. + new_scopes = {"account.user.read", + "drive.backup.read", + "drive.backup.write", + "packages.download", + "packages.rating.read", + "packages.rating.write", + "connect.cluster.read", + "connect.cluster.write", + "library.project.read", + "library.project.write", + "cura.printjob.read", + "cura.printjob.write", + "cura.mesh.read", + "cura.mesh.write", + "cura.material.write"} + if "ultimaker_auth_data" in parser["general"]: + ultimaker_auth_data = json.loads(parser["general"]["ultimaker_auth_data"]) + if new_scopes - set(ultimaker_auth_data["scope"].split(" ")): + parser["general"]["ultimaker_auth_data"] = "{}" + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + + def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades instance containers to have the new version number. + :param serialized: The original contents of the instance container. + :param filename: The file name of the instance container. + :return: A list of file names, and a list of the new contents for those + files. + """ + parser = configparser.ConfigParser(interpolation = None, comment_prefixes = ()) + parser.read_string(serialized) + + # Update setting version number. + if "metadata" not in parser: + parser["metadata"] = {} + parser["metadata"]["setting_version"] = "19" + + # Update user-made quality profiles of flsun_sr printers to use the flsun_sr-specific qualities instead of the + # global ones as their base + file_base_name = os.path.basename(filename) # Remove any path-related characters from the filename + if file_base_name.startswith("flsun_sr_") and parser["metadata"].get("type") == "quality_changes": + if "general" in parser and parser["general"].get("definition") == "fdmprinter": + old_quality_type = parser["metadata"].get("quality_type", "normal") + parser["general"]["definition"] = "flsun_sr" + parser["metadata"]["quality_type"] = self._flsun_quality_type_mapping.get(old_quality_type, "normal") + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades container stacks to have the new version number. + Upgrades container stacks for FLSun Racer to change their profiles. + :param serialized: The original contents of the container stack. + :param filename: The file name of the container stack. + :return: A list of file names, and a list of the new contents for those + files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update setting version number. + if "metadata" not in parser: + parser["metadata"] = {} + parser["metadata"]["setting_version"] = "19" + + # Change renamed profiles. + if "containers" in parser: + definition_id = parser["containers"].get("7") + if definition_id == "flsun_sr": + if parser["metadata"].get("type", "machine") == "machine": # Only global stacks. + old_quality = parser["containers"].get("3") + new_quality = self._flsun_profile_mapping.get(old_quality, "flsun_sr_normal") + parser["containers"]["3"] = new_quality + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade411to412/__init__.py b/plugins/VersionUpgrade/VersionUpgrade411to412/__init__.py new file mode 100644 index 0000000000..cb84fe0361 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade411to412/__init__.py @@ -0,0 +1,56 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade411to412 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade411to412.VersionUpgrade411to412() + + +def getMetaData() -> Dict[str, Any]: + return { + "version_upgrade": { + # From To Upgrade function + ("machine_stack", 5000017): ("machine_stack", 5000019, upgrade.upgradeStack), + ("extruder_train", 5000017): ("extruder_train", 5000019, upgrade.upgradeStack), + ("definition_changes", 4000017): ("definition_changes", 4000019, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000017): ("quality_changes", 4000019, upgrade.upgradeInstanceContainer), + ("quality", 4000017): ("quality", 4000019, upgrade.upgradeInstanceContainer), + ("user", 4000017): ("user", 4000019, upgrade.upgradeInstanceContainer), + ("preferences", 7000017): ("preferences", 7000019, upgrade.upgradePreferences), + }, + "sources": { + "machine_stack": { + "get_version": upgrade.getCfgVersion, + "location": {"./machine_instances"} + }, + "extruder_train": { + "get_version": upgrade.getCfgVersion, + "location": {"./extruders"} + }, + "definition_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./definition_changes"} + }, + "quality_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality_changes"} + }, + "quality": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality"} + }, + "user": { + "get_version": upgrade.getCfgVersion, + "location": {"./user"} + } + } + } + + +def register(app: "Application") -> Dict[str, Any]: + return {"version_upgrade": upgrade} diff --git a/plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json b/plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json new file mode 100644 index 0000000000..4ac4f264c8 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 4.11 to 4.12", + "author": "Ultimaker B.V.", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 4.11 to Cura 4.12.", + "api": 7, + "i18n-catalog": "cura" +} diff --git a/plugins/VersionUpgrade/VersionUpgrade42to43/VersionUpgrade42to43.py b/plugins/VersionUpgrade/VersionUpgrade42to43/VersionUpgrade42to43.py index 73d6578c9b..50aa726044 100644 --- a/plugins/VersionUpgrade/VersionUpgrade42to43/VersionUpgrade42to43.py +++ b/plugins/VersionUpgrade/VersionUpgrade42to43/VersionUpgrade42to43.py @@ -122,7 +122,7 @@ class VersionUpgrade42to43(VersionUpgrade): # Update version number. parser["metadata"]["setting_version"] = "9" # Handle changes for the imade3d jellybox. The machine was split up into parts (eg; a 2 fan version and a single - # fan version. Perviously it used variants for this. The only upgrade we can do here is strip that variant. + # fan version. Previously it used variants for this. The only upgrade we can do here is strip that variant. # This is because we only upgrade per stack (and to fully do these changes, we'd need to switch out something # in the global container based on changes made to the extruder stack) if parser["containers"]["6"] == "imade3d_jellybox_extruder_0": diff --git a/plugins/VersionUpgrade/VersionUpgrade48to49/VersionUpgrade48to49.py b/plugins/VersionUpgrade/VersionUpgrade48to49/VersionUpgrade48to49.py index 4595e66ed3..14db98c1fc 100644 --- a/plugins/VersionUpgrade/VersionUpgrade48to49/VersionUpgrade48to49.py +++ b/plugins/VersionUpgrade/VersionUpgrade48to49/VersionUpgrade48to49.py @@ -29,9 +29,10 @@ class VersionUpgrade48to49(VersionUpgrade): parser["general"]["version"] = "7" # Update visibility settings to include new top_bottom category - parser["general"]["visible_settings"] += ";top_bottom" + if "visible_settings" in parser["general"]: + parser["general"]["visible_settings"] += ";top_bottom" - if "categories_expanded" in parser["cura"] and any([setting in parser["cura"]["categories_expanded"] for setting in self._moved_visibility_settings]): + if "cura" in parser and "categories_expanded" in parser["cura"] and any([setting in parser["cura"]["categories_expanded"] for setting in self._moved_visibility_settings]): parser["cura"]["categories_expanded"] += ";top_bottom" # If the account scope in 4.8 is outdated, delete it so that the user is enforced to log in again and get the diff --git a/plugins/VersionUpgrade/VersionUpgrade49to410/VersionUpgrade49to410.py b/plugins/VersionUpgrade/VersionUpgrade49to410/VersionUpgrade49to410.py index 7d9186e06b..b04c396a00 100644 --- a/plugins/VersionUpgrade/VersionUpgrade49to410/VersionUpgrade49to410.py +++ b/plugins/VersionUpgrade/VersionUpgrade49to410/VersionUpgrade49to410.py @@ -104,6 +104,25 @@ class VersionUpgrade49to410(VersionUpgrade): "g" : "D060" } + def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades preferences to have the new version number. + :param serialized: The original contents of the preferences file. + :param filename: The file name of the preferences file. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = "17" + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: """Upgrades instance containers to have the new version number. diff --git a/plugins/VersionUpgrade/VersionUpgrade49to410/__init__.py b/plugins/VersionUpgrade/VersionUpgrade49to410/__init__.py index 0d5128473f..7c8dd424d1 100644 --- a/plugins/VersionUpgrade/VersionUpgrade49to410/__init__.py +++ b/plugins/VersionUpgrade/VersionUpgrade49to410/__init__.py @@ -21,6 +21,7 @@ def getMetaData() -> Dict[str, Any]: ("quality_changes", 4000016): ("quality_changes", 4000017, upgrade.upgradeInstanceContainer), ("quality", 4000016): ("quality", 4000017, upgrade.upgradeInstanceContainer), ("user", 4000016): ("user", 4000017, upgrade.upgradeInstanceContainer), + ("preferences", 7000016): ("preferences", 7000017, upgrade.upgradePreferences), }, "sources": { "machine_stack": { diff --git a/plugins/VersionUpgrade/VersionUpgrade49to50/VersionUpgrade49to50.py b/plugins/VersionUpgrade/VersionUpgrade49to50/VersionUpgrade49to50.py new file mode 100644 index 0000000000..a3fccb68ea --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade49to50/VersionUpgrade49to50.py @@ -0,0 +1,118 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import configparser +from typing import Tuple, List +import io +from UM.VersionUpgrade import VersionUpgrade + +_removed_settings = { + "travel_compensate_overlapping_walls_enabled", + "travel_compensate_overlapping_walls_0_enabled", + "travel_compensate_overlapping_walls_x_enabled", + "fill_perimeter_gaps", + "wall_min_flow", + "wall_min_flow_retract", + "speed_equalize_flow_enabled", + "speed_equalize_flow_min" +} + + +class VersionUpgrade49to50(VersionUpgrade): + def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades preferences to remove from the visibility list the settings that were removed in this version. + It also changes the preferences to have the new version number. + + This removes any settings that were removed in the new Cura version. + :param serialized: The original contents of the preferences file. + :param filename: The file name of the preferences file. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = "18" + + # Remove deleted settings from the visible settings list. + if "general" in parser and "visible_settings" in parser["general"]: + visible_settings = set(parser["general"]["visible_settings"].split(";")) + for removed in _removed_settings: + if removed in visible_settings: + visible_settings.remove(removed) + + # Replace Outer Before Inner Walls with equivalent. + if "outer_inset_first" in visible_settings: + visible_settings.remove("outer_inset_first") + visible_settings.add("inset_direction") + + parser["general"]["visible_settings"] = ";".join(visible_settings) + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades instance containers to remove the settings that were removed in this version. + It also changes the instance containers to have the new version number. + + This removes any settings that were removed in the new Cura version and updates settings that need to be updated + with a new value. + + :param serialized: The original contents of the instance container. + :param filename: The original file name of the instance container. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None, comment_prefixes = ()) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = "18" + + if "values" in parser: + # Remove deleted settings from the instance containers. + for removed in _removed_settings: + if removed in parser["values"]: + del parser["values"][removed] + + # Replace Outer Before Inner Walls with equivalent setting. + if "outer_inset_first" in parser["values"]: + old_value = parser["values"]["outer_inset_first"] + if old_value.startswith("="): # Was already a formula. + old_value = old_value[1:] + parser["values"]["inset_direction"] = f"='outside_in' if ({old_value}) else 'inside_out'" # Makes it work both with plain setting values and formulas. + + # Disable Fuzzy Skin as it doesn't work with with the libArachne walls + if "magic_fuzzy_skin_enabled" in parser["values"]: + parser["values"]["magic_fuzzy_skin_enabled"] = "False" + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades stacks to have the new version number. + + :param serialized: The original contents of the stack. + :param filename: The original file name of the stack. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + if "metadata" not in parser: + parser["metadata"] = {} + + parser["general"]["version"] = "5" + parser["metadata"]["setting_version"] = "18" + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade49to50/__init__.py b/plugins/VersionUpgrade/VersionUpgrade49to50/__init__.py new file mode 100644 index 0000000000..3bf4bea4e1 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade49to50/__init__.py @@ -0,0 +1,61 @@ +# Copyright (c) 2020 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade49to50 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade49to50.VersionUpgrade49to50() + +def getMetaData() -> Dict[str, Any]: + return { # Since there is no VersionUpgrade from 48 to 49 yet, upgrade the 48 profiles to 50. + "version_upgrade": { + # From To Upgrade function + ("preferences", 6000016): ("preferences", 6000018, upgrade.upgradePreferences), + ("machine_stack", 5000016): ("machine_stack", 5000018, upgrade.upgradeStack), + ("extruder_train", 5000016): ("extruder_train", 5000018, upgrade.upgradeStack), + ("machine_stack", 4000018): ("machine_stack", 5000018, upgrade.upgradeStack), # We made a mistake in the arachne beta 1 + ("extruder_train", 4000018): ("extruder_train", 5000018, upgrade.upgradeStack), # We made a mistake in the arachne beta 1 + ("definition_changes", 4000016): ("definition_changes", 4000018, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000016): ("quality_changes", 4000018, upgrade.upgradeInstanceContainer), + ("quality", 4000016): ("quality", 4000018, upgrade.upgradeInstanceContainer), + ("user", 4000016): ("user", 4000018, upgrade.upgradeInstanceContainer), + }, + "sources": { + "preferences": { + "get_version": upgrade.getCfgVersion, + "location": {"."} + }, + "machine_stack": { + "get_version": upgrade.getCfgVersion, + "location": {"./machine_instances"} + }, + "extruder_train": { + "get_version": upgrade.getCfgVersion, + "location": {"./extruders"} + }, + "definition_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./definition_changes"} + }, + "quality_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality_changes"} + }, + "quality": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality"} + }, + "user": { + "get_version": upgrade.getCfgVersion, + "location": {"./user"} + } + } + } + + +def register(app: "Application") -> Dict[str, Any]: + return {"version_upgrade": upgrade} diff --git a/plugins/VersionUpgrade/VersionUpgrade49to50/plugin.json b/plugins/VersionUpgrade/VersionUpgrade49to50/plugin.json new file mode 100644 index 0000000000..bedc7d46e8 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade49to50/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 4.9 to 5.0", + "author": "Ultimaker B.V.", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 4.9 to Cura 5.0.", + "api": "7.4.0", + "i18n-catalog": "cura" +} diff --git a/plugins/X3DReader/X3DReader.py b/plugins/X3DReader/X3DReader.py index f693fc1eeb..548c9f44e6 100644 --- a/plugins/X3DReader/X3DReader.py +++ b/plugins/X3DReader/X3DReader.py @@ -250,7 +250,7 @@ class X3DReader(MeshReader): else: nr = ns = DEFAULT_SUBDIV - lau = pi / nr # Unit angle of latitude (rings) for the given tesselation + lau = pi / nr # Unit angle of latitude (rings) for the given tessellation lou = 2 * pi / ns # Unit angle of longitude (segments) self.reserveFaceAndVertexCount(ns*(nr*2 - 2), 2 + (nr - 1)*ns) diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index ce0bb06d8d..1b88272d49 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -650,7 +650,6 @@ class XmlMaterialProfile(InstanceContainer): machine_id_list = product_id_map.get(identifier.get("product"), []) if not machine_id_list: machine_id_list = self.getPossibleDefinitionIDsFromName(identifier.get("product")) - for machine_id in machine_id_list: definitions = ContainerRegistry.getInstance().findDefinitionContainersMetadata(id = machine_id) if not definitions: @@ -1068,6 +1067,8 @@ class XmlMaterialProfile(InstanceContainer): id_list = {name.lower().replace(" ", ""), # simply removing all spaces name.lower().replace(" ", "_"), # simply replacing all spaces with underscores "_".join(merged_name_parts), + name.replace(" ", ""), + name.replace(" ", "_") } id_list = list(id_list) return id_list diff --git a/requirements.txt b/requirements.txt index db927c4943..dc14e2e041 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,36 +1,36 @@ -cffi==1.14.1 -colorlog -cryptography==3.4.6 -importlib-metadata==3.7.2 -mypy==0.740 -numpy==1.20.2 -PyQt5==5.15.2 -PyQt5-sip==12.8.1 -scipy==1.6.1 -shapely[vectorized]==1.7.1 -twisted==21.2.0 -typing appdirs==1.4.3 certifi==2019.11.28 +cffi==1.14.1 chardet==3.0.4 +colorlog +cryptography==3.4.8 decorator==4.4.0 idna==2.8 +importlib-metadata==4.10.0 +keyring==23.0.1 +lxml==4.7.1 +mypy==0.740 netifaces==0.10.9 -networkx==2.3 +networkx==2.6.2 +numpy==1.21.5 numpy-stl==2.10.1 packaging==18.0 +pyclipper==1.3.0.post2 pycollada==0.6 -pycparser==2.19 +pycparser==2.20 pyparsing==2.4.2 +PyQt5==5.15.6 +PyQt5-sip==12.9.0 pyserial==3.4 pytest python-dateutil==2.8.0 python-utils==2.3.0 -requests==2.22.0 +pywin32==303 +scipy==1.8.0rc2 sentry-sdk==0.13.5 six==1.12.0 -trimesh==3.2.33 -zeroconf==0.24.1 -comtypes==1.1.7 -pywin32==300 -keyring==23.0.1 +trimesh==3.9.36 +twisted==21.2.0 +typing +urllib3==1.25.9 +zeroconf==0.31.0 diff --git a/resources/README_resources.txt b/resources/README_resources.txt index 17124bc0d5..d863dd4668 100644 --- a/resources/README_resources.txt +++ b/resources/README_resources.txt @@ -3,7 +3,7 @@ any resources here, they will not be seen or upgraded by next versions of Cura. If you want your (unbundled or altered) resources to work after an upgrade, please don't put them here, but install them either; - - for materials: via the Marketplace (recommended if avialable), + - for materials: via the Marketplace (recommended if available), - by dragging a `.curapackage` file onto Cura, - or place it in the right sub-folder in the configuration folder* for Cura. diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index 42f4b12a0b..501445f9d8 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -6,7 +6,7 @@ "display_name": "3MF Reader", "description": "Provides support for reading 3MF files.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -23,7 +23,7 @@ "display_name": "3MF Writer", "description": "Provides support for writing 3MF files.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -40,7 +40,7 @@ "display_name": "AMF Reader", "description": "Provides support for reading AMF files.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -57,7 +57,7 @@ "display_name": "Cura Backups", "description": "Backup and restore your configuration.", "package_version": "1.2.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -74,7 +74,7 @@ "display_name": "CuraEngine Backend", "description": "Provides the link to the CuraEngine slicing backend.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -91,7 +91,7 @@ "display_name": "Cura Profile Reader", "description": "Provides support for importing Cura profiles.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -108,7 +108,7 @@ "display_name": "Cura Profile Writer", "description": "Provides support for exporting Cura profiles.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -124,8 +124,8 @@ "package_type": "plugin", "display_name": "Ultimaker Digital Library", "description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.", - "package_version": "1.0.0", - "sdk_version": "7.6.0", + "package_version": "1.1.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -142,7 +142,7 @@ "display_name": "Firmware Update Checker", "description": "Checks for firmware updates.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -159,7 +159,7 @@ "display_name": "Firmware Updater", "description": "Provides a machine actions for updating firmware.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -176,7 +176,7 @@ "display_name": "Compressed G-code Reader", "description": "Reads g-code from a compressed archive.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -193,7 +193,7 @@ "display_name": "Compressed G-code Writer", "description": "Writes g-code to a compressed archive.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -210,7 +210,7 @@ "display_name": "G-Code Profile Reader", "description": "Provides support for importing profiles from g-code files.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -227,7 +227,7 @@ "display_name": "G-Code Reader", "description": "Allows loading and displaying G-code files.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "VictorLarchenko", @@ -244,7 +244,7 @@ "display_name": "G-Code Writer", "description": "Writes g-code to a file.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -261,7 +261,7 @@ "display_name": "Image Reader", "description": "Enables ability to generate printable geometry from 2D image files.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -278,7 +278,7 @@ "display_name": "Legacy Cura Profile Reader", "description": "Provides support for importing profiles from legacy Cura versions.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -295,7 +295,7 @@ "display_name": "Machine Settings Action", "description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -312,7 +312,7 @@ "display_name": "Model Checker", "description": "Checks models and print configuration for possible printing issues and give suggestions.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -329,7 +329,7 @@ "display_name": "Monitor Stage", "description": "Provides a monitor stage in Cura.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -346,7 +346,7 @@ "display_name": "Per-Object Settings Tool", "description": "Provides the per-model settings.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -363,7 +363,7 @@ "display_name": "Post Processing", "description": "Extension that allows for user created scripts for post processing.", "package_version": "2.2.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -380,7 +380,7 @@ "display_name": "Prepare Stage", "description": "Provides a prepare stage in Cura.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -397,7 +397,7 @@ "display_name": "Preview Stage", "description": "Provides a preview stage in Cura.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -414,7 +414,7 @@ "display_name": "Removable Drive Output Device", "description": "Provides removable drive hotplugging and writing support.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -431,7 +431,7 @@ "display_name": "Sentry Logger", "description": "Logs certain events so that they can be used by the crash reporter", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -448,7 +448,7 @@ "display_name": "Simulation View", "description": "Provides the Simulation view.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -465,7 +465,7 @@ "display_name": "Slice Info", "description": "Submits anonymous slice info. Can be disabled through preferences.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -482,7 +482,7 @@ "display_name": "Solid View", "description": "Provides a normal solid mesh view.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -499,7 +499,7 @@ "display_name": "Support Eraser Tool", "description": "Creates an eraser mesh to block the printing of support in certain places.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -516,7 +516,7 @@ "display_name": "Trimesh Reader", "description": "Provides support for reading model files.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -526,14 +526,14 @@ } } }, - "Toolbox": { + "Marketplace": { "package_info": { - "package_id": "Toolbox", + "package_id": "Marketplace", "package_type": "plugin", - "display_name": "Toolbox", + "display_name": "Marketplace", "description": "Find, manage and install new Cura packages.", - "package_version": "1.0.1", - "sdk_version": "7.6.0", + "package_version": "1.0.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -550,7 +550,7 @@ "display_name": "UFP Reader", "description": "Provides support for reading Ultimaker Format Packages.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -567,7 +567,7 @@ "display_name": "UFP Writer", "description": "Provides support for writing Ultimaker Format Packages.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -584,7 +584,7 @@ "display_name": "Ultimaker Machine Actions", "description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -601,7 +601,7 @@ "display_name": "UM3 Network Printing", "description": "Manages network connections to Ultimaker 3 printers.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -618,7 +618,7 @@ "display_name": "USB Printing", "description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.", "package_version": "1.0.2", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -635,7 +635,7 @@ "display_name": "Version Upgrade 2.1 to 2.2", "description": "Upgrades configurations from Cura 2.1 to Cura 2.2.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -652,7 +652,7 @@ "display_name": "Version Upgrade 2.2 to 2.4", "description": "Upgrades configurations from Cura 2.2 to Cura 2.4.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -669,7 +669,7 @@ "display_name": "Version Upgrade 2.5 to 2.6", "description": "Upgrades configurations from Cura 2.5 to Cura 2.6.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -686,7 +686,7 @@ "display_name": "Version Upgrade 2.6 to 2.7", "description": "Upgrades configurations from Cura 2.6 to Cura 2.7.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -703,7 +703,7 @@ "display_name": "Version Upgrade 2.7 to 3.0", "description": "Upgrades configurations from Cura 2.7 to Cura 3.0.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -720,7 +720,7 @@ "display_name": "Version Upgrade 3.0 to 3.1", "description": "Upgrades configurations from Cura 3.0 to Cura 3.1.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -737,7 +737,7 @@ "display_name": "Version Upgrade 3.2 to 3.3", "description": "Upgrades configurations from Cura 3.2 to Cura 3.3.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -754,7 +754,7 @@ "display_name": "Version Upgrade 3.3 to 3.4", "description": "Upgrades configurations from Cura 3.3 to Cura 3.4.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -771,7 +771,7 @@ "display_name": "Version Upgrade 3.4 to 3.5", "description": "Upgrades configurations from Cura 3.4 to Cura 3.5.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -788,7 +788,7 @@ "display_name": "Version Upgrade 3.5 to 4.0", "description": "Upgrades configurations from Cura 3.5 to Cura 4.0.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -805,7 +805,7 @@ "display_name": "Version Upgrade 4.0 to 4.1", "description": "Upgrades configurations from Cura 4.0 to Cura 4.1.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -822,7 +822,7 @@ "display_name": "Version Upgrade 4.1 to 4.2", "description": "Upgrades configurations from Cura 4.1 to Cura 4.2.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -839,7 +839,7 @@ "display_name": "Version Upgrade 4.2 to 4.3", "description": "Upgrades configurations from Cura 4.2 to Cura 4.3.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -856,7 +856,7 @@ "display_name": "Version Upgrade 4.3 to 4.4", "description": "Upgrades configurations from Cura 4.3 to Cura 4.4.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -873,7 +873,7 @@ "display_name": "Version Upgrade 4.4 to 4.5", "description": "Upgrades configurations from Cura 4.4 to Cura 4.5.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -890,7 +890,7 @@ "display_name": "Version Upgrade 4.5 to 4.6", "description": "Upgrades configurations from Cura 4.5 to Cura 4.6.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -907,7 +907,7 @@ "display_name": "Version Upgrade 4.6.0 to 4.6.2", "description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -924,7 +924,7 @@ "display_name": "Version Upgrade 4.6.2 to 4.7", "description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -941,7 +941,7 @@ "display_name": "Version Upgrade 4.7.0 to 4.8.0", "description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -958,7 +958,7 @@ "display_name": "Version Upgrade 4.8.0 to 4.9.0", "description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0", "package_version": "1.0.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -976,7 +976,25 @@ "description": "Upgrades configurations from Cura 4.9 to Cura 4.10", "package_version": "1.0.0", "sdk_version": 7, - "sdk_version_semver": "7.6.0", + "sdk_version_semver": "7.9.0", + "website": "https://ultimaker.com", + "author": { + "author_id": "UltimakerPackages", + "display_name": "Ultimaker B.V.", + "email": "plugins@ultimaker.com", + "website": "https://ultimaker.com" + } + } + }, + "VersionUpgrade411to412": { + "package_info": { + "package_id": "VersionUpgrade411to412", + "package_type": "plugin", + "display_name": "Version Upgrade 4.11 to 4.12", + "description": "Upgrades configurations from Cura 4.11 to Cura 4.12", + "package_version": "1.0.0", + "sdk_version": 7, + "sdk_version_semver": "7.7.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -993,7 +1011,7 @@ "display_name": "X3D Reader", "description": "Provides support for reading X3D files.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "SevaAlekseyev", @@ -1010,7 +1028,7 @@ "display_name": "XML Material Profiles", "description": "Provides capabilities to read and write XML-based material profiles.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1027,7 +1045,7 @@ "display_name": "X-Ray View", "description": "Provides the X-Ray view.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1044,7 +1062,7 @@ "display_name": "Generic ABS", "description": "The generic ABS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1062,7 +1080,7 @@ "display_name": "Generic BAM", "description": "The generic BAM profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1080,7 +1098,7 @@ "display_name": "Generic CFF CPE", "description": "The generic CFF CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1098,7 +1116,7 @@ "display_name": "Generic CFF PA", "description": "The generic CFF PA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1116,7 +1134,7 @@ "display_name": "Generic CPE", "description": "The generic CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1134,7 +1152,7 @@ "display_name": "Generic CPE+", "description": "The generic CPE+ profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1152,7 +1170,7 @@ "display_name": "Generic GFF CPE", "description": "The generic GFF CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1170,7 +1188,7 @@ "display_name": "Generic GFF PA", "description": "The generic GFF PA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1188,7 +1206,7 @@ "display_name": "Generic HIPS", "description": "The generic HIPS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1206,7 +1224,7 @@ "display_name": "Generic Nylon", "description": "The generic Nylon profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1224,7 +1242,7 @@ "display_name": "Generic PC", "description": "The generic PC profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1242,7 +1260,7 @@ "display_name": "Generic PETG", "description": "The generic PETG profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1260,7 +1278,7 @@ "display_name": "Generic PLA", "description": "The generic PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1278,7 +1296,7 @@ "display_name": "Generic PP", "description": "The generic PP profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1296,7 +1314,7 @@ "display_name": "Generic PVA", "description": "The generic PVA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1314,7 +1332,7 @@ "display_name": "Generic Tough PLA", "description": "The generic Tough PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1332,7 +1350,7 @@ "display_name": "Generic TPU", "description": "The generic TPU profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1350,7 +1368,7 @@ "display_name": "Dagoma Chromatik PLA", "description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://dagoma.fr/boutique/filaments.html", "author": { "author_id": "Dagoma", @@ -1367,7 +1385,7 @@ "display_name": "FABtotum ABS", "description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so it’s compatible with all versions of the FABtotum Personal fabricator.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40", "author": { "author_id": "FABtotum", @@ -1384,7 +1402,7 @@ "display_name": "FABtotum Nylon", "description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53", "author": { "author_id": "FABtotum", @@ -1401,7 +1419,7 @@ "display_name": "FABtotum PLA", "description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starch’s sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotum’s one is between 185° and 195°.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39", "author": { "author_id": "FABtotum", @@ -1418,7 +1436,7 @@ "display_name": "FABtotum TPU Shore 98A", "description": "", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66", "author": { "author_id": "FABtotum", @@ -1435,7 +1453,7 @@ "display_name": "Fiberlogy HD PLA", "description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS – better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/", "author": { "author_id": "Fiberlogy", @@ -1452,7 +1470,7 @@ "display_name": "Filo3D PLA", "description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://dagoma.fr", "author": { "author_id": "Dagoma", @@ -1469,7 +1487,7 @@ "display_name": "IMADE3D JellyBOX PETG", "description": "", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1486,7 +1504,7 @@ "display_name": "IMADE3D JellyBOX PLA", "description": "", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1503,7 +1521,7 @@ "display_name": "Octofiber PLA", "description": "PLA material from Octofiber.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://nl.octofiber.com/3d-printing-filament/pla.html", "author": { "author_id": "Octofiber", @@ -1520,7 +1538,7 @@ "display_name": "PolyFlex™ PLA", "description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "http://www.polymaker.com/shop/polyflex/", "author": { "author_id": "Polymaker", @@ -1537,7 +1555,7 @@ "display_name": "PolyMax™ PLA", "description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "http://www.polymaker.com/shop/polymax/", "author": { "author_id": "Polymaker", @@ -1554,7 +1572,7 @@ "display_name": "PolyPlus™ PLA True Colour", "description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "http://www.polymaker.com/shop/polyplus-true-colour/", "author": { "author_id": "Polymaker", @@ -1571,7 +1589,7 @@ "display_name": "PolyWood™ PLA", "description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.", "package_version": "1.0.1", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "http://www.polymaker.com/shop/polywood/", "author": { "author_id": "Polymaker", @@ -1588,7 +1606,7 @@ "display_name": "Ultimaker ABS", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1607,7 +1625,7 @@ "display_name": "Ultimaker Breakaway", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/breakaway", "author": { "author_id": "UltimakerPackages", @@ -1626,7 +1644,7 @@ "display_name": "Ultimaker CPE", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1645,7 +1663,7 @@ "display_name": "Ultimaker CPE+", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/cpe", "author": { "author_id": "UltimakerPackages", @@ -1664,7 +1682,7 @@ "display_name": "Ultimaker Nylon", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1683,7 +1701,7 @@ "display_name": "Ultimaker PC", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/pc", "author": { "author_id": "UltimakerPackages", @@ -1702,7 +1720,7 @@ "display_name": "Ultimaker PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1721,7 +1739,7 @@ "display_name": "Ultimaker PP", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/pp", "author": { "author_id": "UltimakerPackages", @@ -1740,7 +1758,7 @@ "display_name": "Ultimaker PVA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1759,7 +1777,7 @@ "display_name": "Ultimaker TPU 95A", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/tpu-95a", "author": { "author_id": "UltimakerPackages", @@ -1778,7 +1796,7 @@ "display_name": "Ultimaker Tough PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://ultimaker.com/products/materials/tough-pla", "author": { "author_id": "UltimakerPackages", @@ -1797,7 +1815,7 @@ "display_name": "Vertex Delta ABS", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1814,7 +1832,7 @@ "display_name": "Vertex Delta PET", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1831,7 +1849,7 @@ "display_name": "Vertex Delta PLA", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1848,7 +1866,7 @@ "display_name": "Vertex Delta TPU", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "7.6.0", + "sdk_version": "7.9.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", diff --git a/resources/definitions/3di_base.def.json b/resources/definitions/3di_base.def.json new file mode 100644 index 0000000000..b86ff4707c --- /dev/null +++ b/resources/definitions/3di_base.def.json @@ -0,0 +1,49 @@ +{ + "version": 2, + "name": "3DI Base Printer", + "inherits": "fdmprinter", + "metadata": { + "visible": false, + "author": "Vaibhav Jain", + "manufacturer": "3Deometry Innovations", + "file_formats": "text/x-gcode", + "machine_extruder_trains": + { + "0": "3di_base_extruder_0" + } + }, + + "overrides": { + "machine_name":{ + "default_value": "3DI Base Printer" + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_width": { + "default_value": 220 + }, + "machine_height": { + "default_value": 220 + }, + "machine_depth": { + "default_value": 220 + }, + "machine_center_is_zero": { + "default_value": true + }, + "machine_gcode_flavor": { + "default_value": "RepRap (Marlin/Sprinter)" + }, + "machine_start_gcode": { + "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." + }, + "machine_end_gcode": { + "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\nG90 ;absolute positioning" + }, + "machine_shape": { + "default_value": "elliptic" + } + } +} + diff --git a/resources/definitions/3di_d300.def.json b/resources/definitions/3di_d300.def.json new file mode 100644 index 0000000000..3fad62d339 --- /dev/null +++ b/resources/definitions/3di_d300.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "3DI D300", + "inherits": "3di_base", + "metadata": { + "visible": true, + "platform": "3di_d300_platform.STL", + "platform_offset": [-200, -5, 173.205] + }, + + "overrides": { + "machine_name": { + "default_value": "3DI D300" + }, + "machine_width": { + "default_value": 300 + }, + "machine_height": { + "default_value": 300 + }, + "machine_depth": { + "default_value": 300 + } + } +} + diff --git a/resources/definitions/anet3d.def.json b/resources/definitions/anet3d.def.json index db56c9cbb0..54092bcf25 100644 --- a/resources/definitions/anet3d.def.json +++ b/resources/definitions/anet3d.def.json @@ -74,7 +74,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, "z_seam_type": { "value": "'back'" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, @@ -87,7 +86,6 @@ "infill_wipe_dist": { "value": 0 }, "wall_0_wipe_dist": { "value": 0.2 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": true }, diff --git a/resources/definitions/anycubic_4max.def.json b/resources/definitions/anycubic_4max.def.json index 19e733c5a7..6d6c20e8f5 100644 --- a/resources/definitions/anycubic_4max.def.json +++ b/resources/definitions/anycubic_4max.def.json @@ -8,7 +8,6 @@ "author": "Jason Scurtu", "manufacturer": "Anycubic", "file_formats": "text/x-gcode", - "icon": "icon_ultimaker2", "platform": "anycubic_4max_platform.3mf", "has_materials": true, "quality_definition": "anycubic_4max", diff --git a/resources/definitions/anycubic_chiron.def.json b/resources/definitions/anycubic_chiron.def.json index 97d39b439c..7d6f53603f 100644 --- a/resources/definitions/anycubic_chiron.def.json +++ b/resources/definitions/anycubic_chiron.def.json @@ -8,7 +8,6 @@ "author": "Patrick Glatt", "manufacturer": "Anycubic", "file_formats": "text/x-gcode", - "icon": "icon_ultimaker2", "platform": "anycubic_chiron_platform.obj", "platform_texture": "anycubic-chiron.png", "has_materials": true, diff --git a/resources/definitions/anycubic_i3_mega_s.def.json b/resources/definitions/anycubic_i3_mega_s.def.json index a0e83627c4..bf14aed04c 100644 --- a/resources/definitions/anycubic_i3_mega_s.def.json +++ b/resources/definitions/anycubic_i3_mega_s.def.json @@ -1,6 +1,6 @@ { "version": 2, - "name": "Anycubic i3 Mega (S, Pro)", + "name": "Anycubic i3 Mega S/Pro", "inherits": "fdmprinter", "metadata": { @@ -21,7 +21,7 @@ "overrides": { - "machine_name": { "default_value": "Anycubic i3 Mega (S, Pro)" }, + "machine_name": { "default_value": "Anycubic i3 Mega S/Pro" }, "machine_heated_bed": { "default_value": true }, "machine_width": { "default_value": 210 }, "machine_height": { "default_value": 205 }, @@ -29,22 +29,30 @@ "machine_center_is_zero": { "default_value": false }, "gantry_height": { "value": "0" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { "default_value": "G21 ; metric values \nG90 ; absolute positioning \nM82 ; set extruder to absolute mode \nM107 ; start with the fan off \nM140 S{material_bed_temperature_layer_0} ; Start heating the bed \nG4 S60 ; wait 1 minute \nM104 S{material_initial_print_temperature} ; start heating the hot end \nM190 S{material_bed_temperature_layer_0} ; wait for bed \nM109 S{material_initial_print_temperature} ; wait for hotend \nM300 S1000 P500 ; BEEP heating done \nG28 X0 Y10 Z0 ; move X/Y to min endstops \nM420 S1 ; Enable leveling \nM420 Z2.0 ; Set leveling fading height to 2 mm \nG0 Z0.15 ; lift nozzle a bit \nG92 E0 ; zero the extruded length \nG1 X50 E25 F500 ; Extrude 25mm of filament in a 5cm line. \nG92 E0 ; zero the extruded length again \nG1 E-2 F500 ; Retract a little \nG1 X120 F4000 ; Quickly wipe away from the filament line`" }, + "machine_start_gcode": { "default_value": ";Profil Homepage: https://github.com/NilsRo/Cura_Anycubic_MegaS_Profile\n\n;Slicer Information - (Support for OctoPrint Slicer Estimator)\n;Slicer info:material_guid;{material_guid}\n;Slicer info:material_id;{material_id}\n;Slicer info:material_brand;{material_brand}\n;Slicer info:material_name;{material_name}\n;Slicer info:material_bed_temperature;{material_bed_temperature}\n;Slicer info:material_bed_temperature_layer_0;{material_bed_temperature_layer_0}\n;Slicer info:material_print_temperature;{material_print_temperature}\n;Slicer info:material_print_temperature_layer_0;{material_print_temperature_layer_0}\n;Slicer info:material_flow;{material_flow}\n;Slicer info:layer_height;{layer_height}\n;Slicer info:wall_thickness;{wall_thickness}\n;Slicer info:speed_print;{speed_print}\n;Slicer info:speed_topbottom;{speed_topbottom}\n;Slicer info:travel_speed;{travel_speed}\n;Slicer info:support;{support}\n;Slicer info:retraction_speed;{retraction_speed}\n;Slicer info:retraction_amount;{retraction_amount}\n;Slicer info:layer_height;{layer_height}\n;Slicer info:infill_pattern;{infill_pattern}\n;Slicer info:infill_sparse_density;{infill_sparse_density}\n;Slicer info:cool_fan_enabled;{cool_fan_enabled}\n;Slicer info:cool_fan_speed;{cool_fan_speed}\n;Slicer info:sliced_at;{day} {date} {time}\nG21 ; metric values \nG90 ; absolute positioning \nM82 ; set extruder to absolute mode \nM107 ; start with the fan off \nM140 S{material_bed_temperature_layer_0} ; Start heating the bed \nG4 S60 ; wait 1 minute \nM104 S{material_print_temperature_layer_0} ; start heating the hot end \nM190 S{material_bed_temperature_layer_0} ; wait for bed \nM109 S{material_print_temperature_layer_0} ; wait for hotend \nM300 S1000 P500 ; BEEP heating done \nG28 X0 Y10 Z0 ; move X/Y to min endstops \nM420 S1 ; Enable leveling \nM420 Z2.0 ; Set leveling fading height to 2 mm \nG0 Z0.15 ; lift nozzle a bit \nG92 E0 ; zero the extruded length \nG1 X50 E20 F500 ; Extrude 20mm of filament in a 5cm line. \nG92 E0 ; zero the extruded length again \nG1 E-2 F500 ; Retract a little \nG1 X120 F4000 ; Quickly wipe away from the filament line`" }, "machine_end_gcode": { "default_value": "M104 S0 ; Extruder off \nM140 S0 ; Heatbed off \nM107 ; Fan off \nG91 ; relative positioning \nG1 E-5 F300 ; retract a little \nG1 Z+10 E-5 ; X-20 Y-20 F{travel_xy_speed} ; lift print head \nG28 X0 Y0 ; homing \nG1 Y180 F2000 ; reset feedrate \nM84 ; disable stepper motors \nG90 ; absolute positioning \nM300 S440 P200 ; Make Print Completed Tones \nM300 S660 P250 ; beep \nM300 S880 P300 ; beep" }, "machine_max_acceleration_x": { "value": 3000 }, - "machine_max_acceleration_y": { "value": 3000 }, - "machine_max_acceleration_z": { "value": 3000 }, - "machine_max_acceleration_e": { "value": 3000 }, + "machine_max_acceleration_y": { "value": 2000 }, + "machine_max_acceleration_z": { "value": 60 }, + "machine_max_acceleration_e": { "value": 10000 }, "machine_acceleration": { "value": 3000 }, + "machine_max_feedrate_x": { "default_value": 500 }, + "machine_max_feedrate_y": { "default_value": 500 }, + "machine_max_feedrate_z": { "default_value": 8 }, + "machine_max_jerk_xy": { "value": 10 }, "machine_max_jerk_z": { "value": 0.4 }, "machine_max_jerk_e": { "value": 5 }, "material_diameter": { "default_value": 1.75 }, + "material_print_temperature_layer_0": { "value": "material_print_temperature + 5"}, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_flow": { "value": 100 }, - "acceleration_print": { "value": 1800 }, + "acceleration_print": { "value": 1500 }, + "acceleration_enabled": { "value": false }, "acceleration_travel": { "value": 3000 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, @@ -52,8 +60,6 @@ "jerk_print": { "value": 8 }, "jerk_travel": { "value": 10 }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, "jerk_enabled": { "value": true }, "speed_print": { "value": 50.0 } , @@ -63,49 +69,43 @@ "speed_wall_x": { "value": "speed_wall" }, "speed_topbottom": { "value": "speed_print / 2" }, "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": 100.0, "maximum_value_warning": 150.0 }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, + "speed_travel": { "value": 100.0, "maximum_value_warning": 150.0, "maximum_value": 200.0 }, + "speed_layer_0": { "value": "speed_topbottom if speed_topbottom < 20 else 20" }, + "speed_print_layer_0": { "value": "speed_topbottom if speed_topbottom < 20 else 20" }, "speed_travel_layer_0": { "value": 100.0 }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_support": { "value": "speed_wall_0" }, "speed_support_interface": { "value": "speed_topbottom" }, - + "speed_z_hop": { "value": 8 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, "optimize_wall_printing_order": { "value": "True" }, - "material_initial_print_temperature": { "value": "material_print_temperature + 10" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, - "infill_sparse_density": { "value": 25 }, "infill_before_walls": { "value": false }, "infill_overlap": { "value": 15.0 }, - - - "retraction_speed": { "value": 25, "maximum_value": 40 }, - "retraction_retract_speed": { "maximum_value": 40 }, - "retraction_prime_speed": { "maximum_value": 40 }, - + + "retraction_speed": { "value": 30, "maximum_value_warning": 60 }, + "retraction_retract_speed": { "maximum_value_warning": 60 }, + "retraction_prime_speed": { "maximum_value_warning": 60 }, + "retraction_hop_enabled": { "value": true }, "retraction_hop": { "value": 0.075 }, - "retraction_hop_only_when_collides": { "value": true }, - + "retraction_hop_only_when_collides": { "value": true }, + "retraction_amount": { "value": 6 }, + "retraction_enable": { "value": true }, + "retraction_min_travel": { "value": 1.5 }, "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "value": 30 }, + "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_amount": { "value": 6 }, - "retraction_enable": { "value": true }, - "retraction_min_travel": { "value": 1.5 }, "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_speed": { "value": 70 }, - "cool_fan_speed_0": { "value": 30 }, + "cool_fan_speed": { "value": 70 }, + "cool_fan_speed_0": { "value": 30 }, "cool_fan_enabled": { "value": true }, "cool_min_layer_time": { "value": 10 }, @@ -113,10 +113,9 @@ "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, "brim_replaces_support": { "value": false }, "skirt_gap": { "value": 5.0 }, - "skirt_line_count": { "value": 4 }, + "skirt_line_count": { "value": 2 }, "meshfix_maximum_deviation": { "value": 0.05 }, - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, "support_pattern": { "value": "'zigzag'" }, "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, @@ -124,14 +123,15 @@ "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "support_top_distance": { "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (layer_height if support_structure == 'tree' else 0)"}, "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, "support_wall_count": { "value": 1 }, "support_brim_enable": { "value": true }, "support_brim_width": { "value": 4 }, "support_interface_enable": { "value": true }, - "support_structure": { "value": "'tree'" }, - "support_type": { "value": "'buildplate' if support_structure == 'tree' else 'everywhere'" }, + "support_structure": { "value": "'tree'" }, + "support_type": { "value": "'buildplate' if support_structure == 'tree' else 'everywhere'" }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_density": { "value": 33.333 }, "support_interface_pattern": { "value": "'grid'" }, diff --git a/resources/definitions/anycubic_i3_mega_x.def.json b/resources/definitions/anycubic_i3_mega_x.def.json index eb70c60c98..52ce84bd33 100644 --- a/resources/definitions/anycubic_i3_mega_x.def.json +++ b/resources/definitions/anycubic_i3_mega_x.def.json @@ -2,16 +2,35 @@ "version": 2, "name": "Anycubic i3 Mega X", "inherits": "anycubic_i3_mega_s", - "metadata": + "metadata": { - "quality_definition": "anycubic_i3_mega_s", - "platform": "anycubic_i3_mega_x_platform.stl" - }, + "quality_definition": "anycubic_i3_mega_s", + "platform": "anycubic_i3_mega_x_platform.stl" + }, "overrides": { "machine_name": { "default_value": "Anycubic i3 Mega X" }, "machine_width": { "default_value": 300 }, "machine_height": { "default_value": 305 }, - "machine_depth": { "default_value": 300 } - } -} + "machine_depth": { "default_value": 300 }, + + "machine_max_acceleration_x": { "value": 400 }, + "machine_max_acceleration_y": { "value": 400 }, + "machine_max_acceleration_z": { "value": 60 }, + "machine_max_acceleration_e": { "value": 10000 }, + "machine_acceleration": { "value": 3000 }, + + "machine_max_feedrate_x": { "default_value": 120 }, + "machine_max_feedrate_y": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 20 }, + + "speed_travel": { "value": 100.0, "maximum_value": 120.0 }, + + "acceleration_print": { "value": 400 }, + "acceleration_travel": { "value": 400 }, + + "retraction_speed": { "value": 30, "maximum_value_warning": 60 }, + "retraction_retract_speed": { "maximum_value_warning": 60 }, + "retraction_prime_speed": { "maximum_value_warning": 60 } + } +} \ No newline at end of file diff --git a/resources/definitions/anycubic_mega_zero.def.json b/resources/definitions/anycubic_mega_zero.def.json index b0c3132858..5f71d243ab 100644 --- a/resources/definitions/anycubic_mega_zero.def.json +++ b/resources/definitions/anycubic_mega_zero.def.json @@ -92,7 +92,7 @@ "retraction_hop_enabled": { "value": "True" }, "retraction_hop": { "value": 0.2 }, - "retraction_combing": { "default_value": "noskin" }, + "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, "travel_avoid_other_parts": { "value": true }, diff --git a/resources/definitions/anycubic_vyper.def.json b/resources/definitions/anycubic_vyper.def.json new file mode 100644 index 0000000000..7fe4877214 --- /dev/null +++ b/resources/definitions/anycubic_vyper.def.json @@ -0,0 +1,47 @@ +{ + "version": 2, + "name": "Anycubic Vyper", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "ThatGuyZim", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "platform": "anycubic_vyper_platform.stl", + "machine_extruder_trains": { + "0": "anycubic_vyper_extruder_0" + } + }, + "overrides": { + "machine_name": { + "default_value": "Anycubic Vyper" + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_width": { + "default_value": 250 + }, + "machine_height": { + "default_value": 265 + }, + "machine_depth": { + "default_value": 255 + }, + "machine_center_is_zero": { + "default_value": false + }, + "gantry_height": { + "value": "0" + }, + "machine_gcode_flavor": { + "default_value": "RepRap (Marlin/Sprinter)" + }, + "machine_start_gcode": { + "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nM300 S1318 P266\nG28 Z0 ;move Z to min endstops\nG0 Z0.2\nG92 E0 ;zero the extruded length\nG1 X40 E25 F400 ; Extrude 25mm of filament in a 4cm line. Reduce speed (F) if you have a nozzle smaller than 0.4mm!\nG92 E0 ;zero the extruded length again\nG1 E-1 F500 ; Retract a little\nG1 X80 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing…\nG5" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; disable motors\nM107\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 ;X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y180 F2000\nM84 ;steppers off\nG90\nM300 S1318 P266" + } + } +} \ No newline at end of file diff --git a/resources/definitions/arjunpro300.def.json b/resources/definitions/arjunpro300.def.json new file mode 100644 index 0000000000..7f7160f777 --- /dev/null +++ b/resources/definitions/arjunpro300.def.json @@ -0,0 +1,52 @@ +{ + "version": 2, + "name": "Arjun Pro 300", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Venkat Kamesh", + "manufacturer": "Sri Vignan Technologies", + "weight": 3, + "file_formats": "text/x-gcode", + "platform": "arjunpro300_platform.STL", + "platform_offset": [-155, -6, 190], + "has_material": true, + "has_variants": true, + "preferred_variant_name": "0.4 mm Nozzle", + "machine_extruder_trains": + { + "0": "arjunpro_extruder_0", + "1": "arjunpro_extruder_1" + } + }, + + "overrides": { + "machine_name": { "default_value": "Arjun Pro 300" }, + "machine_width": { "default_value": 300 }, + "machine_height": { "default_value": 293 }, + "machine_depth": { "default_value": 300 }, + "machine_center_is_zero": {"default_value": false}, + "machine_heated_bed": { "default_value": true }, + "machine_nozzle_size": {"default_value": 0.4}, + "machine_show_variants": {"default_value": true}, + "machine_acceleration": {"default_value": 2000}, + "machine_max_feedrate_x": { "value": 300 }, + "machine_max_feedrate_y": { "value": 300 }, + "machine_max_feedrate_z": { "value": 15 }, + "machine_max_feedrate_e": { "value": 150 }, + "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, + "line_width": {"value": "machine_nozzle_size"}, + "speed_travel": {"maximum_value": "300", "value": "200"}, + "optimize_wall_printing_order": { "value": "True" }, + "material_diameter": { "default_value": 1.75}, + "retraction_amount": {"default_value": 6.5}, + "retraction_speed": { "default_value": 30}, + + "adhesion_type": { "default_value": "skirt" }, + "machine_gcode_flavor": { "default_value": "Marlin"}, + "ironing_enabled":{"default_value": true}, + "machine_start_gcode": { "default_value": "M605 S0\nG21\nG90\nM82\nM107\nT1\nG28 \nG29 \nG1 X0 Y5 F2000\nT1\nG92 E0\nG1 E45 F210\nG92 E0\nT0\nG92 E0\nG1 E45 F210\nG92 E0\nM117\n"}, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117\nG28 X0 Y0\nT0\nM84"}, + "machine_extruder_count": { "default_value": 2 } + } +} diff --git a/resources/definitions/arjunpro_duplication.def.json b/resources/definitions/arjunpro_duplication.def.json new file mode 100644 index 0000000000..9aebd197a7 --- /dev/null +++ b/resources/definitions/arjunpro_duplication.def.json @@ -0,0 +1,49 @@ +{ + "version": 2, + "name": "Arjun Pro 300 Duplication", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Venkat Kamesh", + "manufacturer": "Sri Vignan Technologies", + "weight": 3, + "file_formats": "text/x-gcode", + "has_material": true, + "has_variants": true, + "preferred_variant_name": "0.4 mm Nozzle", + "machine_extruder_trains": + { + "0": "arjunpro_dm_extruder" + } + }, + + "overrides": { + "machine_name": { "default_value": "Arjunpro 300 Duplication" }, + "machine_width": { "default_value": 120 }, + "machine_height": { "default_value": 293 }, + "machine_depth": { "default_value": 300 }, + "machine_center_is_zero": {"default_value": false}, + "machine_heated_bed": { "default_value": true }, + "machine_nozzle_size": {"default_value": 0.4}, + "machine_show_variants": {"default_value": true}, + "machine_acceleration": {"default_value": 2000}, + "machine_max_feedrate_x": { "value": 300 }, + "machine_max_feedrate_y": { "value": 300 }, + "machine_max_feedrate_z": { "value": 15 }, + "machine_max_feedrate_e": { "value": 150 }, + "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, + "line_width": {"value": "machine_nozzle_size"}, + "speed_travel": {"maximum_value": "300", "value": "200"}, + "optimize_wall_printing_order": { "value": "True" }, + "material_diameter": { "default_value": 1.75}, + "retraction_amount": {"default_value": 6.5}, + "retraction_speed": { "default_value": 30}, + + "adhesion_type": { "default_value": "skirt" }, + "machine_gcode_flavor": { "default_value": "Marlin"}, + "ironing_enabled":{"default_value": true}, + "machine_start_gcode": {"default_value": "M605 S2 R0 X125\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 \nG29 \nG1 Z15 F150\nG28 Y5\nG1 Y20 F6000\nG28 X0\nG1 X80 F6000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X125 F6000\nM117\n"}, + "machine_end_gcode": {"default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84"}, + "machine_extruder_count": { "default_value": 1 } + } +} diff --git a/resources/definitions/arjunpro_mirrored.def.json b/resources/definitions/arjunpro_mirrored.def.json new file mode 100644 index 0000000000..5502708186 --- /dev/null +++ b/resources/definitions/arjunpro_mirrored.def.json @@ -0,0 +1,49 @@ +{ + "version": 2, + "name": "Arjun Pro 300 Mirror", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Venkat Kamesh", + "manufacturer": "Sri Vignan Technologies", + "weight": 3, + "file_formats": "text/x-gcode", + "has_material": true, + "has_variants": true, + "preferred_variant_name": "0.4 mm Nozzle", + "machine_extruder_trains": + { + "0": "arjunpro_mm_extruder" + } + }, + + "overrides": { + "machine_name": { "default_value": "Arjunpro 300 Mirror" }, + "machine_width": { "default_value": 120 }, + "machine_height": { "default_value": 293 }, + "machine_depth": { "default_value": 300 }, + "machine_center_is_zero": {"default_value": false}, + "machine_heated_bed": { "default_value": true }, + "machine_nozzle_size": {"default_value": 0.4}, + "machine_show_variants": {"default_value": true}, + "machine_acceleration": {"default_value": 2000}, + "machine_max_feedrate_x": { "value": 300 }, + "machine_max_feedrate_y": { "value": 300 }, + "machine_max_feedrate_z": { "value": 15 }, + "machine_max_feedrate_e": { "value": 150 }, + "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, + "line_width": {"value": "machine_nozzle_size"}, + "speed_travel": {"maximum_value": "300", "value": "200"}, + "optimize_wall_printing_order": { "value": "True" }, + "material_diameter": { "default_value": 1.75}, + "retraction_amount": {"default_value": 6.5}, + "retraction_speed": { "default_value": 30}, + + "adhesion_type": { "default_value": "skirt" }, + "machine_gcode_flavor": { "default_value": "Marlin"}, + "ironing_enabled":{"default_value": true}, + "machine_start_gcode": {"default_value": "M605 S2 R0 X125\nM605 S3 X125\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 \nG29 \nG1 Z15 F150\nG28 Y5\nG1 Y20 F6000\nG28 X0\nG1 X80 F6000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X125 F6000\nM117\n"}, + "machine_end_gcode": {"default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84"}, + "machine_extruder_count": { "default_value": 1 } + } +} diff --git a/resources/definitions/artillery_base.def.json b/resources/definitions/artillery_base.def.json index 586fa1a8b3..76e2cb3fef 100644 --- a/resources/definitions/artillery_base.def.json +++ b/resources/definitions/artillery_base.def.json @@ -179,7 +179,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, "z_seam_type": { "value": "'back'" }, "z_seam_corner": { "value": "'z_seam_corner_none'" }, @@ -192,7 +191,6 @@ "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index 774c179a34..0d1c5a75c2 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -225,7 +225,7 @@ "retraction_prime_speed": { "value": "math.ceil(retraction_speed * 0.4)", "maximum_value_warning": "130" }, "retraction_hop_enabled": { "value": "True" }, "retraction_hop": { "value": "0.5" }, - "retraction_combing": { "default_value": "noskin" }, + "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "value": "10" }, "travel_avoid_other_parts": { "value": "True" }, "travel_avoid_supports": { "value": "True" }, @@ -258,7 +258,6 @@ "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, "line_width": { "value": "machine_nozzle_size * 1.125" }, "wall_line_width": { "value": "machine_nozzle_size" }, - "fill_perimeter_gaps": { "default_value": "everywhere" }, "fill_outline_gaps": { "value": "True" }, "meshfix_maximum_resolution": { "value": "0.01" }, "meshfix_maximum_deviation": { "value": "layer_height / 2" }, diff --git a/resources/definitions/atom2.def.json b/resources/definitions/atom2.def.json index d7a26546d8..9ad42c0f36 100644 --- a/resources/definitions/atom2.def.json +++ b/resources/definitions/atom2.def.json @@ -22,8 +22,8 @@ "machine_heated_bed": { "default_value": false }, "machine_center_is_zero": { "default_value": true }, - "machine_start_gcode": { "default_value": "G21\nG90 \nM107\nG28\nG92 E0\nG1 F200 E3\nG92 E0" }, - "machine_end_gcode": { "default_value": "M104 S0\nG28\nG91\nG1 E-6 F300\nM84\nG90" }, + "machine_start_gcode": { "default_value": "G21\nG90 \nM107\nG28\nG1 Y-110 Z15\nG0 Z{layer_height_0}\nG92 E0\nG1 F200 Y-100 E6\nG92 E0" }, + "machine_end_gcode": { "default_value": "G28\nG91\nG1 E-6 F300\nM104 S0\nG1 E-1000 F5000\nM84\nG90" }, "layer_height": { "default_value": 0.2 }, "default_material_print_temperature": { "default_value": 210 }, diff --git a/resources/definitions/atomstack_cambrian_base.def.json b/resources/definitions/atomstack_cambrian_base.def.json new file mode 100644 index 0000000000..1939f930e4 --- /dev/null +++ b/resources/definitions/atomstack_cambrian_base.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "AtomStack Cambrian Base Printer", + "inherits": "fdmprinter", + "metadata": { + "visible": false, + "author": "AtomStack", + "manufacturer": "AtomStack", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { + "0": "atomstack_cambrianmaxe175_extruder_0" + } + }, + "overrides": { + "machine_heated_bed": { + "default_value": true + }, + "machine_extruder_count": { + "default_value": 1 + }, + "machine_start_gcode": { + "default_value": "; AtomStack Cambrian Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.9 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.9 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG1 E29 ;Retract the filament\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" + }, + "machine_end_gcode": { + "default_value": "; AtomStack Cambrian End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-8 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute position\n\nG1 X0 Y210 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off nozzle\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" + } + } +} diff --git a/resources/definitions/atomstack_cambrianmaxe175.def.json b/resources/definitions/atomstack_cambrianmaxe175.def.json new file mode 100644 index 0000000000..572b692118 --- /dev/null +++ b/resources/definitions/atomstack_cambrianmaxe175.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Cambrian Max E175", + "inherits": "atomstack_cambrian_base", + "metadata": { + "visible": true, + "author": "AtomStack", + "manufacturer": "AtomStack", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { + "0": "atomstack_cambrianmaxe175_extruder_0" + } + }, + "overrides": { + "machine_name": { + "default_value": "Cambrian MAX E175" + }, + "machine_width": { + "default_value": 320 + }, + "machine_height": { + "default_value": 380 + }, + "machine_depth": { + "default_value": 330 + } + } +} diff --git a/resources/definitions/atomstack_cambrianmaxe285.def.json b/resources/definitions/atomstack_cambrianmaxe285.def.json new file mode 100644 index 0000000000..064ee1ec83 --- /dev/null +++ b/resources/definitions/atomstack_cambrianmaxe285.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Cambrian Max E285", + "inherits": "atomstack_cambrian_base", + "metadata": { + "visible": true, + "author": "AtomStack", + "manufacturer": "AtomStack", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { + "0": "atomstack_cambrianmaxe285_extruder_0" + } + }, + "overrides": { + "machine_name": { + "default_value": "Cambrian MAX E285" + }, + "machine_width": { + "default_value": 320 + }, + "machine_height": { + "default_value": 380 + }, + "machine_depth": { + "default_value": 330 + } + } +} diff --git a/resources/definitions/atomstack_cambrianproe175.def.json b/resources/definitions/atomstack_cambrianproe175.def.json new file mode 100644 index 0000000000..cc56d5545a --- /dev/null +++ b/resources/definitions/atomstack_cambrianproe175.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Cambrian Pro E175", + "inherits": "atomstack_cambrian_base", + "metadata": { + "visible": true, + "author": "AtomStack", + "manufacturer": "AtomStack", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { + "0": "atomstack_cambrianproe175_extruder_0" + } + }, + "overrides": { + "machine_name": { + "default_value": "Cambrian Pro E175" + }, + "machine_width": { + "default_value": 235 + }, + "machine_height": { + "default_value": 250 + }, + "machine_depth": { + "default_value": 235 + } + } +} diff --git a/resources/definitions/atomstack_cambrianproe285.def.json b/resources/definitions/atomstack_cambrianproe285.def.json new file mode 100644 index 0000000000..37f51dcc97 --- /dev/null +++ b/resources/definitions/atomstack_cambrianproe285.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Cambrian Pro E285", + "inherits": "atomstack_cambrian_base", + "metadata": { + "visible": true, + "author": "AtomStack", + "manufacturer": "AtomStack", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { + "0": "atomstack_cambrianproe285_extruder_0" + } + }, + "overrides": { + "machine_name": { + "default_value": "Cambrian Pro E285" + }, + "machine_width": { + "default_value": 235 + }, + "machine_height": { + "default_value": 250 + }, + "machine_depth": { + "default_value": 235 + } + } +} diff --git a/resources/definitions/bfb.def.json b/resources/definitions/bfb.def.json index e88c8c792b..caee91291a 100644 --- a/resources/definitions/bfb.def.json +++ b/resources/definitions/bfb.def.json @@ -4,7 +4,6 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Ultimaker", "manufacturer": "BFB", "file_formats": "text/x-gcode", "platform_offset": [ 0, 0, 0], diff --git a/resources/definitions/biqu_base.def.json b/resources/definitions/biqu_base.def.json index 29aa69ec54..748660742d 100755 --- a/resources/definitions/biqu_base.def.json +++ b/resources/definitions/biqu_base.def.json @@ -83,7 +83,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, "z_seam_type": { "value": "'sharpest_corner'" }, "z_seam_corner": { "value": "'z_seam_corner_inner'" }, @@ -97,7 +96,6 @@ "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/blv_mgn_cube_300.def.json b/resources/definitions/blv_mgn_cube_300.def.json index c23eeb0598..48fb7cd149 100644 --- a/resources/definitions/blv_mgn_cube_300.def.json +++ b/resources/definitions/blv_mgn_cube_300.def.json @@ -4,7 +4,6 @@ "inherits": "blv_mgn_cube_base", "metadata": { "visible": true, - "setting_version": 17, "author": "wolfgangmauer", "manufacturer": "BLV", "file_formats": "text/x-gcode", diff --git a/resources/definitions/blv_mgn_cube_350.def.json b/resources/definitions/blv_mgn_cube_350.def.json index d0c4dcd9e6..c5e5e28723 100644 --- a/resources/definitions/blv_mgn_cube_350.def.json +++ b/resources/definitions/blv_mgn_cube_350.def.json @@ -4,7 +4,6 @@ "inherits": "blv_mgn_cube_base", "metadata": { "visible": true, - "setting_version": 17, "author": "wolfgangmauer", "manufacturer": "BLV", "file_formats": "text/x-gcode", diff --git a/resources/definitions/blv_mgn_cube_base.def.json b/resources/definitions/blv_mgn_cube_base.def.json index c97bd97063..2c73b80cfc 100644 --- a/resources/definitions/blv_mgn_cube_base.def.json +++ b/resources/definitions/blv_mgn_cube_base.def.json @@ -45,9 +45,6 @@ "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, - "fill_perimeter_gaps": { - "value": "'everywhere'" - }, "fill_outline_gaps": { "value": true }, diff --git a/resources/definitions/crazy3dprint_base.def.json b/resources/definitions/crazy3dprint_base.def.json new file mode 100644 index 0000000000..afdf887f7f --- /dev/null +++ b/resources/definitions/crazy3dprint_base.def.json @@ -0,0 +1,44 @@ +{ + "version": 2, + "name": "Crazy3DPrint CZ-300", + "inherits": "fdmprinter", + "metadata": { + "visible": false, + "author": "XYZprinting Software", + "manufacturer": "Crazy3DPrint", + "file_formats": "text/x-gcode", + "first_start_actions": ["MachineSettingsAction"], + "machine_extruder_trains": + { + "0": "crazy3dprint_cz300_extruder_0" + }, + "has_materials": true, + "has_variants": true, + "has_machine_quality": true, + "preferred_variant_name": "0.4mm Nozzle", + "preferred_quality_type": "normal", + "preferred_material": "generic_pla", + "variants_name": "Nozzle Size" + }, + "overrides": { + "machine_heated_bed": {"default_value": true}, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_acceleration_x": { "value": 1500 }, + "machine_max_acceleration_y": { "value": 1500 }, + "machine_max_acceleration_z": { "value": 500 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_acceleration": { "value": 500 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_max_jerk_e": { "value": 5 } + }, + + + "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, + "machine_start_gcode": {"default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end"}, + "machine_end_gcode": {"default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" + } + } diff --git a/resources/definitions/crazy3dprint_cz_300.def.json b/resources/definitions/crazy3dprint_cz_300.def.json new file mode 100644 index 0000000000..56d3d69757 --- /dev/null +++ b/resources/definitions/crazy3dprint_cz_300.def.json @@ -0,0 +1,65 @@ +{ + "version": 2, + "name": "Crazy3DPrint CZ-300", + "inherits": "crazy3dprint_base", + "metadata": { + "visible": true, + "author": "XYZprinting Software", + "manufacturer": "Crazy3DPrint", + "file_formats": "text/x-gcode", + "supports_usb_connection": true, + "preferred_quality_type": "normal", + "quality_definition": "crazy3dprint_base" + }, + + "overrides": { + "machine_name": { "default_value": "CZ-300" }, + "machine_shape": { "default_value": "rectangular"}, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 300.00 }, + "machine_depth": { "default_value": 300.00 }, + "machine_height": { "default_value":300.00 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -20, -10 ], + [ -20, 10 ], + [ 10, 10 ], + [ 10, -10 ] + ] + }, + "layer_height": { "default_value": 0.2 }, + "infill_sparse_density": { "default_value": 15 }, + "infill_line_distance": { "value": 2.6667 }, + "infill_pattern": { "value": "'lines'" }, + "infill_overlap": { "value": 8.0 }, + "min_infill_area": { "default_value": 2.0 }, + "retract_at_layer_change": { "default_value": true }, + "default_material_print_temperature": { "default_value": 210 }, + "material_print_temperature": { "value": 210 }, + "material_final_print_temperature": { "value": 210 }, + "material_bed_temperature": { "value": 70 }, + "material_bed_temperature_layer_0": { "value": 70 }, + "material_flow_layer_0": {"value": 140}, + "retraction_amount": { "default_value": 10 }, + "retraction_speed": { "default_value": 50 }, + "speed_print": { "default_value": 40 }, + "speed_travel": { "value": 60 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "adhesion_type": { "default_value" : "skirt" }, + "brim_line_count": { "value" : 5 }, + "skirt_line_count": { "default_value" : 5 }, + "initial_layer_line_width_factor": { "default_value" : 140 }, + "top_bottom_pattern": { "default_value" : "concentric" }, + "fill_outline_gaps": { "default_value": true }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "inset_direction": {"value": "'outside_in'" }, + "machine_start_gcode": { + "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" + } + } +} diff --git a/resources/definitions/creality_base.def.json b/resources/definitions/creality_base.def.json index ccf085bb11..6aebd0db4e 100644 --- a/resources/definitions/creality_base.def.json +++ b/resources/definitions/creality_base.def.json @@ -183,7 +183,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, "z_seam_type": { "value": "'back'" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, @@ -196,7 +195,6 @@ "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, @@ -247,7 +245,8 @@ "support_use_towers": { "value": false }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "support_top_distance": { "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (layer_height if support_structure == 'tree' else 0)"}, "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, "support_wall_count": { "value": 1 }, "support_brim_enable": { "value": true }, diff --git a/resources/definitions/creality_cr100.def.json b/resources/definitions/creality_cr100.def.json new file mode 100644 index 0000000000..ed528a00b6 --- /dev/null +++ b/resources/definitions/creality_cr100.def.json @@ -0,0 +1,25 @@ +{ + "name": "Creality CR-100", + "version": 2, + "inherits": "creality_base", + "overrides": { + "machine_name": { "default_value": "Creality CR-100" }, + "machine_width": { "default_value": 100 }, + "machine_depth": { "default_value": 100 }, + "machine_height": { "default_value": 80 }, + "machine_head_with_fans_polygon": { "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + + "gantry_height": { "value": 25 } + + }, + "metadata": { + "quality_definition": "creality_base", + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/creality_ender3max.def.json b/resources/definitions/creality_ender3max.def.json new file mode 100644 index 0000000000..0902f00f29 --- /dev/null +++ b/resources/definitions/creality_ender3max.def.json @@ -0,0 +1,41 @@ +{ + "name": "Creality Ender-3 Max", + "version": 2, + "inherits": "creality_base", + "metadata": { + "author": "Radlab Ecuador", + "quality_definition": "creality_base", + "visible": true, + "platform": "creality_ender3max.stl" + }, + "overrides": { + "machine_name": { "default_value": "Creality Ender-3 Max" }, + "machine_width": { "default_value": 300 }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 340 }, + "machine_head_with_fans_polygon": { "default_value": [ + [-42.5, 30], + [-42.5, -40], + [42.5, -40], + [42.5, 30] + ] + }, + "machine_start_gcode": { + "default_value": "; Ender 3 Max Custom Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" + }, + + "machine_max_feedrate_z": { "value": 5 }, + "machine_max_feedrate_e": { "value": 25 }, + + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_acceleration_e": { "value": 1000 }, + + "acceleration_travel": { "value": 1000 }, + + "machine_max_jerk_z": { "value": 0.3 }, + + "gantry_height": { "value": 35 } + } +} diff --git a/resources/definitions/creality_ender5.def.json b/resources/definitions/creality_ender5.def.json index 896f532c81..2f913fdd4e 100644 --- a/resources/definitions/creality_ender5.def.json +++ b/resources/definitions/creality_ender5.def.json @@ -4,7 +4,7 @@ "inherits": "creality_base", "overrides": { "machine_name": { "default_value": "Creality Ender-5" }, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y0 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X0 Y0 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, "machine_width": { "default_value": 220 }, "machine_depth": { "default_value": 220 }, "machine_height": { "default_value": 300 }, diff --git a/resources/definitions/creality_ender5plus.def.json b/resources/definitions/creality_ender5plus.def.json index 48ebad61ea..44469284f2 100644 --- a/resources/definitions/creality_ender5plus.def.json +++ b/resources/definitions/creality_ender5plus.def.json @@ -5,6 +5,7 @@ "overrides": { "machine_name": { "default_value": "Creality Ender-5 Plus" }, "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 Z2 ;Enable ABL using saved Mesh and Fade Height\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n"}, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X{machine_width} Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, "machine_width": { "default_value": 350 }, "machine_depth": { "default_value": 350 }, "machine_height": { "default_value": 400 }, diff --git a/resources/definitions/creality_ender6.def.json b/resources/definitions/creality_ender6.def.json new file mode 100644 index 0000000000..56ceab88b2 --- /dev/null +++ b/resources/definitions/creality_ender6.def.json @@ -0,0 +1,41 @@ +{ + "name": "Creality Ender-6", + "version": 2, + "inherits": "creality_base", + "overrides": { + "machine_name": { "default_value": "Creality Ender-6" }, + "machine_start_gcode": { "default_value": "\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n"}, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X Y ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_width": { "default_value": 260 }, + "machine_depth": { "default_value": 260 }, + "machine_height": { "default_value": 400 }, + "z_seam_type": { "value": "'sharpest_corner'"}, + "z_seam_corner": { "value": "'z_seam_corner_inner'"}, + "infill_sparse_density": { "value": "10"}, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'grid'"}, + "infill_overlap":{"value": 10}, + "material_print_temperature":{"value": 220}, + "material_bed_temperature":{"value": 50}, + "retraction_amount":{"value": 10}, + "speed_travel": { "value": 80.0 }, + "coasting_enable": { "value": true}, + "coasting_min_volume": { "value": 0.5}, + "machine_head_with_fans_polygon": { "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + + "gantry_height": { "value": 25 }, + + "speed_print": { "value": 50.0 }, + "speed_wall": { "value": 30.0 } + + }, + "metadata": { + "quality_definition": "creality_base", + "visible": true + } +} diff --git a/resources/definitions/creality_sermoond1.def.json b/resources/definitions/creality_sermoond1.def.json new file mode 100644 index 0000000000..c09019c6f4 --- /dev/null +++ b/resources/definitions/creality_sermoond1.def.json @@ -0,0 +1,25 @@ +{ + "name": "Creality Sermoon D1", + "version": 2, + "inherits": "creality_base", + "overrides": { + "machine_name": { "default_value": "Creality Sermoon D1" }, + "machine_width": { "default_value": 280 }, + "machine_depth": { "default_value": 260 }, + "machine_height": { "default_value": 310 }, + "machine_head_with_fans_polygon": { "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + + "gantry_height": { "value": 25 } + + }, + "metadata": { + "quality_definition": "creality_base", + "visible": true + } +} diff --git a/resources/definitions/creasee_cs50spro.def.json b/resources/definitions/creasee_cs50spro.def.json new file mode 100644 index 0000000000..a2be3d0a52 --- /dev/null +++ b/resources/definitions/creasee_cs50spro.def.json @@ -0,0 +1,32 @@ +{ + "version": 2, + "name": "Creasee CS50s Pro", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "manufacturer": "Creasee", + "machine_extruder_trains": + { + "0": "creasee_cs50spro_extruder" + } + }, + + "overrides": { + "machine_name": { "default_value": "Creasee CS50s Pro" }, + "machine_width": { + "default_value": 500 + }, + "machine_depth": { + "default_value": 500 + }, + "machine_height": { + "default_value": 600 + }, + "machine_start_gcode": { + "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" + }, + "machine_end_gcode": { + "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" + } + } +} diff --git a/resources/definitions/creasee_phoenix.def.json b/resources/definitions/creasee_phoenix.def.json new file mode 100644 index 0000000000..05e134b6b8 --- /dev/null +++ b/resources/definitions/creasee_phoenix.def.json @@ -0,0 +1,32 @@ +{ + "version": 2, + "name": "Creasee Phoenix", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "manufacturer": "Creasee", + "machine_extruder_trains": + { + "0": "creasee_phoenix_extruder" + } + }, + + "overrides": { + "machine_name": { "default_value": "Creasee Phoenix" }, + "machine_width": { + "default_value": 350 + }, + "machine_depth": { + "default_value": 350 + }, + "machine_height": { + "default_value": 350 + }, + "machine_start_gcode": { + "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" + }, + "machine_end_gcode": { + "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" + } + } +} diff --git a/resources/definitions/creasee_skywalker.def.json b/resources/definitions/creasee_skywalker.def.json new file mode 100644 index 0000000000..3120e6b116 --- /dev/null +++ b/resources/definitions/creasee_skywalker.def.json @@ -0,0 +1,32 @@ +{ + "version": 2, + "name": "Creasee Skywalker", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "manufacturer": "Creasee", + "machine_extruder_trains": + { + "0": "creasee_skywalker_extruder" + } + }, + + "overrides": { + "machine_name": { "default_value": "Creasee Skywalker" }, + "machine_width": { + "default_value": 300 + }, + "machine_depth": { + "default_value": 300 + }, + "machine_height": { + "default_value": 400 + }, + "machine_start_gcode": { + "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" + }, + "machine_end_gcode": { + "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" + } + } +} diff --git a/resources/definitions/creatable_d3.def.json b/resources/definitions/creatable_d3.def.json index 7a87a62866..a95fe44ff1 100644 --- a/resources/definitions/creatable_d3.def.json +++ b/resources/definitions/creatable_d3.def.json @@ -7,7 +7,6 @@ "author": "Creatable Labs", "manufacturer": "Ateam Ventures Co. Ltd.", "file_formats": "text/x-gcode", - "icon": "icon_ultimaker.png", "platform": "rostock_platform.3mf", "machine_extruder_trains": { @@ -28,7 +27,7 @@ "gantry_height": {"value": "43"}, "layer_height": { "default_value": 0.1 }, "relative_extrusion": { "value": "False" }, - "retraction_combing": { "default_value": "off" }, + "retraction_combing": { "value": "'off'" }, "retraction_hop_enabled": { "default_value": true }, "retraction_hop_only_when_collides": { "default_value": false }, "retraction_speed": { "default_value": 100 }, diff --git a/resources/definitions/cremaker_common.def.json b/resources/definitions/cremaker_common.def.json new file mode 100644 index 0000000000..6fd339f58f --- /dev/null +++ b/resources/definitions/cremaker_common.def.json @@ -0,0 +1,58 @@ +{ + "version": 2, + "name": "cremaker common", + "inherits": "fdmprinter", + "metadata": { + "visible": false, + "author": "Joyplace", + "manufacturer": "JOYPLACE CO., LTD.", + "file_formats": "text/x-gcode", + "icon": "icon_ultimaker2", + "has_materials": true, + "machine_extruder_trains": { + "0": "cremaker_extruder_0" + } + }, + + "overrides": { + "machine_heated_bed": { "default_value": true }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "layer_height": { "value": 0.2 }, + "layer_height_0": { "value": 0.3 }, + "optimize_wall_printing_order": { "value": true }, + "xy_offset": { "value": 0.1 }, + "xy_offset_layer_0": { "value": -0.1 }, + "hole_xy_offset": { "value": 0.15 }, + "material_print_temperature": { "value": 200 }, + "speed_travel": { "value": 100 }, + "speed_layer_0": { "value": 25 }, + "acceleration_enabled": { "value": true }, + "acceleration_print": { "value": 1250 }, + "acceleration_infill": { "value": 1250 }, + "acceleration_wall": { "value": 800 }, + "acceleration_wall_0": { "value": 800 }, + "acceleration_wall_x": { "value": 800 }, + "acceleration_travel": { "value": 1250 }, + "acceleration_layer_0": { "value": 1000 }, + "acceleration_print_layer_0": { "value": 1000 }, + "acceleration_travel_layer_0": { "value": 1000 }, + "retraction_amount": { "value": 1.2 }, + "retraction_speed": { "value": 40 }, + "retraction_combing": { "value": "'infill'" }, + "retraction_hop_enabled": { "value": true }, + "retraction_hop_only_when_collides": { "value": true }, + "retraction_hop": { "value": 0.3 }, + "adhesion_type": { "value": "'skirt'" }, + "relative_extrusion": { "value": true }, + "gantry_height": { "value": 28 }, + "machine_max_feedrate_z": { "value": 12 }, + "machine_max_feedrate_e": { "value": 120 }, + "machine_max_acceleration_z": { "value": 10 }, + "machine_acceleration": { "value": 1250 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_max_jerk_e": { "value": 5.0 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" } + } +} diff --git a/resources/definitions/cremaker_m_v1.def.json b/resources/definitions/cremaker_m_v1.def.json new file mode 100644 index 0000000000..d4cd65a6da --- /dev/null +++ b/resources/definitions/cremaker_m_v1.def.json @@ -0,0 +1,40 @@ +{ + "version": 2, + "name": "Cremaker M V1", + "inherits": "cremaker_common", + "metadata": { + "visible": true, + "platform": "cremaker_platform_200.obj" + }, + + "overrides": { + "machine_name": { "default_value": "Cremaker M V1" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 260 }, + "initial_layer_line_width_factor": { "default_value": 110.0 }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -35, 48 ], + [ 54, 48 ], + [ 54, -67 ], + [ -35, -67 ] + ] + }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28\nG1 Z5.0 F6000\nG1 X2 Y5 F3000\nG1 Z0.3\nG92 E0\nG1 Y100 E10 F600\nG92 E0" + }, + "machine_end_gcode": { + "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y180\nM84" + }, + "jerk_enabled": { "value": true }, + "jerk_print": { "value": 8 }, + "jerk_infill": { "value": 8 }, + "jerk_wall": { "value": 8 }, + "jerk_wall_0": { "value": 8 }, + "jerk_wall_x": { "value": 8 }, + "jerk_travel": { "value": 10 }, + "jerk_layer_0": { "value": 8 } + } +} diff --git a/resources/definitions/cremaker_m_v2.def.json b/resources/definitions/cremaker_m_v2.def.json new file mode 100644 index 0000000000..2d6c4d1a7f --- /dev/null +++ b/resources/definitions/cremaker_m_v2.def.json @@ -0,0 +1,38 @@ +{ + "version": 2, + "name": "Cremaker M V2", + "inherits": "cremaker_common", + "metadata": { + "visible": true, + "platform": "cremaker_platform_220.obj" + }, + + "overrides": { + "machine_name": { "default_value": "Cremaker M V2" }, + "machine_width": { "default_value": 220 }, + "machine_depth": { "default_value": 220 }, + "machine_height": { "default_value": 260 }, + "initial_layer_line_width_factor": { "default_value": 100.0 }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -35, 48 ], + [ 54, 48 ], + [ 54, -67 ], + [ -35, -67 ] + ] + }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28\nG29\nG1 Z5.0 F6000\nG1 X2 Y5 Z0.3 F3000\nG92 E0\nG1 Y100 E10 F1500\nG0 X2.3 F3000\nG1 Y20 E8.5 F1500\nG92 E0\nG1 F2400 E-2" + }, + "machine_end_gcode": { + "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y200\nM84" + }, + + "cool_fan_speed": { "value": 50 }, + "coasting_enable": { "value": true }, + "coasting_volume": { "value": 0.05 }, + "coasting_min_volume": { "value": 1.0 }, + "jerk_enabled": { "value": false } + } +} diff --git a/resources/definitions/cremaker_s_v1.def.json b/resources/definitions/cremaker_s_v1.def.json new file mode 100644 index 0000000000..101d82fac8 --- /dev/null +++ b/resources/definitions/cremaker_s_v1.def.json @@ -0,0 +1,32 @@ +{ + "version": 2, + "name": "Cremaker S V1", + "inherits": "cremaker_common", + "metadata": { + "visible": true, + "platform": "cremaker_platform_200.obj" + }, + + "overrides": { + "machine_name": { "default_value": "Cremaker S V1" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 160 }, + "initial_layer_line_width_factor": { "default_value": 110.0 }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -39, 45 ], + [ 23, 45 ], + [ 23, -33 ], + [ -39, -33 ] + ] + }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28\nG1 Z5.0 F6000\nG1 X2 Y5 F3000\nG1 Z0.3\nG92 E0\nG1 Y100 E10 F600\nG92 E0" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nG92 E1\nG1 E-1 F300\nG28 X0 Y180\nM84" + } + } +} diff --git a/resources/definitions/cubicon_common.def.json b/resources/definitions/cubicon_common.def.json index 61e684a283..f700df7ae6 100644 --- a/resources/definitions/cubicon_common.def.json +++ b/resources/definitions/cubicon_common.def.json @@ -20,9 +20,6 @@ "machine_heated_bed": { "default_value": true }, - "travel_compensate_overlapping_walls_enabled": { - "default_value": false - }, "layer_height": { "default_value": 0.2 }, @@ -33,7 +30,6 @@ "default_value": "raft" }, "top_bottom_pattern": { "default_value": "lines" }, - "fill_perimeter_gaps": { "default_value": "everywhere" }, "infill_sparse_density": { "default_value": 20 }, "infill_before_walls": { "default_value": false }, "top_bottom_thickness": { diff --git a/resources/definitions/dagoma_pro_430_base.def.json b/resources/definitions/dagoma_pro_430_base.def.json new file mode 100644 index 0000000000..10bf846f03 --- /dev/null +++ b/resources/definitions/dagoma_pro_430_base.def.json @@ -0,0 +1,195 @@ +{ + "version": 2, + "name": "Dagoma PRO 430 BASE", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Dagoma", + "manufacturer": "Dagoma", + "file_formats": "text/x-gcode", + "platform": "dagoma_pro_430_base.3mf", + "platform_offset": [-125, -118, -280], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "variants_name": "Steel Nozzle Size", + "preferred_material": "dagoma_generic_pla", + "preferred_quality_type": "high", + "preferred_variant_name": "0.4", + "exclude_materials": + [ + "3D-Fuel_PLA_PRO_Black", + "3D-Fuel_PLA_SnapSupport", + "bestfilament_abs_skyblue", + "bestfilament_petg_orange", + "bestfilament_pla_green", + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "emotiontech_abs", + "emotiontech_absx", + "emotiontech_acetate", + "emotiontech_asax", + "emotiontech_bvoh", + "emotiontech_copa", + "emotiontech_hips", + "emotiontech_nylon_1030", + "emotiontech_nylon_1030cf", + "emotiontech_nylon_1070", + "emotiontech_pc", + "emotiontech_pekk", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pla_hr_870", + "emotiontech_pva-m", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "eryone_petg", + "eryone_pla", + "eryone_pla_glow", + "eryone_pla_matte", + "eryone_pla_wood", + "eSUN_PETG_Black", + "eSUN_PETG_Grey", + "eSUN_PETG_Purple", + "eSUN_PLA_PRO_Black", + "eSUN_PLA_PRO_Grey", + "eSUN_PLA_PRO_Purple", + "eSUN_PLA_PRO_White", + "Extrudr_GreenTECPro_Anthracite_175", + "Extrudr_GreenTECPro_Black_175", + "Extrudr_GreenTECPro_Blue_175", + "Extrudr_GreenTECPro_Nature_175", + "Extrudr_GreenTECPro_Red_175", + "Extrudr_GreenTECPro_Silver_175", + "Extrudr_GreenTECPro_White_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fdplast_abs_tomato", + "fdplast_petg_gray", + "fdplast_pla_olive", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_bvoh_175", + "generic_hips_175", + "generic_pva_175", + "generic_tough_pla", + "goofoo_abs", + "goofoo_asa", + "goofoo_bronze_pla", + "goofoo_emarble_pla", + "goofoo_esilk_pla", + "goofoo_hips", + "goofoo_pa", + "goofoo_pa_cf", + "goofoo_pc", + "goofoo_peek", + "goofoo_petg", + "goofoo_pla", + "goofoo_pva", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "goofoo_wood_pla", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "layer_one_black_pla", + "layer_one_dark_gray_pla", + "layer_one_white_pla", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "structur3d_dap100silicone", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla", + "tizyx_pla_bois", + "tizyx_pva", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "Vertex_Delta_TPU", + "volumic_abs_ultra", + "volumic_arma_ultra", + "volumic_asa_ultra", + "volumic_br80_ultra", + "volumic_bumper_ultra", + "volumic_cu80_ultra", + "volumic_flex93_ultra", + "volumic_medical_ultra", + "volumic_nylon_ultra", + "volumic_pekk_carbone", + "volumic_petg_ultra", + "volumic_petgcarbone_ultra", + "volumic_pla_ultra", + "volumic_pp_ultra", + "volumic_strong_ultra", + "volumic_support_ultra", + "xyzprinting_abs", + "xyzprinting_antibact_pla", + "xyzprinting_carbon_fiber", + "xyzprinting_colorinkjet_pla", + "xyzprinting_flexible", + "xyzprinting_metallic_pla", + "xyzprinting_nylon", + "xyzprinting_petg", + "xyzprinting_pla", + "xyzprinting_tough_pla", + "zyyx_pro_flex", + "zyyx_pro_pla", + "xyzprinting_tpu" + ] + }, + + "overrides": + { + "machine_gcode_flavor": { "default_value": "Marlin" }, + "machine_width": { "default_value": 430 }, + "machine_depth": { "default_value": 320 }, + "machine_heated_bed": { "default_value": true }, + "machine_center_is_zero": { "default_value": false }, + "machine_steps_per_mm_x": { "default_value": 80 }, + "machine_steps_per_mm_y": { "default_value": 80 }, + "machine_steps_per_mm_z": { "default_value": 800 }, + "machine_max_feedrate_x": { "default_value": 500 }, + "machine_max_feedrate_y": { "default_value": 500 }, + "machine_max_feedrate_z": { "default_value": 16 }, + "machine_max_acceleration_x": { "value": 1500 }, + "machine_max_acceleration_y": { "value": 1500 }, + "machine_max_acceleration_z": { "value": 70 }, + "machine_max_acceleration_e": { "value": 10000 }, + "machine_nozzle_cool_down_speed": { "default_value": 1.5 }, + "machine_nozzle_heat_up_speed": { "default_value": 7 }, + "machine_nozzle_expansion_angle": { "default_value": 60 }, + "default_material_print_temperature": { "default_value": 205 }, + "default_material_bed_temperature": { "default_value": 50 }, + "adhesion_type": { "default_value": "skirt" }, + "skirt_line_count": { "default_value": 3 }, + "nozzle_disallowed_areas": { "default_value": [ [[-215, 160], [-166, 160], [-215, 111]], [[215, 160], [166, 160], [215, 111]] ] }, + "machine_use_extruder_offset_to_offset_coords": {"default_value": false } + } +} \ No newline at end of file diff --git a/resources/definitions/dagoma_pro_430_bowden.def.json b/resources/definitions/dagoma_pro_430_bowden.def.json new file mode 100644 index 0000000000..7ed1adb0b7 --- /dev/null +++ b/resources/definitions/dagoma_pro_430_bowden.def.json @@ -0,0 +1,40 @@ +{ + "version": 2, + "name": "Dagoma PRO 430B", + "inherits": "dagoma_pro_430_base", + "metadata": + { + "visible": true, + "author": "Dagoma", + "manufacturer": "Dagoma", + "machine_extruder_trains": { "0": "dagoma_pro_430_bowden_extruder_0" } + }, + + "overrides": + { + "machine_name": { "default_value": "Dagoma PRO 430B" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_height": { "default_value": 360 }, + "machine_head_with_fans_polygon": { "default_value": [ [-22.5, -22.5], [-22.5, 22.5], [22.5, 22.5], [22.5, -22.5] ] }, + "gantry_height": { "value": "35" }, + "machine_start_gcode": { "default_value": "\n;Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM140 S{material_bed_temperature} ;Preheat hotbed\nM117 Nozzle preheating ;Set message\nM109 R{material_standby_temperature} ;Preheat hotend before bed leveling\nM117 Hotbed preheating ;Set message\nM190 S{material_bed_temperature} ;Preheat hotbed before bed leveling\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM117 Wait for print temp ;Set message\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z3 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{travel_speed} ;Set the feedrate to {travel_speed}mm/s\nM117 Print in progress ;Set message\n" }, + "machine_end_gcode": { "default_value": "\n;End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-{retraction_amount} F5000 ;Retract filament to stop oozing\nG90 ;Set all axes to absolute\nG28 X Y ;Home the X and Y axes\nM18 ;Disable steppers motors\nM117 Print end ;Set message\n" }, + "machine_acceleration": { "value": 1250 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_feedrate_e": { "default_value": 200 }, + "machine_steps_per_mm_e": { "default_value": 139.5 }, + "acceleration_enabled": { "value": "True" }, + "acceleration_print": { "value": "1250", "maximum_value": 1500 }, + "acceleration_layer_0": { "value": "acceleration_topbottom", "maximum_value": 1500 }, + "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 1250)", "maximum_value": 1500 }, + "acceleration_travel": { "value": "acceleration_print", "maximum_value": 1500 }, + "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 1250)", "maximum_value": 1500 }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_print * 800 / 1250)", "maximum_value": 1500 }, + "jerk_enabled": { "value": "True" }, + "jerk_print": { "value": "8", "minimum_value_warning": 8 }, + "jerk_travel": {"value": "10", "minimum_value_warning": 8 }, + "optimize_wall_printing_order": { "value": "True" } + } +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_base.def.json b/resources/definitions/deltacomb_base.def.json index 254257036a..a977dee663 100644 --- a/resources/definitions/deltacomb_base.def.json +++ b/resources/definitions/deltacomb_base.def.json @@ -64,7 +64,7 @@ "retraction_hop": { "default_value": 1.0 }, "retraction_amount" : { "default_value": 3.5 }, "retraction_speed" : { "default_value": 40 }, - "retraction_combing" : { "default_value": "noskin" }, + "retraction_combing" : { "value": "'noskin'" }, "travel_avoid_distance": { "value": "1" }, "travel_avoid_supports": { "value": "True" }, "retraction_hop_only_when_collides": { "value": "1" }, diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index e911a8eed6..4d7c3eb446 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -13,7 +13,6 @@ "has_variant_materials": false, "weight": 0, "file_formats": "text/x-gcode", - "icon": "icon_ultimaker.png", "platform": "ultimaker2_platform.obj", "platform_texture": "dxu_backplate.png", "platform_offset": [1.5, 0, 0], diff --git a/resources/definitions/eazao_zero.def.json b/resources/definitions/eazao_zero.def.json new file mode 100644 index 0000000000..63286a1333 --- /dev/null +++ b/resources/definitions/eazao_zero.def.json @@ -0,0 +1,126 @@ +{ + "version": 2, + "name": "Eazao Zero", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Eazao", + "manufacturer": "Eazao", + "file_formats": "text/x-gcode", + "has_materials": true, + "has_machine_quality": false, + "preferred_quality_type": "normal", + "preferred_material": "generic_pla", + + "machine_extruder_trains": + { + "0": "eazao_zero_extruder_0" + } + }, + "overrides": + { + "machine_name": + { + "default_value": "EAZAO Zero" + }, + "machine_heated_bed": + { + "default_value": false + }, + "machine_width": + { + "default_value": 150 + }, + "machine_depth": + { + "default_value": 150 + }, + "machine_height": + { + "default_value": 240 + }, + "machine_center_is_zero": + { + "default_value": false + }, + "machine_gcode_flavor": + { + "default_value": "Marlin (Marlin/Sprinter)" + }, + "machine_start_gcode": + { + "default_value": "G21 \nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ;Home \nG1 Z15.0 F1500 ;move the platform down 15mm\nG92 E0 \nG1 F300 E10\nG92 E0\nM302\nM163 S0 P0.9; Set Mix Factor\nM163 S1 P0.1; Set Mix Factor\nM164 S0\n" + }, + "machine_end_gcode": + { + "default_value": "G92 E10\nG1 E-10 F300\nG28 X0 Y0 ;move X Y to min endstops\nM82\nM84 ;steppers off\n" + }, + "machine_max_feedrate_x": { "value": 100 }, + "machine_max_feedrate_y": { "value": 100 }, + "machine_max_feedrate_z": { "value": 5 }, + "machine_max_feedrate_e": { "value": 25 }, + + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 50 }, + "machine_max_acceleration_e": { "value": 500 }, + "machine_acceleration": { "value": 300 }, + "acceleration_print": { "value": 300 }, + "acceleration_travel": { "value": 300 }, + "acceleration_enabled": { "value": false }, + + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_max_jerk_e": { "value": 5 }, + "jerk_print": { "value": 10 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "jerk_enabled": { "value": false }, + + "layer_height": {"value":1.0}, + "layer_height_0": {"value":1.0}, + "line_width": {"value":3.0}, + + "wall_thickness": {"value":3.0}, + "optimize_wall_printing_order": { "value": "True" }, + + "top_bottom_thickness": {"value":0}, + "bottom_layers":{"value":2}, + "initial_bottom_layers":{"value":2}, + + "infill_sparse_density": {"value":0}, + + "material_print_temperature": { "value": "0" }, + "material_print_temperature_layer_0": { "value": "0" }, + "material_initial_print_temperature": { "value": "0" }, + "material_final_print_temperature": { "value": "0" }, + + "speed_print": { "value": 20.0 }, + "speed_wall": { "value": 20.0 }, + "speed_wall_0": { "value": 20.0 }, + "speed_wall_x": { "value": 20.0 }, + "speed_travel": { "value": 20.0 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, + + "retraction_hop_enabled": { "value": false }, + "retraction_hop": { "value": 0.2 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_combing_max_distance": { "value": 0 }, + + "travel_avoid_other_parts": { "value": true }, + "travel_avoid_supports": { "value": false }, + "travel_retract_before_outer_wall": { "value": false }, + + "retraction_enable": { "value": false }, + "retraction_speed": { "value": 25 }, + "retraction_amount": { "value": 7 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + + "cool_fan_enabled": { "value": false }, + + "adhesion_type": { "default_value": "none" } + + } +} diff --git a/resources/definitions/eryone_er20.def.json b/resources/definitions/eryone_er20.def.json index 236ef63188..2f5f02d7db 100644 --- a/resources/definitions/eryone_er20.def.json +++ b/resources/definitions/eryone_er20.def.json @@ -48,10 +48,10 @@ }, "gantry_height":{ "value": "0" }, "machine_start_gcode": { - "default_value": "G90 ; use absolute coordinates\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nG28 ; home all without mesh bed level\nG29 ; mesh bed leveling/ABL\nM104 S[first_layer_temperature] ; set extruder temp\nG92 E0.0\nG1 Y-2.0 X150 F2400G1 Z3 F720\nM109 S[first_layer_temperature] ; wait for extruder temp\nG1 X150 F1000\nG1 Z0.2 F720\nG1 X80.0 E8.0 F900\nG1 X20.0 E10.0 F700\nG92 E0.0\nM221 S95 ; set flow\n" + "default_value": "G21 ;Metric values\nG90 ;Absolute positioning\nM82 ;Set extruder to absolute mode\nM107 ;Start with the fan off\nG28 ;Homing the hotend\nG29 ;Auto bed leveling detecting\nG92 E0 ;Reset the extruded length\nG1 F200 E3 ;Extrude 3mm of filament\nG92 E0 ;Reset the extruded length again\nG1 Y-3 F1200 ;Move y axis to prime\nG1 X150 F6000 ;Move x axis to prime\nG1 Z0.2 F720 ;Move z axis to prime\nG1 X80.0 E8.0 F900 ;Prime line\nG1 X20.0 E10.0 F700 ;Prime line\nG92 E0 ;Reset the extruded length\nG5 ;Enable resume from power failure\nM117 Printing...\n" }, "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; disable motors\nM107\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 ;X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y180 F2000\nM84 ;steppers off\nG90\nM300 P300 S4000" + "default_value": "G91 ;Relative positioning\nG1 Z5 F720 ;Raise Z\nG1 E-5 F300 ;Retract a bit to protect nozzle\nM104 S0 ;Turn off extruder\nM140 S0 ;Turn off bed\nM107 ;Turn off all fans\nG90 ;Absolute positioning\nG1 X230 Y200 F4800 ;Parking the hotend\nM84 X Y E ;All steppers off but left Z\n" }, "material_print_temperature": { "value": 205 diff --git a/resources/definitions/eryone_thinker.def.json b/resources/definitions/eryone_thinker.def.json index 6534b8c471..34e333f9cc 100644 --- a/resources/definitions/eryone_thinker.def.json +++ b/resources/definitions/eryone_thinker.def.json @@ -12,7 +12,7 @@ "platform_texture": "eryone_thinker_plate.png", "platform_offset": [0, -120, 0], "has_materials": true, - "preferred_material": "generic_pla", + "preferred_material": "eryone_pla", "has_machine_quality": true, "preferred_quality_type": "normal", "machine_extruder_trains": @@ -54,13 +54,119 @@ "value": 30 }, "machine_gcode_flavor": { - "default_value": "Marlin" + "default_value": "RepRap (Marlin/Sprinter)" }, "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z10.0 F600 ;move the platform down 10mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Y-3 F1200 ;move to prime\nG1 X10 F1200 ;\nG1 Z0.1 F600 ;get ready to prime\nG1 X120 E15 F1200 ;prime nozzle \nG1 X120 F3600 ;quick wipe\nG92 E0 ;zero the extruded length\nG5 ;enable resume from power failure\nM117 Printing..." + "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z10.0 F600 ;move the platform down 10mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Y-3 F1200 ;move to prime\nG1 X10 F1200 ;\nG1 Z0.1 F600 ;get ready to prime\nG1 X120 E15 F1200 ;prime nozzle \nG1 X120 F3600 ;quick wipe\nG92 E0 ;zero the extruded length\nM413 S1 ;enable resume from power failure\nM117 Printing..." }, "machine_end_gcode": { - "default_value": "M104 S0 ;turn off extruder\nM140 S0 ;turn off bed\nM107 ;turn off all fans\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 E-5 F300\nG1 Z+0.5 E-5 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y250 F4800 ; position for easy part removal\nM84 ;steppers off" + "default_value": "M104 S0 ;turn off extruder\nM140 S0 ;turn off bed\nM107 ;turn off all fans\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y250 F4800 ; position for easy part removal\nM84 ;steppers off" + }, + "layer_height": { + "value": 0.2 + }, + "layer_height_0": { + "resolve": "max(0.1, layer_height)" + }, + "initial_layer_line_width_factor": { + "value": 120 + }, + "wall_line_count": { + "value": 3 + }, + "wall_thickness": { + "value": "line_width * wall_line_count" + }, + "optimize_wall_printing_order": { + "default_value": true + }, + "z_seam_type": { + "value": "'shortest'" + }, + "z_seam_corner": { + "value": "'z_seam_corner_inner'" + }, + "roofing_layer_count": { + "value": 1 + }, + "top_layers": { + "value": 6 + }, + "top_thickness":{ + "value": "layer_height * top_layers" + }, + "bottom_layers": { + "value": 4 + }, + "bottom_thickness":{ + "value": "layer_height * bottom_layers" + }, + "skin_overlap": { + "value": 10 + }, + "infill_sparse_density": { + "value": 20 + }, + "infill_pattern": { + "value": "'lines' if infill_sparse_density > 25 else 'grid'" + }, + "infill_overlap": { + "value": "25 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" + }, + "infill_before_walls": { + "value": false + }, + "inset_direction": { + "default_value": "inside_out" + }, + "material_print_temperature": { + "value": "default_material_print_temperature", + "maximum_value_warning": 250 + }, + "material_print_temperature_layer_0": { + "value": "material_print_temperature + 5", + "maximum_value_warning": 250 + }, + "material_initial_print_temperature": { + "value": "material_print_temperature", + "maximum_value_warning": 250 + }, + "material_final_print_temperature": { + "value": "material_print_temperature" + }, + "material_bed_temperature": { + "value": "default_material_bed_temperature", + "maximum_value_warning": 100 + }, + "material_bed_temperature_layer_0": { + "value": "material_bed_temperature" + }, + "speed_infill": { + "value": "speed_print" + }, + "speed_wall": { + "value": "speed_print" + }, + "speed_wall_0": { + "value": "math.ceil(speed_print * 30 / 50)" + }, + "speed_wall_x": { + "value": "speed_print" + }, + "speed_topbottom": { + "value": "math.ceil(speed_print * 20 / 50)" + }, + "speed_travel": { + "value": "speed_print if magic_spiralize else 120" + }, + "speed_layer_0": { + "value": "math.ceil(speed_print * 30 / 50)" + }, + "skirt_brim_speed": { + "value": "math.ceil(speed_print * 40 / 60)" + }, + "speed_z_hop": { + "value": "math.ceil(speed_print * 30 / 60)" }, "acceleration_enabled": { "value": true @@ -71,38 +177,6 @@ "acceleration_travel": { "value": 1500 }, - "adhesion_type": { - "value": "'skirt'" - }, - "brim_width": { - "value": 5 - }, - "cool_fan_full_at_height": { - "value": 0.5 - }, - "cool_fan_speed": { - "value": 100 - }, - "cool_fan_speed_0": { - "value": 0 - }, - "infill_overlap": { - "value": "25 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0", - "maximum_value_warning": 100, - "minimum_value_warning": -50 - }, - "infill_pattern": { - "value": "'lines' if infill_sparse_density > 25 else 'grid'" - }, - "infill_sparse_density": { - "value": 20 - }, - "initial_layer_line_width_factor": { - "value": 120 - }, - "infill_before_walls": { - "value": false - }, "jerk_enabled": { "value": true }, @@ -112,35 +186,11 @@ "jerk_travel": { "value": 15 }, - "material_bed_temperature": { - "maximum_value_warning": 100 - }, - "material_print_temperature": { - "maximum_value_warning": 250 - }, - "optimize_wall_printing_order": { - "default_value": true - }, - "outer_inset_first": { - "default_value": false - }, "retract_at_layer_change": { "value": true }, "retraction_amount": { - "default_value": 4 - }, - "retraction_hop": { - "value": 0.075 - }, - "retraction_hop_enabled": { - "value": false - }, - "retraction_hop_only_when_collides": { - "value": true - }, - "retraction_min_travel": { - "value": 1.5 + "default_value": 4.5 }, "retraction_speed": { "default_value": 85, @@ -153,101 +203,56 @@ "value": "math.ceil(retraction_speed * 0.4)", "maximum_value_warning": 130 }, + "retraction_min_travel": { + "value": "max(line_width * 2, 1.5)" + }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, - "skin_overlap": { - "value": 10 - }, - "skirt_brim_speed": { - "value": 40 - }, - "skirt_gap": { - "value": 5 - }, - "skirt_line_count": { - "value": 3 - }, - "speed_infill": { - "value": "speed_print" - }, - "speed_topbottom": { - "value": "math.ceil(speed_print * 20 / 50)" - }, - "speed_travel": { - "value": "120" - }, - "speed_layer_0": { - "value": "math.ceil(speed_print * 30 / 50)" - }, - "speed_wall": { - "value": "speed_print" - }, - "speed_wall_0": { - "value": "math.ceil(speed_print * 30 / 50)" - }, - "speed_wall_x": { - "value": "speed_print" - }, - "support_angle": { - "value": 50 - }, - "support_enable": { - "default_value": false - }, - "support_interface_enable": { - "value": true - }, - "support_pattern": { - "value": "'triangles'" - }, - "support_roof_enable": { - "value": true - }, - "support_type": { - "value": "'everywhere'" - }, - "support_use_towers": { - "value": false - }, - "support_z_distance": { - "value": 0.3 - }, - "support_xy_distance": { - "value": 0.7 - }, - "support_xy_distance_overhang": { - "value": 0.2 - }, - "smooth_spiralized_contours": { - "value": false - }, "travel_retract_before_outer_wall": { "value": true }, - "wall_line_count": { + "retraction_hop_enabled": { + "value": false + }, + "retraction_hop_only_when_collides": { + "value": true + }, + "retraction_hop": { + "value": 0.1 + }, + "support_pattern": { + "value": "'triangles'" + }, + "support_z_distance": { + "value": 0.3 + }, + "support_interface_enable": { + "value": true + }, + "support_roof_enable": { + "value": true + }, + "support_use_towers": { + "value": false + }, + "adhesion_type": { + "value": "'skirt'" + }, + "skirt_line_count": { "value": 3 - }, - "wall_thickness": { - "value": "1.2" }, - "bottom_layers": { - "value": "4" + "skirt_gap": { + "value": 5 }, - "bottom_thickness":{ - "value": "layer_height * bottom_layers" + "brim_width": { + "value": 5 }, - "top_layers": { - "value": "6" + "smooth_spiralized_contours": { + "value": false }, - "top_thickness":{ - "value": "layer_height * top_layers" - }, - "z_seam_type": { - "value": "'shortest'" - }, - "z_seam_corner": { - "value": "'z_seam_corner_inner'" + "roofing_monotonic": { + "value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/erzay3d.def.json b/resources/definitions/erzay3d.def.json index 2904b9ecfa..dc1ad9a509 100644 --- a/resources/definitions/erzay3d.def.json +++ b/resources/definitions/erzay3d.def.json @@ -62,8 +62,6 @@ "retraction_amount": { "default_value": 6.5 }, "speed_print": { "default_value": 40 }, - "speed_equalize_flow_enabled": { "default_value": true }, - "speed_equalize_flow_max": { "default_value": 100 }, "acceleration_print": { "default_value": 1000 }, diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index 7dbd775b49..f25aed5d5b 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -6,7 +6,7 @@ "type": "extruder", "author": "Ultimaker", "manufacturer": "Unknown", - "setting_version": 17, + "setting_version": 19, "visible": false, "position": "0" }, diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index a38cfc8852..b1cbb07904 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -4,9 +4,9 @@ "metadata": { "type": "machine", - "author": "Ultimaker", + "author": "Unknown", "manufacturer": "Unknown", - "setting_version": 17, + "setting_version": 19, "file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g", "visible": false, "has_materials": true, @@ -159,6 +159,16 @@ "settable_per_extruder": false, "settable_per_meshgroup": false }, + "machine_height": + { + "label": "Machine Height", + "description": "The height (Z-direction) of the printable area.", + "default_value": 100, + "type": "float", + "settable_per_mesh": false, + "settable_per_extruder": false, + "settable_per_meshgroup": false + }, "machine_shape": { "label": "Build Plate Shape", @@ -189,16 +199,6 @@ "settable_per_extruder": false, "settable_per_meshgroup": false }, - "machine_height": - { - "label": "Machine Height", - "description": "The height (Z-direction) of the printable area.", - "default_value": 100, - "type": "float", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, "machine_heated_bed": { "label": "Has Heated Build Plate", @@ -448,7 +448,7 @@ "machine_head_with_fans_polygon": { "label": "Machine Head & Fan Polygon", - "description": "A 2D silhouette of the print head (fan caps included).", + "description": "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates.", "type": "polygon", "default_value": [ @@ -571,7 +571,7 @@ }, "machine_max_feedrate_e": { - "label": "Maximum Feedrate", + "label": "Maximum Speed E", "description": "The maximum speed of the filament.", "unit": "mm/s", "type": "float", @@ -831,7 +831,7 @@ "description": "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed.", "unit": "mm", "minimum_value": "0.001", - "minimum_value_warning": "(0.1 + 0.4 * machine_nozzle_size) if outer_inset_first else 0.1 * machine_nozzle_size", + "minimum_value_warning": "(0.1 + 0.4 * machine_nozzle_size) if inset_direction == \"outside_in\" else 0.1 * machine_nozzle_size", "maximum_value_warning": "2 * machine_nozzle_size", "default_value": 0.4, "value": "wall_line_width", @@ -1056,6 +1056,7 @@ "minimum_value": "0", "minimum_value_warning": "line_width", "maximum_value_warning": "10 * line_width", + "maximum_value": "999999 * line_width", "type": "float", "limit_to_extruder": "wall_x_extruder_nr", "settable_per_mesh": true, @@ -1069,6 +1070,7 @@ "minimum_value": "0", "minimum_value_warning": "1", "maximum_value_warning": "10", + "maximum_value": "999999", "type": "int", "value": "1 if magic_spiralize else max(1, round((wall_thickness - wall_line_width_0) / wall_line_width_x) + 1) if wall_thickness != 0 else 0", "limit_to_extruder": "wall_x_extruder_nr", @@ -1076,6 +1078,99 @@ } } }, + "beading_strategy_type": + { + "label": "Variable Line Strategy", + "description": "Strategy to use to print the width of a part with a number of walls. This determines how many walls it will use for a certain total width, and how wide each of these lines are. \"Center Deviation\" will print all walls at the nominal line width except the central one(s), causing big variations in the center but very consistent outsides. \"Distributed\" distributes the width equally over all walls. \"Inward Distributed\" is a balance between the other two, distributing the changes in width over all walls but keeping the walls on the outside slightly more consistent.", + "type": "enum", + "options": + { + "center_deviation": "Center Deviation", + "distributed": "Distributed", + "inward_distributed": "Inward Distributed" + }, + "default_value": "inward_distributed", + "limit_to_extruder": "wall_0_extruder_nr" + }, + "wall_transition_threshold": { + "label": "Middle Line Threshold", + "description": "The smallest line width, as a factor of the normal line width, below which it will choose to use fewer, but wider lines to fill the available space the wall needs to occupy. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall.", + "type": "float", + "unit": "%", + "default_value": 90, + "minimum_value": "1", + "maximum_value": "99", + "children": + { + "wall_split_middle_threshold": { + "label": "Split Middle Line Threshold", + "description": "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall.", + "type": "float", + "unit": "%", + "default_value": 90, + "value": "wall_transition_threshold", + "minimum_value": "1", + "maximum_value": "99" + }, + "wall_add_middle_threshold": { + "label": "Add Middle Line Threshold", + "description": "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall.", + "type": "float", + "unit": "%", + "default_value": 80, + "value": "wall_transition_threshold * 8 / 9", + "minimum_value": "1", + "maximum_value": "99" + } + } + }, + "wall_transition_length": + { + "label": "Wall Transition Length", + "description": "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines.", + "type": "float", + "unit": "mm", + "default_value": 0.4, + "value": "line_width", + "minimum_value": "0.001", + "minimum_value_warning": "0.5 * line_width", + "maximum_value_warning": "2 * line_width", + "maximum_value": "min_bead_width * 3 * math.pi" + }, + "wall_distribution_count": + { + "label": "Wall Distribution Count", + "description": "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width.", + "type": "int", + "maximum_value": "999999", + "default_value": 1, + "minimum_value": "1", + "enabled": "beading_strategy_type == 'inward_distributed'" + }, + "wall_transition_angle": + { + "label": "Wall Transition Angle", + "description": "When transitioning between different numbers of walls as the part becomes thinner, two adjacent walls will join together at this angle. This can make the walls come together faster than what the Wall Transition Length indicates, filling the space better.", + "type": "float", + "unit": "°", + "default_value": 10, + "minimum_value": "1", + "minimum_value_warning": "5", + "maximum_value_warning": "50", + "maximum_value": "59" + }, + "wall_transition_filter_distance": + { + "label": "Wall Transition Distance Filter", + "description": "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance.", + "type": "float", + "unit": "mm", + "default_value": 1.4, + "value": "4 * math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", + "minimum_value": "wall_transition_length", + "minimum_value_warning": "math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", + "maximum_value_warning": "10 * math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x" + }, "wall_0_wipe_dist": { "label": "Outer Wall Wipe Distance", @@ -1096,7 +1191,7 @@ "unit": "mm", "type": "float", "default_value": 0.0, - "value": "(machine_nozzle_size - wall_line_width_0) / 2 if (wall_line_width_0 < machine_nozzle_size and not outer_inset_first) else 0", + "value": "(machine_nozzle_size - wall_line_width_0) / 2 if (wall_line_width_0 < machine_nozzle_size and inset_direction != \"outside_in\") else 0", "minimum_value_warning": "0", "maximum_value_warning": "machine_nozzle_size", "limit_to_extruder": "wall_0_extruder_nr", @@ -1110,13 +1205,17 @@ "default_value": false, "settable_per_mesh": true }, - "outer_inset_first": + "inset_direction": { - "label": "Outer Before Inner Walls", - "description": "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs.", - "type": "bool", - "default_value": false, - "enabled": "wall_0_extruder_nr == wall_x_extruder_nr", + "label": "Wall Ordering", + "description": "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed.", + "type": "enum", + "options": { + "inside_out": "Inside To Outside", + "outside_in": "Outside To Inside", + "center_last": "Center Last" + }, + "default_value": "center_last", "settable_per_mesh": true }, "alternate_extra_perimeter": @@ -1128,72 +1227,6 @@ "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, - "travel_compensate_overlapping_walls_enabled": - { - "label": "Compensate Wall Overlaps", - "description": "Compensate the flow for parts of a wall being printed where there is already a wall in place.", - "type": "bool", - "default_value": true, - "limit_to_extruder": "wall_x_extruder_nr", - "settable_per_mesh": true, - "children": - { - "travel_compensate_overlapping_walls_0_enabled": - { - "label": "Compensate Outer Wall Overlaps", - "description": "Compensate the flow for parts of an outer wall being printed where there is already a wall in place.", - "type": "bool", - "default_value": true, - "value": "travel_compensate_overlapping_walls_enabled", - "limit_to_extruder": "wall_0_extruder_nr", - "settable_per_mesh": true - }, - "travel_compensate_overlapping_walls_x_enabled": - { - "label": "Compensate Inner Wall Overlaps", - "description": "Compensate the flow for parts of an inner wall being printed where there is already a wall in place.", - "type": "bool", - "default_value": true, - "value": "travel_compensate_overlapping_walls_enabled", - "limit_to_extruder": "wall_x_extruder_nr", - "settable_per_mesh": true - } - } - }, - "wall_min_flow": - { - "label": "Minimum Wall Flow", - "description": "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls.", - "unit": "%", - "minimum_value": "0", - "maximum_value": "100", - "default_value": 0, - "type": "float", - "enabled": "travel_compensate_overlapping_walls_0_enabled or travel_compensate_overlapping_walls_x_enabled", - "settable_per_mesh": true - }, - "wall_min_flow_retract": - { - "label": "Prefer Retract", - "description": "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold.", - "type": "bool", - "default_value": false, - "enabled": "(travel_compensate_overlapping_walls_0_enabled or travel_compensate_overlapping_walls_x_enabled) and wall_min_flow > 0", - "settable_per_mesh": true - }, - "fill_perimeter_gaps": - { - "label": "Fill Gaps Between Walls", - "description": "Fills the gaps between walls where no walls fit.", - "type": "enum", - "options": { - "nowhere": "Nowhere", - "everywhere": "Everywhere" - }, - "default_value": "everywhere", - "limit_to_extruder": "wall_0_extruder_nr", - "settable_per_mesh": true - }, "filter_out_tiny_gaps": { "label": "Filter Out Tiny Gaps", @@ -1207,10 +1240,39 @@ "label": "Print Thin Walls", "description": "Print pieces of the model which are horizontally thinner than the nozzle size.", "type": "bool", - "default_value": false, + "default_value": true, "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, + "min_feature_size": + { + "label": "Minimum Feature Size", + "description": "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width.", + "unit": "mm", + "default_value": 0.1, + "value": "wall_line_width_0 / 4", + "minimum_value": "0", + "maximum_value": "wall_line_width_0", + "type": "float", + "limit_to_extruder": "wall_0_extruder_nr", + "enabled": "fill_outline_gaps", + "settable_per_mesh": true + }, + "min_bead_width": + { + "label": "Minimum Wall Line Width", + "description": "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself.", + "unit": "mm", + "value": "wall_line_width_0 * (100.0 + wall_split_middle_threshold)/200", + "default_value": 0.2, + "minimum_value": "0.001", + "minimum_value_warning": "min_feature_size", + "maximum_value_warning": "wall_line_width_0", + "type": "float", + "limit_to_extruder": "wall_0_extruder_nr", + "enabled": "fill_outline_gaps", + "settable_per_mesh": true + }, "xy_offset": { "label": "Horizontal Expansion", @@ -1372,6 +1434,7 @@ "minimum_value": "0", "maximum_value_warning": "top_layers - 1", "type": "int", + "maximum_value": "999999", "value": "0", "limit_to_extruder": "roofing_extruder_nr", "settable_per_mesh": true, @@ -1425,6 +1488,7 @@ "default_value": 8, "minimum_value": "0", "maximum_value_warning": "100", + "maximum_value": "999999", "type": "int", "minimum_value_warning": "2", "value": "0 if infill_sparse_density == 100 else math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))", @@ -1455,6 +1519,7 @@ "minimum_value": "0", "minimum_value_warning": "2", "default_value": 6, + "maximum_value": "999999", "type": "int", "value": "999999 if infill_sparse_density == 100 else math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))", "limit_to_extruder": "top_bottom_extruder_nr", @@ -1466,6 +1531,7 @@ "description": "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number.", "minimum_value": "0", "minimum_value_warning": "2", + "maximum_value": "999999", "default_value": 6, "type": "int", "value": "bottom_layers", @@ -1557,6 +1623,7 @@ "default_value": 1, "minimum_value": "0", "maximum_value_warning": "10", + "maximum_value": "999999", "type": "int", "enabled": "(top_layers > 0 or bottom_layers > 0) and (top_bottom_pattern != 'concentric' or top_bottom_pattern_0 != 'concentric' or (roofing_layer_count > 0 and roofing_pattern != 'concentric'))", "limit_to_extruder": "top_bottom_extruder_nr", @@ -1881,7 +1948,7 @@ "default_value": 2, "minimum_value": "0", "minimum_value_warning": "infill_line_width", - "value": "0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1))))", + "value": "0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else (1.6 if infill_pattern == 'lightning' else 1)))))", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true } @@ -1890,7 +1957,7 @@ "infill_pattern": { "label": "Infill Pattern", - "description": "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction.", + "description": "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object.", "type": "enum", "options": { @@ -1906,10 +1973,11 @@ "zigzag": "Zig Zag", "cross": "Cross", "cross_3d": "Cross 3D", - "gyroid": "Gyroid" + "gyroid": "Gyroid", + "lightning": "Lightning" }, "default_value": "grid", - "enabled": "infill_sparse_density > 0", + "enabled": "infill_line_distance > 0", "value": "'lines' if infill_sparse_density > 25 else 'grid'", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true @@ -1932,7 +2000,7 @@ "type": "bool", "default_value": true, "value": "(infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_multiplier % 2 == 0) and infill_wall_line_count > 0", - "enabled": "infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_pattern == 'concentric' or infill_multiplier % 2 == 0 or infill_wall_line_count > 1", + "enabled": "infill_pattern != 'lightning' and infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_pattern == 'concentric' or infill_multiplier % 2 == 0 or infill_wall_line_count > 1", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -1942,7 +2010,7 @@ "description": "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns).", "type": "[int]", "default_value": "[ ]", - "enabled": "infill_pattern != 'concentric' and infill_sparse_density > 0", + "enabled": "infill_pattern not in ('concentric', 'cross', 'cross_3d', 'gyroid', 'lightning') and infill_sparse_density > 0", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -1953,7 +2021,7 @@ "unit": "mm", "type": "float", "default_value": 0, - "enabled": "infill_pattern == 'grid' or infill_pattern == 'lines' or infill_pattern == 'triangles' or infill_pattern == 'cubic' or infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' or infill_pattern == 'zigzag'", + "enabled": "infill_pattern != 'lightning' and infill_pattern == 'grid' or infill_pattern == 'lines' or infill_pattern == 'triangles' or infill_pattern == 'cubic' or infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' or infill_pattern == 'zigzag'", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -1964,7 +2032,7 @@ "unit": "mm", "type": "float", "default_value": 0, - "enabled": "infill_pattern == 'grid' or infill_pattern == 'lines' or infill_pattern == 'triangles' or infill_pattern == 'cubic' or infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' or infill_pattern == 'zigzag'", + "enabled": "infill_pattern != 'lightning' and infill_pattern == 'grid' or infill_pattern == 'lines' or infill_pattern == 'triangles' or infill_pattern == 'cubic' or infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' or infill_pattern == 'zigzag'", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -1975,7 +2043,7 @@ "type": "bool", "default_value": false, "warning_value": "True if infill_pattern not in ('grid', 'triangles', 'trihexagon', 'cubic', 'cubicsubdiv', 'tetrahedral', 'quarter_cubic') else None", - "enabled": "not ((infill_pattern == 'cross' and connect_infill_polygons) or infill_pattern == 'concentric')", + "enabled": "not (infill_pattern == 'lightning' or (infill_pattern == 'cross' and connect_infill_polygons) or infill_pattern == 'concentric')", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -1985,6 +2053,7 @@ "description": "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage.", "default_value": 1, "type": "int", + "maximum_value": "999999", "minimum_value": "1", "maximum_value_warning": "infill_line_distance / infill_line_width", "enabled": "infill_sparse_density > 0 and infill_pattern != 'zigzag' and (gradual_infill_steps == 0 or not zig_zaggify_infill)", @@ -1998,6 +2067,7 @@ "default_value": 0, "type": "int", "minimum_value": "0", + "maximum_value": "999999", "enabled": "infill_sparse_density > 0", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true @@ -2082,9 +2152,9 @@ "default_value": 0, "type": "int", "minimum_value": "0", - "maximum_value_warning": "1 if (infill_pattern == 'cross' or infill_pattern == 'cross_3d' or support_pattern == 'concentric') else 5", + "maximum_value_warning": "1 if (infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_pattern == 'concentric') else 5", "maximum_value": "999999 if infill_line_distance == 0 else (20 - math.log(infill_line_distance) / math.log(2))", - "enabled": "infill_sparse_density > 0 and infill_pattern != 'cubicsubdiv'", + "enabled": "infill_sparse_density > 0 and infill_pattern not in ['cubicsubdiv', 'cross', 'cross_3d', 'lightning']", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -2097,7 +2167,7 @@ "default_value": 1.5, "minimum_value": "0.0001", "minimum_value_warning": "3 * resolveOrValue('layer_height')", - "enabled": "infill_sparse_density > 0 and gradual_infill_steps > 0 and infill_pattern != 'cubicsubdiv'", + "enabled": "infill_sparse_density > 0 and gradual_infill_steps > 0 and infill_pattern not in ['cubicsubdiv', 'cross', 'cross_3d', 'lightning']", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -2127,7 +2197,7 @@ "description": "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength.", "type": "bool", "default_value": false, - "enabled": "infill_sparse_density > 0", + "enabled": "infill_pattern != 'lightning' and infill_sparse_density > 0", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -2141,7 +2211,7 @@ "minimum_value_warning": "2", "maximum_value": "90", "default_value": 40, - "enabled": "infill_sparse_density > 0 and infill_support_enabled", + "enabled": "infill_pattern != 'lightning' and infill_sparse_density > 0 and infill_support_enabled", "limit_to_extruder": "infill_extruder_nr", "settable_per_mesh": true }, @@ -2169,12 +2239,79 @@ "minimum_value": "0", "maximum_value_warning": "10", "type": "int", + "maximum_value": "999999", "value": "math.ceil(round(skin_edge_support_thickness / resolveOrValue('infill_sparse_thickness'), 4))", "limit_to_extruder": "infill_extruder_nr", "enabled": "infill_sparse_density > 0", "settable_per_mesh": true } } + }, + "lightning_infill_support_angle": + { + "label": "Lightning Infill Support Angle", + "description": "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer.", + "unit": "°", + "type": "float", + "minimum_value": "0", + "maximum_value": "90", + "maximum_value_warning": "75", + "default_value": 40, + "limit_to_extruder": "infill_extruder_nr", + "enabled": "infill_pattern == 'lightning'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "children": + { + "lightning_infill_overhang_angle": + { + "label": "Lightning Infill Overhang Angle", + "description": "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness.", + "unit": "°", + "type": "float", + "minimum_value": "0", + "maximum_value": "90", + "maximum_value_warning": "75", + "default_value": 40, + "limit_to_extruder": "infill_extruder_nr", + "enabled": "infill_pattern == 'lightning'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "value": "lightning_infill_support_angle" + }, + "lightning_infill_prune_angle": + { + "label": "Lightning Infill Prune Angle", + "description": "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines.", + "unit": "°", + "type": "float", + "minimum_value": "0", + "maximum_value": "90", + "maximum_value_warning": "75", + "default_value": 40, + "limit_to_extruder": "infill_extruder_nr", + "enabled": "infill_pattern == 'lightning'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "value": "lightning_infill_support_angle" + }, + "lightning_infill_straightening_angle": + { + "label": "Lightning Infill Straightening Angle", + "description": "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line.", + "unit": "°", + "type": "float", + "minimum_value": "0", + "maximum_value": "90", + "maximum_value_warning": "75", + "default_value": 40, + "limit_to_extruder": "infill_extruder_nr", + "enabled": "infill_pattern == 'lightning'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "value": "lightning_infill_support_angle" + } + } } } }, @@ -2385,7 +2522,42 @@ "maximum_value_warning": "120", "settable_per_mesh": false, "settable_per_extruder": false, - "resolve": "sum(extruderValues(\"material_shrinkage_percentage\")) / len(extruderValues(\"material_shrinkage_percentage\"))" + "resolve": "sum(extruderValues(\"material_shrinkage_percentage\")) / len(extruderValues(\"material_shrinkage_percentage\"))", + "children": + { + "material_shrinkage_percentage_xy": + { + "label": "Horizontal Scaling Factor Shrinkage Compensation", + "description": "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).", + "unit": "%", + "type": "float", + "default_value": 100.0, + "enabled": false, + "minimum_value": "0.001", + "minimum_value_warning": "100", + "maximum_value_warning": "120", + "settable_per_mesh": false, + "settable_per_extruder": false, + "resolve": "sum(extruderValues(\"material_shrinkage_percentage_xy\")) / len(extruderValues(\"material_shrinkage_percentage_xy\"))", + "value": "material_shrinkage_percentage" + }, + "material_shrinkage_percentage_z": + { + "label": "Vertical Scaling Factor Shrinkage Compensation", + "description": "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically).", + "unit": "%", + "type": "float", + "default_value": 100.0, + "enabled": false, + "minimum_value": "0.001", + "minimum_value_warning": "100", + "maximum_value_warning": "120", + "settable_per_mesh": false, + "settable_per_extruder": false, + "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))", + "value": "material_shrinkage_percentage" + } + } }, "material_crystallinity": { @@ -2559,7 +2731,7 @@ "unit": "%", "default_value": 100, "type": "float", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "machine_gcode_flavor != \"UltiGCode\"", @@ -2574,7 +2746,7 @@ "type": "float", "default_value": 100, "value": "material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "limit_to_extruder": "wall_0_extruder_nr if wall_x_extruder_nr == wall_0_extruder_nr else -1", @@ -2589,7 +2761,7 @@ "type": "float", "default_value": 100, "value": "wall_material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "limit_to_extruder": "wall_0_extruder_nr", @@ -2603,7 +2775,7 @@ "type": "float", "default_value": 100, "value": "wall_material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "limit_to_extruder": "wall_x_extruder_nr", @@ -2619,7 +2791,7 @@ "type": "float", "default_value": 100, "value": "material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "top_layers > 0 or bottom_layers > 0", @@ -2634,7 +2806,7 @@ "type": "float", "default_value": 100, "value": "skin_material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "limit_to_extruder": "roofing_extruder_nr", @@ -2649,7 +2821,7 @@ "type": "float", "default_value": 100, "value": "material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "infill_sparse_density > 0", @@ -2664,7 +2836,7 @@ "type": "float", "default_value": 100, "value": "material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('draft_shield_enabled') or resolveOrValue('ooze_shield_enabled')", @@ -2679,7 +2851,7 @@ "type": "float", "default_value": 100, "value": "material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "support_enable or support_meshes_present", @@ -2695,7 +2867,7 @@ "type": "float", "default_value": 100, "value": "material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "(support_enable or support_meshes_present) and support_interface_enable", @@ -2712,7 +2884,7 @@ "type": "float", "default_value": 100, "value": "extruderValue(support_roof_extruder_nr, 'support_interface_material_flow')", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "(support_enable or support_meshes_present) and support_roof_enable", @@ -2728,7 +2900,7 @@ "type": "float", "default_value": 100, "value": "extruderValue(support_bottom_extruder_nr, 'support_interface_material_flow')", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "(support_enable or support_meshes_present) and support_bottom_enable", @@ -2746,7 +2918,7 @@ "type": "float", "default_value": 100, "value": "material_flow", - "minimum_value": "5", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "settable_per_mesh": false, @@ -3070,7 +3242,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('draft_shield_enabled') or resolveOrValue('ooze_shield_enabled')", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "skirt_brim_extruder_nr" }, "speed_z_hop": { @@ -3092,30 +3264,20 @@ "default_value": 2, "resolve": "round(sum(extruderValues('speed_slowdown_layers')) / len(extruderValues('speed_slowdown_layers')))", "minimum_value": "0", + "maximum_value": "999999", "maximum_value_warning": "3.2 / resolveOrValue('layer_height')", "settable_per_mesh": false, "settable_per_extruder": false }, - "speed_equalize_flow_enabled": + "speed_equalize_flow_width_factor": { - "label": "Equalize Filament Flow", - "description": "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines.", - "type": "bool", - "default_value": false, - "settable_per_mesh": false, - "settable_per_extruder": true - }, - "speed_equalize_flow_max": - { - "label": "Maximum Speed for Flow Equalization", - "description": "Maximum print speed when adjusting the print speed in order to equalize flow.", + "label": "Flow Equalization Ratio", + "description": "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines.", "type": "float", - "unit": "mm/s", - "enabled": "speed_equalize_flow_enabled", - "default_value": 150, - "minimum_value": "0.1", - "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", - "maximum_value_warning": "150", + "unit": "%", + "default_value": 100.0, + "minimum_value": "0.0", + "maximum_value_warning": "200.0", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -3410,7 +3572,7 @@ "maximum_value_warning": "10000", "enabled": "resolveOrValue('acceleration_enabled') and (resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('draft_shield_enabled') or resolveOrValue('ooze_shield_enabled'))", "settable_per_mesh": false, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "skirt_brim_extruder_nr" }, "jerk_enabled": { @@ -3685,7 +3847,7 @@ "value": "jerk_layer_0", "enabled": "resolveOrValue('jerk_enabled') and (resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('draft_shield_enabled') or resolveOrValue('ooze_shield_enabled'))", "settable_per_mesh": false, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "skirt_brim_extruder_nr" } } }, @@ -3812,6 +3974,7 @@ "default_value": 90, "minimum_value": "0", "maximum_value_warning": "100", + "maximum_value": 999999999, "type": "int", "enabled": "retraction_enable", "settable_per_mesh": false, @@ -3850,11 +4013,13 @@ { "off": "Off", "all": "All", + "no_outer_surfaces": "Not on Outer Surface", "noskin": "Not in Skin", "infill": "Within Infill" }, "default_value": "all", - "resolve": "'noskin' if 'noskin' in extruderValues('retraction_combing') else ('infill' if 'infill' in extruderValues('retraction_combing') else ('all' if 'all' in extruderValues('retraction_combing') else 'off'))", + "value": "'no_outer_surfaces' if (any(extruderValues('skin_monotonic')) or any(extruderValues('ironing_enabled')) or (any(extruderValues('roofing_monotonic')) and any(extruderValues('roofing_layer_count')))) else 'all'", + "resolve": "'noskin' if 'noskin' in extruderValues('retraction_combing') else ('infill' if 'infill' in extruderValues('retraction_combing') else ('all' if 'all' in extruderValues('retraction_combing') else ('no_outer_surfaces' if 'no_outer_surfaces' in extruderValues('retraction_combing') else 'off')))", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -4377,6 +4542,7 @@ "minimum_value": "0", "minimum_value_warning": "1 if support_pattern == 'concentric' else 0", "maximum_value_warning": "0 if (support_skip_some_zags and support_pattern == 'zigzag') else 3", + "maximum_value": "999999", "type": "int", "value": "1 if support_enable and support_structure == 'tree' else (1 if (support_pattern == 'grid' or support_pattern == 'triangles' or support_pattern == 'concentric') else 0)", "enabled": "support_enable or support_meshes_present", @@ -4487,6 +4653,7 @@ "default_value": 8.0, "minimum_value": "0.0", "maximum_value_warning": "50.0", + "maximum_value": "0.5 * min(machine_width, machine_depth)", "enabled": "(support_enable or support_meshes_present) and support_brim_enable", "settable_per_mesh": false, "settable_per_extruder": true, @@ -4501,6 +4668,7 @@ "default_value": 20, "minimum_value": "0", "maximum_value_warning": "50 / skirt_brim_line_width", + "maximum_value": "0.5 * min(machine_width, machine_depth) / skirt_brim_line_width", "value": "math.ceil(support_brim_width / (skirt_brim_line_width * initial_layer_line_width_factor / 100.0))", "enabled": "(support_enable or support_meshes_present) and support_brim_enable", "settable_per_mesh": false, @@ -4533,7 +4701,7 @@ "default_value": 0.1, "type": "float", "enabled": "support_enable or support_meshes_present", - "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance')", + "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (layer_height if support_structure == 'tree' else 0)", "limit_to_extruder": "support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr", "settable_per_mesh": true }, @@ -5254,7 +5422,54 @@ "value": "int(defaultExtruderPosition())", "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') != 'none' or resolveOrValue('prime_tower_brim_enable'))", "settable_per_mesh": false, - "settable_per_extruder": false + "settable_per_extruder": false, + "children": + { + "skirt_brim_extruder_nr": + { + "label": "Skirt/Brim Extruder", + "description": "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion.", + "type": "extruder", + "default_value": "0", + "value": "adhesion_extruder_nr", + "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable'))", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_base_extruder_nr": + { + "label": "Raft Base Extruder", + "description": "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion.", + "type": "extruder", + "default_value": "0", + "value": "adhesion_extruder_nr", + "enabled": "extruders_enabled_count > 1 and resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_interface_extruder_nr": + { + "label": "Raft Middle Extruder", + "description": "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion.", + "type": "extruder", + "default_value": "0", + "value": "adhesion_extruder_nr", + "enabled": "extruders_enabled_count > 1 and resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_surface_extruder_nr": + { + "label": "Raft Top Extruder", + "description": "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion.", + "type": "extruder", + "default_value": "0", + "value": "adhesion_extruder_nr", + "enabled": "extruders_enabled_count > 1 and resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + } + } }, "skirt_line_count": { @@ -5264,10 +5479,11 @@ "default_value": 1, "minimum_value": "0", "maximum_value_warning": "10", + "maximum_value": "0.5 * min(machine_width, machine_depth) / skirt_brim_line_width", "enabled": "resolveOrValue('adhesion_type') == 'skirt'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "skirt_brim_extruder_nr" }, "skirt_gap": { @@ -5281,7 +5497,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'skirt'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "skirt_brim_extruder_nr" }, "skirt_brim_minimal_length": { @@ -5310,7 +5526,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable')", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr", + "limit_to_extruder": "skirt_brim_extruder_nr", "children": { "brim_line_count": @@ -5326,7 +5542,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable')", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "skirt_brim_extruder_nr" } } }, @@ -5342,7 +5558,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'brim'", "settable_per_mesh": true, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "skirt_brim_extruder_nr" }, "brim_replaces_support": { @@ -5364,7 +5580,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'brim'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "skirt_brim_extruder_nr" }, "raft_margin": { @@ -5389,7 +5605,7 @@ "default_value": 5, "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_remove_inside_corners", "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true @@ -5406,7 +5622,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "layer_0_z_overlap": { @@ -5421,7 +5637,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_surface_layers": { @@ -5434,7 +5650,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_surface_thickness": { @@ -5447,10 +5663,10 @@ "minimum_value": "0.001", "minimum_value_warning": "0.04", "maximum_value_warning": "0.75 * machine_nozzle_size", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_surface_line_width": { @@ -5463,10 +5679,10 @@ "minimum_value": "0.001", "minimum_value_warning": "machine_nozzle_size * 0.1", "maximum_value_warning": "machine_nozzle_size * 2", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_surface_line_spacing": { @@ -5478,11 +5694,24 @@ "minimum_value": "0", "minimum_value_warning": "raft_surface_line_width", "maximum_value_warning": "raft_surface_line_width * 3", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "value": "raft_surface_line_width", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" + }, + "raft_interface_layers": + { + "label": "Raft Middle Layers", + "description": "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft.", + "type": "int", + "default_value": 1, + "minimum_value": "0", + "maximum_value_warning": "10", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "limit_to_extruder": "raft_interface_extruder_nr" }, "raft_interface_thickness": { @@ -5495,10 +5724,10 @@ "minimum_value": "0.001", "minimum_value_warning": "0.04", "maximum_value_warning": "0.75 * machine_nozzle_size", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_interface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_interface_extruder_nr" }, "raft_interface_line_width": { @@ -5511,10 +5740,10 @@ "minimum_value": "0.001", "minimum_value_warning": "machine_nozzle_size * 0.5", "maximum_value_warning": "machine_nozzle_size * 3", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_interface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_interface_extruder_nr" }, "raft_interface_line_spacing": { @@ -5527,10 +5756,10 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "maximum_value_warning": "15.0", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_interface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_interface_extruder_nr" }, "raft_base_thickness": { @@ -5546,7 +5775,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_base_line_width": { @@ -5562,7 +5791,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_base_line_spacing": { @@ -5578,7 +5807,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_speed": { @@ -5607,11 +5836,11 @@ "minimum_value": "0.1", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", "maximum_value_warning": "100", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "value": "raft_speed", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_interface_speed": { @@ -5624,10 +5853,10 @@ "minimum_value": "0.1", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", "maximum_value_warning": "150", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_interface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_interface_extruder_nr" }, "raft_base_speed": { @@ -5643,7 +5872,7 @@ "value": "0.75 * raft_speed", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" } } }, @@ -5674,9 +5903,9 @@ "minimum_value": "0.1", "minimum_value_warning": "100", "maximum_value_warning": "10000", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled') and raft_surface_layers > 0", "settable_per_mesh": false, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_interface_acceleration": { @@ -5689,9 +5918,9 @@ "minimum_value": "0.1", "minimum_value_warning": "100", "maximum_value_warning": "10000", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled') and raft_interface_layers > 0", "settable_per_mesh": false, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_interface_extruder_nr" }, "raft_base_acceleration": { @@ -5706,7 +5935,7 @@ "maximum_value_warning": "10000", "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')", "settable_per_mesh": false, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" } } }, @@ -5737,9 +5966,9 @@ "minimum_value": "0", "minimum_value_warning": "5", "maximum_value_warning": "100", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled') and raft_surface_layers > 0", "settable_per_mesh": false, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_interface_jerk": { @@ -5752,9 +5981,9 @@ "minimum_value": "0", "minimum_value_warning": "5", "maximum_value_warning": "50", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled') and raft_interface_layers > 0", "settable_per_mesh": false, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_interface_extruder_nr" }, "raft_base_jerk": { @@ -5769,7 +5998,7 @@ "maximum_value_warning": "50", "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')", "settable_per_mesh": false, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" } } }, @@ -5798,10 +6027,10 @@ "maximum_value": "100", "default_value": 0, "value": "raft_fan_speed", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_interface_fan_speed": { @@ -5813,10 +6042,10 @@ "maximum_value": "100", "default_value": 0, "value": "raft_fan_speed", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_interface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_interface_extruder_nr" }, "raft_base_fan_speed": { @@ -5831,7 +6060,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "adhesion_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" } } } @@ -5893,7 +6122,7 @@ "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable')", "default_value": 200, - "value": "machine_width - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_x'))) - 1", + "value": "machine_width - max(extruderValue(skirt_brim_extruder_nr, 'brim_width') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_x'))) - 1", "maximum_value": "machine_width / 2 if machine_center_is_zero else machine_width", "minimum_value": "resolveOrValue('prime_tower_size') - machine_width / 2 if machine_center_is_zero else resolveOrValue('prime_tower_size')", "settable_per_mesh": false, @@ -5907,7 +6136,7 @@ "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable')", "default_value": 200, - "value": "machine_depth - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_y'))) - 3", + "value": "machine_depth - prime_tower_size - max(extruderValue(skirt_brim_extruder_nr, 'brim_width') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_y'))) - 3", "maximum_value": "machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')", "minimum_value": "machine_depth / -2 if machine_center_is_zero else 0", "settable_per_mesh": false, @@ -6175,6 +6404,16 @@ "minimum_value_warning": "0.01", "maximum_value_warning": "0.3", "settable_per_mesh": true + }, + "meshfix_maximum_extrusion_area_deviation": + { + "label": "Maximum Extrusion Area Deviation", + "description": "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller.", + "type": "float", + "unit": "μm²", + "default_value": 50000, + "minimum_value": "0", + "settable_per_mesh": true } } }, @@ -6249,7 +6488,7 @@ "mold_width": { "label": "Minimal Mold Width", - "description": "The minimal distance between the ouside of the mold and the outside of the model.", + "description": "The minimal distance between the outside of the mold and the outside of the model.", "unit": "mm", "type": "float", "minimum_value_warning": "wall_line_width_0 * 2", @@ -7355,6 +7594,7 @@ "minimum_value": "5", "maximum_value": "100", "minimum_value_warning": "20", + "maximum_value_warning": "100", "enabled": "bridge_settings_enabled", "settable_per_mesh": true }, @@ -7400,8 +7640,7 @@ "unit": "%", "default_value": 100, "type": "float", - "minimum_value": "5", - "maximum_value": "500", + "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "bridge_settings_enabled and bridge_enable_more_layers", @@ -7414,9 +7653,9 @@ "unit": "%", "default_value": 75, "type": "float", - "minimum_value": "5", - "maximum_value": "100", + "minimum_value": "0", "minimum_value_warning": "20", + "maximum_value_warning": "100", "enabled": "bridge_settings_enabled and bridge_enable_more_layers", "settable_per_mesh": true }, @@ -7453,8 +7692,7 @@ "unit": "%", "default_value": 110, "type": "float", - "minimum_value": "5", - "maximum_value": "500", + "minimum_value": "0.001", "minimum_value_warning": "50", "maximum_value_warning": "150", "enabled": "bridge_settings_enabled and bridge_enable_more_layers", @@ -7467,9 +7705,9 @@ "unit": "%", "default_value": 80, "type": "float", - "minimum_value": "5", - "maximum_value": "100", + "minimum_value": "0", "minimum_value_warning": "20", + "maximum_value_warning": "100", "enabled": "bridge_settings_enabled and bridge_enable_more_layers", "settable_per_mesh": true }, @@ -7737,6 +7975,36 @@ "minimum_value_warning": "25", "maximum_value_warning": "100", "settable_per_mesh": true + }, + "material_alternate_walls": + { + "label": "Alternate Wall Directions", + "description": "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing.", + "type": "bool", + "default_value": false, + "enabled": false, + "settable_per_mesh": true, + "settable_per_extruder": true + }, + "raft_remove_inside_corners": + { + "label": "Remove Raft Inside Corners", + "description": "Remove inside corners from the raft, causing the raft to become convex.", + "type": "bool", + "default_value": false, + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_base_wall_count": + { + "label": "Raft Base Wall Count", + "description": "The number of contours to print around the linear pattern in the base layer of the raft.", + "type": "int", + "default_value": 1, + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false } } }, diff --git a/resources/definitions/flsun_sr.def.json b/resources/definitions/flsun_sr.def.json index 9f68c129bd..643e8f64de 100644 --- a/resources/definitions/flsun_sr.def.json +++ b/resources/definitions/flsun_sr.def.json @@ -1,16 +1,17 @@ { "version": 2, - "name": "FlSun SuperRacer", + "name": "Flsun Super Racer", "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Thushan Fernando", + "author": "Thushan Fernando, Guislain Cyril", "manufacturer": "Flsun", - "platform": "flsun_sr.3mf", + "platform": "flsun_sr.stl", + "platform_offset": [0,-81,-43.5], "file_formats": "text/x-gcode", "has_materials": true, - "has_machine_quality": false, - "preferred_quality_type": "fast", + "has_machine_quality": true, + "preferred_quality_type": "normal", "machine_extruder_trains": { "0": "flsun_sr_extruder_0" } @@ -26,13 +27,13 @@ "default_value": true }, "machine_width": { - "default_value": 260 + "default_value": 264 }, "machine_depth": { - "default_value": 260 + "default_value": 264 }, "machine_height": { - "default_value": 330 + "default_value": 320 }, "machine_center_is_zero": { "default_value": true @@ -64,13 +65,13 @@ "default_value": 15 }, "machine_start_gcode": { - "default_value": "G21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature}\nM104 S{material_print_temperature} T0\nM190 S{material_bed_temperature}\nM109 S{material_print_temperature} T0\nG28\nG92 E0\n" + "default_value": "G21 ; millimeter units\nG90 ; absolute coordinates\nM82 ; E absolute\nM140 S{material_bed_temperature}\nM104 S{material_print_temperature}\nM190 S{material_bed_temperature}\nM109 S{material_print_temperature}\nG28 ; home axis\nM420 S1 ; enable mesh leveling\n; Lower nozzle and move to start position\nG1 Z150\nG1 X-130 Y0 Z0.4 F3000\n; Extrude about 40 mm by printing a 90 degree arc\nG3 X0 Y-130 I130 Z0.3 E40 F2700\n; Retract and move nozzle up\nG92 E0\nG1 E-1.5 F1800\nG0 Z0.5\nG1 E0 F300\n" }, "machine_end_gcode": { - "default_value": "M107 T0\nM104 S0\nM104 S0 T1\nM140 S0\nG92 E0\nG91\nG1 E-1 F300 \nG1 Z+0.5 E-5 F6000\nG28 X0 Y0\nG90 ;absolute positioning\n" + "default_value": "G91 ; relative coordinates\nG1 E-1 F300 ; retract filament a bit before lifting\nG1 Z+5 E-5 F6000 ; raise platform from current position\nG28 X0 Y0 ; home axis\nG90 ; absolute coordinates\nG92 E0 ; reset extruder\nM104 S0 ; turn off hotend\nM140 S0 ; turn off heat bed\nM107 ; turn off fans\nM84 ; disable motors\n" }, "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" + "default_value": "Marlin" } } -} +} \ No newline at end of file diff --git a/resources/definitions/flyingbear_base.def.json b/resources/definitions/flyingbear_base.def.json index a00a97deb6..b0c839ea89 100644 --- a/resources/definitions/flyingbear_base.def.json +++ b/resources/definitions/flyingbear_base.def.json @@ -175,8 +175,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3 if layer_height > 0.15 else 0.8" }, "optimize_wall_printing_order": { "value": true }, - "travel_compensate_overlapping_walls_0_enabled": { "value": false }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "filter_out_tiny_gaps": { "value": false }, "fill_outline_gaps": { "value": false }, "z_seam_type": { "value": "'sharpest_corner'" }, diff --git a/resources/definitions/fusedform_base.def.json b/resources/definitions/fusedform_base.def.json index 24b841f704..1777b93913 100644 --- a/resources/definitions/fusedform_base.def.json +++ b/resources/definitions/fusedform_base.def.json @@ -48,7 +48,6 @@ "speed_topbottom": {"value": 40 }, "speed_wall": { "value": 35 }, "speed_wall_x": { "value": 40 }, - "speed_equalize_flow_max": { "value": 70 }, "retraction_enable": {"default_value":true}, "retraction_amount": { "default_value": 4 }, diff --git a/resources/definitions/fusedform_doppia_base.def.json b/resources/definitions/fusedform_doppia_base.def.json index ddee568e28..add20dfc77 100644 --- a/resources/definitions/fusedform_doppia_base.def.json +++ b/resources/definitions/fusedform_doppia_base.def.json @@ -48,7 +48,6 @@ "speed_topbottom": {"value": 40 }, "speed_wall": { "value": 35 }, "speed_wall_x": { "value": 40 }, - "speed_equalize_flow_max": { "value": 70 }, "retraction_enable": {"default_value":true}, "retraction_amount": { "default_value": 4 }, diff --git a/resources/definitions/goofoo_base.def.json b/resources/definitions/goofoo_base.def.json index 6d840438c1..67a5a4f4cc 100644 --- a/resources/definitions/goofoo_base.def.json +++ b/resources/definitions/goofoo_base.def.json @@ -26,7 +26,7 @@ }, "overrides": { - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract the filament\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\n\nG28 X0 Y0 ;Home X and Y\n\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract the filament\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X0 Y0 ;Home X and Y\n\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" }, "machine_max_feedrate_x": { "value": 500 }, "machine_max_feedrate_y": { "value": 500 }, @@ -84,7 +84,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, "z_seam_type": { "value": "'back'" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, @@ -97,7 +96,6 @@ "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/goofoo_cube.def.json b/resources/definitions/goofoo_cube.def.json new file mode 100644 index 0000000000..55a606ff11 --- /dev/null +++ b/resources/definitions/goofoo_cube.def.json @@ -0,0 +1,29 @@ +{ + "name": "Goofoo Cube", + "version": 2, + "inherits": "goofoo_small", + "overrides": { + + "machine_name": { "default_value": "Goofoo Cube" }, + "machine_width": { "default_value": 80 }, + "machine_depth": { "default_value": 80 }, + "machine_height": { "default_value": 80 }, + "machine_heated_bed": { "default_value": false }, + "raft_margin": { "default_value": 5 }, + "layer_height":{"default_value": 0.4}, + "layer_height_0": {"default_value": 0.5}, + "speed_print": {"value": 10}, + "speed_travel": {"value": 10}, + "speed_layer_0":{"value": 10}, + "speed_print_layer_0":{"value": 10}, + "speed_travel_layer_0":{"value": 10}, + + "retraction_speed": {"default_value": 60}, + "retraction_prime_speed":{"value": 80}, + "adhesion_type": {"default_value": "skirt"} + }, + "metadata": { + "author": "goofoo", + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/hardprint_hozo.def.json b/resources/definitions/hardprint_hozo.def.json new file mode 100644 index 0000000000..41d290ae82 --- /dev/null +++ b/resources/definitions/hardprint_hozo.def.json @@ -0,0 +1,36 @@ +{ + "version": 2, + "name": "HardPrint Hozo, Hozo", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "HardPrint", + "manufacturer": "HardPrint", + "file_formats": "text/x-gcode", + "platform": "hardprint_hozo_platform.stl", + "machine_extruder_trains": + { + "0": "hardprint_hozo_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "HardPrint Hozo, Hozo" }, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 180 }, + "machine_height": { "default_value": 180 }, + "machine_depth": { "default_value": 180 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { "default_value": [[0,0],[0,0],[0,0],[0,0]] }, + "gantry_height": { "value": 180 }, + "retraction_amount": { "default_value": 5.5 }, + "retraction_speed": { "default_value": 60 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "M221 S100 ; reset flow\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S170 ; set extruder temp for bed leveling\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM109 R170 ; wait for extruder temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nG28 ; home all\nG29 ; mesh bed leveling\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nG92 E0.0\nG1 Y-2 X179 F2400\nG1 Z3 F720\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG92 E0.0\nG1 Y0 F1000\nG1 Z0.2 F720\nG1 Y160 E8 F900\nG1 Y20 E18 F900\nG92 E0.0" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X178 Y180 F4200 ; park print head\nM84 ; disable motors" + } + } +} diff --git a/resources/definitions/hardprint_hozo_ix.def.json b/resources/definitions/hardprint_hozo_ix.def.json new file mode 100644 index 0000000000..c9ee14bec5 --- /dev/null +++ b/resources/definitions/hardprint_hozo_ix.def.json @@ -0,0 +1,36 @@ +{ + "version": 2, + "name": "HardPrint Hozo iX", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "HardPrint", + "manufacturer": "HardPrint", + "file_formats": "text/x-gcode", + "platform": "hardprint_hozo_ix_platform.stl", + "machine_extruder_trains": + { + "0": "hardprint_hozo_ix_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "HardPrint Hozo iX" }, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 180 }, + "machine_height": { "default_value": 180 }, + "machine_depth": { "default_value": 180 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { "default_value": [[0,0],[0,0],[0,0],[0,0]] }, + "gantry_height": { "value": 180 }, + "retraction_amount": { "default_value": 5 }, + "retraction_speed": { "default_value": 50 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "M221 S100 ; reset flow\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nG28 ; home all\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nG92 E0.0\nG1 Y-2 X0 F2400\nG1 Z3 F720\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG92 E0.0\nG1 X32 F1000\nG1 Z0.2 F720\nG1 X108 E8 F900\nG1 X148 E18 F900\nG92 E0.0" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X178 Y180 F4200 ; park print head\nM18 ; disable motors" + } + } +} diff --git a/resources/definitions/hellbot_hidra.def.json b/resources/definitions/hellbot_hidra.def.json index 87695dc9d0..90a196e1a9 100644 --- a/resources/definitions/hellbot_hidra.def.json +++ b/resources/definitions/hellbot_hidra.def.json @@ -7,14 +7,14 @@ "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", - "platform": "hellbot_hidra.obj", - "platform_offset": [0, 0, 5], + "platform": "hellbot_hidra.obj", + "platform_offset": [0, 0, 5], "platform_texture": "hellbot_hidra.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_hidra_extruder_0", - "1": "hellbot_hidra_extruder_1" + "1": "hellbot_hidra_extruder_1" } }, @@ -24,19 +24,19 @@ "machine_width": { "default_value": 220 }, - "machine_depth": { + "machine_depth": { "default_value": 220 }, "machine_height": { "default_value": 250 }, - "machine_heated_bed": { - "default_value": true - }, + "machine_heated_bed": { + "default_value": true + }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": + "machine_head_with_fans_polygon": { "default_value": [ [ -75, 35 ], @@ -48,11 +48,11 @@ "machine_extruder_count": { "default_value": 2 }, - "machine_start_gcode": { - "default_value": "G21; Unidades en Milimetro\nG90; Posicionamiento Absoluto\nM82; E Absoluto\nM107; Apagar Venitilador de capas\nG28; Llevar ejes a origen\nG1 Z15.0 F9000; Levantar Eje Z 15mm" + "machine_start_gcode": { + "default_value": "G21;\nG90;\nM82;\nM107;\nG28;\nG1 Z15.0 F9000;" }, "machine_end_gcode": { - "default_value": "M104 T0 S0; Apagar Extrusor E0\nM104 T1 S0; Apagar Extrusor E1\nM140 S0; Apagar Cama Caliente\nG92 E1; Posicionar Extrusor en 1mm\nG1 E-1 F300; Retraer Extrusor 1mm\nG28 X0 Y0; Llevar al origen ejes X e Y\nM84; Desactivar Motores " + "default_value": "M104 T0 S0;\nM104 T1 S0;\nM140 S0;\nG92 E1;\nG1 E-1 F300;\nG28 X0 Y0;\nM84;" } } diff --git a/resources/definitions/hellbot_hidra_plus.def.json b/resources/definitions/hellbot_hidra_plus.def.json index 9ff7a40ecd..f3c1013915 100644 --- a/resources/definitions/hellbot_hidra_plus.def.json +++ b/resources/definitions/hellbot_hidra_plus.def.json @@ -7,14 +7,14 @@ "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", - "platform": "hellbot_hidra_plus.obj", - "platform_offset": [0, 0, 5], + "platform": "hellbot_hidra_plus.obj", + "platform_offset": [0, 0, 5], "platform_texture": "hellbot_hidra_plus.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_hidra_plus_extruder_0", - "1": "hellbot_hidra_plus_extruder_1" + "1": "hellbot_hidra_plus_extruder_1" } }, @@ -22,21 +22,21 @@ "overrides": { "machine_name": { "default_value": "Hellbot Hidra Plus" }, "machine_width": { - "default_value": 305 + "default_value": 300 }, "machine_depth": { - "default_value": 305 + "default_value": 300 }, - "machine_height": { + "machine_height": { "default_value": 350 }, - "machine_heated_bed": { - "default_value": true - }, + "machine_heated_bed": { + "default_value": true + }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": + "machine_head_with_fans_polygon": { "default_value": [ [ -75, 35 ], @@ -48,12 +48,11 @@ "machine_extruder_count": { "default_value": 2 }, - "machine_start_gcode": { - "default_value": "G21; Unidades en Milimetro\nG90; Posicionamiento Absoluto\nM82; E Absoluto\nM107; Apagar Venitilador de capas\nG28; Llevar ejes a origen\nG1 Z15.0 F9000; Levantar Eje Z 15mm" + "machine_start_gcode": { + "default_value": "G21;\nG90;\nM82;\nM107;\nG28;\nG1 Z15.0 F9000;" }, "machine_end_gcode": { - "default_value": "M104 T0 S0; Apagar Extrusor E0\nM104 T1 S0; Apagar Extrusor E1\nM140 S0; Apagar Cama Caliente\nG92 E1; Posicionar Extrusor en 1mm\nG1 E-1 F300; Retraer Extrusor 1mm\nG28 X0 Y0; Llevar al origen ejes X e Y\nM84; Desactivar Motores " + "default_value": "M104 T0 S0;\nM104 T1 S0;\nM140 S0;\nG92 E1;\nG1 E-1 F300;\nG28 X0 Y0;\nM84;" } - } } diff --git a/resources/definitions/hellbot_magna_2_230.def.json b/resources/definitions/hellbot_magna_2_230.def.json index 0dedd0b71a..ef6dc0b3be 100644 --- a/resources/definitions/hellbot_magna_2_230.def.json +++ b/resources/definitions/hellbot_magna_2_230.def.json @@ -7,7 +7,7 @@ "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", - "platform": "Hellbot_Magna_2_230.obj", + "platform": "Hellbot_Magna_2_230.obj", "platform_texture": "Magna2_230.png", "has_materials": true, "machine_extruder_trains": @@ -28,9 +28,9 @@ "machine_depth": { "default_value": 230 }, - "machine_heated_bed": { - "default_value": true - }, + "machine_heated_bed": { + "default_value": true + }, "machine_center_is_zero": { "default_value": false }, diff --git a/resources/definitions/hellbot_magna_2_230_dual.def.json b/resources/definitions/hellbot_magna_2_230_dual.def.json index ad15ddf264..7768f51ac0 100644 --- a/resources/definitions/hellbot_magna_2_230_dual.def.json +++ b/resources/definitions/hellbot_magna_2_230_dual.def.json @@ -7,13 +7,13 @@ "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", - "platform": "Hellbot_Magna_2_230.obj", + "platform": "Hellbot_Magna_2_230.obj", "platform_texture": "Magna2_230.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_magna_2_230_dual_extruder_0", - "1": "hellbot_magna_2_230_dual_extruder_1" + "1": "hellbot_magna_2_230_dual_extruder_1" } }, @@ -29,21 +29,26 @@ "machine_depth": { "default_value": 230 }, - "machine_heated_bed": { - "default_value": true - }, + "machine_heated_bed": { + "default_value": true + }, "machine_center_is_zero": { "default_value": false }, "machine_extruder_count": { "default_value": 2 }, - "machine_start_gcode": { - "default_value": "G21\nG90\nM107\nG28 X0 Y0\nG28 Z0\nG1 Z15.0 F300\nT0\nG92 E0\nG1 F700 E-80\nT1\nG92 E0\nG1 F1000 X1 Y1 Z0.3\nG1 F600 X200 E60\nG1 F1000 Y3\nG1 F600 X1 E120\nT1\nG92 E0\nG28 X0 Y0\nG1 F700 E-80\nT0\nG92 E0" - }, + "machine_extruders_share_heater": { + "default_value": true + }, + "machine_extruders_share_nozzle": { + "default_value": true + }, + "machine_start_gcode": { + "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" + }, "machine_end_gcode": { "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" } - } } diff --git a/resources/definitions/hellbot_magna_2_300.def.json b/resources/definitions/hellbot_magna_2_300.def.json index 8fe65de581..d0cf2657b8 100644 --- a/resources/definitions/hellbot_magna_2_300.def.json +++ b/resources/definitions/hellbot_magna_2_300.def.json @@ -7,7 +7,7 @@ "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", - "platform": "Hellbot_Magna_2_300.obj", + "platform": "Hellbot_Magna_2_300.obj", "platform_texture": "Magna2_300.png", "has_materials": true, "machine_extruder_trains": @@ -28,15 +28,14 @@ "machine_depth": { "default_value": 300 }, - "machine_heated_bed": { - "default_value": true - }, + "machine_heated_bed": { + "default_value": true + }, "machine_center_is_zero": { "default_value": false }, "machine_extruder_count": { "default_value": 1 } - } } diff --git a/resources/definitions/hellbot_magna_2_300_dual.def.json b/resources/definitions/hellbot_magna_2_300_dual.def.json index cd94d03100..ed22bfa079 100644 --- a/resources/definitions/hellbot_magna_2_300_dual.def.json +++ b/resources/definitions/hellbot_magna_2_300_dual.def.json @@ -7,13 +7,13 @@ "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", - "platform": "Hellbot_Magna_2_300.obj", + "platform": "Hellbot_Magna_2_300.obj", "platform_texture": "Magna2_300.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_magna_2_300_dual_extruder_0", - "1": "hellbot_magna_2_300_dual_extruder_1" + "1": "hellbot_magna_2_300_dual_extruder_1" } }, @@ -29,21 +29,26 @@ "machine_depth": { "default_value": 300 }, - "machine_heated_bed": { - "default_value": true - }, + "machine_heated_bed": { + "default_value": true + }, "machine_center_is_zero": { "default_value": false }, "machine_extruder_count": { "default_value": 2 }, - "machine_start_gcode": { - "default_value": "G21\nG90\nM107\nG28 X0 Y0\nG28 Z0\nG1 Z15.0 F300\nT0\nG92 E0\nG1 F700 E-80\nT1\nG92 E0\nG1 F1000 X1 Y1 Z0.3\nG1 F600 X200 E60\nG1 F1000 Y3\nG1 F600 X1 E120\nT1\nG92 E0\nG28 X0 Y0\nG1 F700 E-80\nT0\nG92 E0" - }, + "machine_extruders_share_heater": { + "default_value": true + }, + "machine_extruders_share_nozzle": { + "default_value": true + }, + "machine_start_gcode": { + "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" + }, "machine_end_gcode": { "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" } - } } diff --git a/resources/definitions/hellbot_magna_2_400.def.json b/resources/definitions/hellbot_magna_2_400.def.json new file mode 100644 index 0000000000..b98c43805c --- /dev/null +++ b/resources/definitions/hellbot_magna_2_400.def.json @@ -0,0 +1,42 @@ +{ + "version": 2, + "name": "Hellbot Magna 2 400", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Hellbot Development Team", + "manufacturer": "Hellbot", + "file_formats": "text/x-gcode", + "platform": "Hellbot_Magna_2_400.obj", + "platform_texture": "Magna2_400.png", + "has_materials": true, + "machine_extruder_trains": + { + "0": "hellbot_magna_2_400_extruder_0" + } + + }, + + "overrides": { + "machine_name": { "default_value": "Hellbot Magna 2 400" }, + "machine_width": { + "default_value": 400 + }, + "machine_height": { + "default_value": 400 + }, + "machine_depth": { + "default_value": 400 + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_center_is_zero": { + "default_value": false + }, + "machine_extruder_count": { + "default_value": 1 + } + + } +} diff --git a/resources/definitions/hellbot_magna_2_400_dual.def.json b/resources/definitions/hellbot_magna_2_400_dual.def.json new file mode 100644 index 0000000000..2dbdb1f6ca --- /dev/null +++ b/resources/definitions/hellbot_magna_2_400_dual.def.json @@ -0,0 +1,55 @@ +{ + "version": 2, + "name": "Hellbot Magna 2 400 dual", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Hellbot Development Team", + "manufacturer": "Hellbot", + "file_formats": "text/x-gcode", + "platform": "Hellbot_Magna_2_400.obj", + "platform_texture": "Magna2_400.png", + "has_materials": true, + "machine_extruder_trains": + { + "0": "hellbot_magna_2_400_dual_extruder_0", + "1": "hellbot_magna_2_400_dual_extruder_1" + } + + }, + + "overrides": { + "machine_name": { "default_value": "Hellbot Magna 2 400 Dual" }, + "machine_width": { + "default_value": 400 + }, + "machine_height": { + "default_value": 400 + }, + "machine_depth": { + "default_value": 400 + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_center_is_zero": { + "default_value": false + }, + "machine_extruder_count": { + "default_value": 2 + }, + "machine_extruders_share_heater": { + "default_value": true + }, + "machine_extruders_share_nozzle": { + "default_value": true + }, + "machine_start_gcode": { + "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" + }, + "machine_end_gcode": { + "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" + } + + } +} diff --git a/resources/definitions/hellbot_magna_2_500.def.json b/resources/definitions/hellbot_magna_2_500.def.json new file mode 100644 index 0000000000..e7c645b6f4 --- /dev/null +++ b/resources/definitions/hellbot_magna_2_500.def.json @@ -0,0 +1,42 @@ +{ + "version": 2, + "name": "Hellbot Magna 2 500", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Hellbot Development Team", + "manufacturer": "Hellbot", + "file_formats": "text/x-gcode", + "platform": "Hellbot_Magna_2_500.obj", + "platform_texture": "Magna2_500.png", + "has_materials": true, + "machine_extruder_trains": + { + "0": "hellbot_magna_2_500_extruder_0" + } + + }, + + "overrides": { + "machine_name": { "default_value": "Hellbot Magna 2 500" }, + "machine_width": { + "default_value": 500 + }, + "machine_height": { + "default_value": 500 + }, + "machine_depth": { + "default_value": 500 + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_center_is_zero": { + "default_value": false + }, + "machine_extruder_count": { + "default_value": 1 + } + + } +} diff --git a/resources/definitions/hellbot_magna_2_500_dual.def.json b/resources/definitions/hellbot_magna_2_500_dual.def.json new file mode 100644 index 0000000000..ba7f18d702 --- /dev/null +++ b/resources/definitions/hellbot_magna_2_500_dual.def.json @@ -0,0 +1,54 @@ +{ + "version": 2, + "name": "Hellbot Magna 2 500 dual", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Hellbot Development Team", + "manufacturer": "Hellbot", + "file_formats": "text/x-gcode", + "platform": "Hellbot_Magna_2_500.obj", + "platform_texture": "Magna2_500.png", + "has_materials": true, + "machine_extruder_trains": + { + "0": "hellbot_magna_2_500_dual_extruder_0", + "1": "hellbot_magna_2_500_dual_extruder_1" + } + + }, + + "overrides": { + "machine_name": { "default_value": "Hellbot Magna 2 500 Dual" }, + "machine_width": { + "default_value": 500 + }, + "machine_height": { + "default_value": 500 + }, + "machine_depth": { + "default_value": 500 + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_center_is_zero": { + "default_value": false + }, + "machine_extruder_count": { + "default_value": 2 + }, + "machine_extruders_share_heater": { + "default_value": true + }, + "machine_extruders_share_nozzle": { + "default_value": true + }, + "machine_start_gcode": { + "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" + }, + "machine_end_gcode": { + "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" + } + } +} diff --git a/resources/definitions/hellbot_magna_I.def.json b/resources/definitions/hellbot_magna_I.def.json index 777ed40954..019f214387 100644 --- a/resources/definitions/hellbot_magna_I.def.json +++ b/resources/definitions/hellbot_magna_I.def.json @@ -19,7 +19,7 @@ "machine_name": { "default_value": "Hellbot Magna 1" }, - "machine_heated_bed": { "default_value": true }, + "machine_heated_bed": { "default_value": true }, "machine_width": { "default_value": 220 }, diff --git a/resources/definitions/hellbot_magna_SE.def.json b/resources/definitions/hellbot_magna_SE.def.json new file mode 100644 index 0000000000..7420eaee63 --- /dev/null +++ b/resources/definitions/hellbot_magna_SE.def.json @@ -0,0 +1,41 @@ +{ + "version": 2, + "name": "Hellbot Magna SE", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Hellbot Development Team", + "manufacturer": "Hellbot", + "file_formats": "text/x-gcode", + "platform": "hellbot_magna_SE.obj", + "platform_texture": "hellbot_magna_SE.png", + "has_materials": true, + "machine_extruder_trains": + { + "0": "hellbot_magna_SE_extruder" + } + + }, + + "overrides": { + "machine_name": { "default_value": "Hellbot Magna SE" }, + "machine_width": { + "default_value": 230 + }, + "machine_depth": { + "default_value": 230 + }, + "machine_height": { + "default_value": 250 + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_center_is_zero": { + "default_value": false + }, + "machine_extruder_count": { + "default_value": 1 + } + } +} diff --git a/resources/definitions/hellbot_magna_dual.def.json b/resources/definitions/hellbot_magna_dual.def.json index feaee38419..6448ed3a44 100644 --- a/resources/definitions/hellbot_magna_dual.def.json +++ b/resources/definitions/hellbot_magna_dual.def.json @@ -26,9 +26,9 @@ "machine_depth": { "default_value": 220 }, - "machine_heated_bed": { - "default_value": true - }, + "machine_heated_bed": { + "default_value": true + }, "machine_height": { "default_value": 260 }, diff --git a/resources/definitions/hms434.def.json b/resources/definitions/hms434.def.json index 7d76f24497..20acb6e3cf 100644 --- a/resources/definitions/hms434.def.json +++ b/resources/definitions/hms434.def.json @@ -89,9 +89,8 @@ "top_layers": {"value": "4 if infill_sparse_density < 95 else 1" }, "bottom_layers": {"value": "(top_layers)" }, "wall_0_inset": {"value": "0" }, - "outer_inset_first": {"value": true }, + "inset_direction": {"value": "'outside_in'" }, "alternate_extra_perimeter": {"value": false }, - "travel_compensate_overlapping_walls_enabled": {"value": false }, "filter_out_tiny_gaps": {"value": true }, "fill_outline_gaps": {"value": true }, "z_seam_type": {"value": "'shortest'"}, diff --git a/resources/definitions/ideagen3D_sapphire_plus.def.json b/resources/definitions/ideagen3D_sapphire_plus.def.json index 55f471793a..a8541401c2 100644 --- a/resources/definitions/ideagen3D_sapphire_plus.def.json +++ b/resources/definitions/ideagen3D_sapphire_plus.def.json @@ -27,7 +27,7 @@ [30, 40] ] }, - "machine_start_gcode": { "default_value": ";Start GCode by ideagen3D\n\nG1 Z15.0 F6000 ;Move the platform down 15mm\n\n;Initialize Temperature\nM140 S{material_bed_temperature_layer_0} ;heat bed and continue\nM104 S{material_print_temperature_layer_0} ;heat nozzle and continue\nM190 S{material_bed_temperature_layer_0} ;wait for bed temperature to reach inital layer temperature\nM109 S{material_print_temperature_layer_0} ;wait for hot end temperature to reach inital layer temperature\n\nG28 M420 S1 ; Home & Enable Bed Levelling\n\n;Prime the extruder\nG92 E0\nG1 X1 Y280 Z0.2 ;Prepare to Purge\nG1 Y20 Z0.2 F1500.0 E15 ;Purge line\nG92 E0" }, + "machine_start_gcode": { "default_value": ";Start GCode by ideagen3D\n\nG1 Z15.0 F6000 ;Move the platform down 15mm\n\n;Initialize Temperature\nM140 S{material_bed_temperature_layer_0} ;heat bed and continue\nM104 S{material_print_temperature_layer_0} ;heat nozzle and continue\nM190 S{material_bed_temperature_layer_0} ;wait for bed temperature to reach initial layer temperature\nM109 S{material_print_temperature_layer_0} ;wait for hot end temperature to reach initial layer temperature\n\nG28 M420 S1 ; Home & Enable Bed Levelling\n\n;Prime the extruder\nG92 E0\nG1 X1 Y280 Z0.2 ;Prepare to Purge\nG1 Y20 Z0.2 F1500.0 E15 ;Purge line\nG92 E0" }, "machine_end_gcode": { "default_value": ";End GCode by ideagen3D\n\nM104 S0 ;Set nozzle temperature to 0\nM140 S0 ;Set Bed temperature to 0\n\nG92 E1 ;Prepare to retract filament\nG1 E-1 F300 ;Retract filament\nG28 X0 Y0 ;Home X and Y\nM84 ;Disable Steppers" }, "gantry_height": { "value": 65 } } diff --git a/resources/definitions/inat_base.def.json b/resources/definitions/inat_base.def.json index 974ae9ac5a..61a543c9cc 100644 --- a/resources/definitions/inat_base.def.json +++ b/resources/definitions/inat_base.def.json @@ -369,7 +369,7 @@ "value": 45 }, "retraction_combing": { - "value": "infill" + "value": "'infill'" }, "retraction_hop_enabled": { "value": true diff --git a/resources/definitions/julia.def.json b/resources/definitions/julia.def.json index 15e5057a55..2055191e61 100644 --- a/resources/definitions/julia.def.json +++ b/resources/definitions/julia.def.json @@ -4,7 +4,6 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Ultimaker", "manufacturer": "Fracktal", "file_formats": "text/x-gcode", "platform_offset": [ 0, 0, 0], @@ -30,7 +29,7 @@ "support_pattern": { "default_value": "grid" }, "infill_sparse_density": { "default_value": 10 }, "machine_extruder_count": { "default_value": 1 }, - "retraction_combing": { "default_value": "off" }, + "retraction_combing": { "value": "'off'" }, "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": false }, "machine_height": { "default_value": 260 }, diff --git a/resources/definitions/kingroon_base.def.json b/resources/definitions/kingroon_base.def.json index c458e684bd..83c8da9f0f 100644 --- a/resources/definitions/kingroon_base.def.json +++ b/resources/definitions/kingroon_base.def.json @@ -194,7 +194,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": false }, "z_seam_type": { "value": "'back'" }, "z_seam_corner": { "value": "'z_seam_corner_none'" }, @@ -207,7 +206,6 @@ "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/koonovo_base.def.json b/resources/definitions/koonovo_base.def.json index acfd674ad1..b0791dd251 100644 --- a/resources/definitions/koonovo_base.def.json +++ b/resources/definitions/koonovo_base.def.json @@ -112,7 +112,6 @@ "minimum_support_area": { "value": 2 }, "minimum_interface_area": { "value": 10 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/koonovo_kn3.def.json b/resources/definitions/koonovo_kn3.def.json index 5d490a75fe..0750eec47a 100644 --- a/resources/definitions/koonovo_kn3.def.json +++ b/resources/definitions/koonovo_kn3.def.json @@ -129,7 +129,6 @@ "minimum_support_area": { "value": 2 }, "minimum_interface_area": { "value": 10 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/koonovo_kn5.def.json b/resources/definitions/koonovo_kn5.def.json index 3e0f3c8df5..16d34caf15 100644 --- a/resources/definitions/koonovo_kn5.def.json +++ b/resources/definitions/koonovo_kn5.def.json @@ -130,7 +130,6 @@ "minimum_support_area": { "value": 2 }, "minimum_interface_area": { "value": 10 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/leapfrog_bolt_pro.def.json b/resources/definitions/leapfrog_bolt_pro.def.json index 904215853b..e7ccc76735 100644 --- a/resources/definitions/leapfrog_bolt_pro.def.json +++ b/resources/definitions/leapfrog_bolt_pro.def.json @@ -97,7 +97,7 @@ "material_final_print_temperature": {"value": "default_material_print_temperature" }, "material_initial_print_temperature": {"value": "default_material_print_temperature" }, "gantry_height": {"value": "20"}, - "retraction_combing": { "default_value": "all" }, + "retraction_combing": { "value": "'all'" }, "retraction_amount": {"default_value": 2}, "adhesion_type": {"default_value": "skirt"}, "skirt_line_count": {"default_value": 3}, diff --git a/resources/definitions/liquid.def.json b/resources/definitions/liquid.def.json index 744cbb9f3c..0fc0f3c9ca 100644 --- a/resources/definitions/liquid.def.json +++ b/resources/definitions/liquid.def.json @@ -144,7 +144,6 @@ "retraction_prime_speed": { "value": "35" }, "skin_overlap": { "value": "10" }, - "speed_equalize_flow_enabled": { "value": "True" }, "speed_layer_0": { "value": "20" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": "35" }, @@ -172,7 +171,7 @@ "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 100" }, "meshfix_maximum_deviation": { "value": "layer_height / 4" }, "optimize_wall_printing_order": { "value": "True" }, - "retraction_combing": { "default_value": "all" }, + "retraction_combing": { "value": "'all'" }, "initial_layer_line_width_factor": { "value": "120" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } diff --git a/resources/definitions/longer_base.def.json b/resources/definitions/longer_base.def.json index c0d06ce135..09ac8c3692 100644 --- a/resources/definitions/longer_base.def.json +++ b/resources/definitions/longer_base.def.json @@ -84,7 +84,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, "z_seam_type": { "value": "'back'" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, @@ -97,7 +96,6 @@ "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/maker_made_300x.def.json b/resources/definitions/maker_made_300x.def.json index ae112af5d1..efe5b18ec8 100644 --- a/resources/definitions/maker_made_300x.def.json +++ b/resources/definitions/maker_made_300x.def.json @@ -49,13 +49,8 @@ "top_bottom_pattern_0": {"value": "'lines'" }, "wall_0_inset": {"value": 0}, "optimize_wall_printing_order": {"value": false }, - "outer_inset_first": {"value": false }, + "inset_direction": {"value": "'inside_out'" }, "alternate_extra_perimeter": {"value": false }, - "travel_compensate_overlapping_walls_enabled": {"value": true }, - "travel_compensate_overlapping_walls_0_enabled": {"value": true }, - "travel_compensate_overlapping_walls_x_enabled": {"value": true }, - "wall_min_flow": {"value": 0}, - "fill_perimeter_gaps": {"value": "'everywhere'" }, "filter_out_tiny_gaps": {"value": true }, "fill_outline_gaps": {"value": true }, "xy_offset": {"value": 0}, @@ -97,11 +92,10 @@ "speed_layer_0": {"value": 10}, "speed_travel_layer_0": {"value": 50}, "speed_slowdown_layers": {"value": 2}, - "speed_equalize_flow_enabled": {"value": false }, "acceleration_enabled": {"value": false }, "acceleration_roofing": {"value": 3000 }, "jerk_enabled": {"value": false }, - "retraction_combing": {"value": "'within infill'" }, + "retraction_combing": {"value": "'infill'" }, "travel_retract_before_outer_wall": {"value": false }, "travel_avoid_other_parts": {"value": true }, "retraction_hop_enabled": {"value": false }, diff --git a/resources/definitions/maker_starter.def.json b/resources/definitions/maker_starter.def.json index d847bd4fe5..ea849b7039 100644 --- a/resources/definitions/maker_starter.def.json +++ b/resources/definitions/maker_starter.def.json @@ -78,7 +78,7 @@ "default_value": 0.2 }, "support_pattern": { - "default_value": "ZigZag" + "default_value": "zigzag" }, "support_infill_rate": { "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" diff --git a/resources/definitions/makerbotreplicator.def.json b/resources/definitions/makerbotreplicator.def.json index 24b556e1ee..6977ee8f5c 100644 --- a/resources/definitions/makerbotreplicator.def.json +++ b/resources/definitions/makerbotreplicator.def.json @@ -4,7 +4,6 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Ultimaker", "manufacturer": "MakerBot", "machine_x3g_variant": "r1", "file_formats": "application/x3g", diff --git a/resources/definitions/malyan_m180.def.json b/resources/definitions/malyan_m180.def.json index bb812b6dd6..7c32ebfba0 100644 --- a/resources/definitions/malyan_m180.def.json +++ b/resources/definitions/malyan_m180.def.json @@ -4,7 +4,7 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Ruben Dulek", + "author": "Ghostkeeper", "manufacturer": "Malyan", "machine_x3g_variant": "r1d", "file_formats": "application/x3g", diff --git a/resources/definitions/malyan_m200.def.json b/resources/definitions/malyan_m200.def.json index e9980724cb..c8eb4eb654 100644 --- a/resources/definitions/malyan_m200.def.json +++ b/resources/definitions/malyan_m200.def.json @@ -76,7 +76,7 @@ "raft_surface_layers": { "default_value": 1 }, "skirt_line_count": { "default_value": 2}, "brim_width" : { "default_value": 5}, - "retraction_combing": { "default_value": "noskin" }, + "retraction_combing": { "value": "'noskin'" }, "retraction_amount" : { "default_value": 4.5}, "retraction_speed" : { "default_value": 40}, "coasting_enable": { "default_value": true }, diff --git a/resources/definitions/mingda_base.def.json b/resources/definitions/mingda_base.def.json index 1051e53c2a..699942c813 100644 --- a/resources/definitions/mingda_base.def.json +++ b/resources/definitions/mingda_base.def.json @@ -4,7 +4,7 @@ "inherits": "fdmprinter", "metadata": { "visible": false, - "author": "Cataclism", + "author": "Mingda", "manufacturer": "Mingda", "file_formats": "text/x-gcode", "first_start_actions": ["MachineSettingsAction"], @@ -120,8 +120,10 @@ }, "overrides": { "machine_name": { "default_value": "MINGDA Base Printer" }, - "machine_start_gcode": { "default_value": "G28 ; home all axes\n M117 Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface"}, - "machine_end_gcode": { "default_value": "G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y200 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n G1 X0 Y300 F1000 ; prepare for part removal\n M84 ; disable motors\n M106 S0 ; turn off fan" }, + + "machine_start_gcode": { "default_value": " G28 ; home all axes\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface"}, + + "machine_end_gcode": { "default_value": " G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y0 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n M84 ; disable motors\n M106 S0 ; turn off fan" }, "machine_max_feedrate_x": { "value": 500 }, "machine_max_feedrate_y": { "value": 500 }, @@ -179,7 +181,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": false }, "z_seam_type": { "value": "'back'" }, "z_seam_corner": { "value": "'z_seam_corner_none'" }, @@ -192,7 +193,6 @@ "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, diff --git a/resources/definitions/mingda_magician_max.def.json b/resources/definitions/mingda_magician_max.def.json new file mode 100644 index 0000000000..444457ab4e --- /dev/null +++ b/resources/definitions/mingda_magician_max.def.json @@ -0,0 +1,19 @@ +{ + "name": "Mingda Magician Max", + "version": 2, + "inherits": "mingda_base", + "overrides": { + "machine_name": { "default_value": "Mingda Magician Max" }, + "machine_width": { "default_value": 320 }, + "machine_depth": { "default_value": 320 }, + "machine_height": { "default_value": 400 }, + "gantry_height": { "value": 25 } + + }, + "metadata": { + "quality_definition": "mingda_base", + "visible": true, + "platform": "mingda_rock3_base.stl", + "platform_offset": [ -179, -108, 150] + } +} diff --git a/resources/definitions/mingda_magician_pro.def.json b/resources/definitions/mingda_magician_pro.def.json new file mode 100644 index 0000000000..b38e168c65 --- /dev/null +++ b/resources/definitions/mingda_magician_pro.def.json @@ -0,0 +1,22 @@ +{ + "name": "Mingda Magician Pro", + "version": 2, + "inherits": "mingda_base", + "overrides": { + "machine_name": { "default_value": "Mingda Magician Pro" }, + "machine_start_gcode": { + "default_value":" G28 ; home all axes\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" + }, + "machine_width": { "default_value": 400 }, + "machine_depth": { "default_value": 400 }, + "machine_height": { "default_value": 400 }, + "gantry_height": { "value": 25 } + + }, + "metadata": { + "quality_definition": "mingda_base", + "visible": true, + "platform": "mingda_d4pro_base.stl", + "platform_offset": [ -177, -140, 170] + } +} diff --git a/resources/definitions/mingda_magician_x.def.json b/resources/definitions/mingda_magician_x.def.json new file mode 100644 index 0000000000..2dd3e5cd82 --- /dev/null +++ b/resources/definitions/mingda_magician_x.def.json @@ -0,0 +1,19 @@ +{ + "name": "Mingda Magician X", + "version": 2, + "inherits": "mingda_base", + "overrides": { + "machine_name": { "default_value": "Mingda Magician X" }, + "machine_width": { "default_value": 230 }, + "machine_depth": { "default_value": 230 }, + "machine_height": { "default_value": 260 }, + "gantry_height": { "value": 25 } + + }, + "metadata": { + "quality_definition": "mingda_base", + "visible": true, + "platform": "mingda_d2_base.stl", + "platform_offset": [ -205, -77, 65] + } +} diff --git a/resources/definitions/mixware_hyper_s.def.json b/resources/definitions/mixware_hyper_s.def.json new file mode 100644 index 0000000000..0e82f1d4a3 --- /dev/null +++ b/resources/definitions/mixware_hyper_s.def.json @@ -0,0 +1,372 @@ +{ + "name": "Hyper S", + "version": 2, + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Mixware", + "manufacturer": "Mixware", + "file_formats": "text/x-gcode", + "platform": "mixware_hyper_s_platform.stl", + "has_materials": true, + "has_machine_quality": true, + "preferred_material": "generic_pla", + "preferred_quality": "coarse", + "machine_extruder_trains": { + "0": "mixware_hyper_s_extruder_0" + } + }, + "overrides": { + "machine_name": { + "default_value": "Hyper S" + }, + "machine_start_gcode": { + "default_value": "M140 S{material_bed_temperature} ; Heat bed\nM109 S{material_print_temperature} ; Heat nozzle\nM190 S{material_bed_temperature} ; Wait for bed heating\nG28 ; home all axes\nM117 Purge extruder\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface\nG1 X0.1 Y20 Z0.3 F5000.0 ; move to start-line position\nG1 X0.1 Y100.0 Z0.3 F1500.0 E15 ; draw 1st line\nG1 X0.4 Y100.0 Z0.3 F5000.0 ; move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; draw 2nd line\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface" + }, + "machine_end_gcode": { + "default_value": "G91; relative positioning\nG1 Z1.0 F3000 ; move z up little to prevent scratching of print\nG90; absolute positioning\nG1 X0 Y200 F1000 ; prepare for part removal\nM104 S0; turn off extruder\nM140 S0 ; turn off bed\nG1 X0 Y220 F1000 ; prepare for part removal\nM84 ; disable motors\nM106 S0 ; turn off fan" + }, + "machine_width": { + "default_value": 300 + }, + "machine_depth": { + "default_value": 300 + }, + "machine_height": { + "default_value": 400 + }, + "raft_margin": { + "default_value": 3, + "minimum_value_warning": "0.01" + }, + "raft_airgap": { + "default_value": 0.24 + }, + "brim_width": { + "default_value": 3 + }, + "machine_heated_bed": { + "default_value": true + }, + "material_diameter": { + "default_value": 1.75 + }, + "top_bottom_pattern": { + "default_value": "zigzag" + }, + "ironing_line_spacing": { + "default_value": 0.4 + }, + "ironing_pattern": { + "default_value": "concentric" + }, + "skin_no_small_gaps_heuristic": { + "default_value": false + }, + "retraction_hop_enabled": { + "default_value": false + }, + "support_enable": { + "default_value": true + }, + "support_type": { + "default_value": "buildplate" + }, + "support_angle": { + "default_value": 60 + }, + "support_pattern": { + "default_value": "zigzag" + }, + "support_infill_rate": { + "value": 15 + }, + "gantry_height": { + "value": 25 + }, + "machine_max_feedrate_x": { + "default_value": 500 + }, + "machine_max_feedrate_y": { + "default_value": 500 + }, + "machine_max_feedrate_z": { + "default_value": 10 + }, + "machine_max_feedrate_e": { + "default_value": 50 + }, + "machine_max_acceleration_x": { + "default_value": 500 + }, + "machine_max_acceleration_y": { + "default_value": 500 + }, + "machine_max_acceleration_z": { + "default_value": 100 + }, + "machine_max_acceleration_e": { + "default_value": 500 + }, + "machine_acceleration": { + "default_value": 500 + }, + "machine_max_jerk_xy": { + "default_value": 10 + }, + "machine_max_jerk_z": { + "default_value": 0.4 + }, + "machine_max_jerk_e": { + "default_value": 5 + }, + "acceleration_print": { + "default_value": 1000 + }, + "jerk_print": { + "default_value": 10 + }, + "acceleration_enabled": { + "default_value": false + }, + "jerk_enabled": { + "default_value": false + }, + "speed_print": { + "default_value": 40.0 + }, + "optimize_wall_printing_order": { + "default_value": "True" + }, + "z_seam_type": { + "default_value": "shortest" + }, + "infill_before_walls": { + "default_value": false + }, + "infill_sparse_density": { + "default_value": 15 + }, + "fill_outline_gaps": { + "default_value": false + }, + "filter_out_tiny_gaps": { + "default_value": false + }, + "retraction_hop": { + "default_value": 0.2 + }, + "travel_avoid_other_parts": { + "default_value": false + }, + "travel_retract_before_outer_wall": { + "default_value": true + }, + "retraction_amount": { + "default_value": 2 + }, + "retraction_enable": { + "default_value": true + }, + "retraction_count_max": { + "default_value": 100 + }, + "cool_fan_enabled": { + "default_value": true + }, + "cool_min_layer_time": { + "default_value": 10 + }, + "skirt_gap": { + "default_value": 8.0 + }, + "skirt_line_count": { + "default_value": 3 + }, + "adaptive_layer_height_variation": { + "default_value": 0.04 + }, + "adaptive_layer_height_variation_step": { + "default_value": 0.04 + }, + "support_use_towers": { + "default_value": false + }, + "support_interface_enable": { + "default_value": true + }, + "support_interface_density": { + "default_value": 33.333 + }, + "support_interface_pattern": { + "default_value": "grid" + }, + "support_interface_skip_height": { + "default_value": 0.24 + }, + "top_bottom_thickness": { + "default_value": 0.8 + }, + "material_flow": { + "default_value": 100 + }, + "material_print_temperature": { + "maximum_value_warning": "330" + }, + "acceleration_roofing": { + "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" + }, + "retraction_speed": { + "default_value": 40, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", + "maximum_value": "200" + }, + "retraction_retract_speed": { + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", + "maximum_value": "200" + }, + "retraction_prime_speed": { + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", + "maximum_value": "200" + }, + "speed_layer_0": { + "value": "speed_print / 2" + }, + "acceleration_travel_layer_0": { + "value": "acceleration_travel" + }, + "jerk_travel": { + "value": "jerk_print" + }, + "jerk_travel_layer_0": { + "value": "jerk_travel" + }, + "skirt_brim_speed": { + "value": "speed_layer_0" + }, + "speed_infill": { + "value": "speed_print" + }, + "speed_wall": { + "value": "speed_print / 2" + }, + "speed_wall_0": { + "value": "speed_wall" + }, + "speed_wall_x": { + "value": "speed_wall" + }, + "speed_topbottom": { + "value": "speed_print / 2" + }, + "speed_roofing": { + "value": "speed_topbottom" + }, + "speed_travel": { + "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" + }, + "speed_print_layer_0": { + "value": "speed_layer_0" + }, + "speed_travel_layer_0": { + "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" + }, + "speed_prime_tower": { + "value": "speed_topbottom" + }, + "speed_support": { + "value": "speed_wall_0" + }, + "speed_support_interface": { + "value": "speed_topbottom" + }, + "material_initial_print_temperature": { + "value": "material_print_temperature" + }, + "material_final_print_temperature": { + "value": "material_print_temperature" + }, + "cool_fan_full_at_height": { + "value": "layer_height_0 + 2 * layer_height" + }, + "adhesion_type": { + "default_value": "skirt" + }, + "meshfix_maximum_travel_resolution": { + "value": "meshfix_maximum_resolution" + }, + "support_xy_distance": { + "value": "wall_line_width_0 * 2" + }, + "support_xy_distance_overhang": { + "value": "wall_line_width_0" + }, + "support_z_distance": { + "value": "layer_height if layer_height >= 0.16 else layer_height * 2" + }, + "support_xy_overrides_z": { + "default_value": "xy_overrides_z" + }, + "support_interface_height": { + "value": "layer_height * 4" + }, + "wall_thickness": { + "value": "line_width * 2" + }, + "acceleration_travel": { + "value": 1000 + }, + "line_width": { + "value": 0.4 + }, + "speed_z_hop": { + "default_value": 5 + }, + "retraction_combing_max_distance": { + "default_value": 30 + }, + "travel_avoid_supports": { + "default_value": true + }, + "brim_replaces_support": { + "default_value": false + }, + "support_brim_width": { + "default_value": 4 + }, + "minimum_support_area": { + "default_value": 2 + }, + "minimum_interface_area": { + "default_value": 10 + }, + "support_wall_count": { + "value": 1 + }, + "support_brim_enable": { + "value": false + }, + "retraction_combing": { + "value": "all" + }, + "retraction_extrusion_window": { + "value": 10, + "maximum_value_warning": "20" + }, + "retraction_min_travel": { + "value": 1.5 + }, + "infill_wipe_dist": { + "value": 0.0 + }, + "skin_overlap": { + "value": 10.0 + }, + "infill_overlap": { + "value": 30.0 + }, + "wall_0_wipe_dist": { + "value": 0.0 + } + } +} diff --git a/resources/definitions/monoprice_select_mini_v2.def.json b/resources/definitions/monoprice_select_mini_v2.def.json index d671f319ad..004de649f1 100644 --- a/resources/definitions/monoprice_select_mini_v2.def.json +++ b/resources/definitions/monoprice_select_mini_v2.def.json @@ -23,7 +23,7 @@ "default_value": "G0 X0 Y120;(Stick out the part)\nM190 S0;(Turn off heat bed, don't wait.)\nG92 E10;(Set extruder to 10)\nG1 E7 F200;(retract 3mm)\nM104 S0;(Turn off nozzle, don't wait)\nG4 S300;(Delay 5 minutes)\nM107;(Turn off part fan)\nM84;(Turn off stepper motors.)" }, "adhesion_type": { "default_value": "brim" }, - "retraction_combing": { "default_value": "noskin" }, + "retraction_combing": { "value": "'noskin'" }, "retraction_amount" : { "default_value": 2.5}, "retraction_speed" : { "default_value": 40}, "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" } diff --git a/resources/definitions/ord.def.json b/resources/definitions/ord.def.json index 4a550602f2..0701133e54 100644 --- a/resources/definitions/ord.def.json +++ b/resources/definitions/ord.def.json @@ -4,7 +4,6 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Ultimaker", "manufacturer": "ORD Solutions", "file_formats": "text/x-gcode", "machine_extruder_trains": diff --git a/resources/definitions/peopoly_moai.def.json b/resources/definitions/peopoly_moai.def.json index e19fed8b4d..cbc668dc74 100644 --- a/resources/definitions/peopoly_moai.def.json +++ b/resources/definitions/peopoly_moai.def.json @@ -176,15 +176,6 @@ "skin_outline_count": { "value": 0 }, - "travel_compensate_overlapping_walls_enabled": { - "value": "False" - }, - "travel_compensate_overlapping_walls_0_enabled": { - "value": "False" - }, - "travel_compensate_overlapping_walls_x_enabled": { - "value": "False" - }, "wall_0_wipe_dist": { "value": "machine_nozzle_size / 3" }, @@ -218,10 +209,6 @@ "material_flow_layer_0": { "enabled": false }, - "speed_equalize_flow_enabled": { - "enabled": false, - "value": "False" - }, "draft_shield_enabled": { "enabled": false, "value": "False" diff --git a/resources/definitions/punchtec_connect_xl.def.json b/resources/definitions/punchtec_connect_xl.def.json index 9bae80b0ac..cda6caa1f6 100644 --- a/resources/definitions/punchtec_connect_xl.def.json +++ b/resources/definitions/punchtec_connect_xl.def.json @@ -4,7 +4,6 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Ultimaker", "manufacturer": "Punchtec", "file_formats": "text/x-gcode", "machine_extruder_trains": diff --git a/resources/definitions/renkforce_rf100.def.json b/resources/definitions/renkforce_rf100.def.json index 0f0c4eed97..7ad092ce8f 100644 --- a/resources/definitions/renkforce_rf100.def.json +++ b/resources/definitions/renkforce_rf100.def.json @@ -153,7 +153,7 @@ "value": "5.0" }, "retraction_combing": { - "default_value": "all" + "value": "'all'" }, "retraction_enable": { "value": "True" diff --git a/resources/definitions/renkforce_rf100_v2.def.json b/resources/definitions/renkforce_rf100_v2.def.json index 218e6e1feb..05907a1c20 100644 --- a/resources/definitions/renkforce_rf100_v2.def.json +++ b/resources/definitions/renkforce_rf100_v2.def.json @@ -153,7 +153,7 @@ "value": "5.0" }, "retraction_combing": { - "default_value": "all" + "value": "'all'" }, "retraction_enable": { "value": "True" diff --git a/resources/definitions/renkforce_rf100_xl.def.json b/resources/definitions/renkforce_rf100_xl.def.json index 5ab40d7e7f..f0e8644ae4 100644 --- a/resources/definitions/renkforce_rf100_xl.def.json +++ b/resources/definitions/renkforce_rf100_xl.def.json @@ -141,7 +141,7 @@ "value": "5.0" }, "retraction_combing": { - "default_value": "all" + "value": "'all'" }, "retraction_enable": { "value": "True" diff --git a/resources/definitions/robo_3d_r1.def.json b/resources/definitions/robo_3d_r1.def.json index e72b0a2688..0187d13dd0 100644 --- a/resources/definitions/robo_3d_r1.def.json +++ b/resources/definitions/robo_3d_r1.def.json @@ -4,7 +4,6 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Ultimaker", "manufacturer": "Robo 3D", "file_formats": "text/x-gcode", "platform_offset": [ 0, 0, 0], @@ -36,7 +35,7 @@ "layer_height": { "default_value": 0.2 }, "speed_print": { "default_value": 40 }, "machine_extruder_count": { "default_value": 1 }, - "retraction_combing": { "default_value": "off" }, + "retraction_combing": { "value": "'off'" }, "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": false }, "machine_height": { "default_value": 210 }, diff --git a/resources/definitions/seemecnc_artemis.def.json b/resources/definitions/seemecnc_artemis.def.json index 89fc9e4993..1501d2c68d 100644 --- a/resources/definitions/seemecnc_artemis.def.json +++ b/resources/definitions/seemecnc_artemis.def.json @@ -29,7 +29,7 @@ "machine_width": { "default_value": 290 }, "relative_extrusion": { "value": "False" }, "retraction_amount": { "default_value": 3.2 }, - "retraction_combing": { "default_value": "off" }, + "retraction_combing": { "value": "'off'" }, "retraction_hop_enabled": { "default_value": true }, "retraction_hop_only_when_collides": { "default_value": false }, "retraction_speed": { "default_value": 45 }, diff --git a/resources/definitions/seemecnc_v32.def.json b/resources/definitions/seemecnc_v32.def.json index 06414f0b1d..46a5e63f01 100644 --- a/resources/definitions/seemecnc_v32.def.json +++ b/resources/definitions/seemecnc_v32.def.json @@ -29,7 +29,7 @@ "machine_width": { "default_value": 265 }, "relative_extrusion": { "value": "False" }, "retraction_amount": { "default_value": 3.2 }, - "retraction_combing": { "default_value": "off" }, + "retraction_combing": { "value": "'off'" }, "retraction_hop_enabled": { "default_value": true }, "retraction_hop_only_when_collides": { "default_value": false }, "retraction_speed": { "default_value": 45 }, diff --git a/resources/definitions/sh65.def.json b/resources/definitions/sh65.def.json new file mode 100644 index 0000000000..d26898d9dd --- /dev/null +++ b/resources/definitions/sh65.def.json @@ -0,0 +1,51 @@ +{ + "version": 2, + "name": "Volumic SH65", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Volumic", + "manufacturer": "Volumic", + "file_formats": "text/x-gcode", + "icon": "volumic-icon", + "platform": "SH65_platform.STL", + "has_materials": true, + "has_machine_quality": true, + "machine_extruder_trains":{"0": "sh65_extruder"} + }, + + "overrides": { + "machine_name": { "default_value": "VOLUMIC SH65" }, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 650 }, + "machine_height": { "default_value": 300 }, + "machine_depth": { "default_value": 300 }, + "machine_center_is_zero": { "default_value": false }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.1 }, + "retraction_amount": { "default_value": 2.40 }, + "retraction_speed": { "default_value": 30 }, + "adhesion_type": { "default_value": "none" }, + "infill_sparse_density": { "default_value": 25 }, + "fill_outline_gaps": { "default_value": true }, + "retract_at_layer_change": { "default_value": true }, + "retraction_combing_max_distance": { "default_value": 200 }, + "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_acceleration": { "default_value": 2000 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" + }, + "machine_end_gcode": { + "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" + } + } +} diff --git a/resources/definitions/skriware_2.def.json b/resources/definitions/skriware_2.def.json index f46213dde7..dbcf140585 100644 --- a/resources/definitions/skriware_2.def.json +++ b/resources/definitions/skriware_2.def.json @@ -110,9 +110,6 @@ "switch_extruder_retraction_speed": { "value": "30" }, - "travel_compensate_overlapping_walls_enabled": { - "default_value": false - }, "raft_base_acceleration": { "value": "400" }, @@ -389,9 +386,6 @@ "acceleration_support_infill": { "value": "400" }, - "travel_compensate_overlapping_walls_0_enabled": { - "value": "False" - }, "support_bottom_material_flow": { "value": "99" }, @@ -417,7 +411,7 @@ "value": "1" }, "retraction_combing": { - "default_value": "infill" + "value": "'infill'" }, "acceleration_prime_tower": { "value": "250" @@ -584,9 +578,6 @@ "infill_material_flow": { "value": "99" }, - "speed_equalize_flow_max": { - "default_value": 40 - }, "skin_preshrink": { "value": "0.0" }, @@ -644,9 +635,6 @@ "skirt_line_count": { "default_value": 2 }, - "travel_compensate_overlapping_walls_x_enabled": { - "value": "False" - }, "jerk_wall_0": { "value": "5" }, diff --git a/resources/definitions/snapmaker2.def.json b/resources/definitions/snapmaker2.def.json index e4ad7e19df..2c749d2b1b 100644 --- a/resources/definitions/snapmaker2.def.json +++ b/resources/definitions/snapmaker2.def.json @@ -26,7 +26,7 @@ "default_value": true }, "machine_start_gcode": { - "default_value": "M104 S{material_print_temperature} ;Set Hotend Temperature\nM140 S{material_bed_temperature} ;Set Bed Temperature\nG28 ;home\nG90 ;absolute positioning\nG1 X-10 Y-10 F3000 ;Move to corner \nG1 Z0 F1800 ;Go to zero offset\nM109 S{material_print_temperature} ;Wait for Hotend Temperature\nM190 S{material_bed_temperature} ;Wait for Bed Temperature\nG92 E0 ;Zero set extruder position\nG1 E20 F200 ;Feed filament to clear nozzle\nG92 E0 ;Zero set extruder position" + "default_value": "M104 S{material_print_temperature_layer_0} ;Set Hotend Temperature\nM140 S{material_bed_temperature_layer_0} ;Set Bed Temperature\nG28 ;home\nG90 ;absolute positioning\nG1 X-10 Y-10 F3000 ;Move to corner \nG1 Z0 F1800 ;Go to zero offset\nM109 S{material_print_temperature_layer_0} ;Wait for Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ;Wait for Bed Temperature\nG92 E0 ;Zero set extruder position\nG1 E20 F200 ;Feed filament to clear nozzle\nG92 E0 ;Zero set extruder position" }, "machine_end_gcode": { "default_value": "M104 S0 ;Extruder heater off\nM140 S0 ;Heated bed heater off\nG90 ;absolute positioning\nG92 E0 ;Retract the filament\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z{machine_width} E-1 F3000 ;move Z up a bit and retract filament even more\nG1 X0 F3000 ;move X to min endstops, so the head is out of the way\nG1 Y{machine_depth} F3000 ;so the head is out of the way and Plate is moved forward" diff --git a/resources/definitions/strateo3d.def.json b/resources/definitions/strateo3d.def.json index 9c865fe233..cc4038586c 100644 --- a/resources/definitions/strateo3d.def.json +++ b/resources/definitions/strateo3d.def.json @@ -116,7 +116,7 @@ "prime_tower_position_x": { "value": "machine_width/2 + prime_tower_size/2" }, "prime_tower_position_y": { "value": "machine_depth - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" }, "retraction_amount": { "default_value": 1.5 }, - "retraction_combing": { "default_value": "all" }, + "retraction_combing": { "value": "'all'" }, "retraction_combing_max_distance": { "default_value": 5 }, "retraction_count_max": { "default_value": 15 }, "retraction_hop": { "value": "2" }, diff --git a/resources/definitions/stream30mk3.def.json b/resources/definitions/stream30mk3.def.json new file mode 100644 index 0000000000..13a2571f02 --- /dev/null +++ b/resources/definitions/stream30mk3.def.json @@ -0,0 +1,51 @@ +{ + "version": 2, + "name": "Volumic Stream30Pro MK3", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Volumic", + "manufacturer": "Volumic", + "file_formats": "text/x-gcode", + "icon": "volumic-icon", + "platform": "STREAM30ULTRA_platform.STL", + "has_materials": true, + "has_machine_quality": true, + "machine_extruder_trains":{"0": "stream30mk3_extruder"} + }, + + "overrides": { + "machine_name": { "default_value": "VOLUMIC STREAM30PRO MK3" }, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 300 }, + "machine_height": { "default_value": 310 }, + "machine_depth": { "default_value": 200 }, + "machine_center_is_zero": { "default_value": false }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.1 }, + "retraction_amount": { "default_value": 2.40 }, + "retraction_speed": { "default_value": 30 }, + "adhesion_type": { "default_value": "none" }, + "infill_sparse_density": { "default_value": 25 }, + "fill_outline_gaps": { "default_value": true }, + "retract_at_layer_change": { "default_value": true }, + "retraction_combing_max_distance": { "default_value": 200 }, + "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_acceleration": { "default_value": 2000 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" + }, + "machine_end_gcode": { + "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" + } + } +} diff --git a/resources/definitions/stream30ultrasc2.def.json b/resources/definitions/stream30ultrasc2.def.json new file mode 100644 index 0000000000..b1994044cf --- /dev/null +++ b/resources/definitions/stream30ultrasc2.def.json @@ -0,0 +1,51 @@ +{ + "version": 2, + "name": "Volumic Stream30Ultra SC2", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Volumic", + "manufacturer": "Volumic", + "file_formats": "text/x-gcode", + "icon": "volumic-icon", + "platform": "STREAM30ULTRA_platform.STL", + "has_materials": true, + "has_machine_quality": true, + "machine_extruder_trains":{"0": "stream30ultrasc2_extruder"} + }, + + "overrides": { + "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA SC2" }, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 300 }, + "machine_height": { "default_value": 310 }, + "machine_depth": { "default_value": 200 }, + "machine_center_is_zero": { "default_value": false }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.1 }, + "retraction_amount": { "default_value": 2.40 }, + "retraction_speed": { "default_value": 30 }, + "adhesion_type": { "default_value": "none" }, + "infill_sparse_density": { "default_value": 25 }, + "fill_outline_gaps": { "default_value": true }, + "retract_at_layer_change": { "default_value": true }, + "retraction_combing_max_distance": { "default_value": 200 }, + "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_acceleration": { "default_value": 2000 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" + }, + "machine_end_gcode": { + "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" + } + } +} diff --git a/resources/definitions/tevo_tarantula.def.json b/resources/definitions/tevo_tarantula.def.json index 8efa9c4f87..8811776a8f 100644 --- a/resources/definitions/tevo_tarantula.def.json +++ b/resources/definitions/tevo_tarantula.def.json @@ -48,6 +48,6 @@ "acceleration_print": { "default_value": 2650 }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y200 F3600 ;move extruder out of the way by moving the baseplate to the front for easier access to printed object\nM84 ;steppers off" }, - "speed_z_hop": {"default_value": 3} + "speed_z_hop": { "default_value": 3 } } } diff --git a/resources/definitions/tevo_tarantula_pro.def.json b/resources/definitions/tevo_tarantula_pro.def.json index 793942a50b..486ea92528 100644 --- a/resources/definitions/tevo_tarantula_pro.def.json +++ b/resources/definitions/tevo_tarantula_pro.def.json @@ -41,6 +41,7 @@ "machine_max_acceleration_y": { "default_value": 2000 }, "acceleration_print": { "default_value": 2000 }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z30.0 F9000 ;move the gentry up 30mm\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, - "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y220 F3600 ;move extruder out of the way by moving the baseplate to the front for easier access to printed object\nM84 ;steppers off" } + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y220 F3600 ;move extruder out of the way by moving the baseplate to the front for easier access to printed object\nM84 ;steppers off" }, + "speed_z_hop": { "default_value": 9 } } } diff --git a/resources/definitions/tinyboy_fabrikator15.def.json b/resources/definitions/tinyboy_fabrikator15.def.json index e115be6839..9f440a249f 100644 --- a/resources/definitions/tinyboy_fabrikator15.def.json +++ b/resources/definitions/tinyboy_fabrikator15.def.json @@ -9,7 +9,8 @@ "file_formats": "text/x-gcode", "platform": "tinyboy_fabrikator15.stl", "platform_offset": [-95, -3, -46], - "has_materials": false, + "has_materials": true, + "preferred_material": "generic_pla_175", "has_machine_quality": true, "preferred_quality_type": "normal", "machine_extruder_trains": @@ -33,12 +34,10 @@ "gantry_height": { "value": 45 }, "machine_center_is_zero": { "default_value": false }, "machine_start_gcode": { - "default_value": ";Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\n;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line\n;M109 S{print_temperature} ;Uncomment to add your own temperature line\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 X0.0 Y0.0 Z15.0 F{travel_speed} ;move the printhead up 15mm\nG92 E0 ;zero the extruded length\n;M109 S{print_temperature} ;set extruder temperature\nG1 F200 E30 ;extrude 30mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{travel_speed}\n;Put printing message on LCD screen\nM117 Printing..." - + "default_value": ";Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 X0.0 Y0.0 Z15.0 F6000 ;move the printhead up 15mm\nG92 E0 ;zero the extruded length\nM104 S{material_print_temperature} ;set extruder temperature\nM105\nM109 S{material_print_temperature} ;wait for extruder temperature\nG1 F200 E30 ;extrude 30mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F6000\n;Put printing message on LCD screen\nM117 Printing..." }, "machine_end_gcode": { - "default_value": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\n;{jobname}" - + "default_value": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\n;{jobname}" } } } diff --git a/resources/definitions/tizyx_evy.def.json b/resources/definitions/tizyx_evy.def.json index 7776007f41..5032ee16d7 100644 --- a/resources/definitions/tizyx_evy.def.json +++ b/resources/definitions/tizyx_evy.def.json @@ -70,6 +70,6 @@ "z_seam_type": {"default_value": "back"}, "z_seam_x": {"value": "127.5"}, "z_seam_y": {"value": "250"}, - "retraction_combing": {"default_value": "off"} + "retraction_combing": {"value": "'off'"} } } diff --git a/resources/definitions/tizyx_evy_dual.def.json b/resources/definitions/tizyx_evy_dual.def.json index 3b6892682a..2aafa5cecc 100644 --- a/resources/definitions/tizyx_evy_dual.def.json +++ b/resources/definitions/tizyx_evy_dual.def.json @@ -58,6 +58,6 @@ "z_seam_type": {"default_value": "back"}, "z_seam_x": {"value": "127.5"}, "z_seam_y": {"value": "250"}, - "retraction_combing": {"default_value": "off"} + "retraction_combing": {"value": "'off'"} } } diff --git a/resources/definitions/tizyx_k25.def.json b/resources/definitions/tizyx_k25.def.json index ccaa6fff0b..9f65d67313 100644 --- a/resources/definitions/tizyx_k25.def.json +++ b/resources/definitions/tizyx_k25.def.json @@ -55,6 +55,6 @@ "z_seam_type": {"default_value": "back"}, "z_seam_x": {"value": "127.5"}, "z_seam_y": {"value": "250"}, - "retraction_combing": {"default_value": "off"} + "retraction_combing": {"value": "'off'"} } } diff --git a/resources/definitions/tronxy_d01.def.json b/resources/definitions/tronxy_d01.def.json index ff8badd355..6a752656f7 100644 --- a/resources/definitions/tronxy_d01.def.json +++ b/resources/definitions/tronxy_d01.def.json @@ -5,7 +5,6 @@ "metadata": { "quality_definition": "tronxy_x", "visible": true, - "author": "AdderMk2", "platform": "tronxy.stl" }, "overrides": { @@ -22,16 +21,9 @@ }, "gantry_height": { "value": 30 }, - "machine_start_gcode": { "default_value": "; XY-2 Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG1 Z2.0 F3000 ; Move Z Axis up little to preventscratching of Heat Bed\nG1 X1 Y20 Z0.3 F3600.0 ; Move to start position\nG1 X1 Y220.0 Z0.3 F1500.0 E25 ; Draw the first line\nG1 X1.6 Y220.0 Z0.3 F3600.0 ; Move to side a little\nG1 X1.6 Y20 Z0.3 F1500.0 E50 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F3600.0 ; Move over to prevent blob squish" }, + "machine_start_gcode": { "default_value": "; D01 Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG1 Z2.0 F3000 ; Move Z Axis up little to preventscratching of Heat Bed\nG1 X1 Y20 Z0.3 F3600.0 ; Move to start position\nG1 X1 Y200.0 Z0.3 F1500.0 E25 ; Draw the first line\nG1 X1.6 Y200.0 Z0.3 F3600.0 ; Move to side a little\nG1 X1.6 Y20 Z0.3 F1500.0 E50 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F3600.0 ; Move over to prevent blob squish" }, + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - "machine_max_feedrate_x": { "value": 150 }, - "machine_max_feedrate_y": { "value": 150 }, - "machine_max_feedrate_z": { "value": 20 }, - "machine_max_feedrate_e": { "value": 120 }, - "machine_max_acceleration_x": { "value": 150 }, - "machine_max_acceleration_y": { "value": 150 }, - "machine_max_acceleration_z": { "value": 150 }, - "machine_max_acceleration_e": { "value": 150 }, "machine_acceleration": { "value": 120 } } } diff --git a/resources/definitions/tronxy_x.def.json b/resources/definitions/tronxy_x.def.json index aa61474f81..98832a636c 100644 --- a/resources/definitions/tronxy_x.def.json +++ b/resources/definitions/tronxy_x.def.json @@ -4,13 +4,14 @@ "inherits": "fdmprinter", "metadata": { "visible": false, - "author": "AdderMk2", + "author": "KV/AdderMk2", "manufacturer": "Tronxy", "file_formats": "text/x-gcode", "first_start_actions": ["MachineSettingsAction"], "machine_extruder_trains": { - "0": "tronxy_base_extruder_0" + "0": "tronxy_base_extruder_0", + "1": "tronxy_base_extruder_1" }, "has_materials": true, @@ -27,20 +28,6 @@ "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG1 Z15.0 F{speed_travel_layer_0}\nG0 E3 F200\nG92 E0\n" }, "machine_end_gcode": { "default_value": "M107 T0\nM104 S0\nM104 S0 T1\nM140 S0\nG92 E0\nG91\nG1 E-1 F300 \nG1 Z+0.5 E-5 X-20 Y-20 F9000\nG28 X0 Y0\nM84 ;steppers off\nG90 ;absolute positioning\n" }, - "machine_max_feedrate_x": { "value": 100 }, - "machine_max_feedrate_y": { "value": 100 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - - "machine_max_acceleration_x": { "value": 120 }, - "machine_max_acceleration_y": { "value": 120 }, - "machine_max_acceleration_z": { "value": 120 }, - "machine_max_acceleration_e": { "value": 120 }, - "machine_acceleration": { "value": 100 }, - - "machine_max_jerk_xy": { "value": 20 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, "machine_heated_bed": { "default_value": true }, @@ -51,7 +38,7 @@ "acceleration_travel_layer_0": { "value": "acceleration_travel" }, "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - "jerk_print": { "value": 20 }, + "jerk_print": { "value": 12 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, @@ -60,10 +47,10 @@ "speed_print": { "value": 60.0 } , "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 1.33" }, + "speed_wall": { "value": "speed_print *0.75" }, "speed_wall_0": { "value": "speed_wall" }, "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 1.5" }, + "speed_topbottom": { "value": "speed_print * 0.5" }, "speed_roofing": { "value": "speed_topbottom" }, "speed_travel": { "value": "60.0 if speed_print < 50 else 120.0 if speed_print > 80 else speed_print * 1.25" }, "speed_layer_0": { "value": 30.0 }, @@ -82,26 +69,26 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, + "material_flow": { "value": 95 }, + "material_flow_layer_0": { "value": 95 }, - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'sharpest_corner'" }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 56 else 'cubic'" }, "infill_before_walls": { "value": false }, "infill_overlap": { "value": 30.0 }, "skin_overlap": { "value": 10.0 }, "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, - "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, + "fill_outline_gaps": { "value": true }, + "filter_out_tiny_gaps": { "value": true }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e", + "default_value": 45, "maximum_value": 200 }, "retraction_retract_speed": { @@ -113,17 +100,19 @@ "maximum_value": 200 }, - "retraction_hop_enabled": { "value": "False" }, + "retraction_hop_enabled": { "value": "True" }, "retraction_hop": { "value": 0.2 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, - "travel_avoid_other_parts": { "value": true }, + "travel_avoid_other_parts": { "value": false }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, "retraction_enable": { "value": true }, + "retract_at_layer_change": { "value": true }, "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, + "retraction_extrusion_window": { "value": 5 }, + "retraction_hop_enabled": { "value": true }, "retraction_min_travel": { "value": 1.5 }, "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, @@ -143,24 +132,27 @@ "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_infill_angles": { "value": [45] }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 30" }, "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance": { "value": "wall_line_width_0 * 3" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, + "support_wall_count": { "value": 0 }, "support_brim_enable": { "value": true }, "support_brim_width": { "value": 4 }, - "support_interface_enable": { "value": true }, + "support_interface_enable": { "value": false }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_density": { "value": 33.333 }, "support_interface_pattern": { "value": "'grid'" }, "support_interface_skip_height": { "value": 0.2 }, "minimum_support_area": { "value": 2 }, "minimum_interface_area": { "value": 10 }, + "top_bottom_pattern": {"value": "'zigzag'" }, + "top_bottom_pattern_0": {"value": "'zigzag'" }, "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } + "wall_line_count": {"value": "3" } } } \ No newline at end of file diff --git a/resources/definitions/tronxy_x5sa.def.json b/resources/definitions/tronxy_x5sa.def.json index 0e70dd72b4..ba0b9a92e0 100644 --- a/resources/definitions/tronxy_x5sa.def.json +++ b/resources/definitions/tronxy_x5sa.def.json @@ -1,11 +1,10 @@ { - "name": "Tronxy X5SA/X5ST/Pro", + "name": "Tronxy X5SA/X5ST/Pro/2E/D01 Plus", "version": 2, "inherits": "tronxy_x", "metadata": { "quality_definition": "tronxy_x", "visible": true, - "author": "AdderMk2", "platform": "tronxy.stl" }, "overrides": { @@ -21,8 +20,11 @@ ] }, "gantry_height": { "value": 40 }, + "retraction_amount": { "value": 4.5 }, - "machine_start_gcode": { "default_value": "; X5SA Pro Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\n"}, - "machine_end_gcode": { "default_value": "G91\nG1 E-2 F3000\nG1 E-2 Z0.2 F1200\nG1 X5 Y5 F3600\nG1 Z10\nG90\nG1 X0 Y0\nM106 S0\nM104 S0\nM140 S0\n\nM84 X Y E\n" } + "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, + "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, + + "machine_acceleration": { "value": 150 } } } diff --git a/resources/definitions/tronxy_x5sa_400.def.json b/resources/definitions/tronxy_x5sa_400.def.json index 5604b17619..d1448a3287 100644 --- a/resources/definitions/tronxy_x5sa_400.def.json +++ b/resources/definitions/tronxy_x5sa_400.def.json @@ -1,11 +1,10 @@ { - "name": "Tronxy X5SA/X5ST/Pro 400", + "name": "Tronxy X5SA/X5ST/Pro/2E 400mm", "version": 2, "inherits": "tronxy_x", "metadata": { "quality_definition": "tronxy_x", "visible": true, - "author": "AdderMk2", "platform": "tronxy.stl" }, "overrides": { @@ -21,13 +20,11 @@ ] }, "gantry_height": { "value": 40 }, + "retraction_amount": { "value": 6.5 }, - "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG1 Z2.0 F3000 ; Move Z Axis up little to preventscratching of Heat Bed\nG1 X1 Y20 Z0.3 F3600.0 ; Move to start position\nG1 X1 Y370.0 Z0.3 F1500.0 E25 ; Draw the first line\nG1 X1.6 Y370.0 Z0.3 F3600.0 ; Move to side a little\nG1 X1.6 Y20 Z0.3 F1500.0 E50 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F3600.0 ; Move over to prevent blob squish"}, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 \nG1 E-2 Z0.2 F2400 \nG1 X5 Y5 F3000\nG1 Z10\nG90\n\nG1 X0 Y0 \nM106 S0\nM104 S0\nM140 S0\n\nM84 X Y E \n" }, + "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y290 F1500.0 E15 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E30 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, + "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, - "machine_max_feedrate_x": { "value": 100 }, - "machine_max_feedrate_y": { "value": 100 }, - "machine_max_feedrate_z": { "value": 20 }, - "machine_max_feedrate_e": { "value": 120 } + "machine_acceleration": { "value": 150 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tronxy_x5sa_500.def.json b/resources/definitions/tronxy_x5sa_500.def.json index b68a954115..44f8d1ba1a 100644 --- a/resources/definitions/tronxy_x5sa_500.def.json +++ b/resources/definitions/tronxy_x5sa_500.def.json @@ -1,11 +1,10 @@ { - "name": "Tronxy X5SA/X5ST/Pro 500", + "name": "Tronxy X5SA/X5ST/Pro/2E 500mm", "version": 2, "inherits": "tronxy_x", "metadata": { "quality_definition": "tronxy_x", "visible": true, - "author": "AdderMk2", "platform": "tronxy.stl" }, "overrides": { @@ -21,13 +20,11 @@ ] }, "gantry_height": { "value": 40 }, + "retraction_amount": { "value": 6.5 }, - "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\n "}, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 \nG1 E-2 Z0.2 F2400 \nG1 X5 Y5 F3000\nG1 Z10\nG90\n\nG1 X0 Y0 \nM106 S0\nM104 S0\nM140 S0\n\nM84 X Y E \n" }, + "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y290 F1500.0 E15 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E30 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, + "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, - "machine_max_feedrate_x": { "value": 150 }, - "machine_max_feedrate_y": { "value": 150 }, - "machine_max_feedrate_z": { "value": 20 }, - "machine_max_feedrate_e": { "value": 120 } + "machine_acceleration": { "value": 150 } } } diff --git a/resources/definitions/tronxy_xy2.def.json b/resources/definitions/tronxy_xy2.def.json index eaae1dbb08..7894141b9d 100644 --- a/resources/definitions/tronxy_xy2.def.json +++ b/resources/definitions/tronxy_xy2.def.json @@ -5,7 +5,6 @@ "metadata": { "quality_definition": "tronxy_x", "visible": true, - "author": "AdderMk2", "platform": "tronxy.stl" }, "overrides": { @@ -21,18 +20,11 @@ ] }, "gantry_height": { "value": 40 }, + "retraction_amount": { "value": 4.5 }, - "machine_start_gcode": { "default_value": "; XY-2 Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\n"}, - "machine_end_gcode": { "default_value": "G91\nG1 E-2 F3000\nG1 E-2 Z0.2 F1200\nG1 X5 Y5 F3600\nG1 Z10\nG90\nG1 X0 Y{machine_depth}\nM106 S0 ;Turn-off fan\nM104 S0\nM140 S0\n\nM84 X Y E\n" }, + "machine_start_gcode": { "default_value": "; XY-2 Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - "machine_max_feedrate_x": { "value": 100 }, - "machine_max_feedrate_y": { "value": 100 }, - "machine_max_feedrate_z": { "value": 20 }, - "machine_max_feedrate_e": { "value": 120 }, - "machine_max_acceleration_x": { "value": 150 }, - "machine_max_acceleration_y": { "value": 150 }, - "machine_max_acceleration_z": { "value": 150 }, - "machine_max_acceleration_e": { "value": 150 }, - "machine_acceleration": { "value": 80 } + "machine_acceleration": { "value": 150 } } } diff --git a/resources/definitions/tronxy_xy2pro.def.json b/resources/definitions/tronxy_xy2pro.def.json index 59e727bbb0..ed16c34352 100644 --- a/resources/definitions/tronxy_xy2pro.def.json +++ b/resources/definitions/tronxy_xy2pro.def.json @@ -1,11 +1,10 @@ { - "name": "Tronxy XY-2 Pro", + "name": "Tronxy XY-2 Pro/Pro 2E/XY3 SE", "version": 2, "inherits": "tronxy_x", "metadata": { "quality_definition": "tronxy_x", "visible": true, - "author": "AdderMk2", "platform": "tronxy.stl" }, "overrides": { @@ -21,23 +20,11 @@ ] }, "gantry_height": { "value": 40 }, + "retraction_amount": { "value": 4.5 }, - "machine_start_gcode": { "default_value": "; XY-2 Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\n"}, - "machine_end_gcode": { "default_value": "G91\nG1 E-2 F3000\nG1 E-2 Z0.2 F1200\nG1 X5 Y5 F3600\nG1 Z10\nG90\nG1 X0 Y{machine_depth}\nM106 S0\nM104 S0\nM140 S0\n\nM84 X Y E\n" }, + "machine_start_gcode": { "default_value": "; XY-2 Pro Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - "machine_max_feedrate_x": { "value": 100 }, - "machine_max_feedrate_y": { "value": 100 }, - "machine_max_feedrate_z": { "value": 20 }, - "machine_max_feedrate_e": { "value": 120 }, - - "machine_max_acceleration_x": { "value": 120 }, - "machine_max_acceleration_y": { "value": 120 }, - "machine_max_acceleration_z": { "value": 120 }, - "machine_max_acceleration_e": { "value": 120 }, - "machine_acceleration": { "value": 150 }, - - "machine_max_jerk_xy": { "value": 20 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 } + "machine_acceleration": { "value": 150 } } } diff --git a/resources/definitions/tronxy_xy3.def.json b/resources/definitions/tronxy_xy3.def.json index db03c344f5..345def8926 100644 --- a/resources/definitions/tronxy_xy3.def.json +++ b/resources/definitions/tronxy_xy3.def.json @@ -1,11 +1,10 @@ { - "name": "Tronxy XY-3", + "name": "Tronxy XY-3/Pro", "version": 2, "inherits": "tronxy_x", "metadata": { "quality_definition": "tronxy_x", "visible": true, - "author": "AdderMk2", "platform": "tronxy.stl" }, "overrides": { @@ -21,18 +20,11 @@ ] }, "gantry_height": { "value": 30 }, + "retraction_amount": { "value": 5 }, - "machine_start_gcode": { "default_value": "; XY-2 Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\n"}, - "machine_end_gcode": { "default_value": "G91\nG1 E-2 F3000\nG1 E-2 Z0.2 F1200\nG1 X5 Y5 F3600\nG1 Z10\nG90\nG1 X0 Y{machine_depth}\nM106 S0\nM104 S0\nM140 S0\n\nM84 X Y E\n" }, + "machine_start_gcode": { "default_value": "; XY-3 Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - "machine_max_feedrate_x": { "value": 100 }, - "machine_max_feedrate_y": { "value": 100 }, - "machine_max_feedrate_z": { "value": 20 }, - "machine_max_feedrate_e": { "value": 120 }, - "machine_max_acceleration_x": { "value": 150 }, - "machine_max_acceleration_y": { "value": 150 }, - "machine_max_acceleration_z": { "value": 150 }, - "machine_max_acceleration_e": { "value": 150 }, - "machine_acceleration": { "value": 80 } + "machine_acceleration": { "value": 150 } } } diff --git a/resources/definitions/tronxy_xy3proV2.def.json b/resources/definitions/tronxy_xy3proV2.def.json new file mode 100644 index 0000000000..841c159375 --- /dev/null +++ b/resources/definitions/tronxy_xy3proV2.def.json @@ -0,0 +1,32 @@ +{ + "name": "Tronxy XY-3 Pro V2", + "version": 2, + "inherits": "tronxy_x", + "metadata": { + "quality_definition": "tronxy_x", + "visible": true, + "platform": "tronxy.stl" + }, + "overrides": { + "machine_name": { "default_value": "Tronxy XY-3" }, + "machine_width": { "default_value": 310 }, + "machine_depth": { "default_value": 310 }, + "machine_height": { "default_value": 330 }, + "machine_head_with_fans_polygon": { "default_value": [ + [-30, 45], + [-30, -30], + [27, -30], + [27, 45] + ] + }, + "gantry_height": { "value": 30 }, + "retraction_amount": { "value": 0.5 }, + "retraction_speed": { "value": 45 }, + + + "machine_start_gcode": { "default_value": "; XY-3 Pro Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, + + "machine_acceleration": { "value": 150 } + } +} diff --git a/resources/definitions/two_trees_base.def.json b/resources/definitions/two_trees_base.def.json index faeb4950b2..2da670cdf6 100644 --- a/resources/definitions/two_trees_base.def.json +++ b/resources/definitions/two_trees_base.def.json @@ -26,13 +26,12 @@ "overrides": { "machine_name": { "default_value": "Two Trees Base Printer" }, "machine_start_gcode": { "default_value": "G28 ;Home\nM420 S1 ;Enable ABL using saved Mesh and Fade Height\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" }, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, "machine_heated_bed": { "default_value": true }, "material_diameter": { "default_value": 1.75 }, - - + "speed_print": { "value": 50.0 } , "speed_infill": { "value": "speed_print" }, "speed_wall": { "value": "speed_print / 2" }, @@ -64,11 +63,9 @@ "infill_wipe_dist": { "value": 0.0 }, "wall_0_wipe_dist": { "value": 0.0 }, - "fill_perimeter_gaps": { "value": "'everywhere'" }, "fill_outline_gaps": { "value": false }, "filter_out_tiny_gaps": { "value": false }, - "retraction_hop_enabled": { "value": "False" }, "retraction_hop": { "value": 0.2 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, @@ -121,6 +118,5 @@ "minimum_interface_area": { "value": 10 }, "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, "wall_thickness": {"value": "line_width * 2" } - } } diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 47a60fe51c..e8eae781d1 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -40,6 +40,33 @@ { "value": false, "enabled": false + }, + "skin_angles": { + "value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]" + }, + "line_width": { + "value": "machine_nozzle_size" + }, + "infill_before_walls": { + "value": "False" + }, + "retraction_combing": { + "value": "'no_outer_surfaces'" + }, + "skin_monotonic" : { + "value": true + }, + "speed_equalize_flow_width_factor": { + "value": "110.0" + }, + "meshfix_maximum_extrusion_area_deviation": { + "value": "50000" + }, + "top_layers": { + "value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" + }, + "bottom_layers": { + "value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))" } } } diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json index 8250e70104..7c0e81b428 100644 --- a/resources/definitions/ultimaker2_plus.def.json +++ b/resources/definitions/ultimaker2_plus.def.json @@ -35,7 +35,7 @@ "value": "round(machine_nozzle_size / 1.5, 2)" }, "line_width": { - "value": "round(machine_nozzle_size * 0.875, 2)" + "value": "machine_nozzle_size" }, "speed_support": { "value": "speed_wall_0" diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index c0ddcf813f..186637b487 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -7,8 +7,9 @@ "manufacturer": "Ultimaker B.V.", "weight": 1, "file_formats": "application/x-ufp;text/x-gcode", - "platform": "ultimaker3_platform.obj", + "platform": "ultimaker2_plus_connect_platform.obj", "platform_texture": "Ultimaker2PlusConnectbackplate.png", + "platform_offset": [-1, -6, 0], "preferred_variant_name": "0.4 mm", "has_variants": true, "has_materials": true, @@ -55,28 +56,36 @@ }, "infill_wipe_dist": { "value": "0" }, "infill_overlap": { "value": "0" }, - "infill_pattern": { "value": "'grid'" }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'grid'" }, "speed_infill": { "value": "speed_print" }, "speed_wall_x": { "value": "speed_wall" }, "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, - "line_width": { "value": "round(machine_nozzle_size * 0.875, 2)" }, + "line_width": { "value": "machine_nozzle_size" }, "optimize_wall_printing_order": { "value": "True" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }, "speed_support": { "value": "speed_wall_0" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { + "value": "material_print_temperature", + "maximum_value": 260 + }, + "material_final_print_temperature": { + "value": "material_print_temperature", + "maximum_value": 260 + }, + "material_print_temperature_layer_0": { + "value": "material_print_temperature", + "maximum_value": 260 + }, "machine_start_gcode": { "value": "''" }, "machine_end_gcode": { "value": "''" }, "material_bed_temperature": { "maximum_value": 110 }, "material_bed_temperature_layer_0": { "maximum_value": 110 }, "material_print_temperature": { "maximum_value": 260 }, - "material_print_temperature_layer_0": { "maximum_value": 260 }, - "material_initial_print_temperature": { "maximum_value": 260 }, - "material_final_print_temperature": { "maximum_value": 260 }, "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 60" }, - "meshfix_maximum_deviation": { "value": "layer_height / 4" }, + "meshfix_maximum_deviation": { "value": "layer_height / 4" }, "meshfix_maximum_travel_resolution": { "value": 0.5 }, - "prime_blob_enable": { "enabled": true, "default_value": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" } + "prime_blob_enable": { "enabled": true, "default_value": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, + "retraction_prime_speed": { "value": "15" }, + "retraction_speed": {"value": "45" } } } diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 46ade6d85b..197bfa4513 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -84,36 +84,41 @@ "acceleration_enabled": { "value": "True" }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, - "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, - "acceleration_print": { "value": "4000" }, - "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, + "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, + "acceleration_print": { "value": "3500" }, + "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, "acceleration_support_interface": { "value": "acceleration_topbottom" }, - "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, - "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, - "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, + "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" }, + "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 3500)" }, "brim_width": { "value": "3" }, "cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" }, "cool_fan_speed": { "value": "50" }, "cool_fan_speed_max": { "value": "100" }, "cool_min_speed": { "value": "5" }, - "infill_line_width": { "value": "round(line_width * 0.5 / 0.35, 2)" }, "infill_overlap": { "value": "0" }, - "infill_pattern": { "value": "'triangles'" }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_wipe_dist": { "value": "0" }, "initial_layer_line_width_factor": { "value": "120" }, "jerk_enabled": { "value": "True" }, - "jerk_layer_0": { "value": "jerk_topbottom" }, - "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, - "jerk_print": { "value": "25" }, - "jerk_support": { "value": "math.ceil(jerk_print * 15 / 25)" }, - "jerk_support_interface": { "value": "jerk_topbottom" }, - "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, - "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, - "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, + "jerk_print": { "value": "20", "minimum_value_warning": 20 }, + "jerk_infill": {"minimum_value_warning": 20 }, + "jerk_wall": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_wall_0": { "value": "jerk_wall", "minimum_value_warning": 20 }, + "jerk_roofing": {"minimum_value_warning": 20 }, + "jerk_topbottom": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_support": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_support_infill": {"minimum_value_warning": 20 }, + "jerk_support_interface": { "value": "math.ceil(jerk_print * 5 / 20)"}, + "jerk_prime_tower": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_travel": {"minimum_value_warning": 20 }, + "jerk_layer_0": { "value": "jerk_topbottom", "minimum_value_warning": 20}, + "jerk_print_layer_0": {"minimum_value_warning": 20 }, + "jerk_travel_layer_0": {"minimum_value_warning": 20 }, + "jerk_skirt_brim": {"minimum_value_warning": 20 }, "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, - "line_width": { "value": "round(machine_nozzle_size * 0.875, 3)" }, "machine_min_cool_heat_time_window": { "value": "15" }, "default_material_print_temperature": { "value": "200" }, "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, @@ -161,7 +166,6 @@ "top_bottom_thickness": { "value": "1" }, "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, "wall_0_inset": { "value": "0" }, - "wall_line_width_x": { "value": "round(wall_line_width * 0.3 / 0.35, 2)" }, "wall_thickness": { "value": "1" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json index d209c28a07..15b381f4da 100644 --- a/resources/definitions/ultimaker_original.def.json +++ b/resources/definitions/ultimaker_original.def.json @@ -59,6 +59,9 @@ }, "machine_end_gcode": { "value": "'M104 S0 ;extruder heater off' + ('\\nM140 S0 ;heated bed heater off' if machine_heated_bed else '') + '\\nG91 ;relative positioning\\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\\nM84 ;steppers off\\nG90 ;absolute positioning'" + }, + "infill_before_walls": { + "value": "False" } } } diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 3b61a18120..034a2d78d4 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -77,39 +77,45 @@ "acceleration_enabled": { "value": "True" }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, - "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, - "acceleration_print": { "value": "4000" }, - "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, + "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, + "acceleration_print": { "value": "3500" }, + "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, "acceleration_support_interface": { "value": "acceleration_topbottom" }, - "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, - "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, - "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, + "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" }, + "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, "brim_width": { "value": "3" }, "cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" }, "cool_fan_speed": { "value": "50" }, "cool_fan_speed_max": { "value": "100" }, "cool_min_speed": { "value": "5" }, - "infill_line_width": { "value": "round(line_width * 0.5 / 0.35, 2)" }, "infill_overlap": { "value": "0" }, - "infill_pattern": { "value": "'triangles'" }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_wipe_dist": { "value": "0" }, "jerk_enabled": { "value": "True" }, - "jerk_layer_0": { "value": "jerk_topbottom" }, - "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, - "jerk_print": { "value": "25" }, - "jerk_support": { "value": "math.ceil(jerk_print * 15 / 25)" }, - "jerk_support_interface": { "value": "jerk_topbottom" }, - "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, - "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, - "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, + "jerk_print": { "value": "20", "minimum_value_warning": 20 }, + "jerk_infill": {"minimum_value_warning": 20 }, + "jerk_wall": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_wall_0": { "value": "jerk_wall", "minimum_value_warning": 20 }, + "jerk_roofing": {"minimum_value_warning": 20 }, + "jerk_topbottom": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_support": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_support_infill": {"minimum_value_warning": 20 }, + "jerk_support_interface": { "value": "math.ceil(jerk_print * 5 / 20)"}, + "jerk_prime_tower": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_travel": {"minimum_value_warning": 20 }, + "jerk_layer_0": { "value": "jerk_topbottom", "minimum_value_warning": 20}, + "jerk_print_layer_0": {"minimum_value_warning": 20 }, + "jerk_travel_layer_0": {"minimum_value_warning": 20 }, + "jerk_skirt_brim": {"minimum_value_warning": 20 }, "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, - "line_width": { "value": "machine_nozzle_size * 0.875" }, "machine_min_cool_heat_time_window": { "value": "15" }, "default_material_print_temperature": { "value": "200" }, "material_standby_temperature": { "value": "100" }, "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, "prime_tower_enable": { "value": "True" }, "raft_airgap": { "value": "0" }, "raft_base_speed": { "value": "20" }, @@ -130,8 +136,8 @@ "retraction_hop_only_when_collides": { "value": "True" }, "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, + "retraction_speed": {"value": "45" }, "skin_overlap": { "value": "10" }, - "speed_equalize_flow_enabled": { "value": "True" }, "speed_layer_0": { "value": "20" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": "35" }, @@ -153,12 +159,9 @@ "travel_avoid_supports": { "value": "True" }, "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, "wall_0_inset": { "value": "0" }, - "wall_line_width_x": { "value": "round(line_width * 0.3 / 0.35, 2)" }, "wall_thickness": { "value": "1" }, "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 60" }, "meshfix_maximum_deviation": { "value": "layer_height / 4" }, - "optimize_wall_printing_order": { "value": "True" }, - "retraction_combing": { "default_value": "all" }, "initial_layer_line_width_factor": { "value": "120" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 8e701eeff4..36aa311c23 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -79,35 +79,40 @@ "acceleration_enabled": { "value": "True" }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, - "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, - "acceleration_print": { "value": "4000" }, - "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, + "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, + "acceleration_print": { "value": "3500" }, + "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, "acceleration_support_interface": { "value": "acceleration_topbottom" }, - "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, - "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, - "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, + "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" }, + "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, "brim_width": { "value": "3" }, "cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" }, "cool_fan_speed": { "value": "50" }, "cool_fan_speed_max": { "value": "100" }, "cool_min_speed": { "value": "5" }, - "infill_line_width": { "value": "round(line_width * 0.5 / 0.35, 2)" }, "infill_overlap": { "value": "0" }, - "infill_pattern": { "value": "'triangles'" }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_wipe_dist": { "value": "0" }, "jerk_enabled": { "value": "True" }, - "jerk_layer_0": { "value": "jerk_topbottom" }, - "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, - "jerk_print": { "value": "25" }, - "jerk_support": { "value": "math.ceil(jerk_print * 15 / 25)" }, - "jerk_support_interface": { "value": "jerk_topbottom" }, - "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, - "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, - "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, + "jerk_print": { "value": "20", "minimum_value_warning": 20 }, + "jerk_infill": {"minimum_value_warning": 20 }, + "jerk_wall": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_wall_0": { "value": "jerk_wall", "minimum_value_warning": 20 }, + "jerk_roofing": {"minimum_value_warning": 20 }, + "jerk_topbottom": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_support": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_support_infill": {"minimum_value_warning": 20 }, + "jerk_support_interface": { "value": "math.ceil(jerk_print * 5 / 20)"}, + "jerk_prime_tower": { "value": "jerk_print", "minimum_value_warning": 20 }, + "jerk_travel": {"minimum_value_warning": 20 }, + "jerk_layer_0": { "value": "jerk_topbottom", "minimum_value_warning": 20}, + "jerk_print_layer_0": {"minimum_value_warning": 20 }, + "jerk_travel_layer_0": {"minimum_value_warning": 20 }, + "jerk_skirt_brim": {"minimum_value_warning": 20 }, "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, - "line_width": { "value": "machine_nozzle_size * 0.875" }, "machine_min_cool_heat_time_window": { "value": "15" }, "default_material_print_temperature": { "value": "200" }, "material_standby_temperature": { "value": "100" }, @@ -125,6 +130,7 @@ "raft_speed": { "value": "25" }, "raft_surface_layers": { "value": "1" }, "retraction_amount": { "value": "6.5" }, + "retraction_combing": { "value": "'no_outer_surfaces'"}, "retraction_count_max": { "value": "10" }, "retraction_extrusion_window": { "value": "1" }, "retraction_hop": { "value": "2" }, @@ -132,8 +138,8 @@ "retraction_hop_only_when_collides": { "value": "True" }, "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, + "retraction_speed": {"value": "45" }, "skin_overlap": { "value": "10" }, - "speed_equalize_flow_enabled": { "value": "True" }, "speed_layer_0": { "value": "20" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": "35" }, @@ -155,12 +161,10 @@ "travel_avoid_supports": { "value": "True" }, "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, "wall_0_inset": { "value": "0" }, - "wall_line_width_x": { "value": "round(line_width * 0.3 / 0.35, 2)" }, "wall_thickness": { "value": "1" }, "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 60" }, "meshfix_maximum_deviation": { "value": "layer_height / 4" }, "optimize_wall_printing_order": { "value": "True" }, - "retraction_combing": { "default_value": "all" }, "initial_layer_line_width_factor": { "value": "120" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }, "build_volume_temperature": { "maximum_value": 50 } diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index b6938ad991..ec069b24fb 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -104,7 +104,7 @@ "retraction_prime_speed": { "value": "math.ceil(retraction_speed * 0.4)", "maximum_value_warning": 130 }, "retraction_hop_enabled": { "default_value": true }, "retraction_hop": { "default_value": 0.2 }, - "retraction_combing": { "default_value": "noskin" }, + "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "default_value": 10 }, "travel_avoid_other_parts": { "default_value": false }, "speed_travel": { "maximum_value": 300, "value": 300, "maximum_value_warning": 501 }, @@ -136,7 +136,6 @@ "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, "line_width": { "value": "machine_nozzle_size * 1.125" }, "wall_line_width": { "value": "machine_nozzle_size" }, - "fill_perimeter_gaps": { "default_value": "nowhere" }, "fill_outline_gaps": { "default_value": true }, "meshfix_maximum_resolution": { "default_value": 0.01 }, "infill_before_walls": { "default_value": false }, diff --git a/resources/definitions/weedo_x40.def.json b/resources/definitions/weedo_x40.def.json new file mode 100644 index 0000000000..6dc45612b1 --- /dev/null +++ b/resources/definitions/weedo_x40.def.json @@ -0,0 +1,291 @@ +{ + "version": 2, + "name": "Weedo X40", + "inherits": "fdmprinter", + "metadata": { + "author": "X40-Community.org", + "manufacturer": "Weedo", + "visible": true, + "file_formats": "text/x-gcode", + "platform": "weedo_x40.3mf", + "platform_offset": [ 0, 193, 35], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "preferred_material": "generic_pla_175", + "exclude_materials": [ + "3D-Fuel_PLA_PRO_Black", + "3D-Fuel_PLA_SnapSupport", + "bestfilament_abs_skyblue", + "bestfilament_petg_orange", + "bestfilament_pla_green", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "generic_pc_175", + "generic_nylon_175", + "goofoo_abs", + "goofoo_asa", + "goofoo_bronze_pla", + "goofoo_emarble_pla", + "goofoo_esilk_pla", + "goofoo_hips", + "goofoo_pa_cf", + "goofoo_pa", + "goofoo_pc", + "goofoo_peek", + "goofoo_petg", + "goofoo_pla", + "goofoo_pva", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "goofoo_wood_pla", + "emotiontech_abs", + "emotiontech_absx", + "emotiontech_acetate", + "emotiontech_asax", + "emotiontech_bvoh", + "emotiontech_copa", + "emotiontech_hips", + "emotiontech_nylon_1030", + "emotiontech_nylon_1030cf", + "emotiontech_nylon_1070", + "emotiontech_pc", + "emotiontech_pekk", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pla_hr_870", + "emotiontech_pva-m", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "eryone_petg", + "eryone_pla_glow", + "eryone_pla_matte", + "eryone_pla_wood", + "eryone_pla", + "eSUN_PETG_Black", + "eSUN_PETG_Grey", + "eSUN_PETG_Purple", + "eSUN_PLA_PRO_Black", + "eSUN_PLA_PRO_Grey", + "eSUN_PLA_PRO_Purple", + "eSUN_PLA_PRO_White", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fdplast_abs_tomato", + "fdplast_petg_gray", + "fdplast_pla_olive", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "layer_one_black_pla", + "layer_one_dark_gray_pla", + "layer_one_white_pla", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla_bois", + "tizyx_pla", + "tizyx_pva", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "volumic_abs_ultra", + "volumic_arma_ultra", + "volumic_asa_ultra", + "volumic_br80_ultra", + "volumic_bumper_ultra", + "volumic_cu80_ultra", + "volumic_flex93_ultra", + "volumic_medical_ultra", + "volumic_nylon_ultra", + "volumic_pekk_carbone", + "volumic_petg_ultra", + "volumic_petgcarbone_ultra", + "volumic_pla_ultra", + "volumic_pp_ultra", + "volumic_strong_ultra", + "volumic_support_ultra", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "preferred_variant_name": "0.4mm Nozzle", + "preferred_quality_type": "normal", + "variants_name": "Nozzle Type", + "machine_extruder_trains": + { + "0": "weedo_x40_extruder_left_0", + "1": "weedo_x40_extruder_right_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "Weedo X40" }, + "machine_width": { "default_value": 300 }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 400 }, + "machine_heated_bed": { "default_value": true }, + "machine_nozzle_heat_up_speed": { "default_value": 1.6 }, + "machine_nozzle_cool_down_speed": { "default_value": 0.75 }, + "machine_head_with_fans_polygon": + { + "default_value": + [ + [ -42.5, 18 ], + [ -42.5, -50 ], + [ 24.5, 18 ], + [ 24.5, -50.0 ] + ] + }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_acceleration": { "value": 500 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_acceleration_e": { "value": 5000 }, + "gantry_height": { "value": "12" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_start_gcode": {"default_value": "; x40-community.org configuration Rev. 08\n;(**** start.gcode for WEEDO X40 DUAL****)\nT{initial_extruder_nr} S ; Selected start extruder\nM140 S{material_bed_temperature_layer_0} ; Preheat bed\nM109 S{material_print_temperature_layer_0}; Preheat nozzle\nM73 P0 ; Set current print progress percentage\nG21 ; Millimeter Units\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nT0 S ; Select left extruder\nM301 H1 P15.53 I1.32 D45.75 ; PID left extruder with Weedo X40 coolingsystem\n;M301 H1 P13.32 I0.98 D45.13 ; PID left extruder with X40 Community coolingsystem\nM92 E94.90 ; Calibrate left extruder\nT1 S ; Select right extruder\nM301 H1 P15.44 I1.29 D46.11 ; PID right extruder with Weedo X40 coolingsystem\n;M301 H1 P13.32 I0.98 D45.13 ; PID right extruder with X40 Community coolingsystem\nM92 E94.90 ; Calibrate right extruder\nT0 S ; Select left extruder\nG28 ; Auto home\nG29 ; Bed Leveling\nG1 X-47 F3000 ; Move left nozzle to parking position\nT1 S ; select right extruder\nG1 X351 F3000 ; Move right nozzle to parking position\nM107 P0 ; Turn off left fan\nM107 P1 ; Turn off right fan\nT{initial_extruder_nr} S ; Set start extruder\nM190 S{material_bed_temperature_layer_0} ; Waiting for bed temperature\nG1 E50 F100 ; Extrude in parking position\nM77 ; Stop heat up timer\nM75 ; Start print timer\n" + }, + "machine_end_gcode": {"default_value": "(*********end X40 End.gcode*******)\nG28 X Y F3000\nG91 ; Relative positioning\nG1 E-6 ; Reduce filament pressure\nG90 ; Absolute positioning\nG0 Y300 F3000 ; Move headbed\nM104 S0 T0 ; Cool down left extruder\nM104 S0 T1 ; Cool down right extruder\nM140 S0 ; Cool down heatbed\nM107 P0 ; Turn off left fan\nM107 P1 ; Turn off right fan\nM82; Extruder in absolute mode\nM73 P100 ; Set print progress to 100%" }, + + "speed_travel": + { + "maximum_value": "150", + "value": "150" + }, + + "acceleration_enabled": { "value": false }, + "acceleration_print": { "value": 1000 }, + "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, + "acceleration_support_interface": { "value": "acceleration_topbottom" }, + "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, + "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, + "acceleration_travel": { "value": 2000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel / 2" }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "adhesion_type": { "value": "'brim'" }, + "brim_width": { "value": "8" }, + "bridge_settings_enabled": { "default_value": true }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_fan_speed": { "value": "50" }, + "cool_fan_speed_max": { "value": "100" }, + "cool_min_speed": { "value": "7" }, + "fill_outline_gaps": { "value": false }, + "filter_out_tiny_gaps": { "value": false }, + "infill_line_width": { "value": "round(line_width * 0.42 / 0.35, 2)" }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "infill_sparse_density": { "value": "20" }, + "infill_before_walls": { "value": false }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 11 }, + + "jerk_wall": { "value": "jerk_print - 2" }, + "jerk_travel": { "value": 18 }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "layer_height_0": { "value": "round(layer_height * 1.5, 2)" }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_min_cool_heat_time_window": { "default_value": 360 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_center_is_zero": { "default_value": false }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "value": 100 }, + "material_standby_temperature": { "value": "100" }, + "material_print_temp_prepend": { "default_value":false }, + "prime_tower_enable": { "default_value": false }, + "raft_airgap": { "default_value": 0.22 }, + "raft_base_speed":{ "value": 20 }, + "raft_interface_speed": { "value": 33 }, + "raft_margin": { "default_value": 8 }, + "retraction_enable": { "value": true }, + "retraction_amount": { "default_value": 4.5 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 8 }, + "retraction_hop": { "value": 0.5 }, + "retraction_hop_enabled": { "value": "False" }, + "retraction_min_travel": { "value": 1.5 }, + "skin_overlap": { "value": 10.0 }, + "speed_layer_0": { "value": "round(speed_print / 2.5, 2)" }, + "speed_print": { "value": 50.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_print" }, + "speed_topbottom": { "value": "speed_print / 2" }, + "speed_wall": { "value": "speed_print / 2" }, + "speed_wall_0": { "value": "speed_wall" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_infill": { "value": "speed_print" }, + "speed_support_infill": { "value": 58.0 }, + "speed_print_layer_0": { "value": "speed_layer_0" }, + "speed_travel_layer_0": { "value": 60 }, + "speed_support_roof": { "value": 39.0 }, + "speed_support_bottom": { "value": 39.0 }, + "speed_roofing": { "value": 30.0 }, + "support_angle": { "default_value": 45 }, + "support_pattern": { "value": "'zigzag'" }, + "support_use_towers": { "value": true }, + "support_fan_enable": { "value": true }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "support_supported_skin_fan_speed": { "value": 100 }, + "switch_extruder_retraction_amount": { "value": 0 }, + "travel_avoid_other_parts": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "top_bottom_thickness": {"value": "line_width * 2" }, + "travel_avoid_supports": { "value": true }, + "wall_thickness": {"value": "line_width * 2" }, + "wall_0_wipe_dist": { "value": 0.0 }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "optimize_wall_printing_order": { "value": "True" }, + "ooze_shield_enabled":{ "default_value":false }, + "ooze_shield_dist":{ "default_value":3.0 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_speed": { "default_value": 28 }, + "z_seam_type": { "value": "'back'" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" } + } +} diff --git a/resources/definitions/winbo_dragonl4.def.json b/resources/definitions/winbo_dragonl4.def.json index 2798abffc2..746b9ce2fe 100644 --- a/resources/definitions/winbo_dragonl4.def.json +++ b/resources/definitions/winbo_dragonl4.def.json @@ -107,7 +107,6 @@ "speed_wall": { "value": "speed_print*wall_line_width_0/line_width" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 0.6)" }, "speed_wall_x": { "value": "speed_wall" }, - "speed_equalize_flow_enabled": { "value": "False" }, "support_angle": { "value": "50" }, "support_xy_distance": { "value": "1" }, "support_z_distance": { "value": "max((0.2 if(0.2%layer_height==0) else layer_height*int((0.2+layer_height)/layer_height)),layer_height)" }, @@ -129,7 +128,6 @@ "support_interface_enable": { "value": "True" }, "support_interface_height": { "value": "0.5" }, "support_roof_pattern": { "value": "'concentric'" }, - "z_seam_type": { "value": "'shortest'" }, - "speed_equalize_flow_max": { "value": "65" } + "z_seam_type": { "value": "'shortest'" } } } diff --git a/resources/definitions/winbo_mini2.def.json b/resources/definitions/winbo_mini2.def.json index a43948a49d..903142010b 100644 --- a/resources/definitions/winbo_mini2.def.json +++ b/resources/definitions/winbo_mini2.def.json @@ -107,7 +107,6 @@ "speed_wall": { "value": "speed_print*wall_line_width_0/line_width" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 0.6)" }, "speed_wall_x": { "value": "speed_wall" }, - "speed_equalize_flow_enabled": { "value": "False" }, "support_angle": { "value": "50" }, "support_xy_distance": { "value": "1" }, "support_z_distance": { "value": "max((0.2 if(0.2%layer_height==0) else layer_height*int((0.2+layer_height)/layer_height)),layer_height)" }, @@ -129,7 +128,6 @@ "support_interface_enable": { "value": "True" }, "support_interface_height": { "value": "0.5" }, "support_roof_pattern": { "value": "'concentric'" }, - "z_seam_type": { "value": "'shortest'" }, - "speed_equalize_flow_max": { "value": "65" } + "z_seam_type": { "value": "'shortest'" } } } diff --git a/resources/definitions/winbo_superhelper105.def.json b/resources/definitions/winbo_superhelper105.def.json index 2da031cb99..055967f8ab 100644 --- a/resources/definitions/winbo_superhelper105.def.json +++ b/resources/definitions/winbo_superhelper105.def.json @@ -96,7 +96,6 @@ "speed_wall": { "value": "speed_print*wall_line_width_0/line_width" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 0.6)" }, "speed_wall_x": { "value": "speed_wall" }, - "speed_equalize_flow_enabled": { "value": "False" }, "support_angle": { "value": "50" }, "support_xy_distance": { "value": "1" }, "support_z_distance": { "value": "max((0.2 if(0.2%layer_height==0) else layer_height*int((0.2+layer_height)/layer_height)),layer_height)" }, @@ -118,7 +117,6 @@ "support_interface_enable": { "value": "True" }, "support_interface_height": { "value": "0.5" }, "support_roof_pattern": { "value": "'concentric'" }, - "z_seam_type": { "value": "'shortest'" }, - "speed_equalize_flow_max": { "value": "65" } + "z_seam_type": { "value": "'shortest'" } } } diff --git a/resources/definitions/xyzprinting_base.def.json b/resources/definitions/xyzprinting_base.def.json new file mode 100644 index 0000000000..d9fa789b23 --- /dev/null +++ b/resources/definitions/xyzprinting_base.def.json @@ -0,0 +1,47 @@ +{ + "name": "XYZprinting Base Printer", + "version": 2, + "inherits": "fdmprinter", + "metadata": { + "visible": false, + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "file_formats": "text/x-gcode", + "first_start_actions": ["MachineSettingsAction"], + "machine_extruder_trains": + { + "0": "xyzprinting_base_extruder_0" + }, + "has_materials": true, + "has_variants": true, + "has_machine_quality": true, + "preferred_quality_type": "normal", + "preferred_material": "xyzprinting_antibact_pla", + "variants_name": "Nozzle Type" + }, + "overrides": { + "machine_heated_bed": {"default_value": true}, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_acceleration_x": { "value": 1500 }, + "machine_max_acceleration_y": { "value": 1500 }, + "machine_max_acceleration_z": { "value": 500 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_acceleration": { "value": 500 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_max_jerk_e": { "value": 5 }, + "adhesion_type": { "value": "'none' if support_enable else 'brim'" }, + "brim_width": { "value": 10.0 }, + "cool_fan_speed": { "value": 100 }, + "cool_fan_speed_0": { "value": 0 } + }, + + + "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, + "machine_start_gcode": {"default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end"}, + "machine_end_gcode": {"default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" + } + } diff --git a/resources/definitions/xyzprinting_da_vinci_1p0_pro.def.json b/resources/definitions/xyzprinting_da_vinci_1p0_pro.def.json new file mode 100644 index 0000000000..87700973b7 --- /dev/null +++ b/resources/definitions/xyzprinting_da_vinci_1p0_pro.def.json @@ -0,0 +1,52 @@ +{ + "version": 2, + "name": "XYZprinting da Vinci 1.0 Pro", + "inherits": "xyzprinting_base", + "metadata": { + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "visible": true, + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "supports_usb_connection": true, + "preferred_quality_type": "normal", + "quality_definition": "xyzprinting_da_vinci_1p0_pro", + "preferred_variant_name": "Copper 0.4mm Nozzle", + "variants_name": "Nozzle Type", + "machine_extruder_trains": { + "0": "xyzprinting_da_vinci_1p0_pro_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "XYZprinting da Vinci 1.0 Pro" }, + "machine_shape": { "default_value": "rectangular"}, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 200.00 }, + "machine_depth": { "default_value": 200.00 }, + "machine_height": { "default_value":200.00 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -20, -10 ], + [ -20, 10 ], + [ 10, 10 ], + [ 10, -10 ] + ] + }, + "material_flow_layer_0": {"value": 120}, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "brim_line_count": { "value" : 5 }, + "skirt_line_count": { "default_value" : 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" + } + } +} diff --git a/resources/definitions/xyzprinting_da_vinci_jr_1p0a_pro.def.json b/resources/definitions/xyzprinting_da_vinci_jr_1p0a_pro.def.json new file mode 100644 index 0000000000..ab2e1d9fcf --- /dev/null +++ b/resources/definitions/xyzprinting_da_vinci_jr_1p0a_pro.def.json @@ -0,0 +1,53 @@ +{ + "version": 2, + "name": "XYZprinting da Vinci Jr. 1.0A Pro", + "inherits": "xyzprinting_base", + "metadata": { + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "visible": true, + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent", "ultimaker_petg_red" ], + "supports_usb_connection": true, + "preferred_quality_type": "normal", + "quality_definition": "xyzprinting_da_vinci_jr_1p0a_pro", + "preferred_variant_name": "Copper 0.4mm Nozzle", + "variants_name": "Nozzle Type", + "machine_extruder_trains": { + "0": "xyzprinting_da_vinci_jr_1p0a_pro_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "XYZprinting da Vinci Jr. 1.0A Pro" }, + "machine_shape": { "default_value": "rectangular"}, + "machine_heated_bed": { "default_value": false }, + "machine_width": { "default_value": 175.00 }, + "machine_depth": { "default_value": 175.00 }, + "machine_height": { "default_value":175.00 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -20, -10 ], + [ -20, 10 ], + [ 10, 10 ], + [ 10, -10 ] + ] + }, + "material_flow_layer_0": {"value": 120}, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "brim_line_count": { "value" : 5 }, + "skirt_line_count": { "default_value" : 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" + } + } +} diff --git a/resources/definitions/xyzprinting_da_vinci_jr_pro_xeplus.def.json b/resources/definitions/xyzprinting_da_vinci_jr_pro_xeplus.def.json new file mode 100644 index 0000000000..eb4c4139d3 --- /dev/null +++ b/resources/definitions/xyzprinting_da_vinci_jr_pro_xeplus.def.json @@ -0,0 +1,52 @@ +{ + "version": 2, + "name": "XYZprinting da Vinci Jr. Pro Xe+", + "inherits": "xyzprinting_base", + "metadata": { + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "visible": true, + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "supports_usb_connection": true, + "preferred_quality_type": "normal", + "quality_definition": "xyzprinting_da_vinci_jr_pro_xeplus", + "preferred_variant_name": "Copper 0.4mm Nozzle", + "variants_name": "Nozzle Type", + "machine_extruder_trains": { + "0": "xyzprinting_da_vinci_jr_pro_xeplus_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "XYZprinting da Vinci Jr. Pro Xe+" }, + "machine_shape": { "default_value": "rectangular"}, + "machine_heated_bed": { "default_value": false }, + "machine_width": { "default_value": 175.00 }, + "machine_depth": { "default_value": 175.00 }, + "machine_height": { "default_value":175.00 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -20, -10 ], + [ -20, 10 ], + [ 10, 10 ], + [ 10, -10 ] + ] + }, + "material_flow_layer_0": {"value": 120}, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "brim_line_count": { "value" : 5 }, + "skirt_line_count": { "default_value" : 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" + } + } +} diff --git a/resources/definitions/xyzprinting_da_vinci_jr_pro_xplus.def.json b/resources/definitions/xyzprinting_da_vinci_jr_pro_xplus.def.json new file mode 100644 index 0000000000..3216929029 --- /dev/null +++ b/resources/definitions/xyzprinting_da_vinci_jr_pro_xplus.def.json @@ -0,0 +1,52 @@ +{ + "version": 2, + "name": "XYZprinting da Vinci Jr. Pro X+", + "inherits": "xyzprinting_base", + "metadata": { + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "visible": true, + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "supports_usb_connection": true, + "preferred_quality_type": "normal", + "quality_definition": "xyzprinting_da_vinci_jr_pro_xplus", + "preferred_variant_name": "Copper 0.4mm Nozzle", + "variants_name": "Nozzle Type", + "machine_extruder_trains": { + "0": "xyzprinting_da_vinci_jr_pro_xplus_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "XYZprinting da Vinci Jr. Pro X+" }, + "machine_shape": { "default_value": "rectangular"}, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 175.00 }, + "machine_depth": { "default_value": 175.00 }, + "machine_height": { "default_value":175.00 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -20, -10 ], + [ -20, 10 ], + [ 10, 10 ], + [ 10, -10 ] + ] + }, + "material_flow_layer_0": {"value": 120}, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "brim_line_count": { "value" : 5 }, + "skirt_line_count": { "default_value" : 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" + } + } +} diff --git a/resources/definitions/xyzprinting_da_vinci_jr_w_pro.def.json b/resources/definitions/xyzprinting_da_vinci_jr_w_pro.def.json new file mode 100644 index 0000000000..923fec524e --- /dev/null +++ b/resources/definitions/xyzprinting_da_vinci_jr_w_pro.def.json @@ -0,0 +1,52 @@ +{ + "version": 2, + "name": "XYZprinting da Vinci Jr. WiFi Pro", + "inherits": "xyzprinting_base", + "metadata": { + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "visible": true, + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "supports_usb_connection": true, + "preferred_quality_type": "normal", + "quality_definition": "xyzprinting_da_vinci_jr_w_pro", + "preferred_variant_name": "Stainless Steel 0.4mm Nozzle", + "variants_name": "Nozzle Type", + "machine_extruder_trains": { + "0": "xyzprinting_da_vinci_jr_w_pro_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "XYZprinting da Vinci Jr. WiFi Pro" }, + "machine_shape": { "default_value": "rectangular"}, + "machine_heated_bed": { "default_value": false }, + "machine_width": { "default_value": 150.00 }, + "machine_depth": { "default_value": 150.00 }, + "machine_height": { "default_value":150.00 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -20, -10 ], + [ -20, 10 ], + [ 10, 10 ], + [ 10, -10 ] + ] + }, + "material_flow_layer_0": {"value": 120}, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "brim_line_count": { "value" : 5 }, + "skirt_line_count": { "default_value" : 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" + } + } +} diff --git a/resources/definitions/xyzprinting_da_vinci_super.def.json b/resources/definitions/xyzprinting_da_vinci_super.def.json new file mode 100644 index 0000000000..1fbc4ec9d0 --- /dev/null +++ b/resources/definitions/xyzprinting_da_vinci_super.def.json @@ -0,0 +1,52 @@ +{ + "version": 2, + "name": "XYZprinting da Vinci Super", + "inherits": "xyzprinting_base", + "metadata": { + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "visible": true, + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "supports_usb_connection": true, + "preferred_quality_type": "normal", + "quality_definition": "xyzprinting_da_vinci_super", + "preferred_variant_name": "Copper 0.4mm Nozzle", + "variants_name": "Nozzle Type", + "machine_extruder_trains": { + "0": "xyzprinting_da_vinci_super_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "XYZprinting da Vinci Super" }, + "machine_shape": { "default_value": "rectangular"}, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 300.00 }, + "machine_depth": { "default_value": 300.00 }, + "machine_height": { "default_value":300.00 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -20, -10 ], + [ -20, 10 ], + [ 10, 10 ], + [ 10, -10 ] + ] + }, + "material_flow_layer_0": {"value": 120}, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "brim_line_count": { "value" : 5 }, + "skirt_line_count": { "default_value" : 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" + }, + "machine_end_gcode": { + "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" + } + } +} diff --git a/resources/definitions/zone3d_printer.def.json b/resources/definitions/zone3d_printer.def.json index 4c72422788..8939043e05 100644 --- a/resources/definitions/zone3d_printer.def.json +++ b/resources/definitions/zone3d_printer.def.json @@ -4,7 +4,6 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Ultimaker", "manufacturer": "Zone3D", "file_formats": "text/x-gcode", "platform_offset": [ 0, 0, 0], diff --git a/resources/extruders/3di_base_extruder_0.def.json b/resources/extruders/3di_base_extruder_0.def.json new file mode 100644 index 0000000000..5fbb347ede --- /dev/null +++ b/resources/extruders/3di_base_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "3di_base", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/anycubic_vyper_extruder_0.def.json b/resources/extruders/anycubic_vyper_extruder_0.def.json new file mode 100644 index 0000000000..539f886a75 --- /dev/null +++ b/resources/extruders/anycubic_vyper_extruder_0.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "anycubic_vyper", + "position": "0" + }, + "overrides": { + "extruder_nr": { + "default_value": 0 + }, + "machine_nozzle_size": { + "default_value": 0.4 + }, + "material_diameter": { + "default_value": 1.75 + } + } +} \ No newline at end of file diff --git a/resources/extruders/arjunpro_dm_extruder.def.json b/resources/extruders/arjunpro_dm_extruder.def.json new file mode 100644 index 0000000000..9ea7bbe27b --- /dev/null +++ b/resources/extruders/arjunpro_dm_extruder.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Duplication Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "arjunpro_duplication", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 } + } +} diff --git a/resources/extruders/arjunpro_extruder_0.def.json b/resources/extruders/arjunpro_extruder_0.def.json new file mode 100644 index 0000000000..b4ba094804 --- /dev/null +++ b/resources/extruders/arjunpro_extruder_0.def.json @@ -0,0 +1,27 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "arjunpro300", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, + "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "value": -51 }, + "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_start_code": { "default_value": "T0" } + } +} diff --git a/resources/extruders/arjunpro_extruder_1.def.json b/resources/extruders/arjunpro_extruder_1.def.json new file mode 100644 index 0000000000..b5177807b8 --- /dev/null +++ b/resources/extruders/arjunpro_extruder_1.def.json @@ -0,0 +1,27 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "arjunpro300", + "position": "1" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, + "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "value": 257 }, + "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_start_code": { "default_value": "T1" } + } +} diff --git a/resources/extruders/arjunpro_mm_extruder.def.json b/resources/extruders/arjunpro_mm_extruder.def.json new file mode 100644 index 0000000000..c101ede4ca --- /dev/null +++ b/resources/extruders/arjunpro_mm_extruder.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Mirror Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "arjunpro_mirrored", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 } + } +} diff --git a/resources/extruders/atomstack_cambrianmaxe175_extruder_0.def.json b/resources/extruders/atomstack_cambrianmaxe175_extruder_0.def.json new file mode 100644 index 0000000000..1132948e90 --- /dev/null +++ b/resources/extruders/atomstack_cambrianmaxe175_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "atomstack_cambrianmaxe175", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/atomstack_cambrianmaxe285_extruder_0.def.json b/resources/extruders/atomstack_cambrianmaxe285_extruder_0.def.json new file mode 100644 index 0000000000..db5db9638a --- /dev/null +++ b/resources/extruders/atomstack_cambrianmaxe285_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "atomstack_cambrianmaxe285", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.8 }, + "material_diameter": { "default_value": 2.85 } + } +} diff --git a/resources/extruders/atomstack_cambrianproe175_extruder_0.def.json b/resources/extruders/atomstack_cambrianproe175_extruder_0.def.json new file mode 100644 index 0000000000..d55afde8a2 --- /dev/null +++ b/resources/extruders/atomstack_cambrianproe175_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "atomstack_cambrianproe175", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/atomstack_cambrianproe285_extruder_0.def.json b/resources/extruders/atomstack_cambrianproe285_extruder_0.def.json new file mode 100644 index 0000000000..db3dcda781 --- /dev/null +++ b/resources/extruders/atomstack_cambrianproe285_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "atomstack_cambrianproe285", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.8 }, + "material_diameter": { "default_value": 2.85 } + } +} diff --git a/resources/extruders/crazy3dprint_cz300_extruder_0.def.json b/resources/extruders/crazy3dprint_cz300_extruder_0.def.json new file mode 100644 index 0000000000..72bbdbe17e --- /dev/null +++ b/resources/extruders/crazy3dprint_cz300_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "crazy3dprint_base", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/creasee_cs50spro_extruder.def.json b/resources/extruders/creasee_cs50spro_extruder.def.json new file mode 100644 index 0000000000..8fdd42186a --- /dev/null +++ b/resources/extruders/creasee_cs50spro_extruder.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "creasee_cs50spro", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/creasee_phoenix_extruder.def.json b/resources/extruders/creasee_phoenix_extruder.def.json new file mode 100644 index 0000000000..9eed5943e4 --- /dev/null +++ b/resources/extruders/creasee_phoenix_extruder.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "creasee_phoenix", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/creasee_skywalker_extruder.def.json b/resources/extruders/creasee_skywalker_extruder.def.json new file mode 100644 index 0000000000..0e240665ec --- /dev/null +++ b/resources/extruders/creasee_skywalker_extruder.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "creasee_skywalker", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/cremaker_extruder_0.def.json b/resources/extruders/cremaker_extruder_0.def.json new file mode 100644 index 0000000000..bf1dcce526 --- /dev/null +++ b/resources/extruders/cremaker_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "cremaker_common", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/dagoma_pro_430_bowden_extruder_0.def.json b/resources/extruders/dagoma_pro_430_bowden_extruder_0.def.json new file mode 100644 index 0000000000..eeba40cb05 --- /dev/null +++ b/resources/extruders/dagoma_pro_430_bowden_extruder_0.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "dagoma_pro_430_bowden", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0 + }, + "material_diameter": { + "default_value": 1.75 + } + } +} \ No newline at end of file diff --git a/resources/extruders/eazao_zero_extruder_0.def.json b/resources/extruders/eazao_zero_extruder_0.def.json new file mode 100644 index 0000000000..00038a2ac9 --- /dev/null +++ b/resources/extruders/eazao_zero_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "eazao_zero", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 1.5 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/eryone_er20_extruder_0.def.json b/resources/extruders/eryone_er20_extruder_0.def.json index 9b1c1fa435..4dcf363af9 100644 --- a/resources/extruders/eryone_er20_extruder_0.def.json +++ b/resources/extruders/eryone_er20_extruder_0.def.json @@ -18,7 +18,7 @@ "default_value": 1.75 }, "machine_nozzle_offset_x": { - "default_value": -10.0 + "default_value": 5 }, "machine_nozzle_offset_y": { "default_value": 8.0 diff --git a/resources/extruders/hardprint_hozo_extruder_0.def.json b/resources/extruders/hardprint_hozo_extruder_0.def.json new file mode 100644 index 0000000000..1f37977e4c --- /dev/null +++ b/resources/extruders/hardprint_hozo_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hardprint_hozo", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/hardprint_hozo_ix_extruder_0.def.json b/resources/extruders/hardprint_hozo_ix_extruder_0.def.json new file mode 100644 index 0000000000..ba67cebe9a --- /dev/null +++ b/resources/extruders/hardprint_hozo_ix_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hardprint_hozo_ix", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/hellbot_hidra_extruder_0.def.json b/resources/extruders/hellbot_hidra_extruder_0.def.json index f6e66d5381..aa8da12ea3 100644 --- a/resources/extruders/hellbot_hidra_extruder_0.def.json +++ b/resources/extruders/hellbot_hidra_extruder_0.def.json @@ -1,6 +1,6 @@ { "version": 2, - "name": "Extrusor E1", + "name": "Extruder E1", "inherits": "fdmextruder", "metadata": { "machine": "hellbot_hidra", diff --git a/resources/extruders/hellbot_hidra_extruder_1.def.json b/resources/extruders/hellbot_hidra_extruder_1.def.json index 87b18db36c..8389b5e8d8 100644 --- a/resources/extruders/hellbot_hidra_extruder_1.def.json +++ b/resources/extruders/hellbot_hidra_extruder_1.def.json @@ -1,6 +1,6 @@ { "version": 2, - "name": "Extrusor E2", + "name": "Extruder E2", "inherits": "fdmextruder", "metadata": { "machine": "hellbot_hidra", diff --git a/resources/extruders/hellbot_hidra_plus_extruder_0.def.json b/resources/extruders/hellbot_hidra_plus_extruder_0.def.json index e8817236a1..2b023119eb 100644 --- a/resources/extruders/hellbot_hidra_plus_extruder_0.def.json +++ b/resources/extruders/hellbot_hidra_plus_extruder_0.def.json @@ -1,6 +1,6 @@ { "version": 2, - "name": "Extrusor E1", + "name": "Extruder E1", "inherits": "fdmextruder", "metadata": { "machine": "hellbot_hidra_plus", diff --git a/resources/extruders/hellbot_hidra_plus_extruder_1.def.json b/resources/extruders/hellbot_hidra_plus_extruder_1.def.json index 37f37fc71f..ade40aafea 100644 --- a/resources/extruders/hellbot_hidra_plus_extruder_1.def.json +++ b/resources/extruders/hellbot_hidra_plus_extruder_1.def.json @@ -1,6 +1,6 @@ { "version": 2, - "name": "Extrusor E2", + "name": "Extruder E2", "inherits": "fdmextruder", "metadata": { "machine": "hellbot_hidra_plus", diff --git a/resources/extruders/hellbot_magna_2_230_dual_extruder_0.def.json b/resources/extruders/hellbot_magna_2_230_dual_extruder_0.def.json index b572ea4318..2dc919ea68 100644 --- a/resources/extruders/hellbot_magna_2_230_dual_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_230_dual_extruder_0.def.json @@ -13,6 +13,12 @@ "maximum_value": "1" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { + "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" + }, + "machine_extruder_end_code": { + "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X230 Y200 \nG1 F3000 E-100 \nG92 E0 \nG90" + } } } diff --git a/resources/extruders/hellbot_magna_2_230_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_2_230_dual_extruder_1.def.json index 398822b156..6b5c6214cb 100644 --- a/resources/extruders/hellbot_magna_2_230_dual_extruder_1.def.json +++ b/resources/extruders/hellbot_magna_2_230_dual_extruder_1.def.json @@ -13,6 +13,12 @@ "maximum_value": "1" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { + "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" + }, + "machine_extruder_end_code": { + "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X230 Y200 \nG1 F3000 E-100 \nG92 E0 \nG90" + } } } diff --git a/resources/extruders/hellbot_magna_2_230_extruder_0.def.json b/resources/extruders/hellbot_magna_2_230_extruder_0.def.json index 926e8b94c4..83e76a2d31 100644 --- a/resources/extruders/hellbot_magna_2_230_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_230_extruder_0.def.json @@ -11,6 +11,5 @@ "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } - } } diff --git a/resources/extruders/hellbot_magna_2_300_dual_extruder_0.def.json b/resources/extruders/hellbot_magna_2_300_dual_extruder_0.def.json index af68cc9422..403001b86f 100644 --- a/resources/extruders/hellbot_magna_2_300_dual_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_300_dual_extruder_0.def.json @@ -13,6 +13,12 @@ "maximum_value": "1" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { + "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" + }, + "machine_extruder_end_code": { + "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X300 Y250 \nG1 F3000 E-100 \nG92 E0 \nG90" + } } } diff --git a/resources/extruders/hellbot_magna_2_300_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_2_300_dual_extruder_1.def.json index 3585978d6e..ee3663f610 100644 --- a/resources/extruders/hellbot_magna_2_300_dual_extruder_1.def.json +++ b/resources/extruders/hellbot_magna_2_300_dual_extruder_1.def.json @@ -13,6 +13,12 @@ "maximum_value": "1" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { + "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" + }, + "machine_extruder_end_code": { + "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X300 Y250 \nG1 F3000 E-100 \nG92 E0 \nG90" + } } } diff --git a/resources/extruders/hellbot_magna_2_400_dual_extruder_0.def.json b/resources/extruders/hellbot_magna_2_400_dual_extruder_0.def.json new file mode 100644 index 0000000000..f42dd7f986 --- /dev/null +++ b/resources/extruders/hellbot_magna_2_400_dual_extruder_0.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hellbot_magna_2_400_dual", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { + "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" + }, + "machine_extruder_end_code": { + "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X395 Y350 \nG1 F3000 E-100 \nG92 E0 \nG90" + } + } +} diff --git a/resources/extruders/hellbot_magna_2_400_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_2_400_dual_extruder_1.def.json new file mode 100644 index 0000000000..f5ab430fc7 --- /dev/null +++ b/resources/extruders/hellbot_magna_2_400_dual_extruder_1.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": { + "machine": "hellbot_magna_2_400_dual", + "position": "1" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { + "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" + }, + "machine_extruder_end_code": { + "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X395 Y350 \nG1 F3000 E-100 \nG92 E0 \nG90" + } + } +} diff --git a/resources/extruders/hellbot_magna_2_400_extruder_0.def.json b/resources/extruders/hellbot_magna_2_400_extruder_0.def.json new file mode 100644 index 0000000000..59ee87321c --- /dev/null +++ b/resources/extruders/hellbot_magna_2_400_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hellbot_magna_2_400", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/hellbot_magna_2_500_dual_extruder_0.def.json b/resources/extruders/hellbot_magna_2_500_dual_extruder_0.def.json new file mode 100644 index 0000000000..033b62e0f9 --- /dev/null +++ b/resources/extruders/hellbot_magna_2_500_dual_extruder_0.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": { + "machine": "hellbot_magna_2_500_dual", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { + "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" + }, + "machine_extruder_end_code": { + "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X495 Y450 \nG1 F3000 E-100 \nG92 E0 \nG90" + } + } +} diff --git a/resources/extruders/hellbot_magna_2_500_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_2_500_dual_extruder_1.def.json new file mode 100644 index 0000000000..62f6e1b7bc --- /dev/null +++ b/resources/extruders/hellbot_magna_2_500_dual_extruder_1.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hellbot_magna_2_500_dual", + "position": "1" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { + "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" + }, + "machine_extruder_end_code": { + "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X495 Y450 \nG1 F3000 E-100 \nG92 E0 \nG90" + } + } +} diff --git a/resources/extruders/hellbot_magna_2_500_extruder_0.def.json b/resources/extruders/hellbot_magna_2_500_extruder_0.def.json new file mode 100644 index 0000000000..749e77cbe7 --- /dev/null +++ b/resources/extruders/hellbot_magna_2_500_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hellbot_magna_2_500", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/hellbot_magna_SE_extruder.def.json b/resources/extruders/hellbot_magna_SE_extruder.def.json new file mode 100644 index 0000000000..23c267b63b --- /dev/null +++ b/resources/extruders/hellbot_magna_SE_extruder.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hellbot_magna_SE", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/mixware_hyper_s_extruder_0.def.json b/resources/extruders/mixware_hyper_s_extruder_0.def.json new file mode 100644 index 0000000000..09971ee688 --- /dev/null +++ b/resources/extruders/mixware_hyper_s_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "mixware_hyper_s", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/sh65_extruder.def.json b/resources/extruders/sh65_extruder.def.json new file mode 100644 index 0000000000..f01011e281 --- /dev/null +++ b/resources/extruders/sh65_extruder.def.json @@ -0,0 +1,21 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "sh65", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0 + }, + "machine_nozzle_size": { + "default_value": 0.4 + }, + "material_diameter": { + "default_value": 1.75 + } + } +} diff --git a/resources/extruders/stream30mk3_extruder.def.json b/resources/extruders/stream30mk3_extruder.def.json new file mode 100644 index 0000000000..8a9bbfa1f9 --- /dev/null +++ b/resources/extruders/stream30mk3_extruder.def.json @@ -0,0 +1,21 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "stream30mk3", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0 + }, + "machine_nozzle_size": { + "default_value": 0.4 + }, + "material_diameter": { + "default_value": 1.75 + } + } +} diff --git a/resources/extruders/stream30ultrasc2_extruder.def.json b/resources/extruders/stream30ultrasc2_extruder.def.json new file mode 100644 index 0000000000..56c34a34e1 --- /dev/null +++ b/resources/extruders/stream30ultrasc2_extruder.def.json @@ -0,0 +1,21 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "stream30ultrasc2", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0 + }, + "machine_nozzle_size": { + "default_value": 0.4 + }, + "material_diameter": { + "default_value": 1.75 + } + } +} diff --git a/resources/extruders/tronxy_base_extruder_0.def.json b/resources/extruders/tronxy_base_extruder_0.def.json index 2d4052a0ab..14acb5150a 100644 --- a/resources/extruders/tronxy_base_extruder_0.def.json +++ b/resources/extruders/tronxy_base_extruder_0.def.json @@ -8,9 +8,12 @@ }, "overrides": { - "extruder_nr": { "default_value": 0 }, + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } - + } } diff --git a/resources/extruders/tronxy_base_extruder_1.def.json b/resources/extruders/tronxy_base_extruder_1.def.json new file mode 100644 index 0000000000..3a5a35cd01 --- /dev/null +++ b/resources/extruders/tronxy_base_extruder_1.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": { + "machine": "tronxy_x", + "position": "1" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + + } +} diff --git a/resources/extruders/weedo_x40_extruder_left_0.def.json b/resources/extruders/weedo_x40_extruder_left_0.def.json new file mode 100644 index 0000000000..955e98f0de --- /dev/null +++ b/resources/extruders/weedo_x40_extruder_left_0.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder Left", + "inherits": "fdmextruder", + "metadata": { + "machine": "weedo_x40", + "position": "0", + "quality_definition": "weedo_x40_extruder_left_0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_extruder_start_code": { "default_value": "; left extruder start code\n"} + } +} diff --git a/resources/extruders/weedo_x40_extruder_right_0.def.json b/resources/extruders/weedo_x40_extruder_right_0.def.json new file mode 100644 index 0000000000..1a1f9e591d --- /dev/null +++ b/resources/extruders/weedo_x40_extruder_right_0.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder Right", + "inherits": "fdmextruder", + "metadata": { + "machine": "weedo_x40", + "position": "1", + "quality_definition": "weedo_x40_extruder_right_0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_extruder_start_code": { "default_value": "; right extruder start code\n"} + } +} diff --git a/resources/extruders/xyzprinting_base_extruder_0.def.json b/resources/extruders/xyzprinting_base_extruder_0.def.json new file mode 100644 index 0000000000..0a04c63103 --- /dev/null +++ b/resources/extruders/xyzprinting_base_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "xyzprinting_base", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + + } +} diff --git a/resources/extruders/xyzprinting_da_vinci_1p0_pro_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_1p0_pro_extruder_0.def.json new file mode 100644 index 0000000000..22010de7d7 --- /dev/null +++ b/resources/extruders/xyzprinting_da_vinci_1p0_pro_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "xyzprinting_da_vinci_1p0_pro", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/xyzprinting_da_vinci_jr_1p0a_pro_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_jr_1p0a_pro_extruder_0.def.json new file mode 100644 index 0000000000..4e9d0c8ad0 --- /dev/null +++ b/resources/extruders/xyzprinting_da_vinci_jr_1p0a_pro_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "xyzprinting_da_vinci_jr_1p0a_pro", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/xyzprinting_da_vinci_jr_pro_xeplus_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_jr_pro_xeplus_extruder_0.def.json new file mode 100644 index 0000000000..9ac465dda4 --- /dev/null +++ b/resources/extruders/xyzprinting_da_vinci_jr_pro_xeplus_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "xyzprinting_da_vinci_jr_pro_xeplus", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/xyzprinting_da_vinci_jr_pro_xplus_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_jr_pro_xplus_extruder_0.def.json new file mode 100644 index 0000000000..ce653eeedd --- /dev/null +++ b/resources/extruders/xyzprinting_da_vinci_jr_pro_xplus_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "xyzprinting_da_vinci_jr_pro_xplus", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/xyzprinting_da_vinci_jr_w_pro_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_jr_w_pro_extruder_0.def.json new file mode 100644 index 0000000000..6b1a23da45 --- /dev/null +++ b/resources/extruders/xyzprinting_da_vinci_jr_w_pro_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "xyzprinting_da_vinci_jr_w_pro", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/extruders/xyzprinting_da_vinci_super_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_super_extruder_0.def.json new file mode 100644 index 0000000000..e414746665 --- /dev/null +++ b/resources/extruders/xyzprinting_da_vinci_super_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "xyzprinting_da_vinci_super", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index cd7b770253..d96d13234a 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -1,14 +1,14 @@ # Cura # Copyright (C) 2021 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2020. +# Ultimaker , 2020. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-04 15:31+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2021-12-17 21:07+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" "Language: cs_CZ\n" @@ -16,182 +16,451 @@ 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 2.4.2\n" +"X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Neznámý" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Nelze vytvořit archiv ze složky s uživatelskými daty: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Níže uvedené tiskárny nelze připojit, protože jsou součástí skupiny" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Záloha" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Dostupné síťové tiskárny" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Pokusil se obnovit zálohu Cura bez nutnosti správných dat nebo metadat." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nepřepsáno" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Pokusil se obnovit zálohu Cura, která je vyšší než aktuální verze." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "Během obnovení zálohy Cura se vyskytly následující chyby:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Prosím synchronizujte před začátkem tisku materiálové profily s vašimi tiskárnami." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Byly nainstalovány nové materiály" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Synchronizovat materiály s tiskárnami" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Zjistit více" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Nelze uložit archiv s materiálem do {}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Nepodařilo se uložit archiv s materiálem" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Neznámá chyba." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "Výška podložky byla snížena kvůli hodnotě nastavení „Sekvence tisku“, aby se zabránilo kolizi rámu s tištěnými modely." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Podložka" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Doopravdy chcete odstranit {0}? Toto nelze vrátit zpět!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nepřepsáno" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Neznámý" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Níže uvedené tiskárny nelze připojit, protože jsou součástí skupiny" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Dostupné síťové tiskárny" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Výchozí" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Vizuální" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Vizuální profil je navržen pro tisk vizuálních prototypů a modelů s cílem vysoké vizuální a povrchové kvality." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Technika" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Inženýrský profil je navržen pro tisk funkčních prototypů a koncových částí s cílem lepší přesnosti a bližších tolerancí." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Návrh" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Vlastní materiál" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Vlastní" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Vlastní profily" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Všechny podporované typy ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Všechny soubory (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Vizuální" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Vizuální profil je navržen pro tisk vizuálních prototypů a modelů s cílem vysoké vizuální a povrchové kvality." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Technika" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Inženýrský profil je navržen pro tisk funkčních prototypů a koncových částí s cílem lepší přesnosti a bližších tolerancí." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Návrh" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Vlastní materiál" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Vlastní" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Přihlášení selhalo" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Hledám nové umístění pro objekt" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Hledám umístění" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Nemohu najít lokaci na podložce pro všechny objekty" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nemohu najít umístění" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Nelze vytvořit archiv ze složky s uživatelskými daty: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Nepodařilo se vytvořit archiv s materiály pro synchronizaci s tiskárnami." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Záloha" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Nepodařilo se načíst archiv s materiály pro synchronizaci s tiskárnami." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Pokusil se obnovit zálohu Cura bez nutnosti správných dat nebo metadat." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "Odpověď z Digital Factory se zdá být poškozená." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Pokusil se obnovit zálohu Cura, která je vyšší než aktuální verze." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "Odpověď z Digital Factory postrádá důležité informace." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "Během obnovení zálohy Cura se vyskytly následující chyby:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Nepodařilo se připojit k Digital Factory pro synchronizaci materiálů s některými z tiskáren." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Nepodařilo se připojit k Digital Factory." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Načítám zařízení..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Nastavuji preference..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inicializuji aktivní zařízení..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inicializuji správce zařízení..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inicializuji prostor podložky..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Připravuji scénu..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Načítám rozhraní..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inicializuji engine..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "Výška podložky byla snížena kvůli hodnotě nastavení „Sekvence tisku“, aby se zabránilo kolizi rámu s tištěnými modely." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Současně lze načíst pouze jeden soubor G-kódu. Přeskočen import {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Podložka" +msgid "Warning" +msgstr "Varování" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Nelze otevřít žádný jiný soubor, když se načítá G kód. Přeskočen import {0}" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Chyba" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Přeskočit" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Zavřít" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Další" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Dokončit" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Přidat" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Zrušit" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Skupina #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Vnější stěna" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Vnitřní stěna" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Skin" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Výplň" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Výplň podpor" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Rozhraní podpor" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Podpora" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Límec" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Hlavní věž" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Pohyb" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrakce" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Jiné" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "Poznámky k vydání nelze otevřít." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura nelze spustit" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -206,32 +475,32 @@ msgstr "" "                    

    Za účelem vyřešení problému nám prosím pošlete tento záznam pádu.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Poslat záznam o pádu do Ultimakeru" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Zobrazit podrobný záznam pádu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Zobrazit složku s konfigurací" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Zálohovat a resetovat konfiguraci" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Záznam pádu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -242,676 +511,641 @@ msgstr "" "            

    Použijte tlačítko „Odeslat zprávu“ k automatickému odeslání hlášení o chybě na naše servery

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systémové informace" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Neznámý" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Verze Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Jazyk Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Jazyk operačního systému" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Verze Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Verze PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Neinicializováno
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Verze OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL Vendor: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Stopování chyby" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokoly" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Odeslat záznam" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Načítám zařízení..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Nastavuji preference..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inicializuji aktivní zařízení..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inicializuji správce zařízení..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inicializuji prostor podložky..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Připravuji scénu..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Načítám rozhraní..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inicializuji engine..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Současně lze načíst pouze jeden soubor G-kódu. Přeskočen import {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Varování" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Nelze otevřít žádný jiný soubor, když se načítá G kód. Přeskočen import {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Chyba" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Násobím a rozmisťuji objekty" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Umisťuji objekty" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Umisťuji objekt" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Nelze přečíst odpověď." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "Poskytnutý stav není správný." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Při autorizaci této aplikace zadejte požadovaná oprávnění." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Při pokusu o přihlášení se stalo něco neočekávaného, zkuste to znovu." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Nepodařilo se mi spustit nový proces přihlášení. Zkontrolujte, zda nějaký jiný již neběží." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Nelze se dostat na server účtu Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Přihlášení selhalo" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Poskytnutý stav není správný." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Vypršel časový limit při autentizaci se serverem s účty." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Při autorizaci této aplikace zadejte požadovaná oprávnění." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Při pokusu o přihlášení se stalo něco neočekávaného, zkuste to znovu." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Nelze přečíst odpověď." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Násobím a rozmisťuji objekty" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Umisťuji objekty" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Umisťuji objekt" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Nepodporovaný" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Výchozí" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Tryska" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Nastavení byla změněna, aby odpovídala aktuální dostupnosti extruderů:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Nastavení aktualizováno" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extruder(y) zakázány" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Soubor již existuje" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Soubor {0} již existuje. Opravdu jej chcete přepsat?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Špatná cesta k souboru:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Nepodařilo se exportovat profil do {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Export profilu do {0} se nezdařil: Zapisovací zásuvný modul ohlásil chybu." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Exportován profil do {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Export úspěšný" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Nepodařilo se importovat profil z {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Nemohu přidat profil z {0} před tím, než je přidána tiskárna." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "V souboru {0} není k dispozici žádný vlastní profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Import profilu z {0} se nezdařil:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Tento profil {0} obsahuje nesprávná data, nemohl je importovat." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Import profilu z {0} se nezdařil:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Úspěšně importován profil {0}." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Soubor {0} neobsahuje žádný platný profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} má neznámý typ souboru nebo je poškozen." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Vlastní profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "V profilu chybí typ kvality." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Zatím neexistuje aktivní tiskárna." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Nepovedlo se přidat profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Typ kvality '{0}' není kompatibilní s definicí '{1}' aktivního zařízení." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Varování: Profil není viditelný, protože typ kvality '{0}' není dostupný pro aktuální konfiguraci. Přepněte na kombinaci materiálu a trysky, která může být použita s tímto typem kvality." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Nepodporovaný" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Výchozí" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Tryska" +msgid "Per Model Settings" +msgstr "Nastavení pro každý model" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Nastavení byla změněna, aby odpovídala aktuální dostupnosti extruderů:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Konfigurovat nastavení pro každý model" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura profil" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Soubor X3D" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Nastala chyba při pokusu obnovit vaši zálohu." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Nastavení aktualizováno" +msgid "Backups" +msgstr "Zálohy" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extruder(y) zakázány" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Nastala chyba při nahrávání vaší zálohy." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Přidat" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Vytvářím zálohu..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Dokončit" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Nastala chyba při vytváření zálohy." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Zrušit" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Nahrávám vaši zálohu..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Vaše záloha byla úspěšně nahrána." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Záloha překračuje maximální povolenou velikost soubor." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Spravovat zálohy" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Nastavení zařízení" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Blokovač podpor" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Vytvořit prostor ve kterém nejsou tištěny podpory." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Vyměnitelná jednotka" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Uložit na vyměnitelný disk" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Skupina #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Uložit na vyměnitelný disk {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Vnější stěna" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Nejsou k dispozici žádné formáty souborů pro zápis!" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Vnitřní stěna" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Ukládám na vyměnitelný disk {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Skin" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Výplň" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Výplň podpor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Rozhraní podpor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Podpora" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Límec" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Hlavní věž" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Pohyb" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrakce" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Jiné" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Další" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Přeskočit" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Zavřít" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Asistent 3D modelu" +msgid "Saving" +msgstr "Ukládám" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Nemohu uložit na {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Při pokusu o zápis do zařízení {device} nebyl nalezen název souboru." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Jeden nebo více 3D modelů se nemusí tisknout optimálně kvůli velikosti modelu a konfiguraci materiálu:

    \n" -"

    {model_names}

    \n" -"

    Zjistěte, jak zajistit nejlepší možnou kvalitu a spolehlivost tisku.

    \n" -"

    Zobrazit průvodce kvalitou tisku

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Nelze uložit na vyměnitelnou jednotku {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Ukládám na vyměnitelnou jednotku {0} jako {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Soubor uložen" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Vysunout" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Vysunout vyměnitelnou jednotku {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Vysunuto {0}. Nyní můžete bezpečně vyjmout jednotku." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Bezpečně vysunout hardware" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Nepodařilo se vysunout {0}. Jednotku může používat jiný program." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aktualizovat firmware" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Profily Cura 15.04" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Doporučeno" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Vlastní" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projektový soubor {0} obsahuje neznámý typ zařízení {1}. Nelze importovat zařízení. Místo toho budou importovány modely." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Otevřít soubor s projektem" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Soubor projektu {0} je neočekávaně nedostupný: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Nepovedlo se otevřít soubor projektu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Soubor projektu {0} je poškozený: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "Soubor projektu {0} je vytvořený profily, které jsou této verzi Ultimaker Cura neznámé." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Doporučeno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Vlastní" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Soubor 3MF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Plugin 3MF Writer je poškozen." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Nemohu zapsat do UFP souboru:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Nemáte oprávnění zapisovat do tohoto pracovního prostoru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Operační systém nepovoluje uložit soubor s projektem do tohoto umístění nebo pod tímto názvem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Chyba při zápisu 3mf file." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Soubor 3MF" +msgid "Ultimaker Format Package" +msgstr "Balíček ve formátu Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Soubor Cura Project 3MF" +msgid "G-code File" +msgstr "Soubor G-kódu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Soubor AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Zálohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Nastala chyba při nahrávání vaší zálohy." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Vytvářím zálohu..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Nastala chyba při vytváření zálohy." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Nahrávám vaši zálohu..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Vaše záloha byla úspěšně nahrána." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Záloha překračuje maximální povolenou velikost soubor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Nastala chyba při pokusu obnovit vaši zálohu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Spravovat zálohy" +msgid "Preview" +msgstr "Náhled" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Rentgenový pohled" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Zpracovávám vrstvy" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informace" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Slicování selhalo na neočekávané chybě. Zvažte, prosím, nahlášení chyby v našem issue trackeru." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Slicování selhalo" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Nahlásit chybu" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Nahlásit chybu v Ultimaker Cura issue trackeru." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Nelze slicovat s aktuálním materiálem, protože je nekompatibilní s vybraným strojem nebo konfigurací." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Nelze slicovat" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "S aktuálním nastavením nelze slicovat. Následující nastavení obsahuje chyby: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Nelze slicovat kvůli některým nastavení jednotlivých modelů. Následující nastavení obsahuje chyby na jednom nebo více modelech: {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Nelze slicovat, protože hlavní věž nebo primární pozice jsou neplatné." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Nelze slicovat, protože jsou zde objekty asociované k zakázanému extruder %s." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -924,452 +1158,423 @@ msgstr "" "- Jsou přiřazeny k povolenému extruderu\n" "- Nejsou nastavené jako modifikační sítě" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Zpracovávám vrstvy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Informace" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura profil" +msgid "AMF File" +msgstr "Soubor AMF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Nemohu načíst informace o aktualizaci." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Pro vaše {machine_name} mohou být k dispozici nové funkce nebo opravy chyb! Pokud ještě není v nejnovější verzi, doporučuje se aktualizovat firmware v tiskárně na verzi {latest_version}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Nový %s firmware je dostupný" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Jak aktualizovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aktualizovat firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Kompresovaný soubor G kódu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter nepodporuje textový mód." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Soubor G-kódu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Zpracovávám G kód" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Podrobnosti G kódu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G soubor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter nepodporuje netextový mód." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Před exportem prosím připravte G-kód." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Obrázek JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Obrázek JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Obrázek PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Obrázek BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Obrázek GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profily Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Nastavení zařízení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitorování" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Nastavení pro každý model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Konfigurovat nastavení pro každý model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post Processing" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modifikovat G kód" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB tisk" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Tisk přes USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Tisk přes USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Připojeno přes USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Probíhá tisk přes USB, uzavření Cura tento tisk zastaví. Jsi si jistá?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Probíhá tisk" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Příprava" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Náhled" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Uložit na vyměnitelný disk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Uložit na vyměnitelný disk {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Nejsou k dispozici žádné formáty souborů pro zápis!" +msgid "Parsing G-code" +msgstr "Zpracovávám G kód" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Ukládám na vyměnitelný disk {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Ukládám" +msgid "G-code Details" +msgstr "Podrobnosti G kódu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Nemohu uložit na {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Při pokusu o zápis do zařízení {device} nebyl nalezen název souboru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Nelze uložit na vyměnitelnou jednotku {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Ukládám na vyměnitelnou jednotku {0} jako {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Soubor uložen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Vysunout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Vysunout vyměnitelnou jednotku {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Vysunuto {0}. Nyní můžete bezpečně vyjmout jednotku." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Bezpečně vysunout hardware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Nepodařilo se vysunout {0}. Jednotku může používat jiný program." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Vyměnitelná jednotka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Když je aktivován síťový tisk, Cura přesně nezobrazuje vrstvy." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Pohled simulace" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Nic není zobrazeno, nejdříve musíte slicovat." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Žádné vrstvy k zobrazení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Znovu nezobrazovat tuto zprávu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Pohled vrstev" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "Zvýrazněné oblasti označují chybějící nebo vedlejší povrchy. Opravte váš model a otevřete jej znovu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Chyby modelu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Zjistit více" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Pevný pohled" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Blokovač podpor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Vytvořit prostor ve kterém nejsou tištěny podpory." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Chcete synchronizovat materiál a softwarové balíčky s vaším účtem?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Zjištěny změny z vašeho účtu Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchronizovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronizuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Odmítnout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Přijmout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Licenční ujednání zásuvného modulu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Odmítnout a odstranit z účtu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Než se změny projeví, musíte ukončit a restartovat {}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Nepovedlo se stáhnout {} zásuvných modulů" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "G soubor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "gITF binární soubor" +msgid "JPG Image" +msgstr "Obrázek JPG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "gITF Embedded JSON" +msgid "JPEG Image" +msgstr "Obrázek JPEG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" +msgid "PNG Image" +msgstr "Obrázek PNG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Kompresovaný COLLADA Digital Asset Exchenge" +msgid "BMP Image" +msgstr "Obrázek BMP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Balíček ve formátu Ultimaker" +msgid "GIF Image" +msgstr "Obrázek GIF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Nemohu zapsat do UFP souboru:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Vyrovnat podložku" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Vybrat vylepšení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter nepodporuje textový mód." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Nemohu načíst informace o aktualizaci." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "K dispozici mohou být nové funkce nebo opravy chyb pro zařízení {machine_name}! Pokud jste tak už neučinili, je doporučeno zaktualizovat firmware vaší tiskárny na verzi {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nový stabilní firmware je k dispozici pro %s" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Jak aktualizovat" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Nelze načíst ukázkový datový soubor." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Než se změny projeví, musíte ukončit a restartovat {}." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Synchronizuji..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Zjištěny změny z vašeho účtu Ultimaker" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Chcete synchronizovat materiál a softwarové balíčky s vaším účtem?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Synchronizovat" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Odmítnout a odstranit z účtu" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Nepovedlo se stáhnout {} zásuvných modulů" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Odmítnout" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Přijmout" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Licenční ujednání zásuvného modulu" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter nepodporuje netextový mód." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Před exportem prosím připravte G-kód." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Když je aktivován síťový tisk, Cura přesně nezobrazuje vrstvy." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Pohled simulace" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Nic není zobrazeno, nejdříve musíte slicovat." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Žádné vrstvy k zobrazení" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Znovu nezobrazovat tuto zprávu" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Pohled vrstev" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Tisk přes síť" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Tisk přes síť" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Připojeno přes síť" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "zítra" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "dnes" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Připojit přes síť" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Počkejte, až bude odeslána aktuální úloha." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Chyba tisku" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Tisková úloha byla úspěšně odeslána do tiskárny." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Data poslána" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Pokoušíte se připojit k tiskárně, na které není spuštěna aplikace Ultimaker Connect. Aktualizujte tiskárnu na nejnovější firmware." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Aktualizujte vaší tiskárnu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "Fronta tiskových úloh je plná. Tiskárna nemůže přijmout další úlohu." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fronta je plná" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Odesílám tiskovou úlohu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Nahrávám tiskovou úlohu do tiskárny." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura zjistil materiálové profily, které ještě nebyly nainstalovány na hostitelské tiskárně skupiny {0}." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Odesílání materiálů do tiskárny" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Nemohu nahrát data do tiskárny." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Chyba sítě" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Pokoušíte se připojit k {0}, ale není hostitelem skupiny. Webovou stránku můžete navštívit a nakonfigurovat ji jako skupinového hostitele." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Není hostem skupiny" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Konfigurovat skupinu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Vaše tiskárna {printer_name} může být připojena přes cloud.\n" +" Spravujte vaši tiskovou frontu a sledujte tisk odkudkoliv připojením vaší tiskárny k Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Jste připraveni na tisk přes cloud?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Začínáme" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Zjistit více" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Tisknout přes cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Tisknout přes cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Připojen přes cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Sledovat tisk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Sledujte tisk v Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Při nahrávání tiskové úlohy došlo k chybě s neznámým kódem: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" @@ -1377,13 +1582,13 @@ msgstr[0] "Z vašeho Ultimaker účtu byla detekována nová tiskárna" msgstr[1] "Z vašeho Ultimaker účtu byly detekovány nové tiskárny" msgstr[2] "Z vašeho Ultimaker účtu byly detekovány nové tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Přidávám tiskárnu {name} ({model}) z vašeho účtu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1392,12 +1597,12 @@ msgstr[0] "... a {0} další" msgstr[1] "... a {0} další" msgstr[2] "... a {0} dalších" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Tiskárny přidané z Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" @@ -1405,7 +1610,7 @@ msgstr[0] "Pro tuto tiskárnu není připojení přes cloud dostupné" msgstr[1] "Pro tyto tiskárny není připojení přes cloud dostupné" msgstr[2] "Pro tyto tiskárny není připojení přes cloud dostupné" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" @@ -1413,52 +1618,52 @@ msgstr[0] "Tato tiskárna není napojena na Digital Factory:" msgstr[1] "Tyto tiskárny nejsou napojeny na Digital Factory:" msgstr[2] "Tyto tiskárny nejsou napojeny na Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Chcete-li navázat spojení, navštivte {website_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Zachovat konfiguraci tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Odstranit tiskárnu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "Tiskárna {printer_name} bude odebrána až do další synchronizace účtu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Chcete-li tiskárnu {printer_name} trvale odebrat, navštivte {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Opravdu chcete tiskárnu {printer_name} dočasně odebrat?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Odstranit tiskárny?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1477,7 +1682,7 @@ msgstr[2] "" "Chystáte se odebrat {0} tiskáren z Cury. Tuto akci nelze vrátit zpět.\n" "Doopravdy chcete pokračovat?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1486,265 +1691,579 @@ msgstr "" "Chystáte se odebrat všechny tiskárny z Cury. Tuto akci nelze vrátit zpět.\n" "Doopravdy chcete pokračovat?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "gITF binární soubor" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Kompresovaný COLLADA Digital Asset Exchenge" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Odesílejte a sledujte tiskové úlohy odkudkoli pomocí účtu Ultimaker." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "Zvýrazněné oblasti označují chybějící nebo vedlejší povrchy. Opravte váš model a otevřete jej znovu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Připojit se k Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Začínáme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Pokoušíte se připojit k tiskárně, na které není spuštěna aplikace Ultimaker Connect. Aktualizujte tiskárnu na nejnovější firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Aktualizujte vaší tiskárnu" +msgid "Model Errors" +msgstr "Chyby modelu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura zjistil materiálové profily, které ještě nebyly nainstalovány na hostitelské tiskárně skupiny {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Odesílání materiálů do tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Pokoušíte se připojit k {0}, ale není hostitelem skupiny. Webovou stránku můžete navštívit a nakonfigurovat ji jako skupinového hostitele." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Není hostem skupiny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Konfigurovat skupinu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Počkejte, až bude odeslána aktuální úloha." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Chyba tisku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Nemohu nahrát data do tiskárny." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Chyba sítě" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Odesílám tiskovou úlohu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Nahrávám tiskovou úlohu do tiskárny." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "Fronta tiskových úloh je plná. Tiskárna nemůže přijmout další úlohu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fronta je plná" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Tisková úloha byla úspěšně odeslána do tiskárny." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Data poslána" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Tisk přes síť" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Tisk přes síť" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Připojeno přes síť" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Připojit přes síť" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "zítra" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "dnes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB tisk" +msgid "Solid view" +msgstr "Pevný pohled" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Tisk přes USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Chyba při zápisu 3mf file." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Tisk přes USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Plugin 3MF Writer je poškozen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Zatím neexistuje žádný pracovní prostor. Nejprve prosím přidejte tiskárnu." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Nemáte oprávnění zapisovat do tohoto pracovního prostoru." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Operační systém nepovoluje uložit soubor s projektem do tohoto umístění nebo pod tímto názvem." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Soubor 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Soubor Cura Project 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitorování" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Asistent 3D modelu" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Připojeno přes USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Jeden nebo více 3D modelů se nemusí tisknout optimálně kvůli velikosti modelu a konfiguraci materiálu:

    \n" +"

    {model_names}

    \n" +"

    Zjistěte, jak zajistit nejlepší možnou kvalitu a spolehlivost tisku.

    \n" +"

    Zobrazit průvodce kvalitou tisku

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Probíhá tisk přes USB, uzavření Cura tento tisk zastaví. Jsi si jistá?" +msgid "Mesh Type" +msgstr "Typ síťového modelu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Normální model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Probíhá tisk" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Tisknout jako podporu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Upravte nastavení překrývání" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Nepodporovat překrývání" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Soubor X3D" +msgid "Infill mesh only" +msgstr "Pouze síť výplně" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Rentgenový pohled" +msgid "Cutting mesh" +msgstr "Síť řezu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Některé věci mohou být v tomto tisku problematické. Kliknutím zobrazíte tipy pro úpravy." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Vybrat nastavení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Vybrat nastavení k přizpůsobení pro tento model" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrovat..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Zobrazit vše" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura zálohy" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura verze" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Zařízení" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiály" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profily" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Zásuvné moduly" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Chcete více?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Zálohovat nyní" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Automatické zálohy" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Automaticky vytvořte zálohu každý den, kdy je spuštěna Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Obnovit" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Odstranit zálohu" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Opravdu chcete tuto zálohu smazat? To nelze vrátit zpět." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Obnovit zálohu" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Před obnovením zálohy budete muset restartovat Curu. Chcete nyní Curu zavřít?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Zálohovat a synchronizovat vaše nastavení Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Přihlásit se" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Moje zálohy" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Momentálně nemáte žádné zálohy. Pomocí tlačítka 'Zálohovat nyní' vytvořte." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Během fáze náhledu budete omezeni na 5 viditelných záloh. Chcete-li zobrazit starší, odstraňte zálohu." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Nastavení tiskárny" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Šířka)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Hloubka)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Výška)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Tvar tiskové podložky" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Počátek ve středu" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Topná podložka" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Vyhřívaný objem sestavení" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Varianta G kódu" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Nastavení tiskové hlavy" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Výška rámu tiskárny" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Počet extrůderů" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplikovat offsety extruderu do G kódu" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Počáteční G kód" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Ukončující G kód" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nastavení trysky" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Velikost trysky" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Kompatibilní průměr materiálu" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "X offset trysky" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Y offset trysky" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Číslo chladícího větráku" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Počáteční G-kód extuderu" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Ukončující G-kód extuderu" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Tiskárna" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Aktualizovat firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Firmware je software běžící přímo na vaší 3D tiskárně. Tento firmware řídí krokové motory, reguluje teplotu a v konečném důsledku zajišťuje vaši práci tiskárny." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Dodávání firmwaru s novými tiskárnami funguje, ale nové verze mají obvykle více funkcí a vylepšení." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticky aktualizovat firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Nahrát vlastní firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Firmware nelze aktualizovat, protože není spojeno s tiskárnou." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Firmware nelze aktualizovat, protože připojení k tiskárně nepodporuje aktualizaci firmwaru." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Vybrat vlastní firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aktualizace firmwaru" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Aktualizuji firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Aktualizace firmwaru kompletní." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Aktualizace firmwaru selhala kvůli neznámému problému." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Aktualizace firmwaru selhala kvůli chybě v komunikaci." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Aktualizace firmwaru selhala kvůli chybě vstupu / výstupu." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Aktualizace firmwaru selhala kvůli chybějícímu firmwaru." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Otevřit projekt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Aktualizovat existující" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Vytvořit nový" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Souhrn - Projekt Cura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Nastavení tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Jak by měl být problém v zařízení vyřešen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Typ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Skupina tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Nastavení profilu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Jak by měl být problém v profilu vyřešen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Název" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Záměr" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Není v profilu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -1752,12 +2271,12 @@ msgstr[0] "%1 přepsání" msgstr[1] "%1 přepsání" msgstr[2] "%1 přepsání" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivát z" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" @@ -1765,484 +2284,1049 @@ msgstr[0] "%1, %2 override" msgstr[1] "%1, %2 overrides" msgstr[2] "%1, %2 overrides" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Nastavení materiálu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Jak by měl být problém v materiálu vyřešen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Nastavení zobrazení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Mód" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Viditelná zařízení:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 z %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Nahrání projektu vymaže všechny modely na podložce." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Otevřít" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Chcete více?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Zálohovat nyní" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatické zálohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Automaticky vytvořte zálohu každý den, kdy je spuštěna Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Obnovit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Odstranit zálohu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Opravdu chcete tuto zálohu smazat? To nelze vrátit zpět." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Obnovit zálohu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Před obnovením zálohy budete muset restartovat Curu. Chcete nyní Curu zavřít?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura verze" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Zařízení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profily" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Zásuvné moduly" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura zálohy" +msgid "Post Processing Plugin" +msgstr "Zásuvný balíček Post Processing" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Moje zálohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Momentálně nemáte žádné zálohy. Pomocí tlačítka 'Zálohovat nyní' vytvořte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Během fáze náhledu budete omezeni na 5 viditelných záloh. Chcete-li zobrazit starší, odstraňte zálohu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Zálohovat a synchronizovat vaše nastavení Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Přihlásit se" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aktualizovat firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Firmware je software běžící přímo na vaší 3D tiskárně. Tento firmware řídí krokové motory, reguluje teplotu a v konečném důsledku zajišťuje vaši práci tiskárny." +msgid "Post Processing Scripts" +msgstr "Skripty Post Processingu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Přidat skript" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Dodávání firmwaru s novými tiskárnami funguje, ale nové verze mají obvykle více funkcí a vylepšení." +msgid "Settings" +msgstr "Nastavení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticky aktualizovat firmware" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Změnít aktivní post-processing skripty." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Nahrát vlastní firmware" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Následují skript je aktivní:" +msgstr[1] "Následují skripty jsou aktivní:" +msgstr[2] "Následují skripty jsou aktivní:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Firmware nelze aktualizovat, protože není spojeno s tiskárnou." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Firmware nelze aktualizovat, protože připojení k tiskárně nepodporuje aktualizaci firmwaru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Vybrat vlastní firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aktualizace firmwaru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aktualizuji firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aktualizace firmwaru kompletní." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Aktualizace firmwaru selhala kvůli neznámému problému." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Aktualizace firmwaru selhala kvůli chybě v komunikaci." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Aktualizace firmwaru selhala kvůli chybě vstupu / výstupu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Aktualizace firmwaru selhala kvůli chybějícímu firmwaru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Konvertovat obrázek.." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "Maximální vzdálenost každého pixelu od „základny“." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Výška (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Výška základny od podložky v milimetrech." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Základna (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "Šířka podložky v milimetrech." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Šířka (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "Hloubka podložky v milimetrech" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Hloubka (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "U litofanů by tmavé pixely měly odpovídat silnějším místům, aby blokovaly více světla procházejícího. Pro výškové mapy znamenají světlejší pixely vyšší terén, takže světlejší pixely by měly odpovídat silnějším umístěním v generovaném 3D modelu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Tmavější je vyšší" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Světlejší je vyšší" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Pro litofany je k dispozici jednoduchý logaritmický model pro průsvitnost. U výškových map odpovídají hodnoty pixelů lineárně výškám." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Lineární" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Průsvitnost" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "Procento světla pronikajícího do tisku o tloušťce 1 milimetr. Snížení této hodnoty zvyšuje kontrast v tmavých oblastech a snižuje kontrast ve světlých oblastech obrazu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1mm propustnost (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "Množství vyhlazení, které se použije na obrázek." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Vyhlazování" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Vyberte prosím všechny upgrady provedené v tomto originálu Ultimaker" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Vyhřívaná podložka (Oficiální kit, nebo vytvořená)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Vyrovnávání podložky" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Chcete-li se ujistit, že vaše výtisky vyjdou skvěle, můžete nyní sestavení své podložku. Když kliknete na „Přesunout na další pozici“, tryska se přesune do různých poloh, které lze upravit." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Pro každou pozici; vložte kousek papíru pod trysku a upravte výšku tiskové desky. Výška desky pro sestavení tisku je správná, když je papír lehce uchopen špičkou trysky." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Spustit vyrovnání položky" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Přesunout na další pozici" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Další informace o anonymním shromažďování údajů" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu. Níže uvádíme příklad všech sdílených dat:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Nechci posílat anonymní data" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Povolit zasílání anonymních dat" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Obchod" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Než se změny v balíčcích projeví, budete muset restartovat Curu." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Ukončit %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Nainstalovat" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Nainstalováno" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Premium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Přejít na webový obchod" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Hledat materiály" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Kompatibilita" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Zařízení" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Podložka" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Podpora" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Kvalita" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Technický datasheet" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Datasheet bezpečnosti" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Zásady tisku" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Webová stránka" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "K instalaci nebo aktualizaci je vyžadováno přihlášení" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Koupit cívky materiálu" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Aktualizace" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Aktualizuji" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Aktualizování" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Zpět" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Tiskárna" +msgid "Plugins" +msgstr "Zásuvné moduly" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nastavení trysky" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiály" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Nainstalování" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Velikost trysky" +msgid "Will install upon restarting" +msgstr "Nainstaluje se po restartu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Pro aktualizace je potřeba se přihlásit" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Downgrade" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Odinstalace" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Soubory od komunity" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatibilní průměr materiálu" +msgid "Community Plugins" +msgstr "Komunitní zásuvné moduly" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "X offset trysky" +msgid "Generic Materials" +msgstr "Obecné materiály" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Načítám balíčky..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Y offset trysky" +msgid "Website" +msgstr "Webová stránka" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Číslo chladícího větráku" +msgid "Email" +msgstr "Email" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Počáteční G-kód extuderu" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro Ultimaker Cura Enterprise" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Ukončující G-kód extuderu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Nastavení tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (Šířka)" +msgid "Version" +msgstr "Verze" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Hloubka)" +msgid "Last updated" +msgstr "Naposledy aktualizování" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Výška)" +msgid "Brand" +msgstr "Značka" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Tvar tiskové podložky" +msgid "Downloads" +msgstr "Ke stažení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Nainstalovaná rozšíření" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Žádné rozšíření nebylo nainstalováno." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Nainstalované materiály" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Žádný materiál nebyl nainstalován." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Zabalená rozšíření" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Zabalené materiály" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Nelze se připojit k databázi balíčku Cura. Zkontrolujte připojení." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Počátek ve středu" +msgid "You need to accept the license to install the package" +msgstr "Pro instalaci balíčku musíte přijmout licenční ujednání" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Změny z vašeho účtu" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Schovat" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Další" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Topná podložka" +msgid "The following packages will be added:" +msgstr "Následující balíčky byly přidány:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Vyhřívaný objem sestavení" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Následující balíčky nelze nainstalovat z důvodu nekompatibilní verze Cura:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Potvrdit odinstalaci" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Odinstalujete materiály a / nebo profily, které se stále používají. Potvrzením resetujete následující materiály / profily na výchozí hodnoty." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Materiály" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Profily" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Potvrdit" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Varianta G kódu" +msgid "Color scheme" +msgstr "Barevné schéma" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Nastavení tiskové hlavy" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Barva materiálu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Typ úsečky" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Rychlost" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Tloušťka vrstvy" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Šířka čáry" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Průtok" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X min" +msgid "Compatibility Mode" +msgstr "Mód kompatibility" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y min" +msgid "Travels" +msgstr "Cesty" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X max" +msgid "Helpers" +msgstr "Pomocníci" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y max" +msgid "Shell" +msgstr "Shell" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Výška rámu tiskárny" +msgid "Infill" +msgstr "Výplň" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Počet extrůderů" +msgid "Starts" +msgstr "Začátky" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplikovat offsety extruderu do G kódu" +msgid "Only Show Top Layers" +msgstr "Zobrazit jen vrchní vrstvy" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Počáteční G kód" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Zobrazit 5 podrobných vrstev nahoře" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Ukončující G kód" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Nahoře / Dole" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Vnitřní stěna" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Spravovat tiskárnu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Sklo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Aktualizujte firmware tiskárny a spravujte frontu vzdáleně." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Vstup z webové kamery nemůže být pro cloudové tiskárny zobrazen v Ultimaker Cura. Klikněte na \"Spravovat tiskárnu\", abyste navštívili Ultimaker Digital Factory a zobrazili tuto webkameru." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Načítám..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Nedostupný" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Nedostupný" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Čekám" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Připravuji..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Tisknu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Bez názvu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonymní" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Jsou nutné změny v nastavení" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Podrobnosti" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Nedostupná tiskárna" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "První dostupný" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Zařazeno do fronty" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Spravovat v prohlížeči" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Ve frontě nejsou žádné tiskové úlohy. Slicujte a odesláním úlohy jednu přidejte." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Tiskové úlohy" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Celkový čas tisknutí" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Čekám na" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Tisk přes síť" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Tisk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Výběr tiskárny" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Změny konfigurace" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Override" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:" +msgstr[1] "Přiřazená tiskárna %1 vyžaduje následující změny akonfigurace:" +msgstr[2] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Tiskárna %1 je přiřazena, ale úloha obsahuje neznámou konfiguraci materiálu." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Změnit materiál %1 z %2 na %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Načíst %3 jako materiál %1 (Toho nemůže být přepsáno)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Změnit jádro tisku %1 z %2 na %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Změnit podložku na %1 (Toto nemůže být přepsáno)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Přepsání použije zadaná nastavení s existující konfigurací tiskárny. To může vést k selhání tisku." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Hliník" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Dokončeno" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Ruším..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Zrušeno" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Selhání" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pozastavuji..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Pozastaveno" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Obnovuji..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Akce vyžadována" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Dokončuji %1 z %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Připojte se k síťové tiskárně" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Chcete-li tisknout přímo na tiskárně prostřednictvím sítě, zkontrolujte, zda je tiskárna připojena k síti pomocí síťového kabelu nebo připojením tiskárny k síti WIFI. Pokud nepřipojíte Curu k tiskárně, můžete stále používat jednotku USB k přenosu souborů g-kódu do vaší tiskárny." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Vyberte svou tiskárnu z nabídky níže:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Upravit" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Odstranit" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Aktualizovat" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Pokud vaše tiskárna není uvedena, přečtěte si průvodce řešením problémů se síťovým tiskem " + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Typ" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Verze firmwaru" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Adresa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Tato tiskárna není nastavena tak, aby hostovala skupinu tiskáren." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Tato tiskárna je hostitelem skupiny tiskáren %1." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Tiskárna na této adrese dosud neodpověděla." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Připojit" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Špatná IP adresa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Prosím zadejte validní IP adresu." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Adresa tiskárny" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Vložte IP adresu vaší tiskárny na síti." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Přesunout nahoru" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Odstranit" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Obnovit" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Pozastavuji..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Obnovuji..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Pozastavit" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Ruším..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Zrušit" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Doopravdy chcete posunout %1 na začátek fronty?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Přesunout tiskovou úlohu nahoru" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Doopravdy chcete odstranit %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Odstranit tiskovou úlohu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Doopravdy chcete zrušit %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Zrušit tisk" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2255,1415 +3339,433 @@ msgstr "" "- Zkontrolujte, zda je tiskárna připojena k síti.\n" "- Zkontrolujte, zda jste přihlášeni k objevování tiskáren připojených k cloudu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Připojte tiskárnu k síti." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Zobrazit online manuály" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Abyste mohli monitorovat tisk z Cury, připojte prosím tiskárnu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Typ síťového modelu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normální model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Tisknout jako podporu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Upravte nastavení překrývání" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Nepodporovat překrývání" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Pouze síť výplně" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Síť řezu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Vybrat nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Vybrat nastavení k přizpůsobení pro tento model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrovat..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Zobrazit vše" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Zásuvný balíček Post Processing" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Skripty Post Processingu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Přidat skript" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Změnít aktivní post-processing skripty." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Některé věci mohou být v tomto tisku problematické. Kliknutím zobrazíte tipy pro úpravy." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Následují skript je aktivní:" -msgstr[1] "Následují skripty jsou aktivní:" -msgstr[2] "Následují skripty jsou aktivní:" +msgid "3D View" +msgstr "3D Pohled" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Barevné schéma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Barva materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Typ úsečky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Rychlost" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Tloušťka vrstvy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Šířka čáry" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Průtok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Mód kompatibility" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Cesty" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Pomocníci" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Shell" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Výplň" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Začátky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Zobrazit jen vrchní vrstvy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Zobrazit 5 podrobných vrstev nahoře" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Nahoře / Dole" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Vnitřní stěna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Další informace o anonymním shromažďování údajů" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu. Níže uvádíme příklad všech sdílených dat:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Nechci posílat anonymní data" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Povolit zasílání anonymních dat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Zpět" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Kompatibilita" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Zařízení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Podložka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Podpora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Kvalita" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Technický datasheet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Datasheet bezpečnosti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Zásady tisku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Webová stránka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Nainstalováno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "K instalaci nebo aktualizaci je vyžadováno přihlášení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Koupit cívky materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Aktualizace" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Aktualizuji" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Aktualizování" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Přejít na webový obchod" +msgid "Front View" +msgstr "Přední pohled" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Pohled seshora" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Pohled zleva" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Pohled zprava" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Hledat materiály" +msgid "Object list" +msgstr "Seznam objektů" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Než se změny v balíčcích projeví, budete muset restartovat Curu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Ukončit %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Zásuvné moduly" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Nainstalování" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Nainstaluje se po restartu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Pro aktualizace je potřeba se přihlásit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgrade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Odinstalace" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Nainstalovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Změny z vašeho účtu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Schovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Další" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Následující balíčky byly přidány:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Následující balíčky nelze nainstalovat z důvodu nekompatibilní verze Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Potvrdit odinstalaci" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Odinstalujete materiály a / nebo profily, které se stále používají. Potvrzením resetujete následující materiály / profily na výchozí hodnoty." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profily" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Potvrdit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Pro instalaci balíčku musíte přijmout licenční ujednání" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Webová stránka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "Email" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Verze" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Naposledy aktualizování" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Značka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Ke stažení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Soubory od komunity" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Komunitní zásuvné moduly" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Obecné materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Nelze se připojit k databázi balíčku Cura. Zkontrolujte připojení." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Nainstalovaná rozšíření" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Žádné rozšíření nebylo nainstalováno." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Nainstalované materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Žádný materiál nebyl nainstalován." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Zabalená rozšíření" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Zabalené materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Načítám balíčky..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro Ultimaker Cura Enterprise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Obchod" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Vyrovnávání podložky" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Soubor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Chcete-li se ujistit, že vaše výtisky vyjdou skvěle, můžete nyní sestavení své podložku. Když kliknete na „Přesunout na další pozici“, tryska se přesune do různých poloh, které lze upravit." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "Upr&avit" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Pro každou pozici; vložte kousek papíru pod trysku a upravte výšku tiskové desky. Výška desky pro sestavení tisku je správná, když je papír lehce uchopen špičkou trysky." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "Po&hled" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Spustit vyrovnání položky" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Nasta&vení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Přesunout na další pozici" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "D&oplňky" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Vyberte prosím všechny upgrady provedené v tomto originálu Ultimaker" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&reference" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Vyhřívaná podložka (Oficiální kit, nebo vytvořená)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "Po&moc" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Připojte se k síťové tiskárně" +msgid "New project" +msgstr "Nový projekt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Chcete-li tisknout přímo na tiskárně prostřednictvím sítě, zkontrolujte, zda je tiskárna připojena k síti pomocí síťového kabelu nebo připojením tiskárny k síti WIFI. Pokud nepřipojíte Curu k tiskárně, můžete stále používat jednotku USB k přenosu souborů g-kódu do vaší tiskárny." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Vyberte svou tiskárnu z nabídky níže:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Upravit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Odstranit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Aktualizovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Pokud vaše tiskárna není uvedena, přečtěte si průvodce řešením problémů se síťovým tiskem " - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Verze firmwaru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adresa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Tato tiskárna není nastavena tak, aby hostovala skupinu tiskáren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Tato tiskárna je hostitelem skupiny tiskáren %1." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Tiskárna na této adrese dosud neodpověděla." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Připojit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Špatná IP adresa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Prosím zadejte validní IP adresu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Adresa tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Vložte IP adresu vaší tiskárny na síti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Změny konfigurace" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Override" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:" -msgstr[1] "Přiřazená tiskárna %1 vyžaduje následující změny akonfigurace:" -msgstr[2] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Tiskárna %1 je přiřazena, ale úloha obsahuje neznámou konfiguraci materiálu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Změnit materiál %1 z %2 na %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Načíst %3 jako materiál %1 (Toho nemůže být přepsáno)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Změnit jádro tisku %1 z %2 na %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Změnit podložku na %1 (Toto nemůže být přepsáno)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Přepsání použije zadaná nastavení s existující konfigurací tiskárny. To může vést k selhání tisku." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Sklo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Hliník" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Přesunout nahoru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Odstranit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Obnovit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pozastavuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Obnovuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pozastavit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Ruším..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Zrušit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Doopravdy chcete posunout %1 na začátek fronty?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Přesunout tiskovou úlohu nahoru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Doopravdy chcete odstranit %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Odstranit tiskovou úlohu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Doopravdy chcete zrušit %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Zrušit tisk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Spravovat tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Aktualizujte firmware tiskárny a spravujte frontu vzdáleně." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Načítám..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Nedostupný" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nedostupný" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Čekám" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Připravuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Tisknu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Bez názvu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonymní" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Jsou nutné změny v nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Podrobnosti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Nedostupná tiskárna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "První dostupný" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Zrušeno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Dokončeno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Ruším..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pozastavuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pozastaveno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Obnovuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Akce vyžadována" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Dokončuji %1 z %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Zařazeno do fronty" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Spravovat v prohlížeči" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Ve frontě nejsou žádné tiskové úlohy. Slicujte a odesláním úlohy jednu přidejte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Tiskové úlohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Celkový čas tisknutí" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Čekám na" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Tisk přes síť" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Tisk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Výběr tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Přihlásit se" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Přihlásit se do platformy Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Přidejte materiálnové profily and moduly z Obchodu\n" -"- Zálohujte a synchronizujte vaše materiálové profily and moduly\n" -"- Sdílejte nápady a získejte pomoc od více než 48 000 uživatelů v Ultimaker komunitě" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Vytvořit účet Ultimaker zdarma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Kontroluji..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Účet byl synchronizován" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Nastala chyba..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Nainstalujte čekající aktualizace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Zkontrolovat aktualizace pro účet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Poslední aktualizace: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker Account" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Odhlásit se" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Žádný odhad času není dostupný" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Žádná cena není dostupná" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Náhled" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Odhad času" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Odhad materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicuji..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Nelze slicovat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Zpracovává se" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Slicovat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Začít proces slicování" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Zrušit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Zobrazit online průvodce řešením problémů" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Přepnout zobrazení na celou obrazovku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Ukončit zobrazení na celou obrazovku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Vrátit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Znovu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Ukončit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3D Pohled" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Přední pohled" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Pohled seshora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Pohled zezdola" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Pohled z pravé strany" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Pohled z pravé strany" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Konfigurovat Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "Přidat t&iskárnu..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Spravovat &tiskárny..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Spravovat materiály..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Přidat více materiálů z obchodu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Aktualizovat profil s aktuálními nastaveními/přepsáními" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "Smazat aktuální &změny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Vytvořit profil z aktuálního nastavení/přepsání." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Spravovat profily..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Zobrazit online &dokumentaci" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Nahlásit &chybu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Co je nového" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Více..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Smazat vybrané" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centrovat vybrané" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Násobit vybrané" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Odstranit model" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "&Centerovat model na podložce" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "Sesk&upit modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Rozdělit modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Spo&jit modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "Náso&bení modelu..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Vybrat všechny modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Vyčistit podložku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Znovu načíst všechny modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Uspořádejte všechny modely do všechpodložek" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Uspořádat všechny modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Uspořádat selekci" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Resetovat všechny pozice modelů" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Resetovat všechny transformace modelů" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Otevřít soubor(y)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Nový projekt..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Zobrazit složku s konfigurací" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Konfigurovat viditelnost nastavení..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "Mark&et" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Tento balíček bude nainstalován po restartování." +msgid "Time estimation" +msgstr "Odhad času" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Obecné" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Odhad materiálu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Nastavení" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Tiskárny" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profily" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Žádný odhad času není dostupný" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Zavírám %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Žádná cena není dostupná" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Doopravdy chcete zavřít %1?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Náhled" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Otevřít soubor(y)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Nainstalovat balíček" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Otevřít Soubor(y)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Ve vybraných souborech jsme našli jeden nebo více souborů G-kódu. Naraz můžete otevřít pouze jeden soubor G-kódu. Pokud chcete otevřít soubor G-Code, vyberte pouze jeden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" msgstr "Přidat tiskárnu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Přidat síťovou tiskárnu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Přidat ne-síťovou tiskárnu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Přidat Cloudovou tiskárnu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Čekám na odpověď od Cloudu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Žádné tiskárny nenalezeny ve vašem účtě?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "Následující tiskárny ve vašem účtě byla přidány do Cury:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Přidat tiskárnu manuálně" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Přidat tiskárnu podle IP adresy" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Zadejte IP adresu vaší tiskárny." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Přidat" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Nelze se připojit k zařízení." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Nemůžete se připojit k Vaší tiskárně Ultimaker?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "Tiskárna na této adrese dosud neodpověděla." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Tuto tiskárnu nelze přidat, protože se jedná o neznámou tiskárnu nebo není hostitelem skupiny." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Zpět" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Připojit" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Uživatelská dohoda" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Odmítnout a zavřít" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Vítejte v Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "Při nastavování postupujte podle těchto pokynů Ultimaker Cura. Bude to trvat jen několik okamžiků." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Začínáme" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Přihlásit se do platformy Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Přidat nastavení materiálů a moduly z Obchodu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Zálohovat a synchronizovat nastavení materiálů a moduly" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Sdílejte nápady a získejte pomoc od více než 48 0000 uživatelů v Ultimaker komunitě" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Přeskočit" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Vytvořit účet Ultimaker zdarma" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Výrobce" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Autor profilu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Název tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Pojmenujte prosím svou tiskárnu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Přes síť nebyla nalezena žádná tiskárna." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Obnovit" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Přidat tiskárnu podle IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Přidat cloudovou tiskárnu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Podpora při problémech" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Pomožte nám zlepšovat Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu, včetně:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Typy zařízení" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Použití materiálu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Počet sliců" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Nastavení tisku" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Data shromážděná společností Ultimaker Cura nebudou obsahovat žádné osobní údaje." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Více informací" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "Co je nového" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Prázdné" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Poznámky k vydání" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "O %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "verze: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Komplexní řešení pro 3D tisk z taveného filamentu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3672,183 +3774,204 @@ msgstr "" "Cura vyvíjí Ultimaker B.V. ve spolupráci s komunitou.\n" "Cura hrdě používá následující open source projekty:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Grafické uživatelské prostředí" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Aplikační framework" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "Generátor G kódu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Meziprocesní komunikační knihovna" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Programovací jazyk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI framework" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Propojení GUI frameworku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "Binding knihovna C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Formát výměny dat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Podpůrná knihovna pro vědecké výpočty" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Podpůrný knihovna pro rychlejší matematické výpočty" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Podpůrná knihovna pro práci se soubory STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Podpůrná knihovna pro manipulaci s planárními objekty" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Podpůrná knihovna pro manipulaci s trojúhelníkovými sítěmi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Podpůrná knihovna pro manipulaci s 3MF soubory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Podpůrná knihovna pro metadata souborů a streaming" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Knihovna pro sériovou komunikaci" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Knihovna ZeroConf discovery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Knihovna pro výstřižky z mnohoúhelníků" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Kontrola statických typů pro Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Základní certifikáty pro validaci důvěryhodnosti SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Chyba v Python trackovací knihovně" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Knihovna pro plošnou optimalizaci vyvinutá Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Propojení libnest2d s jazykem Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Podpůrná knihovna pro přístup k systémové klíčence" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Python rozšíření pro Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Font" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "Ikony SVG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Linux cross-distribution application deployment" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Otevřít soubor s projektem" +msgid "Open file(s)" +msgstr "Otevřít soubor(y)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Toto je soubor projektu Cura. Chcete jej otevřít jako projekt nebo importovat z něj modely?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Ve vybraných souborech jsme našli jeden nebo více projektových souborů. Naraz můžete otevřít pouze jeden soubor projektu. Doporučujeme importovat pouze modely z těchto souborů. Chtěli byste pokračovat?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Pamatuj si moji volbu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Otevřít jako projekt" +msgid "Import all as models" +msgstr "Importovat vše jako modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Uložit projekt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extruder %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & materiál" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Materiál" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Nezobrazovat souhrn projektu při uložení znovu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Importovat modely" +msgid "Save" +msgstr "Uložit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Smazat nebo nechat změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3859,1210 +3982,144 @@ msgstr "" "Chcete tato změněná nastavení zachovat i po přepnutí profilů?\n" "V opačném případě můžete změny smazat a načíst výchozí hodnoty z '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Nastavení profilu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Aktuální změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Vždy se zeptat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Smazat a už se nikdy neptat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Nechat a už se nikdy neptat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Smazat změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Zanechat změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Otevřít soubor s projektem" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Ve vybraných souborech jsme našli jeden nebo více projektových souborů. Naraz můžete otevřít pouze jeden soubor projektu. Doporučujeme importovat pouze modely z těchto souborů. Chtěli byste pokračovat?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Toto je soubor projektu Cura. Chcete jej otevřít jako projekt nebo importovat z něj modely?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Pamatuj si moji volbu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importovat vše jako modely" +msgid "Open as project" +msgstr "Otevřít jako projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Uložit projekt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extruder %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & materiál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Materiál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Nezobrazovat souhrn projektu při uložení znovu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Uložit" +msgid "Import models" +msgstr "Importovat modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Tisknout vybraný model pomocí %1" -msgstr[1] "Tisknout vybraný model pomocí %1" -msgstr[2] "Tisknout vybraný model pomocí %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Bez názvu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Soubor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "Upr&avit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "Po&hled" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Nasta&vení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "D&oplňky" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&reference" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Po&moc" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Nový projekt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Obchod" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Konfigurace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Tato konfigurace není k dispozici, protože %1 nebyl rozpoznán. Navštivte prosím %2 a stáhněte si správný materiálový profil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Obchod" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Načítání dostupných konfigurací z tiskárny ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Konfigurace nejsou k dispozici, protože je tiskárna odpojena." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Vybrat konfiguraci" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Konfigurace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Vlastní" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Tiskárna" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Povoleno" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Materiál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "S touto kombinací materiálu pro lepší adhezi použijte lepidlo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Tisknout vybraný model pomocí:" -msgstr[1] "Tisknout vybrané modely pomocí:" -msgstr[2] "Tisknout vybrané modely pomocí:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Násobit vybraný model" -msgstr[1] "Násobit vybrané modele" -msgstr[2] "Násobit vybrané modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Počet kopií" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Uložit projekt..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportovat..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Výběr exportu..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Materiál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Oblíbené" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Obecné" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Otevřít soubor(y)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Tiskárny s povolenou sítí" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Lokální tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Otevřít &Poslední" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Uložit projekt..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Tiskárna" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Nastavit jako aktivní extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Povolit extuder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Zakázat Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Viditelná nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Sbalit všechny kategorie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Spravovat nastavení viditelnosti ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Pozice &kamery" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Pohled kamery" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspektiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortografický" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "Pod&ložka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Nepřipojen k tiskárně" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Tiskárna nepřijímá příkazy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "V údržbě. Prosím zkontrolujte tiskíárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Ztráta spojení s tiskárnou" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Tisknu..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pozastaveno" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Připravuji..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Prosím odstraňte výtisk" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Zrušit tisk" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Jste si jist, že chcete zrušit tisknutí?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Je tisknuto jako podpora." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Ostatní modely překrývající se s tímto modelem jsou upraveny." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Výplň překrývající se s tímto modelem byla modifikována." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Přesahy na tomto modelu nejsou podporovány." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Přepíše %1 nastavení." -msgstr[1] "Přepíše %1 nastavení." -msgstr[2] "Přepíše %1 nastavení." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Seznam objektů" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Rozhranní" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Měna:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Styl:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Aby se tyto změny projevily, budete muset aplikaci restartovat." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Slicovat automaticky při změně nastavení." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Slicovat automaticky" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Chování výřezu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Zvýraznit červeně místa modelu bez podpor. Bez podpor tyto místa nebudou správně vytisknuta." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Zobrazit převis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Zvýraznit chybějící nebo vedlejší povrchy modelu pomocí varovných značek. Dráhám nástrojů budou často chybět části zamýšlené geometrie." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Zobrazovat chyby modelu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Při výběru modelu pohybuje kamerou tak, aby byl model ve středu pohledu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Vycentrovat kameru pokud je vybrána položka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Mělo by být výchozí chování přiblížení u cury invertováno?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Obrátit směr přibližování kamery." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Mělo by se přibližování pohybovat ve směru myši?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "V pravoúhlé perspektivě není podporováno přiblížení směrem k myši." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Přiblížit směrem k směru myši" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Měly by se modely na platformě pohybovat tak, aby se již neprotínaly?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Zajistěte, aby modely byly odděleny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Měly by být modely na platformě posunuty dolů tak, aby se dotýkaly podložky?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automaticky přetáhnout modely na podložku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Zobrazte v čtečce g-kódu varovnou zprávu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Upozornění ve čtečce G-kódu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Měla by být vrstva vynucena do režimu kompatibility?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Měla by se Cura otevřít v místě, kde byla uzavřena?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Při zapnutí obnovit pozici okna" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Jaký typ kamery by se měl použít?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Vykreslování kamery:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspektiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Ortografický" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Otevírám a ukládám soubory" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Měli by se soubory z plochy, nebo externích aplikací otevírat ve stejné instanci Cury?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Používat pouze jednu instanci programu Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Měly by být modely upraveny na velikost podložky, pokud jsou příliš velké?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Škálovat velké modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Model se může jevit velmi malý, pokud je jeho jednotka například v metrech, nikoli v milimetrech. Měly by být tyto modely škálovány?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Škálovat extrémně malé modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Měly by být modely vybrány po načtení?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Vybrat modely po načtení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Je třeba k názvu tiskové úlohy přidat předponu založenou na názvu tiskárny automaticky?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Přidat předponu zařízení před název úlohy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Mělo by se při ukládání souboru projektu zobrazit souhrn?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Zobrazit souhrnný dialog při ukládání projektu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Výchozí chování při otevírání souboru" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Výchozí chování při otevření souboru s projektem: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Vždy se zeptat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Vždy otevírat jako projekt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Vždy importovat modely" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Pokud jste provedli změny v profilu a přepnuli na jiný, zobrazí se dialogové okno s dotazem, zda si přejete zachovat své modifikace nebo ne, nebo si můžete zvolit výchozí chování a už nikdy toto dialogové okno nezobrazovat." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Profily" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Výchozí chování pro změněné hodnoty nastavení při přepnutí na jiný profil: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Vždy smazat změněné nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Vždy přesunout nastavení do nového profilu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Soukromí" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Měla by Cura zkontrolovat aktualizace při spuštění programu?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Zkontrolovat aktualizace při zapnutí" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Měla by být anonymní data o vašem tisku zaslána společnosti Ultimaker? Upozorňujeme, že nejsou odesílány ani ukládány žádné modely, adresy IP ani jiné osobní údaje." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Posílat (anonymní) informace o tisku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Více informací" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivovat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Přejmenovat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Vytvořit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplikovat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Import" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Export" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Synchronizovat s tiskárnami" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Tiskárna" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Potvrdit odstranění" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Doopravdy chcete odstranit %1? Toto nelze vrátit zpět!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importovat materiál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Nelze importovat materiál %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Úspěšně importován materiál %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportovat materiál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Neúspěch při exportu materiálu do %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Úspěšné exportování materiálu do %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportovat všechny materiály" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Potvrdit změnu průměru" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Nový průměr vlákna je nastaven na %1 mm, což není kompatibilní s aktuálním extrudérem. Přejete si pokračovat?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Jméno" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Typ materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Barva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Vlastnosti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Husttoa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Průměr" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Cena filamentu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Váha filamentu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Délka filamentu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Cena za metr" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Tento materiál je propojen s %1 a sdílí některé jeho vlastnosti." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Zrušit propojení s materiálem" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Popis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informace o adhezi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Nastavení tisku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Vytvořit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplikovat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Vytvořit profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Prosím uveďte jméno pro tento profil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplikovat profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Přejmenovat profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importovat profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportovat profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Tiskárna: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Aktualizovat profil s aktuálním nastavení/přepsánímy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Zrušit aktuální změny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Tento profil používá výchozí nastavení zadaná tiskárnou, takže nemá žádná nastavení / přepíše v níže uvedeném seznamu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Vaše aktuální nastavení odpovídá vybranému profilu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Globální nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Vypočítáno" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Aktuální" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Jednotka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Nastavení zobrazení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Zkontrolovat vše" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extuder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Cílová teplota hotendu. Hotend se ohřeje nebo ochladí na tuto teplotu. Pokud je 0, ohřev teplé vody je vypnutý." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Aktuální teplota tohoto hotendu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Teplota pro předehřátí hotendu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Zrušit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Předehřání" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Před tiskem zahřejte hotend předem. Můžete pokračovat v úpravách tisku, zatímco se zahřívá, a nemusíte čekat na zahřátí hotendu, až budete připraveni k tisku." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Barva materiálu v tomto extruderu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Materiál v tomto extruderu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Vložená trysky v tomto extruderu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Podložka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "Cílová teplota vyhřívací podložky. Podložka se zahřeje, nebo schladí směrem k této teplotě. Pokud je 0, tak je vyhřívání podložky vypnuto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Aktuální teplota vyhřívané podložky." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Teplota pro předehřátí podložky." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Před tiskem zahřejte postel předem. Můžete pokračovat v úpravě tisku, zatímco se zahřívá, a nemusíte čekat, až se postel zahřeje, až budete připraveni k tisku." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Ovládání tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Pozice hlavy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Vzdálenost hlavy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Poslat G kód" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Na připojenou tiskárnu odešlete vlastní příkaz G-kódu. Stisknutím klávesy „Enter“ odešlete příkaz." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Tiskárna není připojena." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "Cloudová tiskárna je offline. Prosím zkontrolujte, zda je tiskárna zapnutá a připojená k internetu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Tiskárna není připojena k vašemu účtu. Prosím navštivte Ultimaker Digital Factory pro navázání spojení." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "Připojení ke cloudu není nyní dostupné. Prosím přihlašte se k připojení ke cloudové tiskárně." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "Připojení ke cloudu není nyní dostupné. Prosím zkontrolujte si vaše internetové připojení." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Přidat tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Spravovat tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Připojené tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Přednastavené tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Aktivní tisk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Název úlohy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Čas tisku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Předpokládaný zbývající čas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "Cloudová tiskárna je offline. Prosím zkontrolujte, zda je tiskárna zapnutá a připojená k internetu." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Tiskárna není připojena k vašemu účtu. Prosím navštivte Ultimaker Digital Factory pro navázání spojení." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "Připojení ke cloudu není nyní dostupné. Prosím přihlašte se k připojení ke cloudové tiskárně." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "Připojení ke cloudu není nyní dostupné. Prosím zkontrolujte si vaše internetové připojení." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Přidat tiskárnu" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Spravovat tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Připojené tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Přednastavené tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Nastavení tisku" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Nastavení tisku zakázáno. Soubor G-kódu nelze změnit." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5073,12 +4130,43 @@ msgstr "" "\n" "Klepnutím otevřete správce profilů." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Vlastní profily" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Zrušit aktuální změny" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Doporučeno" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Vlastní" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Zap" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Vyp" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimentální" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" @@ -5086,108 +4174,1664 @@ msgstr[0] "Neexistuje žádný profil %1 pro konfiguraci v extruderu %2. Místo msgstr[1] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr" msgstr[2] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Nastavení tisku zakázáno. Soubor G-kódu nelze změnit." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Doporučeno" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Vlastní" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Zap" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Vyp" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Experimentální" +msgid "Profiles" +msgstr "Profily" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Adheze" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Umožňuje tisk okraje nebo voru. Tímto způsobem se kolem nebo pod objekt přidá plochá oblast, kterou lze snadno odříznout." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Postupná výplň" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Postupná výplň postupně zvyšuje množství výplně směrem nahoru." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Upravili jste některá nastavení profilu. Pokud je chcete změnit, přejděte do uživatelského režimu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Podpora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Vytvořte struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Některá skrytá nastavení používají hodnoty odlišné od jejich normální vypočtené hodnoty.\n" -"\n" -"Klepnutím toto nastavení zviditelníte." +msgid "Gradual infill" +msgstr "Postupná výplň" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Postupná výplň postupně zvyšuje množství výplně směrem nahoru." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Adheze" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Umožňuje tisk okraje nebo voru. Tímto způsobem se kolem nebo pod objekt přidá plochá oblast, kterou lze snadno odříznout." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Uložit projekt..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Tiskárny s povolenou sítí" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Lokální tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Materiál" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Oblíbené" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Obecné" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Tisknout vybraný model pomocí:" +msgstr[1] "Tisknout vybrané modely pomocí:" +msgstr[2] "Tisknout vybrané modely pomocí:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Násobit vybraný model" +msgstr[1] "Násobit vybrané modele" +msgstr[2] "Násobit vybrané modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Počet kopií" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Uložit projekt..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportovat..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Výběr exportu..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Konfigurace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Vlastní" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Tiskárna" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Povoleno" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Materiál" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "S touto kombinací materiálu pro lepší adhezi použijte lepidlo." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "Konfigurace tohoto extruderu není dovolena a znemožňuje slicování." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Neexistují žádné profily odpovídající nastavení tohoto extruderu." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Vybrat konfiguraci" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Konfigurace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Načítání dostupných konfigurací z tiskárny ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "Konfigurace nejsou k dispozici, protože je tiskárna odpojena." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Tato konfigurace není k dispozici, protože %1 nebyl rozpoznán. Navštivte prosím %2 a stáhněte si správný materiálový profil." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Obchod" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Otevřít soubor(y)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Tiskárna" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Materiál" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Nastavit jako aktivní extruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Povolit extuder" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Zakázat Extruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Otevřít &Poslední" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Viditelná nastavení" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Sbalit všechny kategorie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Spravovat nastavení viditelnosti ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Pozice &kamery" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Pohled kamery" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspektiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortografický" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "Pod&ložka" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Typ pohledu" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Je tisknuto jako podpora." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Ostatní modely překrývající se s tímto modelem jsou upraveny." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Výplň překrývající se s tímto modelem byla modifikována." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Přesahy na tomto modelu nejsou podporovány." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Přepíše %1 nastavení." +msgstr[1] "Přepíše %1 nastavení." +msgstr[2] "Přepíše %1 nastavení." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profily" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Aktivovat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Vytvořit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Duplikovat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Přejmenovat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Import" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Export" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Vytvořit profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Prosím uveďte jméno pro tento profil." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplikovat profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Potvrdit odstranění" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Doopravdy chcete odstranit %1? Toto nelze vrátit zpět!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Přejmenovat profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importovat profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportovat profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Tiskárna: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Aktualizovat profil s aktuálním nastavení/přepsánímy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Tento profil používá výchozí nastavení zadaná tiskárnou, takže nemá žádná nastavení / přepíše v níže uvedeném seznamu." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Vaše aktuální nastavení odpovídá vybranému profilu." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Globální nastavení" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Obecné" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Rozhranní" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Měna:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Styl:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Aby se tyto změny projevily, budete muset aplikaci restartovat." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Slicovat automaticky při změně nastavení." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Slicovat automaticky" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Chování výřezu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Zvýraznit červeně místa modelu bez podpor. Bez podpor tyto místa nebudou správně vytisknuta." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Zobrazit převis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Zvýraznit chybějící nebo vedlejší povrchy modelu pomocí varovných značek. Dráhám nástrojů budou často chybět části zamýšlené geometrie." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Zobrazovat chyby modelu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Při výběru modelu pohybuje kamerou tak, aby byl model ve středu pohledu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Vycentrovat kameru pokud je vybrána položka" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Mělo by být výchozí chování přiblížení u cury invertováno?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Obrátit směr přibližování kamery." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Mělo by se přibližování pohybovat ve směru myši?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "V pravoúhlé perspektivě není podporováno přiblížení směrem k myši." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Přiblížit směrem k směru myši" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Měly by se modely na platformě pohybovat tak, aby se již neprotínaly?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Zajistěte, aby modely byly odděleny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Měly by být modely na platformě posunuty dolů tak, aby se dotýkaly podložky?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Automaticky přetáhnout modely na podložku" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Zobrazte v čtečce g-kódu varovnou zprávu." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Upozornění ve čtečce G-kódu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Měla by být vrstva vynucena do režimu kompatibility?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Měla by se Cura otevřít v místě, kde byla uzavřena?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Při zapnutí obnovit pozici okna" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Jaký typ kamery by se měl použít?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Vykreslování kamery:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspektiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Ortografický" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Otevírám a ukládám soubory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Měli by se soubory z plochy, nebo externích aplikací otevírat ve stejné instanci Cury?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Používat pouze jednu instanci programu Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Má být podložka vyčištěna před načtením nového modelu v jediné instanci Cury?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Vyčistit podložku před načtením modelu do jediné instance" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Měly by být modely upraveny na velikost podložky, pokud jsou příliš velké?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Škálovat velké modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Model se může jevit velmi malý, pokud je jeho jednotka například v metrech, nikoli v milimetrech. Měly by být tyto modely škálovány?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Škálovat extrémně malé modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Měly by být modely vybrány po načtení?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Vybrat modely po načtení" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Je třeba k názvu tiskové úlohy přidat předponu založenou na názvu tiskárny automaticky?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Přidat předponu zařízení před název úlohy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Mělo by se při ukládání souboru projektu zobrazit souhrn?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Zobrazit souhrnný dialog při ukládání projektu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Výchozí chování při otevírání souboru" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Výchozí chování při otevření souboru s projektem: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Vždy se zeptat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Vždy otevírat jako projekt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Vždy importovat modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Pokud jste provedli změny v profilu a přepnuli na jiný, zobrazí se dialogové okno s dotazem, zda si přejete zachovat své modifikace nebo ne, nebo si můžete zvolit výchozí chování a už nikdy toto dialogové okno nezobrazovat." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Výchozí chování pro změněné hodnoty nastavení při přepnutí na jiný profil: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Vždy smazat změněné nastavení" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Vždy přesunout nastavení do nového profilu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Soukromí" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Měla by být anonymní data o vašem tisku zaslána společnosti Ultimaker? Upozorňujeme, že nejsou odesílány ani ukládány žádné modely, adresy IP ani jiné osobní údaje." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Posílat (anonymní) informace o tisku" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Více informací" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Aktualizace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Měla by Cura zkontrolovat aktualizace při spuštění programu?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Zkontrolovat aktualizace při zapnutí" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Při kontrole aktualizací kontrolovat pouze stabilní vydání." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Pouze stabilní vydání" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Při kontrole aktualizací kontrolovat stabilní i beta vydání." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Stabilní a beta vydání" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Mají být při každém startu Cury automaticky kontrolovány nové moduly? Důrazně doporučujeme tuto možnost nevypínat!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Získávat oznámení o aktualizacích modulů" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Informace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Potvrdit změnu průměru" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Nový průměr vlákna je nastaven na %1 mm, což není kompatibilní s aktuálním extrudérem. Přejete si pokračovat?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Jméno" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Typ materiálu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Barva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Vlastnosti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Husttoa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Průměr" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Cena filamentu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Váha filamentu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Délka filamentu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Cena za metr" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Tento materiál je propojen s %1 a sdílí některé jeho vlastnosti." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Zrušit propojení s materiálem" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Popis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informace o adhezi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Vytvořit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplikovat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Synchronizovat s tiskárnami" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Tiskárna" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importovat materiál" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Nelze importovat materiál %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Úspěšně importován materiál %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportovat materiál" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Neúspěch při exportu materiálu do %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Úspěšné exportování materiálu do %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Synchronizovat materiály s tiskárnami" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Synchronizovat materiály s tiskárnami" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Následováním několika jednoduchých kroků budete moci synchronizovat všechny vaše materiálové profily s vašimi tiskárnami." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Začít" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "K čemu je dobrá synchronizace materiálových profilů?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Přihlásit se" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Pro automatickou synchronizaci materiálových profilů se všemi vašimi tiskárnami připojenými k Digital Factory musíte být přihlášení v Cuře." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Synchronizovat materiály pomocí USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Následující tiskárny získají nové materiálové profily:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Při odesílání materiálů do tiskáren se něco nepodařilo." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Materiálové profily byly úspěšně synchronizovány s následujícími tiskárnami:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Podpora při problémech" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Chybí tiskárny?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Ujistěte se, že jsou všechny vaše tiskárny zapnuté a připojené k Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Obnovit seznam" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Zkusit znovu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Hotovo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Synchronizovat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Synchronizuji" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nenalezeny žádné tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Zdá se, že nemáte žádné kompatibilní tiskárny připojené k Digital Factory. Ujistěte se, že je vaše tiskárna připojena a používá nejnovější firmware." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Zjistěte, jak připojit vaši tiskárnu k Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Obnovit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Synchronizovat materiálové profily přes USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Následujte tyto kroky, abyste nahráli nové materiálové profily do vaší tiskárny." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Klikněte na tlačítko \"Exportovat archiv s materiálem\"." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Uložte soubor .umm na USB úložiště." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Připojte USB úložiště k vaší tiskárně a spusťte proceduru pro nahrání nových materiálových profilů." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Jak nahrát nové materiálové profily do mé tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportovat archiv s materiálem" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportovat všechny materiály" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Nastavení zobrazení" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Zkontrolovat vše" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Vypočítáno" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Nastavení" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Aktuální" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Jednotka" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Nepřipojen k tiskárně" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Tiskárna nepřijímá příkazy" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "V údržbě. Prosím zkontrolujte tiskíárnu" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Ztráta spojení s tiskárnou" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Tisknu..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pozastaveno" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Připravuji..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Prosím odstraňte výtisk" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Zrušit tisk" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Jste si jist, že chcete zrušit tisknutí?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Tisknout vybraný model pomocí %1" +msgstr[1] "Tisknout vybraný model pomocí %1" +msgstr[2] "Tisknout vybraný model pomocí %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Moje tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Sledujte tiskárny v Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Vytvořte tiskové projekty v Digital Library." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Tiskové úlohy" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Sledujte tiskové úlohy a znovu tiskněte z historie." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Rozšiřte Ultimaker Cura pomocí modulů a materiálových profilů." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Staňte se expertem na 3D tisk díky Ultimaker e-learningu." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker podpora" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Zjistěte, jak začít s Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Položit otázku" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Poraďte se s Ultimaker komunitou." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Nahlásit chybu" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Dejte vývojářům vědět, že je něco špatně." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Navštivte web Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Ovládání tiskárny" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Pozice hlavy" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Vzdálenost hlavy" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Poslat G kód" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Na připojenou tiskárnu odešlete vlastní příkaz G-kódu. Stisknutím klávesy „Enter“ odešlete příkaz." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Extuder" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Cílová teplota hotendu. Hotend se ohřeje nebo ochladí na tuto teplotu. Pokud je 0, ohřev teplé vody je vypnutý." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Aktuální teplota tohoto hotendu." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Teplota pro předehřátí hotendu." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Zrušit" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Předehřání" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Před tiskem zahřejte hotend předem. Můžete pokračovat v úpravách tisku, zatímco se zahřívá, a nemusíte čekat na zahřátí hotendu, až budete připraveni k tisku." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Barva materiálu v tomto extruderu." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Materiál v tomto extruderu." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Vložená trysky v tomto extruderu." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Tiskárna není připojena." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Podložka" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "Cílová teplota vyhřívací podložky. Podložka se zahřeje, nebo schladí směrem k této teplotě. Pokud je 0, tak je vyhřívání podložky vypnuto." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Aktuální teplota vyhřívané podložky." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Teplota pro předehřátí podložky." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Před tiskem zahřejte postel předem. Můžete pokračovat v úpravě tisku, zatímco se zahřívá, a nemusíte čekat, až se postel zahřeje, až budete připraveni k tisku." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Přihlásit se" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Přidejte materiálnové profily and moduly z Obchodu\n" +"- Zálohujte a synchronizujte vaše materiálové profily and moduly\n" +"- Sdílejte nápady a získejte pomoc od více než 48 000 uživatelů v Ultimaker komunitě" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Vytvořit účet Ultimaker zdarma" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Poslední aktualizace: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker Account" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Odhlásit se" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Kontroluji..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Účet byl synchronizován" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Nastala chyba..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Nainstalujte čekající aktualizace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Zkontrolovat aktualizace pro účet" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Bez názvu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Není z čeho vybírat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Zobrazit online průvodce řešením problémů" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Přepnout zobrazení na celou obrazovku" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Ukončit zobrazení na celou obrazovku" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Vrátit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Znovu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Ukončit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3D Pohled" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Přední pohled" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Pohled seshora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Pohled zezdola" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Pohled z pravé strany" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Pohled z pravé strany" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Konfigurovat Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "Přidat t&iskárnu..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Spravovat &tiskárny..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Spravovat materiály..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Přidat více materiálů z obchodu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Aktualizovat profil s aktuálními nastaveními/přepsáními" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "Smazat aktuální &změny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Vytvořit profil z aktuálního nastavení/přepsání." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Spravovat profily..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Zobrazit online &dokumentaci" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Nahlásit &chybu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Co je nového" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Více..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Smazat vybrané" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centrovat vybrané" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Násobit vybrané" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Odstranit model" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "&Centerovat model na podložce" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "Sesk&upit modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Rozdělit modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Spo&jit modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "Náso&bení modelu..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Vybrat všechny modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Vyčistit podložku" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Znovu načíst všechny modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Uspořádejte všechny modely do všechpodložek" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Uspořádat všechny modely" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Uspořádat selekci" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Resetovat všechny pozice modelů" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Resetovat všechny transformace modelů" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Otevřít soubor(y)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Nový projekt..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Zobrazit složku s konfigurací" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Konfigurovat viditelnost nastavení..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "Mark&et" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Toto nastavení se nepoužívá, protože všechna nastavení, která ovlivňuje, jsou přepsána." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Ovlivňuje" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Ovlivněno" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Toto nastavení je vždy sdíleno všemi extrudéry. Jeho změnou se změní hodnota všech extruderů." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Toto nastavení je vyřešeno z konfliktních hodnot specifického extruder:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5198,7 +5842,7 @@ msgstr "" "\n" "Klepnutím obnovíte hodnotu profilu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5209,507 +5853,93 @@ msgstr "" "\n" "Klepnutím obnovíte vypočítanou hodnotu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Prohledat nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Kopírovat hodnotu na všechny extrudery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Kopírovat všechny změněné hodnoty na všechny extrudery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Schovat toto nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Neukazovat toto nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Nechat toto nastavení viditelné" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D Pohled" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Přední pohled" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Pohled seshora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Pohled zleva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Pohled zprava" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Typ pohledu" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Některá skrytá nastavení používají hodnoty odlišné od jejich normální vypočtené hodnoty.\n" +"\n" +"Klepnutím toto nastavení zviditelníte." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Přidat Cloudovou tiskárnu" +msgid "This package will be installed after restarting." +msgstr "Tento balíček bude nainstalován po restartování." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Čekám na odpověď od Cloudu" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Žádné tiskárny nenalezeny ve vašem účtě?" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Zavírám %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "Následující tiskárny ve vašem účtě byla přidány do Cury:" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Doopravdy chcete zavřít %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Přidat tiskárnu manuálně" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Nainstalovat balíček" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Výrobce" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Otevřít Soubor(y)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor profilu" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Ve vybraných souborech jsme našli jeden nebo více souborů G-kódu. Naraz můžete otevřít pouze jeden soubor G-kódu. Pokud chcete otevřít soubor G-Code, vyberte pouze jeden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Název tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Pojmenujte prosím svou tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" msgstr "Přidat tiskárnu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Přidat síťovou tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Přidat ne-síťovou tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Přes síť nebyla nalezena žádná tiskárna." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Obnovit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Přidat tiskárnu podle IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Přidat cloudovou tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Podpora při problémech" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Přidat tiskárnu podle IP adresy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Zadejte IP adresu vaší tiskárny." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Přidat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Nelze se připojit k zařízení." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Nemůžete se připojit k Vaší tiskárně Ultimaker?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "Tiskárna na této adrese dosud neodpověděla." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Tuto tiskárnu nelze přidat, protože se jedná o neznámou tiskárnu nebo není hostitelem skupiny." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Zpět" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Připojit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Poznámky k vydání" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Přidat nastavení materiálů a moduly z Obchodu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Zálohovat a synchronizovat nastavení materiálů a moduly" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Sdílejte nápady a získejte pomoc od více než 48 0000 uživatelů v Ultimaker komunitě" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Vytvořit účet Ultimaker zdarma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Přeskočit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Pomožte nám zlepšovat Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu, včetně:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Typy zařízení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Použití materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Počet sliců" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Nastavení tisku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Data shromážděná společností Ultimaker Cura nebudou obsahovat žádné osobní údaje." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Více informací" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Prázdné" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Uživatelská dohoda" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Odmítnout a zavřít" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Vítejte v Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Při nastavování postupujte podle těchto pokynů Ultimaker Cura. Bude to trvat jen několik okamžiků." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Začínáme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "Co je nového" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Není z čeho vybírat" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Zkontroluje možné tiskové modely a konfiguraci tisku a poskytne návrhy." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Kontroler modelu" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Poskytuje podporu pro čtení souborů 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Čtečka 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Poskytuje podporu pro psaní souborů 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Zapisovač 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Poskytuje podporu pro čtení souborů AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Čtečka AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Zálohujte a obnovte konfiguraci." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura zálohy" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Poskytuje odkaz na backend krájení CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Poskytuje podporu pro import profilů Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Čtečka Cura profilu" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Poskytuje podporu pro export profilů Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Zapisovač Cura profilu" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Připojuje k Digitální knihovně. Umožňuje Cuře otevírat a ukládat soubory z a do Digitální knihovny." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitální knihovna Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Zkontroluje dostupné aktualizace firmwaru." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Kontroler aktualizace firmwaru" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Poskytuje akce počítače pro aktualizaci firmwaru." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware Updater" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Čte g-kód z komprimovaného archivu." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Čtečka kompresovaného G kódu" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Zapíše g-kód do komprimovaného archivu." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Zapisova kompresovaného G kódu" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Poskytuje podporu pro import profilů ze souborů g-kódu." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Čtečka profilu G kódu" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Povoluje načítání a zobrazení souborů G kódu." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Čtečka G kódu" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Zapisuje G kód o souboru." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Zapisovač G kódu" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Umožňuje generovat tiskovou geometrii ze 2D obrazových souborů." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Čtečka obrázků" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Poskytuje podporu pro import profilů ze starších verzí Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Čtečka legacy Cura profilu" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Poskytuje způsob, jak změnit nastavení zařízení (například objem sestavení, velikost trysek atd.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Akce nastavení zařízení" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Poskytuje monitorovací scénu v Cuře." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fáze monitoringu" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5720,85 +5950,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Nástroj pro nastavení pro každý model" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Rozšíření, které umožňuje uživateli vytvořené skripty pro následné zpracování" +msgid "Provides support for importing Cura profiles." +msgstr "Poskytuje podporu pro import profilů Cura." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Post Processing" +msgid "Cura Profile Reader" +msgstr "Čtečka Cura profilu" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Poskytuje přípravnou fázi v Cuře." +msgid "Provides support for reading X3D files." +msgstr "Poskytuje podporu pro čtení souborů X3D." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Fáze přípravy" +msgid "X3D Reader" +msgstr "Čtečka X3D" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Poskytuje fázi náhledu v Cura." +msgid "Backup and restore your configuration." +msgstr "Zálohujte a obnovte konfiguraci." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Fáze náhledu" +msgid "Cura Backups" +msgstr "Cura zálohy" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Poskytuje vyměnitelnou jednotku za plného zapojení a podporu zápisu." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Poskytuje způsob, jak změnit nastavení zařízení (například objem sestavení, velikost trysek atd.)." -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Vyměnitelný zásuvný modul pro výstupní zařízení" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Protokolová určité události, aby je mohl použít reportér havárií" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Záznamník hlavy" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Poskytuje zobrazení simulace." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Pohled simulace" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Odešle anonymní informace o slicování. Lze deaktivovat pomocí preferencí." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informace o slicování" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Poskytuje normální zobrazení pevné sítě." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Solid View" +msgid "Machine Settings Action" +msgstr "Akce nastavení zařízení" #: SupportEraser/plugin.json msgctxt "description" @@ -5810,35 +6000,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Mazač podpor" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Najděte, spravujte a nainstalujte nové balíčky Cura." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Poskytuje vyměnitelnou jednotku za plného zapojení a podporu zápisu." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Nástroje" +msgid "Removable Drive Output Device Plugin" +msgstr "Vyměnitelný zásuvný modul pro výstupní zařízení" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Poskytuje podporu pro čtení souborů modelu." +msgid "Provides a machine actions for updating firmware." +msgstr "Poskytuje akce počítače pro aktualizaci firmwaru." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Čtečka trimesh" +msgid "Firmware Updater" +msgstr "Firmware Updater" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Poskytuje podporu pro čtení balíčků formátu Ultimaker." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Poskytuje podporu pro import profilů ze starších verzí Cura." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "Čtečka UFP" +msgid "Legacy Cura Profile Reader" +msgstr "Čtečka legacy Cura profilu" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Poskytuje podporu pro čtení souborů 3MF." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Čtečka 3MF" #: UFPWriter/plugin.json msgctxt "description" @@ -5850,25 +6050,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "Zapisovač UFP" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Poskytuje akce strojů pro stroje Ultimaker (jako je průvodce vyrovnáváním postele, výběr upgradů atd.)." +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Protokolová určité události, aby je mohl použít reportér havárií" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Akce zařízení Ultimaker" +msgid "Sentry Logger" +msgstr "Záznamník hlavy" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Spravuje síťová připojení k síťovým tiskárnám Ultimaker." +msgid "Provides support for importing profiles from g-code files." +msgstr "Poskytuje podporu pro import profilů ze souborů g-kódu." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Síťové připojení Ultimaker" +msgid "G-code Profile Reader" +msgstr "Čtečka profilu G kódu" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Poskytuje fázi náhledu v Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Fáze náhledu" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Poskytuje rentgenové zobrazení." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Rentgenový pohled" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Poskytuje odkaz na backend krájení CuraEngine." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Poskytuje podporu pro čtení souborů AMF." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Čtečka AMF" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Čte g-kód z komprimovaného archivu." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Čtečka kompresovaného G kódu" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Rozšíření, které umožňuje uživateli vytvořené skripty pro následné zpracování" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Post Processing" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Poskytuje podporu pro export profilů Cura." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Zapisovač Cura profilu" #: USBPrinting/plugin.json msgctxt "description" @@ -5880,25 +6150,135 @@ msgctxt "name" msgid "USB printing" msgstr "USB tisk" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aktualizuje konfigurace z Cura 2.1 na Cura 2.2." +msgid "Provides a prepare stage in Cura." +msgstr "Poskytuje přípravnou fázi v Cuře." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Aktualizace verze 2.1 na 2.2" +msgid "Prepare Stage" +msgstr "Fáze přípravy" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aktualizuje konfigurace z Cura 2.2 na Cura 2.4." +msgid "Allows loading and displaying G-code files." +msgstr "Povoluje načítání a zobrazení souborů G kódu." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Aktualizace verze 2.2 na 2.4" +msgid "G-code Reader" +msgstr "Čtečka G kódu" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Umožňuje generovat tiskovou geometrii ze 2D obrazových souborů." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Čtečka obrázků" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Poskytuje akce strojů pro stroje Ultimaker (jako je průvodce vyrovnáváním postele, výběr upgradů atd.)." + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Akce zařízení Ultimaker" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Zapíše g-kód do komprimovaného archivu." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Zapisova kompresovaného G kódu" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Zkontroluje dostupné aktualizace firmwaru." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Kontroler aktualizace firmwaru" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Odešle anonymní informace o slicování. Lze deaktivovat pomocí preferencí." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informace o slicování" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Poskytuje funkce pro čtení a zápis materiálových profilů založených na XML." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Materiálové profily" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Připojuje k Digitální knihovně. Umožňuje Cuře otevírat a ukládat soubory z a do Digitální knihovny." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digitální knihovna Ultimaker" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Najděte, spravujte a nainstalujte nové balíčky Cura." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Nástroje" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Zapisuje G kód o souboru." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Zapisovač G kódu" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Poskytuje zobrazení simulace." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Pohled simulace" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Aktualizuje konfigurace z Cura 4.5 na Cura 4.6." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Aktualizace verze 4.5 na 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5910,55 +6290,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Aktualizace verze 2.5 na 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aktualizuje konfigurace z Cura 2.6 na Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Aktualizuje konfigurace z Cura 4.6.0 na Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Aktualizace verze 2.6 na 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Aktualizace verze 4.6.0 na 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aktualizuje konfigurace z Cura 2.7 na Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Aktualizuje konfigurace z Cura 4.7 na Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Aktualizace verze 2.7 na 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aktualizuje konfigurace z Cura 3.0 na Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Aktualizace verze 3.0 na 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aktualizuje konfigurace z Cura 3.2 na Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Aktualizace verze 3.2 na 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aktualizuje konfigurace z Cura 3.3 na Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Aktualizace verze 3.3 na 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Aktualizace verze 4.7 na 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5970,35 +6320,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Aktualizace verze 3.4 na 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aktualizuje konfigurace z Cura 3.5 na Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aktualizuje konfigurace z Cura 2.1 na Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Aktualizace verze 3.5 na 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Aktualizace verze 2.1 na 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aktualizuje konfigurace z Cura 4.0 na Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aktualizuje konfigurace z Cura 3.2 na Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Aktualizace verze 4.0 na 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Aktualizace verze 3.2 na 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aktualizuje konfigurace z Cura 4.1 na Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Aktualizuje konfigurace z Cura 4.8 na Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Aktualizace verze 4.1 na 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Aktualizace verze 4.8 na 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aktualizuje konfigurace z Cura 4.6.2 na Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Aktualizace verze 4.6.2 na 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6020,66 +6380,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Aktualizace verze 4.3 na 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Aktualizuje konfigurace z Cura 4.4 na Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Aktualizace verze 4.4 na 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Aktualizuje konfigurace z Cura 4.5 na Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aktualizace verze 4.5 na 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Aktualizuje konfigurace z Cura 4.6.0 na Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Aktualizace verze 4.6.0 na 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aktualizuje konfigurace z Cura 4.6.2 na Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Aktualizace verze 4.6.2 na 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Aktualizuje konfigurace z Cura 4.7 na Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Aktualizace verze 4.7 na 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Aktualizuje konfigurace z Cura 4.8 na Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Aktualizace verze 4.8 na 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6090,35 +6390,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Aktualizace verze 4.9 na 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Poskytuje podporu pro čtení souborů X3D." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aktualizuje konfigurace z Cura 2.7 na Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "Čtečka X3D" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Aktualizace verze 2.7 na 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Poskytuje funkce pro čtení a zápis materiálových profilů založených na XML." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aktualizuje konfigurace z Cura 2.6 na Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Materiálové profily" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Aktualizace verze 2.6 na 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Poskytuje rentgenové zobrazení." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aktualizuje konfigurace z Cura 4.11 na Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Rentgenový pohled" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Aktualizace verze 4.11 na 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aktualizuje konfigurace z Cura 3.3 na Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Aktualizace verze 3.3 na 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aktualizuje konfigurace z Cura 3.0 na Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Aktualizace verze 3.0 na 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aktualizuje konfigurace z Cura 4.0 na Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Aktualizace verze 4.0 na 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Aktualizuje konfigurace z Cura 4.4 na Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Aktualizace verze 4.4 na 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aktualizuje konfigurace z Cura 2.2 na Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Aktualizace verze 2.2 na 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aktualizuje konfigurace z Cura 4.1 na Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Aktualizace verze 4.1 na 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aktualizuje konfigurace z Cura 3.5 na Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Aktualizace verze 3.5 na 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Spravuje síťová připojení k síťovým tiskárnám Ultimaker." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Síťové připojení Ultimaker" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Poskytuje podporu pro čtení souborů modelu." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Čtečka trimesh" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Poskytuje podporu pro čtení balíčků formátu Ultimaker." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Čtečka UFP" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Poskytuje normální zobrazení pevné sítě." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Solid View" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Poskytuje podporu pro psaní souborů 3MF." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Zapisovač 3MF" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Poskytuje monitorovací scénu v Cuře." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fáze monitoringu" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Zkontroluje možné tiskové modely a konfiguraci tisku a poskytne návrhy." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Kontroler modelu" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Odesílejte a sledujte tiskové úlohy odkudkoli pomocí účtu Ultimaker." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Připojit se k Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Vstup z webových kamer pro cloudové tiskárny nemůže být v Ultimaker Cura zobrazen." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "Pro vaše {machine_name} mohou být k dispozici nové funkce nebo opravy chyb! Pokud ještě není v nejnovější verzi, doporučuje se aktualizovat firmware v tiskárně na verzi {latest_version}." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Nový %s firmware je dostupný" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/cs_CZ/fdmextruder.def.json.po b/resources/i18n/cs_CZ/fdmextruder.def.json.po index e2833ba4c3..3dbaac522c 100644 --- a/resources/i18n/cs_CZ/fdmextruder.def.json.po +++ b/resources/i18n/cs_CZ/fdmextruder.def.json.po @@ -1,13 +1,13 @@ # Cura # Copyright (C) 2021 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2020. +# Ultimaker , 2020. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2020-02-20 17:30+0100\n" "Last-Translator: DenyCZ \n" "Language-Team: DenyCZ \n" diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index fca828a2a6..c25f85b6cb 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -1,21 +1,21 @@ # Cura # Copyright (C) 2021 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2020. +# Ultimaker , 2020. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" -"PO-Revision-Date: 2021-04-04 19:37+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" +"PO-Revision-Date: 2021-12-17 21:11+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" "Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.2\n" +"X-Generator: Poedit 3.0\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -153,6 +153,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "Hlouba (Isa Y) plochy k tisku." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Výška zařízení" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Výška (Osa Z) plochy k tisku." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -193,16 +203,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Hliník" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Výška zařízení" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Výška (Osa Z) plochy k tisku." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -560,8 +560,8 @@ msgstr "Maximální rychlost pro motor ve směru Z." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Maximální feedrate" +msgid "Maximum Speed E" +msgstr "Maximální rychlost E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -685,8 +685,8 @@ msgstr "Kroků za milimetr (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Kolik kroků krokového motoru povede k pohybu kolečka feederu o jeden milimetr po jeho obvodu." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1433,6 +1433,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Propojte horní / dolní povrchové cesty tam, kde běží vedle sebe. Pro soustředné uspořádání umožňující toto nastavení výrazně zkracuje dobu cestování, ale protože se spojení může uskutečnit uprostřed výplně, může tato funkce snížit kvalitu povrchu." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotónní pořadí horních / dolních povrchů" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Tisknout horní / dolní linky v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1503,6 +1513,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotónní pořadí žehlení" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Tisknout žehlící linky v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1710,8 +1730,8 @@ msgstr "Výplňový vzor" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Vzor výplňového materiálu tisku. Směr a cik-cak vyplňují směr výměny na alternativních vrstvách, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychlový, oktet, čtvrtý krychlový, křížový a soustředný obrazec jsou plně vytištěny v každé vrstvě. Výplň Gyroid, krychlový, kvartální a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Vzor výplňového materiálu tisku. Čáry a cik-cak s každou vrstvou obracejí směr výplně, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychle, oktet, čtvrtinově krychlový, křížový a soustředný vzor jsou plně vytištěny v každé vrstvě. Vzory gyroid, krychlový, čtvrtinově krychlový a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru. Bleskový vzor se snaží minimalizovat množství výplně tím, že podporuje pouze strop objektu." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1751,7 +1771,7 @@ msgstr "Oktet" #: fdmprinter.def.json msgctxt "infill_pattern option quarter_cubic" msgid "Quarter Cubic" -msgstr "Čtvrtina krychlove" +msgstr "Čtvrtinově krychlový" #: fdmprinter.def.json msgctxt "infill_pattern option concentric" @@ -1761,7 +1781,7 @@ msgstr "Soustředný" #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" -msgstr "Zig Zag" +msgstr "Cik-cak" #: fdmprinter.def.json msgctxt "infill_pattern option cross" @@ -1778,6 +1798,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Bleskový" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1992,6 +2017,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Počet výplňových vrstev, které podporují okraje povrchu." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Úhel podpory bleskové výplně" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Určuje, kdy má vrstva bleskové výplně nad sebou něco, co má podporovat. Zadává se jako úhel a řídí se tloušťkou vrstvy." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Úhel převisu bleskové podpory" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Určuje, od jakého úhlu převisu bude vrstva bleskové výplň podporovat model nad sebou." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Úhel ústupu bleskové vrstvy" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Koncové body čar výplně jsou zkracovány pro šetření materiálu. Toto nastavení je úhel převisu koncových bodů těchto čar." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Úhel vyrovnávání bleskové vrstvy" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Čáry výplně jsou vyrovnávány, aby se snížila doba tisku. Toto je maximální dovolený úhel převisu podél čáry výplně." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3182,6 +3247,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Vše" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Ne na vnějším povrchu" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5133,8 +5203,8 @@ msgstr "Minimální šířka formy" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "Minimální vzdálenost mezi vnější stranou formy a vnější stranou modelu." +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Minimální vzdálenost mezi vnější stranou formy a modelu." #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5301,6 +5371,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotónní pořadí horního povrchu" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Tisknout linky horního povrchu v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6400,6 +6480,34 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Transformační matice, která se použije na model při načítání ze souboru." +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maximální feedrate" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "Vzor výplňového materiálu tisku. Čáry a cik-cak s každou vrstvou obracejí směr výplně, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychle, oktet, čtvrtinově krychlový, křížový a soustředný vzor jsou plně vytištěny v každé vrstvě. Vzory gyroid, krychlový, čtvrtinově krychlový a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru. Bleskový vzor se snaží minimalizovat množství výplně tím, že podporuje pouze horní povrchy objektu. U bleskového vzoru má procento význam pouze v první vrstvě pod každým povrchem." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami se větve bleskové výplně zkracují." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami může docházet k vyrovnávání větví bleskové výplně." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Vzor výplňového materiálu tisku. Směr a cik-cak vyplňují směr výměny na alternativních vrstvách, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychlový, oktet, čtvrtý krychlový, křížový a soustředný obrazec jsou plně vytištěny v každé vrstvě. Výplň Gyroid, krychlový, kvartální a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Minimální vzdálenost mezi vnější stranou formy a vnější stranou modelu." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení." diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 07459f1da2..629b2c3a6a 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,189 +18,464 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "" -"The printer(s) below cannot be connected because they are part of a group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 -#, python-brace-format -msgctxt "@label {0} is the name of a printer that's about to be deleted." -msgid "Are you sure you wish to remove {0}? This cannot be undone!" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "" -"The visual profile is designed to print visual prototypes and models with " -"the intent of high visual and surface quality." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "" -"The engineering profile is designed to print functional prototypes and end-" -"use parts with the intent of better accuracy and for closer tolerances." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "" -"The draft profile is designed to print initial prototypes and concept " -"validation with the intent of significant print time reduction." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 -msgctxt "@label" -msgid "Custom profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 -msgctxt "@info:title" -msgid "Login failed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -msgctxt "@info:status" -msgid "Finding new location for objects" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -msgctxt "@info:title" -msgid "Finding Location" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 -msgctxt "@info:status" -msgid "Unable to find a location within the build volume for all objects" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -msgctxt "@info:title" -msgid "Can't Find Location" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "" +"Please sync the material profiles with your printers before starting to " +"print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 msgctxt "@info:status" msgid "" "The build volume height has been reduced due to the value of the \"Print " "Sequence\" setting to prevent the gantry from colliding with printed models." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 msgctxt "@info:title" msgid "Build Volume" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#, python-brace-format +msgctxt "@label {0} is the name of a printer that's about to be deleted." +msgid "Are you sure you wish to remove {0}? This cannot be undone!" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "" +"The printer(s) below cannot be connected because they are part of a group" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +msgctxt "@label" +msgid "Custom profiles" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "" +"The visual profile is designed to print visual prototypes and models with " +"the intent of high visual and surface quality." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "" +"The engineering profile is designed to print functional prototypes and end-" +"use parts with the intent of better accuracy and for closer tolerances." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "" +"The draft profile is designed to print initial prototypes and concept " +"validation with the intent of significant print time reduction." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +msgctxt "@info:title" +msgid "Login failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +msgctxt "@info:status" +msgid "Finding new location for objects" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +msgctxt "@info:title" +msgid "Finding Location" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +msgctxt "@info:status" +msgid "Unable to find a location within the build volume for all objects" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +msgctxt "@info:title" +msgid "Can't Find Location" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "" +"Failed to connect to Digital Factory to sync materials with some of the " +"printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "" +"@info 'width', 'depth' and 'height' are variable names that must NOT be " +"translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format +msgctxt "@info:status" +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +msgctxt "@info:title" +msgid "Warning" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right." @@ -215,32 +490,32 @@ msgid "" " " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report " @@ -250,221 +525,186 @@ msgid "" " " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "

  • OpenGL Version: {version}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "" -"@info 'width', 'depth' and 'height' are variable names that must NOT be " -"translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "" "Unable to start a new sign in process. Check if another sign in attempt is " "still active." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "" +"Settings have been changed to match the current availability of extruders:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "" @@ -472,20 +712,20 @@ msgid "" "overwrite it?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "" "Failed to export profile to {0}: {1}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "" @@ -493,44 +733,44 @@ msgid "" "failure." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "" "Can't import profile from {0} before a printer is added." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "" @@ -538,51 +778,51 @@ msgid "" "import it." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "" @@ -590,7 +830,7 @@ msgid "" "definition '{1}'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "" @@ -599,173 +839,201 @@ msgid "" "combination that can use this quality type." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" +msgid "Per Model Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "" -"Settings have been changed to match the current availability of extruders:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" +msgid "Backups" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" +msgid "Saving" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and " -"material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.\n" -"

    View print quality " -"guide

    " +msgid "Could not save to removable drive {0}: {1}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "" @@ -774,12 +1042,12 @@ msgid "" "instead." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "" @@ -787,20 +1055,20 @@ msgid "" "." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "" "Project file {0} is corrupt: {1}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "" @@ -808,124 +1076,95 @@ msgid "" "unknown to this version of Ultimaker Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "" -"The operating system does not allow saving a project file to this location " -"or with this file name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" +msgid "Ultimaker Format Package" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" +msgid "G-code File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" +msgid "Preview" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "" +"Slicing failed with an unexpected error. Please consider reporting a bug on " +"our issue tracker." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "" "Unable to slice with the current material as it is incompatible with the " "selected machine or configuration." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "" @@ -933,7 +1172,7 @@ msgid "" "errors: {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "" @@ -941,13 +1180,13 @@ msgid "" "errors on one or more models: {error_labels}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "" "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "" @@ -955,7 +1194,7 @@ msgid "" "%s." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -964,474 +1203,451 @@ msgid "" "- Are not all set as modifier meshes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" +msgid "AMF File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "" -"@info Don't translate {machine_name}, since it gets replaced by a printer " -"name!" -msgid "" -"New features or bug-fixes may be available for your {machine_name}! If not " -"already at the latest version, it is recommended to update the firmware on " -"your printer to version {latest_version}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "" +"A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "" +"A print is still in progress. Cura cannot start another print via USB until " +"the previous print has completed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" msgid "Parsing G-code" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" msgid "G-code Details" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" msgid "" "Make sure the g-code is suitable for your printer and printer configuration " "before sending the file to it. The g-code representation may not be accurate." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" msgid "G File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" msgid "JPEG Image" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" msgid "PNG Image" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" msgid "BMP Image" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -msgctxt "@info:title" -msgid "Saving" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "" -"The highlighted areas indicate either missing or extraneous surfaces. Fix " -"your model and open it again into Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "" +"@info Don't translate {machine_name}, since it gets replaced by a printer " +"name!" +msgid "" +"New features or bug-fixes may be available for your {machine_name}! If you " +"haven't done so already, it is recommended to update the firmware on your " +"printer to version {latest_version}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "" +"You are attempting to connect to a printer that is not running Ultimaker " +"Connect. Please update the printer to the latest firmware." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Cura has detected material profiles that were not yet installed on the host " +"printer of group {0}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"You are attempting to connect to {0} but it is not the host of a group. You " +"can visit the web page to configure it as a group host." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting " +"your printer to Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1439,71 +1655,71 @@ msgid_plural "... and {0} others" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1517,7 +1733,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be " @@ -1525,449 +1741,442 @@ msgid "" "Are you sure you want to continue?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 -msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "" -"You are attempting to connect to a printer that is not running Ultimaker " -"Connect. Please update the printer to the latest firmware." +"The highlighted areas indicate either missing or extraneous surfaces. Fix " +"your model and open it again into Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" +msgid "Model Errors" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "" -"Cura has detected material profiles that were not yet installed on the host " -"printer of group {0}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "" -"You are attempting to connect to {0} but it is not the host of a group. You " -"can visit the web page to configure it as a group host." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" +msgid "Solid view" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "" +"The operating system does not allow saving a project file to this location " +"or with this file name." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and " +"material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.\n" +"

    View print quality " +"guide

    " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "" -"A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgid "Mesh Type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "" -"A print is still in progress. Cura cannot start another print via USB until " -"the previous print has completed." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" +msgid "Infill mesh only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" +msgid "Cutting mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "" -"Some things could be problematic in this print. Click to see tips for " -"adjustment." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 -msgctxt "@action:label" -msgid "Type" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 -msgctxt "@action:label" -msgid "Name" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 -msgctxt "@action:label" -msgid "Intent" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 -msgctxt "@action:label" -msgid "Mode" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 msgctxt "@action:button" -msgid "Open" +msgid "Select settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 msgctxt "@button" msgid "Want more?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 msgctxt "@button" msgid "Backup Now" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 msgctxt "@checkbox:description" msgid "Auto Backup" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 msgctxt "@checkbox:description" msgid "Automatically create a backup each day that Cura is started." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 msgctxt "@button" msgid "Restore" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 msgctxt "@dialog:title" msgid "Delete Backup" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 msgctxt "@dialog:info" msgid "Are you sure you want to delete this backup? This cannot be undone." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 msgctxt "@dialog:title" msgid "Restore Backup" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 msgctxt "@dialog:info" msgid "" "You will need to restart Cura before your backup is restored. Do you want to " "close Cura now?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 msgctxt "@title" msgid "My Backups" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 msgctxt "@empty_state" msgid "" "You don't have any backups currently. Use the 'Backup Now' button to create " "one." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 msgctxt "@backup_limit_info" msgid "" "During the preview phase, you'll be limited to 5 visible backups. Remove a " "backup to see older ones." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 msgctxt "@title" msgid "Update Firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 msgctxt "@label" msgid "" "Firmware is the piece of software running directly on your 3D printer. This " @@ -1975,122 +2184,289 @@ msgid "" "makes your printer work." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 msgctxt "@label" msgid "" "The firmware shipping with new printers works, but new versions tend to have " "more features and improvements." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 msgctxt "@action:button" msgid "Automatically upgrade Firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 msgctxt "@label" msgid "" "Firmware can not be updated because there is no connection with the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 msgctxt "@label" msgid "" "Firmware can not be updated because the connection with the printer does not " "support upgrading firmware." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 msgctxt "@title:window" msgid "Select custom firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 msgctxt "@title:window" msgid "Firmware Update" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" msgid "Updating firmware." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" msgid "Firmware update completed." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" msgid "Firmware update failed due to an unknown error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 msgctxt "@label" msgid "Firmware update failed due to an communication error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 msgctxt "@label" msgid "Firmware update failed due to an input/output error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 msgctxt "@label" msgid "Firmware update failed due to missing firmware." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +msgctxt "@info:tooltip" +msgid "How should the conflict in the machine be resolved?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +msgctxt "@action:label" +msgid "Type" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +msgctxt "@info:tooltip" +msgid "How should the conflict in the profile be resolved?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +msgctxt "@action:label" +msgid "Name" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +msgctxt "@action:label" +msgid "Material settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +msgctxt "@info:tooltip" +msgid "How should the conflict in the material be resolved?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +msgctxt "@action:label" +msgid "Mode" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:label" +msgid "Visible settings:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +msgctxt "@action:button" +msgid "Open" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +msgctxt "@label" +msgid "Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "" "For lithophanes dark pixels should correspond to thicker locations in order " @@ -2099,35 +2475,35 @@ msgid "" "the generated 3D model." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "" "For lithophanes a simple logarithmic model for translucency is available. " "For height maps the pixel values correspond to heights linearly." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "" "The percentage of light penetrating a print with a thickness of 1 " @@ -2135,734 +2511,44 @@ msgid "" "decreases the contrast in light regions of the image." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 msgctxt "@label" -msgid "Nozzle size" +msgid "Please select any upgrades made to this Ultimaker Original" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 msgctxt "@label" -msgid "mm" +msgid "Heated Build Plate (official kit or self-built)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "" -"Ultimaker Cura collects anonymous data in order to improve the print quality " -"and user experience. Below is an example of all the data that is shared:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "" -"The following packages can not be installed because of an incompatible Cura " -"version:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "" -"You are uninstalling materials and/or profiles that are still in use. " -"Confirming will reset the following materials/profiles to their defaults." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "" -"Could not connect to the Cura Package database. Please check your connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "" -"Please sign in to get verified plugins and materials for Ultimaker Cura " -"Enterprise" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 msgctxt "@label" msgid "" "To make sure your prints will come out great, you can now adjust your " @@ -2870,7 +2556,7 @@ msgid "" "the different positions that can be adjusted." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 msgctxt "@label" msgid "" "For every position; insert a piece of paper under the nozzle and adjust the " @@ -2878,32 +2564,696 @@ msgid "" "paper is slightly gripped by the tip of the nozzle." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 msgctxt "@action:button" msgid "Move to Next Position" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "" +"Ultimaker Cura collects anonymous data in order to improve the print quality " +"and user experience. Below is an example of all the data that is shared:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +msgctxt "@title:tab" +msgid "Plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +msgctxt "@label" +msgid "Will install upon restarting" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +msgctxt "@label" +msgid "Website" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +msgctxt "@label" +msgid "Email" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "" +"Please sign in to get verified plugins and materials for Ultimaker Cura " +"Enterprise" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +msgctxt "@label" +msgid "Version" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +msgctxt "@label" +msgid "Last updated" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +msgctxt "@label" +msgid "Brand" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "" +"Could not connect to the Cura Package database. Please check your connection." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +msgctxt "@label" +msgid "" +"The following packages can not be installed because of an incompatible Cura " +"version:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "" +"You are uninstalling materials and/or profiles that are still in use. " +"Confirming will reset the following materials/profiles to their defaults." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 +msgctxt "@label" +msgid "Color scheme" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 +msgctxt "@label" +msgid "Travels" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 +msgctxt "@label" +msgid "Helpers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Shell" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 +msgctxt "@label" +msgid "Infill" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 +msgctxt "@label" +msgid "Starts" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "" +"Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click " +"\"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "" +"The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "" +"The printer %1 is assigned, but the job contains an unknown material " +"configuration." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "" +"Override will use the specified settings with the existing printer " +"configuration. This may result in a failed print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 msgctxt "@label" msgid "" "To print directly to your printer over the network, please make sure your " @@ -2913,1078 +3263,776 @@ msgid "" "printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 msgctxt "@label" msgid "Select your printer from the list below:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 msgctxt "@action:button" msgid "Edit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 msgctxt "@action:button" msgid "Remove" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 msgctxt "@action:button" msgid "Refresh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 msgctxt "@label" msgid "" "If your printer is not listed, read the network printing " "troubleshooting guide" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 msgctxt "@label" msgid "Type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 msgctxt "@label" msgid "Firmware version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 msgctxt "@label" msgid "Address" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 msgctxt "@label" msgid "This printer is not set up to host a group of printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 msgctxt "@action:button" msgid "Connect" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 msgctxt "@title:window" msgid "Invalid IP address" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 msgctxt "@text" msgid "Please enter a valid IP address." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 msgctxt "@title:window" msgid "Printer Address" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 msgctxt "@label" msgid "Enter the IP address of your printer on the network." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "" -"The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "" -"The printer %1 is assigned, but the job contains an unknown material " -"configuration." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "" -"Override will use the specified settings with the existing printer " -"configuration. This may result in a failed print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 msgctxt "@label" msgid "Move to top" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 msgctxt "@label" msgid "Delete" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 msgctxt "@label" msgid "Resume" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 msgctxt "@label" msgid "Pausing..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 msgctxt "@label" msgid "Resuming..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 msgctxt "@label" msgid "Pause" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 msgctxt "@label" msgid "Aborting..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 msgctxt "@label" msgid "Abort" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 msgctxt "@window:title" msgid "Move print job to top" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to delete %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 msgctxt "@window:title" msgid "Delete print job" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to abort %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 msgctxt "@window:title" msgid "Abort print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +msgctxt "@info" +msgid "Please connect your printer to the network." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 +msgctxt "@info:tooltip" +msgid "" +"Some things could be problematic in this print. Click to see tips for " +"adjustment." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Checking..." +msgid "Object list" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +msgctxt "@action:button" +msgid "Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +msgctxt "@title:window" +msgid "New project" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." +msgid "Time estimation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" msgid "" -"We have found one or more G-Code files within the files you have selected. " -"You can only open one G-Code file at a time. If you want to open a G-Code " -"file, please just select only one." +"This printer cannot be added because it's an unknown printer or it's not the " +"host of a group." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "" +"Please follow these steps to set up Ultimaker Cura. This will only take a " +"few moments." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "" +"Ultimaker Cura collects anonymous data to improve print quality and user " +"experience, including:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "" +"Data collected by Ultimaker Cura will not contain any personal information." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" +msgid "Open file(s)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -msgctxt "@text:window" -msgid "" -"This is a Cura project file. Would you like to open it as a project or " -"import the models from it?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 -msgctxt "@text:window, %1 is a profile name" -msgid "" -"You have customized some profile settings.\n" -"Would you like to Keep these changed settings after switching profiles?\n" -"Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 -msgctxt "@title:column" -msgid "Current changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" msgid "" "We have found one or more project file(s) within the files you have " @@ -3992,1219 +4040,202 @@ msgid "" "import models from those files. Would you like to proceed?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" msgid "Import all as models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 msgctxt "@title:window" msgid "Save Project" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 msgctxt "@action:label" msgid "Extruder %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 msgctxt "@action:label" msgid "%1 & material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 msgctxt "@action:label" msgid "Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" msgid "Save" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" -msgid "New project" +msgid "Discard or Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -msgctxt "@info:question" +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 +msgctxt "@text:window, %1 is a profile name" msgid "" -"Are you sure you want to start a new project? This will clear the build " -"plate and any unsaved settings." +"You have customized some profile settings.\n" +"Would you like to Keep these changed settings after switching profiles?\n" +"Alternatively, you can discard the changes to load the defaults from '%1'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 +msgctxt "@title:column" +msgid "Profile settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 +msgctxt "@title:column" +msgid "Current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "" -"This configuration is not available because %1 is not recognized. Please " -"visit %2 to download the correct material profile." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "" -"The configurations are not available because the printer is disconnected." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "" -"You will need to restart the application for these changes to have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "" -"Highlight unsupported areas of the model in red. Without support these areas " -"will not print properly." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "" -"Highlight missing or extraneous surfaces of the model using warning signs. " -"The toolpaths will often be missing parts of the intended geometry." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "" -"Moves the camera so the model is in the center of the view when a model is " -"selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "" -"Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "" -"Should models on the platform be moved so that they no longer intersect?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "" -"Should opening files from the desktop or external applications open in the " -"same instance of Cura?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "" -"An model may appear extremely small if its unit is for example in meters " -"rather than millimeters. Should these models be scaled up?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "" -"Should a prefix based on the printer name be added to the print job name " -"automatically?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 +msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "" -"When you have made changes to a profile and switched to a different one, a " -"dialog will be shown asking whether you want to keep your modifications or " -"not, or you can choose a default behaviour and never show that dialog again." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "" -"Default behavior for changed setting values when switching to a different " -"profile: " -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" +msgid "Discard and never ask again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" +msgid "Keep and never ask again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "" -"Should anonymous data about your print be sent to Ultimaker? Note, no " -"models, IP addresses or other personally identifiable information is sent or " -"stored." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" -msgid "More information" +msgid "Discard changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" -msgid "Activate" +msgid "Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +msgctxt "@text:window" +msgid "" +"This is a Cura project file. Would you like to open it as a project or " +"import the models from it?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Rename" +msgid "Open as project" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Create" +msgid "Import models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "" -"Could not import material %1: %2" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "" -"Failed to export material to %1: %2" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "" -"The new filament diameter is set to %1 mm, which is not compatible with the " -"current extruder. Do you wish to continue?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" -msgid "Display Name" +msgid "Active print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" -msgid "Material Type" +msgid "Job Name" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" -msgid "Color" +msgid "Printing Time" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" -msgid "Properties" +msgid "Estimated time left" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "" -"This profile uses the defaults specified by the printer, so it has no " -"settings/overrides in the list below." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "" -"The target temperature of the hotend. The hotend will heat up or cool down " -"towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "" -"Heat the hotend in advance before printing. You can continue adjusting your " -"print while it is heating, and you won't have to wait for the hotend to heat " -"up when you're ready to print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "" -"The target temperature of the heated bed. The bed will heat up or cool down " -"towards this temperature. If this is 0, the bed heating is turned off." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "" -"Heat the bed in advance before printing. You can continue adjusting your " -"print while it is heating, and you won't have to wait for the bed to heat up " -"when you're ready to print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "" -"Send a custom G-code command to the connected printer. Press 'enter' to send " -"the command." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 msgctxt "@status" msgid "" "The cloud printer is offline. Please check if the printer is turned on and " "connected to the internet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 msgctxt "@status" msgid "" "This printer is not linked to your account. Please visit the Ultimaker " "Digital Factory to establish a connection." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 msgctxt "@status" msgid "" "The cloud connection is currently unavailable. Please sign in to connect to " "the cloud printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 msgctxt "@status" msgid "" "The cloud connection is currently unavailable. Please check your internet " "connection." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 msgctxt "@button" msgid "Add printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 msgctxt "@button" msgid "Manage printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 msgctxt "@label" msgid "Connected printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 msgctxt "@label" msgid "Preset printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 msgctxt "@label" -msgid "Active print" +msgid "Print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the " @@ -5213,12 +4244,43 @@ msgid "" "Click to open the profile manager." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "" "@label %1 is filled in with the type of a profile. %2 is filled with a list " "of numbers (eg '1' or '1, 2')" @@ -5231,117 +4293,1729 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" +msgid "Profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "" -"Enable printing a brim or raft. This will add a flat area around or under " -"your object which is easy to cut off afterwards." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "" -"Gradual infill will gradually increase the amount of infill towards the top." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "" "You have modified some profile settings. If you want to change these go to " "custom mode." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "" "Generate structures to support parts of the model which have overhangs. " "Without these structures, such parts would collapse during printing." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated " -"value.\n" -"\n" -"Click to make these settings visible." +msgid "Gradual infill" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "" +"Gradual infill will gradually increase the amount of infill towards the top." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "" +"Enable printing a brim or raft. This will add a flat area around or under " +"your object which is easy to cut off afterwards." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "" +"The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "" +"The configurations are not available because the printer is disconnected." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "" +"This configuration is not available because %1 is not recognized. Please " +"visit %2 to download the correct material profile." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "" +"This profile uses the defaults specified by the printer, so it has no " +"settings/overrides in the list below." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "" +"You will need to restart the application for these changes to have effect." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "" +"Highlight unsupported areas of the model in red. Without support these areas " +"will not print properly." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "" +"Highlight missing or extraneous surfaces of the model using warning signs. " +"The toolpaths will often be missing parts of the intended geometry." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "" +"Moves the camera so the model is in the center of the view when a model is " +"selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "" +"Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "" +"Should models on the platform be moved so that they no longer intersect?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "" +"Should opening files from the desktop or external applications open in the " +"same instance of Cura?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "" +"Should the build plate be cleared before loading a new model in the single " +"instance of Cura?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "" +"An model may appear extremely small if its unit is for example in meters " +"rather than millimeters. Should these models be scaled up?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "" +"Should a prefix based on the printer name be added to the print job name " +"automatically?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "" +"When you have made changes to a profile and switched to a different one, a " +"dialog will be shown asking whether you want to keep your modifications or " +"not, or you can choose a default behaviour and never show that dialog again." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "" +"Default behavior for changed setting values when switching to a different " +"profile: " +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "" +"Should anonymous data about your print be sent to Ultimaker? Note, no " +"models, IP addresses or other personally identifiable information is sent or " +"stored." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "" +"Should an automatic check for new plugins be done every time Cura is " +"started? It is highly recommended that you do not disable this!" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "" +"The new filament diameter is set to %1 mm, which is not compatible with the " +"current extruder. Do you wish to continue?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "" +"Could not import material %1: %2" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "" +"Failed to export material to %1: %2" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "" +"Following a few simple steps, you will be able to synchronize all your " +"material profiles with your printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "" +"To automatically sync the material profiles with all your printers connected " +"to Digital Factory you need to be signed in in Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "" +"Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "" +"It seems like you don't have any compatible printers connected to Digital " +"Factory. Make sure your printer is connected and it's running the latest " +"firmware." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "" +"@text In the UI this is followed by a list of steps the user needs to take." +msgid "" +"Follow the following steps to load the new material profiles to your printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "" +"Insert the USB stick into your printer and launch the procedure to load new " +"material profiles." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "" +"Send a custom G-code command to the connected printer. Press 'enter' to send " +"the command." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "" +"The target temperature of the hotend. The hotend will heat up or cool down " +"towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "" +"Heat the hotend in advance before printing. You can continue adjusting your " +"print while it is heating, and you won't have to wait for the hotend to heat " +"up when you're ready to print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "" +"The target temperature of the heated bed. The bed will heat up or cool down " +"towards this temperature. If this is 0, the bed heating is turned off." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "" +"Heat the bed in advance before printing. You can continue adjusting your " +"print while it is heating, and you won't have to wait for the bed to heat up " +"when you're ready to print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "" "This setting is not used because all the settings that it influences are " "overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "" "This setting is always shared between all extruders. Changing it here will " "change the value for all extruders." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5349,7 +6023,7 @@ msgid "" "Click to restore the value of the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value " @@ -5358,374 +6032,102 @@ msgid "" "Click to restore the calculated value." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" msgid "" -"This printer cannot be added because it's an unknown printer or it's not the " -"host of a group." +"Some hidden settings use values different from their normal calculated " +"value.\n" +"\n" +"Click to make these settings visible." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Release Notes" +msgid "This package will be installed after restarting." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" msgid "" -"Ultimaker Cura collects anonymous data to improve print quality and user " -"experience, including:" +"We have found one or more G-Code files within the files you have selected. " +"You can only open one G-Code file at a time. If you want to open a G-Code " +"file, please just select only one." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "" -"Data collected by Ultimaker Cura will not contain any personal information." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "" -"Please follow these steps to set up Ultimaker Cura. This will only take a " -"few moments." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "" - -#: ModelChecker/plugin.json +#: PerObjectSettingsTool/plugin.json msgctxt "description" -msgid "" -"Checks models and print configuration for possible printing issues and give " -"suggestions." +msgid "Provides the Per Model Settings." msgstr "" -#: ModelChecker/plugin.json +#: PerObjectSettingsTool/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "" - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" +msgid "Per Model Settings Tool" msgstr "" #: CuraProfileReader/plugin.json @@ -5738,116 +6140,24 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "" -#: CuraProfileWriter/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides support for exporting Cura profiles." +msgid "Provides support for reading X3D files." msgstr "" -#: CuraProfileWriter/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Cura Profile Writer" +msgid "X3D Reader" msgstr "" -#: DigitalLibrary/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "" -"Connects to the Digital Library, allowing Cura to open files from and save " -"files to the Digital Library." +msgid "Backup and restore your configuration." msgstr "" -#: DigitalLibrary/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "" - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "" - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "" - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "" - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" +msgid "Cura Backups" msgstr "" #: MachineSettingsAction/plugin.json @@ -5862,54 +6172,15 @@ msgctxt "name" msgid "Machine Settings Action" msgstr "" -#: MonitorStage/plugin.json +#: SupportEraser/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." +msgid "" +"Creates an eraser mesh to block the printing of support in certain places" msgstr "" -#: MonitorStage/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "" - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" +msgid "Support Eraser" msgstr "" #: RemovableDriveOutputDevice/plugin.json @@ -5922,85 +6193,34 @@ msgctxt "name" msgid "Removable Drive Output Device Plugin" msgstr "" -#: SentryLogger/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" +msgid "Provides a machine actions for updating firmware." msgstr "" -#: SentryLogger/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Sentry Logger" +msgid "Firmware Updater" msgstr "" -#: SimulationView/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides the Simulation view." +msgid "Provides support for importing profiles from legacy Cura versions." msgstr "" -#: SimulationView/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "Simulation View" +msgid "Legacy Cura Profile Reader" msgstr "" -#: SliceInfoPlugin/plugin.json +#: 3MFReader/plugin.json msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." +msgid "Provides support for reading 3MF files." msgstr "" -#: SliceInfoPlugin/plugin.json +#: 3MFReader/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "" - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "" -"Creates an eraser mesh to block the printing of support in certain places" -msgstr "" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "" - -#: Toolbox/plugin.json -msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "" - -#: Toolbox/plugin.json -msgctxt "name" -msgid "Toolbox" -msgstr "" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "" - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "" - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" +msgid "3MF Reader" msgstr "" #: UFPWriter/plugin.json @@ -6013,6 +6233,137 @@ msgctxt "name" msgid "UFP Writer" msgstr "" +#: SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "" + +#: SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "" + +#: GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "" + +#: GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "" + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "" + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "" + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "" + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "" + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "" + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "" + +#: USBPrinting/plugin.json +msgctxt "description" +msgid "" +"Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "" + +#: USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "" + +#: PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "" + +#: PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "" + +#: GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "" + +#: GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "" + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "" + #: UltimakerMachineActions/plugin.json msgctxt "description" msgid "" @@ -6025,45 +6376,96 @@ msgctxt "name" msgid "Ultimaker machine actions" msgstr "" -#: UM3NetworkPrinting/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." +msgid "Writes g-code to a compressed archive." msgstr "" -#: UM3NetworkPrinting/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" +msgid "Compressed G-code Writer" msgstr "" -#: USBPrinting/plugin.json +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "" + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "" + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "" + +#: DigitalLibrary/plugin.json msgctxt "description" msgid "" -"Accepts G-Code and sends them to a printer. Plugin can also update firmware." +"Connects to the Digital Library, allowing Cura to open files from and save " +"files to the Digital Library." msgstr "" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" +msgid "Ultimaker Digital Library" msgstr "" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: Toolbox/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgid "Find, manage and install new Cura packages." msgstr "" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: Toolbox/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" +msgid "Toolbox" msgstr "" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeWriter/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgid "Writes g-code to a file." msgstr "" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeWriter/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" +msgid "G-code Writer" +msgstr "" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "" + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" msgstr "" #: VersionUpgrade/VersionUpgrade25to26/plugin.json @@ -6076,54 +6478,24 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." msgstr "" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" msgstr "" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." msgstr "" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" +msgid "Version Upgrade 4.7 to 4.8" msgstr "" #: VersionUpgrade/VersionUpgrade34to35/plugin.json @@ -6136,34 +6508,44 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." msgstr "" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" +msgid "Version Upgrade 2.1 to 2.2" msgstr "" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." msgstr "" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" +msgid "Version Upgrade 3.2 to 3.3" msgstr "" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." msgstr "" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" msgstr "" #: VersionUpgrade/VersionUpgrade42to43/plugin.json @@ -6186,66 +6568,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6256,32 +6578,174 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." msgstr "" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" +msgid "Version Upgrade 2.7 to 3.0" msgstr "" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." msgstr "" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" +msgid "Version Upgrade 2.6 to 2.7" msgstr "" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." msgstr "" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "" + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "" + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "" + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "" + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "" + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "" +"Checks models and print configuration for possible printing issues and give " +"suggestions." +msgstr "" + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index fb20f85938..6a711a67bb 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 15:15+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2022-01-10 11:42+0100\n" "Last-Translator: Lionbridge \n" "Language-Team: German , German \n" "Language: de_DE\n" @@ -15,182 +15,401 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 2.3\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Unbekannt" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Der/die nachfolgende(n) Drucker kann/können nicht verbunden werden, weil er/sie Teil einer Gruppe ist/sind" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Backup" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Verfügbare vernetzte Drucker" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nicht überschrieben" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Versucht, ein Cura-Backup wiederherzustellen, das eine höhere Version als die aktuelle hat." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "Beim Versuch, ein Backup von Cura wiederherzustellen, trat der folgende Fehler auf:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Bitte stimmen Sie die Materialprofile auf Ihre Drucker ab („synchronisieren“), bevor Sie mit dem Drucken beginnen." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Neue Materialien installiert" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Materialien synchronisieren" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Mehr erfahren" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Materialarchiv konnte nicht in {} gespeichert werden:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Speichern des Materialarchivs fehlgeschlagen" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Unbekannter Fehler." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "Die Höhe der Druckabmessung wurde aufgrund des Wertes der Einstellung „Druckreihenfolge“ reduziert, um eine Kollision der Brücke mit den gedruckten Modellen zu verhindern." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Produktabmessungen" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nicht überschrieben" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Unbekannt" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Der/die nachfolgende(n) Drucker kann/können nicht verbunden werden, weil er/sie Teil einer Gruppe ist/sind" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Verfügbare vernetzte Drucker" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visuell" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Das visuelle Profil wurde für den Druck visueller Prototypen und Modellen entwickelt, bei denen das Ziel eine hohe visuelle Qualität und eine hohe Oberflächenqualität ist." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Das Engineering-Profil ist für den Druck von Funktionsprototypen und Endnutzungsteilen gedacht, bei denen Präzision gefragt ist und engere Toleranzen gelten." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Entwurf" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Benutzerdefiniertes Material" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Benutzerdefinierte Profile" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Alle unterstützten Typen ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Dateien (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visuell" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Das visuelle Profil wurde für den Druck visueller Prototypen und Modellen entwickelt, bei denen das Ziel eine hohe visuelle Qualität und eine hohe Oberflächenqualität ist." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Das Engineering-Profil ist für den Druck von Funktionsprototypen und Endnutzungsteilen gedacht, bei denen Präzision gefragt ist und engere Toleranzen gelten." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Entwurf" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Benutzerdefiniertes Material" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Login fehlgeschlagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Neue Position für Objekte finden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Position finden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Innerhalb der Druckabmessung für alle Objekte konnte keine Position gefunden werden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Kann Position nicht finden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Die Erstellung eines Materialarchivs zur Synchronisierung mit Druckern ist fehlgeschlagen." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Das Archiv der Materialien konnte nicht geladen werden, um es mit Druckern zu synchronisieren." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "Die Antwort von Digital Factory scheint beschädigt zu sein." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Versucht, ein Cura-Backup wiederherzustellen, das eine höhere Version als die aktuelle hat." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "In der Antwort von Digital Factory fehlen wichtige Informationen." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "Beim Versuch, ein Backup von Cura wiederherzustellen, trat der folgende Fehler auf:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Die Verbindung mit Digital Factory zum Synchronisieren von Materialien mit einigen Druckern ist fehlgeschlagen." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Es konnte keine Verbindung zu Digital Factory hergestellt werden." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Geräte werden geladen..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Erstellungen werden eingerichtet ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Aktives Gerät wird initialisiert ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Gerätemanager wird initialisiert ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Bauraum wird initialisiert ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Die Szene wird eingerichtet..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Die Benutzeroberfläche wird geladen..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Funktion wird initialisiert ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "Die Höhe der Druckabmessung wurde aufgrund des Wertes der Einstellung „Druckreihenfolge“ reduziert, um eine Kollision der Brücke mit den gedruckten Modellen zu verhindern." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Produktabmessungen" +msgid "Warning" +msgstr "Warnhinweis" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Fehler" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Überspringen" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Schließen" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Weiter" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Beenden" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Hinzufügen" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Abbrechen" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Gruppe #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Außenwand" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Innenwände" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Außenhaut" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Füllung" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Stützstruktur-Füllung" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Stützstruktur-Schnittstelle" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Stützstruktur" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Einzugsturm" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Bewegungen" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Einzüge" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Sonstige" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "Die Versionshinweise konnten nicht geöffnet werden." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kann nicht starten" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +424,32 @@ msgstr "" "

    Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Absturzbericht an Ultimaker senden" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Detaillierten Absturzbericht anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Konfigurationsordner anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup und Reset der Konfiguration" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Crash-Bericht" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,676 +460,618 @@ msgstr "" "

    Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systeminformationen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Unbekannt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-Version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura-Sprache" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Sprache des Betriebssystems" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plattform" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt Version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt Version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Noch nicht initialisiert
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL-Version: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL-Anbieter: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL-Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Fehler-Rückverfolgung" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokolle" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Bericht senden" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Geräte werden geladen..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Erstellungen werden eingerichtet ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Aktives Gerät wird initialisiert ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Gerätemanager wird initialisiert ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Bauraum wird initialisiert ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Die Szene wird eingerichtet..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Die Benutzeroberfläche wird geladen..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Funktion wird initialisiert ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Warnhinweis" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Fehler" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Objekte vervielfältigen und platzieren" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Objekte platzieren" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Objekt-Platzierung" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Antwort konnte nicht gelesen werden." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "Angegebener Status ist falsch." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Bei dem Versuch, sich anzumelden, trat ein unerwarteter Fehler auf. Bitte erneut versuchen." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Der Ultimaker-Konto-Server konnte nicht erreicht werden." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Anmeldung fehlgeschlagen" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Angegebener Status ist falsch." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Zeitüberschreitung bei der Authentifizierung mit dem Kontoserver." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Bei dem Versuch, sich anzumelden, trat ein unerwarteter Fehler auf. Bitte erneut versuchen." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Antwort konnte nicht gelesen werden." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Objekte vervielfältigen und platzieren" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Objekte platzieren" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Objekt-Platzierung" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Nicht unterstützt" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Düse" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Einstellungen aktualisiert" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extruder deaktiviert" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Datei bereits vorhanden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Ungültige Datei-URL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Export des Profils nach {0} fehlgeschlagen: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Export des Profils nach {0} fehlgeschlagen: Fehlermeldung von Writer-Plugin." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil wurde nach {0} exportiert" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Export erfolgreich ausgeführt" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Import des Profils aus Datei {0}: {1} fehlgeschlagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Import des Profils aus Datei {0} kann erst durchgeführt werden, wenn ein Drucker hinzugefügt wurde." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dieses Profil {0} enthält falsche Daten, Importieren nicht möglich." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profil {0} erfolgreich importiert." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Datei {0} enthält kein gültiges Profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} hat einen unbekannten Dateityp oder ist beschädigt." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Benutzerdefiniertes Profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Für das Profil fehlt eine Qualitätsangabe." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Es ist noch kein Drucker aktiv." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Das Profil kann nicht hinzugefügt werden." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Der Qualitätstyp „{0}“ ist nicht mit der aktuell aktiven Maschinendefinition „{1}“ kompatibel." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Warnung: Das Profil wird nicht angezeigt, weil sein Qualitätstyp „{0}“ für die aktuelle Konfiguration nicht verfügbar ist. Wechseln Sie zu einer Material-/Düsenkombination, die mit diesem Qualitätstyp kompatibel ist." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Nicht unterstützt" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Düse" +msgid "Per Model Settings" +msgstr "Einstellungen pro Objekt" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Pro Objekteinstellungen konfigurieren" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura-Profil" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D-Datei" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Beim Versuch, Ihr Backup wiederherzustellen, trat ein Fehler auf." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Einstellungen aktualisiert" +msgid "Backups" +msgstr "Backups" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extruder deaktiviert" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Beim Versuch, Ihr Backup hochzuladen, trat ein Fehler auf." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Hinzufügen" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Ihr Backup wird erstellt..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Beenden" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Beim Erstellen Ihres Backups ist ein Fehler aufgetreten." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Abbrechen" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Ihr Backup wird hochgeladen..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Ihr Backup wurde erfolgreich hochgeladen." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Das Backup überschreitet die maximale Dateigröße." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Backups verwalten" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Geräteeinstellungen" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Stützstruktur-Blocker" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Erstellt ein Volumen, in dem keine Stützstrukturen gedruckt werden." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Wechseldatenträger" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Speichern auf Wechseldatenträger" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Gruppe #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Auf Wechseldatenträger speichern {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Außenwand" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Es sind keine Dateiformate zum Schreiben vorhanden!" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Innenwände" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Wird auf Wechseldatenträger gespeichert {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Außenhaut" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Füllung" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Stützstruktur-Füllung" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Stützstruktur-Schnittstelle" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Stützstruktur" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Einzugsturm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Bewegungen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Einzüge" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Sonstige" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Weiter" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Überspringen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Schließen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "3D-Modell-Assistent" +msgid "Saving" +msgstr "Wird gespeichert" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Konnte nicht als {0} gespeichert werden: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

    \n" -"

    {model_names}

    \n" -"

    Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

    \n" -"

    Leitfaden zu Druckqualität anzeigen

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Auf Wechseldatenträger {0} gespeichert als {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Datei wurde gespeichert" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Auswerfen" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Wechseldatenträger auswerfen {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Hardware sicher entfernen" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Firmware aktualisieren" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04-Profile" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Empfohlen" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projektdatei {0} enthält einen unbekannten Maschinentyp {1}. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Projektdatei öffnen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Auf Projektdatei {0} kann plötzlich nicht mehr zugegriffen werden: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Projektdatei kann nicht geöffnet werden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Projektdatei {0} ist beschädigt: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "Projektdatei {0} verwendet Profile, die nicht mit dieser Ultimaker Cura-Version kompatibel sind." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Empfohlen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-Datei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Das 3MF-Writer-Plugin ist beschädigt." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Kann nicht in UFP-Datei schreiben:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Keine Erlaubnis zum Beschreiben dieses Arbeitsbereichs." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Das Betriebssystem erlaubt es nicht, eine Projektdatei an diesem Speicherort oder mit diesem Dateinamen zu speichern." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Fehler beim Schreiben von 3MF-Datei." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-Datei" +msgid "Ultimaker Format Package" +msgstr "Ultimaker Format Package" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-Projekt 3MF-Datei" +msgid "G-code File" +msgstr "G-Code-Datei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Beim Versuch, Ihr Backup hochzuladen, trat ein Fehler auf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Ihr Backup wird erstellt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Beim Erstellen Ihres Backups ist ein Fehler aufgetreten." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Ihr Backup wird hochgeladen..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Ihr Backup wurde erfolgreich hochgeladen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Das Backup überschreitet die maximale Dateigröße." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Beim Versuch, Ihr Backup wiederherzustellen, trat ein Fehler auf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Backups verwalten" +msgid "Preview" +msgstr "Vorschau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Röntgen-Ansicht" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Schichten werden verarbeitet" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informationen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Fehler beim Slicing mit einem unerwarteten Fehler. Bitte denken Sie daran, Fehler in unserem Issue Tracker zu melden." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Slicing fehlgeschlagen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Einen Fehler melden" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Einen Fehler im Issue Tracker von Ultimaker Cura melden." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Slicing nicht möglich" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Aufgrund der Pro-Modell-Einstellungen ist kein Schneiden (Slicing) möglich. Die folgenden Einstellungen sind für ein oder mehrere Modelle fehlerhaft: {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -923,465 +1084,430 @@ msgstr "" "- Einem aktiven Extruder zugewiesen sind\n" "- Nicht alle als Modifier Meshes eingerichtet sind" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Schichten werden verarbeitet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Informationen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-Profil" +msgid "AMF File" +msgstr "AMF-Datei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Zugriff auf Update-Informationen nicht möglich." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Für Ihren {machine_name} sind eventuell neue Funktionen oder Fehlerbereinigungen verfügbar! Falls Sie nicht bereits die aktuellste Version verwenden, empfehlen wir Ihnen, ein Firmware-Update Ihres Druckers auf Version {latest_version} auszuführen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Neue Firmware für %s verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Anleitung für die Aktualisierung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Firmware aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Komprimierte G-Code-Datei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeWriter unterstützt keinen Textmodus." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-Code-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-Code parsen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-Code-Details" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter unterstützt keinen Nicht-Textmodus." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Vor dem Exportieren bitte G-Code vorbereiten." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04-Profile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Geräteeinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Überwachen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Einstellungen pro Objekt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Pro Objekteinstellungen konfigurieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nachbearbeitung" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "G-Code ändern" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB-Drucken" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Über USB drucken" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Über USB drucken" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Über USB verbunden" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Ein USB-Druck wird ausgeführt. Das Schließen von Cura beendet diesen Druck. Sind Sie sicher?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Druck in Bearbeitung" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Vorbereiten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Vorschau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Speichern auf Wechseldatenträger" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Auf Wechseldatenträger speichern {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Es sind keine Dateiformate zum Schreiben vorhanden!" +msgid "Parsing G-code" +msgstr "G-Code parsen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Wird auf Wechseldatenträger gespeichert {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Wird gespeichert" +msgid "G-code Details" +msgstr "G-Code-Details" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Konnte nicht als {0} gespeichert werden: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Auf Wechseldatenträger {0} gespeichert als {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Datei wurde gespeichert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Auswerfen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Wechseldatenträger auswerfen {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Hardware sicher entfernen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Wechseldatenträger" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Cura zeigt die Schichten nicht präzise an, wenn „Drucken mit Drahtstruktur“ aktiviert ist." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Simulationsansicht" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Es kann nichts angezeigt werden, weil Sie zuerst das Slicing vornehmen müssen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Keine anzeigbaren Schichten vorhanden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Diese Meldung nicht mehr anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Schichtenansicht" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "Die hervorgehobenen Bereiche kennzeichnen fehlende oder überschüssige Oberflächen. Beheben Sie die Fehler am Modell und öffnen Sie es erneut in Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Modellfehler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Mehr erfahren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Solide Ansicht" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Stützstruktur-Blocker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Erstellt ein Volumen, in dem keine Stützstrukturen gedruckt werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Von Ihrem Ultimaker-Konto erkannte Änderungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchronisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronisierung läuft ..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Ablehnen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Stimme zu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Plugin für Lizenzvereinbarung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Ablehnen und vom Konto entfernen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} Plugins konnten nicht heruntergeladen werden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Öffnen Sie das komprimierte Dreiecksnetz" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "G-Datei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" +msgid "JPG Image" +msgstr "JPG-Bilddatei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" +msgid "JPEG Image" +msgstr "JPEG-Bilddatei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" +msgid "PNG Image" +msgstr "PNG-Bilddatei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" +msgid "BMP Image" +msgstr "BMP-Bilddatei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +msgid "GIF Image" +msgstr "GIF-Bilddatei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Kann nicht in UFP-Datei schreiben:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Druckbett nivellieren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Upgrades wählen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeWriter unterstützt keinen Textmodus." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Zugriff auf Update-Informationen nicht möglich." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Es können neue Funktionen oder Bug-Fixes für Ihren {machine_name} verfügbar sein! Falls noch nicht geschehen, wird empfohlen, die Firmware auf Ihrem Drucker auf Version {latest_version} zu aktualisieren." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Neue %s-stabile Firmware verfügbar" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Anleitung für die Aktualisierung" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Die Datei mit den Beispieldaten kann nicht gelesen werden." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Synchronisierung läuft ..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Von Ihrem Ultimaker-Konto erkannte Änderungen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Synchronisieren" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Ablehnen und vom Konto entfernen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} Plugins konnten nicht heruntergeladen werden" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Ablehnen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Stimme zu" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Plugin für Lizenzvereinbarung" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter unterstützt keinen Nicht-Textmodus." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Vor dem Exportieren bitte G-Code vorbereiten." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Cura zeigt die Schichten nicht präzise an, wenn „Drucken mit Drahtstruktur“ aktiviert ist." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Simulationsansicht" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Es kann nichts angezeigt werden, weil Sie zuerst das Slicing vornehmen müssen." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Keine anzeigbaren Schichten vorhanden" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Diese Meldung nicht mehr anzeigen" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Schichtenansicht" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Drucken über Netzwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Drücken über Netzwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Über Netzwerk verbunden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "morgen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "heute" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Anschluss über Netzwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Bitte warten Sie, bis der aktuelle Druckauftrag gesendet wurde." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Druckfehler" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Der Druckauftrag wurde erfolgreich an den Drucker gesendet." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Daten gesendet" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Drucker aktualisieren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "Die Druckauftragswarteschlange ist voll. Der Drucker kann keinen neuen Auftrag annehmen." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Warteschlange voll" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Druckauftrag senden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Druckauftrag wird vorbereitet." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Material an Drucker senden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Daten konnten nicht in Drucker geladen werden." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Netzwerkfehler" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Nicht Host-Drucker der Gruppe" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Gruppe konfigurieren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Ihr Drucker {printer_name} könnte über die Cloud verbunden sein.\n" +" Verwalten Sie Ihre Druckwarteschlange und überwachen Sie Ihre Drucke von allen Orten aus, an denen Sie Ihren Drucker mit der Digital Factory verbinden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Sind Sie bereit für den Cloud-Druck?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Erste Schritte" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Mehr erfahren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Über Cloud drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Über Cloud drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Über Cloud verbunden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Druck überwachen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Verfolgen Sie den Druck in der Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "Ihr Ultimaker-Konto hat einen neuen Drucker erkannt" msgstr[1] "Ihr Ultimaker-Konto hat neue Drucker erkannt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1389,71 +1515,70 @@ msgid_plural "... and {0} others" msgstr[0] "... und {0} weiterer" msgstr[1] "... und {0} weitere" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Drucker aus Digital Factory hinzugefügt:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Für einen Drucker ist keine Cloud-Verbindung verfügbar" msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "Dieser Drucker ist nicht mit der Digital Factory verbunden:" msgstr[1] "Diese Drucker sind nicht mit der Digital Factory verbunden:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Druckerkonfigurationen speichern" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Drucker entfernen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} wird bis zur nächsten Synchronisierung entfernt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Möchten Sie {printer_name} wirklich vorübergehend entfernen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Drucker entfernen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1469,768 +1594,1584 @@ msgstr[1] "" "Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" "Möchten Sie wirklich fortfahren?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Öffnen Sie das komprimierte Dreiecksnetz" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Binary" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Compressed COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Druckaufträge mithilfe Ihres Ultimaker-Kontos von einem anderen Ort aus senden und überwachen." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "Die hervorgehobenen Bereiche kennzeichnen fehlende oder überschüssige Oberflächen. Beheben Sie die Fehler am Modell und öffnen Sie es erneut in Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Mit der Ultimaker Digital Factory verbinden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Erste Schritte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Drucker aktualisieren" +msgid "Model Errors" +msgstr "Modellfehler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Material an Drucker senden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Nicht Host-Drucker der Gruppe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Gruppe konfigurieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Bitte warten Sie, bis der aktuelle Druckauftrag gesendet wurde." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Druckfehler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Daten konnten nicht in Drucker geladen werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Netzwerkfehler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Druckauftrag senden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Druckauftrag wird vorbereitet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "Die Druckauftragswarteschlange ist voll. Der Drucker kann keinen neuen Auftrag annehmen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Warteschlange voll" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Der Druckauftrag wurde erfolgreich an den Drucker gesendet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Daten gesendet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Drucken über Netzwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Drücken über Netzwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Über Netzwerk verbunden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Anschluss über Netzwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "morgen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "heute" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB-Drucken" +msgid "Solid view" +msgstr "Solide Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Über USB drucken" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Fehler beim Schreiben von 3MF-Datei." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Über USB drucken" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Das 3MF-Writer-Plugin ist beschädigt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Es ist noch kein Workspace zum Speichern vorhanden. Bitte fügen Sie zuerst einen Drucker hinzu." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Keine Erlaubnis zum Beschreiben dieses Arbeitsbereichs." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Das Betriebssystem erlaubt es nicht, eine Projektdatei an diesem Speicherort oder mit diesem Dateinamen zu speichern." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF-Datei" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura-Projekt 3MF-Datei" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Überwachen" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "3D-Modell-Assistent" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Über USB verbunden" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

    \n" +"

    {model_names}

    \n" +"

    Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

    \n" +"

    Leitfaden zu Druckqualität anzeigen

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Ein USB-Druck wird ausgeführt. Das Schließen von Cura beendet diesen Druck. Sind Sie sicher?" +msgid "Mesh Type" +msgstr "Mesh-Typ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Normales Modell" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Druck in Bearbeitung" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Als Stützstruktur drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Einstellungen für Überlappungen ändern" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Überlappungen nicht unterstützen" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-Datei" +msgid "Infill mesh only" +msgstr "Nur Mesh-Füllung" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen-Ansicht" +msgid "Cutting mesh" +msgstr "Mesh beschneiden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Einige Punkte bei diesem Druck könnten problematisch sein. Klicken Sie, um Tipps für die Anpassung zu erhalten." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Einstellungen wählen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtern..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Alle anzeigen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura-Backups" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura-Version" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Maschinen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materialien" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profile" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plugins" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Möchten Sie mehr?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Jetzt Backup durchführen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Automatisches Backup" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "An jedem Tag, an dem Cura gestartet wird, ein automatisches Backup erstellen." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Wiederherstellen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Backup löschen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Soll dieses Backup wirklich gelöscht werden? Der Vorgang kann nicht rückgängig gemacht werden." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Backup wiederherstellen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Cura muss neu gestartet werden, um Ihre Datensicherung wiederherzustellen. Möchten Sie Cura jetzt schließen?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Ihre Cura-Einstellungen sichern und synchronisieren." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Anmelden" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Meine Backups" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläche ‚Jetzt Backup erstellen‘, um ein Backup zu erstellen." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "In der Vorschau-Phase sind Sie auf 5 sichtbare Backups beschränkt. Ein Backup entfernen, um ältere anzusehen." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Druckereinstellungen" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Breite)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Tiefe)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Höhe)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Druckbettform" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Ausgang in Mitte" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Heizbares Bett" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Druckraum aufgeheizt" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-Code-Variante" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Druckkopfeinstellungen" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Brückenhöhe" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Anzahl Extruder" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Extruder-Versatzwerte auf GCode anwenden" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Start G-Code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Ende G-Code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Düseneinstellungen" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Düsengröße" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Kompatibler Materialdurchmesser" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "X-Versatz Düse" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Y-Versatz Düse" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Kühllüfter-Nr" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Extruder-Start" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-Code Extruder-Ende" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Drucker" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Firmware aktualisieren" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Die Firmware ist der Teil der Software, der direkt auf Ihrem 3D-Drucker läuft. Diese Firmware kontrolliert die Schrittmotoren, reguliert die Temperatur und sorgt letztlich dafür, dass Ihr Drucker funktioniert." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Firmware automatisch aktualisieren" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Benutzerdefinierte Firmware hochladen" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Firmware kann nicht aktualisiert werden, da keine Verbindung zum Drucker besteht." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Benutzerdefinierte Firmware wählen" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Firmware-Aktualisierung" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Die Firmware wird aktualisiert." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Firmware-Aktualisierung abgeschlossen." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Projekt öffnen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Vorhandenes aktualisieren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Neu erstellen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Zusammenfassung – Cura-Projekt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Druckereinstellungen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Wie soll der Konflikt im Gerät gelöst werden?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Typ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Druckergruppe" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Profileinstellungen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Wie soll der Konflikt im Profil gelöst werden?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Name" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Nicht im Profil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 überschreiben" msgstr[1] "%1 überschreibt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Ableitung von" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 überschreiben" msgstr[1] "%1, %2 überschreibt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Materialeinstellungen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Wie soll der Konflikt im Material gelöst werden?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Sichtbarkeit einstellen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Modus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Sichtbare Einstellungen:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 von %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Das Laden eines Projekts entfernt alle Modelle von der Druckplatte." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Öffnen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Möchten Sie mehr?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Jetzt Backup durchführen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatisches Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "An jedem Tag, an dem Cura gestartet wird, ein automatisches Backup erstellen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Wiederherstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Backup löschen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Soll dieses Backup wirklich gelöscht werden? Der Vorgang kann nicht rückgängig gemacht werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Backup wiederherstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Cura muss neu gestartet werden, um Ihre Datensicherung wiederherzustellen. Möchten Sie Cura jetzt schließen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura-Version" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Maschinen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura-Backups" +msgid "Post Processing Plugin" +msgstr "Plugin Nachbearbeitung" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Meine Backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläche ‚Jetzt Backup erstellen‘, um ein Backup zu erstellen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "In der Vorschau-Phase sind Sie auf 5 sichtbare Backups beschränkt. Ein Backup entfernen, um ältere anzusehen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Ihre Cura-Einstellungen sichern und synchronisieren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Anmelden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Firmware aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Die Firmware ist der Teil der Software, der direkt auf Ihrem 3D-Drucker läuft. Diese Firmware kontrolliert die Schrittmotoren, reguliert die Temperatur und sorgt letztlich dafür, dass Ihr Drucker funktioniert." +msgid "Post Processing Scripts" +msgstr "Skripts Nachbearbeitung" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Ein Skript hinzufügen" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen." +msgid "Settings" +msgstr "Einstellungen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Firmware automatisch aktualisieren" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Aktive Nachbearbeitungsskripts ändern." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Benutzerdefinierte Firmware hochladen" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Die folgenden Skript ist aktiv:" +msgstr[1] "Die folgenden Skripte sind aktiv:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Firmware kann nicht aktualisiert werden, da keine Verbindung zum Drucker besteht." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Benutzerdefinierte Firmware wählen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware-Aktualisierung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Die Firmware wird aktualisiert." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Firmware-Aktualisierung abgeschlossen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Bild konvertieren..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "Der Maximalabstand von jedem Pixel von der „Basis“." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Höhe (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Die Basishöhe von der Druckplatte in Millimetern." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Basis (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "Die Breite der Druckplatte in Millimetern." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Breite (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "Die Tiefe der Druckplatte in Millimetern" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Tiefe (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Für Lithophanien sollten dunkle Pixel dickeren Positionen entsprechen, um mehr einfallendes Licht zu blockieren. Für Höhenkarten stellen hellere Pixel höheres Terrain dar, sodass hellere Pixel dickeren Positionen im generierten 3D-Modell entsprechen sollten." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Dunkler ist höher" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Heller ist höher" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Für Lithophanien ist ein einfaches logarithmisches Modell für Transparenz verfügbar. Bei Höhenprofilen entsprechen die Pixelwerte den Höhen linear." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Linear" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Transparenz" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "Der Prozentsatz an Licht, der einen Druck von einer Dicke mit 1 Millimeter durchdringt. Senkt man diesen Wert, steigt der Kontrast in den dunkleren Bereichen, während der Kontrast in den helleren Bereichen des Bilds sinkt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1 mm Durchlässigkeit (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "Die Stärke der Glättung, die für das Bild angewendet wird." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Glättung" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Wählen Sie bitte alle Upgrades für dieses Ultimaker-Original" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Beheizte Druckplatte (offizielles Kit oder Eigenbau)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivellierung der Druckplatte" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Um sicherzustellen, dass Ihre Drucke hervorragend werden, können Sie nun Ihre Druckplatte justieren. Wenn Sie auf „Gehe zur nächsten Position“ klicken, bewegt sich die Düse zu den verschiedenen Positionen, die justiert werden können." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Legen Sie für jede Position ein Blatt Papier unter die Düse und stellen Sie die Höhe der Druckplatte ein. Die Höhe der Druckplatte ist korrekt, wenn das Papier von der Spitze der Düse leicht berührt wird." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Nivellierung der Druckplatte starten" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Gehe zur nächsten Position" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Weitere Informationen zur anonymen Datenerfassung" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die geteilt werden:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Ich möchte keine anonymen Daten senden" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Senden von anonymen Daten erlauben" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Marktplatz" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Cura muss neu gestartet werden, um die Änderungen der Pakete zu übernehmen." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "%1 beenden" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Installieren" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Installiert" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Premium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Zum Web Marketplace gehen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Materialien suchen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Kompatibilität" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Gerät" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Druckbett" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Support" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Qualität" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Technisches Datenblatt" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Sicherheitsdatenblatt" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Druckrichtlinien" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Website" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Anmeldung für Installation oder Update erforderlich" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Materialspulen kaufen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Aktualisierung" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Aktualisierung wird durchgeführt" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Aktualisiert" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Zurück" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Drucker" +msgid "Plugins" +msgstr "Plugins" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Düseneinstellungen" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materialien" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Installiert" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Düsengröße" +msgid "Will install upon restarting" +msgstr "Installiert nach Neustart" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Anmeldung für Update erforderlich" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Downgraden" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Deinstallieren" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Community-Beiträge" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatibler Materialdurchmesser" +msgid "Community Plugins" +msgstr "Community-Plugins" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "X-Versatz Düse" +msgid "Generic Materials" +msgstr "Generische Materialien" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Pakete werden abgeholt..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Y-Versatz Düse" +msgid "Website" +msgstr "Website" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Kühllüfter-Nr." +msgid "Email" +msgstr "E-Mail" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Extruder-Start" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für Ultimaker Cura Enterprise zu erhalten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Extruder-Ende" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Druckereinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (Breite)" +msgid "Version" +msgstr "Version" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Tiefe)" +msgid "Last updated" +msgstr "Zuletzt aktualisiert" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Höhe)" +msgid "Brand" +msgstr "Marke" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Druckbettform" +msgid "Downloads" +msgstr "Downloads" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Installierte Plugins" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Es wurde kein Plugin installiert." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Installierte Materialien" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Es wurde kein Material installiert." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Gebündelte Plugins" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Gebündelte Materialien" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Verbindung zur Cura Paket-Datenbank konnte nicht hergestellt werden. Bitte überprüfen Sie Ihre Verbindung." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Ausgang in Mitte" +msgid "You need to accept the license to install the package" +msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Änderungen in deinem Konto" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Verwerfen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Weiter" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Heizbares Bett" +msgid "The following packages will be added:" +msgstr "Die folgenden Pakete werden hinzugefügt:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Druckraum aufgeheizt" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Die folgenden Pakete können nicht hinzugefügt werden, weil die Cura-Version nicht kompatibel ist:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Deinstallieren bestätigen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Sie sind dabei, Materialien und/oder Profile zu deinstallieren, die noch verwendet werden. Durch Bestätigen werden die folgenden Materialien/Profile auf ihre Standardeinstellungen zurückgesetzt." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Materialien" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Profile" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Bestätigen" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "G-Code-Variante" +msgid "Color scheme" +msgstr "Farbschema" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Druckkopfeinstellungen" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Materialfarbe" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Linientyp" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Geschwindigkeit" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Schichtdicke" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Linienbreite" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluss" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X min." +msgid "Compatibility Mode" +msgstr "Kompatibilitätsmodus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y min." +msgid "Travels" +msgstr "Bewegungen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X max." +msgid "Helpers" +msgstr "Helfer" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y max." +msgid "Shell" +msgstr "Gehäuse" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Brückenhöhe" +msgid "Infill" +msgstr "Füllung" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Anzahl Extruder" +msgid "Starts" +msgstr "Startet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Extruder-Versatzwerte auf GCode anwenden" +msgid "Only Show Top Layers" +msgstr "Nur obere Schichten anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Start G-Code" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 detaillierte Schichten oben anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Ende G-Code" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Oben/Unten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Innenwand" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Drucker verwalten" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Glas" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Damit Sie die Warteschlange aus der Ferne verwalten können, müssen Sie die Druckfirmware aktualisieren." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Webcam-Feeds für Cloud-Drucker können nicht in Ultimaker Cura angezeigt werden. Klicken Sie auf „Drucker verwalten“, um die Ultimaker Digital Factory zu besuchen und diese Webcam zu sehen." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Lädt..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Nicht erreichbar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Leerlauf" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Vorbereitung..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Drucken" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Unbenannt" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonym" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Erfordert Konfigurationsänderungen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Details" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Drucker nicht verfügbar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Zuerst verfügbar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "In Warteschlange" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Im Browser verwalten" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Die Warteschlange enthält keine Druckaufträge. Slicen Sie einen Auftrag und schicken Sie ihn ab, um ihn zur Warteschlange hinzuzufügen." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Druckaufträge" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Druckdauer insgesamt" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Warten auf" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Drucken über Netzwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Drucken" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Druckerauswahl" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Konfigurationsänderungen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Überschreiben" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Der zugewiesene Drucker %1 erfordert die folgende Konfigurationsänderung:" +msgstr[1] "Der zugewiesene Drucker %1 erfordert die folgenden Konfigurationsänderungen:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Der Drucker %1 wurde zugewiesen, allerdings enthält der Auftrag eine unbekannte Materialkonfiguration." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Material %1 von %2 auf %3 wechseln." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Print Core %1 von %2 auf %3 wechseln." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Druckplatte auf %1 wechseln (Dies kann nicht übergangen werden)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Überschreiben verwendet die definierten Einstellungen mit der vorhandenen Druckerkonfiguration. Dies kann zu einem fehlgeschlagenen Druck führen." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Aluminium" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Beendet" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Wird abgebrochen..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abgebrochen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Fehlgeschlagen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Wird pausiert..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausiert" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Wird fortgesetzt..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Handlung erforderlich" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Fertigstellung %1 um %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Anschluss an vernetzten Drucker" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Bearbeiten" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Entfernen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Aktualisieren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die Anleitung für Fehlerbehebung für Netzwerkdruck" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Typ" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Firmware-Version" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Adresse" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Druckern anzusteuern." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Der Drucker unter dieser Adresse hat nicht reagiert." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Verbinden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Ungültige IP-Adresse" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Bitte eine gültige IP-Adresse eingeben." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Druckeradresse" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Geben Sie die IP-Adresse Ihres Druckers in das Netzwerk ein." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Vorziehen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Löschen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Zurückkehren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Wird pausiert..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Wird fortgesetzt..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Pausieren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Wird abgebrochen..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Abbrechen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Druckauftrag vorziehen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Soll %1 wirklich gelöscht werden?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Druckauftrag löschen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Möchten Sie %1 wirklich abbrechen?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Drucken abbrechen" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2242,1413 +3183,429 @@ msgstr "" "– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n" "– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Verbinden Sie Ihren Drucker bitte mit dem Netzwerk." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Benutzerhandbücher online anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Um Ihren Druck von Cura aus zu überwachen, schließen Sie bitte den Drucker an." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Mesh-Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normales Modell" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Als Stützstruktur drucken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Einstellungen für Überlappungen ändern" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Überlappungen nicht unterstützen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Nur Mesh-Füllung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Mesh beschneiden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Einstellungen wählen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtern..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Alle anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plugin Nachbearbeitung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Skripts Nachbearbeitung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Ein Skript hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Einstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Aktive Nachbearbeitungsskripts ändern." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Einige Punkte bei diesem Druck könnten problematisch sein. Klicken Sie, um Tipps für die Anpassung zu erhalten." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Die folgenden Skript ist aktiv:" -msgstr[1] "Die folgenden Skripte sind aktiv:" +msgid "3D View" +msgstr "3D-Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Farbschema" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materialfarbe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Linientyp" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Geschwindigkeit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Schichtdicke" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Linienbreite" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluss" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Kompatibilitätsmodus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Bewegungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Helfer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Gehäuse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Füllung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Startet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Nur obere Schichten anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 detaillierte Schichten oben anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Oben/Unten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Innenwand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Weitere Informationen zur anonymen Datenerfassung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die geteilt werden:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Ich möchte keine anonymen Daten senden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Senden von anonymen Daten erlauben" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Zurück" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Kompatibilität" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Gerät" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Druckbett" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Support" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualität" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Technisches Datenblatt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Sicherheitsdatenblatt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Druckrichtlinien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Website" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Installiert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Anmeldung für Installation oder Update erforderlich" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Materialspulen kaufen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Aktualisierung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Aktualisierung wird durchgeführt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Aktualisiert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Zum Web Marketplace gehen" +msgid "Front View" +msgstr "Vorderansicht" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Draufsicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Ansicht von links" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Ansicht von rechts" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Materialien suchen" +msgid "Object list" +msgstr "Objektliste" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Cura muss neu gestartet werden, um die Änderungen der Pakete zu übernehmen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 beenden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Installiert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Installiert nach Neustart" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Anmeldung für Update erforderlich" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgraden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Deinstallieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Installieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Änderungen in deinem Konto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Verwerfen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Weiter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Die folgenden Pakete werden hinzugefügt:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Die folgenden Pakete können nicht hinzugefügt werden, weil die Cura-Version nicht kompatibel ist:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Deinstallieren bestätigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Sie sind dabei, Materialien und/oder Profile zu deinstallieren, die noch verwendet werden. Durch Bestätigen werden die folgenden Materialien/Profile auf ihre Standardeinstellungen zurückgesetzt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Bestätigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Website" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "E-Mail" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Version" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Zuletzt aktualisiert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marke" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Downloads" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Community-Beiträge" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Community-Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Generische Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Verbindung zur Cura Paket-Datenbank konnte nicht hergestellt werden. Bitte überprüfen Sie Ihre Verbindung." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Installierte Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Es wurde kein Plugin installiert." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Installierte Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Es wurde kein Material installiert." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Gebündelte Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Gebündelte Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Pakete werden abgeholt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für Ultimaker Cura Enterprise zu erhalten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Marktplatz" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivellierung der Druckplatte" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Datei" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Um sicherzustellen, dass Ihre Drucke hervorragend werden, können Sie nun Ihre Druckplatte justieren. Wenn Sie auf „Gehe zur nächsten Position“ klicken, bewegt sich die Düse zu den verschiedenen Positionen, die justiert werden können." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Bearbeiten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Legen Sie für jede Position ein Blatt Papier unter die Düse und stellen Sie die Höhe der Druckplatte ein. Die Höhe der Druckplatte ist korrekt, wenn das Papier von der Spitze der Düse leicht berührt wird." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Nivellierung der Druckplatte starten" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Einstellungen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Gehe zur nächsten Position" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Er&weiterungen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Wählen Sie bitte alle Upgrades für dieses Ultimaker-Original" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "&Konfiguration" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Beheizte Druckplatte (offizielles Kit oder Eigenbau)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Hilfe" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Anschluss an vernetzten Drucker" +msgid "New project" +msgstr "Neues Projekt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Bearbeiten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Entfernen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die Anleitung für Fehlerbehebung für Netzwerkdruck" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Firmware-Version" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adresse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Druckern anzusteuern." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Der Drucker unter dieser Adresse hat nicht reagiert." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Verbinden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Ungültige IP-Adresse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Bitte eine gültige IP-Adresse eingeben." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Druckeradresse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Geben Sie die IP-Adresse Ihres Druckers in das Netzwerk ein." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Konfigurationsänderungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Überschreiben" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Der zugewiesene Drucker %1 erfordert die folgende Konfigurationsänderung:" -msgstr[1] "Der zugewiesene Drucker %1 erfordert die folgenden Konfigurationsänderungen:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Der Drucker %1 wurde zugewiesen, allerdings enthält der Auftrag eine unbekannte Materialkonfiguration." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Material %1 von %2 auf %3 wechseln." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Print Core %1 von %2 auf %3 wechseln." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Druckplatte auf %1 wechseln (Dies kann nicht übergangen werden)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Überschreiben verwendet die definierten Einstellungen mit der vorhandenen Druckerkonfiguration. Dies kann zu einem fehlgeschlagenen Druck führen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Glas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Vorziehen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Löschen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Zurückkehren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Wird pausiert..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Wird fortgesetzt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pausieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Wird abgebrochen..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abbrechen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Druckauftrag vorziehen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Soll %1 wirklich gelöscht werden?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Druckauftrag löschen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Möchten Sie %1 wirklich abbrechen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Drucken abbrechen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Drucker verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Damit Sie die Warteschlange aus der Ferne verwalten können, müssen Sie die Druckfirmware aktualisieren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Lädt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Nicht verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nicht erreichbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Leerlauf" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Vorbereitung..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Drucken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Unbenannt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonym" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Erfordert Konfigurationsänderungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Details" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Drucker nicht verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Zuerst verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abgebrochen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Beendet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Wird abgebrochen..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Wird pausiert..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausiert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Wird fortgesetzt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Handlung erforderlich" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Fertigstellung %1 auf %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "In Warteschlange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Im Browser verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Die Warteschlange enthält keine Druckaufträge. Slicen Sie einen Auftrag und schicken Sie ihn ab, um ihn zur Warteschlange hinzuzufügen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Druckaufträge" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Druckdauer insgesamt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Warten auf" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Drucken über Netzwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Drucken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Druckerauswahl" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Anmelden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Bei der Ultimaker-Plattform anmelden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Materialprofile und Plug-ins aus dem Marketplace hinzufügen\n" -"- Materialprofile und Plug-ins sichern und synchronisieren\n" -"- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Kostenloses Ultimaker-Konto erstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Überprüfung läuft ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Konto wurde synchronisiert" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Irgendetwas ist schief gelaufen ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Ausstehende Updates installieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Nach Updates für das Konto suchen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Letztes Update: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker‑Konto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Abmelden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Keine Zeitschätzung verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Keine Kostenschätzung verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Vorschau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Zeitschätzung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Materialschätzung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Das Slicing läuft..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Slicing nicht möglich" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Verarbeitung läuft" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Slice" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Slicing-Vorgang starten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Abbrechen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Online-Fehlerbehebung anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Umschalten auf Vollbild-Modus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Vollbildmodus beenden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Rückgängig machen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Wiederholen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Beenden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3D-Ansicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Vorderansicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Draufsicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Ansicht von unten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Ansicht von links" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Ansicht von rechts" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Cura konfigurieren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Drucker hinzufügen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Dr&ucker verwalten..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Materialien werden verwaltet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Weiteres Material aus Marketplace hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Aktuelle Änderungen verwerfen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "P&rofil von aktuellen Einstellungen/Überschreibungen erstellen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Profile verwalten..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Online-&Dokumentation anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "&Fehler melden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Neuheiten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Über..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Ausgewählte löschen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Ausgewählte zentrieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Ausgewählte vervielfachen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Modell löschen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Modell auf Druckplatte ze&ntrieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "Modelle &gruppieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Gruppierung für Modelle aufheben" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Modelle &zusammenführen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "Modell &multiplizieren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Alle Modelle wählen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Druckplatte reinigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Alle Modelle neu laden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Alle Modelle an allen Druckplatten anordnen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Alle Modelle anordnen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Anordnung auswählen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Alle Modellpositionen zurücksetzen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Alle Modelltransformationen zurücksetzen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Datei(en) öffnen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Neues Projekt..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Konfigurationsordner anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Sichtbarkeit einstellen wird konfiguriert..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marktplatz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Dieses Paket wird nach einem Neustart installiert." +msgid "Time estimation" +msgstr "Zeitschätzung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Allgemein" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Materialschätzung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Einstellungen" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Drucker" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profile" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Keine Zeitschätzung verfügbar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1 wird geschlossen" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Keine Kostenschätzung verfügbar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Möchten Sie %1 wirklich beenden?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Vorschau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Datei(en) öffnen" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "Einen Drucker hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Paket installieren" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Einen vernetzten Drucker hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Datei(en) öffnen" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Einen unvernetzten Drucker hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Es wurden eine oder mehrere G-Code-Datei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine G-Code-Datei auf einmal öffnen. Wenn Sie eine G-Code-Datei öffnen möchten wählen Sie bitte nur eine Datei." +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Einen Cloud-Drucker hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Drucker hinzufügen" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Auf eine Antwort von der Cloud warten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Keine Drucker in Ihrem Konto gefunden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "Folgende Drucker in Ihrem Konto wurden zu Cura hinzugefügt:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Drucker manuell hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Drucker nach IP-Adresse hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Geben Sie die IP-Adresse Ihres Druckers ein." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Verbindung mit Drucker nicht möglich." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Sie können keine Verbindung zu Ihrem Ultimaker-Drucker herstellen?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "Der Drucker unter dieser Adresse hat noch nicht reagiert." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Dieser Drucker kann nicht hinzugefügt werden, weil es sich um einen unbekannten Drucker handelt oder er nicht im Host einer Gruppe enthalten ist." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Zurück" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Verbinden" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Benutzervereinbarung" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Ablehnen und schließen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Willkommen bei Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"Befolgen Sie bitte diese Schritte für das Einrichten von\n" +"Ultimaker Cura. Dies dauert nur wenige Sekunden." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Erste Schritte" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Bei der Ultimaker-Plattform anmelden" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Materialeinstellungen und Plug-ins aus dem Marketplace hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Überspringen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Kostenloses Ultimaker-Konto erstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Hersteller" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Autor des Profils" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Druckername" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Kein Drucker in Ihrem Netzwerk gefunden." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Aktualisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Drucker nach IP hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Ein Cloud-Drucker hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Störungen beheben" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Helfen Sie uns, Ultimaker Cura zu verbessern" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Dazu gehören:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Gerätetypen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Materialverbrauch" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Anzahl der Slices" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Druckeinstellungen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Die von Ultimaker Cura erfassten Daten enthalten keine personenbezogenen Daten." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Mehr Informationen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "Neuheiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Leer" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Versionshinweise" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Über %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "Version: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3657,183 +3614,202 @@ msgstr "" "Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\n" "Cura verwendet mit Stolz die folgenden Open Source-Projekte:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Grafische Benutzerschnittstelle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Anwendungsrahmenwerk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "G-Code-Generator" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Bibliothek Interprozess-Kommunikation" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Programmiersprache" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI-Rahmenwerk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "GUI-Rahmenwerk Einbindungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C/C++ Einbindungsbibliothek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Format Datenaustausch" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Support-Bibliothek für wissenschaftliche Berechnung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Support-Bibliothek für schnelleres Rechnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Support-Bibliothek für die Handhabung von STL-Dateien" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Support-Bibliothek für die Handhabung von ebenen Objekten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Support-Bibliothek für die Handhabung von dreieckigen Netzen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Support-Bibliothek für die Handhabung von 3MF-Dateien" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Support-Bibliothek für Datei-Metadaten und Streaming" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Bibliothek für serielle Kommunikation" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Bibliothek für ZeroConf-Erkennung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Bibliothek für Polygon-Beschneidung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Statischer Prüfer für Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Python-Fehlerverfolgungs-Bibliothek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Polygon-Packaging-Bibliothek, entwickelt von Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Python-Bindungen für libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Unterstützungsbibliothek für den Zugriff auf den Systemschlüsselbund" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Python-Erweiterungen für Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Schriftart" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVG-Symbole" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Distributionsunabhängiges Format für Linux-Anwendungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Projektdatei öffnen" +msgid "Open file(s)" +msgstr "Datei(en) öffnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Es wurden eine oder mehrere Projektdatei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine Projektdatei auf einmal öffnen. Es wird empfohlen, nur Modelle aus diesen Dateien zu importieren. Möchten Sie fortfahren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Meine Auswahl merken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Als Projekt öffnen" +msgid "Import all as models" +msgstr "Alle als Modelle importieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Projekt speichern" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extruder %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Modelle importieren" +msgid "Save" +msgstr "Speichern" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Änderungen verwerfen oder übernehmen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3844,1206 +3820,142 @@ msgstr "" "Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n" "Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Profileinstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Aktuelle Änderungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Stets nachfragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Verwerfen und zukünftig nicht mehr nachfragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Übernehmen und zukünftig nicht mehr nachfragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Änderungen verwerfen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Änderungen speichern" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Projektdatei öffnen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Es wurden eine oder mehrere Projektdatei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine Projektdatei auf einmal öffnen. Es wird empfohlen, nur Modelle aus diesen Dateien zu importieren. Möchten Sie fortfahren?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Meine Auswahl merken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Alle als Modelle importieren" +msgid "Open as project" +msgstr "Als Projekt öffnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Projekt speichern" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extruder %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Speichern" +msgid "Import models" +msgstr "Modelle importieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Ausgewähltes Modell drucken mit %1" -msgstr[1] "Ausgewählte Modelle drucken mit %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Unbenannt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Datei" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Bearbeiten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ansicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Einstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Er&weiterungen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "&Konfiguration" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Hilfe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Neues Projekt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Marktplatz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Konfigurationen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marktplatz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Verfügbare Konfigurationen werden von diesem Drucker geladen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Die Konfigurationen sind nicht verfügbar, da der Drucker getrennt ist." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Konfiguration wählen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Konfigurationen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Aktiviert" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Ausgewähltes Modell drucken mit:" -msgstr[1] "Ausgewählte Modelle drucken mit:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Ausgewähltes Modell multiplizieren" -msgstr[1] "Ausgewählte Modelle multiplizieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Anzahl Kopien" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Projekt speichern ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportieren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Auswahl exportieren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoriten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Generisch" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Datei(en) öffnen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Netzwerkfähige Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Lokale Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "&Zuletzt geöffnet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Projekt speichern..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Dr&ucker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Als aktiven Extruder festlegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder aktivieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder deaktivieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Sichtbare Einstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Alle Kategorien schließen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Sichtbarkeit einstellen verwalten..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Kameraposition" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Kameraansicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Ansicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Orthogonal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Druckplatte" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Nicht mit einem Drucker verbunden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Drucker nimmt keine Befehle an" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "In Wartung. Den Drucker überprüfen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Verbindung zum Drucker wurde unterbrochen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Es wird gedruckt..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pausiert" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Vorbereitung läuft..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Bitte den Ausdruck entfernen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Drucken abbrechen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Soll das Drucken wirklich abgebrochen werden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Wird als Stückstruktur gedruckt." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Andere Modelle, die sich mit diesem Modell überschneiden, werden angepasst." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Überlappende Füllung wird bei diesem Modell angepasst." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Überlappungen mit diesem Modell werden nicht unterstützt." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Überschreibt %1-Einstellung." -msgstr[1] "Überschreibt %1-Einstellungen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Objektliste" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Schnittstelle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Währung:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Thema:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Die Anwendung muss neu gestartet werden, um die Änderungen zu übernehmen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Bei Änderung der Einstellungen automatisch schneiden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Automatisch schneiden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Viewport-Verhalten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Nicht gestützte Bereiche des Modells in rot hervorheben. Ohne Support werden diese Bereiche nicht korrekt gedruckt." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Überhang anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Heben Sie fehlende oder fehlerhafte Flächen des Modells mithilfe von Warnhinweisen hervor. In den Werkzeugpfaden fehlen oft Teile der beabsichtigten Geometrie." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Modellfehler anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Bewegt die Kamera, bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt wurde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Zentrieren Sie die Kamera, wenn das Element ausgewählt wurde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Soll das standardmäßige Zoom-Verhalten von Cura umgekehrt werden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Kehren Sie die Richtung des Kamera-Zooms um." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Soll das Zoomen in Richtung der Maus erfolgen?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Das Zoomen in Richtung der Maus wird in der orthografischen Perspektive nicht unterstützt." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "In Mausrichtung zoomen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Sollen Modelle auf der Plattform so verschoben werden, dass sie sich nicht länger überschneiden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Stellen Sie sicher, dass die Modelle getrennt gehalten werden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Sollen Modelle auf der Plattform so nach unten verschoben werden, dass sie die Druckplatte berühren?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Setzt Modelle automatisch auf der Druckplatte ab" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Warnmeldung im G-Code-Reader anzeigen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Warnmeldung in G-Code-Reader" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Soll die Schicht in den Kompatibilitätsmodus gezwungen werden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Sollte Cura sich an der Stelle öffnen, an der das Programm geschlossen wurde?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Fensterposition beim Start wiederherstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Welches Kamera-Rendering sollte verwendet werden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Kamera-Rendering:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Ansicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Orthogonal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Dateien öffnen und speichern" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Eine einzelne Instanz von Cura verwenden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Sollen Modelle an das Erstellungsvolumen angepasst werden, wenn sie zu groß sind?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Große Modelle anpassen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Ein Modell kann extrem klein erscheinen, wenn seine Maßeinheit z. B. in Metern anstelle von Millimetern angegeben ist. Sollen diese Modelle hoch skaliert werden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Extrem kleine Modelle skalieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Sollten Modelle gewählt werden, nachdem sie geladen wurden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Modelle wählen, nachdem sie geladen wurden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Soll ein Präfix anhand des Druckernamens automatisch zum Namen des Druckauftrags hinzugefügt werden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Geräte-Präfix zu Auftragsnamen hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Soll beim Speichern einer Projektdatei eine Zusammenfassung angezeigt werden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Standardverhalten beim Öffnen einer Projektdatei" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Standardverhalten beim Öffnen einer Projektdatei: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Stets nachfragen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Immer als Projekt öffnen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Modelle immer importieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Wenn Sie Änderungen für ein Profil vorgenommen haben und zu einem anderen Profil gewechselt sind, wird ein Dialog angezeigt, der hinterfragt, ob Sie Ihre Änderungen beibehalten möchten oder nicht; optional können Sie ein Standardverhalten wählen, sodass dieser Dialog nicht erneut angezeigt wird." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Profile" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Geänderte Einstellungen immer verwerfen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Geänderte Einstellungen immer auf neues Profil übertragen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Privatsphäre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Soll Cura bei Programmstart nach Updates suchen?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Bei Start nach Updates suchen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Sollen anonyme Daten über Ihren Druck an Ultimaker gesendet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere personenbezogene Daten gesendet oder gespeichert werden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(Anonyme) Druckinformationen senden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Mehr Informationen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Umbenennen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Erstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplizieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Import" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Export" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Mit Druckern synchronisieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Entfernen bestätigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Material importieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Material konnte nicht importiert werden %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material wurde erfolgreich importiert %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Material exportieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Exportieren des Materials nach %1: %2 schlug fehl" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material erfolgreich nach %1 exportiert" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Alle Materialien exportieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informationen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Änderung Durchmesser bestätigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Der neue Filament-Durchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Extruder ist. Möchten Sie fortfahren?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Namen anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Materialtyp" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Farbe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Eigenschaften" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Dichte" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Durchmesser" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Filamentkosten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Filamentgewicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Filamentlänge" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Kosten pro Meter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Dieses Material ist mit %1 verknüpft und teilt sich damit einige seiner Eigenschaften." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Material trennen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Beschreibung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Haftungsinformationen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Druckeinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Erstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplizieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Profil erstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Geben Sie bitte einen Namen für dieses Profil an." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Profil duplizieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Profil umbenennen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profil importieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profil exportieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Drucker: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Aktuelle Änderungen verwerfen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Dieses Profil verwendet die vom Drucker festgelegten Standardeinstellungen, deshalb sind in der folgenden Liste keine Einstellungen/Überschreibungen enthalten." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Globale Einstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Berechnet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Einstellung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Aktuell" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Einheit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Sichtbarkeit einstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Alle prüfen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Die Zieltemperatur des Hotend. Das Hotend wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Hotend-Heizung ausgeschaltet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Die aktuelle Temperatur dieses Hotends." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Abbrechen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Vorheizen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Heizen Sie das Hotend vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Hotend aufgeheizt ist, wenn Sie druckbereit sind." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Die Farbe des Materials in diesem Extruder." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Das Material in diesem Extruder." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Die in diesem Extruder eingesetzte Düse." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Druckbett" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "Die Zieltemperatur des heizbaren Betts. Das Bett wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Bettheizung ausgeschaltet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Die aktuelle Temperatur des beheizten Betts." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Die Temperatur, auf die das Bett vorgeheizt wird." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Heizen Sie das Bett vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Bett aufgeheizt ist, wenn Sie druckbereit sind." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Druckersteuerung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Tippposition" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Tippdistanz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-Code senden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Der Drucker ist nicht verbunden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "Der Cloud-Drucker ist offline. Bitte prüfen Sie, ob der Drucker eingeschaltet und mit dem Internet verbunden ist." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Der Drucker ist nicht mit Ihrem Konto verbunden. Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte melden Sie sich an, um sich mit dem Cloud-Drucker zu verbinden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte überprüfen Sie ihre Internetverbindung." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Drucker verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Verbundene Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Voreingestellte Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Aktiver Druck" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Name des Auftrags" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Druckzeit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Geschätzte verbleibende Zeit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "Der Cloud-Drucker ist offline. Bitte prüfen Sie, ob der Drucker eingeschaltet und mit dem Internet verbunden ist." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Der Drucker ist nicht mit Ihrem Konto verbunden. Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte melden Sie sich an, um sich mit dem Cloud-Drucker zu verbinden." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte überprüfen Sie ihre Internetverbindung." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Drucker hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Drucker verwalten" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Verbundene Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Voreingestellte Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Druckeinstellungen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Druckeinrichtung ist deaktiviert. G-Code-Datei kann nicht geändert werden." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5054,120 +3966,1681 @@ msgstr "" "\n" "Klicken Sie, um den Profilmanager zu öffnen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Benutzerdefinierte Profile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Aktuelle Änderungen verwerfen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Empfohlen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Ein" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Aus" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimentell" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "Es gibt kein %1-Profil für die Konfiguration in der Extruder %2. Es wird stattdessen der Standard verwendet" msgstr[1] "Es gibt kein %1-Profil für die Konfigurationen in den Extrudern %2. Es wird stattdessen der Standard verwendet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Druckeinrichtung ist deaktiviert. G-Code-Datei kann nicht geändert werden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Empfohlen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Ein" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Aus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Experimentell" +msgid "Profiles" +msgstr "Profile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Haftung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Drucken eines Brim- oder Raft-Elements aktivieren. Es wird ein flacher Bereich rund um oder unter Ihrem Objekt hinzugefügt, das im Anschluss leicht abgeschnitten werden kann." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Stufenweise Füllung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Die graduelle Füllung steigert die Menge der Füllung nach oben hin schrittweise." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Sie haben einige Profileinstellungen geändert. Wenn Sie diese ändern möchten, wechseln Sie in den Modus „Benutzerdefiniert“." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Stützstruktur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n" -"\n" -"Klicken Sie, um diese Einstellungen sichtbar zu machen." +msgid "Gradual infill" +msgstr "Stufenweise Füllung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Die graduelle Füllung steigert die Menge der Füllung nach oben hin schrittweise." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Haftung" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Drucken eines Brim- oder Raft-Elements aktivieren. Es wird ein flacher Bereich rund um oder unter Ihrem Objekt hinzugefügt, das im Anschluss leicht abgeschnitten werden kann." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Projekt speichern..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Netzwerkfähige Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Lokale Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoriten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Generisch" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Ausgewähltes Modell drucken mit:" +msgstr[1] "Ausgewählte Modelle drucken mit:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Ausgewähltes Modell multiplizieren" +msgstr[1] "Ausgewählte Modelle multiplizieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Anzahl Kopien" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Projekt speichern ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportieren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Auswahl exportieren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Konfigurationen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Aktiviert" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "Die Konfiguration dieses Extruders ist nicht zulässig und verhindert das Slicing." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Es gibt keine Profile, die mit der Konfiguration dieses Extruders übereinstimmen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Konfiguration wählen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Konfigurationen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Verfügbare Konfigurationen werden von diesem Drucker geladen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "Die Konfigurationen sind nicht verfügbar, da der Drucker getrennt ist." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marktplatz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Datei(en) öffnen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "Dr&ucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Als aktiven Extruder festlegen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Extruder aktivieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Extruder deaktivieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "&Zuletzt geöffnet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Sichtbare Einstellungen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Alle Kategorien schließen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Sichtbarkeit einstellen verwalten..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Kameraposition" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Kameraansicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Ansicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Orthogonal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "&Druckplatte" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Typ anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Wird als Stückstruktur gedruckt." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Andere Modelle, die sich mit diesem Modell überschneiden, werden angepasst." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Überlappende Füllung wird bei diesem Modell angepasst." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Überlappungen mit diesem Modell werden nicht unterstützt." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Überschreibt %1-Einstellung." +msgstr[1] "Überschreibt %1-Einstellungen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profile" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Aktivieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Erstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Duplizieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Umbenennen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Import" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Export" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Profil erstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Geben Sie bitte einen Namen für dieses Profil an." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Profil duplizieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Entfernen bestätigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Profil umbenennen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Profil importieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profil exportieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Drucker: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Dieses Profil verwendet die vom Drucker festgelegten Standardeinstellungen, deshalb sind in der folgenden Liste keine Einstellungen/Überschreibungen enthalten." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Globale Einstellungen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Allgemein" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Schnittstelle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Währung:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Thema:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Die Anwendung muss neu gestartet werden, um die Änderungen zu übernehmen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Bei Änderung der Einstellungen automatisch schneiden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Automatisch schneiden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Viewport-Verhalten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Nicht gestützte Bereiche des Modells in rot hervorheben. Ohne Support werden diese Bereiche nicht korrekt gedruckt." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Überhang anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Heben Sie fehlende oder fehlerhafte Flächen des Modells mithilfe von Warnhinweisen hervor. In den Werkzeugpfaden fehlen oft Teile der beabsichtigten Geometrie." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Modellfehler anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Bewegt die Kamera, bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt wurde" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Zentrieren Sie die Kamera, wenn das Element ausgewählt wurde" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Soll das standardmäßige Zoom-Verhalten von Cura umgekehrt werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Kehren Sie die Richtung des Kamera-Zooms um." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Soll das Zoomen in Richtung der Maus erfolgen?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Das Zoomen in Richtung der Maus wird in der orthografischen Perspektive nicht unterstützt." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "In Mausrichtung zoomen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Sollen Modelle auf der Plattform so verschoben werden, dass sie sich nicht länger überschneiden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Stellen Sie sicher, dass die Modelle getrennt gehalten werden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Sollen Modelle auf der Plattform so nach unten verschoben werden, dass sie die Druckplatte berühren?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Setzt Modelle automatisch auf der Druckplatte ab" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Warnmeldung im G-Code-Reader anzeigen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Warnmeldung in G-Code-Reader" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Soll die Schicht in den Kompatibilitätsmodus gezwungen werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Sollte Cura sich an der Stelle öffnen, an der das Programm geschlossen wurde?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Fensterposition beim Start wiederherstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Welches Kamera-Rendering sollte verwendet werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Kamera-Rendering:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Ansicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Orthogonal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Dateien öffnen und speichern" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Eine einzelne Instanz von Cura verwenden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Soll das Druckbett jeweils vor dem Laden eines neuen Modells in einer einzelnen Instanz von Cura gelöscht werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Druckbett vor dem Laden des Modells in die Einzelinstanz löschen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Sollen Modelle an das Erstellungsvolumen angepasst werden, wenn sie zu groß sind?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Große Modelle anpassen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Ein Modell kann extrem klein erscheinen, wenn seine Maßeinheit z. B. in Metern anstelle von Millimetern angegeben ist. Sollen diese Modelle hoch skaliert werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Extrem kleine Modelle skalieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Sollten Modelle gewählt werden, nachdem sie geladen wurden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Modelle wählen, nachdem sie geladen wurden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Soll ein Präfix anhand des Druckernamens automatisch zum Namen des Druckauftrags hinzugefügt werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Geräte-Präfix zu Auftragsnamen hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Soll beim Speichern einer Projektdatei eine Zusammenfassung angezeigt werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Standardverhalten beim Öffnen einer Projektdatei" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Standardverhalten beim Öffnen einer Projektdatei: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Stets nachfragen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Immer als Projekt öffnen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Modelle immer importieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Wenn Sie Änderungen für ein Profil vorgenommen haben und zu einem anderen Profil gewechselt sind, wird ein Dialog angezeigt, der hinterfragt, ob Sie Ihre Änderungen beibehalten möchten oder nicht; optional können Sie ein Standardverhalten wählen, sodass dieser Dialog nicht erneut angezeigt wird." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Geänderte Einstellungen immer verwerfen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Geänderte Einstellungen immer auf neues Profil übertragen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Privatsphäre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Sollen anonyme Daten über Ihren Druck an Ultimaker gesendet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere personenbezogene Daten gesendet oder gespeichert werden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(Anonyme) Druckinformationen senden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Mehr Informationen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Updates" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Soll Cura bei Programmstart nach Updates suchen?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Bei Start nach Updates suchen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Wählen Sie bei der Suche nach Updates nur stabile Versionen aus." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Nur stabile Versionen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Wählen Sie bei der Suche nach Updates sowohl stabile als auch Beta-Versionen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Stabile und Beta-Versionen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Sollte jedes Mal, wenn Cura gestartet wird, eine automatische Überprüfung auf neue Plug-ins durchgeführt werden? Es wird dringend empfohlen, diese Funktion nicht zu deaktivieren!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Benachrichtigungen über Plug-in-Updates erhalten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Informationen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Änderung Durchmesser bestätigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Der neue Filament-Durchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Extruder ist. Möchten Sie fortfahren?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Namen anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Materialtyp" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Farbe" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Eigenschaften" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Dichte" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Durchmesser" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Filamentkosten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Filamentgewicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Filamentlänge" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Kosten pro Meter" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Dieses Material ist mit %1 verknüpft und teilt sich damit einige seiner Eigenschaften." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Material trennen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Beschreibung" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Haftungsinformationen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Erstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplizieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Mit Druckern synchronisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Material importieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Material konnte nicht importiert werden %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material wurde erfolgreich importiert %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Material exportieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Exportieren des Materials nach %1: %2 schlug fehl" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material erfolgreich nach %1 exportiert" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Materialien mit Druckern synchronisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Materialien mit Druckern synchronisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Mit ein paar einfachen Schritten können Sie alle Ihre Materialprofile mit Ihren Druckern synchronisieren." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Start" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Warum muss ich Materialprofile synchronisieren?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Anmelden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Um die Materialprofile automatisch mit all Ihren mit Digital Factory verbundenen Druckern zu synchronisieren, müssen Sie in Cura angemeldet sein." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Materialien über USB snchronisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Die folgenden Drucker erhalten die neuen Materialprofile:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Beim Senden der Materialien an die Drucker ist ein Fehler aufgetreten." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Materialprofile wurden erfolgreich mit den folgenden Druckern synchronisiert:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Störungen beheben" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Fehlen Drucker?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Vergewissern Sie sich, dass alle Ihre Drucker eingeschaltet und mit Digital Factory verbunden sind." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Liste aktualisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Erneut versuchen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Fertig" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Synchronisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Synchronisierung" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Keine Drucker gefunden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Es scheint, als ob Sie keine kompatiblen Drucker mit Digital Factory verbunden haben. Stellen Sie sicher, dass Ihr Drucker verbunden ist und die neueste Firmware ausgeführt wird." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Erfahren Sie, wie Sie Ihren Drucker mit Digital Factory verbinden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Aktualisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Synchronisieren von Materialprofilen über USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Führen Sie die folgenden Schritte aus, um die neuen Materialprofile in Ihren Drucker zu laden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Klicken Sie auf die Schaltfläche Materialarchiv exportieren." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Speichern Sie die .umm-Datei auf einem USB-Stick." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Stecken Sie den USB-Stick in Ihren Drucker und starten Sie das Verfahren zum Laden neuer Materialprofile." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Wie lade ich neue Materialprofile in meinen Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Materialarchiv exportieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Alle Materialien exportieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Sichtbarkeit einstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Alle prüfen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Berechnet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Einstellung" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Aktuell" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Einheit" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Nicht mit einem Drucker verbunden" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Drucker nimmt keine Befehle an" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "In Wartung. Den Drucker überprüfen" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Verbindung zum Drucker wurde unterbrochen" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Es wird gedruckt..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pausiert" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Vorbereitung läuft..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Bitte den Ausdruck entfernen" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Drucken abbrechen" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Soll das Drucken wirklich abgebrochen werden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Ausgewähltes Modell drucken mit %1" +msgstr[1] "Ausgewählte Modelle drucken mit %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Meine Drucker" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Überwachen Sie Drucker in der Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Erstellen Sie Druckprojekte in der digitalen Bibliothek." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Druckaufträge" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Überwachen Sie Druckaufträge und drucken Sie sie aus Ihrem Druckprotokoll nach." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Erweitern Sie Ultimaker Cura durch Plugins und Materialprofile." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Werden Sie ein 3D-Druck-Experte mittels des E-Learning von Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker Kundendienst" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Erfahren Sie, wie Sie mit Ultimaker Cura Ihre Arbeit beginnen können." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Eine Frage stellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Wenden Sie sich an die Ultimaker Community." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Einen Fehler melden" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Lassen Sie es die Entwickler wissen, falls etwas schief läuft." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Besuchen Sie die Ultimaker-Website." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Druckersteuerung" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Tippposition" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Tippdistanz" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-Code senden" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Extruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Die Zieltemperatur des Hotend. Das Hotend wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Hotend-Heizung ausgeschaltet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Die aktuelle Temperatur dieses Hotends." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Abbrechen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Vorheizen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Heizen Sie das Hotend vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Hotend aufgeheizt ist, wenn Sie druckbereit sind." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Die Farbe des Materials in diesem Extruder." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Das Material in diesem Extruder." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Die in diesem Extruder eingesetzte Düse." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Der Drucker ist nicht verbunden." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Druckbett" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "Die Zieltemperatur des heizbaren Betts. Das Bett wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Bettheizung ausgeschaltet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Die aktuelle Temperatur des beheizten Betts." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Die Temperatur, auf die das Bett vorgeheizt wird." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Heizen Sie das Bett vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Bett aufgeheizt ist, wenn Sie druckbereit sind." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Anmelden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Materialprofile und Plug-ins aus dem Marketplace hinzufügen\n" +"- Materialprofile und Plug-ins sichern und synchronisieren\n" +"- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Kostenloses Ultimaker-Konto erstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Letztes Update: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker‑Konto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Abmelden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Überprüfung läuft ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Konto wurde synchronisiert" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Irgendetwas ist schief gelaufen ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Ausstehende Updates installieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Nach Updates für das Konto suchen" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Unbenannt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Keine auswählbaren Einträge" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Online-Fehlerbehebung anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Umschalten auf Vollbild-Modus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Vollbildmodus beenden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Rückgängig machen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Wiederholen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Beenden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3D-Ansicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Vorderansicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Draufsicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Ansicht von unten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Ansicht von links" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Ansicht von rechts" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Cura konfigurieren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Drucker hinzufügen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Dr&ucker verwalten..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Materialien werden verwaltet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Weiteres Material aus Marketplace hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Aktuelle Änderungen verwerfen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "P&rofil von aktuellen Einstellungen/Überschreibungen erstellen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Profile verwalten..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Online-&Dokumentation anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "&Fehler melden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Neuheiten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Über..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Ausgewählte löschen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Ausgewählte zentrieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Ausgewählte vervielfachen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Modell löschen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Modell auf Druckplatte ze&ntrieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "Modelle &gruppieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Gruppierung für Modelle aufheben" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Modelle &zusammenführen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "Modell &multiplizieren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Alle Modelle wählen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Druckplatte reinigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Alle Modelle neu laden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Alle Modelle an allen Druckplatten anordnen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Alle Modelle anordnen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Anordnung auswählen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Alle Modellpositionen zurücksetzen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Alle Modelltransformationen zurücksetzen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Datei(en) öffnen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Neues Projekt..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Konfigurationsordner anzeigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Sichtbarkeit einstellen wird konfiguriert..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Marktplatz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Diese Einstellung wird nicht verwendet, weil alle hierdurch beeinflussten Einstellungen aufgehoben werden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Hat Einfluss auf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Wird beeinflusst von" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5178,7 +5651,7 @@ msgstr "" "\n" "Klicken Sie, um den Wert des Profils wiederherzustellen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5189,509 +5662,92 @@ msgstr "" "\n" "Klicken Sie, um den berechneten Wert wiederherzustellen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Einstellungen durchsuchen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Werte für alle Extruder kopieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Alle geänderten Werte für alle Extruder kopieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Diese Einstellung ausblenden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Diese Einstellung ausblenden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Diese Einstellung weiterhin anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D-Ansicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Vorderansicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Draufsicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Ansicht von links" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Ansicht von rechts" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Typ anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Einen Cloud-Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Auf eine Antwort von der Cloud warten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Keine Drucker in Ihrem Konto gefunden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "Folgende Drucker in Ihrem Konto wurden zu Cura hinzugefügt:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Drucker manuell hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Hersteller" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor des Profils" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Druckername" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Einen Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Einen vernetzten Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Einen unvernetzten Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Kein Drucker in Ihrem Netzwerk gefunden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Drucker nach IP hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Ein Cloud-Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Störungen beheben" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Drucker nach IP-Adresse hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Geben Sie die IP-Adresse Ihres Druckers ein." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Verbindung mit Drucker nicht möglich." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Sie können keine Verbindung zu Ihrem Ultimaker-Drucker herstellen?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "Der Drucker unter dieser Adresse hat noch nicht reagiert." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Dieser Drucker kann nicht hinzugefügt werden, weil es sich um einen unbekannten Drucker handelt oder er nicht im Host einer Gruppe enthalten ist." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Zurück" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Verbinden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Versionshinweise" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Materialeinstellungen und Plug-ins aus dem Marketplace hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Kostenloses Ultimaker-Konto erstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Überspringen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Helfen Sie uns, Ultimaker Cura zu verbessern" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Dazu gehören:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Gerätetypen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Materialverbrauch" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Anzahl der Slices" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Druckeinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Die von Ultimaker Cura erfassten Daten enthalten keine personenbezogenen Daten." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Mehr Informationen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Leer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Benutzervereinbarung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Ablehnen und schließen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Willkommen bei Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" -"Befolgen Sie bitte diese Schritte für das Einrichten von\n" -"Ultimaker Cura. Dies dauert nur wenige Sekunden." +"Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n" +"\n" +"Klicken Sie, um diese Einstellungen sichtbar zu machen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Erste Schritte" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Dieses Paket wird nach einem Neustart installiert." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Einstellungen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "%1 wird geschlossen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Möchten Sie %1 wirklich beenden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Paket installieren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Datei(en) öffnen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Es wurden eine oder mehrere G-Code-Datei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine G-Code-Datei auf einmal öffnen. Wenn Sie eine G-Code-Datei öffnen möchten wählen Sie bitte nur eine Datei." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Drucker hinzufügen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "Neuheiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Keine auswählbaren Einträge" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Modell-Prüfer" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Ermöglicht das Lesen von 3MF-Dateien." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-Reader" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-Writer" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Ermöglicht das Lesen von AMF-Dateien." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-Reader" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-Backups" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Ermöglicht das Importieren von Cura-Profilen." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-Profil-Reader" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Ermöglicht das Exportieren von Cura-Profilen." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-Profil-Writer" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitale Bibliothek von Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Nach Firmware-Updates suchen." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-Update-Prüfer" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-Aktualisierungsfunktion" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Liest G-Code-Format aus einem komprimierten Archiv." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Reader für komprimierten G-Code" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer für komprimierten G-Code" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-Code-Profil-Reader" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-Code-Reader" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Schreibt G-Code in eine Datei." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-Code-Writer" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Bild-Reader" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Cura-Vorgängerprofil-Reader" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Beschreibung Geräteeinstellungen" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Bietet eine Überwachungsstufe in Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Überwachungsstufe" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5702,85 +5758,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Werkzeug „Einstellungen pro Objekt“" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" +msgid "Provides support for importing Cura profiles." +msgstr "Ermöglicht das Importieren von Cura-Profilen." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Nachbearbeitung" +msgid "Cura Profile Reader" +msgstr "Cura-Profil-Reader" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Bietet eine Vorbereitungsstufe in Cura." +msgid "Provides support for reading X3D files." +msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Vorbereitungsstufe" +msgid "X3D Reader" +msgstr "X3D-Reader" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Bietet eine Vorschaustufe in Cura." +msgid "Backup and restore your configuration." +msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Vorschaustufe" +msgid "Cura Backups" +msgstr "Cura-Backups" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Ausgabegerät-Plugin für Wechseldatenträger" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry-Protokolleinrichtung" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Ermöglicht die Simulationsansicht." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Simulationsansicht" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Slice-Informationen" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Bietet eine normale, solide Netzansicht." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Solide Ansicht" +msgid "Machine Settings Action" +msgstr "Beschreibung Geräteeinstellungen" #: SupportEraser/plugin.json msgctxt "description" @@ -5792,35 +5808,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Stützstruktur-Radierer" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Neue Cura Pakete finden, verwalten und installieren." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Toolbox" +msgid "Removable Drive Output Device Plugin" +msgstr "Ausgabegerät-Plugin für Wechseldatenträger" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Unterstützt das Lesen von Modelldateien." +msgid "Provides a machine actions for updating firmware." +msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" +msgid "Firmware Updater" +msgstr "Firmware-Aktualisierungsfunktion" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-Reader" +msgid "Legacy Cura Profile Reader" +msgstr "Cura-Vorgängerprofil-Reader" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Ermöglicht das Lesen von 3MF-Dateien." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-Reader" #: UFPWriter/plugin.json msgctxt "description" @@ -5832,25 +5858,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "UFP-Writer" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ermöglicht Maschinenabläufe für Ultimaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker-Maschinenabläufe" +msgid "Sentry Logger" +msgstr "Sentry-Protokolleinrichtung" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." +msgid "Provides support for importing profiles from g-code files." +msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker-Netzwerkverbindung" +msgid "G-code Profile Reader" +msgstr "G-Code-Profil-Reader" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Bietet eine Vorschaustufe in Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Vorschaustufe" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Stellt die Röntgen-Ansicht bereit." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen-Ansicht" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Ermöglicht das Lesen von AMF-Dateien." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-Reader" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Liest G-Code-Format aus einem komprimierten Archiv." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Reader für komprimierten G-Code" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Nachbearbeitung" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Ermöglicht das Exportieren von Cura-Profilen." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-Profil-Writer" #: USBPrinting/plugin.json msgctxt "description" @@ -5862,25 +5958,135 @@ msgctxt "name" msgid "USB printing" msgstr "USB-Drucken" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." +msgid "Provides a prepare stage in Cura." +msgstr "Bietet eine Vorbereitungsstufe in Cura." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Upgrade von Version 2.1 auf 2.2" +msgid "Prepare Stage" +msgstr "Vorbereitungsstufe" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." +msgid "Allows loading and displaying G-code files." +msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Upgrade von Version 2.2 auf 2.4" +msgid "G-code Reader" +msgstr "G-Code-Reader" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Bild-Reader" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ermöglicht Maschinenabläufe für Ultimaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ultimaker-Maschinenabläufe" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer für komprimierten G-Code" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Nach Firmware-Updates suchen." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-Update-Prüfer" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Slice-Informationen" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Materialprofile" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digitale Bibliothek von Ultimaker" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Neue Cura Pakete finden, verwalten und installieren." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Toolbox" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Schreibt G-Code in eine Datei." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-Code-Writer" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Ermöglicht die Simulationsansicht." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Simulationsansicht" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Upgrade von Version 4.5 auf 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5892,55 +6098,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Upgrade von Version 2.5 auf 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Upgrade von Version 2.6 auf 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Upgrade von Version 4.6.0 auf 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Upgrade von Version 2.7 auf 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Upgrade von Version 3.0 auf 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Upgrade von Version 3.2 auf 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Upgrade von Version 3.3 auf 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Upgrade von Version 4.7 auf 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5952,35 +6128,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Upgrade von Version 3.4 auf 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Upgrade von Version 3.5 auf 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Upgrade von Version 2.1 auf 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Upgrade von Version 4.0 auf 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Upgrade von Version 3.2 auf 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Upgrade von Version 4.1 auf 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Upgrade von Version 4.8 auf 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Upgrade von Version 4.6.2 auf 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6002,66 +6188,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Upgrade von Version 4.3 auf 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Upgrade von Version 4.4 auf 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Upgrade von Version 4.5 auf 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Upgrade von Version 4.6.0 auf 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Upgrade von Version 4.6.2 auf 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Upgrade von Version 4.7 auf 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Upgrade von Version 4.8 auf 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6072,35 +6198,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Upgrade von Version 4.9 auf 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-Reader" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Upgrade von Version 2.7 auf 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Materialprofile" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Upgrade von Version 2.6 auf 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Stellt die Röntgen-Ansicht bereit." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen-Ansicht" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Upgrade von Version 4.11 auf 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Upgrade von Version 3.3 auf 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Upgrade von Version 3.0 auf 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Upgrade von Version 4.0 auf 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Upgrade von Version 4.4 auf 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Upgrade von Version 2.2 auf 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Upgrade von Version 4.1 auf 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Upgrade von Version 3.5 auf 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker-Netzwerkverbindung" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Unterstützt das Lesen von Modelldateien." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-Reader" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Bietet eine normale, solide Netzansicht." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Solide Ansicht" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-Writer" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Bietet eine Überwachungsstufe in Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Überwachungsstufe" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Modell-Prüfer" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Druckaufträge mithilfe Ihres Ultimaker-Kontos von einem anderen Ort aus senden und überwachen." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Mit der Ultimaker Digital Factory verbinden" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Webcam-Feeds für Cloud-Drucker können nicht in Ultimaker Cura angezeigt werden." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "Für Ihren {machine_name} sind eventuell neue Funktionen oder Fehlerbereinigungen verfügbar! Falls Sie nicht bereits die aktuellste Version verwenden, empfehlen wir Ihnen, ein Firmware-Update Ihres Druckers auf Version {latest_version} auszuführen." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Neue Firmware für %s verfügbar" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." @@ -6939,7 +7225,8 @@ msgstr "Röntgen-Ansicht" #~ "\n" #~ "Select your printer from the list below:" #~ msgstr "" -#~ "Um über das Netzwerk direkt auf Ihrem Drucker zu drucken, stellen Sie bitte sicher, dass der Drucker mit dem Netzwerkkabel verbunden ist oder verbinden Sie Ihren Drucker mit Ihrem WLAN-Netzwerk. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie dennoch ein USB-Laufwerk für die Übertragung von G-Code-Dateien auf Ihren Drucker verwenden.\n" +#~ "Um über das Netzwerk direkt auf Ihrem Drucker zu drucken, stellen Sie bitte sicher, dass der Drucker mit dem Netzwerkkabel verbunden ist oder verbinden Sie Ihren Drucker mit Ihrem WLAN-Netzwerk. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie dennoch ein USB-Laufwerk für die Übertragung " +#~ "von G-Code-Dateien auf Ihren Drucker verwenden.\n" #~ "\n" #~ "Wählen Sie Ihren Drucker aus der folgenden Liste:" diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index a0cc8d19be..76cc994c6c 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 15:15+0200\n" "Last-Translator: Bothof \n" "Language-Team: German\n" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 3eb590b680..25ee8fcf09 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 15:16+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: German , German \n" @@ -57,7 +57,7 @@ msgid "" "G-code commands to be executed at the very start - separated by \n" "." msgstr "" -"G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \n" +"G-Code-Befehle, die ganz am Anfang ausgeführt werden - getrennt durch \n" "." #: fdmprinter.def.json @@ -71,7 +71,7 @@ msgid "" "G-code commands to be executed at the very end - separated by \n" "." msgstr "" -"G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch \n" +"G-Code-Befehle, die ganz am Ende ausgeführt werden - getrennt durch \n" "." #: fdmprinter.def.json @@ -154,6 +154,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Gerätehöhe" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -194,16 +204,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminium" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Gerätehöhe" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -561,8 +561,8 @@ msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Maximaler Vorschub" +msgid "Maximum Speed E" +msgstr "Maximaldrehzahl Extruder" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -686,8 +686,8 @@ msgstr "Schritte pro Millimeter (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Extrusion führen." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Wie viele Schritte sollen die Schrittmotoren ausführen, um das Feeder-Rad um einen Millimeter auf seinem Umfang zu bewegen." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1267,7 +1267,7 @@ msgstr "Intelligent verbergen" #: fdmprinter.def.json msgctxt "z_seam_relative label" msgid "Z Seam Relative" -msgstr "Realitvwert der Z-Naht" +msgstr "Relativwert der Z-Naht" #: fdmprinter.def.json msgctxt "z_seam_relative description" @@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Gleichmäßige Reihenfolge oben/unten" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Obere/Untere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Zickzack" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Gleichmäßige Reihenfolge hin/her" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Linien werden hin und her in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1711,8 +1731,8 @@ msgstr "Füllmuster" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Tri-Hexagon-, Würfel-, Octahedral-, Viertelwürfel-, Quer- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Gyroid-, Würfel-, Viertelwürfel- und Octahedral-Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1767,18 +1787,23 @@ msgstr "Zickzack" #: fdmprinter.def.json msgctxt "infill_pattern option cross" msgid "Cross" -msgstr "Quer" +msgstr "Kreuz" #: fdmprinter.def.json msgctxt "infill_pattern option cross_3d" msgid "Cross 3D" -msgstr "3D-Quer" +msgstr "3D-Kreuz" #: fdmprinter.def.json msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Blitz" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1993,6 +2018,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Stützwinkel der Blitz-Füllung" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Legt fest, wann eine Blitz-Füllschicht alles Darüberliegende tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Überstandswinkel der Blitz-Füllung" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Legt fest, wann eine Blitz-Füllschicht das Modell darüber tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Beschnittwinkel der Blitz-Füllung" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Die Endpunkte der Füllungslinien werden verkürzt, um Material zu sparen. Diese Einstellung ist der Winkel des Überhangs der Endpunkte dieser Linien." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Begradigungswinkel der Blitz-Füllung" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3183,6 +3248,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Alle" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Nicht auf der Außenfläche" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -3196,13 +3266,12 @@ msgstr "Innerhalb der Füllung" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" -msgstr "Max. Kammentfernung ohne Einziehen" +msgstr "Max. Combing Entfernung ohne Einziehen" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es" -" keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht." +msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht." #: fdmprinter.def.json msgctxt "travel_retract_before_outer_wall label" @@ -3287,7 +3356,7 @@ msgstr "Führen Sie nur einen Z-Sprung aus, wenn Sie über gedruckte Teile fahre #: fdmprinter.def.json msgctxt "retraction_hop label" msgid "Z Hop Height" -msgstr "Z-Spring Höhe" +msgstr "Z-Sprung Höhe" #: fdmprinter.def.json msgctxt "retraction_hop description" @@ -3297,22 +3366,22 @@ msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." #: fdmprinter.def.json msgctxt "retraction_hop_after_extruder_switch label" msgid "Z Hop After Extruder Switch" -msgstr "Z-Sprung nach Extruder-Schalter" +msgstr "Z-Sprung nach Extruder-Wechsel" #: fdmprinter.def.json msgctxt "retraction_hop_after_extruder_switch description" msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Nachdem das Gerät von einem Extruder zu einem anderen geschaltet hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt." +msgstr "Nachdem das Gerät von einem Extruder zu einem anderen gewechselt hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt." #: fdmprinter.def.json msgctxt "retraction_hop_after_extruder_switch_height label" msgid "Z Hop After Extruder Switch Height" -msgstr "Z-Sprung nach Extruder-Schalterhöhe" +msgstr "Z-Sprung Höhe nach Extruder-Wechsel" #: fdmprinter.def.json msgctxt "retraction_hop_after_extruder_switch_height description" msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Schalter." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Wechsel." #: fdmprinter.def.json msgctxt "cooling label" @@ -3652,7 +3721,7 @@ msgstr "Zickzack" #: fdmprinter.def.json msgctxt "support_pattern option cross" msgid "Cross" -msgstr "Quer" +msgstr "Kreuz" #: fdmprinter.def.json msgctxt "support_pattern option gyroid" @@ -4821,7 +4890,7 @@ msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Ma #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" -msgstr "X-Position für Einzugsturm" +msgstr "X-Position des Einzugsturm" #: fdmprinter.def.json msgctxt "prime_tower_position_x description" @@ -4891,7 +4960,7 @@ msgstr "Der Abstand des Sicherschutzes zum gedruckten Objekt in den X/Y-Richtung #: fdmprinter.def.json msgctxt "switch_extruder_retraction_amount label" msgid "Nozzle Switch Retraction Distance" -msgstr "Düsenschalter Einzugsabstand" +msgstr "Düsenwechsel Einzugsabstand" #: fdmprinter.def.json msgctxt "switch_extruder_retraction_amount description" @@ -4901,7 +4970,7 @@ msgstr "Der Wert für den Einzug beim Umstellen der Extruder: 0 einstellen, um k #: fdmprinter.def.json msgctxt "switch_extruder_retraction_speeds label" msgid "Nozzle Switch Retraction Speed" -msgstr "Düsenschalter Rückzugsgeschwindigkeit" +msgstr "Düsenwechsel Rückzugsgeschwindigkeit" #: fdmprinter.def.json msgctxt "switch_extruder_retraction_speeds description" @@ -4911,22 +4980,22 @@ msgstr "Die Geschwindigkeit, mit der das Filament zurückgezogen wird. Eine höh #: fdmprinter.def.json msgctxt "switch_extruder_retraction_speed label" msgid "Nozzle Switch Retract Speed" -msgstr "Düsenschalter Rückzuggeschwindigkeit" +msgstr "Düsenwechsel Rückzuggeschwindigkeit" #: fdmprinter.def.json msgctxt "switch_extruder_retraction_speed description" msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenschaltereinzugs zurückgezogen wird." +msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgezogen wird." #: fdmprinter.def.json msgctxt "switch_extruder_prime_speed label" msgid "Nozzle Switch Prime Speed" -msgstr "Düsenschalter Einzugsgeschwindigkeit (Zurückschieben)" +msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" #: fdmprinter.def.json msgctxt "switch_extruder_prime_speed description" msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenschaltereinzugs zurückgeschoben wird." +msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgeschoben wird." #: fdmprinter.def.json msgctxt "switch_extruder_extra_prime_amount label" @@ -5135,7 +5204,7 @@ msgstr "Mindestbreite der Form" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." +msgid "The minimal distance between the outside of the mold and the outside of the model." msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells." #: fdmprinter.def.json @@ -5216,7 +5285,7 @@ msgstr "Durch Spiralisieren wird die Z-Bewegung der äußeren Kante geglättet. #: fdmprinter.def.json msgctxt "smooth_spiralized_contours label" msgid "Smooth Spiralized Contours" -msgstr "Spiralisieren der äußeren Konturen glätten" +msgstr "Glätten der spiralisierten Kontur" #: fdmprinter.def.json msgctxt "smooth_spiralized_contours description" @@ -5303,6 +5372,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Zickzack" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Gleichmäßige Reihenfolge oben" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Obere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in einer einzigen Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -5506,17 +5585,17 @@ msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, #: fdmprinter.def.json msgctxt "cross_infill_pocket_size label" msgid "Cross 3D Pocket Size" -msgstr "Größe 3D-Quertasche" +msgstr "Größe 3D-Kreuztasche" #: fdmprinter.def.json msgctxt "cross_infill_pocket_size description" msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Quermuster bei Höhen, in denen sich das Muster selbst berührt." +msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Kreuzmuster bei Höhen, in denen sich das Muster selbst berührt." #: fdmprinter.def.json msgctxt "cross_infill_density_image label" msgid "Cross Infill Density Image" -msgstr "Querfülldichte Bild" +msgstr "Kreuzfülldichte Bild" #: fdmprinter.def.json msgctxt "cross_infill_density_image description" @@ -5526,7 +5605,7 @@ msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimal #: fdmprinter.def.json msgctxt "cross_support_density_image label" msgid "Cross Fill Density Image for Support" -msgstr "Querfülldichte Bild für Stützstruktur" +msgstr "Kreuzfülldichte Bild für Stützstruktur" #: fdmprinter.def.json msgctxt "cross_support_density_image description" @@ -6402,6 +6481,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maximaler Vorschub" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Tri-Hexagon-, Würfel-, Octahedral-, Viertelwürfel-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Gyroid-, Würfel-, Viertelwürfel- und achtflächige Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen. Die Einstellung Blitz versucht, die Füllung zu minimieren, indem nur die (internen) Dächer des Objekts gestützt werden. Der ‚gültige‘ Prozentsatz der Füllung bezieht sich daher nur auf die jeweilige Ebene unter dem zu stützenden Bereich des Modells." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "Der Unterschied, den eine Blitz-Füllschicht zu der unmittelbar darüber liegenden Schicht haben kann, wenn es um den Beschnitt der äußeren Enden von Bäumen geht. Gemessen in dem Winkel, den die Schichtstärke vorgibt." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "Die veränderte Position, die eine Schicht der Blitz-Füllung zu der unmittelbar darüber liegenden Schicht haben kann, wenn es um das Ausrunden der äußeren Enden von Bäumen geht. Gemessen als Winkel der Zweige." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Tri-Hexagon-, Würfel-, Octahedral-, Viertelwürfel-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Gyroid-, Würfel-, Viertelwürfel- und Octahedral-Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Extrusion führen." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Bei Nicht-Null verwenden die Combing-Fahrbewegungen, die länger als die Distanz sind, die Einziehfunktion." @@ -6872,7 +6987,7 @@ msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angew #~ msgctxt "infill_pattern description" #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Tri-Hexagon-, Würfel-, Octahedral-, Viertelwürfel-, Quer- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Würfel-, Viertelwürfel- und Octahedral-Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen." +#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Tri-Hexagon-, Würfel-, Octahedral-, Viertelwürfel-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Würfel-, Viertelwürfel- und Octahedral-Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen." #~ msgctxt "infill_pattern option concentric_3d" #~ msgid "Concentric 3D" @@ -6944,11 +7059,11 @@ msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angew #~ msgctxt "cross_infill_apply_pockets_alternatingly label" #~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "3D-Quertaschen abwechseln" +#~ msgstr "3D-Kreuztaschen abwechseln" #~ msgctxt "cross_infill_apply_pockets_alternatingly description" #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Wenden Sie Taschen nur in der Hälfte der Überkreuzungen im 3D-Quermuster an und wechseln Sie die Position der Taschen zwischen den Höhen ab, in denen sich das Muster selbst berührt." +#~ msgstr "Wenden Sie Taschen nur in der Hälfte der Überkreuzungen im 3D-Kreuzmuster an und wechseln Sie die Position der Taschen zwischen den Höhen ab, in denen sich das Muster selbst berührt." #~ msgctxt "infill_hollow label" #~ msgid "Hollow Out Objects" diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 08bb506928..62ffb7e3f7 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 15:15+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2021-11-08 11:48+0100\n" "Last-Translator: Lionbridge \n" "Language-Team: \n" "Language: es_ES\n" @@ -15,182 +15,451 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconocido" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Copia de seguridad" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impresoras en red disponibles" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "No reemplazado" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "Se ha producido el siguiente error al intentar restaurar una copia de seguridad de Cura:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Sincronice los perfiles de material con sus impresoras antes de comenzar a imprimir." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Nuevos materiales instalados" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Sincronizar materiales" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Más información" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "No se pudo guardar el archivo de material en {}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Se ha producido un error al guardar el archivo de material" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Error desconocido." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "La altura del volumen de impresión se ha reducido debido al valor del ajuste «Secuencia de impresión» para evitar que el caballete colisione con los modelos impresos." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volumen de impresión" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "No reemplazado" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconocido" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impresoras en red disponibles" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visual" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "El perfil visual está diseñado para imprimir prototipos y modelos visuales con la intención de obtener una alta calidad visual y de superficies." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias más precisas." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Boceto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Perfiles personalizados" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Todos los tipos compatibles ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos los archivos (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visual" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "El perfil visual está diseñado para imprimir prototipos y modelos visuales con la intención de obtener una alta calidad visual y de superficies." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias más precisas." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Boceto" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Material personalizado" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Fallo de inicio de sesión" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Buscando nueva ubicación para los objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Buscando ubicación" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "No se puede encontrar la ubicación" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Error al crear un archivo de materiales para sincronizarlo con las impresoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Copia de seguridad" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Error al cargar el archivo de materiales para sincronizarlo con las impresoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "La respuesta de Digital Factory parece estar dañada." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "A la respuesta de Digital Factory le falta información importante." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "Se ha producido el siguiente error al intentar restaurar una copia de seguridad de Cura:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Error al conectarse con Digital Factory para sincronizar los materiales con algunas de las impresoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Error al conectarse con Digital Factory." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Cargando máquinas..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Configurando preferencias...." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Iniciando la máquina activa..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Iniciando el administrador de la máquina..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Iniciando el volumen de impresión..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Configurando escena..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Cargando interfaz..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Iniciando el motor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "La altura del volumen de impresión se ha reducido debido al valor del ajuste «Secuencia de impresión» para evitar que el caballete colisione con los modelos impresos." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volumen de impresión" +msgid "Warning" +msgstr "Advertencia" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Error" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Omitir" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Cerrar" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Siguiente" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Finalizar" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Agregar" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "N.º de grupo {group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Pared exterior" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes interiores" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Forro" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Relleno" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Relleno de soporte" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interfaz de soporte" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Soporte" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Falda" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre auxiliar" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Desplazamiento" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retracciones" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Otro" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "No se han podido abrir las notas de la versión." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura no puede iniciarse" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +474,32 @@ msgstr "" "

    Envíenos el informe de errores para que podamos solucionar el problema.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Enviar informe de errores a Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar informe de errores detallado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostrar carpeta de configuración" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Realizar copia de seguridad y restablecer configuración" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Informe del accidente" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,676 +510,641 @@ msgstr "" "

    Utilice el botón \"Enviar informe\" para publicar automáticamente el informe de errores en nuestros servidores.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Información del sistema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconocido" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versión de Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Idioma de Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Idioma del sistema operativo" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versión Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versión PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Aún no se ha inicializado
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versión de OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Proveedor de OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Representador de OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Rastreabilidad de errores" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Enviar informe" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Cargando máquinas..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Configurando preferencias...." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Iniciando la máquina activa..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Iniciando el administrador de la máquina..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Iniciando el volumen de impresión..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Configurando escena..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Cargando interfaz..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Iniciando el motor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Advertencia" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Error" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Multiplicar y colocar objetos" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Colocando objetos" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Colocando objeto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "No se ha podido leer la respuesta." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "El estado indicado no es correcto." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Conceda los permisos necesarios al autorizar esta aplicación." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Se ha producido un problema al intentar iniciar sesión, vuelva a intentarlo." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "No se puede acceder al servidor de cuentas de Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Error de inicio de sesión" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "El estado indicado no es correcto." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Se agotó el tiempo de autenticación con el servidor de la cuenta." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Conceda los permisos necesarios al autorizar esta aplicación." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Se ha producido un problema al intentar iniciar sesión, vuelva a intentarlo." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "No se ha podido leer la respuesta." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Multiplicar y colocar objetos" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Colocando objetos" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Colocando objeto" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "No compatible" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Tobera" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Ajustes actualizados" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extrusores deshabilitados" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "El archivo ya existe" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL del archivo no válida:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Error al exportar el perfil a {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Error al exportar el perfil a {0}: Error en el complemento de escritura." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado a {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportación correcta" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Error al importar el perfil de {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "No se puede importar el perfil de {0} antes de añadir una impresora." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "No hay ningún perfil personalizado para importar en el archivo {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Este perfil {0} contiene datos incorrectos, no se han podido importar." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado correctamente." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "El archivo {0} no contiene ningún perfil válido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Al perfil le falta un tipo de calidad." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Todavía no hay ninguna impresora activa." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "No se puede añadir el perfil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Advertencia: el perfil no es visible porque su tipo de calidad '{0}' no está disponible para la configuración actual. Cambie a una combinación de material/tobera que pueda utilizar este tipo de calidad." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "No compatible" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Tobera" +msgid "Per Model Settings" +msgstr "Ajustes por modelo" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar ajustes por modelo" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil de cura" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Archivo X3D" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Se ha producido un error al intentar restaurar su copia de seguridad." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ajustes actualizados" +msgid "Backups" +msgstr "Copias de seguridad" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusores deshabilitados" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Se ha producido un error al cargar su copia de seguridad." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Agregar" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Creando copia de seguridad..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Finalizar" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Se ha producido un error al crear la copia de seguridad." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Cargando su copia de seguridad..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Su copia de seguridad ha terminado de cargarse." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "La copia de seguridad excede el tamaño máximo de archivo." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Administrar copias de seguridad" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ajustes de la máquina" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Bloqueador de soporte" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Cree un volumen que no imprima los soportes." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Unidad extraíble" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Guardar en unidad extraíble" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "N.º de grupo {group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Guardar en unidad extraíble {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Pared exterior" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "¡No hay formatos de archivo disponibles con los que escribir!" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes interiores" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Guardando en unidad extraíble {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Forro" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Relleno" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Relleno de soporte" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interfaz de soporte" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Soporte" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Falda" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre auxiliar" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Desplazamiento" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retracciones" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Otro" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Siguiente" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Omitir" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Cerrar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Asistente del modelo 3D" +msgid "Saving" +msgstr "Guardando" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "No se pudo guardar en {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

    \n" -"

    {model_names}

    \n" -"

    Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

    \n" -"

    Ver guía de impresión de calidad

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "No se pudo guardar en unidad extraíble {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Guardado en unidad extraíble {0} como {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Archivo guardado" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Expulsar" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Expulsar dispositivo extraíble {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Retirar de forma segura el hardware" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Actualizar firmware" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfiles de Cura 15.04" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "El archivo del proyecto {0} contiene un tipo de máquina desconocida {1}. No se puede importar la máquina, en su lugar, se importarán los modelos." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir archivo de proyecto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "El archivo de proyecto {0} está repentinamente inaccesible: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "No se puede abrir el archivo de proyecto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "El archivo de proyecto {0} está dañado: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "El archivo de proyecto {0} se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Archivo 3MF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "El complemento del Escritor de 3MF está dañado." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "No se puede escribir en el archivo UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "No tiene permiso para escribir el espacio de trabajo aquí." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "El sistema operativo no permite guardar un archivo de proyecto en esta ubicación ni con este nombre de archivo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Error al escribir el archivo 3MF." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Archivo 3MF" +msgid "Ultimaker Format Package" +msgstr "Paquete de formato Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Archivo 3MF del proyecto de Cura" +msgid "G-code File" +msgstr "Archivo GCode" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Archivo AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Copias de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Se ha producido un error al cargar su copia de seguridad." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Creando copia de seguridad..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Se ha producido un error al crear la copia de seguridad." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Cargando su copia de seguridad..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Su copia de seguridad ha terminado de cargarse." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "La copia de seguridad excede el tamaño máximo de archivo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Se ha producido un error al intentar restaurar su copia de seguridad." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Administrar copias de seguridad" +msgid "Preview" +msgstr "Vista previa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Vista de rayos X" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Procesando capas" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Información" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Se ha producido un error inesperado al realizar el corte o slicing. Le rogamos que informe sobre este error en nuestro rastreador de problemas." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Error en el corte" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Informar del error" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Informar de un error en el rastreador de problemas de Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "No se puede segmentar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -923,465 +1157,436 @@ msgstr "" "- Están asignados a un extrusor activado\n" " - No están todos definidos como mallas modificadoras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Procesando capas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Información" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil de cura" +msgid "AMF File" +msgstr "Archivo AMF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "No se pudo acceder a la información actualizada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no tiene la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Nuevo firmware de %s disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Cómo actualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Actualizar firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Archivo GCode comprimido" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter no es compatible con el modo texto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Archivo GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analizar GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Datos de GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Archivo G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter no es compatible con el modo sin texto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Prepare el Gcode antes de la exportación." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagen JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagen JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagen PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagen BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagen GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfiles de Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes de la máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Supervisar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ajustes por modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar ajustes por modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Posprocesamiento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modificar GCode" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Impresión USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Imprimir mediante USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir mediante USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Conectado mediante USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impresión en curso" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Vista previa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Guardar en unidad extraíble" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Guardar en unidad extraíble {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "¡No hay formatos de archivo disponibles con los que escribir!" +msgid "Parsing G-code" +msgstr "Analizar GCode" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Guardando en unidad extraíble {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Guardando" +msgid "G-code Details" +msgstr "Datos de GCode" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "No se pudo guardar en {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "No se pudo guardar en unidad extraíble {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Guardado en unidad extraíble {0} como {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Archivo guardado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Expulsar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Expulsar dispositivo extraíble {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Retirar de forma segura el hardware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unidad extraíble" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Vista de simulación" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "No se muestra nada porque primero hay que cortar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "No hay capas para mostrar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "No volver a mostrar este mensaje" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Vista de capas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "Las áreas resaltadas indican que faltan superficies o son inusuales. Corrija los errores en el modelo y vuelva a abrirlo en Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Errores de modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Más información" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Vista de sólidos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Bloqueador de soporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Cree un volumen que no imprima los soportes." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Se han detectado cambios desde su cuenta de Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Rechazar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Estoy de acuerdo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acuerdo de licencia de complemento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rechazar y eliminar de la cuenta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Error al descargar los complementos {}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "Archivo G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF binario" +msgid "JPG Image" +msgstr "Imagen JPG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF incrustado JSON" +msgid "JPEG Image" +msgstr "Imagen JPEG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" +msgid "PNG Image" +msgstr "Imagen PNG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange comprimido" +msgid "BMP Image" +msgstr "Imagen BMP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Paquete de formato Ultimaker" +msgid "GIF Image" +msgstr "Imagen GIF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "No se puede escribir en el archivo UFP:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Nivelar placa de impresión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Seleccionar actualizaciones" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter no es compatible con el modo texto." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "No se pudo acceder a la información actualizada." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no dispone de la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nuevo firmware de %s estable disponible" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Cómo actualizar" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "No se puede leer el archivo de datos de ejemplo." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizando..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Se han detectado cambios desde su cuenta de Ultimaker" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Rechazar y eliminar de la cuenta" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Error al descargar los complementos {}" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Rechazar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Estoy de acuerdo" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Acuerdo de licencia de complemento" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter no es compatible con el modo sin texto." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Prepare el Gcode antes de la exportación." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Vista de simulación" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "No se muestra nada porque primero hay que cortar." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "No hay capas para mostrar" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "No volver a mostrar este mensaje" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Vista de capas" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Imprimir a través de la red" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprime a través de la red" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Conectado a través de la red" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "mañana" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "hoy" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Conectar a través de la red" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Espere hasta que se envíe el trabajo actual." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Error de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "El trabajo de impresión se ha enviado correctamente a la impresora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Fecha de envío" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Actualice su impresora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "La cola de trabajos de impresión está llena. La impresora no puede aceptar trabajos nuevos." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Cola llena" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Enviando trabajo de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Cargando el trabajo de impresión a la impresora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Enviando materiales a la impresora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "No se han podido cargar los datos en la impresora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Error de red" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "No es un host de grupo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Su impresora {printer_name} podría estar conectada a través de la nube.\n" +" Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "¿Está preparado para la impresión en la nube?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Empezar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Más información" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir mediante cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir mediante cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado mediante cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Supervisar la impresión" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Haga un seguimiento de la impresión en Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "Se ha detectado una nueva impresora en su cuenta de Ultimaker" msgstr[1] "Se han detectado nuevas impresoras en su cuenta de Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Añadiendo la impresora {name} ({model}) de su cuenta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1389,71 +1594,71 @@ msgid_plural "... and {0} others" msgstr[0] "... y {0} más" msgstr[1] "... y {0} más" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Impresoras añadidas desde Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "La conexión a la nube no está disponible para una impresora" msgstr[1] "La conexión a la nube no está disponible para algunas impresoras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "Esta impresora no está vinculada a Digital Factory:" msgstr[1] "Estas impresoras no están vinculadas a Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para establecer una conexión, visite {website_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Mantener las configuraciones de la impresora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Eliminar impresoras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} se eliminará hasta la próxima sincronización de la cuenta." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "¿Seguro que desea eliminar {printer_name} temporalmente?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "¿Eliminar impresoras?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1469,768 +1674,1645 @@ msgstr[1] "" "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n" "¿Seguro que desea continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF binario" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF incrustado JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange comprimido" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Envíe y supervise sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "Las áreas resaltadas indican que faltan superficies o son inusuales. Corrija los errores en el modelo y vuelva a abrirlo en Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Conectar con Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Empezar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Actualice su impresora" +msgid "Model Errors" +msgstr "Errores de modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviando materiales a la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "No es un host de grupo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Espere hasta que se envíe el trabajo actual." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Error de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "No se han podido cargar los datos en la impresora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Error de red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Enviando trabajo de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Cargando el trabajo de impresión a la impresora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "La cola de trabajos de impresión está llena. La impresora no puede aceptar trabajos nuevos." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Cola llena" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "El trabajo de impresión se ha enviado correctamente a la impresora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Fecha de envío" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir a través de la red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprime a través de la red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Conectado a través de la red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Conectar a través de la red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "mañana" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "hoy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impresión USB" +msgid "Solid view" +msgstr "Vista de sólidos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir mediante USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Error al escribir el archivo 3MF." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir mediante USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "El complemento del Escritor de 3MF está dañado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Aún no hay espacio de trabajo en el que escribir. Añada una impresora primero." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "No tiene permiso para escribir el espacio de trabajo aquí." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "El sistema operativo no permite guardar un archivo de proyecto en esta ubicación ni con este nombre de archivo." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Archivo 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Archivo 3MF del proyecto de Cura" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Supervisar" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Asistente del modelo 3D" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Conectado mediante USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

    \n" +"

    {model_names}

    \n" +"

    Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

    \n" +"

    Ver guía de impresión de calidad

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?" +msgid "Mesh Type" +msgstr "Tipo de malla" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impresión en curso" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como soporte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar los ajustes de las superposiciones" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "No es compatible con superposiciones" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Archivo X3D" +msgid "Infill mesh only" +msgstr "Solo malla de relleno" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista de rayos X" +msgid "Cutting mesh" +msgstr "Cortar malla" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarlos." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Seleccionar ajustes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Seleccionar ajustes o personalizar este modelo" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostrar todo" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versión de Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiales" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfiles" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Complementos" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "¿Desea obtener más información?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Realizar copia de seguridad ahora" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Copia de seguridad automática" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Eliminar copia de seguridad" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar copia de seguridad" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Iniciar sesión" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Mis copias de seguridad" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante la fase de vista previa, solo se mostrarán 5 copias de seguridad. Elimine una copia de seguridad para ver copias de seguridad antiguas." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ajustes de la impresora" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (anchura)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (profundidad)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (altura)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma de la placa de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origen en el centro" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Plataforma calentada" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volumen de impresión calentado" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Tipo de GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ajustes del cabezal de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura del puente" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar compensaciones del extrusor a GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Iniciar GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Finalizar GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes de la tobera" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamaño de la tobera" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diámetro del material compatible" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Desplazamiento de la tobera sobre el eje X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Desplazamiento de la tobera sobre el eje Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número de ventilador de enfriamiento" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "GCode inicial del extrusor" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "GCode final del extrusor" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impresora" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Actualizar firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "El firmware es la parte del software que se ejecuta directamente en la impresora 3D. Este firmware controla los motores de pasos, regula la temperatura y, finalmente, hace que funcione la impresora." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Actualización de firmware automática" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Cargar firmware personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Seleccionar firmware personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Actualización del firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Actualización del firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Actualización del firmware completada." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Abrir proyecto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Actualizar existente" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Crear nuevo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumen: proyecto de Cura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Ajustes de la impresora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "¿Cómo debería solucionarse el conflicto en la máquina?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Tipo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Grupo de impresoras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Ajustes del perfil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "¿Cómo debería solucionarse el conflicto en el perfil?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Nombre" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "No está en el perfil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 sobrescrito" msgstr[1] "%1 sobrescritos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivado de" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 sobrescrito" msgstr[1] "%1, %2 sobrescritos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Ajustes del material" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "¿Cómo debería solucionarse el conflicto en el material?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Visibilidad de los ajustes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Modo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Ajustes visibles:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 de un total de %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Abrir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "¿Desea obtener más información?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Realizar copia de seguridad ahora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Copia de seguridad automática" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Eliminar copia de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar copia de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versión de Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiales" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfiles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" +msgid "Post Processing Plugin" +msgstr "Complemento de posprocesamiento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mis copias de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante la fase de vista previa, solo se mostrarán 5 copias de seguridad. Elimine una copia de seguridad para ver copias de seguridad antiguas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Iniciar sesión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Actualizar firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "El firmware es la parte del software que se ejecuta directamente en la impresora 3D. Este firmware controla los motores de pasos, regula la temperatura y, finalmente, hace que funcione la impresora." +msgid "Post Processing Scripts" +msgstr "Secuencias de comandos de posprocesamiento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Añadir secuencia de comando" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras." +msgid "Settings" +msgstr "Ajustes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Actualización de firmware automática" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Cambiar las secuencias de comandos de posprocesamiento." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Cargar firmware personalizado" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "La siguiente secuencia de comandos está activa:" +msgstr[1] "Las siguientes secuencias de comandos están activas:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Seleccionar firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Actualización del firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Actualización del firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Actualización del firmware completada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Convertir imagen..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "La distancia máxima de cada píxel desde la \"Base\"." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Altura (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "La altura de la base desde la placa de impresión en milímetros." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "La anchura en milímetros en la placa de impresión." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Anchura (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "La profundidad en milímetros en la placa de impresión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profundidad (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Para las litofanías, los píxeles oscuros deben coincidir con ubicaciones más gruesas para bloquear la entrada de más luz. En los mapas de altura, los píxeles más claros se corresponden con un terreno más alto, por lo que dichos píxeles deben coincidir con ubicaciones más gruesas en el modelo 3D generado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Cuanto más oscuro más alto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Cuanto más claro más alto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Para las litofanías hay disponible un modelo logarítmico simple para la translucidez. En los mapas de altura, los valores de los píxeles corresponden a las alturas linealmente." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Lineal" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Translucidez" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "El porcentaje de luz que penetra en una impresión con un grosor de 1 milímetro. Bajar este valor aumenta el contraste en las regiones oscuras y disminuye el contraste en las regiones claras de la imagen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Transmitancia de 1 mm (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "La cantidad de suavizado que se aplica a la imagen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Suavizado" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "Aceptar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Seleccione cualquier actualización de Ultimaker Original" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelación de la placa de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Ahora puede ajustar la placa de impresión para asegurarse de que sus impresiones salgan muy bien. Al hacer clic en 'Mover a la siguiente posición', la tobera se trasladará a las diferentes posiciones que se pueden ajustar." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Para cada posición: inserte una hoja de papel debajo de la tobera y ajuste la altura de la placa de impresión. La altura de la placa de impresión es correcta cuando el papel queda ligeramente sujeto por la punta de la tobera." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Iniciar nivelación de la placa de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Mover a la siguiente posición" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Más información sobre la recopilación de datos anónimos" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se comparten:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "No deseo enviar datos anónimos" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir el envío de datos anónimos" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Marketplace" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Salir de %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Instalar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Instalado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Prémium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Ir a Web Marketplace" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Buscar materiales" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Compatibilidad" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Máquina" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Placa de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Soporte" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Calidad" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Especificaciones técnicas" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Especificaciones de seguridad" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Directrices de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Sitio web" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Inicie sesión para realizar la instalación o la actualización" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Comprar bobinas de material" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Actualizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Actualizando" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Actualizado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Atrás" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Impresora" +msgid "Plugins" +msgstr "Complementos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes de la tobera" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiales" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Instalado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamaño de la tobera" +msgid "Will install upon restarting" +msgstr "Se instalará después de reiniciar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Inicie sesión para realizar la actualización" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Degradar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Desinstalar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Contribuciones de la comunidad" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diámetro del material compatible" +msgid "Community Plugins" +msgstr "Complementos de la comunidad" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Desplazamiento de la tobera sobre el eje X" +msgid "Generic Materials" +msgstr "Materiales genéricos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Buscando paquetes..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Desplazamiento de la tobera sobre el eje Y" +msgid "Website" +msgstr "Sitio web" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número de ventilador de enfriamiento" +msgid "Email" +msgstr "Correo electrónico" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "GCode inicial del extrusor" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Inicie sesión para obtener complementos y materiales verificados para Ultimaker Cura Enterprise" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "GCode final del extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (anchura)" +msgid "Version" +msgstr "Versión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (profundidad)" +msgid "Last updated" +msgstr "Última actualización" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (altura)" +msgid "Brand" +msgstr "Marca" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma de la placa de impresión" +msgid "Downloads" +msgstr "Descargas" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Complementos instalados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "No se ha instalado ningún complemento." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Materiales instalados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "No se ha instalado ningún material." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Complementos agrupados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Materiales agrupados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Origen en el centro" +msgid "You need to accept the license to install the package" +msgstr "Tiene que aceptar la licencia para instalar el paquete" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Cambios desde su cuenta" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Descartar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Siguiente" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Plataforma calentada" +msgid "The following packages will be added:" +msgstr "Se añadirán los siguientes paquetes:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Volumen de impresión calentado" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Confirmar desinstalación" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Va a desinstalar materiales o perfiles que todavía están en uso. Si confirma la desinstalación, los siguientes materiales o perfiles volverán a sus valores predeterminados." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Materiales" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Perfiles" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Confirmar" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Tipo de GCode" +msgid "Color scheme" +msgstr "Combinación de colores" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes del cabezal de impresión" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Color del material" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de línea" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidad" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Grosor de la capa" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Ancho de línea" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Flujo" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X mín." +msgid "Compatibility Mode" +msgstr "Modo de compatibilidad" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y mín." +msgid "Travels" +msgstr "Desplazamientos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X máx." +msgid "Helpers" +msgstr "Asistentes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y máx." +msgid "Shell" +msgstr "Perímetro" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura del puente" +msgid "Infill" +msgstr "Relleno" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de extrusores" +msgid "Starts" +msgstr "Inicios" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar compensaciones del extrusor a GCode" +msgid "Only Show Top Layers" +msgstr "Mostrar solo capas superiores" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Iniciar GCode" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Mostrar cinco capas detalladas en la parte superior" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Finalizar GCode" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Superior o inferior" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Pared interior" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "mín" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "máx" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Administrar impresora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Vidrio" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Las transmisiones de la cámara web para impresoras en la nube no se pueden ver en Ultimaker Cura. Haga clic en \"Administrar impresora\" para ir a Ultimaker Digital Factory y ver esta cámara web." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Cargando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "No disponible" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "No se puede conectar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Sin actividad" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Imprimiendo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Sin título" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anónimo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Debe cambiar la configuración" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Detalles" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impresora no disponible" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Primera disponible" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "En cola" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gestionar en el navegador" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabajos de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Tiempo de impresión total" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Esperando" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir a través de la red" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Selección de la impresora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Cambios de configuración" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Anular" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:" +msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Cambiar material %1, de %2 a %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Cargar %3 como material %1 (no se puede anular)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Cambiar print core %1, de %2 a %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Cambiar la placa de impresión a %1 (no se puede anular)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Al sobrescribir la configuración se usarán los ajustes especificados con la configuración de impresora existente. Esto podría provocar un fallo en la impresión." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Aluminio" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminado" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Cancelando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Cancelado" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Error" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pausando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "En pausa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Reanudando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Acción requerida" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina el %1 a las %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Conectar con la impresora en red" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Seleccione la impresora en la lista siguiente:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Eliminar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Actualizar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Si la impresora no aparece en la lista, lea la guía de solución de problemas de impresión y red" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Versión de firmware" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Dirección" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impresora no está configurada para alojar un grupo de impresoras." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impresora aloja un grupo de %1 impresoras." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "La impresora todavía no ha respondido en esta dirección." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Conectar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Dirección IP no válida" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Introduzca una dirección IP válida." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Dirección de la impresora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Introduzca la dirección IP de la impresora en la red." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Mover al principio" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Borrar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Reanudar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Pausando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Reanudando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Pausar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Cancelando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Cancelar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "¿Seguro que desea mover %1 al principio de la cola?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Mover trabajo de impresión al principio" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "¿Seguro que desea borrar %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Borrar trabajo de impresión" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "¿Seguro que desea cancelar %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Cancela la impresión" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2243,1413 +3325,435 @@ msgstr "" "- Compruebe que la impresora está conectada a la red.\n" "- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Conecte su impresora a la red." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Ver manuales de usuario en línea" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Para supervisar la copia impresa desde Cura, conecte la impresora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de malla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como soporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar los ajustes de las superposiciones" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "No es compatible con superposiciones" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Solo malla de relleno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Cortar malla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Seleccionar ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Seleccionar ajustes o personalizar este modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostrar todo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Complemento de posprocesamiento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Secuencias de comandos de posprocesamiento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Añadir secuencia de comando" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Cambiar las secuencias de comandos de posprocesamiento." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarlos." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "La siguiente secuencia de comandos está activa:" -msgstr[1] "Las siguientes secuencias de comandos están activas:" +msgid "3D View" +msgstr "Vista en 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Combinación de colores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Color del material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de línea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Grosor de la capa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Ancho de línea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Flujo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de compatibilidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Desplazamientos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Asistentes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Relleno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Inicios" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Mostrar solo capas superiores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Mostrar cinco capas detalladas en la parte superior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superior o inferior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Pared interior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "mín." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "máx." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Más información sobre la recopilación de datos anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se comparten:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "No deseo enviar datos anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir el envío de datos anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Atrás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Placa de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Soporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Calidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Especificaciones técnicas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Especificaciones de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Directrices de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Sitio web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Instalado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Inicie sesión para realizar la instalación o la actualización" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Comprar bobinas de material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Actualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Actualizando" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Actualizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Prémium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Ir a Web Marketplace" +msgid "Front View" +msgstr "Vista frontal" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Vista superior" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Vista del lado izquierdo" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Vista del lado derecho" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Buscar materiales" +msgid "Object list" +msgstr "Lista de objetos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Salir de %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiales" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Instalado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Se instalará después de reiniciar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Inicie sesión para realizar la actualización" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Degradar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Instalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Cambios desde su cuenta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Descartar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Siguiente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Se añadirán los siguientes paquetes:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Confirmar desinstalación" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Va a desinstalar materiales o perfiles que todavía están en uso. Si confirma la desinstalación, los siguientes materiales o perfiles volverán a sus valores predeterminados." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiales" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Perfiles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Confirmar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Tiene que aceptar la licencia para instalar el paquete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Sitio web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "Correo electrónico" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Versión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Última actualización" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marca" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Descargas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Contribuciones de la comunidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Complementos de la comunidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiales genéricos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Complementos instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "No se ha instalado ningún complemento." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Materiales instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "No se ha instalado ningún material." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Complementos agrupados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Materiales agrupados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Buscando paquetes..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Inicie sesión para obtener complementos y materiales verificados para Ultimaker Cura Enterprise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelación de la placa de impresión" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Archivo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Ahora puede ajustar la placa de impresión para asegurarse de que sus impresiones salgan muy bien. Al hacer clic en 'Mover a la siguiente posición', la tobera se trasladará a las diferentes posiciones que se pueden ajustar." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Edición" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Para cada posición: inserte una hoja de papel debajo de la tobera y ajuste la altura de la placa de impresión. La altura de la placa de impresión es correcta cuando el papel queda ligeramente sujeto por la punta de la tobera." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Ver" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar nivelación de la placa de impresión" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "A&justes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mover a la siguiente posición" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensiones" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Seleccione cualquier actualización de Ultimaker Original" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Pre&ferencias" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "A&yuda" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar con la impresora en red" +msgid "New project" +msgstr "Nuevo proyecto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Seleccione la impresora en la lista siguiente:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Eliminar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Actualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Si la impresora no aparece en la lista, lea la guía de solución de problemas de impresión y red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versión de firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Dirección" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impresora no está configurada para alojar un grupo de impresoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impresora aloja un grupo de %1 impresoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "La impresora todavía no ha respondido en esta dirección." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Dirección IP no válida" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Introduzca una dirección IP válida." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Dirección de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Introduzca la dirección IP de la impresora en la red." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Cambios de configuración" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Anular" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:" -msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Cambiar material %1, de %2 a %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Cargar %3 como material %1 (no se puede anular)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Cambiar print core %1, de %2 a %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Cambiar la placa de impresión a %1 (no se puede anular)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Al sobrescribir la configuración se usarán los ajustes especificados con la configuración de impresora existente. Esto podría provocar un fallo en la impresión." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Vidrio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Mover al principio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Borrar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Reanudar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Reanudando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Cancelando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "¿Seguro que desea mover %1 al principio de la cola?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Mover trabajo de impresión al principio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "¿Seguro que desea borrar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Borrar trabajo de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "¿Seguro que desea cancelar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Cancela la impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Administrar impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Cargando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "No disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "No se puede conectar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Sin actividad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimiendo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Sin título" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anónimo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Debe cambiar la configuración" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impresora no disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Primera disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Cancelado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Cancelando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "En pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Reanudando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Acción requerida" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina el %1 a las %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "En cola" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gestionar en el navegador" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabajos de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Tiempo de impresión total" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir a través de la red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Selección de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Iniciar sesión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Inicie sesión en la plataforma Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Añada perfiles de materiales y complementos del Marketplace \n" -"- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales \n" -"- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Cree una cuenta gratuita de Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Comprobando..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Cuenta sincronizada" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Se ha producido un error..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Instalar actualizaciones pendientes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Buscar actualizaciones de la cuenta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Última actualización: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Cuenta de Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Cerrar sesión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Ningún cálculo de tiempo disponible" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Ningún cálculo de costes disponible" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Vista previa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Estimación de tiempos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Estimación de material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Segmentando..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "No se puede segmentar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Procesando" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Segmentación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Iniciar el proceso de segmentación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mostrar Guía de resolución de problemas en línea" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Alternar pantalla completa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Salir de modo de pantalla completa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Des&hacer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Rehacer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Salir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Vista en 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Vista frontal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Vista superior" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Vista inferior" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Vista del lado izquierdo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Vista del lado derecho" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configurar Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Agregar impresora..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Adm&inistrar impresoras ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Administrar materiales..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Añadir más materiales de Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Descartar cambios actuales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Administrar perfiles..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Mostrar &documentación en línea" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Informar de un &error" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Novedades" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Acerca de..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Eliminar selección" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centrar selección" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Multiplicar selección" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Eliminar modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ce&ntrar modelo en plataforma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "A&grupar modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Desagrupar modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Co&mbinar modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Multiplicar modelo..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Seleccionar todos los modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Borrar placa de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Recargar todos los modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Organizar todos los modelos en todas las placas de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Organizar todos los modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Organizar selección" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Restablecer las posiciones de todos los modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Restablecer las transformaciones de todos los modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Abrir archivo(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Nuevo proyecto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Mostrar carpeta de configuración" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configurar visibilidad de los ajustes..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este paquete se instalará después de reiniciar." +msgid "Time estimation" +msgstr "Estimación de tiempos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "General" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimación de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impresoras" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfiles" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Ningún cálculo de tiempo disponible" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Cerrando %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Ningún cálculo de costes disponible" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "¿Seguro que desea salir de %1?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Vista previa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir archivo(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "Agregar una impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar paquete" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Agregar una impresora en red" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir archivo(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Agregar una impresora fuera de red" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Hemos encontrado uno o más archivos de GCode entre los archivos que ha seleccionado. Solo puede abrir los archivos GCode de uno en uno. Si desea abrir un archivo GCode, seleccione solo uno." +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Añadir una impresora a la nube" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Agregar impresora" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Esperando la respuesta de la nube" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "¿No se han encontrado impresoras en su cuenta?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "Las siguientes impresoras de su cuenta se han añadido en Cura:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Añadir impresora manualmente" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Agregar impresora por dirección IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Introduzca la dirección IP de su impresora." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Agregar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "No se ha podido conectar al dispositivo." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "¿No puede conectarse a la impresora Ultimaker?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "La impresora todavía no ha respondido en esta dirección." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Atrás" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Conectar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Acuerdo de usuario" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Rechazar y cerrar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Le damos la bienvenida a Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"Siga estos pasos para configurar\n" +"Ultimaker Cura. Solo le llevará unos minutos." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Empezar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Inicie sesión en la plataforma Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Añada ajustes de material y complementos desde Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Omitir" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Cree una cuenta gratuita de Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Autor del perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Nombre de la impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Asigne un nombre a su impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "No se ha encontrado ninguna impresora en su red." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Actualizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Agregar impresora por IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Añadir impresora a la nube" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Solución de problemas" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Ayúdenos a mejorar Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario, entre otros:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Tipos de máquina" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Uso de material" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Número de segmentos" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Ajustes de impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Los datos recopilados por Ultimaker Cura no contendrán información personal." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Más información" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "Novedades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Vacío" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Notas de la versión" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Acerca de %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "versión: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Solución completa para la impresión 3D de filamento fundido." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3658,183 +3762,204 @@ msgstr "" "Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\n" "Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Interfaz gráfica de usuario (GUI)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Entorno de la aplicación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "Generador de GCode" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Biblioteca de comunicación entre procesos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Lenguaje de programación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "Entorno de la GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Enlaces del entorno de la GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "Biblioteca de enlaces C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Formato de intercambio de datos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Biblioteca de apoyo para cálculos científicos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Biblioteca de apoyo para cálculos más rápidos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Biblioteca de apoyo para gestionar archivos STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Biblioteca de compatibilidad para trabajar con objetos planos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Biblioteca de comunicación en serie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Biblioteca de detección para Zeroconf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Biblioteca de recorte de polígonos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Comprobador de tipo estático para Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Certificados de raíz para validar la fiabilidad del SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Biblioteca de seguimiento de errores de Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Biblioteca de empaquetado de polígonos, desarrollada por Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Enlaces de Python para libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Biblioteca de soporte para el acceso al llavero del sistema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Extensiones Python para Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Fuente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "Iconos SVG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Implementación de la aplicación de distribución múltiple de Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir archivo de proyecto" +msgid "Open file(s)" +msgstr "Abrir archivo(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Hemos encontrado uno o más archivos del proyecto entre los archivos que ha seleccionado. Solo puede abrir los archivos de proyecto de uno en uno. Le recomendamos que solo importe modelos de esos archivos. ¿Desea continuar?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Recordar mi selección" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como proyecto" +msgid "Import all as models" +msgstr "Importar todos como modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Guardar proyecto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 y material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "No mostrar resumen de proyecto al guardar de nuevo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" +msgid "Save" +msgstr "Guardar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Descartar o guardar cambios" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3845,1206 +3970,144 @@ msgstr "" "¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n" "También puede descartar los cambios para cargar los valores predeterminados de'%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Ajustes del perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Cambios actuales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Preguntar siempre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar y no volver a preguntar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Guardar y no volver a preguntar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Descartar los cambios" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Mantener los cambios" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Abrir archivo de proyecto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Hemos encontrado uno o más archivos del proyecto entre los archivos que ha seleccionado. Solo puede abrir los archivos de proyecto de uno en uno. Le recomendamos que solo importe modelos de esos archivos. ¿Desea continuar?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Recordar mi selección" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar todos como modelos" +msgid "Open as project" +msgstr "Abrir como proyecto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Guardar proyecto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 y material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "No mostrar resumen de proyecto al guardar de nuevo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Guardar" +msgid "Import models" +msgstr "Importar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Imprimir modelo seleccionado con %1" -msgstr[1] "Imprimir modelos seleccionados con %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sin título" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Archivo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Edición" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ver" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "A&justes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensiones" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Pre&ferencias" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "A&yuda" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Nuevo proyecto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configuraciones" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Cargando configuraciones disponibles desde la impresora..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Seleccionar configuración" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Configuraciones" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Habilitado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Imprimir modelo seleccionado con:" -msgstr[1] "Imprimir modelos seleccionados con:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar modelo seleccionado" -msgstr[1] "Multiplicar modelos seleccionados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de copias" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Guardar proyecto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar selección..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir archivo(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impresoras de red habilitadas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impresoras locales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &reciente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Guardar proyecto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir como extrusor activo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Deshabilitar extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Ajustes visibles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Contraer todas las categorías" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gestionar visibilidad de los ajustes..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Posición de la cámara" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Vista de cámara" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "P&laca de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "No está conectado a ninguna impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "La impresora no acepta comandos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "En mantenimiento. Compruebe la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Se ha perdido la conexión con la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Imprimiendo..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "En pausa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparando..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Retire la impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Cancelar impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "¿Está seguro de que desea cancelar la impresión?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Se imprime como soporte." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Se han modificado otros modelos que se superponen con este modelo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Se ha modificado la superposición del relleno con este modelo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "No se admiten superposiciones con este modelo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "%1 sobrescrito." -msgstr[1] "%1 sobrescritos." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Interfaz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Moneda:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Segmentar automáticamente al cambiar los ajustes." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Segmentar automáticamente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamiento de la ventanilla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Mostrar voladizos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Resalta las superficies que faltan o son extrañas del modelo usando señales de advertencia. A las trayectorias de herramientas les faltarán a menudo partes de la geometría prevista." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Mostrar errores de modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centrar cámara cuando se selecciona elemento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Invertir la dirección del zoom de la cámara." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "¿Debería moverse el zoom en la dirección del ratón?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Hacer zoom en la dirección del ratón" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Asegúrese de que los modelos están separados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Arrastrar modelos a la placa de impresión de forma automática" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Se muestra el mensaje de advertencia en el lector de GCode." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensaje de advertencia en el lector de GCode" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "¿Debe forzarse el modo de compatibilidad de la capa?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "¿Debería abrirse Cura en el lugar donde se cerró?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar la posición de la ventana al inicio" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "¿Qué tipo de renderizado de cámara debería usarse?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderizado de cámara:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspectiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrir y guardar archivos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizar una sola instancia de Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Escalar modelos de gran tamaño" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Escalar modelos demasiado pequeños" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Seleccionar modelos al abrirlos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Agregar prefijo de la máquina al nombre del trabajo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamiento predeterminado al abrir un archivo del proyecto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Preguntar siempre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Abrir siempre como un proyecto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Importar modelos siempre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Si ha realizado cambios en un perfil y, a continuación, ha cambiado a otro, aparecerá un cuadro de diálogo que le preguntará si desea guardar o descartar los cambios. También puede elegir el comportamiento predeterminado, así ese cuadro de diálogo no volverá a aparecer." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Perfiles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Descartar siempre los ajustes modificados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Transferir siempre los ajustes modificados al nuevo perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidad" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Buscar actualizaciones al iniciar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "¿Deben enviarse datos anónimos sobre la impresión a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP ni otra información de identificación personal." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar información (anónima) de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Más información" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Cambiar nombre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Crear" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Sincronizar con las impresoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar eliminación" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "No se pudo importar el material en %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "El material se ha importado correctamente en %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Se ha producido un error al exportar el material a %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "El material se ha exportado correctamente a %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar todos los materiales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Información" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar cambio de diámetro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Mostrar nombre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Color" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Propiedades" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densidad" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diámetro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Coste del filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso del filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Longitud del filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Coste por metro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desvincular material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Descripción" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Información sobre adherencia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Ajustes de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Crear" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplicado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Crear perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Introduzca un nombre para este perfil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Cambiar nombre de perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Impresora: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Actualizar perfil con ajustes o sobrescrituras actuales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar cambios actuales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Este perfil utiliza los ajustes predeterminados especificados por la impresora, por eso no aparece ningún ajuste o sobrescritura en la lista que se ve a continuación." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Los ajustes actuales coinciden con el perfil seleccionado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ajustes globales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Actual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unidad" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidad de los ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Comprobar todo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Temperatura objetivo del extremo caliente. El extremo caliente se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento del extremo caliente se desactivará." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Temperatura actual de este extremo caliente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Temperatura a la que se va a precalentar el extremo caliente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Precalentar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Caliente el extremo caliente antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que el extremo caliente se caliente para poder imprimir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Color del material en este extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Material en este extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Tobera insertada en este extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Placa de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "Temperatura objetivo de la plataforma calentada. La plataforma se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento de la plataforma se desactivará." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Temperatura actual de la plataforma caliente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Temperatura a la que se va a precalentar la plataforma." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Caliente la plataforma antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que la plataforma se caliente para poder imprimir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Control de impresoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posición de desplazamiento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distancia de desplazamiento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar GCode" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "La impresora no está conectada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Agregar impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Administrar impresoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impresoras conectadas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impresoras preconfiguradas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Activar impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Nombre del trabajo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Tiempo de impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Tiempo restante estimado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Agregar impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Administrar impresoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Impresoras conectadas" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Impresoras preconfiguradas" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Ajustes de impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5055,120 +4118,1704 @@ msgstr "" "\n" "Haga clic para abrir el administrador de perfiles." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Perfiles personalizados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar cambios actuales" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Recomendado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Encendido" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Apagado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimental" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "No hay ningún perfil %1 para configuración en %2 extrusor. En su lugar se utilizará la opción predeterminada" msgstr[1] "No hay ningún perfil %1 para configuraciones en %2 extrusores. En su lugar se utilizará la opción predeterminada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Encendido" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Apagado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" +msgid "Profiles" +msgstr "Perfiles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Adherencia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Habilita la impresión de un borde o una balsa. Esta opción agregará un área plana alrededor del objeto, que es fácil de cortar después." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Relleno gradual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Ha modificado algunos ajustes del perfil. Si desea cambiarlos, hágalo en el modo personalizado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Soporte" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n" -"\n" -"Haga clic para mostrar estos ajustes." +msgid "Gradual infill" +msgstr "Relleno gradual" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Adherencia" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Habilita la impresión de un borde o una balsa. Esta opción agregará un área plana alrededor del objeto, que es fácil de cortar después." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Guardar proyecto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Impresoras de red habilitadas" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impresoras locales" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoritos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Imprimir modelo seleccionado con:" +msgstr[1] "Imprimir modelos seleccionados con:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Multiplicar modelo seleccionado" +msgstr[1] "Multiplicar modelos seleccionados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de copias" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Guardar proyecto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportar..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar selección..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Configuraciones" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Habilitado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "La configuración de este extrusor no está permitida y evita el corte." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "No hay perfiles que coincidan con la configuración de este extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Seleccionar configuración" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Configuraciones" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Cargando configuraciones disponibles desde la impresora..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Abrir archivo(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir como extrusor activo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Habilitar extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Deshabilitar extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Abrir &reciente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Ajustes visibles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Contraer todas las categorías" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gestionar visibilidad de los ajustes..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Posición de la cámara" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Vista de cámara" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "P&laca de impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Ver tipo" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Se imprime como soporte." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Se han modificado otros modelos que se superponen con este modelo." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Se ha modificado la superposición del relleno con este modelo." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "No se admiten superposiciones con este modelo." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "%1 sobrescrito." +msgstr[1] "%1 sobrescritos." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfiles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Activar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Crear" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Duplicado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Cambiar nombre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Crear perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Introduzca un nombre para este perfil." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplicar perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar eliminación" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Cambiar nombre de perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importar perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Impresora: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Actualizar perfil con ajustes o sobrescrituras actuales" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Este perfil utiliza los ajustes predeterminados especificados por la impresora, por eso no aparece ningún ajuste o sobrescritura en la lista que se ve a continuación." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Los ajustes actuales coinciden con el perfil seleccionado." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ajustes globales" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "General" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Interfaz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Moneda:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Tema:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Segmentar automáticamente al cambiar los ajustes." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Segmentar automáticamente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamiento de la ventanilla" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Mostrar voladizos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Resalta las superficies que faltan o son extrañas del modelo usando señales de advertencia. A las trayectorias de herramientas les faltarán a menudo partes de la geometría prevista." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Mostrar errores de modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centrar cámara cuando se selecciona elemento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Invertir la dirección del zoom de la cámara." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "¿Debería moverse el zoom en la dirección del ratón?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Hacer zoom en la dirección del ratón" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Asegúrese de que los modelos están separados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Arrastrar modelos a la placa de impresión de forma automática" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Se muestra el mensaje de advertencia en el lector de GCode." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Mensaje de advertencia en el lector de GCode" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "¿Debe forzarse el modo de compatibilidad de la capa?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "¿Debería abrirse Cura en el lugar donde se cerró?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Restaurar la posición de la ventana al inicio" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "¿Qué tipo de renderizado de cámara debería usarse?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderizado de cámara:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspectiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrir y guardar archivos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Utilizar una sola instancia de Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "¿Se debe limpiar la placa de impresión antes de cargar un nuevo modelo en una única instancia de Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Limpiar la placa de impresión antes de cargar el modelo en la instancia única" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Escalar modelos de gran tamaño" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Escalar modelos demasiado pequeños" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Seleccionar modelos al abrirlos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Agregar prefijo de la máquina al nombre del trabajo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportamiento predeterminado al abrir un archivo del proyecto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Preguntar siempre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Abrir siempre como un proyecto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Importar modelos siempre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Si ha realizado cambios en un perfil y, a continuación, ha cambiado a otro, aparecerá un cuadro de diálogo que le preguntará si desea guardar o descartar los cambios. También puede elegir el comportamiento predeterminado, así ese cuadro de diálogo no volverá a aparecer." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Descartar siempre los ajustes modificados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Transferir siempre los ajustes modificados al nuevo perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidad" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "¿Deben enviarse datos anónimos sobre la impresión a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP ni otra información de identificación personal." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Enviar información (anónima) de impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Más información" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Actualizaciones" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Buscar actualizaciones al iniciar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Cuando busque actualizaciones, compruebe solo si hay versiones estables." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Solo versiones estables" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Cuando busque actualizaciones, compruebe si hay versiones estables y versiones beta." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versiones estables y beta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "¿Debería Cura buscar automáticamente nuevos complementos cada vez que se inicia? Le recomendamos encarecidamente que no desactive esta opción!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Recibir notificaciones de actualizaciones de complementos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Información" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Confirmar cambio de diámetro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Mostrar nombre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Color" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Propiedades" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Densidad" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Diámetro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Coste del filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Peso del filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Longitud del filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Coste por metro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desvincular material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Descripción" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Información sobre adherencia" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Crear" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Sincronizar con las impresoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "No se pudo importar el material en %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "El material se ha importado correctamente en %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Se ha producido un error al exportar el material a %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "El material se ha exportado correctamente a %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Sincronizar materiales con impresoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Sincronizar materiales con impresoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Con unos sencillos pasos puede sincronizar todos sus perfiles de material con sus impresoras." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Iniciar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "¿Por qué tengo que sincronizar los perfiles de materiales?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Iniciar sesión" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Para sincronizar automáticamente los perfiles de material con todas sus impresoras conectadas a Digital Factory debe iniciar sesión en Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronización de materiales con USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Las siguientes impresoras recibirán los nuevos perfiles de material:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Hubo un error al enviar los materiales a las impresoras." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Los perfiles de material se han sincronizado correctamente con las siguientes impresoras:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Solución de problemas" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "¿Faltan impresoras?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Asegúrese de que todas las impresoras estén encendidas y conectadas a Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Actualizar la lista" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Inténtelo de nuevo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Realizado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizando" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "No se ha encontrado ninguna impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Parece que no tiene ninguna impresora compatible conectada a Digital Factory. Asegúrese de que su impresora esté conectada y ejecutando el firmware más" +" reciente." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Aprenda a conectar su impresora a Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Actualizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Sincronización de perfiles de material a través USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Siga estos pasos para cargar los nuevos perfiles de material en la impresora." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Haga clic en el botón para exportar el archivo de material." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Guarde el archivo .umm en una memoria USB." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Inserte la memoria USB en la impresora e inicie el procedimiento para cargar nuevos perfiles de material." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Cómo cargar nuevos perfiles de material en mi impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar archivo de material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar todos los materiales" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidad de los ajustes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Comprobar todo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impresoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Ajustes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Actual" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Unidad" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "No está conectado a ninguna impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "La impresora no acepta comandos" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "En mantenimiento. Compruebe la impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Se ha perdido la conexión con la impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Imprimiendo..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "En pausa" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparando..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Retire la impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Cancelar impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "¿Está seguro de que desea cancelar la impresión?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Imprimir modelo seleccionado con %1" +msgstr[1] "Imprimir modelos seleccionados con %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Mis impresoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Supervise las impresoras de Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Cree proyectos de impresión en Digital Library." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabajos de impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Supervise los trabajos de impresión y vuelva a imprimir desde su historial de impresión." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Amplíe Ultimaker Cura con complementos y perfiles de materiales." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Conviértase en un experto en impresión 3D con el aprendizaje electrónico de Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Soporte técnico de Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Aprenda cómo empezar a utilizar Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Haga una pregunta" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consulte en la Comunidad Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Informar del error" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Informe a los desarrolladores de que algo no funciona bien." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visite el sitio web de Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Control de impresoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Posición de desplazamiento" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distancia de desplazamiento" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar GCode" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Temperatura objetivo del extremo caliente. El extremo caliente se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento del extremo caliente se desactivará." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Temperatura actual de este extremo caliente." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Temperatura a la que se va a precalentar el extremo caliente." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Precalentar" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Caliente el extremo caliente antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que el extremo caliente se caliente para poder imprimir." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Color del material en este extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Material en este extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Tobera insertada en este extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "La impresora no está conectada." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Placa de impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "Temperatura objetivo de la plataforma calentada. La plataforma se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento de la plataforma se desactivará." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Temperatura actual de la plataforma caliente." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Temperatura a la que se va a precalentar la plataforma." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Caliente la plataforma antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que la plataforma se caliente para poder imprimir." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Iniciar sesión" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Añada perfiles de materiales y complementos del Marketplace \n" +"- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales \n" +"- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Cree una cuenta gratuita de Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Última actualización: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Cuenta de Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Cerrar sesión" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Comprobando..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Cuenta sincronizada" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Se ha producido un error..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Instalar actualizaciones pendientes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Buscar actualizaciones de la cuenta" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Sin título" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "No hay elementos para seleccionar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Mostrar Guía de resolución de problemas en línea" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Alternar pantalla completa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Salir de modo de pantalla completa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Des&hacer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Rehacer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Salir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Vista en 3D" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Vista frontal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Vista superior" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Vista inferior" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Vista del lado izquierdo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Vista del lado derecho" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configurar Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Agregar impresora..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Adm&inistrar impresoras ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Administrar materiales..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Añadir más materiales de Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Descartar cambios actuales" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Administrar perfiles..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Mostrar &documentación en línea" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Informar de un &error" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Novedades" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Acerca de..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Eliminar selección" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centrar selección" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Multiplicar selección" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Eliminar modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ce&ntrar modelo en plataforma" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "A&grupar modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Desagrupar modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Co&mbinar modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Multiplicar modelo..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Seleccionar todos los modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Borrar placa de impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Recargar todos los modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Organizar todos los modelos en todas las placas de impresión" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Organizar todos los modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Organizar selección" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Restablecer las posiciones de todos los modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Restablecer las transformaciones de todos los modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Abrir archivo(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Nuevo proyecto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Mostrar carpeta de configuración" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configurar visibilidad de los ajustes..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Este ajuste no se utiliza porque los ajustes a los que afecta están sobrescritos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Afecta a" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Afectado por" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5179,7 +5826,7 @@ msgstr "" "\n" "Haga clic para restaurar el valor del perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5190,509 +5837,93 @@ msgstr "" "\n" "Haga clic para restaurar el valor calculado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Buscar ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copiar valor en todos los extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos los valores cambiados en todos los extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "No mostrar este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Mostrar este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Vista en 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Vista frontal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Vista superior" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Vista del lado izquierdo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Vista del lado derecho" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Ver tipo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Añadir una impresora a la nube" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Esperando la respuesta de la nube" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "¿No se han encontrado impresoras en su cuenta?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "Las siguientes impresoras de su cuenta se han añadido en Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Añadir impresora manualmente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor del perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Nombre de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Asigne un nombre a su impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Agregar una impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Agregar una impresora en red" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Agregar una impresora fuera de red" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "No se ha encontrado ninguna impresora en su red." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Actualizar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Agregar impresora por IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Añadir impresora a la nube" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Solución de problemas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Agregar impresora por dirección IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Introduzca la dirección IP de su impresora." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Agregar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "No se ha podido conectar al dispositivo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "¿No puede conectarse a la impresora Ultimaker?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "La impresora todavía no ha respondido en esta dirección." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Atrás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Conectar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas de la versión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Añada ajustes de material y complementos desde Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Cree una cuenta gratuita de Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Omitir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ayúdenos a mejorar Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario, entre otros:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Uso de material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de segmentos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Ajustes de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Los datos recopilados por Ultimaker Cura no contendrán información personal." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Más información" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vacío" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Acuerdo de usuario" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Rechazar y cerrar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Le damos la bienvenida a Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" -"Siga estos pasos para configurar\n" -"Ultimaker Cura. Solo le llevará unos minutos." +"Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n" +"\n" +"Haga clic para mostrar estos ajustes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Empezar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Este paquete se instalará después de reiniciar." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Cerrando %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "¿Seguro que desea salir de %1?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar paquete" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir archivo(s)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Hemos encontrado uno o más archivos de GCode entre los archivos que ha seleccionado. Solo puede abrir los archivos GCode de uno en uno. Si desea abrir un archivo GCode, seleccione solo uno." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Agregar impresora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "Novedades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "No hay elementos para seleccionar" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Comprobador de modelos" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Proporciona asistencia para leer archivos 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Lector de 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Proporciona asistencia para escribir archivos 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Escritor de 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Proporciona asistencia para leer archivos AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Lector de AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Realice una copia de seguridad de su configuración y restáurela." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Backend de CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Proporciona asistencia para la importación de perfiles de Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lector de perfiles de Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Proporciona asistencia para exportar perfiles de Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Escritor de perfiles de Cura" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Busca actualizaciones de firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Buscador de actualizaciones de firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Proporciona opciones a la máquina para actualizar el firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Actualizador de firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lee GCode de un archivo comprimido." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lector de GCode comprimido" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escribe GCode en un archivo comprimido." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Escritor de GCode comprimido" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lector de perfiles GCode" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite cargar y visualizar archivos GCode." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Lector de GCode" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escribe GCode en un archivo." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Escritor de GCode" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Lector de imágenes" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lector de perfiles antiguos de Cura" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Acción Ajustes de la máquina" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Proporciona una fase de supervisión en Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de supervisión" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5703,85 +5934,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Herramienta de ajustes por modelo" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" +msgid "Provides support for importing Cura profiles." +msgstr "Proporciona asistencia para la importación de perfiles de Cura." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Posprocesamiento" +msgid "Cura Profile Reader" +msgstr "Lector de perfiles de Cura" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Proporciona una fase de preparación en Cura." +msgid "Provides support for reading X3D files." +msgstr "Proporciona asistencia para leer archivos X3D." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparación" +msgid "X3D Reader" +msgstr "Lector de X3D" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Proporciona una fase de vista previa en Cura." +msgid "Backup and restore your configuration." +msgstr "Realice una copia de seguridad de su configuración y restáurela." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de vista previa" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de dispositivo de salida de unidad extraíble" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Registro de Sentry" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Abre la vista de simulación." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Vista de simulación" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Info de la segmentación" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Proporciona una vista de malla sólida normal." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Vista de sólidos" +msgid "Machine Settings Action" +msgstr "Acción Ajustes de la máquina" #: SupportEraser/plugin.json msgctxt "description" @@ -5793,35 +5984,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Borrador de soporte" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Buscar, administrar e instalar nuevos paquetes de Cura." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Cuadro de herramientas" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de dispositivo de salida de unidad extraíble" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Proporciona asistencia para leer archivos 3D." +msgid "Provides a machine actions for updating firmware." +msgstr "Proporciona opciones a la máquina para actualizar el firmware." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lector Trimesh" +msgid "Firmware Updater" +msgstr "Actualizador de firmware" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "Lector de UFP" +msgid "Legacy Cura Profile Reader" +msgstr "Lector de perfiles antiguos de Cura" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Proporciona asistencia para leer archivos 3MF." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Lector de 3MF" #: UFPWriter/plugin.json msgctxt "description" @@ -5833,25 +6034,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "Escritor de UFP" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Acciones de la máquina Ultimaker" +msgid "Sentry Logger" +msgstr "Registro de Sentry" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas." +msgid "Provides support for importing profiles from g-code files." +msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Conexión en red de Ultimaker" +msgid "G-code Profile Reader" +msgstr "Lector de perfiles GCode" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Proporciona una fase de vista previa en Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de vista previa" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Proporciona la vista de rayos X." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista de rayos X" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Backend de CuraEngine" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Proporciona asistencia para leer archivos AMF." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Lector de AMF" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lee GCode de un archivo comprimido." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lector de GCode comprimido" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Posprocesamiento" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Proporciona asistencia para exportar perfiles de Cura." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Escritor de perfiles de Cura" #: USBPrinting/plugin.json msgctxt "description" @@ -5863,25 +6134,135 @@ msgctxt "name" msgid "USB printing" msgstr "Impresión USB" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." +msgid "Provides a prepare stage in Cura." +msgstr "Proporciona una fase de preparación en Cura." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Actualización de la versión 2.1 a la 2.2" +msgid "Prepare Stage" +msgstr "Fase de preparación" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." +msgid "Allows loading and displaying G-code files." +msgstr "Permite cargar y visualizar archivos GCode." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Actualización de la versión 2.2 a la 2.4" +msgid "G-code Reader" +msgstr "Lector de GCode" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Lector de imágenes" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Acciones de la máquina Ultimaker" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escribe GCode en un archivo comprimido." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Escritor de GCode comprimido" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Busca actualizaciones de firmware." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Buscador de actualizaciones de firmware" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Info de la segmentación" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Permite leer y escribir perfiles de material basados en XML." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfiles de material" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Buscar, administrar e instalar nuevos paquetes de Cura." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Cuadro de herramientas" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escribe GCode en un archivo." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Escritor de GCode" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Abre la vista de simulación." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Vista de simulación" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Actualización de la versión 4.5 a la 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5893,55 +6274,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Actualización de la versión 2.5 a la 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Actualización de la versión 2.6 a la 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Actualización de la versión 4.6.0 a la 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Actualización de la versión 2.7 a la 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Actualización de la versión 3.0 a la 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Actualización de la versión 3.2 a la 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Actualización de la versión 3.3 a la 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Actualización de la versión 4.7 a la 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5953,35 +6304,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Actualización de la versión 3.4 a la 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Actualización de la versión 3.5 a la 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Actualización de la versión 2.1 a la 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Actualización de la versión 4.0 a la 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Actualización de la versión 3.2 a la 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Actualización de la versión 4.1 a la 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Actualización de la versión 4.8 a la 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Actualización de la versión 4.6.2 a la 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6003,66 +6364,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Actualización de la versión 4.3 a la 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Actualización de la versión 4.4 a la 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Actualización de la versión 4.5 a la 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Actualización de la versión 4.6.0 a la 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Actualización de la versión 4.6.2 a la 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Actualización de la versión 4.7 a la 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Actualización de la versión 4.8 a la 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6073,35 +6374,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Actualización de la versión 4.9 a la 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Proporciona asistencia para leer archivos X3D." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "Lector de X3D" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Actualización de la versión 2.7 a la 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Permite leer y escribir perfiles de material basados en XML." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Perfiles de material" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Actualización de la versión 2.6 a la 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Proporciona la vista de rayos X." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Vista de rayos X" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Actualización de la versión 4.11 a 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Actualización de la versión 3.3 a la 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Actualización de la versión 3.0 a la 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Actualización de la versión 4.0 a la 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Actualización de la versión 4.4 a la 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Actualización de la versión 2.2 a la 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Actualización de la versión 4.1 a la 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Actualización de la versión 3.5 a la 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Conexión en red de Ultimaker" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Proporciona asistencia para leer archivos 3D." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lector Trimesh" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Lector de UFP" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Proporciona una vista de malla sólida normal." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Vista de sólidos" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Proporciona asistencia para escribir archivos 3MF." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Escritor de 3MF" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Proporciona una fase de supervisión en Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de supervisión" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Comprobador de modelos" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Envíe y supervise sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Conectar con Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Las transmisiones de la cámara web para impresoras en la nube no se pueden ver en Ultimaker Cura." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no tiene la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Nuevo firmware de %s disponible" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index c9d4b0a656..b281d5a778 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2019-03-13 14:00+0200\n" "Last-Translator: Bothof \n" "Language-Team: Spanish\n" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 4983fbd68b..2c56a713c6 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 15:15+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Spanish , Spanish \n" @@ -56,9 +56,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"Los comandos de GCode que se ejecutarán justo al inicio separados por - \n" -"." +msgstr "Los comandos de GCode que se ejecutarán justo al inicio - separados por \n." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -70,9 +68,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"Los comandos de GCode que se ejecutarán justo al final separados por -\n" -"." +msgstr "Los comandos de GCode que se ejecutarán justo al final - separados por \n." #: fdmprinter.def.json msgctxt "material_guid label" @@ -154,6 +150,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura de la máquina" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Altura (dimensión sobre el eje Z) del área de impresión." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -194,16 +200,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminio" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura de la máquina" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Altura (dimensión sobre el eje Z) del área de impresión." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -561,8 +557,8 @@ msgstr "Velocidad máxima del motor de la dirección Z." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Velocidad de alimentación máxima" +msgid "Maximum Speed E" +msgstr "Velocidad máxima E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -686,8 +682,8 @@ msgstr "Pasos por milímetro (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección E." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "El número de pasos en un motor paso a paso que mueve la rueda de alimentación en incrementos de 1 milímetro alrededor de su circunferencia." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1434,6 +1430,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Orden monotónica superior e inferior" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas superior e inferior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1504,6 +1510,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Zigzag" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Orden de planchado monotónico" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas de planchado de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1711,8 +1727,11 @@ msgstr "Patrón de relleno" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octeto, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. El relleno giroide, cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes" +" de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas" +" por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la" +" fuerza en todas las direcciones. El relleno de iluminación intenta minimizar el relleno apoyando solo la parte superior del objeto." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1779,6 +1798,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Giroide" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Iluminación" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1993,6 +2017,47 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "El número de capas de relleno que soportan los bordes del forro." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ángulo de sujeción de relleno de iluminación" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina cuándo una capa de iluminación tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ángulo del voladizo de relleno de iluminación" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina cuándo una capa de relleno de iluminación tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ángulo de recorte de relleno de iluminación" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ángulo de enderezamiento de iluminación" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de" +" relleno." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3183,6 +3248,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Todo" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "No en la superficie exterior" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -3201,8 +3271,7 @@ msgstr "Distancia de peinada máxima sin retracción" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero," -" no hay un máximo y los movimientos de peinada no utilizarán la retracción." +msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción." #: fdmprinter.def.json msgctxt "travel_retract_before_outer_wall label" @@ -5135,7 +5204,7 @@ msgstr "Ancho de molde mínimo" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." +msgid "The minimal distance between the outside of the mold and the outside of the model." msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo." #: fdmprinter.def.json @@ -5303,6 +5372,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Zigzag" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Orden monotónica de la superficie superior" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas de la superficie superior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6402,6 +6481,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "Los comandos de GCode que se ejecutarán justo al inicio separados por - \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "Los comandos de GCode que se ejecutarán justo al final separados por - \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocidad de alimentación máxima" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octeto, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. El relleno giroide, cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección. El relleno de iluminación intenta minimizar el relleno, apoyando únicamente las cubiertas (internas) del objeto. Como tal, el porcentaje de relleno solo es \"válido\" una capa por debajo de lo que necesite para soportar el modelo." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "La diferencia que puede tener una capa de relleno de iluminación con la inmediatamente superior como cuando se podan las puntas de los árboles. Medido en el ángulo dado el espesor." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "La diferencia que puede tener una capa de relleno de iluminación con la inmediatamente superior como el suavizado de los árboles. Medido en el ángulo dado el espesor." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octeto, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. El relleno giroide, cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección E." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Si no es cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción." diff --git a/resources/i18n/fdmextruder.def.json.pot b/resources/i18n/fdmextruder.def.json.pot index cdbf81ab6b..2d127a3742 100644 --- a/resources/i18n/fdmextruder.def.json.pot +++ b/resources/i18n/fdmextruder.def.json.pot @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 085e7e837f..5482032204 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -157,6 +157,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "" +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "" + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -198,16 +208,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "" - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -612,7 +612,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" +msgid "Maximum Speed E" msgstr "" #: fdmprinter.def.json @@ -744,8 +744,8 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" msgid "" -"How many steps of the stepper motors will result in one millimeter of " -"extrusion." +"How many steps of the stepper motors will result in moving the feeder wheel " +"by one millimeter around its circumference." msgstr "" #: fdmprinter.def.json @@ -1604,6 +1604,19 @@ msgid "" "reduce the top surface quality." msgstr "" +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "" +"Print top/bottom lines in an ordering that causes them to always overlap " +"with adjacent lines in a single direction. This takes slightly more time to " +"print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1694,6 +1707,19 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "" +"Print ironing lines in an ordering that causes them to always overlap with " +"adjacent lines in a single direction. This takes slightly more time to " +"print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1961,7 +1987,8 @@ msgid "" "triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric " "patterns are fully printed every layer. Gyroid, cubic, quarter cubic and " "octet infill change with every layer to provide a more equal distribution of " -"strength over each direction." +"strength over each direction. Lightning infill tries to minimize the infill, " +"by only supporting the ceiling of the object." msgstr "" #: fdmprinter.def.json @@ -2029,6 +2056,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -2293,6 +2325,54 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "" +"Determines when a lightning infill layer has to support anything above it. " +"Measured in the angle given the thickness of a layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "" +"Determines when a lightning infill layer has to support the model above it. " +"Measured in the angle given the thickness." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "" +"The endpoints of infill lines are shortened to save on material. This " +"setting is the angle of overhang of the endpoints of these lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "" +"The infill lines are straightened out to save on printing time. This is the " +"maximum angle of overhang allowed across the length of the infill line." +msgstr "" + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3638,6 +3718,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5963,7 +6048,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "mold_width description" msgid "" -"The minimal distance between the ouside of the mold and the outside of the " +"The minimal distance between the outside of the mold and the outside of the " "model." msgstr "" @@ -6164,6 +6249,19 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "" +"Print top surface lines in an ordering that causes them to always overlap " +"with adjacent lines in a single direction. This takes slightly more time to " +"print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index d8aaa50cbf..e1e678109d 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" "PO-Revision-Date: 2017-09-27 12:27+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -15,180 +15,449 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Tuntematon" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "Tulostustilavuuden korkeutta on vähennetty tulostusjärjestysasetuksen vuoksi, jotta koroke ei osuisi tulostettuihin malleihin." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Tulostustilavuus" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Tuntematon" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Mukautettu materiaali" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Mukautettu" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Mukautetut profiilit" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Mukautettu materiaali" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Mukautettu" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Uusien paikkojen etsiminen kappaleille" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Etsitään paikkaa" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Kaikille kappaleille ei löydy paikkaa tulostustilavuudessa." -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Paikkaa ei löydy" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Ladataan laitteita..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Asetetaan näkymää..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Ladataan käyttöliittymää..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "Tulostustilavuuden korkeutta on vähennetty tulostusjärjestysasetuksen vuoksi, jotta koroke ei osuisi tulostettuihin malleihin." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Vain yksi G-code-tiedosto voidaan ladata kerralla. Tiedoston {0} tuonti ohitettiin." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Tulostustilavuus" +msgid "Warning" +msgstr "Varoitus" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Muita tiedostoja ei voida ladata, kun G-code latautuu. Tiedoston {0} tuonti ohitettiin." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Virhe" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Sulje" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Lisää" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Peruuta" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Ulkoseinämä" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Sisäseinämät" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Pintakalvo" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Täyttö" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Tuen täyttö" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Tukiliittymä" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Tuki" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Helma" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Siirtoliike" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Takaisinvedot" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Muu" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -198,32 +467,32 @@ msgid "" " " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Kaatumisraportti" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -231,672 +500,641 @@ msgid "" " " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Ladataan laitteita..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Asetetaan näkymää..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Ladataan käyttöliittymää..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Vain yksi G-code-tiedosto voidaan ladata kerralla. Tiedoston {0} tuonti ohitettiin." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Varoitus" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Muita tiedostoja ei voida ladata, kun G-code latautuu. Tiedoston {0} tuonti ohitettiin." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Virhe" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Kappaleiden kertominen ja sijoittelu" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Sijoitetaan kappaletta" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Kappaleiden kertominen ja sijoittelu" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Sijoitetaan kappaletta" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Suutin" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Tiedosto on jo olemassa" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Tiedosto {0} on jo olemassa. Haluatko varmasti kirjoittaa sen päälle?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Profiilin vienti epäonnistui tiedostoon {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Profiilin vienti epäonnistui tiedostoon {0}: Kirjoitin-lisäosa ilmoitti virheestä." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profiili viety tiedostoon {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profiililla {0} on tuntematon tiedostotyyppi tai se on vioittunut." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Mukautettu profiili" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profiilista puuttuu laatutyyppi." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Suutin" +msgid "Per Model Settings" +msgstr "Mallikohtaiset asetukset" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Määritä mallikohtaiset asetukset" + +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura-profiili" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D-tiedosto" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" +msgid "Backups" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Lisää" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Peruuta" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Laitteen asetukset" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Siirrettävä asema" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Tallenna siirrettävälle asemalle" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Tallenna siirrettävälle asemalle {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Ulkoseinämä" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Tallennetaan siirrettävälle asemalle {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Sisäseinämät" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Pintakalvo" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Täyttö" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Tuen täyttö" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Tukiliittymä" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Tuki" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Helma" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Siirtoliike" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Takaisinvedot" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Muu" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Sulje" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "" +msgid "Saving" +msgstr "Tallennetaan" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Ei voitu tallentaa tiedostoon {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Ei löydetty tiedostonimeä yritettäessä kirjoittaa laitteeseen {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Ei voitu tallentaa siirrettävälle asemalle {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Tallennettu siirrettävälle asemalle {0} nimellä {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Tiedosto tallennettu" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Poista" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Poista siirrettävä asema {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Poistettu {0}. Voit nyt poistaa aseman turvallisesti." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Poista laite turvallisesti" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Kohteen {0} poistaminen epäonnistui. Asema saattaa olla toisen ohjelman käytössä." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 -profiilit" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Suositeltu" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Mukautettu" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Suositeltu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Mukautettu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-tiedosto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-tiedosto" +msgid "Ultimaker Format Package" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-projektin 3MF-tiedosto" +msgid "G-code File" +msgstr "GCode-tiedosto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" +msgid "Preview" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Kerrosnäkymä" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Käsitellään kerroksia" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Tiedot" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Viipalointi ei onnistu nykyisellä materiaalilla, sillä se ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Viipalointi ei onnistu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Viipalointi ei onnistu nykyisten asetuksien ollessa voimassa. Seuraavissa asetuksissa on virheitä: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Viipalointi ei onnistu, koska esitäyttötorni tai esitäytön sijainti tai sijainnit eivät kelpaa." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -905,465 +1143,434 @@ msgid "" "- Are not all set as modifier meshes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Käsitellään kerroksia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Tiedot" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-profiili" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Päivitystietoja ei löytynyt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +msgid "AMF File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Uusi tulostimen %s laiteohjelmisto saatavilla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "GCode-tiedosto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-coden jäsennys" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-coden tiedot" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G File -tiedosto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 -profiilit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Laitteen asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Mallikohtaiset asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Määritä mallikohtaiset asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB-tulostus" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Tulosta USB:n kautta" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Tulosta USB:n kautta" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Yhdistetty USB:n kautta" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Tallenna siirrettävälle asemalle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Tallenna siirrettävälle asemalle {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "" +msgid "Parsing G-code" +msgstr "G-coden jäsennys" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Tallennetaan siirrettävälle asemalle {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Tallennetaan" +msgid "G-code Details" +msgstr "G-coden tiedot" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Ei voitu tallentaa tiedostoon {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Ei löydetty tiedostonimeä yritettäessä kirjoittaa laitteeseen {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Ei voitu tallentaa siirrettävälle asemalle {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Tallennettu siirrettävälle asemalle {0} nimellä {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Tiedosto tallennettu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Poista" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Poista siirrettävä asema {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Poistettu {0}. Voit nyt poistaa aseman turvallisesti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Poista laite turvallisesti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Kohteen {0} poistaminen epäonnistui. Asema saattaa olla toisen ohjelman käytössä." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Siirrettävä asema" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Kerrosnäkymä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Kiinteä näkymä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Lisäosan lisenssisopimus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "" +msgid "G File" +msgstr "G File -tiedosto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "" +msgid "JPG Image" +msgstr "JPG-kuva" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "" +msgid "JPEG Image" +msgstr "JPEG-kuva" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "" +msgid "PNG Image" +msgstr "PNG-kuva" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "" +msgid "BMP Image" +msgstr "BMP-kuva" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "" +msgid "GIF Image" +msgstr "GIF-kuva" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Tasaa alusta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Valitse päivitykset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Päivitystietoja ei löytynyt." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Lisäosan lisenssisopimus" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Kerrosnäkymä" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Tulosta verkon kautta" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Tulosta verkon kautta" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Yhdistä verkon kautta" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1371,71 +1578,71 @@ msgid_plural "... and {0} others" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1447,768 +1654,1641 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" +msgid "Model Errors" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Tulosta verkon kautta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Tulosta verkon kautta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Yhdistä verkon kautta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB-tulostus" +msgid "Solid view" +msgstr "Kiinteä näkymä" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Tulosta USB:n kautta" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Tulosta USB:n kautta" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF-tiedosto" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura-projektin 3MF-tiedosto" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Yhdistetty USB:n kautta" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgid "Mesh Type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-tiedosto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Kerrosnäkymä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgid "Infill mesh only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Valitse asetukset" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Valitse tätä mallia varten mukautettavat asetukset" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Suodatin..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Näytä kaikki" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (leveys)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (syvyys)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (korkeus)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Alustan muoto" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X väh." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y väh." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X enint." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y enint." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Suulakkeiden määrä" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Suuttimen koko" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Suuttimen X-siirtymä" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Suuttimen Y-siirtymä" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Tulostin" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Laiteohjelmisto on suoraan 3D-tulostimessa toimiva ohjelma. Laiteohjelmisto ohjaa askelmoottoreita, säätää lämpötilaa ja saa tulostimen toimimaan." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Uusien tulostimien mukana toimitettava laiteohjelmisto toimii, mutta uusissa versioissa on yleensä enemmän toimintoja ja parannuksia." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Päivitä laiteohjelmisto automaattisesti" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Lataa mukautettu laiteohjelmisto" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Valitse mukautettu laiteohjelmisto" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Laiteohjelmiston päivitys" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Päivitetään laiteohjelmistoa." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Laiteohjelmiston päivitys suoritettu." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Laiteohjelmiston päivitys epäonnistui tuntemattoman virheen takia." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Laiteohjelmiston päivitys epäonnistui tietoliikennevirheen takia." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Laiteohjelmiston päivitys epäonnistui tiedoston lukemiseen tai kirjoittamiseen liittyvän virheen takia." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Laiteohjelmiston päivitys epäonnistui puuttuvan laiteohjelmiston takia." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Avaa projekti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Yhteenveto – Cura-projekti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Tulostimen asetukset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Miten laitteen ristiriita pitäisi ratkaista?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Tyyppi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Profiilin asetukset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Miten profiilin ristiriita pitäisi ratkaista?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Nimi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Ei profiilissa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 ohitus" msgstr[1] "%1 ohitusta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Johdettu seuraavista" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 ohitus" msgstr[1] "%1, %2 ohitusta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Materiaaliasetukset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Miten materiaalin ristiriita pitäisi ratkaista?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Asetusten näkyvyys" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Tila" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Näkyvät asetukset:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1/%2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Avaa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" +msgid "Post Processing Plugin" +msgstr "Jälkikäsittelylisäosa" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Jälkikäsittelykomentosarjat" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Lisää komentosarja" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +msgctxt "@label" +msgid "Settings" +msgstr "Asetukset" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "" +msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Laiteohjelmisto on suoraan 3D-tulostimessa toimiva ohjelma. Laiteohjelmisto ohjaa askelmoottoreita, säätää lämpötilaa ja saa tulostimen toimimaan." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Uusien tulostimien mukana toimitettava laiteohjelmisto toimii, mutta uusissa versioissa on yleensä enemmän toimintoja ja parannuksia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Päivitä laiteohjelmisto automaattisesti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Lataa mukautettu laiteohjelmisto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Valitse mukautettu laiteohjelmisto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Laiteohjelmiston päivitys" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Päivitetään laiteohjelmistoa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Laiteohjelmiston päivitys suoritettu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Laiteohjelmiston päivitys epäonnistui tuntemattoman virheen takia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Laiteohjelmiston päivitys epäonnistui tietoliikennevirheen takia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Laiteohjelmiston päivitys epäonnistui tiedoston lukemiseen tai kirjoittamiseen liittyvän virheen takia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Laiteohjelmiston päivitys epäonnistui puuttuvan laiteohjelmiston takia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Muunna kuva..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "Kunkin pikselin suurin etäisyys \"Pohja\"-arvosta." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Korkeus (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Pohjan korkeus alustasta millimetreinä." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Pohja (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "Leveys millimetreinä alustalla." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Leveys (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "Syvyys millimetreinä alustalla" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Syvyys (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Tummempi on korkeampi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Vaaleampi on korkeampi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "Kuvassa käytettävän tasoituksen määrä." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Tasoitus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Valitse tähän Ultimaker Original -laitteeseen tehdyt päivitykset" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Lämmitettävä alusta (virallinen sarja tai itse rakennettu)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Alustan tasaaminen" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Voit säätää alustaa, jotta tulosteista tulisi hyviä. Kun napsautat \"Siirry seuraavaan positioon\", suutin siirtyy eri positioihin, joita voidaan säätää." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Laita paperinpala kussakin positiossa suuttimen alle ja säädä tulostusalustan korkeus. Tulostusalustan korkeus on oikea, kun suuttimen kärki juuri ja juuri osuu paperiin." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Aloita alustan tasaaminen" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Siirry seuraavaan positioon" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Asennettu" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Tulostin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" +msgid "Plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Suuttimen koko" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiaalit" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Suuttimen X-siirtymä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Suuttimen Y-siirtymä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" +msgid "Will install upon restarting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "X (Width)" -msgstr "X (leveys)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (syvyys)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (korkeus)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Alustan muoto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" +msgid "Community Contributions" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Heated bed" +msgid "Community Plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Heated build volume" +msgid "Generic Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +msgctxt "@label" +msgid "Website" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "X min" -msgstr "X väh." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y väh." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X enint." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y enint." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" +msgid "Email" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Suulakkeiden määrä" +msgid "Version" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" +msgid "Last updated" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +msgctxt "@label" +msgid "Brand" +msgstr "Merkki" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +msgctxt "@label" +msgid "Downloads" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 +msgctxt "@label" +msgid "Color scheme" +msgstr "Värimalli" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Materiaalin väri" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Linjojen tyyppi" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Yhteensopivuustila" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 +msgctxt "@label" +msgid "Travels" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 +msgctxt "@label" +msgid "Helpers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Shell" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 +msgctxt "@label" +msgid "Infill" +msgstr "Täyttö" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 +msgctxt "@label" +msgid "Starts" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Näytä vain yläkerrokset" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Yläosa/alaosa" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Sisäseinämä" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Tulostetaan" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Jonossa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Tulosta verkon kautta" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Tulosta" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Valmis" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Vaatii toimenpiteitä" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Yhdistä verkkotulostimeen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Muokkaa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Poista" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Päivitä" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Jos tulostinta ei ole luettelossa, lue verkkotulostuksen vianetsintäopas" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Tyyppi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Laiteohjelmistoversio" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Osoite" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Tämän osoitteen tulostin ei ole vielä vastannut." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Yhdistä" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Tulostimen osoite" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Keskeytä tulostus" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2217,1410 +3297,433 @@ msgid "" "- Check if you are signed in to discover cloud-connected printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Valitse asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Valitse tätä mallia varten mukautettavat asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Suodatin..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Näytä kaikki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Jälkikäsittelylisäosa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Jälkikäsittelykomentosarjat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Lisää komentosarja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Värimalli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materiaalin väri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Linjojen tyyppi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" +msgid "3D View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Yhteensopivuustila" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Täyttö" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Näytä vain yläkerrokset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Yläosa/alaosa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Sisäseinämä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Asennettu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" +msgid "Front View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" +msgid "Object list" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiaalit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Merkki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Alustan tasaaminen" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "Tie&dosto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Voit säätää alustaa, jotta tulosteista tulisi hyviä. Kun napsautat \"Siirry seuraavaan positioon\", suutin siirtyy eri positioihin, joita voidaan säätää." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Muokkaa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Laita paperinpala kussakin positiossa suuttimen alle ja säädä tulostusalustan korkeus. Tulostusalustan korkeus on oikea, kun suuttimen kärki juuri ja juuri osuu paperiin." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Näytä" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Aloita alustan tasaaminen" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Siirry seuraavaan positioon" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Laa&jennukset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Valitse tähän Ultimaker Original -laitteeseen tehdyt päivitykset" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "L&isäasetukset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Lämmitettävä alusta (virallinen sarja tai itse rakennettu)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Ohje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Yhdistä verkkotulostimeen" +msgid "New project" +msgstr "Uusi projekti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Haluatko varmasti aloittaa uuden projektin? Se tyhjentää alustan ja kaikki tallentamattomat asetukset." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Muokkaa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Poista" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Päivitä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Jos tulostinta ei ole luettelossa, lue verkkotulostuksen vianetsintäopas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tyyppi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Laiteohjelmistoversio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Osoite" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Tämän osoitteen tulostin ei ole vielä vastannut." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Yhdistä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Tulostimen osoite" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Keskeytä tulostus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Tulostetaan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Valmis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Vaatii toimenpiteitä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Jonossa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Tulosta verkon kautta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Tulosta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Viipaloidaan..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Vaihda koko näyttöön" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Kumoa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "Tee &uudelleen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Lopeta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Määritä Curan asetukset..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "L&isää tulostin..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Tulostinten &hallinta..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Hallitse materiaaleja..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Päivitä nykyiset asetukset tai ohitukset profiiliin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Hylkää tehdyt muutokset" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Luo profiili nykyisten asetusten tai ohitusten perusteella..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Profiilien hallinta..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Näytä sähköinen &dokumentaatio" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Ilmoita &virheestä" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Tietoja..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Poista malli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ke&skitä malli alustalle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Ryhmittele mallit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Poista mallien ryhmitys" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "&Yhdistä mallit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Kerro malli..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Valitse kaikki mallit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Tyhjennä tulostusalusta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Lataa kaikki mallit uudelleen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Järjestä kaikki mallit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Järjestä valinta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Määritä kaikkien mallien positiot uudelleen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Määritä kaikkien mallien muutokset uudelleen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Avaa tiedosto(t)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Uusi projekti..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Näytä määrityskansio" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Määritä asetusten näkyvyys..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." +msgid "Time estimation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Yleiset" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Tulostimet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profiilit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Avaa tiedosto(t)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Avaa tiedosto(t)" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Löysimme vähintään yhden Gcode-tiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden Gcode-tiedoston kerrallaan. Jos haluat avata Gcode-tiedoston, valitse vain yksi." +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Lisää tulostin" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Kokonaisvaltainen sulatettavan tulostuslangan 3D-tulostusratkaisu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3629,183 +3732,204 @@ msgstr "" "Cura-ohjelman on kehittänyt Ultimaker B.V. yhteistyössä käyttäjäyhteisön kanssa.\n" "Cura hyödyntää seuraavia avoimeen lähdekoodiin perustuvia projekteja:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Graafinen käyttöliittymä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Sovelluskehys" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Prosessien välinen tietoliikennekirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Ohjelmointikieli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI-kehys" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "GUI-kehyksen sidonnat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C/C++ -sidontakirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Data Interchange Format" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Tieteellisen laskennan tukikirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Nopeamman laskennan tukikirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "STL-tiedostojen käsittelyn tukikirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Tukikirjasto 3MF-tiedostojen käsittelyyn" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Sarjatietoliikennekirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "ZeroConf-etsintäkirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Monikulmion leikkauskirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Fontti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVG-kuvakkeet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Avaa projektitiedosto" +msgid "Open file(s)" +msgstr "Avaa tiedosto(t)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Tämä on Cura-projektitiedosto. Haluatko avata sen projektina vai tuoda siinä olevat mallit?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Löysimme vähintään yhden projektitiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden projektitiedoston kerrallaan. Suosittelemme, että tuot vain malleja niistä tiedostoista. Haluatko jatkaa?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Muista valintani" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Avaa projektina" +msgid "Import all as models" +msgstr "Tuo kaikki malleina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Tallenna projekti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Suulake %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & materiaali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Älä näytä projektin yhteenvetoa tallennettaessa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Tuo mallit" +msgid "Save" +msgstr "Tallenna" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Hylkää tai säilytä muutokset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3813,1206 +3937,144 @@ msgid "" "Alternatively, you can discard the changes to load the defaults from '%1'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Profiilin asetukset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Kysy aina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Hylkää äläkä kysy uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Säilytä äläkä kysy uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Avaa projektitiedosto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Löysimme vähintään yhden projektitiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden projektitiedoston kerrallaan. Suosittelemme, että tuot vain malleja niistä tiedostoista. Haluatko jatkaa?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Tämä on Cura-projektitiedosto. Haluatko avata sen projektina vai tuoda siinä olevat mallit?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Muista valintani" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Tuo kaikki malleina" +msgid "Open as project" +msgstr "Avaa projektina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Tallenna projekti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Suulake %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & materiaali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Älä näytä projektin yhteenvetoa tallennettaessa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Tallenna" +msgid "Import models" +msgstr "Tuo mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Tulosta valittu malli asetuksella %1" -msgstr[1] "Tulosta valitut mallit asetuksella %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Tie&dosto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Muokkaa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Näytä" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Laa&jennukset" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "L&isäasetukset" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Ohje" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Uusi projekti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Haluatko varmasti aloittaa uuden projektin? Se tyhjentää alustan ja kaikki tallentamattomat asetukset." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Materiaali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Tulosta valittu malli asetuksella:" -msgstr[1] "Tulosta valitut mallit asetuksella:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Kerro valittu malli" -msgstr[1] "Kerro valitut mallit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Kopioiden määrä" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Avaa &viimeisin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Tulostin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiaali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Aseta aktiiviseksi suulakepuristimeksi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Ei yhteyttä tulostimeen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Tulostin ei hyväksy komentoja" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Huolletaan. Tarkista tulostin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Yhteys tulostimeen menetetty" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Tulostetaan..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Keskeytetty" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Valmistellaan..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Poista tuloste" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Haluatko varmasti keskeyttää tulostuksen?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Käyttöliittymä" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Valuutta:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Teema:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Sovellus on käynnistettävä uudelleen, jotta nämä muutokset tulevat voimaan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Viipaloi automaattisesti, kun asetuksia muutetaan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Viipaloi automaattisesti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Näyttöikkunan käyttäytyminen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Korosta mallin vailla tukea olevat alueet punaisella. Ilman tukea nämä alueet eivät tulostu kunnolla." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Näytä uloke" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Siirtää kameraa siten, että valittuna oleva malli on näkymän keskellä." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Keskitä kamera kun kohde on valittu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Pitääkö Curan oletusarvoinen zoom-toimintatapa muuttaa päinvastaiseksi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Käännä kameran zoomin suunta päinvastaiseksi." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Tuleeko zoomauksen siirtyä hiiren suuntaan?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Zoomaa hiiren suuntaan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Pitäisikö alustalla olevia malleja siirtää niin, etteivät ne enää leikkaa toisiaan?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Varmista, että mallit ovat erillään" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Pitäisikö tulostusalueella olevia malleja siirtää alas niin, että ne koskettavat tulostusalustaa?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Pudota mallit automaattisesti alustalle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Pakotetaanko kerros yhteensopivuustilaan?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Tiedostojen avaaminen ja tallentaminen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Pitäisikö mallit skaalata tulostustilavuuteen, jos ne ovat liian isoja?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Skaalaa suuret mallit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Malli voi vaikuttaa erittäin pieneltä, jos sen koko on ilmoitettu esimerkiksi metreissä eikä millimetreissä. Pitäisikö nämä mallit suurentaa?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Skaalaa erittäin pienet mallit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Pitäisikö tulostustyön nimeen lisätä automaattisesti tulostimen nimeen perustuva etuliite?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Lisää laitteen etuliite työn nimeen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Näytetäänkö yhteenveto, kun projektitiedosto tallennetaan?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Projektitiedoston avaamisen oletustoimintatapa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Projektitiedoston avaamisen oletustoimintatapa: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Avaa aina projektina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Tuo mallit aina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Kun olet tehnyt muutokset profiiliin ja vaihtanut toiseen, näytetään valintaikkuna, jossa kysytään, haluatko säilyttää vai hylätä muutokset. Tässä voit myös valita oletuskäytöksen, jolloin valintaikkunaa ei näytetä uudelleen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Tietosuoja" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Pitäisikö Curan tarkistaa saatavilla olevat päivitykset, kun ohjelma käynnistetään?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Tarkista päivitykset käynnistettäessä" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Pitäisikö anonyymejä tietoja tulosteesta lähettää Ultimakerille? Huomaa, että malleja, IP-osoitteita tai muita henkilökohtaisia tietoja ei lähetetä eikä tallenneta." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Lähetä (anonyymit) tulostustiedot" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivoi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Nimeä uudelleen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Luo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Jäljennös" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Tuo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Vie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Tuo materiaali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Materiaalin tuominen epäonnistui: %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiaalin tuominen onnistui: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Vie materiaali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Materiaalin vieminen epäonnistui kohteeseen %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiaalin vieminen onnistui kohteeseen %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Tiedot" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Näytä nimi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Materiaalin tyyppi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Väri" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Ominaisuudet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Tiheys" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Läpimitta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Tulostuslangan hinta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Tulostuslangan paino" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Tulostuslangan pituus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Hinta metriä kohden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Materiaali on linkitetty kohteeseen %1 ja niillä on joitain samoja ominaisuuksia." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Poista materiaalin linkitys" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Kuvaus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Tarttuvuustiedot" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Tulostusasetukset" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Luo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Jäljennös" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Luo profiili" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Monista profiili" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Nimeä profiili uudelleen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profiilin tuonti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profiilin vienti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Tulostin: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Päivitä nykyiset asetukset tai ohitukset profiiliin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Hylkää tehdyt muutokset" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Tässä profiilissa käytetään tulostimen oletusarvoja, joten siinä ei ole alla olevan listan asetuksia tai ohituksia." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Nykyiset asetukset vastaavat valittua profiilia." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Yleiset asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Laskettu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Asetus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profiili" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Nykyinen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Yksikkö" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Näkyvyyden asettaminen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Tarkista kaikki" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Suulake" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Kuuman pään kohdelämpötila. Kuuma pää lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, kuuman pään lämmitys sammutetaan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Peruuta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Esilämmitä" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Tämän suulakkeen materiaalin väri." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Tämän suulakkeen materiaali." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Tähän suulakkeeseen liitetty suutin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Alusta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "Lämmitettävän pöydän kohdelämpötila. Pöytä lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, pöydän lämmitys sammutetaan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Lämmitettävän pöydän nykyinen lämpötila." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Lämmitettävän pöydän esilämmityslämpötila." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Lämmitä pöytä ennen tulostusta. Voit edelleen säätää tulostinta sen lämmitessä, eikä sinun tarvitse odottaa pöydän lämpiämistä, kun olet valmis tulostamaan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Tulostinta ei ole yhdistetty." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Aktiivinen tulostustyö" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Työn nimi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Tulostusaika" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Aikaa jäljellä arviolta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Tulostusasetukset" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5023,120 +4085,1700 @@ msgstr "" "\n" "Avaa profiilin hallinta napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Hylkää tehdyt muutokset" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" +msgid "Profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Asteittainen täyttö lisää täytön tiheyttä vähitellen yläosaa kohti." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." +msgid "Gradual infill" msgstr "" -"Jotkin piilotetut asetukset käyttävät arvoja, jotka eroavat normaaleista lasketuista arvoista.\n" -"\n" -"Tee asetuksista näkyviä napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Asteittainen täyttö lisää täytön tiheyttä vähitellen yläosaa kohti." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Tulosta valittu malli asetuksella:" +msgstr[1] "Tulosta valitut mallit asetuksella:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Kerro valittu malli" +msgstr[1] "Kerro valitut mallit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Kopioiden määrä" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Materiaali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Tulostin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Materiaali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Aseta aktiiviseksi suulakepuristimeksi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Avaa &viimeisin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profiilit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Aktivoi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Luo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Jäljennös" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Nimeä uudelleen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Tuo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Vie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Luo profiili" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Monista profiili" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Nimeä profiili uudelleen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Profiilin tuonti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profiilin vienti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Tulostin: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Päivitä nykyiset asetukset tai ohitukset profiiliin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Tässä profiilissa käytetään tulostimen oletusarvoja, joten siinä ei ole alla olevan listan asetuksia tai ohituksia." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Nykyiset asetukset vastaavat valittua profiilia." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Yleiset asetukset" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Yleiset" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Käyttöliittymä" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Valuutta:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Teema:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Sovellus on käynnistettävä uudelleen, jotta nämä muutokset tulevat voimaan." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Viipaloi automaattisesti, kun asetuksia muutetaan." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Viipaloi automaattisesti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Näyttöikkunan käyttäytyminen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Korosta mallin vailla tukea olevat alueet punaisella. Ilman tukea nämä alueet eivät tulostu kunnolla." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Näytä uloke" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Siirtää kameraa siten, että valittuna oleva malli on näkymän keskellä." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Keskitä kamera kun kohde on valittu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Pitääkö Curan oletusarvoinen zoom-toimintatapa muuttaa päinvastaiseksi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Käännä kameran zoomin suunta päinvastaiseksi." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Tuleeko zoomauksen siirtyä hiiren suuntaan?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Zoomaa hiiren suuntaan" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Pitäisikö alustalla olevia malleja siirtää niin, etteivät ne enää leikkaa toisiaan?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Varmista, että mallit ovat erillään" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Pitäisikö tulostusalueella olevia malleja siirtää alas niin, että ne koskettavat tulostusalustaa?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Pudota mallit automaattisesti alustalle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Pakotetaanko kerros yhteensopivuustilaan?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Tiedostojen avaaminen ja tallentaminen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Pitäisikö mallit skaalata tulostustilavuuteen, jos ne ovat liian isoja?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Skaalaa suuret mallit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Malli voi vaikuttaa erittäin pieneltä, jos sen koko on ilmoitettu esimerkiksi metreissä eikä millimetreissä. Pitäisikö nämä mallit suurentaa?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Skaalaa erittäin pienet mallit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Pitäisikö tulostustyön nimeen lisätä automaattisesti tulostimen nimeen perustuva etuliite?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Lisää laitteen etuliite työn nimeen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Näytetäänkö yhteenveto, kun projektitiedosto tallennetaan?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Projektitiedoston avaamisen oletustoimintatapa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Projektitiedoston avaamisen oletustoimintatapa: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Avaa aina projektina" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Tuo mallit aina" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Kun olet tehnyt muutokset profiiliin ja vaihtanut toiseen, näytetään valintaikkuna, jossa kysytään, haluatko säilyttää vai hylätä muutokset. Tässä voit myös valita oletuskäytöksen, jolloin valintaikkunaa ei näytetä uudelleen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Tietosuoja" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Pitäisikö anonyymejä tietoja tulosteesta lähettää Ultimakerille? Huomaa, että malleja, IP-osoitteita tai muita henkilökohtaisia tietoja ei lähetetä eikä tallenneta." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Lähetä (anonyymit) tulostustiedot" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Pitäisikö Curan tarkistaa saatavilla olevat päivitykset, kun ohjelma käynnistetään?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Tarkista päivitykset käynnistettäessä" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Tiedot" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Näytä nimi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Materiaalin tyyppi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Väri" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Ominaisuudet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Tiheys" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Läpimitta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Tulostuslangan hinta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Tulostuslangan paino" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Tulostuslangan pituus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Hinta metriä kohden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Materiaali on linkitetty kohteeseen %1 ja niillä on joitain samoja ominaisuuksia." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Poista materiaalin linkitys" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Kuvaus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Tarttuvuustiedot" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Luo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Jäljennös" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Tuo materiaali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Materiaalin tuominen epäonnistui: %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Materiaalin tuominen onnistui: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Vie materiaali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Materiaalin vieminen epäonnistui kohteeseen %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Materiaalin vieminen onnistui kohteeseen %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Näkyvyyden asettaminen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Tarkista kaikki" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Tulostimet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Laskettu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Asetus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profiili" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Nykyinen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Yksikkö" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Ei yhteyttä tulostimeen" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Tulostin ei hyväksy komentoja" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Huolletaan. Tarkista tulostin" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Yhteys tulostimeen menetetty" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Tulostetaan..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Keskeytetty" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Valmistellaan..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Poista tuloste" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Haluatko varmasti keskeyttää tulostuksen?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Tulosta valittu malli asetuksella %1" +msgstr[1] "Tulosta valitut mallit asetuksella %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Suulake" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Kuuman pään kohdelämpötila. Kuuma pää lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, kuuman pään lämmitys sammutetaan." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Peruuta" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Esilämmitä" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Tämän suulakkeen materiaalin väri." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Tämän suulakkeen materiaali." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Tähän suulakkeeseen liitetty suutin." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Tulostinta ei ole yhdistetty." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Alusta" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "Lämmitettävän pöydän kohdelämpötila. Pöytä lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, pöydän lämmitys sammutetaan." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Lämmitettävän pöydän nykyinen lämpötila." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Lämmitettävän pöydän esilämmityslämpötila." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Lämmitä pöytä ennen tulostusta. Voit edelleen säätää tulostinta sen lämmitessä, eikä sinun tarvitse odottaa pöydän lämpiämistä, kun olet valmis tulostamaan." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Vaihda koko näyttöön" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Kumoa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "Tee &uudelleen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Lopeta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Määritä Curan asetukset..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "L&isää tulostin..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Tulostinten &hallinta..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Hallitse materiaaleja..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Päivitä nykyiset asetukset tai ohitukset profiiliin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Hylkää tehdyt muutokset" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Luo profiili nykyisten asetusten tai ohitusten perusteella..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Profiilien hallinta..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Näytä sähköinen &dokumentaatio" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Ilmoita &virheestä" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Tietoja..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Poista malli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ke&skitä malli alustalle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Ryhmittele mallit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Poista mallien ryhmitys" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "&Yhdistä mallit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Kerro malli..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Valitse kaikki mallit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Tyhjennä tulostusalusta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Lataa kaikki mallit uudelleen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Järjestä kaikki mallit" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Järjestä valinta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Määritä kaikkien mallien positiot uudelleen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Määritä kaikkien mallien muutokset uudelleen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Avaa tiedosto(t)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Uusi projekti..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Näytä määrityskansio" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Määritä asetusten näkyvyys..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Koskee seuraavia:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Riippuu seuraavista:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5147,7 +5789,7 @@ msgstr "" "\n" "Palauta profiilin arvo napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5158,507 +5800,93 @@ msgstr "" "\n" "Palauta laskettu arvo napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Kopioi arvo kaikkiin suulakepuristimiin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Piilota tämä asetus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Älä näytä tätä asetusta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Pidä tämä asetus näkyvissä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" +"Jotkin piilotetut asetukset käyttävät arvoja, jotka eroavat normaaleista lasketuista arvoista.\n" +"\n" +"Tee asetuksista näkyviä napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" +msgid "This package will be installed after restarting." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Asetukset" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Avaa tiedosto(t)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Löysimme vähintään yhden Gcode-tiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden Gcode-tiedoston kerrallaan. Jos haluat avata Gcode-tiedoston, valitse vain yksi." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Lisää tulostin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Tukee 3MF-tiedostojen lukemista." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-lukija" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Tukee 3MF-tiedostojen kirjoittamista." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-kirjoitin" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Linkki CuraEngine-viipalointiin taustalla." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine-taustaosa" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Tukee Cura-profiilien tuontia." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-profiilin lukija" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Tukee Cura-profiilien vientiä." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-profiilin kirjoitin" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Tarkistaa laiteohjelmistopäivitykset." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Laiteohjelmiston päivitysten tarkistus" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Tukee profiilien tuontia GCode-tiedostoista." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Mahdollistaa GCode-tiedostojen lataamisen ja näyttämisen." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "GCode-lukija" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Kuvanlukija" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Aikaisempien Cura-profiilien lukija" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5669,34 +5897,54 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Mallikohtaisten asetusten työkalu" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Lisäosa, jonka avulla käyttäjät voivat luoda komentosarjoja jälkikäsittelyä varten" +msgid "Provides support for importing Cura profiles." +msgstr "Tukee Cura-profiilien tuontia." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Jälkikäsittely" +msgid "Cura Profile Reader" +msgstr "Cura-profiilin lukija" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." +msgid "Provides support for reading X3D files." +msgstr "Tukee X3D-tiedostojen lukemista." + +#: X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-lukija" + +#: CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." msgstr "" -#: PrepareStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Prepare Stage" +msgid "Cura Backups" msgstr "" -#: PreviewStage/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." msgstr "" -#: PreviewStage/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Preview Stage" +msgid "Machine Settings Action" +msgstr "" + +#: SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "" + +#: SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" msgstr "" #: RemovableDriveOutputDevice/plugin.json @@ -5709,6 +5957,46 @@ msgctxt "name" msgid "Removable Drive Output Device Plugin" msgstr "Irrotettavan aseman tulostusvälineen laajennus" +#: FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "" + +#: FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "" + +#: LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista." + +#: LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Aikaisempien Cura-profiilien lukija" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Tukee 3MF-tiedostojen lukemista." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-lukija" + +#: UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" + +#: UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "" + #: SentryLogger/plugin.json msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" @@ -5719,16 +6007,156 @@ msgctxt "name" msgid "Sentry Logger" msgstr "" -#: SimulationView/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Provides the Simulation view." +msgid "Provides support for importing profiles from g-code files." +msgstr "Tukee profiilien tuontia GCode-tiedostoista." + +#: GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" msgstr "" -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." msgstr "" +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Näyttää kerrosnäkymän." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Kerrosnäkymä" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Linkki CuraEngine-viipalointiin taustalla." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine-taustaosa" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "" + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "" + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Lisäosa, jonka avulla käyttäjät voivat luoda komentosarjoja jälkikäsittelyä varten" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Jälkikäsittely" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Tukee Cura-profiilien vientiä." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-profiilin kirjoitin" + +#: USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston." + +#: USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB-tulostus" + +#: PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "" + +#: PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "" + +#: GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Mahdollistaa GCode-tiedostojen lataamisen ja näyttämisen." + +#: GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "GCode-lukija" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Kuvanlukija" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ultimaker-laitteen toiminnot" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "" + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Tarkistaa laiteohjelmistopäivitykset." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Laiteohjelmiston päivitysten tarkistus" + #: SliceInfoPlugin/plugin.json msgctxt "description" msgid "Submits anonymous slice info. Can be disabled through preferences." @@ -5739,24 +6167,24 @@ msgctxt "name" msgid "Slice info" msgstr "Viipalointitiedot" -#: SolidView/plugin.json +#: XmlMaterialProfile/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Näyttää normaalin kiinteän verkkonäkymän." +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen." -#: SolidView/plugin.json +#: XmlMaterialProfile/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Kiinteä näkymä" +msgid "Material Profiles" +msgstr "Materiaaliprofiilit" -#: SupportEraser/plugin.json +#: DigitalLibrary/plugin.json msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." msgstr "" -#: SupportEraser/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "Support Eraser" +msgid "Ultimaker Digital Library" msgstr "" #: Toolbox/plugin.json @@ -5769,86 +6197,36 @@ msgctxt "name" msgid "Toolbox" msgstr "" -#: TrimeshReader/plugin.json +#: GCodeWriter/plugin.json msgctxt "description" -msgid "Provides support for reading model files." +msgid "Writes g-code to a file." msgstr "" -#: TrimeshReader/plugin.json +#: GCodeWriter/plugin.json msgctxt "name" -msgid "Trimesh Reader" +msgid "G-code Writer" msgstr "" -#: UFPReader/plugin.json +#: SimulationView/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." +msgid "Provides the Simulation view." msgstr "" -#: UFPReader/plugin.json +#: SimulationView/plugin.json msgctxt "name" -msgid "UFP Reader" +msgid "Simulation View" msgstr "" -#: UFPWriter/plugin.json +#: VersionUpgrade/VersionUpgrade45to46/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." msgstr "" -#: UFPWriter/plugin.json +#: VersionUpgrade/VersionUpgrade45to46/plugin.json msgctxt "name" -msgid "UFP Writer" +msgid "Version Upgrade 4.5 to 4.6" msgstr "" -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker-laitteen toiminnot" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "" - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB-tulostus" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Päivitys versiosta 2.1 versioon 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Päivitys versiosta 2.2 versioon 2.4" - #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." @@ -5859,54 +6237,24 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Päivitys versiosta 2.5 versioon 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Päivittää kokoonpanon versiosta Cura 2.6 versioon Cura 2.7." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Päivitys versiosta 2.6 versioon 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Päivittää kokoonpanon versiosta Cura 2.7 versioon Cura 3.0." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Päivitys versiosta 2.7 versioon 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." msgstr "" -#: VersionUpgrade/VersionUpgrade30to31/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" +msgid "Version Upgrade 4.6.0 to 4.6.2" msgstr "" -#: VersionUpgrade/VersionUpgrade32to33/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." msgstr "" -#: VersionUpgrade/VersionUpgrade32to33/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" +msgid "Version Upgrade 4.7 to 4.8" msgstr "" #: VersionUpgrade/VersionUpgrade34to35/plugin.json @@ -5919,34 +6267,44 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Päivitys versiosta 2.1 versioon 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." msgstr "" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" +msgid "Version Upgrade 3.2 to 3.3" msgstr "" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." msgstr "" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" msgstr "" #: VersionUpgrade/VersionUpgrade42to43/plugin.json @@ -5969,66 +6327,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6039,35 +6337,179 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Tukee X3D-tiedostojen lukemista." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Päivittää kokoonpanon versiosta Cura 2.7 versioon Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-lukija" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Päivitys versiosta 2.7 versioon 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Päivittää kokoonpanon versiosta Cura 2.6 versioon Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaaliprofiilit" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Päivitys versiosta 2.6 versioon 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Näyttää kerrosnäkymän." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Kerrosnäkymä" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Päivitys versiosta 2.2 versioon 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "" + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "" + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Näyttää normaalin kiinteän verkkonäkymän." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Kiinteä näkymä" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Tukee 3MF-tiedostojen kirjoittamista." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-kirjoitin" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "" + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "" + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "" + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Uusi tulostimen %s laiteohjelmisto saatavilla" #~ msgctxt "@action:inmenu menubar:edit" #~ msgid "Delete Selected Model" diff --git a/resources/i18n/fi_FI/fdmextruder.def.json.po b/resources/i18n/fi_FI/fdmextruder.def.json.po index bf103b91a4..a814af04d4 100644 --- a/resources/i18n/fi_FI/fdmextruder.def.json.po +++ b/resources/i18n/fi_FI/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2017-08-11 14:31+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index d1ffed61eb..ba8d2db2c2 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2017-09-27 12:27+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -149,6 +149,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "Tulostettavan alueen syvyys (Y-suunta)." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Laitteen korkeus" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Tulostettavan alueen korkeus (Z-suunta)." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -189,16 +199,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Laitteen korkeus" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Tulostettavan alueen korkeus (Z-suunta)." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -556,8 +556,8 @@ msgstr "Z-suunnan moottorin maksiminopeus." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Maksimisyöttönopeus" +msgid "Maximum Speed E" +msgstr "" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -681,7 +681,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." msgstr "" #: fdmprinter.def.json @@ -1429,6 +1429,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "" +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1499,6 +1509,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Siksak" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1706,7 +1726,7 @@ msgstr "Täyttökuvio" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." msgstr "" #: fdmprinter.def.json @@ -1774,6 +1794,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1986,6 +2011,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "" + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3176,6 +3241,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Kaikki" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5125,8 +5195,8 @@ msgstr "Muotin vähimmäisleveys" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "Muotin ulkoseinän ja mallin ulkoseinän välinen vähimmäisetäisyys." +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "" #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5293,6 +5363,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Siksak" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6392,6 +6472,14 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta." +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maksimisyöttönopeus" + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Muotin ulkoseinän ja mallin ulkoseinän välinen vähimmäisetäisyys." + #~ msgctxt "machine_use_extruder_offset_to_offset_coords description" #~ msgid "Apply the extruder offset to the coordinate system." #~ msgstr "Käytä suulakkeen siirtymää koordinaattijärjestelmään." diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index a0f3ac59cb..f8a41bc81c 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 15:16+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2021-09-07 07:48+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: French , French \n" "Language: fr_FR\n" @@ -15,182 +15,451 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Inconnu" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur : {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Les imprimantes ci-dessous ne peuvent pas être connectées car elles font partie d'un groupe" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Sauvegarde" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Imprimantes en réseau disponibles" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Pas écrasé" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "A essayé de restaurer une sauvegarde Cura supérieure à la version actuelle." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "L'erreur suivante s'est produite lors de la restauration d'une sauvegarde Cura :" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Veuillez synchroniser les profils de matériaux avec vos imprimantes avant de commencer à imprimer." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Nouveaux matériaux installés" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Synchroniser les matériaux" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "En savoir plus" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Impossible d'enregistrer l'archive du matériau dans {} :" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Échec de l'enregistrement de l'archive des matériaux" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Erreur inconnue." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "La hauteur du volume d'impression a été réduite en raison de la valeur du paramètre « Séquence d'impression » afin d'éviter que le portique ne heurte les modèles imprimés." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volume d'impression" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Voulez-vous vraiment supprimer l'objet {0} ? Cette action est irréversible !" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Pas écrasé" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Inconnu" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Les imprimantes ci-dessous ne peuvent pas être connectées car elles font partie d'un groupe" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Imprimantes en réseau disponibles" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visuel" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Le profil visuel est conçu pour imprimer des prototypes et des modèles visuels dans le but d'obtenir une qualité visuelle et de surface élevée." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Le profil d'ingénierie est conçu pour imprimer des prototypes fonctionnels et des pièces finales dans le but d'obtenir une meilleure précision et des tolérances plus étroites." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Ébauche" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Matériau personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Personnaliser les profils" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tous les types supportés ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tous les fichiers (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visuel" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Le profil visuel est conçu pour imprimer des prototypes et des modèles visuels dans le but d'obtenir une qualité visuelle et de surface élevée." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Le profil d'ingénierie est conçu pour imprimer des prototypes fonctionnels et des pièces finales dans le but d'obtenir une meilleure précision et des tolérances plus étroites." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Ébauche" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Matériau personnalisé" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Personnalisé" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "La connexion a échoué" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Recherche d'un nouvel emplacement pour les objets" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Recherche d'emplacement" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Impossible de trouver un emplacement dans le volume d'impression pour tous les objets" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Impossible de trouver un emplacement" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur : {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Échec de la création de l'archive des matériaux à synchroniser avec les imprimantes." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Sauvegarde" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Impossible de charger l'archive des matériaux pour la synchroniser avec les imprimantes." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "La réponse de Digital Factory semble être corrompue." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "A essayé de restaurer une sauvegarde Cura supérieure à la version actuelle." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "Il manque des informations importantes dans la réponse de Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "L'erreur suivante s'est produite lors de la restauration d'une sauvegarde Cura :" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Échec de la connexion à Digital Factory pour synchroniser les matériaux avec certaines imprimantes." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Échec de la connexion à Digital Factory." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Chargement des machines..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Configuration des préférences..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Initialisation de la machine active..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Initialisation du gestionnaire de machine..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Initialisation du volume de fabrication..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Préparation de la scène..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Chargement de l'interface..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Initialisation du moteur..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "La hauteur du volume d'impression a été réduite en raison de la valeur du paramètre « Séquence d'impression » afin d'éviter que le portique ne heurte les modèles imprimés." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume d'impression" +msgid "Warning" +msgstr "Avertissement" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Erreur" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Passer" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Fermer" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Suivant" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Fin" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Ajouter" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuler" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Groupe nº {group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Paroi externe" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Parois internes" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Couche extérieure" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Remplissage" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Remplissage du support" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface du support" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Support" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Jupe" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Tour primaire" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Déplacement" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Rétractions" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Autre" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "Les notes de version n'ont pas pu être ouvertes." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Échec du démarrage de Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +474,32 @@ msgstr "" "

    Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Envoyer le rapport de d'incident à Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Afficher le rapport d'incident détaillé" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Afficher le dossier de configuration" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Sauvegarder et réinitialiser la configuration" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Rapport d'incident" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,676 +510,641 @@ msgstr "" "

    Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informations système" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Inconnu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Version Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Langue de Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Langue du SE" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plate-forme" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Version Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Version PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Pas encore initialisé
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Version OpenGL : {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Revendeur OpenGL : {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Moteur de rendu OpenGL : {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Retraçage de l'erreur" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Journaux" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Envoyer rapport" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Chargement des machines..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Configuration des préférences..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Initialisation de la machine active..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Initialisation du gestionnaire de machine..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Initialisation du volume de fabrication..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Préparation de la scène..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Chargement de l'interface..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Initialisation du moteur..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Avertissement" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Erreur" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Multiplication et placement d'objets" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Placement des objets" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Placement de l'objet" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Impossible de lire la réponse." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "L'état fourni n'est pas correct." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Une erreur s'est produite lors de la connexion, veuillez réessayer." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Impossible d’atteindre le serveur du compte Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Échec de la connexion" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "L'état fourni n'est pas correct." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Délai d'expiration lors de l'authentification avec le serveur de compte." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Une erreur s'est produite lors de la connexion, veuillez réessayer." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Impossible de lire la réponse." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Multiplication et placement d'objets" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Placement des objets" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Placement de l'objet" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Non pris en charge" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Buse" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles :" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Paramètres mis à jour" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extrudeuse(s) désactivée(s)" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Le fichier existe déjà" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer ?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL de fichier invalide :" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Échec de l'exportation du profil vers {0} : {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Échec de l'exportation du profil vers {0} : le plug-in du générateur a rapporté une erreur." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil exporté vers {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "L'exportation a réussi" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossible d'importer le profil depuis {0} : {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Impossible d'importer le profil depuis {0} avant l'ajout d'une imprimante." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Aucun profil personnalisé à importer dans le fichier {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0} :" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Le profil {0} contient des données incorrectes ; échec de l'importation." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0} :" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Importation du profil {0} réussie." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Le fichier {0} ne contient pas de profil valide." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Le profil {0} est un type de fichier inconnu ou est corrompu." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Personnaliser le profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Il manque un type de qualité au profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Aucune imprimante n'est active pour le moment." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossible d'ajouter le profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Le type de qualité « {0} » n'est pas compatible avec la définition actuelle de la machine active « {1} »." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avertissement : le profil n'est pas visible car son type de qualité « {0} » n'est pas disponible pour la configuration actuelle. Passez à une combinaison matériau/buse qui peut utiliser ce type de qualité." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Non pris en charge" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Buse" +msgid "Per Model Settings" +msgstr "Paramètres par modèle" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles :" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurer les paramètres par modèle" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Profil Cura" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Fichier X3D" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Une erreur s’est produite lors de la tentative de restauration de votre sauvegarde." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Paramètres mis à jour" +msgid "Backups" +msgstr "Sauvegardes" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrudeuse(s) désactivée(s)" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Une erreur s’est produite lors du téléchargement de votre sauvegarde." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Ajouter" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Création de votre sauvegarde..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Fin" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Une erreur s'est produite lors de la création de votre sauvegarde." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuler" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Téléchargement de votre sauvegarde..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Le téléchargement de votre sauvegarde est terminé." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "La sauvegarde dépasse la taille de fichier maximale." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gérer les sauvegardes" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Paramètres de la machine" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Blocage des supports" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Créer un volume dans lequel les supports ne sont pas imprimés." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Lecteur amovible" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Enregistrer sur un lecteur amovible" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Groupe nº {group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Enregistrer sur un lecteur amovible {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Paroi externe" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Aucun format de fichier n'est disponible pour écriture !" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Parois internes" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Enregistrement sur le lecteur amovible {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Couche extérieure" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Remplissage" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Remplissage du support" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface du support" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Support" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Jupe" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Tour primaire" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Déplacement" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Rétractions" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Autre" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Suivant" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Passer" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Fermer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistant de modèle 3D" +msgid "Saving" +msgstr "Enregistrement" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Impossible d'enregistrer {0} : {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle :

    \n" -"

    {model_names}

    \n" -"

    Découvrez comment optimiser la qualité et la fiabilité de l'impression.

    \n" -"

    Consultez le guide de qualité d'impression

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Enregistré sur le lecteur amovible {0} sous {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Fichier enregistré" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejecter" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Ejecter le lecteur amovible {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Retirez le lecteur en toute sécurité" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Mettre à jour le firmware" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Profils Cura 15.04" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recommandé" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personnalisé" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Le fichier projet {0} contient un type de machine inconnu {1}. Impossible d'importer la machine. Les modèles seront importés à la place." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Ouvrir un fichier de projet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Le fichier de projet {0} est soudainement inaccessible : {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Impossible d'ouvrir le fichier de projet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Le fichier de projet {0} est corrompu : {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "Le fichier de projet {0} a été réalisé en utilisant des profils inconnus de cette version d'Ultimaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recommandé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Fichier 3MF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Le plug-in 3MF Writer est corrompu." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Impossible d'écrire dans le fichier UFP :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Aucune autorisation d'écrire l'espace de travail ici." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Le système d'exploitation ne permet pas d'enregistrer un fichier de projet à cet emplacement ou avec ce nom de fichier." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erreur d'écriture du fichier 3MF." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Fichier 3MF" +msgid "Ultimaker Format Package" +msgstr "Ultimaker Format Package" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Projet Cura fichier 3MF" +msgid "G-code File" +msgstr "Fichier GCode" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Fichier AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Sauvegardes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Une erreur s’est produite lors du téléchargement de votre sauvegarde." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Création de votre sauvegarde..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Une erreur s'est produite lors de la création de votre sauvegarde." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Téléchargement de votre sauvegarde..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Le téléchargement de votre sauvegarde est terminé." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "La sauvegarde dépasse la taille de fichier maximale." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Une erreur s’est produite lors de la tentative de restauration de votre sauvegarde." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gérer les sauvegardes" +msgid "Preview" +msgstr "Aperçu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Visualisation par rayons X" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Traitement des couches" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informations" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Échec de la découpe avec une erreur inattendue. Signalez un bug sur notre outil de suivi des problèmes." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Échec de la découpe" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Notifier un bug" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Notifiez un bug sur l'outil de suivi des problèmes d'Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Impossible de découper" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs : {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Impossible de couper en raison de certains paramètres par modèle. Les paramètres suivants contiennent des erreurs sur un ou plusieurs modèles : {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -923,465 +1157,436 @@ msgstr "" "- Sont affectés à un extrudeur activé\n" "- N sont pas tous définis comme des mailles de modificateur" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Traitement des couches" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Informations" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profil Cura" +msgid "AMF File" +msgstr "Fichier AMF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Impossible d'accéder aux informations de mise à jour." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne possédez pas la dernière version disponible, il est recommandé de mettre à jour le micrologiciel sur votre imprimante avec la version {latest_version}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Nouveau firmware %s disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Comment effectuer la mise à jour" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Mettre à jour le firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Fichier G-Code compressé" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter ne prend pas en charge le mode texte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Fichier GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analyse du G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Détails G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Fichier G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter ne prend pas en charge le mode non-texte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Veuillez préparer le G-Code avant d'exporter." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Image JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Image JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Image PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Image BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Image GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profils Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Paramètres de la machine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Surveiller" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Paramètres par modèle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurer les paramètres par modèle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-traitement" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modifier le G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Impression par USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Imprimer via USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimer via USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Connecté via USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Une impression est encore en cours. Cura ne peut pas démarrer une autre impression via USB tant que l'impression précédente n'est pas terminée." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impression en cours" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Préparer" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Aperçu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Enregistrer sur un lecteur amovible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Enregistrer sur un lecteur amovible {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Aucun format de fichier n'est disponible pour écriture !" +msgid "Parsing G-code" +msgstr "Analyse du G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Enregistrement sur le lecteur amovible {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Enregistrement" +msgid "G-code Details" +msgstr "Détails G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Impossible d'enregistrer {0} : {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Enregistré sur le lecteur amovible {0} sous {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Fichier enregistré" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Ejecter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejecter le lecteur amovible {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Retirez le lecteur en toute sécurité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Lecteur amovible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Vue simulation" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Rien ne s'affiche car vous devez d'abord découper." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Pas de couches à afficher" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Ne plus afficher ce message" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Vue en couches" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étrangères. Réparez votre modèle et ouvrez-le à nouveau dans Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erreurs du modèle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "En savoir plus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Vue solide" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Blocage des supports" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Créer un volume dans lequel les supports ne sont pas imprimés." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Changements détectés à partir de votre compte Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchroniser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronisation..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Refuser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Accepter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Plug-in d'accord de licence" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Décliner et supprimer du compte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Vous devez quitter et redémarrer {} avant que les changements apportés ne prennent effet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Échec de téléchargement des plugins {}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Ouvrir le maillage triangulaire compressé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "Fichier G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF binaire" +msgid "JPG Image" +msgstr "Image JPG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "JSON incorporé glTF" +msgid "JPEG Image" +msgstr "Image JPEG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Format Triangle de Stanford" +msgid "PNG Image" +msgstr "Image PNG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange compressé" +msgid "BMP Image" +msgstr "Image BMP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +msgid "GIF Image" +msgstr "Image GIF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Impossible d'écrire dans le fichier UFP :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Nivellement du plateau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Sélectionner les mises à niveau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter ne prend pas en charge le mode texte." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Impossible d'accéder aux informations de mise à jour." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne l'avez pas encore fait, il est recommandé de mettre à jour le micrologiciel de votre imprimante avec la version {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nouveau %s firmware stable disponible" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Comment effectuer la mise à jour" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Impossible de lire le fichier de données d'exemple." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Vous devez quitter et redémarrer {} avant que les changements apportés ne prennent effet." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Synchronisation..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Changements détectés à partir de votre compte Ultimaker" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Synchroniser" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Décliner et supprimer du compte" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Échec de téléchargement des plugins {}" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Refuser" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Accepter" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Plug-in d'accord de licence" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter ne prend pas en charge le mode non-texte." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Veuillez préparer le G-Code avant d'exporter." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Vue simulation" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Rien ne s'affiche car vous devez d'abord découper." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Pas de couches à afficher" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Ne plus afficher ce message" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Vue en couches" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Imprimer sur le réseau" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprimer sur le réseau" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Connecté sur le réseau" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "demain" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "aujourd'hui" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Connecter via le réseau" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Veuillez patienter jusqu'à ce que la tâche en cours ait été envoyée." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Erreur d'impression" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "L'envoi de la tâche d'impression à l'imprimante a réussi." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Données envoyées" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas Ultimaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Mettre à jour votre imprimante" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "La file d'attente pour les tâches d'impression est pleine. L'imprimante ne peut pas accepter une nouvelle tâche." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "La file d'attente est pleine" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Lancement d'une tâche d'impression" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Téléchargement de la tâche d'impression sur l'imprimante." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Envoi de matériaux à l'imprimante" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Impossible de transférer les données à l'imprimante." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Erreur de réseau" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Pas un hôte de groupe" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurer le groupe" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Votre imprimante {printer_name} pourrait être connectée via le cloud.\n" +" Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Êtes-vous prêt pour l'impression dans le cloud ?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Prise en main" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "En savoir plus" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimer via le cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimer via le cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Connecté via le cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Surveiller l'impression" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Suivre l'impression dans Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression : {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "Nouvelle imprimante détectée à partir de votre compte Ultimaker" msgstr[1] "Nouvelles imprimantes détectées à partir de votre compte Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1389,71 +1594,71 @@ msgid_plural "... and {0} others" msgstr[0] "... et {0} autre" msgstr[1] "... et {0} autres" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Imprimantes ajoutées à partir de Digital Factory :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Une connexion cloud n'est pas disponible pour une imprimante" msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "Cette imprimante n'est pas associée à Digital Factory :" msgstr[1] "Ces imprimantes ne sont pas associées à Digital Factory :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Pour établir une connexion, veuillez visiter le site {website_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Conserver les configurations d'imprimante" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Supprimer des imprimantes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Voulez-vous vraiment supprimer {printer_name} temporairement ?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Supprimer des imprimantes ?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1469,7 +1674,7 @@ msgstr[1] "" "Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n" "Voulez-vous vraiment continuer ?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1478,761 +1683,1638 @@ msgstr "" "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\n" "Voulez-vous vraiment continuer ?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Ouvrir le maillage triangulaire compressé" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF binaire" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF incorporé JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Format Triangle de Stanford" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange compressé" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Lancez et surveillez des impressions où que vous soyez avec votre compte Ultimaker." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étrangères. Réparez votre modèle et ouvrez-le à nouveau dans Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Se connecter à Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Prise en main" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas Ultimaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Mettre à jour votre imprimante" +msgid "Model Errors" +msgstr "Erreurs du modèle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Envoi de matériaux à l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Pas un hôte de groupe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Configurer le groupe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Veuillez patienter jusqu'à ce que la tâche en cours ait été envoyée." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Erreur d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Impossible de transférer les données à l'imprimante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Erreur de réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Lancement d'une tâche d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Téléchargement de la tâche d'impression sur l'imprimante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "La file d'attente pour les tâches d'impression est pleine. L'imprimante ne peut pas accepter une nouvelle tâche." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "La file d'attente est pleine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "L'envoi de la tâche d'impression à l'imprimante a réussi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Données envoyées" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimer sur le réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprimer sur le réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Connecté sur le réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Connecter via le réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "demain" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "aujourd'hui" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impression par USB" +msgid "Solid view" +msgstr "Vue solide" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimer via USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Erreur d'écriture du fichier 3MF." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimer via USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Le plug-in 3MF Writer est corrompu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Il n'y a pas encore d'espace de travail à écrire. Veuillez d'abord ajouter une imprimante." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Aucune autorisation d'écrire l'espace de travail ici." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Le système d'exploitation ne permet pas d'enregistrer un fichier de projet à cet emplacement ou avec ce nom de fichier." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Fichier 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Projet Cura fichier 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Surveiller" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Assistant de modèle 3D" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Connecté via USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle :

    \n" +"

    {model_names}

    \n" +"

    Découvrez comment optimiser la qualité et la fiabilité de l'impression.

    \n" +"

    Consultez le guide de qualité d'impression

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?" +msgid "Mesh Type" +msgstr "Type de maille" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Une impression est encore en cours. Cura ne peut pas démarrer une autre impression via USB tant que l'impression précédente n'est pas terminée." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Modèle normal" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impression en cours" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimer comme support" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modifier les paramètres de chevauchement" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Ne prend pas en charge le chevauchement" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Fichier X3D" +msgid "Infill mesh only" +msgstr "Maille de remplissage uniquement" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visualisation par rayons X" +msgid "Cutting mesh" +msgstr "Maille de coupe" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Certains éléments pourraient causer des problèmes à cette impression. Cliquez pour voir les conseils d'ajustement." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Sélectionner les paramètres" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Sélectionner les paramètres pour personnaliser ce modèle" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrer..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Afficher tout" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Version Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Machines" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Matériaux" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profils" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plug-ins" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Vous en voulez plus ?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Sauvegarder maintenant" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Sauvegarde automatique" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Créez automatiquement une sauvegarde chaque jour où Cura est démarré." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Restaurer" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Supprimer la sauvegarde" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Êtes-vous sûr de vouloir supprimer cette sauvegarde ? Il est impossible d'annuler cette action." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurer la sauvegarde" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Vous devez redémarrer Cura avant que votre sauvegarde ne soit restaurée. Voulez-vous fermer Cura maintenant ?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Sauvegardez et synchronisez vos paramètres Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Se connecter" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Mes sauvegardes" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauvegarder maintenant » pour en créer une." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Pendant la phase de prévisualisation, vous ne pourrez voir qu'un maximum de 5 sauvegardes. Supprimez une sauvegarde pour voir les plus anciennes." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Paramètres de l'imprimante" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Largeur)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profondeur)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Hauteur)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forme du plateau" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origine au centre" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Plateau chauffant" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de fabrication chauffant" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Parfum G-Code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Paramètres de la tête d'impression" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Hauteur du portique" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Nombre d'extrudeuses" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Appliquer les décalages offset de l'extrudeuse au GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Code de démarrage" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-Code de fin" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Paramètres de la buse" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Taille de la buse" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diamètre du matériau compatible" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Décalage buse X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Décalage buse Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Numéro du ventilateur de refroidissement" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Extrudeuse G-Code de démarrage" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Extrudeuse G-Code de fin" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Imprimante" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Mettre à jour le firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Le firmware est le logiciel fonctionnant directement dans votre imprimante 3D. Ce firmware contrôle les moteurs pas à pas, régule la température et surtout, fait que votre machine fonctionne." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Mise à niveau automatique du firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Charger le firmware personnalisé" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Sélectionner le firmware personnalisé" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Mise à jour du firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Mise à jour du firmware en cours." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Mise à jour du firmware terminée." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Échec de la mise à jour du firmware en raison du firmware manquant." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Ouvrir un projet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Mettre à jour l'existant" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Créer" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Résumé - Projet Cura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Paramètres de l'imprimante" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Comment le conflit de la machine doit-il être résolu ?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Type" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Groupe d'imprimantes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Paramètres de profil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Comment le conflit du profil doit-il être résolu ?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Nom" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Absent du profil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 écrasent" msgstr[1] "%1 écrase" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Dérivé de" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 écrasent" msgstr[1] "%1, %2 écrase" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Paramètres du matériau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Comment le conflit du matériau doit-il être résolu ?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Visibilité des paramètres" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Mode" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Paramètres visibles :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 sur %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Ouvrir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Vous en voulez plus ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Sauvegarder maintenant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Sauvegarde automatique" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Créez automatiquement une sauvegarde chaque jour où Cura est démarré." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Supprimer la sauvegarde" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Êtes-vous sûr de vouloir supprimer cette sauvegarde ? Il est impossible d'annuler cette action." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurer la sauvegarde" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Vous devez redémarrer Cura avant que votre sauvegarde ne soit restaurée. Voulez-vous fermer Cura maintenant ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Version Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Machines" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Matériaux" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profils" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" +msgid "Post Processing Plugin" +msgstr "Plug-in de post-traitement" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mes sauvegardes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauvegarder maintenant » pour en créer une." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Pendant la phase de prévisualisation, vous ne pourrez voir qu'un maximum de 5 sauvegardes. Supprimez une sauvegarde pour voir les plus anciennes." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Sauvegardez et synchronisez vos paramètres Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Se connecter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Mettre à jour le firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Le firmware est le logiciel fonctionnant directement dans votre imprimante 3D. Ce firmware contrôle les moteurs pas à pas, régule la température et surtout, fait que votre machine fonctionne." +msgid "Post Processing Scripts" +msgstr "Scripts de post-traitement" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Ajouter un script" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations." +msgid "Settings" +msgstr "Paramètres" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Mise à niveau automatique du firmware" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Modifiez les scripts de post-traitement actifs." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Charger le firmware personnalisé" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Le script suivant est actif :" +msgstr[1] "Les scripts suivants sont actifs :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Sélectionner le firmware personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Mise à jour du firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Mise à jour du firmware en cours." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Mise à jour du firmware terminée." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Échec de la mise à jour du firmware en raison du firmware manquant." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Conversion de l'image..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "La distance maximale de chaque pixel à partir de la « Base »." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Hauteur (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "La hauteur de la base à partir du plateau en millimètres." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "La largeur en millimètres sur le plateau." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Largeur (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "La profondeur en millimètres sur le plateau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profondeur (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Pour les lithophanies, les pixels foncés doivent correspondre à des emplacements plus épais afin d'empêcher la lumière de passer. Pour des cartes de hauteur, les pixels clairs signifient un terrain plus élevé, de sorte que les pixels clairs doivent correspondre à des emplacements plus épais dans le modèle 3D généré." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Le plus foncé est plus haut" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Le plus clair est plus haut" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Pour les lithophanes, un modèle logarithmique simple de la translucidité est disponible. Pour les cartes de hauteur, les valeurs des pixels correspondent aux hauteurs de façon linéaire." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Linéaire" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Translucidité" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "Le pourcentage de lumière pénétrant une impression avec une épaisseur de 1 millimètre. La diminution de cette valeur augmente le contraste dans les régions sombres et diminue le contraste dans les régions claires de l'image." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Transmission 1 mm (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "La quantité de lissage à appliquer à l'image." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Lissage" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker Original" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivellement du plateau" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Pour obtenir des résultats d'impression optimaux, vous pouvez maintenant régler votre plateau. Quand vous cliquez sur 'Aller à la position suivante', la buse se déplacera vers les différentes positions pouvant être réglées." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Pour chacune des positions ; glissez un bout de papier sous la buse et ajustez la hauteur du plateau. La hauteur du plateau est juste lorsque la pointe de la buse gratte légèrement le papier." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Démarrer le nivellement du plateau" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Aller à la position suivante" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Plus d'informations sur la collecte de données anonymes" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura recueille des données anonymes afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données partagées :" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Je ne veux pas envoyer de données anonymes" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Autoriser l'envoi de données anonymes" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Marché en ligne" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Vous devez redémarrer Cura pour que les changements apportés aux paquets ne prennent effet." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Quitter %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Installer" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Installé" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Premium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Aller sur le Marché en ligne" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Rechercher des matériaux" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Compatibilité" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Machine" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Plateau" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Support" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Qualité" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Fiche technique" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Fiche de sécurité" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Directives d'impression" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Site Internet" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Connexion nécessaire pour l'installation ou la mise à jour" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Acheter des bobines de matériau" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Mise à jour" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Mise à jour" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Mis à jour" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Précédent" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Imprimante" +msgid "Plugins" +msgstr "Plug-ins" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Paramètres de la buse" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Matériaux" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Installé" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Taille de la buse" +msgid "Will install upon restarting" +msgstr "S'installera au redémarrage" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Connexion nécessaire pour effectuer la mise à jour" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Revenir à une version précédente" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Désinstaller" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Contributions de la communauté" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diamètre du matériau compatible" +msgid "Community Plugins" +msgstr "Plug-ins de la communauté" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Décalage buse X" +msgid "Generic Materials" +msgstr "Matériaux génériques" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Récupération des paquets..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Décalage buse Y" +msgid "Website" +msgstr "Site Internet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numéro du ventilateur de refroidissement" +msgid "Email" +msgstr "E-mail" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Extrudeuse G-Code de démarrage" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour Ultimaker Cura Enterprise" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Extrudeuse G-Code de fin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Paramètres de l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (Largeur)" +msgid "Version" +msgstr "Version" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profondeur)" +msgid "Last updated" +msgstr "Dernière mise à jour" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Hauteur)" +msgid "Brand" +msgstr "Marque" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Forme du plateau" +msgid "Downloads" +msgstr "Téléchargements" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Plug-ins installés" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Aucun plug-in n'a été installé." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Matériaux installés" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Aucun matériau n'a été installé." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Plug-ins groupés" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Matériaux groupés" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Impossible de se connecter à la base de données Cura Package. Veuillez vérifier votre connexion." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Origine au centre" +msgid "You need to accept the license to install the package" +msgstr "Vous devez accepter la licence pour installer le package" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Changements à partir de votre compte" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Ignorer" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Suivant" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Plateau chauffant" +msgid "The following packages will be added:" +msgstr "Les packages suivants seront ajoutés :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de fabrication chauffant" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Les packages suivants ne peuvent pas être installés en raison d'une version incompatible de Cura :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Confirmer la désinstallation" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Vous désinstallez des matériaux et/ou des profils qui sont encore en cours d'utilisation. La confirmation réinitialisera les matériaux / profils suivants à leurs valeurs par défaut." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Matériaux" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Profils" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Confirmer" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Parfum G-Code" +msgid "Color scheme" +msgstr "Modèle de couleurs" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Paramètres de la tête d'impression" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Couleur du matériau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Type de ligne" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Vitesse" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Épaisseur de la couche" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Largeur de ligne" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Débit" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X min" +msgid "Compatibility Mode" +msgstr "Mode de compatibilité" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y min" +msgid "Travels" +msgstr "Déplacements" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X max" +msgid "Helpers" +msgstr "Aides" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y max" +msgid "Shell" +msgstr "Coque" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Hauteur du portique" +msgid "Infill" +msgstr "Remplissage" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Nombre d'extrudeuses" +msgid "Starts" +msgstr "Démarre" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Appliquer les décalages offset de l'extrudeuse au GCode" +msgid "Only Show Top Layers" +msgstr "Afficher uniquement les couches supérieures" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code de démarrage" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Afficher 5 niveaux détaillés en haut" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code de fin" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Haut / bas" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Paroi interne" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gérer l'imprimante" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Verre" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Veuillez mettre à jour le Firmware de votre imprimante pour gérer la file d'attente à distance." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Les flux de webcam des imprimantes cloud ne peuvent pas être visualisés depuis Ultimaker Cura. Cliquez sur « Gérer l'imprimante » pour visiter Ultimaker Digital Factory et voir cette webcam." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Chargement..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponible" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Injoignable" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Inactif" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Préparation..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Impression" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Sans titre" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonyme" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Nécessite des modifications de configuration" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Détails" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Imprimante indisponible" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Premier disponible" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Mis en file d'attente" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gérer dans le navigateur" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez et envoyez une tache pour en ajouter une." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Tâches d'impression" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Temps total d'impression" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Attente de" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimer sur le réseau" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimer" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Sélection d'imprimantes" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Modifications de configuration" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Remplacer" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "L'imprimante assignée, %1, nécessite la modification de configuration suivante :" +msgstr[1] "L'imprimante assignée, %1, nécessite les modifications de configuration suivantes :" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Changer le matériau %1 de %2 à %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Changer le print core %1 de %2 à %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Changer le plateau en %1 (Ceci ne peut pas être remplacé)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Si vous sélectionnez « Remplacer », les paramètres de la configuration actuelle de l'imprimante seront utilisés. Cela peut entraîner l'échec de l'impression." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Aluminium" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminé" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Abandon..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abandonné" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Échec" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Mise en pause..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "En pause" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Reprise..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Action requise" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Finit %1 à %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Connecter à l'imprimante en réseau" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Modifier" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Supprimer" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Rafraîchir" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le guide de dépannage de l'impression en réseau" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Type" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Version du firmware" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Adresse" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "L'imprimante à cette adresse n'a pas encore répondu." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Connecter" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Adresse IP non valide" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Veuillez saisir une adresse IP valide." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Adresse de l'imprimante" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Saisissez l'adresse IP de votre imprimante sur le réseau." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Déplacer l'impression en haut" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Effacer" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Reprendre" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Mise en pause..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Reprise..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Pause" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Abandon..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Abandonner" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Déplacer l'impression en haut de la file d'attente" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Êtes-vous sûr de vouloir supprimer %1 ?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Supprimer l'impression" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Êtes-vous sûr de vouloir annuler %1 ?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abandonner l'impression" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2244,1410 +3326,435 @@ msgstr "" "- Vérifiez si l'imprimante est sous tension.\n" "- Vérifiez si l'imprimante est connectée au réseau.- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Veuillez connecter votre imprimante au réseau." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Voir les manuels d'utilisation en ligne" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Pour surveiller votre impression depuis Cura, veuillez connecter l'imprimante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Type de maille" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modèle normal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimer comme support" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modifier les paramètres de chevauchement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Ne prend pas en charge le chevauchement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Maille de remplissage uniquement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Maille de coupe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Sélectionner les paramètres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Sélectionner les paramètres pour personnaliser ce modèle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrer..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Afficher tout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plug-in de post-traitement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de post-traitement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Ajouter un script" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Paramètres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Modifiez les scripts de post-traitement actifs." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Certains éléments pourraient causer des problèmes à cette impression. Cliquez pour voir les conseils d'ajustement." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Le script suivant est actif :" -msgstr[1] "Les scripts suivants sont actifs :" +msgid "3D View" +msgstr "Vue 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Modèle de couleurs" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Couleur du matériau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Type de ligne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Vitesse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Épaisseur de la couche" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largeur de ligne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Débit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Mode de compatibilité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Déplacements" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Aides" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Coque" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Remplissage" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Démarre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Afficher uniquement les couches supérieures" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Afficher 5 niveaux détaillés en haut" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Haut / bas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Paroi interne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Plus d'informations sur la collecte de données anonymes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura recueille des données anonymes afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données partagées :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Je ne veux pas envoyer de données anonymes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Autoriser l'envoi de données anonymes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Précédent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Machine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Plateau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Support" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Fiche technique" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Fiche de sécurité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Directives d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Site Internet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Installé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Connexion nécessaire pour l'installation ou la mise à jour" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Acheter des bobines de matériau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Mise à jour" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Mise à jour" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Mis à jour" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Aller sur le Marché en ligne" +msgid "Front View" +msgstr "Vue de face" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Vue du dessus" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Vue gauche" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Vue droite" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Rechercher des matériaux" +msgid "Object list" +msgstr "Liste d'objets" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Vous devez redémarrer Cura pour que les changements apportés aux paquets ne prennent effet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Quitter %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Matériaux" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Installé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "S'installera au redémarrage" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Connexion nécessaire pour effectuer la mise à jour" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Revenir à une version précédente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Désinstaller" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Installer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Changements à partir de votre compte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Ignorer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Suivant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Les packages suivants seront ajoutés :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Les packages suivants ne peuvent pas être installés en raison d'une version incompatible de Cura :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Confirmer la désinstallation" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Vous désinstallez des matériaux et/ou des profils qui sont encore en cours d'utilisation. La confirmation réinitialisera les matériaux / profils suivants à leurs valeurs par défaut." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Matériaux" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profils" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Confirmer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Vous devez accepter la licence pour installer le package" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Site Internet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "E-mail" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Version" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Dernière mise à jour" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marque" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Téléchargements" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Contributions de la communauté" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Plug-ins de la communauté" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Matériaux génériques" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Impossible de se connecter à la base de données Cura Package. Veuillez vérifier votre connexion." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Plug-ins installés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Aucun plug-in n'a été installé." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Matériaux installés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Aucun matériau n'a été installé." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Plug-ins groupés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Matériaux groupés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Récupération des paquets..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour Ultimaker Cura Enterprise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Marché en ligne" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivellement du plateau" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Fichier" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Pour obtenir des résultats d'impression optimaux, vous pouvez maintenant régler votre plateau. Quand vous cliquez sur 'Aller à la position suivante', la buse se déplacera vers les différentes positions pouvant être réglées." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Modifier" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Pour chacune des positions ; glissez un bout de papier sous la buse et ajustez la hauteur du plateau. La hauteur du plateau est juste lorsque la pointe de la buse gratte légèrement le papier." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Visualisation" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Démarrer le nivellement du plateau" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Paramètres" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Aller à la position suivante" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensions" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker Original" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&références" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Aide" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Connecter à l'imprimante en réseau" +msgid "New project" +msgstr "Nouveau projet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Êtes-vous sûr(e) de souhaiter lancer un nouveau projet ? Cela supprimera les objets du plateau ainsi que tous paramètres non enregistrés." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Modifier" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Supprimer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Rafraîchir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le guide de dépannage de l'impression en réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Type" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Version du firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adresse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "L'imprimante à cette adresse n'a pas encore répondu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Connecter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Adresse IP non valide" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Veuillez saisir une adresse IP valide." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Adresse de l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Saisissez l'adresse IP de votre imprimante sur le réseau." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Modifications de configuration" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Remplacer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "L'imprimante assignée, %1, nécessite la modification de configuration suivante :" -msgstr[1] "L'imprimante assignée, %1, nécessite les modifications de configuration suivantes :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Changer le matériau %1 de %2 à %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Changer le print core %1 de %2 à %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Changer le plateau en %1 (Ceci ne peut pas être remplacé)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Si vous sélectionnez « Remplacer », les paramètres de la configuration actuelle de l'imprimante seront utilisés. Cela peut entraîner l'échec de l'impression." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Verre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Déplacer l'impression en haut" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Effacer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Reprendre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Mise en pause..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Reprise..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pause" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Abandon..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abandonner" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Déplacer l'impression en haut de la file d'attente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Êtes-vous sûr de vouloir supprimer %1 ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Supprimer l'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Êtes-vous sûr de vouloir annuler %1 ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abandonner l'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gérer l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Veuillez mettre à jour le Firmware de votre imprimante pour gérer la file d'attente à distance." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Chargement..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Injoignable" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inactif" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Préparation..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Sans titre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonyme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Nécessite des modifications de configuration" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Détails" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Imprimante indisponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Premier disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abandonné" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abandon..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Mise en pause..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "En pause" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Reprise..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Action requise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Finit %1 à %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Mis en file d'attente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gérer dans le navigateur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez et envoyez une tache pour en ajouter une." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Tâches d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Temps total d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Attente de" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimer sur le réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Sélection d'imprimantes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Se connecter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Connectez-vous à la plateforme Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace - Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins - Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Créez gratuitement un compte Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Vérification en cours..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Compte synchronisé" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Un problème s'est produit..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Installer les mises à jour en attente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Rechercher des mises à jour de compte" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Dernière mise à jour : %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Compte Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Déconnexion" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Aucune estimation de la durée n'est disponible" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Aucune estimation des coûts n'est disponible" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Aperçu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Estimation de durée" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Estimation du matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Découpe en cours..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Impossible de découper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Traitement" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Découper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Démarrer le processus de découpe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Annuler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Afficher le guide de dépannage en ligne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Passer en Plein écran" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Quitter le mode plein écran" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Annuler" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Rétablir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Quitter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Vue 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Vue de face" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Vue du dessus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Vue de dessous" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Vue latérale gauche" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Vue latérale droite" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configurer Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Ajouter une imprimante..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Gérer les &imprimantes..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Gérer les matériaux..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Ajouter d'autres matériaux du Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Mettre à jour le profil à l'aide des paramètres / forçages actuels" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Ignorer les modifications actuelles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Créer un profil à partir des paramètres / forçages actuels..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Gérer les profils..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Afficher la &documentation en ligne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Notifier un &bug" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Quoi de neuf" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "À propos de..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Supprimer la sélection" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centrer la sélection" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Multiplier la sélection" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Supprimer le modèle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ce&ntrer le modèle sur le plateau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Grouper les modèles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Dégrouper les modèles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "&Fusionner les modèles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Multiplier le modèle..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Sélectionner tous les modèles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Supprimer les objets du plateau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Recharger tous les modèles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Réorganiser tous les modèles sur tous les plateaux" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Réorganiser tous les modèles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Réorganiser la sélection" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Réinitialiser toutes les positions des modèles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Réinitialiser tous les modèles et transformations" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Ouvrir le(s) fichier(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Nouveau projet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Afficher le dossier de configuration" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configurer la visibilité des paramètres..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marché en ligne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Ce paquet sera installé après le redémarrage." +msgid "Time estimation" +msgstr "Estimation de durée" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Général" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimation du matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Paramètres" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Imprimantes" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profils" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Aucune estimation de la durée n'est disponible" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Fermeture de %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Aucune estimation des coûts n'est disponible" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Voulez-vous vraiment quitter %1 ?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Aperçu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Ouvrir le(s) fichier(s)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Installer le paquet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Ouvrir le(s) fichier(s)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Nous avons trouvé au moins un fichier G-Code parmi les fichiers que vous avez sélectionné. Vous ne pouvez ouvrir qu'un seul fichier G-Code à la fois. Si vous souhaitez ouvrir un fichier G-Code, veuillez ne sélectionner qu'un seul fichier de ce type." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" msgstr "Ajouter une imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" -msgid "What's New" -msgstr "Quoi de neuf" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Ajouter une imprimante en réseau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Ajouter une imprimante hors réseau" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Ajouter une imprimante cloud" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "En attente d'une réponse cloud" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Aucune imprimante trouvée dans votre compte ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "Les imprimantes suivantes de votre compte ont été ajoutées à Cura :" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Ajouter l'imprimante manuellement" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Ajouter une imprimante par adresse IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Saisissez l'adresse IP de votre imprimante." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Ajouter" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Impossible de se connecter à l'appareil." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Impossible de vous connecter à votre imprimante Ultimaker ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "L'imprimante à cette adresse n'a pas encore répondu." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Cette imprimante ne peut pas être ajoutée parce qu'il s'agit d'une imprimante inconnue ou de l'hôte d'un groupe." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Précédent" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Se connecter" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Accord utilisateur" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Décliner et fermer" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Bienvenue dans Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"Veuillez suivre ces étapes pour configurer\n" +"Ultimaker Cura. Cela ne prendra que quelques instants." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Prise en main" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Connectez-vous à la plateforme Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Ajoutez des paramètres de matériaux et des plug-ins depuis la Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plug-ins" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Ignorer" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Créez gratuitement un compte Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricant" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Auteur du profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Nom de l'imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Veuillez nommer votre imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Aucune imprimante n'a été trouvée sur votre réseau." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Rafraîchir" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Ajouter une imprimante par IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Ajouter une imprimante cloud" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Dépannage" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Aidez-nous à améliorer Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura recueille des données anonymes pour améliorer la qualité d'impression et l'expérience utilisateur, notamment :" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Types de machines" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Utilisation du matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Nombre de découpes" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Paramètres d'impression" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Les données recueillies par Ultimaker Cura ne contiendront aucun renseignement personnel." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Plus d'informations" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" +msgid "What's New" +msgstr "Nouveautés" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Vide" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Notes de version" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "À propos de %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "version : %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Solution complète pour l'impression 3D par dépôt de filament fondu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3656,183 +3763,204 @@ msgstr "" "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n" "Cura est fier d'utiliser les projets open source suivants :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Interface utilisateur graphique" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Cadre d'application" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "Générateur G-Code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Bibliothèque de communication interprocess" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Langage de programmation" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "Cadre IUG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Liens cadre IUG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "Bibliothèque C/C++ Binding" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Format d'échange de données" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Prise en charge de la bibliothèque pour le calcul scientifique" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Prise en charge de la bibliothèque pour des maths plus rapides" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Prise en charge de la bibliothèque pour le traitement des objets planaires" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Prise en charge de la bibliothèque pour le traitement des mailles triangulaires" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Prise en charge de la bibliothèque pour les métadonnées et le streaming de fichiers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Bibliothèque de communication série" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Bibliothèque de découverte ZeroConf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Bibliothèque de découpe polygone" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Vérificateur de type statique pour Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Certificats racines pour valider la fiabilité SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Bibliothèque de suivi des erreurs Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Bibliothèque d'emballage de polygones, développée par Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Liens en python pour libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Bibliothèque de support pour l'accès au trousseau de clés du système" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Extensions Python pour Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Police" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "Icônes SVG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Déploiement d'applications sur multiples distributions Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Ouvrir un fichier de projet" +msgid "Open file(s)" +msgstr "Ouvrir le(s) fichier(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Nous avons trouvé au moins un fichier de projet parmi les fichiers que vous avez sélectionnés. Vous ne pouvez ouvrir qu'un seul fichier de projet à la fois. Nous vous conseillons de n'importer que les modèles de ces fichiers. Souhaitez-vous continuer ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Se souvenir de mon choix" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Ouvrir comme projet" +msgid "Import all as models" +msgstr "Importer tout comme modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Enregistrer le projet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrudeuse %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Ne pas afficher à nouveau le résumé du projet lors de l'enregistrement" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Importer les modèles" +msgid "Save" +msgstr "Enregistrer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Annuler ou conserver les modifications" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3843,1206 +3971,144 @@ msgstr "" "Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n" "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Paramètres du profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Modifications actuelles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Toujours me demander" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Annuler et ne plus me demander" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Conserver et ne plus me demander" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Annuler les modifications" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Conserver les modifications" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Ouvrir un fichier de projet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Nous avons trouvé au moins un fichier de projet parmi les fichiers que vous avez sélectionnés. Vous ne pouvez ouvrir qu'un seul fichier de projet à la fois. Nous vous conseillons de n'importer que les modèles de ces fichiers. Souhaitez-vous continuer ?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Se souvenir de mon choix" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importer tout comme modèles" +msgid "Open as project" +msgstr "Ouvrir comme projet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Enregistrer le projet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrudeuse %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Ne pas afficher à nouveau le résumé du projet lors de l'enregistrement" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Enregistrer" +msgid "Import models" +msgstr "Importer les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Imprimer le modèle sélectionné avec %1" -msgstr[1] "Imprimer les modèles sélectionnés avec %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sans titre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Fichier" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Modifier" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Visualisation" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Paramètres" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensions" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&références" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Aide" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Nouveau projet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Êtes-vous sûr(e) de souhaiter lancer un nouveau projet ? Cela supprimera les objets du plateau ainsi que tous paramètres non enregistrés." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Marché en ligne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configurations" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marché en ligne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Chargement des configurations disponibles à partir de l'imprimante..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Les configurations ne sont pas disponibles car l'imprimante est déconnectée." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Sélectionner la configuration" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Configurations" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Activé" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Imprimer le modèle sélectionné avec :" -msgstr[1] "Imprimer les modèles sélectionnés avec :" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplier le modèle sélectionné" -msgstr[1] "Multiplier les modèles sélectionnés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Nombre de copies" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Enregistrer le projet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "E&xporter..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exporter la sélection..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoris" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Générique" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Ouvrir le(s) fichier(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Imprimantes réseau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Imprimantes locales" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Ouvrir un fichier &récent" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Sauvegarder le projet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Im&primante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Définir comme extrudeur actif" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Activer l'extrudeuse" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Désactiver l'extrudeuse" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Paramètres visibles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Réduire toutes les catégories" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gérer la visibilité des paramètres..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Position de la &caméra" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Vue de la caméra" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspective" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Orthographique" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Plateau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Non connecté à une imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "L'imprimante n'accepte pas les commandes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "En maintenance. Vérifiez l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Connexion avec l'imprimante perdue" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Impression..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "En pause" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Préparation..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Supprimez l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Abandonner l'impression" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Êtes-vous sûr(e) de vouloir abandonner l'impression ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Est imprimé comme support." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "D'autres modèles qui se chevauchent avec ce modèle ont été modifiés." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Le chevauchement de remplissage avec ce modèle a été modifié." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Les chevauchements avec ce modèle ne sont pas pris en charge." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Remplace le paramètre %1." -msgstr[1] "Remplace les paramètres %1." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Liste d'objets" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Devise :" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Thème :" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Vous devez redémarrer l'application pour que ces changements prennent effet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Découper automatiquement si les paramètres sont modifiés." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Découper automatiquement" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportement Viewport" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Mettre en surbrillance les porte-à-faux" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Surlignez les surfaces du modèle manquantes ou étrangères en utilisant les signes d'avertissement. Les Toolpaths seront souvent les parties manquantes de la géométrie prévue." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Afficher les erreurs du modèle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Déplace la caméra afin que le modèle sélectionné se trouve au centre de la vue" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centrer la caméra lorsqu'un élément est sélectionné" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Le comportement de zoom par défaut de Cura doit-il être inversé ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverser la direction du zoom de la caméra." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Le zoom doit-il se faire dans la direction de la souris ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Le zoom vers la souris n'est pas pris en charge dans la perspective orthographique." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Zoomer vers la direction de la souris" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Les modèles dans la zone d'impression doivent-ils être déplacés afin de ne plus se croiser ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Veillez à ce que les modèles restent séparés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Les modèles dans la zone d'impression doivent-ils être abaissés afin de toucher le plateau ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Abaisser automatiquement les modèles sur le plateau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Afficher le message d'avertissement dans le lecteur G-Code." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Message d'avertissement dans le lecteur G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "La couche doit-elle être forcée en mode de compatibilité ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Est-ce que Cura devrait ouvrir à l'endroit où il a été fermé ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurer la position de la fenêtre au démarrage" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Quel type de rendu de la caméra doit-il être utilisé?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Rendu caméra :" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspective" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Orthographique" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Ouvrir et enregistrer des fichiers" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utiliser une seule instance de Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Les modèles doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Réduire la taille des modèles trop grands" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Un modèle peut apparaître en tout petit si son unité est par exemple en mètres plutôt qu'en millimètres. Ces modèles doivent-ils être agrandis ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Mettre à l'échelle les modèles extrêmement petits" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Les modèles doivent-ils être sélectionnés après leur chargement ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Sélectionner les modèles lorsqu'ils sont chargés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Un préfixe basé sur le nom de l'imprimante doit-il être automatiquement ajouté au nom de la tâche d'impression ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Ajouter le préfixe de la machine au nom de la tâche" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Un résumé doit-il être affiché lors de l'enregistrement d'un fichier de projet ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Toujours me demander" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Toujours ouvrir comme projet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Toujours importer les modèles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Lorsque vous apportez des modifications à un profil puis passez à un autre profil, une boîte de dialogue apparaît, vous demandant si vous souhaitez conserver les modifications. Vous pouvez aussi choisir une option par défaut, et le dialogue ne s'affichera plus." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Profils" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Toujours rejeter les paramètres modifiés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Toujours transférer les paramètres modifiés dans le nouveau profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Confidentialité" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Cura doit-il vérifier les mises à jour au démarrage du programme ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Vérifier les mises à jour au démarrage" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Les données anonymes de votre impression doivent-elles être envoyées à Ultimaker ? Notez qu'aucun modèle, aucune adresse IP ni aucune autre information permettant de vous identifier personnellement ne seront envoyés ou stockés." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Envoyer des informations (anonymes) sur l'impression" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Plus d'informations" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Renommer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Créer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Dupliquer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Importer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Exporter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Synchroniser les imprimantes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmer la suppression" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importer un matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Impossible d'importer le matériau %1 : %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Matériau %1 importé avec succès" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exporter un matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Échec de l'exportation de matériau vers %1 : %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Matériau exporté avec succès vers %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exporter tous les matériaux" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informations" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmer le changement de diamètre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pas compatible avec l'extrudeuse actuelle. Souhaitez-vous poursuivre ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Afficher le nom" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Type de matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Couleur" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Propriétés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densité" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diamètre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Coût du filament" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Poids du filament" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Longueur du filament" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Coût au mètre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Ce matériau est lié à %1 et partage certaines de ses propriétés." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Délier le matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Description" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informations d'adhérence" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Paramètres d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Créer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Dupliquer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Créer un profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Veuillez fournir un nom pour ce profil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Dupliquer un profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Renommer le profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importer un profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exporter un profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Imprimante : %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Ignorer les modifications actuelles" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Ce profil utilise les paramètres par défaut spécifiés par l'imprimante, de sorte qu'aucun paramètre / forçage n'apparaît dans la liste ci-dessous." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Vos paramètres actuels correspondent au profil sélectionné." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Paramètres généraux" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Paramètre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Actuel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unité" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilité des paramètres" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Vérifier tout" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrudeuse" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Température cible de l'extrémité chauffante. L'extrémité chauffante sera chauffée ou refroidie pour tendre vers cette température. Si la valeur est 0, le chauffage de l'extrémité chauffante sera coupé." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Température actuelle de cette extrémité chauffante." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annuler" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Préchauffer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Préchauffez l'extrémité chauffante avant l'impression. Vous pouvez continuer l'ajustement de votre impression pendant qu'elle chauffe, ce qui vous évitera un temps d'attente lorsque vous serez prêt à lancer l'impression." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Couleur du matériau dans cet extrudeur." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Matériau dans cet extrudeur." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Buse insérée dans cet extrudeur." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Plateau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "Température cible du plateau chauffant. Le plateau sera chauffé ou refroidi pour tendre vers cette température. Si la valeur est 0, le chauffage du plateau sera éteint." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Température actuelle du plateau chauffant." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Température jusqu'à laquelle préchauffer le plateau." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Préchauffez le plateau avant l'impression. Vous pouvez continuer à ajuster votre impression pendant qu'il chauffe, et vous n'aurez pas à attendre que le plateau chauffe lorsque vous serez prêt à lancer l'impression." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Contrôle de l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Position de coupe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distance de coupe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Envoyer G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "L'imprimante n'est pas connectée." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante est activée et connectée à Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Cette imprimante n'est pas associée à votre compte. Veuillez visiter l'Ultimaker Digital Factory pour établir une connexion." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "La connexion cloud est actuellement indisponible. Veuillez vous connecter pour connecter l'imprimante cloud." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "La connexion cloud est actuellement indisponible. Veuillez vérifier votre connexion Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Ajouter une imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gérer les imprimantes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Imprimantes connectées" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Imprimantes préréglées" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Activer l'impression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Nom de la tâche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Durée d'impression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Durée restante estimée" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante est activée et connectée à Internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Cette imprimante n'est pas associée à votre compte. Veuillez visiter l'Ultimaker Digital Factory pour établir une connexion." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "La connexion cloud est actuellement indisponible. Veuillez vous connecter pour connecter l'imprimante cloud." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "La connexion cloud est actuellement indisponible. Veuillez vérifier votre connexion Internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Ajouter une imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Gérer les imprimantes" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Imprimantes connectées" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Imprimantes préréglées" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Paramètres d'impression" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5053,120 +4119,1704 @@ msgstr "" "\n" "Cliquez pour ouvrir le gestionnaire de profils." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Personnaliser les profils" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Ignorer les modifications actuelles" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Recommandé" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Personnalisé" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "On" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Off" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Expérimental" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "Il n'y a pas de profil %1 pour la configuration dans l'extrudeur %2. L'intention par défaut sera utilisée à la place" msgstr[1] "Il n'y a pas de profil %1 pour les configurations dans les extrudeurs %2. L'intention par défaut sera utilisée à la place" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Recommandé" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "On" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Off" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Expérimental" +msgid "Profiles" +msgstr "Profils" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Adhérence" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Activez l'impression d'une bordure ou plaquette (Brim/Raft). Cela ajoutera une zone plate autour de ou sous votre objet qui est facile à découper par la suite." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Remplissage graduel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Un remplissage graduel augmentera la quantité de remplissage vers le haut." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Vous avez modifié certains paramètres du profil. Si vous souhaitez les modifier, allez dans le mode Personnaliser." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Support" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n" -"\n" -"Cliquez pour rendre ces paramètres visibles." +msgid "Gradual infill" +msgstr "Remplissage graduel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Un remplissage graduel augmentera la quantité de remplissage vers le haut." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Adhérence" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Activez l'impression d'une bordure ou plaquette (Brim/Raft). Cela ajoutera une zone plate autour de ou sous votre objet qui est facile à découper par la suite." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Sauvegarder le projet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Imprimantes réseau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Imprimantes locales" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoris" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Générique" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Imprimer le modèle sélectionné avec :" +msgstr[1] "Imprimer les modèles sélectionnés avec :" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Multiplier le modèle sélectionné" +msgstr[1] "Multiplier les modèles sélectionnés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Nombre de copies" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Enregistrer le projet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "E&xporter..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exporter la sélection..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Configurations" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Personnalisé" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Activé" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "La configuration de cet extrudeur n'est pas autorisée et interdit la découpe." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Aucun profil ne correspond à la configuration de cet extrudeur." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Sélectionner la configuration" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Configurations" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Chargement des configurations disponibles à partir de l'imprimante..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "Les configurations ne sont pas disponibles car l'imprimante est déconnectée." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marché en ligne" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Ouvrir le(s) fichier(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "Im&primante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Définir comme extrudeur actif" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Activer l'extrudeuse" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Désactiver l'extrudeuse" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Ouvrir un fichier &récent" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Paramètres visibles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Réduire toutes les catégories" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gérer la visibilité des paramètres..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Position de la &caméra" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Vue de la caméra" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspective" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Orthographique" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "&Plateau" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Type d'affichage" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Est imprimé comme support." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "D'autres modèles qui se chevauchent avec ce modèle ont été modifiés." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Le chevauchement de remplissage avec ce modèle a été modifié." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Les chevauchements avec ce modèle ne sont pas pris en charge." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Remplace le paramètre %1." +msgstr[1] "Remplace les paramètres %1." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profils" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Activer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Créer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Dupliquer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Renommer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Importer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Exporter" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Créer un profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Veuillez fournir un nom pour ce profil." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Dupliquer un profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmer la suppression" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Renommer le profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importer un profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exporter un profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Imprimante : %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Ce profil utilise les paramètres par défaut spécifiés par l'imprimante, de sorte qu'aucun paramètre / forçage n'apparaît dans la liste ci-dessous." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Vos paramètres actuels correspondent au profil sélectionné." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Paramètres généraux" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Général" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Devise :" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Thème :" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Vous devez redémarrer l'application pour que ces changements prennent effet." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Découper automatiquement si les paramètres sont modifiés." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Découper automatiquement" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportement Viewport" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Mettre en surbrillance les porte-à-faux" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Surlignez les surfaces du modèle manquantes ou étrangères en utilisant les signes d'avertissement. Les Toolpaths seront souvent les parties manquantes de la géométrie prévue." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Afficher les erreurs du modèle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Déplace la caméra afin que le modèle sélectionné se trouve au centre de la vue" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centrer la caméra lorsqu'un élément est sélectionné" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Le comportement de zoom par défaut de Cura doit-il être inversé ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Inverser la direction du zoom de la caméra." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Le zoom doit-il se faire dans la direction de la souris ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Le zoom vers la souris n'est pas pris en charge dans la perspective orthographique." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Zoomer vers la direction de la souris" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Les modèles dans la zone d'impression doivent-ils être déplacés afin de ne plus se croiser ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Veillez à ce que les modèles restent séparés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Les modèles dans la zone d'impression doivent-ils être abaissés afin de toucher le plateau ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Abaisser automatiquement les modèles sur le plateau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Afficher le message d'avertissement dans le lecteur G-Code." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Message d'avertissement dans le lecteur G-Code" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "La couche doit-elle être forcée en mode de compatibilité ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Est-ce que Cura devrait ouvrir à l'endroit où il a été fermé ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Restaurer la position de la fenêtre au démarrage" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Quel type de rendu de la caméra doit-il être utilisé?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Rendu caméra :" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspective" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Orthographique" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Ouvrir et enregistrer des fichiers" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Utiliser une seule instance de Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Les objets doivent-ils être supprimés du plateau de fabrication avant de charger un nouveau modèle dans l'instance unique de Cura ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Supprimez les objets du plateau de fabrication avant de charger un modèle dans l'instance unique" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Les modèles doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Réduire la taille des modèles trop grands" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Un modèle peut apparaître en tout petit si son unité est par exemple en mètres plutôt qu'en millimètres. Ces modèles doivent-ils être agrandis ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Mettre à l'échelle les modèles extrêmement petits" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Les modèles doivent-ils être sélectionnés après leur chargement ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Sélectionner les modèles lorsqu'ils sont chargés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Un préfixe basé sur le nom de l'imprimante doit-il être automatiquement ajouté au nom de la tâche d'impression ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Ajouter le préfixe de la machine au nom de la tâche" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Un résumé doit-il être affiché lors de l'enregistrement d'un fichier de projet ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Toujours me demander" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Toujours ouvrir comme projet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Toujours importer les modèles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Lorsque vous apportez des modifications à un profil puis passez à un autre profil, une boîte de dialogue apparaît, vous demandant si vous souhaitez conserver les modifications. Vous pouvez aussi choisir une option par défaut, et le dialogue ne s'affichera plus." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Toujours rejeter les paramètres modifiés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Toujours transférer les paramètres modifiés dans le nouveau profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Confidentialité" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Les données anonymes de votre impression doivent-elles être envoyées à Ultimaker ? Notez qu'aucun modèle, aucune adresse IP ni aucune autre information permettant de vous identifier personnellement ne seront envoyés ou stockés." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Envoyer des informations (anonymes) sur l'impression" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Plus d'informations" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Mises à jour" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Cura doit-il vérifier les mises à jour au démarrage du programme ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Vérifier les mises à jour au démarrage" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Lorsque vous vérifiez les mises à jour, ne vérifiez que les versions stables." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Uniquement les versions stables" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Lorsque vous recherchez des mises à jour, vérifiez à la fois les versions stables et les versions bêta." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versions stables et bêta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Une vérification automatique des nouveaux plugins doit-elle être effectuée à chaque fois que Cura est lancé ? Il est fortement recommandé de ne pas désactiver cette fonction !" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Recevoir des notifications pour les mises à jour des plugins" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Informations" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Confirmer le changement de diamètre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pas compatible avec l'extrudeuse actuelle. Souhaitez-vous poursuivre ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Afficher le nom" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Type de matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Couleur" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Propriétés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Densité" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Diamètre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Coût du filament" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Poids du filament" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Longueur du filament" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Coût au mètre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Ce matériau est lié à %1 et partage certaines de ses propriétés." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Délier le matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Description" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informations d'adhérence" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Créer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Dupliquer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Synchroniser les imprimantes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importer un matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Impossible d'importer le matériau %1 : %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Matériau %1 importé avec succès" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exporter un matériau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Échec de l'exportation de matériau vers %1 : %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Matériau exporté avec succès vers %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Synchroniser les matériaux avec les imprimantes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Synchroniser les matériaux avec les imprimantes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "En suivant quelques étapes simples, vous serez en mesure de synchroniser tous vos profils de matériaux avec vos imprimantes." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Démarrer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Pourquoi dois-je synchroniser les profils de matériaux ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Se connecter" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Pour synchroniser automatiquement les profils de matériaux avec toutes vos imprimantes connectées à Digital Factory, vous devez être connecté à Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Synchroniser les matériaux avec USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Les imprimantes suivantes recevront les nouveaux profils de matériaux :" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Un problème est survenu lors de l'envoi des matériaux aux imprimantes." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Les profils de matériaux ont été synchronisés avec les imprimantes suivantes :" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Dépannage" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Imprimantes manquantes ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Assurez-vous que toutes vos imprimantes sont allumées et connectées à Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Actualiser la liste" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Réessayer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Terminé" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Synchroniser" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Synchronisation" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Aucune imprimante trouvée" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Il semble que vous n'ayez aucune imprimante compatible connectée à Digital Factory. Assurez-vous que votre imprimante est connectée et qu'elle utilise" +" le dernier micrologiciel." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Découvrez comment connecter votre imprimante à Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Rafraîchir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Synchroniser les profils de matériaux via USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Suivez les étapes suivantes pour charger les nouveaux profils de matériaux dans votre imprimante." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Cliquez sur le bouton d'exportation des archives de matériaux." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Enregistrez le fichier .umm sur une clé USB." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Insérez la clé USB dans votre imprimante et lancez la procédure pour charger de nouveaux profils de matériaux." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Comment charger de nouveaux profils de matériaux dans mon imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exporter l'archive des matériaux" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exporter tous les matériaux" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilité des paramètres" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Vérifier tout" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Imprimantes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Paramètre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Actuel" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Unité" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Non connecté à une imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "L'imprimante n'accepte pas les commandes" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "En maintenance. Vérifiez l'imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Connexion avec l'imprimante perdue" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Impression..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "En pause" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Préparation..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Supprimez l'imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Abandonner l'impression" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Êtes-vous sûr(e) de vouloir abandonner l'impression ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Imprimer le modèle sélectionné avec %1" +msgstr[1] "Imprimer les modèles sélectionnés avec %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Mes imprimantes" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Surveillez les imprimantes dans Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Créez des projets d'impression dans Digital Library." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Tâches d'impression" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Surveillez les tâches d'impression et réimprimez à partir de votre historique d'impression." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Étendez Ultimaker Cura avec des plug-ins et des profils de matériaux." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Devenez un expert de l'impression 3D avec les cours de formation en ligne Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Assistance ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Découvrez comment utiliser Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Posez une question" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consultez la communauté Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Notifier un bug" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Informez les développeurs en cas de problème." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visitez le site web Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Contrôle de l'imprimante" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Position de coupe" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distance de coupe" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Envoyer G-Code" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrudeuse" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Température cible de l'extrémité chauffante. L'extrémité chauffante sera chauffée ou refroidie pour tendre vers cette température. Si la valeur est 0, le chauffage de l'extrémité chauffante sera coupé." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Température actuelle de cette extrémité chauffante." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Annuler" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Préchauffer" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Préchauffez l'extrémité chauffante avant l'impression. Vous pouvez continuer l'ajustement de votre impression pendant qu'elle chauffe, ce qui vous évitera un temps d'attente lorsque vous serez prêt à lancer l'impression." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Couleur du matériau dans cet extrudeur." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Matériau dans cet extrudeur." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Buse insérée dans cet extrudeur." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "L'imprimante n'est pas connectée." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Plateau" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "Température cible du plateau chauffant. Le plateau sera chauffé ou refroidi pour tendre vers cette température. Si la valeur est 0, le chauffage du plateau sera éteint." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Température actuelle du plateau chauffant." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Température jusqu'à laquelle préchauffer le plateau." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Préchauffez le plateau avant l'impression. Vous pouvez continuer à ajuster votre impression pendant qu'il chauffe, et vous n'aurez pas à attendre que le plateau chauffe lorsque vous serez prêt à lancer l'impression." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Se connecter" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace\n" +"- Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins\n" +"- Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Créez gratuitement un compte Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Dernière mise à jour : %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Compte Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Déconnexion" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Vérification en cours..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Compte synchronisé" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Un problème s'est produit..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Installer les mises à jour en attente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Rechercher des mises à jour de compte" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Sans titre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Aucun élément à sélectionner" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Afficher le guide de dépannage en ligne" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Passer en Plein écran" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Quitter le mode plein écran" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Annuler" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Rétablir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Quitter" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Vue 3D" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Vue de face" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Vue du dessus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Vue de dessous" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Vue latérale gauche" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Vue latérale droite" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configurer Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Ajouter une imprimante..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Gérer les &imprimantes..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Gérer les matériaux..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Ajouter d'autres matériaux du Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Mettre à jour le profil à l'aide des paramètres / forçages actuels" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Ignorer les modifications actuelles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Créer un profil à partir des paramètres / forçages actuels..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Gérer les profils..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Afficher la &documentation en ligne" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Notifier un &bug" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Quoi de neuf" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "À propos de..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Supprimer la sélection" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centrer la sélection" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Multiplier la sélection" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Supprimer le modèle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ce&ntrer le modèle sur le plateau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Grouper les modèles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Dégrouper les modèles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "&Fusionner les modèles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Multiplier le modèle..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Sélectionner tous les modèles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Supprimer les objets du plateau" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Recharger tous les modèles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Réorganiser tous les modèles sur tous les plateaux" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Réorganiser tous les modèles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Réorganiser la sélection" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Réinitialiser toutes les positions des modèles" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Réinitialiser tous les modèles et transformations" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Ouvrir le(s) fichier(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Nouveau projet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Afficher le dossier de configuration" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configurer la visibilité des paramètres..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Marché en ligne" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Ce paramètre n'est pas utilisé car tous les paramètres qu'il influence sont remplacés." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Touche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Touché par" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modifier ici entraînera la modification de la valeur pour toutes les extrudeuses." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5177,7 +5827,7 @@ msgstr "" "\n" "Cliquez pour restaurer la valeur du profil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5188,508 +5838,92 @@ msgstr "" "\n" "Cliquez pour restaurer la valeur calculée." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Paramètres de recherche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copier la valeur vers tous les extrudeurs" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copier toutes les valeurs modifiées vers toutes les extrudeuses" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Masquer ce paramètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Masquer ce paramètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Afficher ce paramètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Vue 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Vue de face" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Vue du dessus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Vue gauche" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Vue droite" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Type d'affichage" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n" +"\n" +"Cliquez pour rendre ces paramètres visibles." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Ajouter une imprimante cloud" +msgid "This package will be installed after restarting." +msgstr "Ce paquet sera installé après le redémarrage." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "En attente d'une réponse cloud" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Paramètres" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Aucune imprimante trouvée dans votre compte ?" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Fermeture de %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "Les imprimantes suivantes de votre compte ont été ajoutées à Cura :" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Voulez-vous vraiment quitter %1 ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Ajouter l'imprimante manuellement" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Installer le paquet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricant" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Ouvrir le(s) fichier(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Auteur du profil" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Nous avons trouvé au moins un fichier G-Code parmi les fichiers que vous avez sélectionné. Vous ne pouvez ouvrir qu'un seul fichier G-Code à la fois. Si vous souhaitez ouvrir un fichier G-Code, veuillez ne sélectionner qu'un seul fichier de ce type." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Nom de l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Veuillez nommer votre imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" msgstr "Ajouter une imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Ajouter une imprimante en réseau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Ajouter une imprimante hors réseau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Aucune imprimante n'a été trouvée sur votre réseau." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Rafraîchir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Ajouter une imprimante par IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Ajouter une imprimante cloud" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Dépannage" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Ajouter une imprimante par adresse IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Saisissez l'adresse IP de votre imprimante." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Ajouter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Impossible de se connecter à l'appareil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Impossible de vous connecter à votre imprimante Ultimaker ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "L'imprimante à cette adresse n'a pas encore répondu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Cette imprimante ne peut pas être ajoutée parce qu'il s'agit d'une imprimante inconnue ou de l'hôte d'un groupe." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Précédent" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Se connecter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Notes de version" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Ajoutez des paramètres de matériaux et des plug-ins depuis la Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Créez gratuitement un compte Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Ignorer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Aidez-nous à améliorer Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura recueille des données anonymes pour améliorer la qualité d'impression et l'expérience utilisateur, notamment :" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Types de machines" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilisation du matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Nombre de découpes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Paramètres d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Les données recueillies par Ultimaker Cura ne contiendront aucun renseignement personnel." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Plus d'informations" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vide" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Accord utilisateur" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Décliner et fermer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bienvenue dans Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Veuillez suivre ces étapes pour configurer\n" -"Ultimaker Cura. Cela ne prendra que quelques instants." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Prise en main" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" -msgstr "Nouveautés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Aucun élément à sélectionner" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Contrôleur de modèle" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Lecteur 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Permet l'écriture de fichiers 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Générateur 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fournit la prise en charge de la lecture de fichiers AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Lecteur AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sauvegardez et restaurez votre configuration." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Système CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fournit la prise en charge de l'importation de profils Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lecteur de profil Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fournit la prise en charge de l'exportation de profils Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Générateur de profil Cura" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Vérifie les mises à jour du firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Vérificateur des mises à jour du firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Programme de mise à jour du firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lit le G-Code à partir d'une archive compressée." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lecteur G-Code compressé" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Enregistre le G-Code dans une archive compressée." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Générateur de G-Code compressé" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lecteur de profil G-Code" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permet le chargement et l'affichage de fichiers G-Code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Lecteur G-Code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Enregistre le G-Code dans un fichier." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Générateur de G-Code" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Lecteur d'images" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lecteur de profil Cura antérieur" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Action Paramètres de la machine" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fournit une étape de surveillance dans Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Étape de surveillance" +msgstr "Quoi de neuf" #: PerObjectSettingsTool/plugin.json msgctxt "description" @@ -5701,85 +5935,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Outil de paramètres par modèle" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" +msgid "Provides support for importing Cura profiles." +msgstr "Fournit la prise en charge de l'importation de profils Cura." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Post-traitement" +msgid "Cura Profile Reader" +msgstr "Lecteur de profil Cura" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fournit une étape de préparation dans Cura." +msgid "Provides support for reading X3D files." +msgstr "Fournit la prise en charge de la lecture de fichiers X3D." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Étape de préparation" +msgid "X3D Reader" +msgstr "Lecteur X3D" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fournit une étape de prévisualisation dans Cura." +msgid "Backup and restore your configuration." +msgstr "Sauvegardez et restaurez votre configuration." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Étape de prévisualisation" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin de périphérique de sortie sur disque amovible" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Journal d'événements dans Sentry" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Fournit la Vue simulation." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Vue simulation" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Information sur le découpage" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Affiche une vue en maille solide normale." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Vue solide" +msgid "Machine Settings Action" +msgstr "Action Paramètres de la machine" #: SupportEraser/plugin.json msgctxt "description" @@ -5791,35 +5985,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Effaceur de support" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Rechercher, gérer et installer de nouveaux paquets Cura." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Boîte à outils" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin de périphérique de sortie sur disque amovible" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." +msgid "Provides a machine actions for updating firmware." +msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lecteur de Trimesh" +msgid "Firmware Updater" +msgstr "Programme de mise à jour du firmware" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fournit un support pour la lecture des paquets de format Ultimaker." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "Lecteur UFP" +msgid "Legacy Cura Profile Reader" +msgstr "Lecteur de profil Cura antérieur" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Lecteur 3MF" #: UFPWriter/plugin.json msgctxt "description" @@ -5831,25 +6035,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "Générateur UFP" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fournit les actions de la machine pour les machines Ultimaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Actions de la machine Ultimaker" +msgid "Sentry Logger" +msgstr "Journal d'événements dans Sentry" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Gère les connexions réseau vers les imprimantes Ultimaker en réseau." +msgid "Provides support for importing profiles from g-code files." +msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Connexion réseau Ultimaker" +msgid "G-code Profile Reader" +msgstr "Lecteur de profil G-Code" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fournit une étape de prévisualisation dans Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Étape de prévisualisation" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permet la vue Rayon-X." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Vue Rayon-X" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Système CuraEngine" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fournit la prise en charge de la lecture de fichiers AMF." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Lecteur AMF" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lit le G-Code à partir d'une archive compressée." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lecteur G-Code compressé" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Post-traitement" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fournit la prise en charge de l'exportation de profils Cura." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Générateur de profil Cura" #: USBPrinting/plugin.json msgctxt "description" @@ -5861,25 +6135,135 @@ msgctxt "name" msgid "USB printing" msgstr "Impression par USB" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." +msgid "Provides a prepare stage in Cura." +msgstr "Fournit une étape de préparation dans Cura." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Mise à niveau vers 2.1 vers 2.2" +msgid "Prepare Stage" +msgstr "Étape de préparation" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." +msgid "Allows loading and displaying G-code files." +msgstr "Permet le chargement et l'affichage de fichiers G-Code." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Mise à niveau de 2.2 vers 2.4" +msgid "G-code Reader" +msgstr "Lecteur G-Code" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Lecteur d'images" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fournit les actions de la machine pour les machines Ultimaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Actions de la machine Ultimaker" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Enregistre le G-Code dans une archive compressée." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Générateur de G-Code compressé" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Vérifie les mises à jour du firmware." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Vérificateur des mises à jour du firmware" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Information sur le découpage" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Profils matériels" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Rechercher, gérer et installer de nouveaux paquets Cura." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Boîte à outils" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Enregistre le G-Code dans un fichier." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Générateur de G-Code" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Fournit la Vue simulation." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Vue simulation" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Mise à niveau de 4.5 vers 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5891,55 +6275,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Mise à niveau de 2.5 vers 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Mise à niveau de 2.6 vers 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Mise à niveau de 4.6.0 vers 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Mise à niveau de version, de 2.7 vers 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Mise à niveau de version, de 3.0 vers 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Mise à niveau de 3.2 vers 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Mise à niveau de 3.3 vers 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Mise à niveau de 4.7 vers 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5951,35 +6305,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Mise à niveau de 3.4 vers 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Mise à niveau de 3.5 vers 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Mise à niveau vers 2.1 vers 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Mise à niveau de 4.0 vers 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Mise à niveau de 3.2 vers 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Mise à jour de 4.1 vers 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Mise à niveau de 4.8 vers 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Mise à niveau de 4.6.2 vers 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6001,66 +6365,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Mise à niveau de 4.3 vers 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Mise à niveau de 4.4 vers 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Mise à niveau de 4.5 vers 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Mise à niveau de 4.6.0 vers 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Mise à niveau de 4.6.2 vers 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Mise à niveau de 4.7 vers 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Mise à niveau de 4.8 vers 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6071,35 +6375,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Mise à niveau de 4.9 vers 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fournit la prise en charge de la lecture de fichiers X3D." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "Lecteur X3D" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Mise à niveau de version, de 2.7 vers 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Profils matériels" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Mise à niveau de 2.6 vers 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permet la vue Rayon-X." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Vue Rayon-X" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Mise à niveau de la version 4.11 vers la version 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Mise à niveau de 3.3 vers 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Mise à niveau de version, de 3.0 vers 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Mise à niveau de 4.0 vers 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Mise à niveau de 4.4 vers 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Mise à niveau de 2.2 vers 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Mise à jour de 4.1 vers 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Mise à niveau de 3.5 vers 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Gère les connexions réseau vers les imprimantes Ultimaker en réseau." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Connexion réseau Ultimaker" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lecteur de Trimesh" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fournit un support pour la lecture des paquets de format Ultimaker." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Lecteur UFP" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Affiche une vue en maille solide normale." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Vue solide" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Permet l'écriture de fichiers 3MF." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Générateur 3MF" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fournit une étape de surveillance dans Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Étape de surveillance" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Contrôleur de modèle" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Lancez et surveillez des impressions où que vous soyez avec votre compte Ultimaker." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Se connecter à Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Les flux de webcam des imprimantes cloud ne peuvent pas être visualisés depuis Ultimaker Cura." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne possédez pas la dernière version disponible, il est recommandé de mettre à jour le micrologiciel sur votre imprimante avec la version {latest_version}." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Nouveau firmware %s disponible" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index 88eef3e0b5..6910d7a71c 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 15:16+0200\n" "Last-Translator: Bothof \n" "Language-Team: French\n" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index b9a95fdedb..1a7094e7c2 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 15:16+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: French , French \n" @@ -56,9 +56,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"Commandes G-Code à exécuter au tout début, séparées par \n" -"." +msgstr "Commandes G-Code à exécuter au tout début, séparées par \n." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -70,9 +68,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"Commandes G-Code à exécuter tout à la fin, séparées par \n" -"." +msgstr "Commandes G-Code à exécuter tout à la fin, séparées par \n." #: fdmprinter.def.json msgctxt "material_guid label" @@ -154,6 +150,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "La profondeur (sens Y) de la zone imprimable." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Hauteur de la machine" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "La hauteur (sens Z) de la zone imprimable." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -194,16 +200,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminium" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Hauteur de la machine" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "La hauteur (sens Z) de la zone imprimable." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -561,8 +557,8 @@ msgstr "La vitesse maximale pour le moteur du sens Z." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Taux d'alimentation maximal" +msgid "Maximum Speed E" +msgstr "Vitesse maximale E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -686,8 +682,8 @@ msgstr "Pas par millimètre (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Nombre de pas du moteur pas à pas correspondant à une extrusion d'un millimètre." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Nombre de pas des moteurs pas à pas correspondant au déplacement de la roue du chargeur d'un millimètre sur sa circonférence." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1434,6 +1430,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Relier les voies de couche extérieure supérieures / inférieures lorsqu'elles sont côte à côte. Pour le motif concentrique, ce paramètre réduit considérablement le temps de parcours, mais comme les liens peuvent se trouver à mi-chemin sur le remplissage, cette fonctionnalité peut réduire la qualité de la surface supérieure." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordre monotone dessus / dessous" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes supérieures et inférieures dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1504,6 +1510,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordre d'étirage monotone" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes d'étirage dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1711,8 +1727,11 @@ msgstr "Motif de remplissage" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, trihexagonaux, cubiques, octaédriques, quart cubiques et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïde, cubique, quart cubique et octaédrique changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Le motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi" +" les coûts matériels. Les motifs en grille, en triangle, tri-hexagonaux, cubiques, octaédriques, quart cubiques, entrecroisés et concentriques sont entièrement" +" imprimés sur chaque couche. Les remplissages gyroïdes, cubiques, quart cubiques et octaédriques changent à chaque couche afin d'offrir une répartition" +" plus égale de la solidité dans chaque direction. Le remplissage éclair tente de minimiser le remplissage, en ne supportant que le plafond de l'objet." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1779,6 +1798,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroïde" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Éclair" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1993,6 +2017,47 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Le nombre de couches de remplissage qui soutient les bords de la couche." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angle de support du remplissage éclair" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Détermine quand une couche de remplissage éclair doit soutenir tout ce qui se trouve au-dessus. Mesuré dans l'angle au vu de l'épaisseur d'une couche." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angle de saillie du remplissage éclair" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Détermine quand une couche de remplissage éclair doit soutenir le modèle au-dessus. Mesuré dans l'angle au vu de l'épaisseur." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angle d'élagage du remplissage éclair" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Les extrémités des lignes de remplissage sont raccourcies pour économiser du matériau. Ce paramètre est l'angle de saillie des extrémités de ces lignes." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angle de redressement du remplissage éclair" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Les lignes de remplissage sont redressées pour gagner du temps d'impression. Il s'agit de l'angle maximal de saillie autorisé sur la longueur de la ligne" +" de remplissage." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3183,6 +3248,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Tout" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Pas sur la surface extérieure" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -3201,8 +3271,7 @@ msgstr "Distance de détour max. sans rétraction" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est" -" définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction." +msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction." #: fdmprinter.def.json msgctxt "travel_retract_before_outer_wall label" @@ -5135,7 +5204,7 @@ msgstr "Largeur minimale de moule" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." +msgid "The minimal distance between the outside of the mold and the outside of the model." msgstr "La distance minimale entre l'extérieur du moule et l'extérieur du modèle." #: fdmprinter.def.json @@ -5303,6 +5372,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordre monotone de la surface supérieure" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes de la surface supérieure dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6402,6 +6481,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matrice de transformation à appliquer au modèle lors de son chargement depuis le fichier." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "Commandes G-Code à exécuter au tout début, séparées par \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "Commandes G-Code à exécuter tout à la fin, séparées par \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Taux d'alimentation maximal" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "Le motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, tri-hexagonaux, cubiques, octaédriques, quart cubiques, entrecroisés et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïdes, cubiques, quart cubiques et octaédriques changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction. Le remplissage éclair tente de minimiser le remplissage en ne soutenant que les plafonds (internes) de l'objet. Ainsi, le pourcentage de remplissage n'est « valable » qu'une couche en dessous de ce qu'il doit soutenir dans le modèle." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "La différence qu'une couche de remplissage éclair peut avoir avec celle immédiatement au-dessus en ce qui concerne l'élagage des extrémités extérieures des arborescences. Mesuré dans l'angle au vu de l'épaisseur." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "La différence qu'une couche de remplissage éclair peut avoir avec celle immédiatement au-dessus en ce qui concerne le lissage des arborescences. Mesuré dans l'angle au vu de l'épaisseur." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, trihexagonaux, cubiques, octaédriques, quart cubiques et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïde, cubique, quart cubique et octaédrique changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "La distance minimale entre l'extérieur du moule et l'extérieur du modèle." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Nombre de pas du moteur pas à pas correspondant à une extrusion d'un millimètre." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Lorsque cette distance n'est pas nulle, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction." diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index f21a32653d..6bc614a1f4 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -17,180 +17,449 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.4\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Ismeretlen" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Nem sikerült archívumot létrehozni a felhasználói adatkönyvtárból: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Az alábbi nyomtató (k) nem csatlakoztathatók, mert egy csoporthoz tartoznak" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Biztonsági mentés" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Elérhető hálózati nyomtatók" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Megpróbált visszaállítani egy Cura biztonsági másolatot anélkül, hogy megfelelő adatok vagy meta adatok lennének." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nincs felülírva" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Egy olyan Cura biztonsági mentést próbált visszaállítani, amelyiknek a verziója magasabb a jelenlegitől." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "Az nyomtatási szint csökken a \"Nyomtatási sorrend\" beállítása miatt, ez megakadályozza, hogy a mechanika beleütközzön a nyomtatott tárgyba." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Építési térfogat" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nincs felülírva" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Ismeretlen" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Az alábbi nyomtató (k) nem csatlakoztathatók, mert egy csoporthoz tartoznak" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Elérhető hálózati nyomtatók" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Egyedi anyag" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Egyedi" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Egyéni profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Összes támasz típus ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Minden fájl (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Egyedi anyag" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Egyedi" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Sikertelen bejelentkezés" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Új hely keresése az objektumokhoz" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Hely keresés" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Nincs elég hely az összes objektum építési térfogatához" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nem találok helyet" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Nem sikerült archívumot létrehozni a felhasználói adatkönyvtárból: {}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Biztonsági mentés" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Megpróbált visszaállítani egy Cura biztonsági másolatot anélkül, hogy megfelelő adatok vagy meta adatok lennének." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Egy olyan Cura biztonsági mentést próbált visszaállítani, amelyiknek a verziója magasabb a jelenlegitől." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Gépek betöltése ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Felület beállítása..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Interfészek betöltése..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "Az nyomtatási szint csökken a \"Nyomtatási sorrend\" beállítása miatt, ez megakadályozza, hogy a mechanika beleütközzön a nyomtatott tárgyba." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Építési térfogat" +msgid "Warning" +msgstr "Figyelem" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Nem nyitható meg más fájl, ha a G-kód betöltődik. Az importálás kihagyva {0}" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Hiba" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Bezár" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Következő" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Hozzáad" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Elvet" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Csoport #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Külső fal" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Belső falak" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Héj" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Kitöltés" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Támasz kitöltés" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Támasz interface" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Támasz" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Szoknya" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Elsődleges torony" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Átmozgás" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Visszahúzás" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Egyéb" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "A Cura nem tud elindulni" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +474,32 @@ msgstr "" "

    Kérjük, küldje el nekünk ezt a hibajelentést a probléma megoldásához.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Hibajelentés küldése az Ultimaker -nek" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Hibajelentés részletei" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Konfigurációs mappa megnyitása" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Konfiguráció biztonsági mentés és visszaállítás" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Összeomlás jelentés" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,491 +510,1259 @@ msgstr "" "

    Kérjük használd a \"Jelentés küldés\" gombot a hibajelentés postázásához, így az automatikusan a szerverünkre kerül.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Rendszer információ" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Ismeretlen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura verzió" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Felület" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt verzió" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt verzió" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Még nincs inicializálva
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL Verzió: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL terjesztő: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Hibakövetés" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Naplók" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Jelentés küldés" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Gépek betöltése ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Felület beállítása..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Interfészek betöltése..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Figyelem" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Nem nyitható meg más fájl, ha a G-kód betöltődik. Az importálás kihagyva {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Hiba" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Tárgyak többszörözése és elhelyezése" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Tárgyak elhelyezése" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Tárgy elhelyezése" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Nincs olvasható válasz." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Kérjük, adja meg a szükséges jogosultságokat az alkalmazás engedélyezéséhez." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Valami váratlan esemény történt a bejelentkezéskor, próbálkozzon újra." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Az Ultimaker fiókkiszolgáló elérhetetlen." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Kérjük, adja meg a szükséges jogosultságokat az alkalmazás engedélyezéséhez." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Valami váratlan esemény történt a bejelentkezéskor, próbálkozzon újra." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Nincs olvasható válasz." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Tárgyak többszörözése és elhelyezése" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Tárgyak elhelyezése" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Tárgy elhelyezése" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Nem támogatott" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Fúvóka" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Beállítások frissítve" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extruder(ek) kikapcsolva" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "A fájl már létezik" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "A {0} fájl már létezik. Biztosan szeretnéd, hogy felülírjuk?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Érvénytelen fájl URL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "A profil exportálása nem sikerült {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "A profil exportálása nem sikerült {0}:Az író beépülő modul hibát jelez." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil exportálva ide: {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Sikeres export" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Sikertelen profil importálás {0}: {1} -ból" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Nem importálható a profil {0} -ból, mielőtt hozzá nem adunk egy nyomtatót." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nincs egyéni profil a {0} fájlban, amelyet importálni lehetne" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "A profil importálása nem sikerült {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Ez a {0} profil helytelen adatokat tartamaz, ezért nem importálható." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Nem importálható a profil {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "A {0} fájl nem tartalmaz érvényes profilt." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "A(z) {0} profil ismeretlen fájltípusú vagy sérült." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Egyedi profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Hiányzik a profil minőségi típusa." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Nem támogatott" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Fúvóka" +msgid "Per Model Settings" +msgstr "Modellenkénti beállítások" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Modellenkénti beállítások konfigurálása" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura Profil" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D Fájl" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Hiba történt a biztonsági másolat visszaállításakor." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Beállítások frissítve" +msgid "Backups" +msgstr "Biztonsági mentések" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extruder(ek) kikapcsolva" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Hiba történt a biztonsági mentés feltöltése közben." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Hozzáad" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Elvet" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "A biztonsági mentés feltöltése ..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "A biztonsági mentés feltöltése befejeződött." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Bitonsági mentések kezelése" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Gép beállítások" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Támasz blokkoló" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Hozzon létre egy kötetet, amelyben a támaszok nem kerülnek nyomtatásra." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Cserélhető meghajtó" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Mentés külső meghajtóra" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Mentés külső meghajtóra {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Nincsenek elérhető fájlformátumok az íráshoz!" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Mentés külső meghajóra {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +msgctxt "@info:title" +msgid "Saving" +msgstr "Mentés" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Sikertelen mentés {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Nem található a fájlnév {device} -on az írási művelethez." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "Sikertelen mentés a {0}: {1} meghajtóra." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Mentve a {0} meghajtóra, mint {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Fájl Mentve" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Leválaszt" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "{0} meghajtó leválasztása" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} leválasztva. Eltávolíthatod az adathordozót." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Hardver biztonságos eltávolítása" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "{0} leválasztása sikertelen. A meghajtó használatban van." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Firmware frissítés" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 profil" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Ajánlott" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Egyedi" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "A projekt fájl {0} egy ismeretlen {1} géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Projekt fájl megnyitása" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF fájl" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "Ultimaker Format Package" +msgstr "Ultimaker formátumcsomag" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-code Fájl" + +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Előnézet" + +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Röntgen nézet" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Réteg feldolgozás" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Információ" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Nem lehet szeletelni a jelenlegi alapanyaggal, mert nem kompatibilis a kiválasztott nyomtatóval, vagy a beállításaival." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Nem lehet szeletelni" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Nem lehet szeletelni ezekkel a beállításokkal. Ezek a beállítások okoznak hibát: {0}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "Nem lehet szeletelni pár modell beállítás miatt. A következő beállításokokoznak hibát egy vagy több modellnél: {error_labels}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Nem lehet szeletelni, mert az elsődleges torony, vagy az elsődleges pozíció érvénytelen." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Nem lehet szeletelni, mert vannak olyan objektumok, amelyek a letiltott Extruderhez vannak társítva.%s." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF fájl" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Tömörített G-kód fájl" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Utólagos műveletek" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "G-kód módosítás" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB nyomtatás" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Nyomtatás USB-ről" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Nyomtatás USB-ről" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Csatlakozás USB-n" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USB nyomtatás folyamatban van, a Cura bezárása leállítja ezt a nyomtatást. Biztos vagy ebben?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Nyomtatás folyamatban" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Előkészítés" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G-kód elemzés" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-kód részletek" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Győződj meg róla, hogy a G-kód igazodik a nyomtatódhoz és beállításaihoz, mielőtt elküldöd a fájlt. A G-kód ábrázolása nem biztos, hogy pontos." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G fájl" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG kép" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG kép" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG kép" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP kép" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF kép" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "Tárgyasztal szint" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Válassz frissítést" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "A GCodeGzWriter nem támogatja a nem szöveges módot." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Nem sikerült elérni a frissítési információkat." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Hogyan frissíts" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Elfogadás" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Kiegészítő licencszerződés" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "A GCodeWriter nem támogatja a szöveges nélüli módot." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Készítse elő a G-kódot az exportálás előtt." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Szimuláció nézet" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Réteg nézet" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Hálózati nyomtatás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Hálózati nyomtatás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Csatlakozva hálózaton keresztül" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "holnap" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "ma" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Hálózati csatlakozás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Várja meg, amíg az aktuális feladat elküldésre kerül." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Nyomtatási hiba" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "A nyomtatási feladat sikeresen elküldésre került a nyomtatóra." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Adatok elküldve" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Olyan nyomtatóval próbál csatlakozni, amelyen nem fut az Ultimaker Connect. Kérjük, frissítse a nyomtatón a firmware-t." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Frissítse a nyomtatót" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Nyomtatási feladat küldése" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "A nyomtatási feladat feltöltése a nyomtatóra." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "A Cura olyan anyagprofilt észlel, amelyet még nem telepítettek a(z) {0} csoport gazdanyomtatójára." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Anyagok küldése a nyomtatóra" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Nem sikerült feltölteni az adatokat a nyomtatóra." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Hálózati hiba" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Megpróbált csatlakozni a (z) {0} -hez, de a gép nem része a csoportnak.Látogasson el a weboldalra, és konfigurálhatja azt csoporttagnak." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Nem csoport" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Csoport konfiguráció" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Kezdjük el" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Csoport #{group_nr}" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Külső fal" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Belső falak" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Héj" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Kitöltés" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Támasz kitöltés" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Támasz interface" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Támasz" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Szoknya" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Elsődleges torony" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Átmozgás" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Visszahúzás" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Egyéb" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Következő" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Bezár" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA digitális eszközcsere" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Bináris" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF beágyazott JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford háromszög formátum" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Tömörített COLLADA digitális eszközcsere" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Felület nézet" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Hiba a 3mf fájl írásakor." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF fájl" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura projekt 3MF fájl" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitor" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D-s modellsegéd" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -739,1490 +1776,1533 @@ msgstr "" "

    Itt Megtudhatja, hogyan lehet a lehető legjobb nyomtatási minőséget és megbízhatóságot biztosítani.

    \n" "

    View print quality guide

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "A projekt fájl {0} egy ismeretlen {1} géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Háló típus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Projekt fájl megnyitása" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Normál mód" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Támaszként nyomtassa" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 -msgctxt "@info:title" -msgid "Can't Open Project File" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Ajánlott" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Egyedi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." +msgid "Infill mesh only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Hiba a 3mf fájl írásakor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura projekt 3MF fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Biztonsági mentések" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Hiba történt a biztonsági mentés feltöltése közben." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." +msgid "Cutting mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "A biztonsági mentés feltöltése ..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "A biztonsági mentés feltöltése befejeződött." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Hiba történt a biztonsági másolat visszaállításakor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Bitonsági mentések kezelése" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Nem lehet szeletelni a jelenlegi alapanyaggal, mert nem kompatibilis a kiválasztott nyomtatóval, vagy a beállításaival." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Nem lehet szeletelni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Nem lehet szeletelni ezekkel a beállításokkal. Ezek a beállítások okoznak hibát: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "Nem lehet szeletelni pár modell beállítás miatt. A következő beállításokokoznak hibát egy vagy több modellnél: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Nem lehet szeletelni, mert az elsődleges torony, vagy az elsődleges pozíció érvénytelen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Nem lehet szeletelni, mert vannak olyan objektumok, amelyek a letiltott Extruderhez vannak társítva.%s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Réteg feldolgozás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Információ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura Profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Nem sikerült elérni a frissítési információkat." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Új %s firmware elérhető" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 msgctxt "@action:button" -msgid "How to update" -msgstr "Hogyan frissíts" +msgid "Select settings" +msgstr "Beállítások kiválasztása" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "A modellek egyéni beállításainak kiválasztása" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Szűrés..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mindent mutat" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura biztonsági mentések" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura verzió" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Gépek" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Alapanyagok" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profilok" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Beépülők" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Többet szeretnél?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Biztonsági mentés most" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Automatikus biztonsági mentés" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Automatikusan létrehoz egy biztonsági mentést minden egyes nap, mikor a Cura indítva van." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Visszaállítás" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Biztonsági mentés törlés" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Biztosan szeretnéd törölni a biztonsági mentést? Ez nem vonható vissza." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Helyreállítás biztonsági mentésből" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "A biztonsági mentés helyreállítás előtt a Cura -t újra kell indítani.Bezárjuk most a Cura-t?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "A Cura beállítások biztonsági mentése és szinkronizálása." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Bejelentkezés" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Biztonsági mentéseim" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Nincs egyetlen biztonsági mentésed sem. Használd a 'Biztonsági mentés' gombot, hogy létrehozz egyet." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Az előnézeti szakaszban a látható biztonsági mentések száma 5 lehet.Ha szeretné látni a régebbieket, távolítson el egyet a láthatóak közül." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Nyomtató beállítás" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Szélesség)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Mélység)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Magasság)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Tárgyasztal alakja" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origó középen" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Fűtött asztal" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Fűtött nyomtatási tér" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-kód illesztés" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Nyomtatófej beállítások" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Szán magasság" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Extruderek száma" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-kód kezdés" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-kód zárás" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Fűvóka beállítások" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Fúvóka méret" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Nyomtatószál átmérő" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Fúvóka X eltolás" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Fúvóka Y eltolás" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Hűtőventilátorok száma" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Extruder G-kód kezdés" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Extruder G-kód zárás" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Nyomtató" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" msgid "Update Firmware" msgstr "Firmware frissítés" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Tömörített G-kód fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "A GCodeGzWriter nem támogatja a nem szöveges módot." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code Fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-kód elemzés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-kód részletek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Győződj meg róla, hogy a G-kód igazodik a nyomtatódhoz és beállításaihoz, mielőtt elküldöd a fájlt. A G-kód ábrázolása nem biztos, hogy pontos." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "A GCodeWriter nem támogatja a szöveges nélüli módot." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Készítse elő a G-kódot az exportálás előtt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Gép beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Modellenkénti beállítások" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "A firmware egy szoftver, ami közvetlenül a nyomtatón fut. Ez vezérli a léptető motorokat, szabályozza a hőmérsékleteket, és az egész nyomtató működését." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Modellenkénti beállítások konfigurálása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Utólagos műveletek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G-kód módosítás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Előkészítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Előnézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Mentés külső meghajtóra" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Mentés külső meghajtóra {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Nincsenek elérhető fájlformátumok az íráshoz!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Mentés külső meghajóra {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -msgctxt "@info:title" -msgid "Saving" -msgstr "Mentés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Sikertelen mentés {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Nem található a fájlnév {device} -on az írási művelethez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Sikertelen mentés a {0}: {1} meghajtóra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Mentve a {0} meghajtóra, mint {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Fájl Mentve" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Leválaszt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "{0} meghajtó leválasztása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} leválasztva. Eltávolíthatod az adathordozót." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Hardver biztonságos eltávolítása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "{0} leválasztása sikertelen. A meghajtó használatban van." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Cserélhető meghajtó" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Szimuláció nézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Réteg nézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Felület nézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 msgctxt "@label" -msgid "Support Blocker" -msgstr "Támasz blokkoló" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "A firmware a nyomtató része, így a használatba vételkor már a gépen található.Azonban készülnek belőle újabb verziók, amik esetleges hibákat szüntetnek meg, illetve egyéb új funkciókat biztosíthatnak." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Hozzon létre egy kötetet, amelyben a támaszok nem kerülnek nyomtatásra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 msgctxt "@action:button" -msgid "Sync" -msgstr "" +msgid "Automatically upgrade Firmware" +msgstr "Automatikus firmware frissítés" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Egyedi firmware feltöltése" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "A firmware feltöltés nem lehetséges, mert nincs a nyomtatóval kapcsolat." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Elfogadás" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "A firmware feltöltés nem lehetséges, mert ugyan a nyomtató kapcsolódik, de az nem támogatja a firmware frissítést." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Kiegészítő licencszerződés" +msgid "Select custom firmware" +msgstr "Egyedi firmware kiválasztása" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA digitális eszközcsere" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Bináris" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF beágyazott JSON" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford háromszög formátum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Tömörített COLLADA digitális eszközcsere" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker formátumcsomag" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Tárgyasztal szint" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Válassz frissítést" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 msgctxt "@title:window" -msgid "Remove printers?" -msgstr "" +msgid "Firmware Update" +msgstr "Firmware frissítés" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 -#, python-brace-format +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -msgstr[1] "" +msgid "Updating firmware." +msgstr "A firmware frissítése." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" +msgid "Firmware update completed." +msgstr "Firmware frissítés kész." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 -msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Küldjön és felügyeljen nyomtatási feladatokat bárhonnan az Ultimaker fiókjával." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Kezdjük el" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Olyan nyomtatóval próbál csatlakozni, amelyen nem fut az Ultimaker Connect. Kérjük, frissítse a nyomtatón a firmware-t." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Frissítse a nyomtatót" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "A Cura olyan anyagprofilt észlel, amelyet még nem telepítettek a(z) {0} csoport gazdanyomtatójára." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Anyagok küldése a nyomtatóra" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Megpróbált csatlakozni a (z) {0} -hez, de a gép nem része a csoportnak.Látogasson el a weboldalra, és konfigurálhatja azt csoporttagnak." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Nem csoport" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Csoport konfiguráció" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Várja meg, amíg az aktuális feladat elküldésre kerül." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Nyomtatási hiba" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Nem sikerült feltölteni az adatokat a nyomtatóra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Hálózati hiba" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Nyomtatási feladat küldése" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "A nyomtatási feladat feltöltése a nyomtatóra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "A nyomtatási feladat sikeresen elküldésre került a nyomtatóra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Adatok elküldve" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Hálózati nyomtatás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Hálózati nyomtatás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Csatlakozva hálózaton keresztül" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Hálózati csatlakozás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "holnap" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "ma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB nyomtatás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Nyomtatás USB-ről" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Nyomtatás USB-ről" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Csatlakozás USB-n" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "USB nyomtatás folyamatban van, a Cura bezárása leállítja ezt a nyomtatást. Biztos vagy ebben?" +msgid "Firmware update failed due to an unknown error." +msgstr "A firmware frissítés meghiúsult ismeretlen hiba miatt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött." +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A firmware frissítés meghiúsult kommunikációs hiba miatt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Nyomtatás folyamatban" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A firmware frissítés meghiúsult input/output hiba miatt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Fájl" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A firmware frissítés meghiúsult, mert nem található a firmware." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen nézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Néhány dolog problémát jelenthet ebben a nyomtatásban.Kattintson ide a beállítási tippek megtekintéséhez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Projekt megnyitása" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Összegzés - Cura Project" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Nyomtató beállítások" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Hogyan lehet megoldani a gépet érintő konfliktust?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Típus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Nyomtató csoport" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Profil beállítások" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Hogyan lehet megoldani a profilt érintő konfliktust?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Név" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Nincs a profilban" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 felülírás" msgstr[1] "%1 felülírás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Származék" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 felülírás" msgstr[1] "%1, %2 felülírás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Alapanyag beállítások" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Hogyan lehet megoldani az alapanyaggal kapcsolatos konfliktust?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Beállítások láthatósága" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Mód" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Látható beállítások:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 %2 -ből" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "A projekt betöltésekor minden modell törlődik a tárgyasztalról." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Megnyitás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Többet szeretnél?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Biztonsági mentés most" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatikus biztonsági mentés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Automatikusan létrehoz egy biztonsági mentést minden egyes nap, mikor a Cura indítva van." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Visszaállítás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Biztonsági mentés törlés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Biztosan szeretnéd törölni a biztonsági mentést? Ez nem vonható vissza." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Helyreállítás biztonsági mentésből" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "A biztonsági mentés helyreállítás előtt a Cura -t újra kell indítani.Bezárjuk most a Cura-t?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura verzió" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Gépek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Alapanyagok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profilok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Beépülők" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura biztonsági mentések" +msgid "Post Processing Plugin" +msgstr "Utó művelet beépülő" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Biztonsági mentéseim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Nincs egyetlen biztonsági mentésed sem. Használd a 'Biztonsági mentés' gombot, hogy létrehozz egyet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Az előnézeti szakaszban a látható biztonsági mentések száma 5 lehet.Ha szeretné látni a régebbieket, távolítson el egyet a láthatóak közül." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "A Cura beállítások biztonsági mentése és szinkronizálása." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Bejelentkezés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Firmware frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "A firmware egy szoftver, ami közvetlenül a nyomtatón fut. Ez vezérli a léptető motorokat, szabályozza a hőmérsékleteket, és az egész nyomtató működését." +msgid "Post Processing Scripts" +msgstr "Utó művelet szkript" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Adjon hozzá egy szkriptet" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "A firmware a nyomtató része, így a használatba vételkor már a gépen található.Azonban készülnek belőle újabb verziók, amik esetleges hibákat szüntetnek meg, illetve egyéb új funkciókat biztosíthatnak." +msgid "Settings" +msgstr "Beállítások" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automatikus firmware frissítés" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Egyedi firmware feltöltése" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "" +msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "A firmware feltöltés nem lehetséges, mert nincs a nyomtatóval kapcsolat." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "A firmware feltöltés nem lehetséges, mert ugyan a nyomtató kapcsolódik, de az nem támogatja a firmware frissítést." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Egyedi firmware kiválasztása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "A firmware frissítése." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Firmware frissítés kész." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A firmware frissítés meghiúsult ismeretlen hiba miatt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A firmware frissítés meghiúsult kommunikációs hiba miatt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A firmware frissítés meghiúsult input/output hiba miatt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A firmware frissítés meghiúsult, mert nem található a firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Kép konvertálás..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "Az egyes pixelek legnagyobb távolsága \"Base.\"" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Magasság (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Az alap magassága a tárgyasztaltól mm -ben." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Alap (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "A szélesség mm -ben a tárgyasztalon." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Szélesség (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "A mélység mm-ben a tárgyasztalon" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Mélység (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "A litofánok esetében a sötét képpontoknak a vastagabb helyek felelnek meg.Ez azért van így, mert minél vastagabb a hely, annál kevesebb fényt enged át.A magassági térképeknél a világosabb képpontok magasabb szintnek felelnek meg, tehát a generált 3D modellnél ezeket figyelembe kell venni.Ez azt is jelenti, hogy általában a generált modell a tényleges kép negatívja kell, hogy legyen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "A sötétebb a magasabb" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "A világosabb a magasabb" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "A kép simításának mértéke." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Simítás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Nyomtató" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Fűvóka beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 msgctxt "@label" -msgid "Nozzle size" -msgstr "Fúvóka méret" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Kérjük, válassza ki az Ultimaker Original eredeti frissítéseit" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Fűthető tárgyasztal (eredeti vagy utólag épített)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Tálca szintezés" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Nyomtatószál átmérő" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Azért, hogy nyomtattandó testek megfelelően letapadjanak, lehetőség van beállítani a nyomtatótálcát. Ha rákattint a 'Mozgás a következő pozícióba' gombra, a fej átmozgatható a különböző beállítási helyzetekbe." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Fúvóka X eltolás" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Minden helyzetben helyezzen be egy darab papírt (A4) a fúvóka alá, és állítsa be a fej magasságát.A nyomtató tálca magassága akkor megfelelő, ha a papírt kissé megfogja a fúvóka vége." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Fúvóka Y eltolás" +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Tálca szintezés indítása" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Hűtőventilátorok száma" +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Mozgás a következő pozícióba" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Extruder G-kód kezdés" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "További információ a névtelen adatgyűjtésről" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Extruder G-kód zárás" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Az Ultimaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javítása érdekében. Az alábbiakban található egy példa az összes megosztott adatra:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Nyomtató beállítás" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Nem szeretnék részt venni az adatgyűjtésben" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Szélesség)" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Anonim adatok küldésének engedélyezése" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Mélység)" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Áruház" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Magasság)" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "A csomagok változásainak érvénybe lépése előtt újra kell indítania a Cura-t." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Tárgyasztal alakja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origó középen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Fűtött asztal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Fűtött nyomtatási tér" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-kód illesztés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Nyomtatófej beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Szán magasság" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Extruderek száma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-kód kezdés" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Telepítés" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-kód zárás" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Telepítve" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Kompatibilitás" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Gép" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Tárgyasztal" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Támasz" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Minőség" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Technikai adatlap" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Biztonsági adatlap" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Nyomtatási útmutató" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Weboldal" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Bejelentkezés szükséges a telepítéshez vagy frissítéshez" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Anyagtekercsek vásárlása" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Frissítés" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Frissítés" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Frissítve" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Vissza" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +msgctxt "@title:tab" +msgid "Plugins" +msgstr "Kiegészítők" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Alapanyagok" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Telepítve" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +msgctxt "@label" +msgid "Will install upon restarting" +msgstr "Telepítés után újraindul" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Bejelentkezés szükséges a frissítéshez" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Leminősítés" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Eltávolítás" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +msgctxt "@label" +msgid "Community Contributions" +msgstr "Közösségi hozzájárulások" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +msgctxt "@label" +msgid "Community Plugins" +msgstr "Közösségi bővítmények" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +msgctxt "@label" +msgid "Generic Materials" +msgstr "Általános anyagok" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Csomagok beolvasása..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +msgctxt "@label" +msgid "Website" +msgstr "Weboldal" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +msgctxt "@label" +msgid "Email" +msgstr "Email" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +msgctxt "@label" +msgid "Version" +msgstr "Verzió" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +msgctxt "@label" +msgid "Last updated" +msgstr "Utosó frissítés" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +msgctxt "@label" +msgid "Brand" +msgstr "Márka" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +msgctxt "@label" +msgid "Downloads" +msgstr "Letöltések" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Nem sikerült csatlakozni a Cura Package adatbázishoz. Kérjük, ellenőrizze a kapcsolatot." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Következő" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Eltávolítás jóváhagyása" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Távolítsd el a még használatban lévő anyagokat és / vagy profilokat.A megerősítés visszaállítja az alapanyagokat / profilokat alapértelmezett értékükre." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Alapanyagok" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Profilok" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Jóváhagy" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 +msgctxt "@label" +msgid "Color scheme" +msgstr "Szín séma" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Alapanyag szín" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Vonal típus" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Kompatibilis mód" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 +msgctxt "@label" +msgid "Travels" +msgstr "Átmozgás" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 +msgctxt "@label" +msgid "Helpers" +msgstr "Segítők" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Shell" +msgstr "Héj" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 +msgctxt "@label" +msgid "Infill" +msgstr "Kitöltés" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 +msgctxt "@label" +msgid "Starts" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Csak a felső rétegek megjelenítése" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Mutasson 5 felső réteget részletesen" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Felső / Alsó" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Belső fal" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Nyomtató kezelés" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Üveg" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "A távoli nyomtatásisor kezeléshez kérjük frissítse a firmware-t." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Betöltés..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Elérhetetlen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Elérhetetlen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Készenlét" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Előkészítés..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Felirat nélküli" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Névtelen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "A konfiguráció változtatásokat igényel" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Részletek" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Elérhetetlen nyomtató" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Az első elérhető" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Nyomtatási Sor" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Kezelés a böngészőben" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Nincs a sorban nyomtatási feladat. Szeletelj és adj hozzá egy feladatot." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Nyomtatások" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Teljes nyomtatási idő" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Várakozom" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Nyomtatás hálózaton" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Nyomtatás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Nyomtató kiválasztás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Konfiguráció változások" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Felülírás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatás szükséges:" +msgstr[1] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatások szükségesek:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A %1 nyomtató hozzá van rendelve a feladathoz, azonban az ismeretlen anyagot tartalmaz." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Változtasd meg az %1 anyagot %2 -ről %3 -ra." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Töltsd be %3 -at %1 anyagként. (Ez nem felülbírálható)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Cseréld a nyomtató magot %1 -ről %2 -re, %3 -hoz." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Változtasd meg a tálcát %1 -re (Ez nem felülbírálható)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "A felülbírálás a megadott beállításokat fogja használni a meglévő nyomtató konfigurációval, azonban ez eredménytelen nyomtatáshoz vezethet." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Alumínium" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Befejezve" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Megszakítás..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Megszakítva" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Várakozás..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Várakozás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Folytatás..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Beavatkozás szükséges" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Befejezve %1 a %2 -ből" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Csatlakozás hálózati nyomtatóhoz" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Ha hálózaton keresztül szeretnél közvetlenül nyomtatni, akkor győződj meg arról, hogy a nyomtató csatlakozik vezetékes, vagy vezeték nélküli hálózathoz. Ha nincs elérhető hálózat, akkor közvetlenül USB kapcsolaton keresztül is tudsz nyomtatni." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Válaszd ki a nyomtatódat az alábbi listából:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Szerkeszt" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Eltávolít" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Frissít" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Ha a nyomtatód nincs a listában, olvasd el a hálózati nyomtatás hibaelhárítási útmutatót" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Típus" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Frimware verzió" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Cím" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Ez a nyomtató nem úgy van beállítva, hogy nyomtatócsoportot üzemeltessen." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Ez a nyomtató gazdagépe a %1 nyomtatócsoportnak." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A címen található nyomtató még nem válaszolt." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Csatlakozás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Hibás IP cím" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Kérlek adj meg egy érvényes IP címet." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Nyomtató cím" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Írd be a nyomtató hálózati IP címét." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Lépj a tetjére" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Törlés" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Folytat" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Várakozás..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Folytatás..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Várakozás" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Megszakítás..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Megszakít" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Biztos, hogy a %1 a nyomtatási sor elejére akarod mozgatni?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Tedd a nyomtatási sor elejére" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Biztos, hogy törölni szeretnéd %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Nyomtatási feladat törlés" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Biztosan meg akarod szakítani %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Nyomtatás megszakítás" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2235,1593 +3315,637 @@ msgstr "" "- Ellenőrizd, hogy a nyomtató csatlakozik a hálózathoz\n" "- Ellenőrizd, hogy fel vagy-e jelentkezve a felhőbe." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Csatlakoztasd a nyomtatót a hálózathoz." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Nézd meg az online felhasználói kézikönyvet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Háló típus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normál mód" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Támaszként nyomtassa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Beállítások kiválasztása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "A modellek egyéni beállításainak kiválasztása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Szűrés..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mindent mutat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Utó művelet beépülő" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Utó művelet szkript" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Adjon hozzá egy szkriptet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "" +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Néhány dolog problémát jelenthet ebben a nyomtatásban.Kattintson ide a beállítási tippek megtekintéséhez." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Szín séma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Alapanyag szín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Vonal típus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" +msgid "3D View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Kompatibilis mód" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Átmozgás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Segítők" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Héj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Kitöltés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Csak a felső rétegek megjelenítése" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Mutasson 5 felső réteget részletesen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Felső / Alsó" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Belső fal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "További információ a névtelen adatgyűjtésről" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Az Ultimaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javítása érdekében. Az alábbiakban található egy példa az összes megosztott adatra:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Nem szeretnék részt venni az adatgyűjtésben" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Anonim adatok küldésének engedélyezése" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Vissza" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Kompatibilitás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Gép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Tárgyasztal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Támasz" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Minőség" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Technikai adatlap" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Biztonsági adatlap" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Nyomtatási útmutató" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Weboldal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Telepítve" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Bejelentkezés szükséges a telepítéshez vagy frissítéshez" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Anyagtekercsek vásárlása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Frissítve" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" +msgid "Front View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "" +msgid "Object list" +msgstr "Objektum lista" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "A csomagok változásainak érvénybe lépése előtt újra kell indítania a Cura-t." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Kiegészítők" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Alapanyagok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Telepítve" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Telepítés után újraindul" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Bejelentkezés szükséges a frissítéshez" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Leminősítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Eltávolítás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Telepítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Következő" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Eltávolítás jóváhagyása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Távolítsd el a még használatban lévő anyagokat és / vagy profilokat.A megerősítés visszaállítja az alapanyagokat / profilokat alapértelmezett értékükre." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Alapanyagok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profilok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Jóváhagy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Weboldal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "Email" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Verzió" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Utosó frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Márka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Letöltések" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Közösségi hozzájárulások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Közösségi bővítmények" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Általános anyagok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Nem sikerült csatlakozni a Cura Package adatbázishoz. Kérjük, ellenőrizze a kapcsolatot." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Csomagok beolvasása..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" -msgstr "Áruház" +msgstr "Piactér" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Tálca szintezés" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Fájl" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Azért, hogy nyomtattandó testek megfelelően letapadjanak, lehetőség van beállítani a nyomtatótálcát. Ha rákattint a 'Mozgás a következő pozícióba' gombra, a fej átmozgatható a különböző beállítási helyzetekbe." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "S&zerkesztés" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Minden helyzetben helyezzen be egy darab papírt (A4) a fúvóka alá, és állítsa be a fej magasságát.A nyomtató tálca magassága akkor megfelelő, ha a papírt kissé megfogja a fúvóka vége." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Nézet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Tálca szintezés indítása" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Beállítások" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mozgás a következő pozícióba" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "K&iterjesztések" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Kérjük, válassza ki az Ultimaker Original eredeti frissítéseit" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referenciák" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Fűthető tárgyasztal (eredeti vagy utólag épített)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Segítség" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Csatlakozás hálózati nyomtatóhoz" +msgid "New project" +msgstr "Új projekt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Ha hálózaton keresztül szeretnél közvetlenül nyomtatni, akkor győződj meg arról, hogy a nyomtató csatlakozik vezetékes, vagy vezeték nélküli hálózathoz. Ha nincs elérhető hálózat, akkor közvetlenül USB kapcsolaton keresztül is tudsz nyomtatni." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Biztos benne, hogy új projektet akar kezdeni? Ez törli az alapsíkot és az összes nem mentett beállítást." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Válaszd ki a nyomtatódat az alábbi listából:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Szerkeszt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Eltávolít" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Frissít" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Ha a nyomtatód nincs a listában, olvasd el a hálózati nyomtatás hibaelhárítási útmutatót" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Típus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Frimware verzió" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Cím" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Ez a nyomtató nem úgy van beállítva, hogy nyomtatócsoportot üzemeltessen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Ez a nyomtató gazdagépe a %1 nyomtatócsoportnak." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A címen található nyomtató még nem válaszolt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Csatlakozás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Hibás IP cím" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Kérlek adj meg egy érvényes IP címet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Nyomtató cím" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Írd be a nyomtató hálózati IP címét." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Konfiguráció változások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Felülírás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatás szükséges:" -msgstr[1] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatások szükségesek:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A %1 nyomtató hozzá van rendelve a feladathoz, azonban az ismeretlen anyagot tartalmaz." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Változtasd meg az %1 anyagot %2 -ről %3 -ra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Töltsd be %3 -at %1 anyagként. (Ez nem felülbírálható)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Cseréld a nyomtató magot %1 -ről %2 -re, %3 -hoz." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Változtasd meg a tálcát %1 -re (Ez nem felülbírálható)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "A felülbírálás a megadott beállításokat fogja használni a meglévő nyomtató konfigurációval, azonban ez eredménytelen nyomtatáshoz vezethet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Üveg" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Lépj a tetjére" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Törlés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Folytat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Várakozás..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Folytatás..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Várakozás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Megszakítás..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Megszakít" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Biztos, hogy a %1 a nyomtatási sor elejére akarod mozgatni?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Tedd a nyomtatási sor elejére" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Biztos, hogy törölni szeretnéd %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Nyomtatási feladat törlés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Biztosan meg akarod szakítani %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Nyomtatás megszakítás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Nyomtató kezelés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "A távoli nyomtatásisor kezeléshez kérjük frissítse a firmware-t." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Betöltés..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Elérhetetlen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Elérhetetlen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Készenlét" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Előkészítés..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Felirat nélküli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Névtelen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "A konfiguráció változtatásokat igényel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Részletek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Elérhetetlen nyomtató" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Az első elérhető" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Megszakítva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Befejezve" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Megszakítás..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Várakozás..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Várakozás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Folytatás..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Beavatkozás szükséges" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Befejezve %1 a %2 -ből" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Nyomtatási Sor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Kezelés a böngészőben" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Nincs a sorban nyomtatási feladat. Szeletelj és adj hozzá egy feladatot." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Nyomtatások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Teljes nyomtatási idő" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Várakozom" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Nyomtatás hálózaton" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Nyomtatás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Nyomtató kiválasztás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Bejelentkezés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Nincs időbecslés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Nincs költségbecslés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Előnézet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Időbecslés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Anyag becslés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Szeletelés..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Nem szeletelhető" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Feldolgozás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Szeletelés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Szeletelés indítása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Elvet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mutassa az online hibaelhárítási útmutatót" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Teljes képernyőre váltás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Kilépés a teljes képernyőn" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Visszavon" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Újra" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "Kilép" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3D nézet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Előlnézet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Felülnézet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Bal oldalnézet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Jobb oldalnézet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Cura beállítása..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Nyomtató hozzáadása..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Nyomtatók kezelése..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Anyagok kezelése..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "Profil &frissítése a jelenlegi beállításokkal/felülírásokkal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Jelenlegi változtatások eldobása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "Profil &létrehozása a jelenlegi beállításokkal/felülírásokkal..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Profilok kezelése..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Online &Dokumentumok megjelenítése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Hibajelentés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Újdonságok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Rólunk..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Modell törlés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "&Középső modell a platformon" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Csoportosítás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Csoport bontása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "&Modellek keverése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Modell többszörözés..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Mindent kijelöl" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Tárgyasztal törlése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Mindent újratölt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Minden modell elrendezése a tárgyasztalon" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Minden modell rendezése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Kijelöltek rendezése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Minden modellpozíció visszaállítása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Minden modelltranszformáció visszaállítása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Fájl(ok) megnyitása..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "Új projekt..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Konfigurációs mappa megjelenítése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Beállítások láthatóságának beállítása..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Piactér" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Ez a csomag újraindítás után fog települni." +msgid "Time estimation" +msgstr "Időbecslés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Általános" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Anyag becslés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Beállítások" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Nyomtatók" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profilok" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Nincs időbecslés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Nincs költségbecslés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Előnézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Fájl(ok) megnyitása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Csomag telepítése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Fájl(ok) megnyitása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "A kiválasztott fájlok között több G-kód fájl is található.Egyszerre csak egy G-kód fájlt nyithat meg, ezért csak egy ilyen fájlt válasszon ki." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" msgstr "Nyomtató hozzáadása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" -msgid "What's New" -msgstr "Újdonságok" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Hálózati nyomtató hozzáadása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Helyi nyomtató hozzáadása" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Nyomtató hozzáadása IP címmel" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Hozzáad" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Nem sikerült csatlakozni az eszközhöz." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "Az ezen a címen található nyomtató még nem válaszolt." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Ezt a nyomtatót nem lehet hozzáadni, mert ismeretlen a nyomtató vagy nem egy csoport tagja." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Vissza" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Csatlakozás" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Felhasználói Szerződés" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Elutasítás és bezárás" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Üdvözöljük az Ultimaker Cura-ban" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Kezdj hozzá" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Nyomtató név" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "A hálózaton nem található nyomtató." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Frissítés" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Nyomtató hozzáadása IP címmel" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Hibaelhárítás" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Segítsen nekünk az Ultimaker Cura fejlesztésében" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Az Ultimaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javításának érdekében, ideértve:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Géptípusok" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Anyagfelhasználás" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Szeletek száma" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Nyomtatási beállítások" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Az Ultimaker Cura által gyűjtött adatok nem tartalmaznak személyes információt." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Több információ" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" +msgid "What's New" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Üres" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "verzió: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Teljes körű megoldás az olvadószálas 3D-s nyomtatáshoz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "A Cura-t az Ultimaker B.V fejlesztette ki a közösséggel együttműködésben. A Cura büszkén használja a következő nyílt forráskódú projekteket:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Grafikai felhasználói interfész" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Alkalmazás keretrendszer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "G-kód generátor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Folyamatközi kommunikációs könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Programozási nyelv" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI keretrendszer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "GUI keretrendszer függőségek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C/C++ függőségek könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Adat csere formátum" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Támogató könyvtár a tudományos számítások számára" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Támogató könyvtár a gyorsabb matematikához" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Támogató könyvtár az STL fájlok kezeléséhez" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Támogató könyvtár a sík objektumok kezeléséhez" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Támogató könyvtár a háromszög hálók kezeléséhez" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Támogató könyvtár a 3MF fájlok kezeléséhez" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Támogató könyvtár a fájl metaadatokhoz és továbbításához" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Soros kommunikációs könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "ZeroConf felderítő könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Poligon daraboló könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Betűtípus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVG ikonok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Linux kereszt-disztribúciós alkalmazás telepítése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Projekt fájl megnyitása" +msgid "Open file(s)" +msgstr "Fájl(ok) megnyitása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Ez egy Cura projekt fájl. Szeretné projektként megnyitni, vagy importálni a modelleket?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Egy vagy több projekt fájlt találtunk a kiválasztott fájlokban.Egyszerre csak egy projekt fájlt nyithat meg. Javasoljuk, hogy csak a modelleket importálja ezekből a fájlokból. Szeretné folytatni?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Emlékezzen a választásra" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Megnyitás projektként" +msgid "Import all as models" +msgstr "Importáljunk mindent modellekként" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Projekt mentése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extruder %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & alapanyag" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Alapanyag" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Ne mutassa újra a projekt összegzését mentés közben" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Modellek importálása" +msgid "Save" +msgstr "Mentés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Változtatások megtartása vagy eldobása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3829,1206 +3953,144 @@ msgid "" "Alternatively, you can discard the changes to load the defaults from '%1'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Profil beállítások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Mindig kérdezz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Eldobás és ne kérdezze újra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Megtartás és ne kérdezze újra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Projekt fájl megnyitása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Egy vagy több projekt fájlt találtunk a kiválasztott fájlokban.Egyszerre csak egy projekt fájlt nyithat meg. Javasoljuk, hogy csak a modelleket importálja ezekből a fájlokból. Szeretné folytatni?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Ez egy Cura projekt fájl. Szeretné projektként megnyitni, vagy importálni a modelleket?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Emlékezzen a választásra" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importáljunk mindent modellekként" +msgid "Open as project" +msgstr "Megnyitás projektként" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Projekt mentése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extruder %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & alapanyag" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Alapanyag" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Ne mutassa újra a projekt összegzését mentés közben" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Mentés" +msgid "Import models" +msgstr "Modellek importálása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Kiválasztott modell nyomtatása %1" -msgstr[1] "Kiválasztott modellek nyomtatása %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Névtelen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Fájl" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "S&zerkesztés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Nézet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "K&iterjesztések" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referenciák" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Segítség" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Új projekt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Biztos benne, hogy új projektet akar kezdeni? Ez törli az alapsíkot és az összes nem mentett beállítást." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Piactér" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Konfigurációk" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Ez a konfiguráció nem érhető el, mert a(z) %1 nem azonosítható. Kérjük, látogasson el a %2 webhelyre a megfelelő anyagprofil letöltéséhez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Piactér" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Az elérhető konfigurációk betöltése a nyomtatóról..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "A konfiguráció nem elérhető, mert nincs kapcsolat a a nyomtatóval." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Konfiguráció kiválasztása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Konfigurációk" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Egyéni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Nyomtató" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Bekapcsolt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Alapanyag" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Használj ragasztót a jobb tapadás érdekében, ennél az alapanyag kombinációnál." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Kiválasztott modell nyomtatása:" -msgstr[1] "Kiválasztott modellek nyomtatása:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Kiválasztott modell sokszorozása" -msgstr[1] "Kiválasztott modellek sokszorozása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Másolatok száma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Kiválasztás exportálása..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Alapanyag" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Kedvencek" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Generikus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Hálózati nyomtatók" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Helyi nyomtatók" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Legutóbbi fájlok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Nyomtató" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Alapanyag" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Beállítva aktív extruderként" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder engedélyezése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder letiltása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Láthatósági beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Beállítások láthatóságának kezelése..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Kamera helyzet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Kamera nézet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspektívikus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Merőleges" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Tárgyasztal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Nincs nyomtatóhoz csatlakoztatva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A nyomtató nem fogadja a parancsokat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Karbantartás alatt. Ellenőrizze a nyomtatót" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Elveszett a kapcsolat a nyomtatóval" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Nyomtatás..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Felfüggsztve" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Előkészítés..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Távolítsa el a tárgyat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Nyomtatás megszakítás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Biztosan meg akarod szakítani a nyomtatást?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Objektum lista" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Interfész" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Pénznem:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Téma:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "A módosítások érvénybe lépéséhez újra kell indítania az alkalmazást." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Automatikus újraszeletelés, ha a beállítások megváltoznak." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Automatikus szeletelés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "A nézetablak viselkedése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Jelölje meg pirossal azokat a területeket, amiket szükséges alátámasztani.Ha ezeket a részeket nem támasztjuk alá, a nyomtatás nem lesz hibátlan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Túlnyúlás kijelzése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "A kamerát úgy mozgatja, hogy a modell kiválasztásakor, az a nézet középpontjában legyen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Kamera középre, mikor az elem ki van választva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Megfordítsuk-e az alapértelmezett Zoom viselkedését?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Fordítsa meg a kamera zoom irányát." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "A nagyítás az egér mozgatásának irányában mozogjon?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Az egér felé történő nagyítás ortográfiai szempontból nem támogatott." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Nagyítás az egér mozgás irányában" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Az alapsíkon lévő modelleket elmozgassuk úgy, hogy ne keresztezzék egymást?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "A modellek egymástól való távtartásának biztosítása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "A modelleket mozgatni kell lefelé, hogy érintsék a tárgyasztalt?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Modellek automatikus tárgyasztalra illesztése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Figyelmeztető üzenet megjelenítése g-kód olvasóban." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Figyelmeztető üzenet a g-code olvasóban" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Kényszerítsük a réteget kompatibilitási módba ?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "A rétegnézet kompatibilis módjának kényszerítése (újraindítás szükséges)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Milyen fípusú fényképezőgépet használunk?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspetívikus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Merőleges" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Fájlok megnyitása és mentése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "A modelleket átméretezzük a maximális építési méretre, ha azok túl nagyok?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Nagy modellek átméretezése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Egy adott modell rendkívül kicsinek tűnhet, ha mértékegysége például méterben van, nem pedig milliméterben. Ezeket a modelleket átméretezzük?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Extrém kicsi modellek átméretezése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Betöltés után a modellek legyenek kiválasztva?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Modell kiválasztása betöltés után" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "A nyomtató nevét, mint előtagot, hozzáadjuk a nyomtatási feladat nevéhez?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Gépnév előtagként a feladatnévben" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Mutassuk az összegzést a projekt mentésekor?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Összegzés megjelenítése projekt mentésekor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Mindig kérdezz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Projektként való megnyitás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Importálja a modelleket" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Ha módosított egy profilt, és váltott egy másikra, akkor megjelenik egy párbeszédpanel, amelyben megkérdezi, hogy meg kívánja-e tartani a módosításokat, vagy nem. Vagy választhat egy alapértelmezett viselkedést, és soha többé nem jeleníti meg ezt a párbeszédablakot." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Profilok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Alapértelmezett viselkedés a megváltozott beállítási értékeknél, ha másik profilra vált: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Megváltozott beállítások elvetése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Megváltozott beállítások alkalmazása az új profilba" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Magán" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "A Cura-nak ellenőriznie kell-e a frissítéseket a program indításakor?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Keressen frissítéseket az induláskor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Elküldjük a nyomtatott adatokat név nélkül az Ultimaker-nek?Semmilyen személyes infromáció, IP cím vagy azonosító nem kerül elküldésre." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Név nélküli információ küldés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Több információ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Átnevezés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Létrehoz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Másolat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Import" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Export" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Nyomtató" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Eltávolítás megerősítése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Biztosan el akarod távolítani %1 -et? Ez nem vonható vissza!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Alapanyag importálás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Nem sikerült importálni az alapanyagot %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Sikeres alapanyag import %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Alapanyag export" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Sikertelen alapanyag export %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Sikeres alapanyag export %1 -ba" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Információ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Új átmérő megerősítése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Az új nyomtatószál átmérő %1 mm -re lett beállítva. Ez nem kompatibilis a jelenlegi extruderrel. Biztos, hogy így folytatod?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Megjelenítendő név" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Alapanyag típus" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Szín" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Tulajdonságok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Sűrűség" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Átmérő" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Nyomtatószál költség" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Nyomtatószál súly" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Nyomtatószál hossz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Költség / méter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Ez az anyag kapcsolódik% 1 -hez és osztja néhány tulajdonságát." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Alapanyag leválasztása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Leírás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Tapadási információ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Nyomtatási beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Létrehozás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Másolás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Profil készítés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Adjon nevet ehhez a profilhoz." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Profil másolása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Profil átnevezés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profil importálás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profil exportálás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Nyomtató: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Frissítse a profilt az aktuális beállításokkal/felülbírálásokkal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "A jelenlegi változások elvetése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Ez a profil a nyomtató által megadott alapértelmezéseket használja, tehát az alábbi listában nincs egyetlen beállítás módosítás sem." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Az Ön aktuális beállításai megegyeznek a kiválasztott profillal." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Általános beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Számított" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Beállítás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Jelenlegi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Egység" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Láthatóság beállítása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Mindent ellenőrizni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "A nyomtatófej célhőmérséklete. A fűtőblokk hőmérséklete a beállított értékre fog melegedni, vagy éppen hűlni. Ha ez az érték 0, akkor a fejfűtés ki fog kapcsolni." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Ennek a fejnek a jelenlegi hőmérséklete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A nyomtatófej előmelegítési hőmérséklete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Elvet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Előfűtés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "A nyomtatófejet a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Az alapanyag színe ennél az extrudernél." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Az alapanyag ebben az extruderben." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "A fúvóka be van építve az extruderbe." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Tárgyasztal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "A fűthető ágy beállítható célhőmérséklete. Ha beállítjuk ezt az értéket a tálca elkezd erre a hőmérsékletre melegedni, vagy éppen lehűlni. Ha az érték 0 a tálcafűtés kikapcsol." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A fűthető ágy aktuális hőmérséklete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A tálca előmelegítési hőmérséklete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "A fűthető tálcát, a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Nyomtató vezérlés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Léptetőgomb pozíció" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Léptetőgomb távolság" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-kód küldés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Küldjön egy egyéni G-kód parancsot a csatlakoztatott nyomtatóra. A parancs elküldéséhez nyomja meg az 'enter' gombot." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A nyomtató nincs csatlakoztatva." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Nyomtató hozzáadása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Nyomtatók kezelése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Csatlakoztatott nyomtatók" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Előre beállított nyomtatók" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Aktív nyomtatás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Feladat név" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Nyomtatási idő" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Becsült hátralévő idő" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Nyomtató hozzáadása" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Nyomtatók kezelése" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Csatlakoztatott nyomtatók" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Előre beállított nyomtatók" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Nyomtatási beállítások" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "A nyomtatás beállítása letiltva. A G-kód fájl nem módosítható." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5039,120 +4101,1700 @@ msgstr "" "\n" "Kattints, hogy megnyisd a profil menedzsert." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "A jelenlegi változások elvetése" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Ajánlott" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Egyéni" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Be" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Ki" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Tapasztalati" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "A nyomtatás beállítása letiltva. A G-kód fájl nem módosítható." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Ajánlott" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Egyéni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Be" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Ki" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Tapasztalati" +msgid "Profiles" +msgstr "Profilok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Letapadás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Engedélyezze a peremet, vagy az aláúsztatást. Ez létre fog hozni a test szélén illetve az alján egy olyan részt, ami segíti a letapadást, viszont nyomtatás után ezek könnyen eltávolíthatóak a testről." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Fokozatos kitöltés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "A fokozatos kitöltés folyamatosan növeli a kitöltés mennyiségét, ahogy közeledik a tárgy teteje felé." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Megváltoztattál néhány profilbeállítást. Ha ezeket szeretnéd folyamatosan megtartani, akkor válaszd az 'Egyéni mód' -ot." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Támasz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "A támasz létrehozása segíti a modell kinyúló részeinek hibátlan nyomatását. Támasz nélkül, ezek a részek összeomlanak, és nem lehetséges a hibátlan nyomtatás." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Egyes beállítások eltérő értéken vannak a normál, kalkulált értékektől.\n" -"\n" -"Kattints, hogy ezek a beállítások láthatók legyenek." +msgid "Gradual infill" +msgstr "Fokozatos kitöltés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "A fokozatos kitöltés folyamatosan növeli a kitöltés mennyiségét, ahogy közeledik a tárgy teteje felé." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Letapadás" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Engedélyezze a peremet, vagy az aláúsztatást. Ez létre fog hozni a test szélén illetve az alján egy olyan részt, ami segíti a letapadást, viszont nyomtatás után ezek könnyen eltávolíthatóak a testről." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Hálózati nyomtatók" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Helyi nyomtatók" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Alapanyag" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Kedvencek" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Generikus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Kiválasztott modell nyomtatása:" +msgstr[1] "Kiválasztott modellek nyomtatása:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Kiválasztott modell sokszorozása" +msgstr[1] "Kiválasztott modellek sokszorozása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Másolatok száma" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Kiválasztás exportálása..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Konfigurációk" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Egyéni" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Nyomtató" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Bekapcsolt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Alapanyag" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Használj ragasztót a jobb tapadás érdekében, ennél az alapanyag kombinációnál." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Konfiguráció kiválasztása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Konfigurációk" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Az elérhető konfigurációk betöltése a nyomtatóról..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "A konfiguráció nem elérhető, mert nincs kapcsolat a a nyomtatóval." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Ez a konfiguráció nem érhető el, mert a(z) %1 nem azonosítható. Kérjük, látogasson el a %2 webhelyre a megfelelő anyagprofil letöltéséhez." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Piactér" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Nyomtató" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Alapanyag" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Beállítva aktív extruderként" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Extruder engedélyezése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Extruder letiltása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Legutóbbi fájlok" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Láthatósági beállítások" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Beállítások láthatóságának kezelése..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Kamera helyzet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Kamera nézet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspektívikus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Merőleges" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "&Tárgyasztal" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Nézet típus" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profilok" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Aktivál" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Létrehozás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Másolás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Átnevezés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Import" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Export" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Profil készítés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Adjon nevet ehhez a profilhoz." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Profil másolása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Eltávolítás megerősítése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Biztosan el akarod távolítani %1 -et? Ez nem vonható vissza!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Profil átnevezés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Profil importálás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profil exportálás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Nyomtató: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Frissítse a profilt az aktuális beállításokkal/felülbírálásokkal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Ez a profil a nyomtató által megadott alapértelmezéseket használja, tehát az alábbi listában nincs egyetlen beállítás módosítás sem." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Az Ön aktuális beállításai megegyeznek a kiválasztott profillal." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Általános beállítások" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Általános" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Interfész" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Pénznem:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Téma:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "A módosítások érvénybe lépéséhez újra kell indítania az alkalmazást." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Automatikus újraszeletelés, ha a beállítások megváltoznak." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Automatikus szeletelés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "A nézetablak viselkedése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Jelölje meg pirossal azokat a területeket, amiket szükséges alátámasztani.Ha ezeket a részeket nem támasztjuk alá, a nyomtatás nem lesz hibátlan." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Túlnyúlás kijelzése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "A kamerát úgy mozgatja, hogy a modell kiválasztásakor, az a nézet középpontjában legyen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Kamera középre, mikor az elem ki van választva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Megfordítsuk-e az alapértelmezett Zoom viselkedését?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Fordítsa meg a kamera zoom irányát." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "A nagyítás az egér mozgatásának irányában mozogjon?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Az egér felé történő nagyítás ortográfiai szempontból nem támogatott." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Nagyítás az egér mozgás irányában" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Az alapsíkon lévő modelleket elmozgassuk úgy, hogy ne keresztezzék egymást?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "A modellek egymástól való távtartásának biztosítása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "A modelleket mozgatni kell lefelé, hogy érintsék a tárgyasztalt?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Modellek automatikus tárgyasztalra illesztése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Figyelmeztető üzenet megjelenítése g-kód olvasóban." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Figyelmeztető üzenet a g-code olvasóban" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Kényszerítsük a réteget kompatibilitási módba ?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "A rétegnézet kompatibilis módjának kényszerítése (újraindítás szükséges)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Milyen fípusú fényképezőgépet használunk?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspetívikus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Merőleges" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Fájlok megnyitása és mentése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "A modelleket átméretezzük a maximális építési méretre, ha azok túl nagyok?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Nagy modellek átméretezése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Egy adott modell rendkívül kicsinek tűnhet, ha mértékegysége például méterben van, nem pedig milliméterben. Ezeket a modelleket átméretezzük?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Extrém kicsi modellek átméretezése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Betöltés után a modellek legyenek kiválasztva?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Modell kiválasztása betöltés után" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "A nyomtató nevét, mint előtagot, hozzáadjuk a nyomtatási feladat nevéhez?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Gépnév előtagként a feladatnévben" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Mutassuk az összegzést a projekt mentésekor?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Összegzés megjelenítése projekt mentésekor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Mindig kérdezz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Projektként való megnyitás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Importálja a modelleket" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Ha módosított egy profilt, és váltott egy másikra, akkor megjelenik egy párbeszédpanel, amelyben megkérdezi, hogy meg kívánja-e tartani a módosításokat, vagy nem. Vagy választhat egy alapértelmezett viselkedést, és soha többé nem jeleníti meg ezt a párbeszédablakot." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Alapértelmezett viselkedés a megváltozott beállítási értékeknél, ha másik profilra vált: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Megváltozott beállítások elvetése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Megváltozott beállítások alkalmazása az új profilba" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Magán" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Elküldjük a nyomtatott adatokat név nélkül az Ultimaker-nek?Semmilyen személyes infromáció, IP cím vagy azonosító nem kerül elküldésre." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Név nélküli információ küldés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Több információ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "A Cura-nak ellenőriznie kell-e a frissítéseket a program indításakor?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Keressen frissítéseket az induláskor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Információ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Új átmérő megerősítése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Az új nyomtatószál átmérő %1 mm -re lett beállítva. Ez nem kompatibilis a jelenlegi extruderrel. Biztos, hogy így folytatod?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Megjelenítendő név" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Alapanyag típus" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Szín" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Tulajdonságok" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Sűrűség" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Átmérő" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Nyomtatószál költség" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Nyomtatószál súly" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Nyomtatószál hossz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Költség / méter" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Ez az anyag kapcsolódik% 1 -hez és osztja néhány tulajdonságát." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Alapanyag leválasztása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Leírás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Tapadási információ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Létrehoz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Másolat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Nyomtató" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Alapanyag importálás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Nem sikerült importálni az alapanyagot %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Sikeres alapanyag import %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Alapanyag export" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Sikertelen alapanyag export %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Sikeres alapanyag export %1 -ba" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Láthatóság beállítása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Mindent ellenőrizni" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Nyomtatók" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Számított" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Beállítás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Jelenlegi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Egység" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Nincs nyomtatóhoz csatlakoztatva" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "A nyomtató nem fogadja a parancsokat" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Karbantartás alatt. Ellenőrizze a nyomtatót" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Elveszett a kapcsolat a nyomtatóval" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Nyomtatás..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Felfüggsztve" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Előkészítés..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Távolítsa el a tárgyat" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Nyomtatás megszakítás" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Biztosan meg akarod szakítani a nyomtatást?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Kiválasztott modell nyomtatása %1" +msgstr[1] "Kiválasztott modellek nyomtatása %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Nyomtató vezérlés" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Léptetőgomb pozíció" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Léptetőgomb távolság" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-kód küldés" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Küldjön egy egyéni G-kód parancsot a csatlakoztatott nyomtatóra. A parancs elküldéséhez nyomja meg az 'enter' gombot." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Extruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "A nyomtatófej célhőmérséklete. A fűtőblokk hőmérséklete a beállított értékre fog melegedni, vagy éppen hűlni. Ha ez az érték 0, akkor a fejfűtés ki fog kapcsolni." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Ennek a fejnek a jelenlegi hőmérséklete." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A nyomtatófej előmelegítési hőmérséklete." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Elvet" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Előfűtés" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "A nyomtatófejet a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Az alapanyag színe ennél az extrudernél." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Az alapanyag ebben az extruderben." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "A fúvóka be van építve az extruderbe." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A nyomtató nincs csatlakoztatva." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Tárgyasztal" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "A fűthető ágy beállítható célhőmérséklete. Ha beállítjuk ezt az értéket a tálca elkezd erre a hőmérsékletre melegedni, vagy éppen lehűlni. Ha az érték 0 a tálcafűtés kikapcsol." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A fűthető ágy aktuális hőmérséklete." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A tálca előmelegítési hőmérséklete." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "A fűthető tálcát, a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Bejelentkezés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Névtelen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Mutassa az online hibaelhárítási útmutatót" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Teljes képernyőre váltás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Kilépés a teljes képernyőn" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Visszavon" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Újra" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "Kilép" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3D nézet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Előlnézet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Felülnézet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Bal oldalnézet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Jobb oldalnézet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Cura beállítása..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Nyomtató hozzáadása..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Nyomtatók kezelése..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Anyagok kezelése..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "Profil &frissítése a jelenlegi beállításokkal/felülírásokkal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Jelenlegi változtatások eldobása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "Profil &létrehozása a jelenlegi beállításokkal/felülírásokkal..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Profilok kezelése..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Online &Dokumentumok megjelenítése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Hibajelentés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Újdonságok" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Rólunk..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Modell törlés" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "&Középső modell a platformon" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Csoportosítás" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Csoport bontása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "&Modellek keverése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Modell többszörözés..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Mindent kijelöl" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Tárgyasztal törlése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Mindent újratölt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Minden modell elrendezése a tárgyasztalon" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Minden modell rendezése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Kijelöltek rendezése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Minden modellpozíció visszaállítása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Minden modelltranszformáció visszaállítása" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Fájl(ok) megnyitása..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "Új projekt..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Konfigurációs mappa megjelenítése" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Beállítások láthatóságának beállítása..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Piactér" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Ezt a beállítást nem használjuk, mert minden ezen beállítással befolyásolt egyéb beállítás értéke felül van bírálva." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Befolyásolások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Befolyásolja" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Ezt a beállítást megoszta az összes extruder között. Az itt megváltoztatott értékek az összes extrudernél meg fognak változni." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5163,7 +5805,7 @@ msgstr "" "\n" "Kattintson a profil értékének visszaállításához." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5174,506 +5816,92 @@ msgstr "" "\n" "Kattintson, hogy visszaállítsuk a kalkulált értéket." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Értékek másolása minden extruderre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Minden változott érték másolása minden extruderre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Beállítás elrejtése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Ne jelenítsd meg ezt a beállítást" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Beállítás látható marad" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Nézet típus" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Egyes beállítások eltérő értéken vannak a normál, kalkulált értékektől.\n" +"\n" +"Kattints, hogy ezek a beállítások láthatók legyenek." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" +msgid "This package will be installed after restarting." +msgstr "Ez a csomag újraindítás után fog települni." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Beállítások" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Csomag telepítése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Fájl(ok) megnyitása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "A kiválasztott fájlok között több G-kód fájl is található.Egyszerre csak egy G-kód fájlt nyithat meg, ezért csak egy ilyen fájlt válasszon ki." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Nyomtató név" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" msgstr "Nyomtató hozzáadása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Hálózati nyomtató hozzáadása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Helyi nyomtató hozzáadása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "A hálózaton nem található nyomtató." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Nyomtató hozzáadása IP címmel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Hibaelhárítás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Nyomtató hozzáadása IP címmel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Hozzáad" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Nem sikerült csatlakozni az eszközhöz." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "Az ezen a címen található nyomtató még nem válaszolt." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Ezt a nyomtatót nem lehet hozzáadni, mert ismeretlen a nyomtató vagy nem egy csoport tagja." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Vissza" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Csatlakozás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Segítsen nekünk az Ultimaker Cura fejlesztésében" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Az Ultimaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javításának érdekében, ideértve:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Géptípusok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Anyagfelhasználás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Szeletek száma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Nyomtatási beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Az Ultimaker Cura által gyűjtött adatok nem tartalmaznak személyes információt." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Több információ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Üres" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Felhasználói Szerződés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Elutasítás és bezárás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Üdvözöljük az Ultimaker Cura-ban" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Kezdj hozzá" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Ellenőrzi a modelleket és a nyomtatási konfigurációt a lehetséges nyomtatási problémákra vonatkozóan, és javaslatokat ad." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Modell-ellenőrző" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Támogatást nyújt a 3MF fájlok olvasásához." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF olvasó" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Támogatást nyújt a 3MF fájlok írásához." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF író" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Támogatást nyújt az AMF fájlok olvasásához." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF Olvasó" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Konfiguráció biztonsági másolat készítése és visszaállítása." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura biztonsági mentések" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Biztosítja a kapcsolatot a CuraEngine szeletelő motorhoz." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine motor" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Támogatást nyújt a Cura profilok importálásához." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura profil olvasó" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Támogatást nyújt a Cura profilok exportálásához." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura profil író" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Ellenőrzi a firmware frissítéseket." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Frimrware frissítés ellenőrző" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Gépi funkciókat biztosít a firmware frissítéséhez." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware frissítő" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Olvassa be a g-kódot egy tömörített archívumból." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Tömörített G-kód olvasó" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-kódot ír egy tömörített archívumba." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Tömörített G-kód író" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Támogatást nyújt a profilok g-kód fájlokból történő importálásához." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-kód profil olvasó" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Lehetővé teszi a G-kód fájlok betöltését és megjelenítését." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-kód olvasó" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G-kódot ír fájlba." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-kódot író" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Lehetővé teszi a nyomtatható geometria létrehozását 2D-képfájlokból." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Kép olvasó" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Támogatást nyújt a profilok importálásához a régi Cura verziókból." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Örökölt Cura profil olvasó" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "A géoi beállítások megváltoztatásának lehetőségét biztosítja.(például a építési méret, fúvóka méret, stb.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Monitor nézetet biztosít a Cura -ban." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Monitor nézet" +msgstr "Újdonságok" #: PerObjectSettingsTool/plugin.json msgctxt "description" @@ -5685,86 +5913,46 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Modellenkénti beállítás-eszköz" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Bővítmény, amely lehetővé teszi a felhasználó által létrehozott szkriptek utófeldolgozást" +msgid "Provides support for importing Cura profiles." +msgstr "Támogatást nyújt a Cura profilok importálásához." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Utólagos feldolgozás" +msgid "Cura Profile Reader" +msgstr "Cura profil olvasó" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Biztosítja az előkészítés nézetet a Cura-ban." +msgid "Provides support for reading X3D files." +msgstr "Támogatást nyújt az X3D fájlok olvasásához." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Előkészítés nézet" +msgid "X3D Reader" +msgstr "X3D Olvasó" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Előnézet biztosítása a Cura -ban." +msgid "Backup and restore your configuration." +msgstr "Konfiguráció biztonsági másolat készítése és visszaállítása." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Előnézet" +msgid "Cura Backups" +msgstr "Cura biztonsági mentések" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Támogatás a cserélhető meghajtók üzem közbeni cseréjét és írását." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "A géoi beállítások megváltoztatásának lehetőségét biztosítja.(például a építési méret, fúvóka méret, stb.)" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Cserélhető meghajtók kimeneti beépülője" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" +msgid "Machine Settings Action" msgstr "" -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Szimulációs nézetet biztosít." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Szimulációs nézet" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Névtelen szelet-információt nyújt be. A beállítások révén letiltható." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Szeletelési infó" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Felületi háló nézetet biztosít." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Felület nézet" - #: SupportEraser/plugin.json msgctxt "description" msgid "Creates an eraser mesh to block the printing of support in certain places" @@ -5775,35 +5963,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Támasz törlő" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Keressen, kezeljen és telepítsen új Cura csomagokat." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Támogatás a cserélhető meghajtók üzem közbeni cseréjét és írását." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Eszköztár" +msgid "Removable Drive Output Device Plugin" +msgstr "Cserélhető meghajtók kimeneti beépülője" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Támogatást nyújt a modellfájlok olvasásához." +msgid "Provides a machine actions for updating firmware." +msgstr "Gépi funkciókat biztosít a firmware frissítéséhez." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh olvasó" +msgid "Firmware Updater" +msgstr "Firmware frissítő" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Támogatást nyújt az Ultimaker formátumú csomagok olvasásához." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Támogatást nyújt a profilok importálásához a régi Cura verziókból." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "UFP Olvasó" +msgid "Legacy Cura Profile Reader" +msgstr "Örökölt Cura profil olvasó" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Támogatást nyújt a 3MF fájlok olvasásához." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF olvasó" #: UFPWriter/plugin.json msgctxt "description" @@ -5815,25 +6013,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "UFP Író" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Gépi funkciók biztosítása az Ultimaker nyomtatók számára.(pl.: ágyszintezés varázsló, frissítések kiválasztása.)" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker gépi funkciók" +msgid "Sentry Logger" +msgstr "" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Kezeli a hálózati csatlakozásokat az Ultimaker hálózati nyomtatókhoz." +msgid "Provides support for importing profiles from g-code files." +msgstr "Támogatást nyújt a profilok g-kód fájlokból történő importálásához." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker hálózati kapcsolat" +msgid "G-code Profile Reader" +msgstr "G-kód profil olvasó" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Előnézet biztosítása a Cura -ban." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Előnézet" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Röntgen nézetet biztosít." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen nézet" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Biztosítja a kapcsolatot a CuraEngine szeletelő motorhoz." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine motor" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Támogatást nyújt az AMF fájlok olvasásához." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF Olvasó" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Olvassa be a g-kódot egy tömörített archívumból." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Tömörített G-kód olvasó" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Bővítmény, amely lehetővé teszi a felhasználó által létrehozott szkriptek utófeldolgozást" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Utólagos feldolgozás" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Támogatást nyújt a Cura profilok exportálásához." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura profil író" #: USBPrinting/plugin.json msgctxt "description" @@ -5845,25 +6113,135 @@ msgctxt "name" msgid "USB printing" msgstr "USB nyomtatás" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "A konfigurációk frissítése Cura 2.1-ről Cura 2.2-re." +msgid "Provides a prepare stage in Cura." +msgstr "Biztosítja az előkészítés nézetet a Cura-ban." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "A 2.1-es verzió frissítése 2.2-re" +msgid "Prepare Stage" +msgstr "Előkészítés nézet" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "A konfigurációk frissítése Cura 2.2-ről Cura 2.4-re." +msgid "Allows loading and displaying G-code files." +msgstr "Lehetővé teszi a G-kód fájlok betöltését és megjelenítését." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "A 2.2-es verzió frissítése 2.4-ig" +msgid "G-code Reader" +msgstr "G-kód olvasó" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Lehetővé teszi a nyomtatható geometria létrehozását 2D-képfájlokból." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Kép olvasó" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Gépi funkciók biztosítása az Ultimaker nyomtatók számára.(pl.: ágyszintezés varázsló, frissítések kiválasztása.)" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ultimaker gépi funkciók" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-kódot ír egy tömörített archívumba." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Tömörített G-kód író" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Ellenőrzi a firmware frissítéseket." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Frimrware frissítés ellenőrző" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Névtelen szelet-információt nyújt be. A beállítások révén letiltható." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Szeletelési infó" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Lehetővé teszi az XML-alapú anyagprofilok olvasását és írását." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Alapanyag profilok" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "" + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Keressen, kezeljen és telepítsen új Cura csomagokat." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Eszköztár" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G-kódot ír fájlba." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-kódot író" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Szimulációs nézetet biztosít." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Szimulációs nézet" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5875,55 +6253,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "A 2.5-es verzió frissítése 2.6-ra" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "A konfigurációk frissítése Cura 2.6-ról Cura 2.7-re." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "A 2.6-os verzió frissítése 2.7-re" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "A konfigurációk frissítése Cura 2.7-ről Cura 3.0-ra." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "A 2.7-es verzió frissítése 3.0-ra" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "A konfigurációk frissítése Cura 3.0-ról Cura 3.1-re." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "A 3.0-s verzió frissítése 3.1-re" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "A konfigurációk frissítése Cura 3.2-ről Cura 3.3-ra." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "A 3.2-es verzió frissítése 3.3-ra" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "A konfigurációk frissítése Cura 3.3-ról Cura 3.4-re." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "A 3.3-as verzió frissítése 3.4-re" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5935,35 +6283,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "A 3.4-es verzió frissítése 3.5-re" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "A konfigurációk frissítése Cura 3.5-ről Cura 4.0-ra." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "A konfigurációk frissítése Cura 2.1-ről Cura 2.2-re." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "A 3.5-es verzió frissítése 4.0-ra" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "A 2.1-es verzió frissítése 2.2-re" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "A konfigurációt Cura 4.0-ról Cura 4.1-re frissíti." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "A konfigurációk frissítése Cura 3.2-ről Cura 3.3-ra." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "A 4.0-s verzió frissítése 4.1-re" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "A 3.2-es verzió frissítése 3.3-ra" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "A konfigurációk frissítése Cura 4.1-ről Cura 4.2-re." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "A 4.1-es verzió frissítése 4.2-re" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -5985,66 +6343,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6055,35 +6353,183 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Támogatást nyújt az X3D fájlok olvasásához." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "A konfigurációk frissítése Cura 2.7-ről Cura 3.0-ra." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3D Olvasó" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "A 2.7-es verzió frissítése 3.0-ra" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Lehetővé teszi az XML-alapú anyagprofilok olvasását és írását." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "A konfigurációk frissítése Cura 2.6-ról Cura 2.7-re." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Alapanyag profilok" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "A 2.6-os verzió frissítése 2.7-re" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Röntgen nézetet biztosít." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen nézet" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "A konfigurációk frissítése Cura 3.3-ról Cura 3.4-re." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "A 3.3-as verzió frissítése 3.4-re" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "A konfigurációk frissítése Cura 3.0-ról Cura 3.1-re." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "A 3.0-s verzió frissítése 3.1-re" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "A konfigurációt Cura 4.0-ról Cura 4.1-re frissíti." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "A 4.0-s verzió frissítése 4.1-re" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "A konfigurációk frissítése Cura 2.2-ről Cura 2.4-re." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "A 2.2-es verzió frissítése 2.4-ig" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "A konfigurációk frissítése Cura 4.1-ről Cura 4.2-re." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "A 4.1-es verzió frissítése 4.2-re" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "A konfigurációk frissítése Cura 3.5-ről Cura 4.0-ra." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "A 3.5-es verzió frissítése 4.0-ra" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Kezeli a hálózati csatlakozásokat az Ultimaker hálózati nyomtatókhoz." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker hálózati kapcsolat" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Támogatást nyújt a modellfájlok olvasásához." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh olvasó" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Támogatást nyújt az Ultimaker formátumú csomagok olvasásához." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP Olvasó" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Felületi háló nézetet biztosít." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Felület nézet" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Támogatást nyújt a 3MF fájlok írásához." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF író" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Monitor nézetet biztosít a Cura -ban." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Monitor nézet" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Ellenőrzi a modelleket és a nyomtatási konfigurációt a lehetséges nyomtatási problémákra vonatkozóan, és javaslatokat ad." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Modell-ellenőrző" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Küldjön és felügyeljen nyomtatási feladatokat bárhonnan az Ultimaker fiókjával." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Új %s firmware elérhető" #~ msgctxt "@label:listbox" #~ msgid "Layer thickness" diff --git a/resources/i18n/hu_HU/fdmextruder.def.json.po b/resources/i18n/hu_HU/fdmextruder.def.json.po index a1638741a5..f25f2b26c3 100644 --- a/resources/i18n/hu_HU/fdmextruder.def.json.po +++ b/resources/i18n/hu_HU/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2020-03-24 09:27+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 6720c0c58d..3b2f0fa1df 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -155,6 +155,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "A nyomtatási terület mélysége (Y-irány)." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Nyomtatási magasság" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A nyomtatási terület magassága (Z-irány)." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -195,16 +205,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Alumínium" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Nyomtatási magasság" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A nyomtatási terület magassága (Z-irány)." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -562,8 +562,8 @@ msgstr "A Z motor maximális sebessége." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Adagolás maximum" +msgid "Maximum Speed E" +msgstr "" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -687,8 +687,8 @@ msgstr "Lépés per milliméter (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "" #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Az alsó/felső rétegpályákat kapcsolja össze, ahol egymás mellett futnak.Ha ezt a beállítást engedélyezzük a körkörös mintázatnál, jelentősen csökkenthetjük a fej átemelési időt, mivel a kapcsolódások félúton terténhetnek meg. Ez azonban ronthatja a felső felület minőségét." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Cikcakk" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1712,8 +1732,8 @@ msgstr "Kitöltési Minta" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "A kitöltés mintázata. A vonal és a cikcakk felváltva cserélgeti az irányát rétegenként, csökkentve ezzel az anyagköltséget. A rács, háromszög, háromhatszög,kocka, oktett, negyed kocka, kereszt és koncentrikus mintákat minden rétegben nyomtatjuk. A gyroid, a kocka, a negyedkocka, és az oktett töltés minden rétegben változik, és így egyenletesebb az erő eloszlása minden irányban." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "" #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1780,6 +1800,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1994,6 +2019,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "" + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3184,6 +3249,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Minden" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5135,8 +5205,8 @@ msgstr "Minimális formaszélesség" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "Az öntőforma külseje és a modell külső héja közötti minimális távolság." +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "" #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5303,6 +5373,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Cikcakk" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6400,6 +6480,22 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "A modellre alkalmazandó átalakítási mátrix, amikor azt fájlból tölti be." +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Adagolás maximum" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "A kitöltés mintázata. A vonal és a cikcakk felváltva cserélgeti az irányát rétegenként, csökkentve ezzel az anyagköltséget. A rács, háromszög, háromhatszög,kocka, oktett, negyed kocka, kereszt és koncentrikus mintákat minden rétegben nyomtatjuk. A gyroid, a kocka, a negyedkocka, és az oktett töltés minden rétegben változik, és így egyenletesebb az erő eloszlása minden irányban." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Az öntőforma külseje és a modell külső héja közötti minimális távolság." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Ha ez az érték nem nulla, akkor a megadott értéktől hosszabb utazáskor nyomtatószál visszahúzás fog történni." diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 0c5eb87796..5187971b46 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 14:58+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2021-09-07 07:57+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Italian , Italian \n" "Language: it_IT\n" @@ -15,182 +15,451 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Sconosciuto" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Le stampanti riportate di seguito non possono essere collegate perché fanno parte di un gruppo" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Backup" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Stampanti disponibili in rete" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Non sottoposto a override" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Tentativo di ripristinare un backup di Cura di versione superiore rispetto a quella corrente." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "Nel tentativo di ripristinare un backup di Cura, si è verificato il seguente errore:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Sincronizzare i profili del materiale con le stampanti prima di iniziare a stampare." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Nuovi materiali installati" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Sincronizza materiali" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Ulteriori informazioni" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Impossibile salvare archivio materiali in {}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Impossibile salvare archivio materiali" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Errore sconosciuto." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "L’altezza del volume di stampa è stata ridotta a causa del valore dell’impostazione \"Sequenza di stampa” per impedire la collisione del gantry con i modelli stampati." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volume di stampa" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Rimuovere {0}? Questa operazione non può essere annullata!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Non sottoposto a override" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Sconosciuto" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Le stampanti riportate di seguito non possono essere collegate perché fanno parte di un gruppo" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Stampanti disponibili in rete" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visivo" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Il profilo visivo è destinato alla stampa di prototipi e modelli visivi, con l'intento di ottenere una qualità visiva e della superficie elevata." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Il profilo di progettazione è destinato alla stampa di prototipi funzionali e di componenti d'uso finale, allo scopo di ottenere maggiore precisione e tolleranze strette." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Bozza" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Il profilo bozza è destinato alla stampa dei prototipi iniziali e alla convalida dei concept, con l'intento di ridurre in modo significativo il tempo di stampa." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Materiale personalizzato" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Profili personalizzati" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tutti i tipi supportati ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tutti i file (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visivo" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Il profilo visivo è destinato alla stampa di prototipi e modelli visivi, con l'intento di ottenere una qualità visiva e della superficie elevata." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Il profilo di progettazione è destinato alla stampa di prototipi funzionali e di componenti d'uso finale, allo scopo di ottenere maggiore precisione e tolleranze strette." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Bozza" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Il profilo bozza è destinato alla stampa dei prototipi iniziali e alla convalida dei concept, con l'intento di ridurre in modo significativo il tempo di stampa." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Materiale personalizzato" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Personalizzata" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Login non riuscito" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Ricerca nuova posizione per gli oggetti" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Ricerca posizione" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Impossibile individuare una posizione nel volume di stampa per tutti gli oggetti" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Impossibile individuare posizione" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Impossibile creare archivio di materiali da sincronizzare con le stampanti." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Impossibile caricare l'archivio di materiali da sincronizzare con le stampanti." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "La risposta da Digital Factory sembra essere danneggiata." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Tentativo di ripristinare un backup di Cura di versione superiore rispetto a quella corrente." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "Nella risposta da Digital Factory mancano informazioni importanti." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "Nel tentativo di ripristinare un backup di Cura, si è verificato il seguente errore:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Impossibile connettersi a Digital Factory per sincronizzare i materiali con alcune delle stampanti." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Impossibile connettersi a Digital Factory." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Caricamento macchine in corso..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Impostazione delle preferenze..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inizializzazione Active Machine in corso..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inizializzazione gestore macchina in corso..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inizializzazione volume di stampa in corso..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Impostazione scena in corso..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Caricamento interfaccia in corso..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inizializzazione motore in corso..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "L’altezza del volume di stampa è stata ridotta a causa del valore dell’impostazione \"Sequenza di stampa” per impedire la collisione del gantry con i modelli stampati." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume di stampa" +msgid "Warning" +msgstr "Avvertenza" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Errore" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Salta" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Chiudi" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Avanti" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Fine" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Aggiungi" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annulla" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Gruppo #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parete esterna" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Pareti interne" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Rivestimento esterno" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Riempimento" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Riempimento del supporto" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interfaccia supporto" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Supporto" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre di innesco" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Spostamenti" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrazioni" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Altro" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "Impossibile aprire le note sulla versione." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Impossibile avviare Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +474,32 @@ msgstr "" "

    Si prega di inviare questo Rapporto su crash per correggere il problema.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Inviare il rapporto su crash a Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostra il rapporto su crash dettagliato" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostra cartella di configurazione" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e reset configurazione" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Rapporto su crash" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,676 +510,641 @@ msgstr "" "

    Usare il pulsante “Invia report\" per inviare automaticamente una segnalazione errore ai nostri server

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informazioni di sistema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Sconosciuto" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versione Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Lingua Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Lingua sistema operativo" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Piattaforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versione Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versione PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Non ancora inizializzato
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versione OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Fornitore OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Renderer OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Analisi errori" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registri" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Invia report" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Caricamento macchine in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Impostazione delle preferenze..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inizializzazione Active Machine in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inizializzazione gestore macchina in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inizializzazione volume di stampa in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Impostazione scena in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Caricamento interfaccia in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inizializzazione motore in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Avvertenza" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Errore" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Moltiplicazione e collocazione degli oggetti" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Sistemazione oggetti" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Sistemazione oggetto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Impossibile leggere la risposta." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "Lo stato fornito non è corretto." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Si è verificato qualcosa di inatteso durante il tentativo di accesso, riprovare." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Impossibile raggiungere il server account Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Log in non riuscito" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Lo stato fornito non è corretto." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Timeout durante l'autenticazione con il server account." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Si è verificato qualcosa di inatteso durante il tentativo di accesso, riprovare." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Impossibile leggere la risposta." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Moltiplicazione e collocazione degli oggetti" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Sistemazione oggetti" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Sistemazione oggetto" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Non supportato" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Ugello" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Impostazioni aggiornate" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Estrusore disabilitato" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Il file esiste già" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "File URL non valido:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Impossibile esportare il profilo su {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Impossibile esportare il profilo su {0}: Rilevata anomalia durante scrittura plugin." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profilo esportato su {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Esportazione riuscita" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossibile importare il profilo da {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Impossibile importare il profilo da {0} prima di aggiungere una stampante." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nessun profilo personalizzato da importare nel file {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Questo profilo {0} contiene dati errati, impossibile importarlo." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profilo {0} importato correttamente." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Il file {0} non contiene nessun profilo valido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Profilo personalizzato" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Il profilo è privo del tipo di qualità." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Non ci sono ancora stampanti attive." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossibile aggiungere il profilo." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello che consente di utilizzare questo tipo di qualità." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Non supportato" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Ugello" +msgid "Per Model Settings" +msgstr "Impostazioni per modello" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configura impostazioni per modello" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Profilo Cura" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "File X3D" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Si è verificato un errore cercando di ripristinare il backup." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Impostazioni aggiornate" +msgid "Backups" +msgstr "Backup" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Estrusore disabilitato" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Si è verificato un errore durante il caricamento del backup." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Aggiungi" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Creazione del backup in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Fine" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Si è verificato un errore durante la creazione del backup." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annulla" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Caricamento backup in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Caricamento backup completato." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Il backup supera la dimensione file massima." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gestione backup" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Impostazioni macchina" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Blocco supporto" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Crea un volume in cui i supporti non vengono stampati." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Unità rimovibile" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Salva su unità rimovibile" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Gruppo #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Salva su unità rimovibile {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parete esterna" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Non ci sono formati di file disponibili per la scrittura!" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Pareti interne" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Salvataggio su unità rimovibile {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Rivestimento esterno" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Riempimento" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Riempimento del supporto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interfaccia supporto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Supporto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre di innesco" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Spostamenti" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrazioni" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Altro" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Avanti" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Salta" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Chiudi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente modello 3D" +msgid "Saving" +msgstr "Salvataggio in corso" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Impossibile salvare {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

    \n" -"

    {model_names}

    \n" -"

    Scopri come garantire la migliore qualità ed affidabilità di stampa.

    \n" -"

    Visualizza la guida alla qualità di stampa

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Impossibile salvare su unità rimovibile {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Salvato su unità rimovibile {0} come {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "File salvato" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Rimuovi" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Rimuovi il dispositivo rimovibile {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Rimozione sicura dell'hardware" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aggiornamento firmware" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Profili Cura 15.04" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Consigliata" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizzata" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Il file di progetto {0} contiene un tipo di macchina sconosciuto {1}. Impossibile importare la macchina. Verranno invece importati i modelli." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Apri file progetto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Il file di progetto {0} è diventato improvvisamente inaccessibile: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Impossibile aprire il file di progetto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Il file di progetto {0} è danneggiato: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "Il file di progetto {0} è realizzato con profili sconosciuti a questa versione di Ultimaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Consigliata" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "File 3MF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Plug-in Writer 3MF danneggiato." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Impossibile scrivere nel file UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Nessuna autorizzazione di scrittura dell'area di lavoro qui." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Il sistema operativo non consente di salvare un file di progetto in questa posizione o con questo nome file." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Errore scrittura file 3MF." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "File 3MF" +msgid "Ultimaker Format Package" +msgstr "Pacchetto formato Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "File 3MF Progetto Cura" +msgid "G-code File" +msgstr "File G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "File AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Si è verificato un errore durante il caricamento del backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Creazione del backup in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Si è verificato un errore durante la creazione del backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Caricamento backup in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Caricamento backup completato." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Il backup supera la dimensione file massima." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Si è verificato un errore cercando di ripristinare il backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gestione backup" +msgid "Preview" +msgstr "Anteprima" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Vista ai raggi X" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Elaborazione dei livelli" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informazioni" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Sezionamento non riuscito" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Segnala un errore" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Segnalare un errore nel registro problemi di Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Sezionamento impossibile" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -923,465 +1157,436 @@ msgstr "" "- Sono assegnati a un estrusore abilitato\n" "- Non sono tutti impostati come maglie modificatore" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Elaborazione dei livelli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Informazioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profilo Cura" +msgid "AMF File" +msgstr "File AMF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Non è possibile accedere alle informazioni di aggiornamento." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "È possibile che per {machine_name} siano disponibili nuove funzionalità o bug fix. Se non si dispone della versione più recente, è consigliabile aggiornare il firmware della stampante alla versione {latest_version}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Nuovo firmware %s disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Modalità di aggiornamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aggiornamento firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "File G-Code compresso" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter non supporta la modalità di testo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "File G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Parsing codice G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Dettagli codice G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Verifica che il codice G sia idoneo alla tua stampante e alla sua configurazione prima di trasmettere il file. La rappresentazione del codice G potrebbe non essere accurata." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "File G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter non supporta la modalità non di testo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Preparare il codice G prima dell’esportazione." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Immagine JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Immagine JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Immagine PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Immagine BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Immagine GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profili Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Impostazioni macchina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Controlla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Impostazioni per modello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configura impostazioni per modello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-elaborazione" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modifica codice G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Stampa USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Stampa tramite USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Stampa tramite USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Connesso tramite USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Stampa tramite USB in corso, la chiusura di Cura interrompe la stampa. Confermare?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Stampa in corso" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Prepara" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Anteprima" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Salva su unità rimovibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Salva su unità rimovibile {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Non ci sono formati di file disponibili per la scrittura!" +msgid "Parsing G-code" +msgstr "Parsing codice G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Salvataggio su unità rimovibile {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Salvataggio in corso" +msgid "G-code Details" +msgstr "Dettagli codice G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Impossibile salvare {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Impossibile salvare su unità rimovibile {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Salvato su unità rimovibile {0} come {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "File salvato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Rimuovi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Rimuovi il dispositivo rimovibile {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Rimozione sicura dell'hardware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unità rimovibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Cura non visualizza in modo accurato i layer se la funzione Wire Printing è abilitata." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Vista simulazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Non viene visualizzato nulla poiché è necessario prima effetuare lo slicing." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Nessun layer da visualizzare" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Non mostrare nuovamente questo messaggio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Visualizzazione strato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "Le aree evidenziate indicano superfici mancanti o estranee. Correggi il modello e aprilo nuovamente in Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Errori modello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Ulteriori informazioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Visualizzazione compatta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Blocco supporto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Crea un volume in cui i supporti non vengono stampati." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Desiderate sincronizzare pacchetti materiale e software con il vostro account?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Verifica che il codice G sia idoneo alla tua stampante e alla sua configurazione prima di trasmettere il file. La rappresentazione del codice G potrebbe non essere accurata." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Modifiche rilevate dal tuo account Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizza" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizzazione in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Non accetto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Accetta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Accordo di licenza plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rifiuta e rimuovi dall'account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Affinché le modifiche diventino effettive, è necessario chiudere e riavviare {}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Impossibile scaricare i plugin {}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "File G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" +msgid "JPG Image" +msgstr "Immagine JPG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" +msgid "JPEG Image" +msgstr "Immagine JPEG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" +msgid "PNG Image" +msgstr "Immagine PNG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" +msgid "BMP Image" +msgstr "Immagine BMP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pacchetto formato Ultimaker" +msgid "GIF Image" +msgstr "Immagine GIF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Impossibile scrivere nel file UFP:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Livella piano di stampa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Seleziona aggiornamenti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter non supporta la modalità di testo." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Non è possibile accedere alle informazioni di aggiornamento." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Nuove funzionalità o bug fix potrebbero essere disponibili per {machine_name}. Se non è già stato fatto in precedenza, si consiglia di aggiornare il firmware della stampante alla versione {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nuovo firmware %s stabile disponibile" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Modalità di aggiornamento" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Impossibile leggere il file di dati di esempio." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Affinché le modifiche diventino effettive, è necessario chiudere e riavviare {}." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizzazione in corso..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Modifiche rilevate dal tuo account Ultimaker" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Desiderate sincronizzare pacchetti materiale e software con il vostro account?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizza" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Rifiuta e rimuovi dall'account" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Impossibile scaricare i plugin {}" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Non accetto" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Accetta" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Accordo di licenza plugin" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter non supporta la modalità non di testo." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Preparare il codice G prima dell’esportazione." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Cura non visualizza in modo accurato i layer se la funzione Wire Printing è abilitata." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Vista simulazione" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Non viene visualizzato nulla poiché è necessario prima effetuare lo slicing." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Nessun layer da visualizzare" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Non mostrare nuovamente questo messaggio" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Visualizzazione strato" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Stampa sulla rete" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Stampa sulla rete" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Collegato alla rete" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "domani" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "oggi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Collega tramite rete" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Attendere che sia stato inviato il processo corrente." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Errore di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Processo di stampa inviato con successo alla stampante." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dati inviati" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Aggiornare la stampante" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "La coda dei processi di stampa è piena. La stampante non può accettare un nuovo processo." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Coda piena" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Invio di un processo di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Caricamento del processo di stampa sulla stampante." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Invio dei materiali alla stampante" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Impossibile caricare i dati sulla stampante." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Errore di rete" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Tentativo di connessione a {0} in corso, che non è l'host di un gruppo. È possibile visitare la pagina web per configurarla come host del gruppo." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Non host del gruppo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurare il gruppo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Impossibile connettere la stampante {printer_name} tramite cloud.\n" +" Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Pronto per la stampa tramite cloud?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Per iniziare" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Ulteriori informazioni" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Stampa tramite cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Stampa tramite cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Collegato tramite cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Monitora stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Traccia la stampa in Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "Nuova stampante rilevata dall'account Ultimaker" msgstr[1] "Nuove stampanti rilevate dall'account Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Aggiunta della stampante {name} ({model}) dall'account" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1389,71 +1594,71 @@ msgid_plural "... and {0} others" msgstr[0] "... e {0} altra" msgstr[1] "... e altre {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Stampanti aggiunte da Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Non è disponibile una connessione cloud per una stampante" msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "Questa stampante non è collegata a Digital Factory:" msgstr[1] "Queste stampanti non sono collegate a Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Per stabilire una connessione, visitare {website_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Mantenere le configurazioni delle stampanti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Rimuovere le stampanti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} sarà rimossa fino alla prossima sincronizzazione account." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Rimuovere temporaneamente {printer_name}?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Rimuovere le stampanti?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1469,7 +1674,7 @@ msgstr[1] "" "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\n" "Continuare?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1478,761 +1683,1638 @@ msgstr "" "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n" "Continuare?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Binary" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Compressed COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Invia e controlla i processi di stampa ovunque con l’account Ultimaker." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "Le aree evidenziate indicano superfici mancanti o estranee. Correggi il modello e aprilo nuovamente in Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Effettuare la connessione a Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Per iniziare" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Aggiornare la stampante" +msgid "Model Errors" +msgstr "Errori modello" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Invio dei materiali alla stampante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Tentativo di connessione a {0} in corso, che non è l'host di un gruppo. È possibile visitare la pagina web per configurarla come host del gruppo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Non host del gruppo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Configurare il gruppo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Attendere che sia stato inviato il processo corrente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Errore di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Impossibile caricare i dati sulla stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Errore di rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Invio di un processo di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Caricamento del processo di stampa sulla stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "La coda dei processi di stampa è piena. La stampante non può accettare un nuovo processo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Coda piena" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Processo di stampa inviato con successo alla stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dati inviati" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Stampa sulla rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Stampa sulla rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Collegato alla rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Collega tramite rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "domani" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "oggi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Stampa USB" +msgid "Solid view" +msgstr "Visualizzazione compatta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Stampa tramite USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Errore scrittura file 3MF." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Stampa tramite USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Plug-in Writer 3MF danneggiato." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Ancora nessuna area di lavoro da scrivere. Aggiungere innanzitutto una stampante." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Nessuna autorizzazione di scrittura dell'area di lavoro qui." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Il sistema operativo non consente di salvare un file di progetto in questa posizione o con questo nome file." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "File 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "File 3MF Progetto Cura" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Controlla" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Assistente modello 3D" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Connesso tramite USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

    \n" +"

    {model_names}

    \n" +"

    Scopri come garantire la migliore qualità ed affidabilità di stampa.

    \n" +"

    Visualizza la guida alla qualità di stampa

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Stampa tramite USB in corso, la chiusura di Cura interrompe la stampa. Confermare?" +msgid "Mesh Type" +msgstr "Tipo di maglia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Modello normale" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Stampa in corso" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Stampa come supporto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificare le impostazioni per le sovrapposizioni" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Non supportano le sovrapposizioni" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "File X3D" +msgid "Infill mesh only" +msgstr "Solo maglia di riempimento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista ai raggi X" +msgid "Cutting mesh" +msgstr "Ritaglio mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Alcune parti potrebbero risultare problematiche in questa stampa. Fare click per visualizzare i suggerimenti per la regolazione." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Seleziona impostazioni" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Seleziona impostazioni di personalizzazione per questo modello" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtro..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostra tutto" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Backup Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versione Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Macchine" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiali" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profili" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plugin" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Ulteriori informazioni?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Esegui backup adesso" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Backup automatico" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Crea automaticamente un backup ogni giorno in cui viene avviata Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Ripristina" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Cancella backup" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Sei sicuro di voler cancellare questo backup? Questa operazione non può essere annullata." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Ripristina backup" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Riavviare Cura prima di ripristinare il backup. Chiudere Cura adesso?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Backup e sincronizzazione delle impostazioni Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Accedi" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "I miei backup" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne uno." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante la fase di anteprima, saranno visibili solo 5 backup. Rimuovi un backup per vedere quelli precedenti." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Impostazioni della stampante" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Larghezza)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profondità)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altezza)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma del piano di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origine al centro" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Piano riscaldato" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume di stampa riscaldato" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Versione codice G" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Impostazioni della testina di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altezza gantry" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Numero di estrusori" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Applica offset estrusore a gcode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Codice G avvio" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Codice G fine" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Impostazioni ugello" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Dimensione ugello" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diametro del materiale compatibile" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Scostamento X ugello" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Scostamento Y ugello" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Numero ventola di raffreddamento" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Codice G avvio estrusore" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Codice G fine estrusore" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Stampante" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Aggiornamento firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Il firmware è la parte di software eseguita direttamente sulla stampante 3D. Questo firmware controlla i motori passo-passo, regola la temperatura e, in ultima analisi, consente il funzionamento della stampante." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Aggiorna automaticamente il firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carica il firmware personalizzato" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Impossibile aggiornare il firmware: nessun collegamento con la stampante." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Seleziona il firmware personalizzato" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aggiornamento del firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Aggiornamento firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Aggiornamento del firmware completato." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Aggiornamento firmware non riuscito a causa di un errore di input/output." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Aggiornamento firmware non riuscito per firmware mancante." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Apri progetto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Aggiorna esistente" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Crea nuovo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Riepilogo - Progetto Cura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Impostazioni della stampante" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Come può essere risolto il conflitto nella macchina?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Tipo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Gruppo stampanti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Impostazioni profilo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Come può essere risolto il conflitto nel profilo?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Nome" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Non nel profilo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 override" msgstr[1] "%1 override" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivato da" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 override" msgstr[1] "%1, %2 override" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Impostazioni materiale" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Come può essere risolto il conflitto nel materiale?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Impostazione visibilità" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Modalità" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Impostazioni visibili:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 su %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Il caricamento di un progetto annulla tutti i modelli sul piano di stampa." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Apri" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Ulteriori informazioni?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Esegui backup adesso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Backup automatico" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Crea automaticamente un backup ogni giorno in cui viene avviata Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Ripristina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Cancella backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Sei sicuro di voler cancellare questo backup? Questa operazione non può essere annullata." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Ripristina backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Riavviare Cura prima di ripristinare il backup. Chiudere Cura adesso?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versione Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Macchine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiali" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profili" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backup Cura" +msgid "Post Processing Plugin" +msgstr "Plug-in di post-elaborazione" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "I miei backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne uno." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante la fase di anteprima, saranno visibili solo 5 backup. Rimuovi un backup per vedere quelli precedenti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Backup e sincronizzazione delle impostazioni Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Accedi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aggiornamento firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Il firmware è la parte di software eseguita direttamente sulla stampante 3D. Questo firmware controlla i motori passo-passo, regola la temperatura e, in ultima analisi, consente il funzionamento della stampante." +msgid "Post Processing Scripts" +msgstr "Script di post-elaborazione" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Aggiungi uno script" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni." +msgid "Settings" +msgstr "Impostazioni" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Aggiorna automaticamente il firmware" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Modificare gli script di post-elaborazione attivi." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carica il firmware personalizzato" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "È attivo il seguente script:" +msgstr[1] "Sono attivi i seguenti script:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Impossibile aggiornare il firmware: nessun collegamento con la stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Seleziona il firmware personalizzato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aggiornamento del firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aggiornamento firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aggiornamento del firmware completato." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Aggiornamento firmware non riuscito a causa di un errore di input/output." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Aggiornamento firmware non riuscito per firmware mancante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Converti immagine..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "La distanza massima di ciascun pixel da \"Base.\"" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Altezza (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "L'altezza della base dal piano di stampa in millimetri." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "La larghezza in millimetri sul piano di stampa." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Larghezza (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "La profondità in millimetri sul piano di stampa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profondità (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Per le litofanie, i pixel scuri devono corrispondere alle posizioni più spesse per bloccare maggiormente il passaggio della luce. Per le mappe con altezze superiori, i pixel più chiari indicano un terreno più elevato, quindi nel modello 3D generato i pixel più chiari devono corrispondere alle posizioni più spesse." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Più scuro è più alto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Più chiaro è più alto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Per le litofanie, è disponibile un semplice modello logaritmico per la traslucenza. Per le mappe delle altezze, i valori in pixel corrispondono alle altezze in modo lineare." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Lineare" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Traslucenza" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "Percentuale di luce che penetra una stampa dello spessore di 1 millimetro. Se questo valore si riduce, il contrasto nelle aree scure dell'immagine aumenta, mentre il contrasto nelle aree chiare dell'immagine diminuisce." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Trasmittanza di 1 mm (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "La quantità di smoothing (levigatura) da applicare all'immagine." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Smoothing" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker Original" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Piano di stampa riscaldato (kit ufficiale o integrato)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Livellamento del piano di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Per assicurarsi stampe di alta qualità, è ora possibile regolare il piano di stampa. Quando si fa clic su 'Spostamento alla posizione successiva' l'ugello si sposterà in diverse posizioni che è possibile regolare." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Per ciascuna posizione: inserire un pezzo di carta sotto l'ugello e regolare la stampa dell'altezza del piano di stampa. L'altezza del piano di stampa è corretta quando la carta sfiora la punta dell'ugello." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Avvio livellamento del piano di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Spostamento alla posizione successiva" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Maggiori informazioni sulla raccolta di dati anonimi" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente. Di seguito è riportato un esempio dei dati condivisi:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Non desidero inviare dati anonimi" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Consenti l'invio di dati anonimi" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Mercato" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Riavviare Cura per rendere effettive le modifiche apportate ai pacchetti." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Chiudere %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Installazione" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Installa" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Premium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Vai al Marketplace web" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Cerca materiali" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Compatibilità" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Macchina" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Piano di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Supporto" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Qualità" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Scheda dati tecnici" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Scheda dati di sicurezza" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Linee guida di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Sito web" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Log in deve essere installato o aggiornato" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Acquista bobine di materiale" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Aggiorna" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Aggiornamento in corso" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Aggiornamento eseguito" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Indietro" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Stampante" +msgid "Plugins" +msgstr "Plugin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Impostazioni ugello" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiali" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Installa" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Dimensione ugello" +msgid "Will install upon restarting" +msgstr "L'installazione sarà eseguita al riavvio" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Log in deve essere aggiornato" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Downgrade" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Disinstalla" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Contributi della comunità" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diametro del materiale compatibile" +msgid "Community Plugins" +msgstr "Plugin della comunità" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Scostamento X ugello" +msgid "Generic Materials" +msgstr "Materiali generici" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Recupero dei pacchetti..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Scostamento Y ugello" +msgid "Website" +msgstr "Sito web" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numero ventola di raffreddamento" +msgid "Email" +msgstr "E-mail" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Codice G avvio estrusore" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Accedere per ottenere i plugin e i materiali verificati per Ultimaker Cura Enterprise" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Codice G fine estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Impostazioni della stampante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (Larghezza)" +msgid "Version" +msgstr "Versione" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profondità)" +msgid "Last updated" +msgstr "Ultimo aggiornamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altezza)" +msgid "Brand" +msgstr "Marchio" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma del piano di stampa" +msgid "Downloads" +msgstr "Download" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Plugin installati" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Non è stato installato alcun plugin." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Materiali installati" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Non è stato installato alcun materiale." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Plugin inseriti nel bundle" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Materiali inseriti nel bundle" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Impossibile connettersi al database pacchetto Cura. Verificare la connessione." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Origine al centro" +msgid "You need to accept the license to install the package" +msgstr "È necessario accettare la licenza per installare il pacchetto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Modifiche dall'account" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Rimuovi" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Avanti" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Piano riscaldato" +msgid "The following packages will be added:" +msgstr "Verranno aggiunti i seguenti pacchetti:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume di stampa riscaldato" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Impossibile installare i seguenti pacchetti a causa di una versione di Cura non compatibile:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Conferma disinstalla" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Si stanno installando materiali e/o profili ancora in uso. La conferma ripristina i seguenti materiali/profili ai valori predefiniti." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Materiali" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Profili" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Conferma" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Versione codice G" +msgid "Color scheme" +msgstr "Schema colori" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Impostazioni della testina di stampa" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Colore materiale" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo di linea" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocità" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Spessore layer" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Larghezza della linea" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Flusso" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X min" +msgid "Compatibility Mode" +msgstr "Modalità di compatibilità" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y min" +msgid "Travels" +msgstr "Spostamenti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X max" +msgid "Helpers" +msgstr "Helper" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y max" +msgid "Shell" +msgstr "Guscio" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Altezza gantry" +msgid "Infill" +msgstr "Riempimento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Numero di estrusori" +msgid "Starts" +msgstr "Avvia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Applica offset estrusore a gcode" +msgid "Only Show Top Layers" +msgstr "Mostra solo strati superiori" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Codice G avvio" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Mostra 5 strati superiori in dettaglio" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Codice G fine" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Superiore / Inferiore" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parete interna" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gestione stampanti" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Vetro" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Aggiornare il firmware della stampante per gestire la coda da remoto." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Impossibile visualizzare feed della Webcam per stampanti cloud da Ultimaker Cura. Fare clic su \"Gestione stampanti\" per visitare Ultimaker Digital Factory e visualizzare questa Webcam." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Non disponibile" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Non raggiungibile" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Ferma" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparazione in corso..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Stampa in corso" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Senza titolo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonimo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Richiede modifiche di configurazione" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Dettagli" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Stampante non disponibile" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Primo disponibile" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Coda di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gestisci nel browser" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Non sono presenti processi di stampa nella coda. Eseguire lo slicing e inviare un processo per aggiungerne uno." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Processi di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo di stampa totale" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "In attesa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Stampa sulla rete" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Selezione stampante" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Modifiche configurazione" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Override" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "La stampante assegnata, %1, richiede la seguente modifica di configurazione:" +msgstr[1] "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "La stampante %1 è assegnata, ma il processo contiene una configurazione materiale sconosciuta." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Cambia materiale %1 da %2 a %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Cambia print core %1 da %2 a %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Cambia piano di stampa a %1 (Operazione non annullabile)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "L’override utilizza le impostazioni specificate con la configurazione stampante esistente. Ciò può causare una stampa non riuscita." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Alluminio" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminato" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Interr. in corso..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Interrotto" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Non riuscita" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Messa in pausa..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "In pausa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Ripresa in corso..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Richiede un'azione" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Finisce %1 a %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Collega alla stampante in rete" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selezionare la stampante dall’elenco seguente:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Modifica" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Rimuovi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Aggiorna" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Se la stampante non è nell’elenco, leggere la guida alla risoluzione dei problemi per la stampa in rete" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Versione firmware" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Indirizzo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Questa stampante comanda un gruppo di %1 stampanti." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "La stampante a questo indirizzo non ha ancora risposto." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Collega" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Indirizzo IP non valido" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Inserire un indirizzo IP valido." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Indirizzo stampante" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Inserire l'indirizzo IP della stampante in rete." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Sposta in alto" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Cancella" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Riprendi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Messa in pausa..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Ripresa in corso..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Pausa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Interr. in corso..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Interrompi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Sposta il processo di stampa in alto" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Sei sicuro di voler cancellare %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Cancella processo di stampa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Sei sicuro di voler interrompere %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Interrompi la stampa" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2245,1412 +3327,435 @@ msgstr "" "- Controllare se la stampante è collegata alla rete.\n" "- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Collegare la stampante alla rete." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Visualizza i manuali utente online" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Al fine di monitorare la stampa da Cura, collegare la stampante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo di maglia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modello normale" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Stampa come supporto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificare le impostazioni per le sovrapposizioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Non supportano le sovrapposizioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Solo maglia di riempimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Ritaglio mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Seleziona impostazioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Seleziona impostazioni di personalizzazione per questo modello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtro..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostra tutto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plug-in di post-elaborazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Script di post-elaborazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Aggiungi uno script" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Impostazioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Modificare gli script di post-elaborazione attivi." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Alcune parti potrebbero risultare problematiche in questa stampa. Fare click per visualizzare i suggerimenti per la regolazione." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "È attivo il seguente script:" -msgstr[1] "Sono attivi i seguenti script:" +msgid "3D View" +msgstr "Visualizzazione 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Schema colori" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Colore materiale" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo di linea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Spessore layer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Larghezza della linea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Flusso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modalità di compatibilità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Spostamenti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Helper" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Guscio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Riempimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Avvia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Mostra solo strati superiori" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Mostra 5 strati superiori in dettaglio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superiore / Inferiore" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parete interna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Maggiori informazioni sulla raccolta di dati anonimi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente. Di seguito è riportato un esempio dei dati condivisi:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Non desidero inviare dati anonimi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Consenti l'invio di dati anonimi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Indietro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Macchina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Piano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Supporto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Scheda dati tecnici" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Scheda dati di sicurezza" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Linee guida di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Sito web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Installa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Log in deve essere installato o aggiornato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Acquista bobine di materiale" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Aggiorna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Aggiornamento in corso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Aggiornamento eseguito" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Vai al Marketplace web" +msgid "Front View" +msgstr "Visualizzazione frontale" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Visualizzazione superiore" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Vista sinistra" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Vista destra" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Cerca materiali" +msgid "Object list" +msgstr "Elenco oggetti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Riavviare Cura per rendere effettive le modifiche apportate ai pacchetti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Chiudere %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiali" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Installa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "L'installazione sarà eseguita al riavvio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Log in deve essere aggiornato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgrade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Disinstalla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Installazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Modifiche dall'account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Rimuovi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Avanti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Verranno aggiunti i seguenti pacchetti:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Impossibile installare i seguenti pacchetti a causa di una versione di Cura non compatibile:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Conferma disinstalla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Si stanno installando materiali e/o profili ancora in uso. La conferma ripristina i seguenti materiali/profili ai valori predefiniti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiali" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profili" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Conferma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "È necessario accettare la licenza per installare il pacchetto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Sito web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "E-mail" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Versione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Ultimo aggiornamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marchio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Download" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Contributi della comunità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Plugin della comunità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiali generici" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Impossibile connettersi al database pacchetto Cura. Verificare la connessione." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Plugin installati" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Non è stato installato alcun plugin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Materiali installati" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Non è stato installato alcun materiale." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Plugin inseriti nel bundle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Materiali inseriti nel bundle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Recupero dei pacchetti..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Accedere per ottenere i plugin e i materiali verificati per Ultimaker Cura Enterprise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Mercato" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Livellamento del piano di stampa" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&File" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Per assicurarsi stampe di alta qualità, è ora possibile regolare il piano di stampa. Quando si fa clic su 'Spostamento alla posizione successiva' l'ugello si sposterà in diverse posizioni che è possibile regolare." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Modifica" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Per ciascuna posizione: inserire un pezzo di carta sotto l'ugello e regolare la stampa dell'altezza del piano di stampa. L'altezza del piano di stampa è corretta quando la carta sfiora la punta dell'ugello." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Visualizza" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Avvio livellamento del piano di stampa" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Impostazioni" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Spostamento alla posizione successiva" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Es&tensioni" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker Original" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referenze" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Piano di stampa riscaldato (kit ufficiale o integrato)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Help" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Collega alla stampante in rete" +msgid "New project" +msgstr "Nuovo progetto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selezionare la stampante dall’elenco seguente:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Modifica" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Rimuovi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Aggiorna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Se la stampante non è nell’elenco, leggere la guida alla risoluzione dei problemi per la stampa in rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versione firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Indirizzo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Questa stampante comanda un gruppo di %1 stampanti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "La stampante a questo indirizzo non ha ancora risposto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Collega" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Indirizzo IP non valido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Inserire un indirizzo IP valido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Indirizzo stampante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Inserire l'indirizzo IP della stampante in rete." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Modifiche configurazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Override" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "La stampante assegnata, %1, richiede la seguente modifica di configurazione:" -msgstr[1] "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "La stampante %1 è assegnata, ma il processo contiene una configurazione materiale sconosciuta." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Cambia materiale %1 da %2 a %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Cambia print core %1 da %2 a %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Cambia piano di stampa a %1 (Operazione non annullabile)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "L’override utilizza le impostazioni specificate con la configurazione stampante esistente. Ciò può causare una stampa non riuscita." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Vetro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alluminio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Sposta in alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Cancella" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Riprendi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Messa in pausa..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Ripresa in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Interr. in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Interrompi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Sposta il processo di stampa in alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Sei sicuro di voler cancellare %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Cancella processo di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Sei sicuro di voler interrompere %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Interrompi la stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gestione stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Aggiornare il firmware della stampante per gestire la coda da remoto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Non disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Non raggiungibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Ferma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparazione in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Stampa in corso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Senza titolo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonimo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Richiede modifiche di configurazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Dettagli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Stampante non disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Primo disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Interrotto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Interr. in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Messa in pausa..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "In pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Ripresa in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Richiede un'azione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Finisce %1 a %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Coda di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gestisci nel browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Non sono presenti processi di stampa nella coda. Eseguire lo slicing e inviare un processo per aggiungerne uno." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Processi di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo di stampa totale" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "In attesa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Stampa sulla rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Selezione stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Accedi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Accedi alla piattaforma Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Aggiungi profili materiale e plugin dal Marketplace\n" -"- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin⏎- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Crea un account Ultimaker gratuito" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Verifica in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Account sincronizzato" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Si è verificato un errore..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Installare gli aggiornamenti in attesa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Verificare gli aggiornamenti dell'account" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Ultimo aggiornamento: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Account Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Esci" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Nessuna stima di tempo disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Nessuna stima di costo disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Anteprima" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Stima del tempo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Stima del materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Sezionamento in corso..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Sezionamento impossibile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Elaborazione in corso" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Sezionamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Avvia il processo di sezionamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Annulla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mostra la Guida ricerca e riparazione dei guasti online" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Attiva/disattiva schermo intero" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Esci da schermo intero" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Annulla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "Ri&peti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Esci" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Visualizzazione 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Visualizzazione frontale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Visualizzazione superiore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Vista inferiore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Visualizzazione lato sinistro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Visualizzazione lato destro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configura Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Aggiungi stampante..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Gestione stampanti..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Gestione materiali..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Aggiungere altri materiali da Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Aggiorna il profilo con le impostazioni/esclusioni correnti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Elimina le modifiche correnti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Crea profilo dalle impostazioni/esclusioni correnti..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Gestione profili..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Mostra documentazione &online" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Se&gnala un errore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Scopri le novità" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Informazioni..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Cancella selezionati" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centra selezionati" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Moltiplica selezionati" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Elimina modello" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "C&entra modello su piattaforma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Raggruppa modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Separa modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "&Unisci modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "Mo<iplica modello..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Seleziona tutti i modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Cancellare piano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Ricarica tutti i modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Sistema tutti i modelli su tutti i piani di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Sistema tutti i modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Sistema selezione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Reimposta tutte le posizioni dei modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Reimposta tutte le trasformazioni dei modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Apri file..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Nuovo Progetto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Mostra cartella di configurazione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configura visibilità delle impostazioni..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Mercato" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Questo pacchetto sarà installato dopo il riavvio." +msgid "Time estimation" +msgstr "Stima del tempo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Generale" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Stima del materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Impostazioni" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Stampanti" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profili" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Nessuna stima di tempo disponibile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Chiusura di %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Nessuna stima di costo disponibile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Chiudere %1?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Anteprima" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Apri file" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "Aggiungi una stampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Installa il pacchetto" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Aggiungi una stampante in rete" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Apri file" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Aggiungi una stampante non in rete" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Rilevata la presenza di uno o più file codice G tra i file selezionati. È possibile aprire solo un file codice G alla volta. Se desideri aprire un file codice G, selezionane uno solo." +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Aggiungere una stampante cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Aggiungi stampante" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "In attesa della risposta del cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Non sono presenti stampanti nel cloud?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "Le seguenti stampanti del tuo account sono state aggiunte in Cura:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Aggiungere la stampante manualmente" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Aggiungi stampante per indirizzo IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Inserire l'indirizzo IP della stampante." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Aggiungi" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Impossibile connettersi al dispositivo." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Non è possibile effettuare la connessione alla stampante Ultimaker?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "La stampante a questo indirizzo non ha ancora risposto." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Questa stampante non può essere aggiunta perché è una stampante sconosciuta o non è l'host di un gruppo." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Indietro" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Collega" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Contratto di licenza" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Rifiuta e chiudi" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Benvenuto in Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"Segui questa procedura per configurare\n" +"Ultimaker Cura. Questa operazione richiederà solo pochi istanti." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Per iniziare" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Accedi alla piattaforma Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Aggiungi impostazioni materiale e plugin dal Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Salta" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Crea un account Ultimaker gratuito" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Produttore" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Autore profilo" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Nome stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Dare un nome alla stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Non è stata trovata alcuna stampante sulla rete." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Aggiorna" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Aggiungi stampante per IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Aggiungere una stampante cloud" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Ricerca e riparazione dei guasti" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Aiutaci a migliorare Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente, tra cui:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Tipi di macchine" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Utilizzo dei materiali" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Numero di sezionamenti" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Impostazioni di stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "I dati acquisiti da Ultimaker Cura non conterranno alcuna informazione personale." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Ulteriori informazioni" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "Scopri le novità" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Vuoto" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Note sulla versione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Informazioni su %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "versione: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Soluzione end-to-end per la stampa 3D con filamento fuso." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3659,183 +3764,204 @@ msgstr "" "Cura è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\n" "Cura è orgogliosa di utilizzare i seguenti progetti open source:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Interfaccia grafica utente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Struttura applicazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "Generatore codice G" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Libreria di comunicazione intra-processo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Lingua di programmazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "Struttura GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Vincoli struttura GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "Libreria vincoli C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Formato scambio dati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Libreria di supporto per calcolo scientifico" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Libreria di supporto per calcolo rapido" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Libreria di supporto per gestione file STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Libreria di supporto per gestione oggetti planari" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Libreria di supporto per gestione maglie triangolari" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Libreria di supporto per gestione file 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Libreria di supporto per metadati file e streaming" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Libreria di comunicazione seriale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Libreria scoperta ZeroConf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Libreria ritaglio poligono" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Controllo di tipo statico per Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Certificati di origine per la convalida dell'affidabilità SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Libreria per la traccia degli errori Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Libreria di impacchettamento dei poligoni sviluppata da Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Vincoli Python per libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Libreria di supporto per accesso a keyring sistema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Estensioni Python per Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Font" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "Icone SVG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Apertura applicazione distribuzione incrociata Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Apri file progetto" +msgid "Open file(s)" +msgstr "Apri file" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Rilevata la presenza di uno o più file progetto tra i file selezionati. È possibile aprire solo un file progetto alla volta. Si suggerisce di importare i modelli solo da tali file. Vuoi procedere?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Ricorda la scelta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Apri come progetto" +msgid "Import all as models" +msgstr "Importa tutto come modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Salva progetto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Estrusore %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & materiale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Materiale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Importa i modelli" +msgid "Save" +msgstr "Salva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Elimina o mantieni modifiche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3846,1206 +3972,144 @@ msgstr "" "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n" "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Impostazioni profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Modifiche correnti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Chiedi sempre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Elimina e non chiedere nuovamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Mantieni e non chiedere nuovamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Elimina modifiche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Mantieni modifiche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Apri file progetto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Rilevata la presenza di uno o più file progetto tra i file selezionati. È possibile aprire solo un file progetto alla volta. Si suggerisce di importare i modelli solo da tali file. Vuoi procedere?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Ricorda la scelta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importa tutto come modelli" +msgid "Open as project" +msgstr "Apri come progetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Salva progetto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Estrusore %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Salva" +msgid "Import models" +msgstr "Importa i modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Stampa modello selezionato con %1" -msgstr[1] "Stampa modelli selezionati con %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Senza titolo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&File" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Modifica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Visualizza" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Impostazioni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Es&tensioni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referenze" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Help" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Nuovo progetto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Mercato" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configurazioni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercato" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Caricamento in corso configurazioni disponibili dalla stampante..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Le configurazioni non sono disponibili perché la stampante è scollegata." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Seleziona configurazione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Configurazioni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Abilitato" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Stampa modello selezionato con:" -msgstr[1] "Stampa modelli selezionati con:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Moltiplica modello selezionato" -msgstr[1] "Moltiplica modelli selezionati" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Numero di copie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Salva progetto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Esporta..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Esporta selezione..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Preferiti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Generale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Apri file..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Stampanti abilitate per la rete" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Stampanti locali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Ap&ri recenti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Salva progetto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "S&tampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "Ma&teriale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Imposta come estrusore attivo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Abilita estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Disabilita estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Impostazioni visibili" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Comprimi tutte le categorie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gestisci Impostazione visibilità..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Posizione fotocamera" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Visualizzazione fotocamera" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Prospettiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortogonale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "P&iano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Non collegato ad una stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "La stampante non accetta comandi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "In manutenzione. Controllare la stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Persa connessione con la stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Stampa in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "In pausa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparazione in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Rimuovere la stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Interrompi la stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Sei sicuro di voler interrompere la stampa?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Viene stampato come supporto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Gli altri modelli che si sovrappongono a questo modello sono stati modificati." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "La sovrapposizione del riempimento con questo modello è stata modificata." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Le sovrapposizioni con questo modello non sono supportate." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Ignora %1 impostazione." -msgstr[1] "Ignora %1 impostazioni." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Elenco oggetti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Interfaccia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Valuta:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Riavviare l'applicazione per rendere effettive le modifiche." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Seziona automaticamente alla modifica delle impostazioni." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Seziona automaticamente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento del riquadro di visualizzazione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Evidenzia in rosso le zone non supportate del modello. In assenza di supporto, queste aree non saranno stampate in modo corretto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Visualizza sbalzo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Evidenziare le superfici mancanti o estranee del modello utilizzando i simboli di avvertenza. I percorsi degli utensili spesso ignoreranno parti della geometria prevista." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Visualizzare gli errori del modello" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centratura fotocamera alla selezione dell'elemento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Il comportamento dello zoom predefinito di Cura dovrebbe essere invertito?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverti la direzione dello zoom della fotocamera." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Lo zoom si muove nella direzione del mouse?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Zoom verso la direzione del mouse" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "I modelli sull’area di stampa devono essere spostati per evitare intersezioni?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Assicurarsi che i modelli siano mantenuti separati" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "I modelli sull’area di stampa devono essere portati a contatto del piano di stampa?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Rilascia automaticamente i modelli sul piano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Visualizza il messaggio di avvertimento sul lettore codice G." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Messaggio di avvertimento sul lettore codice G" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Lo strato deve essere forzato in modalità di compatibilità?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Aprire Cura nel punto in cui è stato chiuso?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Ripristinare la posizione della finestra all'avvio" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Rendering fotocamera:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Prospettiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Ortogonale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Apertura e salvataggio file" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere eseguita nella stessa istanza di Cura?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizzare una singola istanza di Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "I modelli devono essere ridimensionati al volume di stampa, se troppo grandi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Ridimensiona i modelli troppo grandi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Un modello può apparire eccessivamente piccolo se la sua unità di misura è espressa in metri anziché in millimetri. Questi modelli devono essere aumentati?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Ridimensiona i modelli eccessivamente piccoli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "I modelli devono essere selezionati dopo essere stati caricati?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selezionare i modelli dopo il caricamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Al nome del processo di stampa deve essere aggiunto automaticamente un prefisso basato sul nome della stampante?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Aggiungi al nome del processo un prefisso macchina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Quando si salva un file di progetto deve essere visualizzato un riepilogo?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Visualizza una finestra di riepilogo quando si salva un progetto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento predefinito all'apertura di un file progetto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento predefinito all'apertura di un file progetto: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Chiedi sempre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Apri sempre come progetto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Importa sempre i modelli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Dopo aver modificato un profilo ed essere passati a un altro, si apre una finestra di dialogo che chiede se mantenere o eliminare le modifiche oppure se scegliere un comportamento predefinito e non visualizzare più tale finestra di dialogo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Profili" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Elimina sempre le impostazioni modificate" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Trasferisci sempre le impostazioni modificate a un nuovo profilo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Cura deve verificare la presenza di eventuali aggiornamenti all’avvio del programma?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Controlla aggiornamenti all’avvio" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "I dati anonimi sulla stampa devono essere inviati a Ultimaker? Nota, non sono trasmessi o memorizzati modelli, indirizzi IP o altre informazioni personali." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Invia informazioni di stampa (anonime)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Ulteriori informazioni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Attiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Rinomina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Crea" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Importa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Esporta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Sincronizza con le stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Conferma rimozione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importa materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Impossibile importare materiale {1}: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiale importato correttamente %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Esporta materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Impossibile esportare il materiale su %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiale esportato correttamente su %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Esporta tutti i materiali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informazioni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Conferma modifica diametro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Il nuovo diametro del filamento impostato a %1 mm non è compatibile con l'attuale estrusore. Continuare?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Visualizza nome" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo di materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Colore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Proprietà" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densità" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diametro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Costo del filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso del filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Lunghezza del filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Costo al metro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Questo materiale è collegato a %1 e condivide alcune delle sue proprietà." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Scollega materiale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Descrizione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informazioni sull’aderenza" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Impostazioni di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Crea" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Crea profilo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Indica un nome per questo profilo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplica profilo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Rinomina profilo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importa profilo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Esporta profilo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Stampante: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Elimina le modifiche correnti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Questo profilo utilizza le impostazioni predefinite dalla stampante, perciò non ci sono impostazioni/esclusioni nell’elenco riportato di seguito." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Le impostazioni correnti corrispondono al profilo selezionato." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Impostazioni globali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calcolato" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Impostazione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profilo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Corrente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unità" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Impostazione visibilità" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Controlla tutto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Temperatura target dell'estremità riscaldata. L'estremità riscaldata si riscalderà o raffredderà sino a questo valore di temperatura. Se questo è 0, l'estremità riscaldata verrà spenta." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "La temperatura corrente di questa estremità calda." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "La temperatura di preriscaldo dell’estremità calda." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annulla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pre-riscaldo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Riscalda l’estremità calda prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento dell’estremità calda quando si è pronti per la stampa." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Il colore del materiale di questo estrusore." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Il materiale di questo estrusore." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "L’ugello inserito in questo estrusore." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Piano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "La temperatura target del piano riscaldato. Il piano verrà riscaldato o raffreddato a questa temperatura. Se è 0, il riscaldamento del piano viene disattivato." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "La temperatura corrente del piano riscaldato." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "La temperatura di preriscaldo del piano." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Riscalda il piano prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento del piano quando si è pronti per la stampa." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Comando stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posizione Jog" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distanza Jog" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Invia codice G" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "La stampante non è collegata." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "La stampante cloud è offline. Verificare se la stampante è accesa e collegata a Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Questa stampante non è collegata al tuo account. Visitare Ultimaker Digital Factory per stabilire una connessione." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "La connessione cloud al momento non è disponibile. Accedere per collegarsi alla stampante cloud." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "La connessione cloud al momento non è disponibile. Verificare la connessione a Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Aggiungi stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gestione stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Stampanti collegate" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Stampanti preimpostate" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Stampa attiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Nome del processo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Tempo di stampa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo residuo stimato" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "La stampante cloud è offline. Verificare se la stampante è accesa e collegata a Internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Questa stampante non è collegata al tuo account. Visitare Ultimaker Digital Factory per stabilire una connessione." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "La connessione cloud al momento non è disponibile. Accedere per collegarsi alla stampante cloud." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "La connessione cloud al momento non è disponibile. Verificare la connessione a Internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Aggiungi stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Gestione stampanti" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Stampanti collegate" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Stampanti preimpostate" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Impostazioni di stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Impostazione di stampa disabilitata. Il file G-code non può essere modificato." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5056,120 +4120,1703 @@ msgstr "" "\n" "Fare clic per aprire la gestione profili." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Profili personalizzati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Elimina le modifiche correnti" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Consigliata" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Personalizzata" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Inserita" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Disinserita" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Sperimentale" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "Non esiste alcun profilo %1 per la configurazione nelle estrusore %2. In alternativa verrà utilizzato lo scopo predefinito" msgstr[1] "Non esiste alcun profilo %1 per le configurazioni negli estrusori %2. In alternativa verrà utilizzato lo scopo predefinito" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Impostazione di stampa disabilitata. Il file G-code non può essere modificato." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Consigliata" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Inserita" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Disinserita" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Sperimentale" +msgid "Profiles" +msgstr "Profili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Adesione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Abilita stampa di brim o raft. Questa funzione aggiunge un’area piana attorno o sotto l’oggetto, facile da tagliare successivamente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Riempimento graduale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Un riempimento graduale aumenterà gradualmente la quantità di riempimento verso l'alto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Sono state modificate alcune impostazioni del profilo. Per modificarle, andare alla modalità personalizzata." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Supporto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n" -"\n" -"Fare clic per rendere visibili queste impostazioni." +msgid "Gradual infill" +msgstr "Riempimento graduale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Un riempimento graduale aumenterà gradualmente la quantità di riempimento verso l'alto." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Adesione" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Abilita stampa di brim o raft. Questa funzione aggiunge un’area piana attorno o sotto l’oggetto, facile da tagliare successivamente." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Salva progetto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Stampanti abilitate per la rete" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Stampanti locali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Materiale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Preferiti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Generale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Stampa modello selezionato con:" +msgstr[1] "Stampa modelli selezionati con:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Moltiplica modello selezionato" +msgstr[1] "Moltiplica modelli selezionati" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Numero di copie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Salva progetto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Esporta..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Esporta selezione..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Configurazioni" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Personalizzata" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Abilitato" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Materiale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "La configurazione di questo estrusore non è consentita e proibisce il sezionamento." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Nessun profilo corrispondente alla configurazione di questo estrusore." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Seleziona configurazione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Configurazioni" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Caricamento in corso configurazioni disponibili dalla stampante..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "Le configurazioni non sono disponibili perché la stampante è scollegata." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercato" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Apri file..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "S&tampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "Ma&teriale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Imposta come estrusore attivo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Abilita estrusore" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Disabilita estrusore" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Ap&ri recenti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Impostazioni visibili" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Comprimi tutte le categorie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gestisci Impostazione visibilità..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Posizione fotocamera" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Visualizzazione fotocamera" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Prospettiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortogonale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "P&iano di stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Visualizza tipo" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Viene stampato come supporto." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Gli altri modelli che si sovrappongono a questo modello sono stati modificati." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "La sovrapposizione del riempimento con questo modello è stata modificata." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Le sovrapposizioni con questo modello non sono supportate." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Ignora %1 impostazione." +msgstr[1] "Ignora %1 impostazioni." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profili" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Attiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Crea" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Duplica" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Rinomina" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Importa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Esporta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Crea profilo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Indica un nome per questo profilo." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplica profilo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Conferma rimozione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Rinomina profilo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importa profilo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Esporta profilo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Stampante: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Questo profilo utilizza le impostazioni predefinite dalla stampante, perciò non ci sono impostazioni/esclusioni nell’elenco riportato di seguito." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Le impostazioni correnti corrispondono al profilo selezionato." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Impostazioni globali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Generale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Interfaccia" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Valuta:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Tema:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Riavviare l'applicazione per rendere effettive le modifiche." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Seziona automaticamente alla modifica delle impostazioni." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Seziona automaticamente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento del riquadro di visualizzazione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Evidenzia in rosso le zone non supportate del modello. In assenza di supporto, queste aree non saranno stampate in modo corretto." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Visualizza sbalzo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Evidenziare le superfici mancanti o estranee del modello utilizzando i simboli di avvertenza. I percorsi degli utensili spesso ignoreranno parti della geometria prevista." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Visualizzare gli errori del modello" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centratura fotocamera alla selezione dell'elemento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Il comportamento dello zoom predefinito di Cura dovrebbe essere invertito?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Inverti la direzione dello zoom della fotocamera." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Lo zoom si muove nella direzione del mouse?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Zoom verso la direzione del mouse" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "I modelli sull’area di stampa devono essere spostati per evitare intersezioni?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Assicurarsi che i modelli siano mantenuti separati" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "I modelli sull’area di stampa devono essere portati a contatto del piano di stampa?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Rilascia automaticamente i modelli sul piano di stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Visualizza il messaggio di avvertimento sul lettore codice G." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Messaggio di avvertimento sul lettore codice G" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Lo strato deve essere forzato in modalità di compatibilità?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Aprire Cura nel punto in cui è stato chiuso?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Ripristinare la posizione della finestra all'avvio" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Rendering fotocamera:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Prospettiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Ortogonale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Apertura e salvataggio file" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere eseguita nella stessa istanza di Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Utilizzare una singola istanza di Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "È necessario pulire il piano di stampa prima di caricare un nuovo modello nella singola istanza di Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Pulire il piano di stampa prima di caricare il modello nella singola istanza" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "I modelli devono essere ridimensionati al volume di stampa, se troppo grandi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Ridimensiona i modelli troppo grandi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Un modello può apparire eccessivamente piccolo se la sua unità di misura è espressa in metri anziché in millimetri. Questi modelli devono essere aumentati?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Ridimensiona i modelli eccessivamente piccoli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "I modelli devono essere selezionati dopo essere stati caricati?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Selezionare i modelli dopo il caricamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Al nome del processo di stampa deve essere aggiunto automaticamente un prefisso basato sul nome della stampante?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Aggiungi al nome del processo un prefisso macchina" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Quando si salva un file di progetto deve essere visualizzato un riepilogo?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Visualizza una finestra di riepilogo quando si salva un progetto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportamento predefinito all'apertura di un file progetto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportamento predefinito all'apertura di un file progetto: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Chiedi sempre" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Apri sempre come progetto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Importa sempre i modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Dopo aver modificato un profilo ed essere passati a un altro, si apre una finestra di dialogo che chiede se mantenere o eliminare le modifiche oppure se scegliere un comportamento predefinito e non visualizzare più tale finestra di dialogo." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Elimina sempre le impostazioni modificate" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Trasferisci sempre le impostazioni modificate a un nuovo profilo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "I dati anonimi sulla stampa devono essere inviati a Ultimaker? Nota, non sono trasmessi o memorizzati modelli, indirizzi IP o altre informazioni personali." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Invia informazioni di stampa (anonime)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Ulteriori informazioni" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Aggiornamenti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Cura deve verificare la presenza di eventuali aggiornamenti all’avvio del programma?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Controlla aggiornamenti all’avvio" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Quando si verifica la presenza di aggiornamenti, cercare solo versioni stabili." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Solo versioni stabili" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Quando si verifica la presenza di aggiornamenti, cercare versioni stabili e beta." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versioni stabili e beta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "È necessario verificare automaticamente la presenza di nuovi plugin ad ogni avvio di Cura? Si consiglia di non disabilitare questa opzione!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Ricevi notifiche di aggiornamenti plugin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Informazioni" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Conferma modifica diametro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Il nuovo diametro del filamento impostato a %1 mm non è compatibile con l'attuale estrusore. Continuare?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Visualizza nome" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo di materiale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Colore" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Proprietà" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Densità" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Diametro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Costo del filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Peso del filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Lunghezza del filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Costo al metro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Questo materiale è collegato a %1 e condivide alcune delle sue proprietà." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Scollega materiale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Descrizione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informazioni sull’aderenza" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Crea" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplica" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Sincronizza con le stampanti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importa materiale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Impossibile importare materiale {1}: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Materiale importato correttamente %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Esporta materiale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Impossibile esportare il materiale su %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Materiale esportato correttamente su %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Sincronizza materiali con stampanti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Sincronizza materiali con stampanti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Seguendo alcuni semplici passaggi, sarà possibile sincronizzare tutti i profili del materiale con le stampanti." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Avvio" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Cosa occorre per sincronizzare i profili del materiale?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Accedi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Per sincronizzare automaticamente i profili del materiale con tutte le stampanti collegate a Digital Factory è necessario aver effettuato l'accesso a Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizza materiali con USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Le stampanti seguenti riceveranno i nuovi profili del materiale:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Si è verificato un errore durante l'invio di materiali alle stampanti." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "I profili del materiale sono stati sincronizzati correttamente con le stampanti seguenti:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Ricerca e riparazione dei guasti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Mancano stampanti?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Accertarsi che tutte le stampanti siano accese e collegate a Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Aggiorna elenco" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Riprova" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Eseguito" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizza" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizzazione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nessuna stampante trovata" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Nessuna stampante compatibile collegata a Digital Factory. Accertarsi che la stampante sia collegata e che il firmware più recente sia in esecuzione." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Scopri come collegare la stampante a Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Aggiorna" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Sincronizza profili del materiale tramite USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Eseguire le operazioni descritte di seguito per caricare nuovi profili del materiale nella stampante." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Fare clic sul pulsante Esporta archivio materiali." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Salvare il file .umm su una chiavetta USB." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Inserire la chiavetta USB nella stampante e avviare la procedura per caricare nuovi profili del materiale." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Come caricare nuovi profili del materiale nella stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Esporta archivio materiali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Esporta tutti i materiali" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Impostazione visibilità" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Controlla tutto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Stampanti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calcolato" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Impostazione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profilo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Corrente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Unità" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Non collegato ad una stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "La stampante non accetta comandi" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "In manutenzione. Controllare la stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Persa connessione con la stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Stampa in corso..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "In pausa" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparazione in corso..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Rimuovere la stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Interrompi la stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Sei sicuro di voler interrompere la stampa?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Stampa modello selezionato con %1" +msgstr[1] "Stampa modelli selezionati con %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Le mie stampanti" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Monitora le stampanti in Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Crea progetti di stampa in Digital Library." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Processi di stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Monitora i processi di stampa dalla cronologia di stampa." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Estendi Ultimaker Cura con plugin e profili del materiale." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Diventa un esperto di stampa 3D con e-learning Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Supporto Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Scopri come iniziare a utilizzare Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Fai una domanda" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consulta la community di Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Segnala un errore" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Informa gli sviluppatori che si è verificato un errore." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visita il sito Web Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Comando stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Posizione Jog" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distanza Jog" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Invia codice G" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Estrusore" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Temperatura target dell'estremità riscaldata. L'estremità riscaldata si riscalderà o raffredderà sino a questo valore di temperatura. Se questo è 0, l'estremità riscaldata verrà spenta." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "La temperatura corrente di questa estremità calda." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "La temperatura di preriscaldo dell’estremità calda." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Annulla" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Pre-riscaldo" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Riscalda l’estremità calda prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento dell’estremità calda quando si è pronti per la stampa." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Il colore del materiale di questo estrusore." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Il materiale di questo estrusore." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "L’ugello inserito in questo estrusore." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "La stampante non è collegata." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Piano di stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "La temperatura target del piano riscaldato. Il piano verrà riscaldato o raffreddato a questa temperatura. Se è 0, il riscaldamento del piano viene disattivato." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "La temperatura corrente del piano riscaldato." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "La temperatura di preriscaldo del piano." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Riscalda il piano prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento del piano quando si è pronti per la stampa." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Accedi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Aggiungi profili materiale e plugin dal Marketplace\n" +"- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n" +"- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Crea un account Ultimaker gratuito" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Ultimo aggiornamento: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Account Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Esci" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Verifica in corso..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Account sincronizzato" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Si è verificato un errore..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Installare gli aggiornamenti in attesa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Verificare gli aggiornamenti dell'account" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Senza titolo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Nessun elemento da selezionare da" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Mostra la Guida ricerca e riparazione dei guasti online" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Attiva/disattiva schermo intero" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Esci da schermo intero" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Annulla" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "Ri&peti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Esci" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Visualizzazione 3D" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Visualizzazione frontale" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Visualizzazione superiore" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Vista inferiore" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Visualizzazione lato sinistro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Visualizzazione lato destro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configura Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Aggiungi stampante..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Gestione stampanti..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Gestione materiali..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Aggiungere altri materiali da Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Aggiorna il profilo con le impostazioni/esclusioni correnti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Elimina le modifiche correnti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Crea profilo dalle impostazioni/esclusioni correnti..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Gestione profili..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Mostra documentazione &online" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Se&gnala un errore" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Scopri le novità" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Informazioni..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Cancella selezionati" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centra selezionati" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Moltiplica selezionati" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Elimina modello" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "C&entra modello su piattaforma" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Raggruppa modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Separa modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "&Unisci modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "Mo<iplica modello..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Seleziona tutti i modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Cancellare piano di stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Ricarica tutti i modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Sistema tutti i modelli su tutti i piani di stampa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Sistema tutti i modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Sistema selezione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Reimposta tutte le posizioni dei modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Reimposta tutte le trasformazioni dei modelli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Apri file..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Nuovo Progetto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Mostra cartella di configurazione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configura visibilità delle impostazioni..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Mercato" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Questa impostazione non è utilizzata perché tutte le impostazioni che influenza sono sottoposte a override." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Influisce su" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Influenzato da" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell'estrusore:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5180,7 +5827,7 @@ msgstr "" "\n" "Fare clic per ripristinare il valore del profilo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5191,509 +5838,93 @@ msgstr "" "\n" "Fare clic per ripristinare il valore calcolato." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Impostazioni ricerca" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copia valore su tutti gli estrusori" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copia tutti i valori modificati su tutti gli estrusori" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Nascondi questa impostazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Nascondi questa impostazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Mantieni visibile questa impostazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Visualizzazione 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Visualizzazione frontale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Visualizzazione superiore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Vista sinistra" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Vista destra" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Visualizza tipo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Aggiungere una stampante cloud" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "In attesa della risposta del cloud" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Non sono presenti stampanti nel cloud?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "Le seguenti stampanti del tuo account sono state aggiunte in Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Aggiungere la stampante manualmente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Produttore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Autore profilo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Nome stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Dare un nome alla stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Aggiungi una stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Aggiungi una stampante in rete" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Aggiungi una stampante non in rete" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Non è stata trovata alcuna stampante sulla rete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Aggiorna" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Aggiungi stampante per IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Aggiungere una stampante cloud" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Ricerca e riparazione dei guasti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Aggiungi stampante per indirizzo IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Inserire l'indirizzo IP della stampante." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Aggiungi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Impossibile connettersi al dispositivo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Non è possibile effettuare la connessione alla stampante Ultimaker?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "La stampante a questo indirizzo non ha ancora risposto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Questa stampante non può essere aggiunta perché è una stampante sconosciuta o non è l'host di un gruppo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Indietro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Collega" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Note sulla versione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Aggiungi impostazioni materiale e plugin dal Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Crea un account Ultimaker gratuito" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Salta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Aiutaci a migliorare Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente, tra cui:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipi di macchine" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilizzo dei materiali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Numero di sezionamenti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Impostazioni di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "I dati acquisiti da Ultimaker Cura non conterranno alcuna informazione personale." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Ulteriori informazioni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vuoto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Contratto di licenza" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Rifiuta e chiudi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Benvenuto in Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" -"Segui questa procedura per configurare\n" -"Ultimaker Cura. Questa operazione richiederà solo pochi istanti." +"Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n" +"\n" +"Fare clic per rendere visibili queste impostazioni." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Per iniziare" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Questo pacchetto sarà installato dopo il riavvio." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Impostazioni" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Chiusura di %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Chiudere %1?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Installa il pacchetto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Apri file" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Rilevata la presenza di uno o più file codice G tra i file selezionati. È possibile aprire solo un file codice G alla volta. Se desideri aprire un file codice G, selezionane uno solo." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Aggiungi stampante" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "Scopri le novità" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Nessun elemento da selezionare da" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Controllo modello" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Lettore 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Fornisce il supporto per la scrittura di file 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Writer 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Lettore 3MF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Effettua il backup o ripristina la configurazione." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Backup Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornisce supporto per l'importazione dei profili Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lettore profilo Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fornisce supporto per l'esportazione dei profili Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Writer profilo Cura" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controlla disponibilità di aggiornamenti firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Controllo aggiornamento firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aggiornamento firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Legge il codice G da un archivio compresso." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lettore codice G compresso" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Scrive il codice G in un archivio compresso." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer codice G compresso" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fornisce supporto per l'importazione di profili da file G-Code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lettore profilo codice G" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Consente il caricamento e la visualizzazione dei file codice G." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Lettore codice G" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Scrive il codice G in un file." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Writer codice G" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Lettore di immagine" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lettore legacy profilo Cura" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Azione Impostazioni macchina" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornisce una fase di controllo in Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase di controllo" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5704,85 +5935,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Utilità impostazioni per modello" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Estensione che consente la post-elaborazione degli script creati da utente" +msgid "Provides support for importing Cura profiles." +msgstr "Fornisce supporto per l'importazione dei profili Cura." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Post-elaborazione" +msgid "Cura Profile Reader" +msgstr "Lettore profilo Cura" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornisce una fase di preparazione in Cura." +msgid "Provides support for reading X3D files." +msgstr "Fornisce il supporto per la lettura di file X3D." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase di preparazione" +msgid "X3D Reader" +msgstr "Lettore X3D" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornisce una fase di anteprima in Cura." +msgid "Backup and restore your configuration." +msgstr "Effettua il backup o ripristina la configurazione." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Fase di anteprima" +msgid "Cura Backups" +msgstr "Backup Cura" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin dispositivo di output unità rimovibile" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Logger sentinella" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Fornisce la vista di simulazione." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Vista simulazione" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informazioni su sezionamento" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Fornisce una normale visualizzazione a griglia compatta." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Visualizzazione compatta" +msgid "Machine Settings Action" +msgstr "Azione Impostazioni macchina" #: SupportEraser/plugin.json msgctxt "description" @@ -5794,35 +5985,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Cancellazione supporto" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Trova, gestisce ed installa nuovi pacchetti Cura." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Casella degli strumenti" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin dispositivo di output unità rimovibile" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornisce supporto per la lettura dei file modello." +msgid "Provides a machine actions for updating firmware." +msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" +msgid "Firmware Updater" +msgstr "Aggiornamento firmware" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornisce il supporto per la lettura di pacchetti formato Ultimaker." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "Lettore UFP" +msgid "Legacy Cura Profile Reader" +msgstr "Lettore legacy profilo Cura" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Lettore 3MF" #: UFPWriter/plugin.json msgctxt "description" @@ -5834,25 +6035,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "Writer UFP" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Azioni della macchina Ultimaker" +msgid "Sentry Logger" +msgstr "Logger sentinella" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker in rete." +msgid "Provides support for importing profiles from g-code files." +msgstr "Fornisce supporto per l'importazione di profili da file G-Code." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Connessione di rete Ultimaker" +msgid "G-code Profile Reader" +msgstr "Lettore profilo codice G" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornisce una fase di anteprima in Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase di anteprima" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Fornisce la vista a raggi X." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista ai raggi X" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end CuraEngine" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Lettore 3MF" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Legge il codice G da un archivio compresso." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lettore codice G compresso" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Estensione che consente la post-elaborazione degli script creati da utente" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Post-elaborazione" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fornisce supporto per l'esportazione dei profili Cura." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Writer profilo Cura" #: USBPrinting/plugin.json msgctxt "description" @@ -5864,25 +6135,135 @@ msgctxt "name" msgid "USB printing" msgstr "Stampa USB" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." +msgid "Provides a prepare stage in Cura." +msgstr "Fornisce una fase di preparazione in Cura." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Aggiornamento della versione da 2.1 a 2.2" +msgid "Prepare Stage" +msgstr "Fase di preparazione" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." +msgid "Allows loading and displaying G-code files." +msgstr "Consente il caricamento e la visualizzazione dei file codice G." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Aggiornamento della versione da 2.2 a 2.4" +msgid "G-code Reader" +msgstr "Lettore codice G" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Lettore di immagine" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Azioni della macchina Ultimaker" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Scrive il codice G in un archivio compresso." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer codice G compresso" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controlla disponibilità di aggiornamenti firmware." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Controllo aggiornamento firmware" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informazioni su sezionamento" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Profili del materiale" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Trova, gestisce ed installa nuovi pacchetti Cura." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Casella degli strumenti" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Scrive il codice G in un file." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Writer codice G" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Fornisce la vista di simulazione." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Vista simulazione" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Aggiornamento della versione da 4.5 a 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5894,55 +6275,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Aggiornamento della versione da 2.5 a 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Aggiornamento della versione da 2.6 a 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Aggiornamento della versione da 2.7 a 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Aggiornamento della versione da 3.0 a 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Aggiornamento della versione da 3.2 a 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Aggiornamento della versione da 3.3 a 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Aggiornamento della versione da 4.7 a 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5954,35 +6305,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Aggiornamento della versione da 3.4 a 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Aggiornamento della versione da 3.5 a 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Aggiornamento della versione da 2.1 a 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Aggiornamento della versione da 4.0 a 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Aggiornamento della versione da 3.2 a 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Aggiornamento della versione da 4.1 a 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Aggiornamento della versione da 4.8 a 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Aggiornamento versione da 4.6.2 a 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6004,66 +6365,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Aggiornamento della versione da 4.3 a 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Aggiornamento della versione da 4.4 a 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aggiornamento della versione da 4.5 a 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Aggiornamento versione da 4.6.2 a 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Aggiornamento della versione da 4.7 a 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Aggiornamento della versione da 4.8 a 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6074,35 +6375,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Aggiornamento della versione da 4.9 a 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornisce il supporto per la lettura di file X3D." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "Lettore X3D" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Aggiornamento della versione da 2.7 a 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Profili del materiale" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Aggiornamento della versione da 2.6 a 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Fornisce la vista a raggi X." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Vista ai raggi X" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Aggiornamento della versione da 4.11 a 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Aggiornamento della versione da 3.3 a 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Aggiornamento della versione da 3.0 a 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Aggiornamento della versione da 4.0 a 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Aggiornamento della versione da 4.4 a 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Aggiornamento della versione da 2.2 a 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Aggiornamento della versione da 4.1 a 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Aggiornamento della versione da 3.5 a 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker in rete." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Connessione di rete Ultimaker" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornisce supporto per la lettura dei file modello." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornisce il supporto per la lettura di pacchetti formato Ultimaker." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Lettore UFP" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Fornisce una normale visualizzazione a griglia compatta." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Visualizzazione compatta" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Fornisce il supporto per la scrittura di file 3MF." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Writer 3MF" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornisce una fase di controllo in Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase di controllo" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Controllo modello" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Invia e controlla i processi di stampa ovunque con l’account Ultimaker." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Effettuare la connessione a Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Impossibile visualizzare feed della Webcam per stampanti cloud da Ultimaker Cura." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "È possibile che per {machine_name} siano disponibili nuove funzionalità o bug fix. Se non si dispone della versione più recente, è consigliabile aggiornare il firmware della stampante alla versione {latest_version}." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Nuovo firmware %s disponibile" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 2b1b6af466..e5b21c43ed 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 14:58+0200\n" "Last-Translator: Bothof \n" "Language-Team: Italian\n" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 0754a9374c..12c2f38a5f 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 14:58+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Italian , Italian \n" @@ -56,9 +56,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"I comandi codice G da eseguire all’avvio, separati da \n" -"." +msgstr "I comandi codice G da eseguire all’avvio, separati da \n." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -70,9 +68,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"I comandi codice G da eseguire alla fine, separati da \n" -"." +msgstr "I comandi codice G da eseguire alla fine, separati da \n." #: fdmprinter.def.json msgctxt "material_guid label" @@ -154,6 +150,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "La profondità (direzione Y) dell’area stampabile." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altezza macchina" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "L’altezza (direzione Z) dell’area stampabile." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -194,16 +200,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Alluminio" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altezza macchina" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "L’altezza (direzione Z) dell’area stampabile." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -561,8 +557,8 @@ msgstr "Indica la velocità massima del motore per la direzione Z." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Velocità di alimentazione massima" +msgid "Maximum Speed E" +msgstr "Velocità massima E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -686,8 +682,8 @@ msgstr "Passi per millimetro (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "I passi del motore passo-passo in un millimetro di estrusione." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quanti passi dei motori passo-passo causano lo spostamento della ruota del tirafilo di un millimetro attorno alla sua circonferenza." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1434,6 +1430,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordine superiore/inferiore monotonico" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee superiori/inferiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1504,6 +1510,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordine di stiratura monotonico" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee di stiratura in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1711,8 +1727,11 @@ msgstr "Configurazione di riempimento" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del" +" materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente" +" su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione" +" della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo la parte superiore dell'oggetto." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1779,6 +1798,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Fulmine" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1993,6 +2017,48 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angolo di supporto riempimento fulmine" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uno strato di riempimento fulmine deve supportare il materiale sopra di esso. Misurato nell'angolo dato lo stesso di uno strato." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angolo di sbalzo riempimento fulmine" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando uno strato di riempimento fulmine deve supportare il modello sopra di esso. Misurato nell'angolo dato lo spessore." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angolo eliminazione riempimento fulmine" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "I punti finali delle linee di riempimento vengono accorciati per risparmiare sul materiale. Questa impostazione è l'angolo di sbalzo dei punti finali di" +" queste linee." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angolo di raddrizzatura riempimento fulmine" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea" +" di riempimento." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3183,6 +3249,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Tutto" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Non su superficie esterna" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -3201,8 +3272,7 @@ msgstr "Massima distanza di combing senza retrazione" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato" -" è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione." +msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione." #: fdmprinter.def.json msgctxt "travel_retract_before_outer_wall label" @@ -5135,7 +5205,7 @@ msgstr "Larghezza minimo dello stampo" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." +msgid "The minimal distance between the outside of the mold and the outside of the model." msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." #: fdmprinter.def.json @@ -5303,6 +5373,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordine superficie superiore monotonico" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee superficie superiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6402,6 +6482,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matrice di rotazione da applicare al modello quando caricato dal file." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "I comandi codice G da eseguire all’avvio, separati da \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "I comandi codice G da eseguire alla fine, separati da \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocità di alimentazione massima" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo le parti superiori (interne) dell'oggetto. Come tale, la percentuale di riempimento è 'valida' solo uno strato al di sotto di ciò che è necessario per supportare il modello." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "La differenza tra uno strato di riempimento fulmine con quello immediatamente sopra rispetto alla potatura delle estremità esterne degli alberi. Misurato nell'angolo dato lo spessore." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "La differenza tra uno strato di riempimento fulmine con quello immediatamente sopra rispetto alla levigatura degli alberi. Misurato nell'angolo dato lo spessore." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "I passi del motore passo-passo in un millimetro di estrusione." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Per un valore diverso da zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index c170d3ba8e..c2e95fefa5 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 15:00+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2022-01-10 11:54+0100\n" "Last-Translator: Lionbridge \n" "Language-Team: Japanese , Japanese \n" "Language: ja_JP\n" @@ -15,182 +15,401 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "不明" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "下のプリンターはグループの一員であるため接続できません" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "バックアップ" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "ネットワークで利用可能なプリンター" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "現行バージョンより上の Cura バックアップをリストアしようとしました。" + +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "Curaのバックアップのリストア中に次のエラーが発生しました:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "プリントを開始する前に、材料プロファイルをプリンターと同期させてください。" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "新しい材料がインストールされました" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "材料をプリンターと同期" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "詳しく見る" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "材料アーカイブを{}に保存できませんでした:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "材料アーカイブの保存に失敗しました" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "不明なエラー。" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "プリントシークエンス設定値により、ガントリーと造形物の衝突を避けるため印刷データの高さを低くしました。" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "造形サイズ" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#, python-brace-format +msgctxt "@label {0} is the name of a printer that's about to be deleted." +msgid "Are you sure you wish to remove {0}? This cannot be undone!" +msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません!" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 msgctxt "@menuitem" msgid "Not overridden" msgstr "上書きできません" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 -#, python-brace-format -msgctxt "@label {0} is the name of a printer that's about to be deleted." -msgid "Are you sure you wish to remove {0}? This cannot be undone!" -msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません。" +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "不明" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "下のプリンターはグループの一員であるため接続できません" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "ネットワークで利用可能なプリンター" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "ビジュアル" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "ビジュアルプロファイルは、優れたビジュアルと表面品質を目的としたビジュアルプロトタイプやモデルをプリントするために設計されています。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "エンジニアリングプロファイルは、精度向上と公差の厳格対応を目的とした機能プロトタイプや最終用途部品をプリントするために設計されています。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "ドラフト" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "カスタムフィラメント" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "カスタム" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "カスタムプロファイル" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "すべてのサポートのタイプ ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "全てのファイル" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "ビジュアル" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "ビジュアルプロファイルは、優れたビジュアルと表面品質を目的としたビジュアルプロトタイプやモデルをプリントするために設計されています。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "エンジニアリングプロファイルは、精度向上と公差の厳格対応を目的とした機能プロトタイプや最終用途部品をプリントするために設計されています。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "ドラフト" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "カスタムフィラメント" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "カスタム" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "ログインに失敗しました" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "造形物のために新しい位置を探索中" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "位置確認" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "位置を確保できません" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "材料のアーカイブを作成してプリンターと同期するのに失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "バックアップ" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "材料のアーカイブを読み込んでプリンターと同期するのに失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "Digital Factoryからの応答が破損しているようです。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "現行バージョンより上の Cura バックアップをリストアしようとしました。" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "Digital Factoryからの応答に重要な情報がありません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "Curaのバックアップのリストア中に次のエラーが発生しました。" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Digital Factoryに接続して一部のプリンターと材料を同期するのに失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Digital Factoryに接続するのに失敗しました。" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "プリンターを読み込み中..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "プレファレンスをセットアップ中..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "アクティブなプリンターを初期化中..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "プリンターマネージャーを初期化中..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "ビルドボリュームを初期化中..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "シーンをセットアップ中..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "インターフェイスを読み込み中..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "エンジンを初期化中..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "プリントシークエンス設定値により、ガントリーと造形物の衝突を避けるため印刷データの高さを低くしました。" +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "造形サイズ" +msgid "Warning" +msgstr "警告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "G-codeを読み込み中は他のファイルを開くことができません。{0}の取り込みをスキップしました。" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "エラー" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "スキップ" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "閉める" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "次" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "終わる" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "追加" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "キャンセル" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "グループ #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "アウターウォール" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "インナーウォール" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "スキン" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "インフィル" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "サポートイルフィル" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "サポートインターフェイス" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "サポート" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "スカート" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "プライムタワー" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "移動" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "退却" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "他" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "リリースノートを開くことができませんでした。" + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Curaを開始できません" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +424,32 @@ msgstr "" "

    問題解決のために、このクラッシュ報告をお送りください。

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "クラッシュ報告をUltimakerに送信する" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "詳しいクラッシュ報告を表示する" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "コンフィグレーションのフォルダーを表示する" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "バックアップとリセットの設定" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "クラッシュ報告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,491 +460,1233 @@ msgstr "" "

    「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "システム情報" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "不明" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Curaバージョン" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura言語" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "OS言語" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "プラットフォーム" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qtバージョン" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQtバージョン" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "初期化されていません
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGLバージョン: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGLベンダー: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGLレンダラー: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "エラー・トレースバック" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "ログ" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "レポート送信" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "プリンターを読み込み中..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "プレファレンスをセットアップ中..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "アクティブなプリンターを初期化中..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "プリンターマネージャーを初期化中..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "ビルドボリュームを初期化中..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "シーンをセットアップ中..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "インターフェイスを読み込み中..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "エンジンを初期化中..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "警告" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "G-codeを読み込み中は他のファイルを開くことができません。{0}の取り込みをスキップしました。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "エラー" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "造形データを増やす、配置する" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "造形データを配置" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "造形データを配置" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "応答を読み取れません。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "指定された状態が正しくありません。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "このアプリケーションの許可において必要な権限を与えてください。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "ログイン時に予期しないエラーが発生しました。やり直してください。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Ultimaker アカウントサーバーに到達できません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "ログインに失敗しました" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "指定された状態が正しくありません。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "アカウントサーバーでの認証中にタイムアウトしました。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "このアプリケーションの許可において必要な権限を与えてください。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "ログイン時に予期しないエラーが発生しました。やり直してください。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "応答を読み取れません。" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "造形データを増やす、配置する" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "造形データを配置" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "造形データを配置" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "サポート対象外" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "ノズル" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "設定が更新されました" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "エクストルーダーを無効にしました" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "すでに存在するファイルです" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "{0} は既に存在します。ファイルを上書きしますか?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "無効なファイルのURL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "{0}にプロファイルを書き出すのに失敗しました: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "{0}にプロファイルを書き出すことに失敗しました。:ライタープラグイン失敗の報告。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "{0}にプロファイルを書き出しました" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "書き出し完了" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" -msgstr "{0}からプロファイルの取り込に失敗しました:{1}" +msgstr "{0}からプロファイルの取り込に失敗しました:{1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "プリンタを追加する前に、{0}からプロファイルの取り込はできません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "ファイル{0}にはカスタムプロファイルがインポートされていません" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" -msgstr "{0}からプロファイルの取り込に失敗しました:" +msgstr "{0}からプロファイルの取り込に失敗しました:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "このプロファイル{0}には、正しくないデータが含まれているため、インポートできません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" -msgstr "{0}からプロファイルの取り込みに失敗しました:" +msgstr "{0}からプロファイルの取り込みに失敗しました:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "ファイル{0}には、正しいプロファイルが含まれていません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "プロファイル{0}は不特定なファイルまたは破損があります。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "カスタムプロファイル" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "プロファイルはクオリティータイプが不足しています。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "アクティブなプリンターはありません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "プロファイルを追加できません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:現在の構成ではクオリティータイプ「{0}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "サポート対象外" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "ノズル" +msgid "Per Model Settings" +msgstr "各モデル設定" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "各モデル構成設定" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Curaプロファイル" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3Dファイル" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "バックアップのリストア中にエラーが発生しました。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "設定が更新されました" +msgid "Backups" +msgstr "バックアップ" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "バックアップのアップロード中にエラーが発生しました。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "バックアップを作成しています..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "バックアップの作成中にエラーが発生しました。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "バックアップをアップロードしています..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "バックアップのアップロードを完了しました。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "バックアップが最大ファイルサイズを超えています。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "バックアップを管理する" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "プリンターの設定" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "サポートブロッカー" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "サポートが印刷されないボリュームを作成します。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "リムーバブルドライブ" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "リムーバブルドライブに保存" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "リムーバブルドライブ{0}に保存" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "書き出すために利用可能な形式のファイルがありません!" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "リムーバブルドライブ{0}に保存中" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "エクストルーダーを無効にしました" +msgid "Saving" +msgstr "保存中" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0}を保存できませんでした: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "デバイス{device}に書き出すためのファイル名が見つかりませんでした。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "リムーバブルドライブ{0}に {1}として保存" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "ファイル保存" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 msgctxt "@action:button" -msgid "Add" -msgstr "追加" +msgid "Eject" +msgstr "取り出す" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "リムーバブルデバイス{0}を取り出す" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0}取り出し完了。デバイスを安全に取り外せます。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "ハードウェアを安全に取り外します" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "ファームウェアアップデート" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 プロファイル" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "推奨" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "カスタム" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "プロジェクトファイル {0} に不明なマシンタイプ {1} があります。マシンをインポートできません。代わりにモデルをインポートします。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "プロジェクトファイルを開く" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "プロジェクトファイル{0}が突然アクセスできなくなりました:{1}。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "プロジェクトファイルを開けません" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "プロジェクトファイル{0}は破損しています:{1}。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." +msgstr "プロジェクトファイル{0}はこのバージョンのUltimaker Curaでは認識できないプロファイルを使用して作成されています。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF ファイル" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "UFPファイルに書き込めません:" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "Ultimaker Format Package" +msgstr "Ultimakerフォーマットパッケージ" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-codeファイル" + +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "プレビュー" + +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "透視ビューイング" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "レイヤーを処理しています" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "インフォメーション" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "予期しないエラーが発生し、スライスに失敗しました。問題追跡ツールでのバグ報告をご検討ください。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "スライスに失敗しました" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "バグを報告" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Ultimaker Curaの問題追跡ツールでバグを報告してください。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "スライスできません" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "モデル別の設定があるためスライスできません。1つまたは複数のモデルで以下の設定にエラーが発生しました:{error_labels}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"設定を見直し、モデルが次の状態かどうかを確認してください。\n" +"- 造形サイズに合っている\n" +"- 有効なエクストルーダーに割り当てられている\n" +"- すべてが修飾子メッシュとして設定されているわけではない" + +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF ファイル" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "圧縮G-codeファイル" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "後処理" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "G-codeを修正" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USBプリンティング" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "USBを使ってプリントする" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "USBを使ってプリントする" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "USBにて接続する" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USBプリントを実行しています。Cura を閉じるとこのプリントも停止します。実行しますか?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "現在印刷中です。Curaは、前の印刷が完了するまでUSBを介した次の印刷を開始できません。" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "現在印刷中" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "準備する" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G-codeを解析" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-codeの詳細" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "データファイルを送信する前に、プリンターとプリンターの構成設定にそのG-codeが適応しているか確認してください。G-codeの表示が適切でない場合があります。" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Gファイル" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG画像" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG画像" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG画像" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP画像" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF画像" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "ビルドプレートを調整する" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "アップグレードを選択する" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter はテキストモードをサポートしていません。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "必要なアップデートの情報にアクセスできません。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "%sの新しい安定版ファームウェアが利用可能です" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" -msgid "Finish" -msgstr "終わる" +msgid "How to update" +msgstr "アップデートの仕方" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "サンプルのデータファイルを読み取ることができません。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "変更を有効にするために{}を終了して再始動する必要があります。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "同期中..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Ultimakerアカウントから変更が検出されました" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 msgctxt "@action:button" -msgid "Cancel" -msgstr "キャンセル" +msgid "Sync" +msgstr "同期" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "拒否してアカウントから削除" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{}プラグインのダウンロードに失敗しました" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "拒否する" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "同意する" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "プラグインライセンス同意書" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter は非テキストモードはサポートしていません。" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "エクスポートする前にG-codeの準備をしてください。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Curaはワイヤープリンティングが有効な場合は正確にレイヤーを表示しません。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "シミュレーションビュー" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "最初にスライスする必要があるため、何も表示されません。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "表示するレイヤーがありません" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "今後このメッセージを表示しない" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "レイヤービュー" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "ネットワーク上のプリント" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "ネットワークのプリント" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "ネットワーク上で接続" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "翌日" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "本日" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "ネットワーク上にて接続" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "現在のジョブが送信されるまで待機してください。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "印刷エラー" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "プリントジョブは正常にプリンターに送信されました。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "データを送信しました" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Ultimaker Connectを実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "プリンターの更新" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "プリントジョブのキューがいっぱいです。プリンターは新しいジョブを処理できません。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "キューがいっぱい" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "印刷ジョブ送信中" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "プリントジョブをプリンターにアップロードしています。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Curaはグループ{0}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "プリンターに材料を送信しています" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "データをプリンタにアップロードできませんでした。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "ネットワークエラー" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "{0}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "グループホストではありません" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "グループの設定" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"プリンター{printer_name}をクラウド経由で接続できました。\n" +"プリンターをDigital Factoryに接続することで、どこからでもプリントキューの管理とプリントのモニタリングを行えます" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "クラウドプリンティングの準備はできていますか?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "はじめに" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "詳しく見る" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "クラウドからプリントする" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "クラウドからプリントする" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "クラウド経由で接続" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "プリントをモニタリング" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factoryでプリントを追跡" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Ultimakerアカウントから新しいプリンターが検出されました" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "アカウントからプリンター{name}({model})を追加しています" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "...および{0}その他" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Digital Factoryからプリンターが追加されました:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "一部のプリンターではクラウド接続は利用できません" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "これらのプリンターはDigital Factoryとリンクされていません:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "接続を確立するには、{website_link}にアクセスしてください" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "プリンターの構成を維持" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "プリンターを取り除く" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "次回のアカウントの同期までに{printer_name}は削除されます。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "{printer_name}を完全に削除するには、{digital_factory_link}にアクセスしてください" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "{printer_name}を一時的に削除してもよろしいですか?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "プリンターを削除しますか?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "グループ #{group_nr}" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n" +"続行してもよろしいですか?" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "アウターウォール" +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n" +"続行してもよろしいですか?" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "インナーウォール" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "圧縮トライアングルメッシュを開く" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "スキン" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "インフィル" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTFバイナリ" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "サポートイルフィル" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF埋め込みJSON" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "サポートインターフェイス" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "サポート" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "圧縮COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "スカート" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "ハイライトされたエリアは、欠けている表面または無関係な表面を示します。モデルを修正してもう一度Curaを開いてください。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "プライムタワー" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "モデルエラー" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "移動" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "ソリッドビュー" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "退却" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "3Mf ファイルの書き込みエラー。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "他" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MFリーダーのプラグインが破損しています。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "次" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "まだ書き込んでいないワークスペースがありません。まずはプリンターを追加してください。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "スキップ" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "この作業スペースに書き込む権限がありません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "閉める" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "使用しているオペレーティングシステムでは、この場所またはこのファイル名でプロジェクトファイルを保存することはできません。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MFファイル" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Curaが3MF fileを算出します" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "モニター" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3Dモデルアシスタント" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -739,1004 +1700,458 @@ msgstr "" "

    可能な限り最高の品質および信頼性を得る方法をご覧ください。

    \n" "

    印字品質ガイドを見る

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "プロジェクトファイル {0} に不明なマシンタイプ {1} があります。マシンをインポートできません。代わりにモデルをインポートします。" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +msgctxt "@label" +msgid "Mesh Type" +msgstr "メッシュタイプ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "プロジェクトファイルを開く" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "標準モデル" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "プロジェクトファイル{0}が突然アクセスできなくなりました:{1}。" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "サポートとしてプリント" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "プロジェクトファイルを開けません" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "オーバーラップの設定を変更" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "プロジェクトファイル{0}は破損しています:{1}。" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "オーバーラップをサポートしない" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." -msgstr "プロジェクトファイル{0}はこのバージョンのUltimaker Curaでは認識できないプロファイルを使用して作成されています。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推奨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "カスタム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF ファイル" +msgid "Infill mesh only" +msgstr "インフィルメッシュのみ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MFリーダーのプラグインが破損しています。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "この作業スペースに書き込む権限がありません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "使用しているオペレーティングシステムでは、この場所またはこのファイル名でプロジェクトファイルを保存することはできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3Mf ファイルの書き込みエラー。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MFファイル" +msgid "Cutting mesh" +msgstr "メッシュ切断" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Curaが3MF fileを算出します" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF ファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "バックアップ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "バックアップのアップロード中にエラーが発生しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "バックアップを作成しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "バックアップの作成中にエラーが発生しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "バックアップをアップロードしています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "バックアップのアップロードを完了しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "バックアップが最大ファイルサイズを超えています。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "バックアップのリストア中にエラーが発生しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "バックアップを管理する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "スライスできません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "モデル別の設定があるためスライスできません。1つまたは複数のモデルで以下の設定にエラーが発生しました:{error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"設定を見直し、モデルが次の状態かどうかを確認してください。\n" -"- 造形サイズに合っている\n" -"- 有効なエクストルーダーに割り当てられている\n" -"- すべてが修飾子メッシュとして設定されているわけではない" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "レイヤーを処理しています" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "インフォメーション" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Curaプロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "必要なアップデートの情報にアクセスできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "新しい利用可能な%sファームウェアのアップデートがあります" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 msgctxt "@action:button" -msgid "How to update" -msgstr "アップデートの仕方" +msgid "Select settings" +msgstr "設定を選択する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "このモデルをカスタマイズする設定を選択する" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "フィルター..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "すべて表示する" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura バックアップ" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura バージョン" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "プリンタ" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "プロファイル" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "プラグイン" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "詳しく知りたい?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "今すぐバックアップする" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "自動バックアップ" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Cura を起動した日は常にバックアップを自動生成します。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "リストア" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "バックアップの削除" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "このバックアップを削除しますか?これは取り消しできません。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "バックアップのリストア" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "バックアップをリストアする前に Cura を再起動する必要があります。今すぐ Cura を閉じますか?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Cura のバックアップおよび同期を設定します。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "サインイン" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "マイ バックアップ" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "現在バックアップは存在しません。[今すぐバックアップする] を使用して作成してください。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "プレビューではバックアップは5つまでに制限されています。古いバックアップは削除してください。" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "プリンターの設定" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X(幅)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (奥行き)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (高さ)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "ビルドプレート形" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "センターを出します" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "ヒーテッドドベッド" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "加熱式ビルドボリューム" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-codeフレーバー" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "プリントヘッド設定" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X分" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y分" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "最大X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "最大Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "ガントリーの高さ" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "エクストルーダーの数" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "エクストルーダーのオフセットをGCodeに適用します" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Codeの開始" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-codeの終了" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "ノズル設定" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "ノズルサイズ" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "適合する材料直径" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "ノズルオフセットX" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "ノズルオフセットY" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "冷却ファンの番号" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "エクストルーダーがG-Codeを開始する" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "エクストルーダーがG-Codeを終了する" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "プリンター" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" msgid "Update Firmware" msgstr "ファームウェアアップデート" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "圧縮G-codeファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter はテキストモードをサポートしていません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-codeファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-codeを解析" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-codeの詳細" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "データファイルを送信する前に、プリンターとプリンターの構成設定にそのG-codeが適応しているか確認してください。G-codeの表示が適切でない場合があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Gファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter は非テキストモードはサポートしていません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "エクスポートする前にG-codeの準備をしてください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 プロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "プリンターの設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "モニター" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 msgctxt "@label" -msgid "Per Model Settings" -msgstr "各モデル設定" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "ファームウェアとは直接お持ちの3Dプリンターを動かすソフトウェアです。このファームウェアはステップモーターを操作し、温度を管理し、プリンターとして成すべき点を補います。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "各モデル構成設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "後処理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G-codeを修正" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "準備する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "プレビュー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "リムーバブルドライブに保存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "リムーバブルドライブ{0}に保存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "書き出すために利用可能な形式のファイルがありません!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "リムーバブルドライブ{0}に保存中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -msgctxt "@info:title" -msgid "Saving" -msgstr "保存中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0}を保存できませんでした: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "デバイス{device}に書き出すためのファイル名が見つかりませんでした。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "リムーバブルドライブ{0}に {1}として保存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "ファイル保存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "取り出す" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "リムーバブルデバイス{0}を取り出す" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0}取り出し完了。デバイスを安全に取り外せます。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "ハードウェアを安全に取り外します" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "リムーバブルドライブ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Curaはワイヤープリンティングが有効な場合は正確にレイヤーを表示しません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "シミュレーションビュー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "最初にスライスする必要があるため、何も表示されません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "表示するレイヤーがありません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "今後このメッセージを表示しない" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "レイヤービュー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "ハイライトされたエリアは、欠けている表面または無関係な表面を示します。モデルを修正してもう一度Curaを開いてください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "モデルエラー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "詳しく見る" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "ソリッドビュー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 msgctxt "@label" -msgid "Support Blocker" -msgstr "サポートブロッカー" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "サポートが印刷されないボリュームを作成します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Ultimakerアカウントから変更が検出されました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 msgctxt "@action:button" -msgid "Sync" -msgstr "同期" +msgid "Automatically upgrade Firmware" +msgstr "自動でファームウェアをアップグレード" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "同期中..." +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "カスタムファームウェアをアップロードする" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "拒否する" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "プリンターと接続されていないため、ファームウェアをアップデートできません。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "同意する" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "プラグインライセンス同意書" +msgid "Select custom firmware" +msgstr "カスタムファームウェアを選択する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒否してアカウントから削除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "変更を有効にするために{}を終了して再始動する必要があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{}プラグインのダウンロードに失敗しました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "圧縮トライアングルメッシュを開く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTFバイナリ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF埋め込みJSON" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "圧縮COLLADA Digital Asset Exchange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimakerフォーマットパッケージ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "UFPファイルに書き込めません:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "ビルドプレートを調整する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "アップグレードを選択する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "クラウドからプリントする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "クラウドからプリントする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "クラウド経由で接続" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Ultimakerアカウントから新しいプリンターが検出されました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "アカウントからプリンター{name}({model})を追加しています" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "...および{0}その他" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Digital Factoryからプリンターが追加されました:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "一部のプリンターではクラウド接続は利用できません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "これらのプリンターはDigital Factoryとリンクされていません:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "接続を確立するには、{website_link}にアクセスしてください" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "プリンターの構成を維持" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "プリンターを取り除く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "次回のアカウントの同期までに{printer_name}は削除されます。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "{printer_name}を完全に削除するには、{digital_factory_link}にアクセスしてください" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "{printer_name}を一時的に削除してもよろしいですか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 msgctxt "@title:window" -msgid "Remove printers?" -msgstr "プリンターを削除しますか?" +msgid "Firmware Update" +msgstr "ファームウェアアップデート" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 -#, python-brace-format +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n" -"続行してもよろしいですか?" +msgid "Updating firmware." +msgstr "ファームウェアアップデート中。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n" -"続行してもよろしいですか?" +msgid "Firmware update completed." +msgstr "ファームウェアアップデート完了。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 -msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Ultimaker のアカウントを使用して、どこからでも印刷ジョブを送信およびモニターします。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factoryに接続" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "はじめに" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Ultimaker Connectを実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "プリンターの更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Curaはグループ{0}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "プリンターに材料を送信しています" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "{0}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "グループホストではありません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "グループの設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "現在のジョブが送信されるまで待機してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "印刷エラー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "データをプリンタにアップロードできませんでした。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "ネットワークエラー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "印刷ジョブ送信中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "プリントジョブをプリンターにアップロードしています。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "プリントジョブのキューがいっぱいです。プリンターは新しいジョブを処理できません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "キューがいっぱい" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "プリントジョブは正常にプリンターに送信されました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "データを送信しました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "ネットワーク上のプリント" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "ネットワークのプリント" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "ネットワーク上で接続" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "ネットワーク上にて接続" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "翌日" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "本日" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USBプリンティング" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "USBを使ってプリントする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "USBを使ってプリントする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "USBにて接続する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "USBプリントを実行しています。Cura を閉じるとこのプリントも停止します。実行しますか?" +msgid "Firmware update failed due to an unknown error." +msgstr "不特定なエラーの発生によりファームウェアアップデート失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "現在印刷中です。Curaは、前の印刷が完了するまでUSBを介した次の印刷を開始できません。" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "コミュニケーションエラーによりファームウェアアップデート失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "現在印刷中" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "インプット/アウトプットエラーによりファームウェアアップデート失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3Dファイル" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "ファームウェアが見つからず、ファームウェアアップデート失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透視ビューイング" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "このプリントの何かが問題です。クリックして調整のヒントをご覧ください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "プロジェクトを開く" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "既存を更新する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "新しいものを作成する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "サマリーCuraプロジェクト" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "プリンターの設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "このプリンターの問題をどのように解決すればいいか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "タイプ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "プリンターグループ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "プロファイル設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "このプロファイルの問題をどのように解決すればいいか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "ネーム" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "プロファイル内にない" # Can’t edit the Japanese text -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1個の設定を上書き" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "次から引き出す" @@ -1744,490 +2159,1014 @@ msgstr "次から引き出す" # can’t inset the japanese text # %1: print quality profile name # %2: number of overridden ssettings -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%2の%1個の設定を上書き" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "フィラメント設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "このフィラメントの問題をどのように解決すればいいか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "視野設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "モード" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "ビジブル設定:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%2のうち%1" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "プロジェクトを読み込むとビルドプレート上のすべてのモデルがクリアされます。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "開く" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "詳しく知りたい?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "今すぐバックアップする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自動バックアップ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Cura を起動した日は常にバックアップを自動生成します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "リストア" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "バックアップの削除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "このバックアップを削除しますか?これは取り消しできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "バックアップのリストア" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "バックアップをリストアする前に Cura を再起動する必要があります。今すぐ Cura を閉じますか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura バージョン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "プリンタ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "プロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "プラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura バックアップ" +msgid "Post Processing Plugin" +msgstr "プラグイン処理後" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "マイ バックアップ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "現在バックアップは存在しません。[今すぐバックアップする] を使用して作成してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "プレビューではバックアップは5つまでに制限されています。古いバックアップは削除してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Cura のバックアップおよび同期を設定します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "サインイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "ファームウェアアップデート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "ファームウェアとは直接お持ちの3Dプリンターを動かすソフトウェアです。このファームウェアはステップモーターを操作し、温度を管理し、プリンターとして成すべき点を補います。" +msgid "Post Processing Scripts" +msgstr "スクリプトの処理後" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "スクリプトを加える" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。" +msgid "Settings" +msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "自動でファームウェアをアップグレード" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "処理したアクティブなスクリプトを変更します。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "カスタムファームウェアをアップロードする" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "次のスクリプトがアクティブです:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "プリンターと接続されていないため、ファームウェアをアップデートできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "カスタムファームウェアを選択する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "ファームウェアアップデート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "ファームウェアアップデート中。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "ファームウェアアップデート完了。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "不特定なエラーの発生によりファームウェアアップデート失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "コミュニケーションエラーによりファームウェアアップデート失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "インプット/アウトプットエラーによりファームウェアアップデート失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "ファームウェアが見つからず、ファームウェアアップデート失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "画像を変換する..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "“ベース”から各ピクセルへの最大距離。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "高さ(mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "ミリメートルでビルドプレートからベースの高さ。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "ベース(mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "ビルドプレート上の幅ミリメートル。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "幅(mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "ビルドプレート上の奥行きミリメートル" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "深さ(mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "リトフェインの場合、暗いピクセルは、より多くの光を通すために厚い場所に対応する必要があります。高さマップの場合、明るいピクセルは高い地形を表しているため、明るいピクセルは生成された3D モデルの厚い位置に対応する必要があります。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "暗いほうを高く" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "薄いほうを高く" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "リトフェインの場合、半透明性を示す単純な対数モデルを利用できます。高さマップの場合、ピクセル値は高さに比例します。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "線形" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "半透明性" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "厚さ1ミリメートルのプリントを貫通する光の割合。この値を小さくすると、画像の暗い領域ではコントラストが増し、明るい領域ではコントラストが減少します。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1mm透過率(%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "画像に適応したスムージング量。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "スムージング" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "このUltimaker Originalに施されたアップグレートを選択する" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "ヒーティッドビルドプレート(オフィシャルキットまたはセルフビルド)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "ビルドプレートのレベリング" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "プリントの成功率を上げるために、ビルドプレートを今調整できます。’次のポジションに移動’をクリックすると。" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "すべてのポジションに。" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "ビルドプレートのレベリングを開始する" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "次のポジションに移動" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "匿名データの収集に関する詳細" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために匿名データを収集します。以下は、共有されるすべてのデータの例です:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "匿名データは送信しない" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "匿名データの送信を許可する" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "マーケットプレース" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "パッケージへの変更を有効にするためにCuraを再起動する必要があります。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "%1を終了する" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "インストール" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "インストールした" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "プレミアム" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "ウェブマーケットプレイスに移動" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "材料を検索" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "互換性" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" msgstr "プリンター" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "ノズル設定" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "ビルドプレート" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "サポート" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "品質" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "技術データシート" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "安全データシート" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "印刷ガイドライン" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "ウェブサイト" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "インストールまたはアップデートにはログインが必要です" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "材料スプールの購入" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "アップデート" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "更新中" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "更新済み" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "戻る" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +msgctxt "@title:tab" +msgid "Plugins" +msgstr "プラグイン" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "マテリアル" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "インストールした" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "ノズルサイズ" +msgid "Will install upon restarting" +msgstr "再起動時にインストール" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "アップデートにはログインが必要です" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "ダウングレード" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "アンインストール" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "地域貢献" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "適合する材料直径" +msgid "Community Plugins" +msgstr "コミュニティプラグイン" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "ノズルオフセットX" +msgid "Generic Materials" +msgstr "汎用材料" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "パッケージ取得中..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "ノズルオフセットY" +msgid "Website" +msgstr "ウェブサイト" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷却ファンの番号" +msgid "Email" +msgstr "電子メール" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "エクストルーダーがG-Codeを開始する" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "検証済みのUltimaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "エクストルーダーがG-Codeを終了する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "プリンターの設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X(幅)" +msgid "Version" +msgstr "バージョン" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (奥行き)" +msgid "Last updated" +msgstr "最終更新日" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高さ)" +msgid "Brand" +msgstr "ブランド" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "ビルドプレート形" +msgid "Downloads" +msgstr "ダウンロード" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "インストールされたプラグイン" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "プラグインはインストールされていません。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "インストールされた材料" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "材料はインストールされていません。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "バンドルされたプラグイン" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "バンドルされた材料" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Curaパッケージデータベースに接続できません。接続を確認してください。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "センターを出します" +msgid "You need to accept the license to install the package" +msgstr "パッケージをインストールするにはライセンスに同意する必要があります" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "アカウントにおける変更" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "無視" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "次" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "ヒーテッドドベッド" +msgid "The following packages will be added:" +msgstr "次のパッケージが追加されます:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "加熱式ビルドボリューム" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "次のパッケージは、Curaバージョンに互換性がないため、インストールできません:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "アンインストール確認" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "使用中の材料またはプロファイルをアンインストールしようとしています。確定すると以下の材料/プロファイルをデフォルトにリセットします。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "プロファイル" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "確認" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "G-codeフレーバー" +msgid "Color scheme" +msgstr "カラースキーム" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "プリントヘッド設定" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "フィラメントの色" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "ラインタイプ" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "スピード" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "レイヤーの厚さ" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "ライン幅" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "フロー" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X分" +msgid "Compatibility Mode" +msgstr "コンパティビリティモード" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y分" +msgid "Travels" +msgstr "移動" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "最大X" +msgid "Helpers" +msgstr "ヘルプ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "最大Y" +msgid "Shell" +msgstr "外郭" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "ガントリーの高さ" +msgid "Infill" +msgstr "インフィル" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "エクストルーダーの数" +msgid "Starts" +msgstr "開始" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "エクストルーダーのオフセットをGCodeに適用します" +msgid "Only Show Top Layers" +msgstr "トップのレイヤーを表示する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Codeの開始" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "トップの5レイヤーの詳細を表示する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-codeの終了" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "トップ/ボトム" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "インナーウォール" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "最小" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "最大" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "プリンター管理" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "ガラス" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "キューをリモートで管理するには、プリンターのファームウェアを更新してください。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "クラウドプリンターのウェブカムフィードをUltimaker Curaから見ることができません。「プリンター管理」をクリックして、Ultimaker Digital Factoryにアクセスし、このウェブカムを見ます。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "読み込み中..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "利用不可" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "到達不能" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "アイドル" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "準備中..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "プリント中" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "無題" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "匿名" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "構成の変更が必要です" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "詳細" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "利用できないプリンター" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "次の空き" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "順番を待つ" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "ブラウザで管理する" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "キューに印刷ジョブがありません。追加するには、スライスしてジョブを送信します。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "プリントジョブ" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "合計印刷時間" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "待ち時間" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "ネットワーク上のプリント" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "プリント" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "プリンターの選択" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "構成の変更" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "上書き" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "割り当てられたプリンター %1 には以下の構成変更が必要です:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "プリンター %1 が割り当てられましたが、ジョブには不明な材料構成があります。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "材料 %1 を %2 から %3 に変更します。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "%3 を 材料 %1 にロードします(これは上書きできません)。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "プリントコア %1 を %2 から %3 に変更します。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "ビルドプレートを %1 に変更します(これは上書きできません)。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "上書きは、既存のプリンタ構成で指定された設定を使用します。これにより、印刷が失敗する場合があります。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "アルミニウム" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "終了" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "中止しています..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "中止しました" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "失敗" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "一時停止しています..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "一時停止" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "再開しています..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "アクションが必要です" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "%1 を %2 に終了します" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "ネットワーク上で繋がったプリンターに接続" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "印刷ジョブをネットワークを介してプリンターに直接送信するには、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターを WIFI ネットワークに接続します。Cura をプリンタに接続していない場合でも、USB ドライブを使用して g コードファイルをプリンターに転送することはできます。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "以下のリストからプリンタを選択します:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "編集" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "取り除く" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "タイプ" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "ファームウェアバージョン" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "アドレス" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "このプリンターは、プリンターのグループをホストするために設定されていません。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "このアドレスのプリンターは応答していません。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "接続" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "無効なIPアドレス" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "有効なIPアドレスを入力してください。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "プリンターアドレス" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "ネットワーク内のプリンターのIPアドレスを入力してください。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "最上位に移動" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "削除" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "再開" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "一時停止しています..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "再開しています..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "一時停止" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "中止しています..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "中止" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "%1 をキューの最上位に移動しますか?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "印刷ジョブを最上位に移動する" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "%1 を削除しますか?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "印刷ジョブの削除" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "%1 を中止してよろしいですか?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "プリント中止" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2239,1594 +3178,631 @@ msgstr "" "- プリンタの電源が入っているか確認します。\n" "- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "プリンターをネットワークに接続してください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "ユーザーマニュアルをオンラインで見る" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Cura から印刷を監視するには、プリンタを接続してください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "メッシュタイプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "標準モデル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "サポートとしてプリント" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "オーバーラップの設定を変更" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "オーバーラップをサポートしない" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "インフィルメッシュのみ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "メッシュ切断" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "設定を選択する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "このモデルをカスタマイズする設定を選択する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "フィルター..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "すべて表示する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "プラグイン処理後" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "スクリプトの処理後" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "スクリプトを加える" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "処理したアクティブなスクリプトを変更します。" +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "このプリントの何かが問題です。クリックして調整のヒントをご覧ください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "次のスクリプトがアクティブです:" +msgid "3D View" +msgstr "3Dビュー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "カラースキーム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "フィラメントの色" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "ラインタイプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "スピード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "レイヤーの厚さ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "ライン幅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "フロー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "コンパティビリティモード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "移動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "ヘルプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "外郭" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "インフィル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "開始" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "トップのレイヤーを表示する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "トップの5レイヤーの詳細を表示する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "トップ/ボトム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "インナーウォール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "最小" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "最大" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "匿名データの収集に関する詳細" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために匿名データを収集します。以下は、共有されるすべてのデータの例です:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "匿名データは送信しない" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "匿名データの送信を許可する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "戻る" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "互換性" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "プリンター" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "ビルドプレート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "サポート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "品質" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "技術データシート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "安全データシート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "印刷ガイドライン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "ウェブサイト" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "インストールした" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "インストールまたはアップデートにはログインが必要です" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "材料スプールの購入" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "アップデート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "更新中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "更新済み" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "プレミアム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "ウェブマーケットプレイスに移動" +msgid "Front View" +msgstr "フロントビュー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "トップビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "左ビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "右ビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "材料を検索" +msgid "Object list" +msgstr "オブジェクトリスト" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "パッケージへの変更を有効にするためにCuraを再起動する必要があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1を終了する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "プラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "マテリアル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "インストールした" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "再起動時にインストール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "アップデートにはログインが必要です" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "ダウングレード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "アンインストール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "インストール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "アカウントにおける変更" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "無視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "次" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "次のパッケージが追加されます:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "次のパッケージは、Curaバージョンに互換性がないため、インストールできません:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "アンインストール確認" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "使用中の材料またはプロファイルをアンインストールしようとしています。確定すると以下の材料/プロファイルをデフォルトにリセットします。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "プロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "確認" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "パッケージをインストールするにはライセンスに同意する必要があります" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "ウェブサイト" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "電子メール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "バージョン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "最終更新日" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "ブランド" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "ダウンロード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "地域貢献" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "コミュニティプラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "汎用材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Curaパッケージデータベースに接続できません。接続を確認してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "インストールされたプラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "プラグインはインストールされていません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "インストールされた材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "材料はインストールされていません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "バンドルされたプラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "バンドルされた材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "パッケージ取得中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "検証済みのUltimaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "マーケットプレース" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "ビルドプレートのレベリング" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&ファイル" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "プリントの成功率を上げるために、ビルドプレートを今調整できます。’次のポジションに移動’をクリックすると。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&編集" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "すべてのポジションに。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&ビュー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "ビルドプレートのレベリングを開始する" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "次のポジションに移動" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "拡張子" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "このUltimaker Originalに施されたアップグレートを選択する" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "プレファレンス" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "ヒーティッドビルドプレート(オフィシャルキットまたはセルフビルド)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "ヘルプ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "ネットワーク上で繋がったプリンターに接続" +msgid "New project" +msgstr "新しいプロジェクト" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "印刷ジョブをネットワークを介してプリンターに直接送信するには、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターを WIFI ネットワークに接続します。Cura をプリンタに接続していない場合でも、USB ドライブを使用して g コードファイルをプリンターに転送することはできます。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "新しいプロジェクトを開始しますか?この作業では保存していない設定やビルドプレートをクリアします。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "以下のリストからプリンタを選択します:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "編集" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "取り除く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "タイプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "ファームウェアバージョン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "アドレス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "このプリンターは、プリンターのグループをホストするために設定されていません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "このアドレスのプリンターは応答していません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "接続" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "無効なIPアドレス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "有効なIPアドレスを入力してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "プリンターアドレス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "ネットワーク内のプリンターのIPアドレスを入力してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "構成の変更" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "上書き" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "割り当てられたプリンター %1 には以下の構成変更が必要です:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "プリンター %1 が割り当てられましたが、ジョブには不明な材料構成があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "材料 %1 を %2 から %3 に変更します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3 を 材料 %1 にロードします(これは上書きできません)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "プリントコア %1 を %2 から %3 に変更します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "ビルドプレートを %1 に変更します(これは上書きできません)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "上書きは、既存のプリンタ構成で指定された設定を使用します。これにより、印刷が失敗する場合があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "ガラス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "アルミニウム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "最上位に移動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "削除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "再開" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "一時停止しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "再開しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "一時停止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "中止しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "中止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "%1 をキューの最上位に移動しますか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "印刷ジョブを最上位に移動する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "%1 を削除しますか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "印刷ジョブの削除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "%1 を中止してよろしいですか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "プリント中止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "プリンター管理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "キューをリモートで管理するには、プリンターのファームウェアを更新してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "読み込み中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "利用不可" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "到達不能" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "アイドル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "準備中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "プリント中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "無題" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "構成の変更が必要です" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "詳細" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "利用できないプリンター" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "次の空き" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "中止しました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "終了" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "中止しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "一時停止しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "一時停止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "再開しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "アクションが必要です" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%1 を %2 に終了します" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "順番を待つ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "ブラウザで管理する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "キューに印刷ジョブがありません。追加するには、スライスしてジョブを送信します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "プリントジョブ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "合計印刷時間" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "待ち時間" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "ネットワーク上のプリント" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "プリント" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "プリンターの選択" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "サインイン" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Ultimakerのプラットフォームにサインイン" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- マーケットプレースから材料プロファイルとプラグインを追加\n" -"- 材料プロファイルとプラグインのバックアップと同期\n" -"- Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "無料のUltimakerアカウントを作成" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "確認しています..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "アカウント同期" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "問題が発生しました..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "保留中の更新をインストール" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "アカウントの更新を確認" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "最終更新:%1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimakerアカウント" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "サインアウト" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "時間予測がありません" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "コスト予測がありません" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "プレビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "時間予測" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "材料予測" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "スライス中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "スライスできません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "処理" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "スライス" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "スライス処理の開始" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "キャンセル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "オンラインでトラブルシューティングガイドを表示する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "留め金 フルスクリーン" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "全画面表示を終了する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&取り消す" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&やりなおす" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&やめる" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3Dビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "フロントビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "トップビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "底面図" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "左サイドビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "右サイドビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Curaを構成する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&プリンターを追加する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "プリンターを管理する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "フィラメントを管理する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "マーケットプレイスから材料を追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&現在の設定/無効にプロファイルをアップデートする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&変更を破棄する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&今の設定/無効からプロファイルを作成する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "プロファイルを管理する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "オンラインドキュメントを表示する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "報告&バグ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "新情報" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "アバウト..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "選択内容を削除" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "選択内容を中央に移動" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "選択内容を増倍" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "モデルを消去する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "プラットホームの中心にモデルを配置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&モデルグループ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "モデルを非グループ化" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "モ&デルの合体" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&モデルを増倍する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "すべてのモデル選択" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "ビルドプレート上のクリア" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "すべてのモデルを読み込む" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "すべてのモデルをすべてのビルドプレートに配置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "すべてのモデルをアレンジする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "選択をアレンジする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "すべてのモデルのポジションをリセットする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "すべてのモデル&変更点をリセットする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&ファイルを開く(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&新しいプロジェクト..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "コンフィグレーションのフォルダーを表示する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "視野のセッティングを構成する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&マーケットプレース" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "このパッケージは再起動後にインストールされます。" +msgid "Time estimation" +msgstr "時間予測" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "一般" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "材料予測" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "設定" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "プリンター" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "プロファイル" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "時間予測がありません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1を閉じています" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "コスト予測がありません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "%1を終了しますか?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "プレビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "ファイルを開く" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "プリンターの追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "パッケージをインストール" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "ネットワークプリンターの追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "ファイルを開く(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "非ネットワークプリンターの追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "選択したファイルの中に複数のG-codeが存在します。1つのG-codeのみ一度に開けます。G-codeファイルを開く場合は、1点のみ選んでください。" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "クラウドプリンターを追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "プリンターを追加する" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "クラウドの応答を待機しています" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "アカウントにプリンターが見つかりませんか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "アカウントの以下のプリンターがCuraに追加されました:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "プリンタを手動で追加する" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "IP アドレスでプリンターを追加" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "プリンターのIPアドレスを入力します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "追加" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "デバイスに接続できません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Ultimakerプリンターに接続できませんか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "このアドレスのプリンターは応答していません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "このプリンタは不明なプリンタであるか、またはグループのホストではないため、追加できません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "戻る" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "接続" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "ユーザー用使用許諾契約" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "拒否して閉じる" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Ultimaker Cura にようこそ" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"以下の手順で\n" +"Ultimaker Cura を設定してください。数秒で完了します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "はじめに" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Ultimakerのプラットフォームにサインイン" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "マーケットプレイスから材料設定とプラグインを追加" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "材料設定とプラグインのバックアップと同期" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "スキップ" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "無料のUltimakerアカウントを作成" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "製造元" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "プロファイル作成者" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "プリンター名" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "プリンターに名前を付けてください" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "ネットワークにプリンターはありません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "IP でプリンターを追加" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "クラウドプリンターを追加" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "トラブルシューティング" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Ultimaker Cura の改善にご協力ください" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために以下の匿名データを収集します:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "プリンターのタイプ" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "材料の利用状況" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "スライスの数" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "プリント設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Ultimaker Cura が収集したデータには個人データは含まれません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "詳細" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "新情報" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "空にする" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "リリースノート" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "%1について" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "バージョン: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "熱溶解積層型3Dプリンティングのエンドtoエンドソリューション。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "CuraはUltimakerB.Vのコミュニティの協力によって開発され、Curaはオープンソースで使えることを誇りに思います:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "グラフィックユーザーインターフェイス" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "アプリケーションフレームワーク" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "G-codeの生成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "インタープロセスコミュニケーションライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "プログラミング用語" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUIフレームワーク" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "GUIフレームワークバインディング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C/C++ バインディングライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "データインターフェイスフォーマット" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "サイエンスコンピューティングを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "ファターマスを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "STLファイルを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "平面対象物を操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "参画メッシュを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "3MFファイルを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "ファイルメタデータとストリーミングのためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "シリアルコミュニケーションライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "ZeroConfディスカバリーライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "ポリゴンクリッピングライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Python用の静的型チェッカー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "SSLの信頼性を検証するためのルート証明書" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Pythonエラー追跡ライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Prusa Research開発のポリゴンパッキングライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "libnest2dのPythonバインディング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "システムキーリングアクセスを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Microsoft Windows用のPython拡張機能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "フォント" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVGアイコン" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Linux 分散アプリケーションの開発" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "プロジェクトを開く" +msgid "Open file(s)" +msgstr "ファイルを開く" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "これはCuraのプロジェクトファイルです。プロジェクトとしてあけますか、それともモデルのみ取り込みますか?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "選択したファイルの中に複数のプロジェクトが存在します。1ファイルのみ一度に開けます。ファイルからモデルを先に取り込むことをお勧めします。続けますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "選択を記憶させる" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "プロジェクトを開く" +msgid "Import all as models" +msgstr "すべてをモデルとして取り入れる" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "プロジェクトを保存" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "エクストルーダー%1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1とフィラメント" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "保存中のプロジェクトサマリーを非表示にする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "モデルを取り込む" +msgid "Save" +msgstr "保存" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "変更を取り消すか保存するか" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3837,1205 +3813,142 @@ msgstr "" "これらの変更された設定をプロファイルの切り替え後も維持しますか?\n" "変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "プロファイル設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "現在の変更" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "毎回確認する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "取り消し、再度確認しない" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "キープし、再度確認しない" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "変更を破棄" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "変更を維持" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "プロジェクトを開く" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "選択したファイルの中に複数のプロジェクトが存在します。1ファイルのみ一度に開けます。ファイルからモデルを先に取り込むことをお勧めします。続けますか?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "これはCuraのプロジェクトファイルです。プロジェクトとしてあけますか、それともモデルのみ取り込みますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "選択を記憶させる" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "すべてをモデルとして取り入れる" +msgid "Open as project" +msgstr "プロジェクトを開く" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "プロジェクトを保存" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "エクストルーダー%1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1とフィラメント" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "保存中のプロジェクトサマリーを非表示にする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "保存" +msgid "Import models" +msgstr "モデルを取り込む" -# can’t enter japanese -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "選択したモデルを%1で印刷する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "無題" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&ファイル" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&編集" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&ビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "拡張子" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "プレファレンス" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "ヘルプ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "新しいプロジェクト" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "新しいプロジェクトを開始しますか?この作業では保存していない設定やビルドプレートをクリアします。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "マーケットプレース" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "構成" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "%1 が認識されていないためこの構成は利用できません。%2 から適切な材料プロファイルをダウンロードしてください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "マーケットプレース" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "プリンタから利用可能な構成を読み込んでいます..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "プリンタが接続されていないため、構成は利用できません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "構成の選択" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "構成" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "カスタム" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "プリンター" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "有効" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "フィラメント" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "この材料の組み合わせの接着に接着材を使用する。" - -# can’t enter japanese texts -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "選択したモデルで印刷:" - -# can’t eneter japanese texts -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "選択した複数のモデル" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "コピーの数" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "プロジェクトを保存... (&S)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "エクスポート... (&E)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "選択エクスポート..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "お気に入り" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "汎用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "ファイルを開く..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "ネットワーク対応プリンター" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "ローカルプリンター" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "最近開いたファイルを開く" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "プロジェクトを保存..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&プリンター" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&フィラメント" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "アクティブエクストルーダーとしてセットする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "エクストルーダーを有効にする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "エクストルーダーを無効にする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "ビジブル設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "すべてのカテゴリを折りたたむ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "視野のセッティングを管理する..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "カメラ位置 (&C)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "カメラビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "パースペクティブ表示" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "平行投影表示" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "ビルドプレート (&B)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "プリンターにつながっていません" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "今プリンタはコマンドを処理できません" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "メンテナンス。プリンターをチェックしてください" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "プリンターへの接続が切断されました" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "プリント中..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "一時停止しました" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "準備中..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "造形物を取り出してください" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "プリント中止" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "本当にプリントを中止してもいいですか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "サポートとしてプリントされます。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "このモデルに重なる他のモデルは修正されます。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "このモデルとのインフィル交差は修正されます。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "このモデルとの重なりはサポートされません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "%1個の設定を上書きします。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "オブジェクトリスト" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "インターフェイス" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "通貨:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "テーマ:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "それらの変更を有効にするためにはアプリケーションを再起動しなけらばなりません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "セッティングを変更すると自動にスライスします。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "自動的にスライスする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "ビューポイント機能" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "赤でサポートができないエリアをハイライトしてください。サポートがない場合、正確にプリントができない場合があります。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "ディスプレイオーバーハング" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "モデルの欠けている部分または不要な表面部分を、警告マークを使用してハイライトします。ツールパスは意図したジオメトリの欠けている部分になることが多くあります。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "モデルエラーを表示" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "モデルの選択時にモデルがカメラの中心に見えるようにカメラを移動する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "アイテムを選択するとカメラが中心にきます" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Curaのデフォルトのズーム機能は変更できるべきか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "カメラのズーム方向を反転する。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "ズームはマウスの方向に動くべきか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "マウスに対するズームは、正射投影ではサポートされていません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "マウスの方向にズームする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "交差を避けるためにプラットホーム上のモデルを移動するべきですか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "モデルの距離が離れているように確認する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "プラットホーム上のモデルはブルドプレートに触れるように下げるべきか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "自動的にモデルをビルドプレートに落とす" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "G-codeリーダーに注意メッセージを表示します。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "G-codeリーダーに注意メッセージ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "レイヤーはコンパティビリティモードに強制されるべきか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Curaを終了した場所で開くようにしますか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "開始時にウィンドウの位置を復元" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "カメラレンダリング:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "パースペクティブ表示" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "平行投影表示" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "ファイルを開くまた保存" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Curaの単一インスタンスを使用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "モデルがビルドボリュームに対して大きすぎる場合はスケールされるべきか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "大きなモデルをスケールする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "ユニット値がミリメートルではなくメートルの場合、モデルが極端に小さく現れる場合があります。モデルはスケールアップされるべきですか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "極端に小さなモデルをスケールアップする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "モデルはロード後に選択しますか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "ロード後にモデルを選択" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "プリンター名の敬称はプリントジョブの名前に自動的に加えられるべきか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "プリンターの敬称をジョブネームに加える" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "プロジェクトファイルを保存時にサマリーを表示するべきか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "プロジェクトを保存時にダイアログサマリーを表示する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "プロジェクトファイルを開く際のデフォルト機能" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "プロジェクトファイル開く際のデフォルト機能: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "毎回確認する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "常にプロジェクトとして開く" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "常にモデルを取り込む" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "プロファイル内を変更し異なるプロファイルにしました、どこの変更点を保持、破棄したいのダイアログが表示されます、また何度もダイアログが表示されないようにデフォルト機能を選ぶことができます。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "プロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "プロファイル交換時に設定値を変更するためのデフォルト処理: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "常に変更した設定を廃棄する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "常に変更した設定を新しいプロファイルに送信する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "プライバシー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Curaのプログラム開始時にアップデートがあるかチェックしますか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "スタート時にアップデートあるかどうかのチェック" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "プリンターの不明なデータをUltimakerにおくりますか?メモ、モデル、IPアドレス、個人的な情報は送信されたり保存されたりはしません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(不特定な) プリントインフォメーションを送信" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "詳細" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "アクティベート" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "名を変える" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "作成する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "複製" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "取り込む" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "書き出す" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "プリンターと同期する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "プリンター" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "モデルを取り除きました" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1を取り外しますか?この作業はやり直しが効きません!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "フィラメントを取り込む" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "%1フィラメントを取り込むことができない: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "フィラメント%1の取り込みに成功しました" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "フィラメントを書き出す" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "フィラメントの書き出しに失敗しました %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "フィラメントの%1への書き出しが完了ました" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "すべての材料を書き出す" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "インフォメーション" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "直径変更の確認" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "新しいフィラメントの直径は %1 mm に設定されています。これは現在のエクストルーダーに適応していません。続行しますか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "ディスプレイ名" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "フィラメントタイプ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "色" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "プロパティ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "密度" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "直径" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "フィラメントコスト" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "フィラメントの重さ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "フィラメントの長さ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "毎メーターコスト" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "このフィラメントは %1にリンクすプロパティーを共有する。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "フィラメントをリンクを外す" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "記述" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "接着のインフォメーション" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "プリント設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "作成する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "複製" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "プロファイルを作る" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "このプロファイルの名前を指定してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "プロファイルを複製する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "プロファイル名を変える" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "プロファイルを取り込む" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "プロファイルを書き出す" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "プリンター:%1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "プロファイルを現在のセッティング" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "今の変更を破棄する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "このプロファイルはプリンターによりデフォルトを使用、従いこのプロファイルはセッティング/書き換えが以下のリストにありません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "設定は選択したプロファイルにマッチしています。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "グローバル設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "計算された" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "プロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "現在" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "ユニット" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "視野設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "全てを調べる" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "エクストルーダー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "ホットエンドの目標温度。ホットエンドはこの温度に向けて上がったり下がったりします。これが0の場合、ホットエンドの加熱はオフになっています。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "このホットエンドの現在の温度です。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "ホットエンドをプリヒートする温度です。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "キャンセル" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "プレヒート" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "プリント開始前にホットエンドを加熱します。加熱中もプリントの調整を行えます、またホットエンドが加熱するまでプリント開始を待つ必要もありません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "エクストルーダーのマテリアルの色。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "エクストルーダー入ったフィラメント。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "ノズルが入ったエクストルーダー。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "ビルドプレート" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "ヒーティッドベッドの目標温度。ベッドはこの温度に向けて上がったり下がったりします。これが0の場合、ベッドの加熱はオフになっています。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "現在のヒーティッドベッドの温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "ベッドのプリヒート温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "プリント開始前にベッドを加熱します。加熱中もプリントの調整を行えます、またべットが加熱するまでプリント開始を待つ必要もありません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "プリンターコントロール" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "ジョグの位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "ジョグの距離" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-codeの送信" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "カスタムG-codeコマンドを接続されているプリンターに送信します。「Enter」を押してコマンドを送信します。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "このプリンターはつながっていません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "クラウドプリンターがオフラインです。プリンターの電源が入っている状態で、インターネットに接続されているかどうかを確認してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "このプリンターはお使いのアカウントにリンクされていません。Ultimaker Digital Factoryにアクセスして接続を確立してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "クラウド接続は現在利用できません。サインインしてクラウドプリンターに接続してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "クラウド接続は現在利用できません。インターネット接続を確認してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "プリンターの追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "プリンター管理" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "キャンセルしたプリンター" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "プリンターのプリセット" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "プリントをアクティベートする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "ジョブネーム" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "プリント時間" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "残り時間" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "クラウドプリンターがオフラインです。プリンターの電源が入っている状態で、インターネットに接続されているかどうかを確認してください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "このプリンターはお使いのアカウントにリンクされていません。Ultimaker Digital Factoryにアクセスして接続を確立してください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "クラウド接続は現在利用できません。サインインしてクラウドプリンターに接続してください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "クラウド接続は現在利用できません。インターネット接続を確認してください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "プリンターの追加" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "プリンター管理" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "キャンセルしたプリンター" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "プリンターのプリセット" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "プリント設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "印刷設定は無効にされました。G-code ファイルは変更できません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "プロファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5045,118 +3958,1679 @@ msgstr "" "いくらかの設定プロファイルにある値とことなる場合無効にします。\n" "プロファイルマネージャーをクリックして開いてください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "カスタムプロファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "今の変更を破棄する" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "推奨" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "カスタム" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "オン" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "オフ" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "実験" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "エクストルーダー%2の設定には%1プロファイルがありません。代わりにデフォルトの目的が使用されます" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "印刷設定は無効にされました。G-code ファイルは変更できません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "推奨" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "カスタム" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "オン" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "オフ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "実験" +msgid "Profiles" +msgstr "プロファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "密着性" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "ブリムまたはラフトのプリントの有効化。それぞれ、プリントの周り、また造形物の下に底面を加え切り取りやすくします。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "インフィル半減" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "グラデュアルインフィルはトップに向かうに従ってインフィルの量を増やします。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "プロファイルの設定がいくつか変更されました。変更を有効にするにはカスタムモードに移動してください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "サポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n" -"表示されるようにクリックしてください。" +msgid "Gradual infill" +msgstr "インフィル半減" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "グラデュアルインフィルはトップに向かうに従ってインフィルの量を増やします。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "密着性" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "ブリムまたはラフトのプリントの有効化。それぞれ、プリントの周り、また造形物の下に底面を加え切り取りやすくします。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "プロジェクトを保存..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "ネットワーク対応プリンター" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "ローカルプリンター" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "お気に入り" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "汎用" + +# can’t enter japanese texts +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "選択したモデルで印刷:" + +# can’t eneter japanese texts +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "選択した複数のモデル" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "コピーの数" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "プロジェクトを保存... (&S)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "エクスポート... (&E)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "選択エクスポート..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "構成" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "カスタム" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "プリンター" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "有効" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "フィラメント" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "この材料の組み合わせの接着に接着材を使用する。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "このエクストルーダーの構成が許可されておらず、スライスを妨げています。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "このエクストルーダーの構成に一致するプロファイルがありません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "構成の選択" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "構成" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "プリンタから利用可能な構成を読み込んでいます..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "プリンタが接続されていないため、構成は利用できません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "%1 が認識されていないためこの構成は利用できません。%2 から適切な材料プロファイルをダウンロードしてください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "マーケットプレース" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "ファイルを開く..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&プリンター" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&フィラメント" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "アクティブエクストルーダーとしてセットする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "エクストルーダーを有効にする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "エクストルーダーを無効にする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "最近開いたファイルを開く" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "ビジブル設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "すべてのカテゴリを折りたたむ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "視野のセッティングを管理する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "カメラ位置 (&C)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "カメラビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "パースペクティブ表示" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "平行投影表示" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "ビルドプレート (&B)" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "タイプ表示" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "サポートとしてプリントされます。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "このモデルに重なる他のモデルは修正されます。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "このモデルとのインフィル交差は修正されます。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "このモデルとの重なりはサポートされません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "%1個の設定を上書きします。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "プロファイル" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "アクティベート" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "作成する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "複製" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "名を変える" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "取り込む" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "書き出す" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "プロファイルを作る" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "このプロファイルの名前を指定してください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "プロファイルを複製する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "モデルを取り除きました" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1を取り外しますか?この作業はやり直しが効きません!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "プロファイル名を変える" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "プロファイルを取り込む" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "プロファイルを書き出す" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "プリンター:%1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "プロファイルを現在のセッティング" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "このプロファイルはプリンターによりデフォルトを使用、従いこのプロファイルはセッティング/書き換えが以下のリストにありません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "設定は選択したプロファイルにマッチしています。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "グローバル設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "一般" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "インターフェイス" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "通貨:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "テーマ:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "それらの変更を有効にするためにはアプリケーションを再起動しなけらばなりません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "セッティングを変更すると自動にスライスします。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "自動的にスライスする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "ビューポイント機能" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "赤でサポートができないエリアをハイライトしてください。サポートがない場合、正確にプリントができない場合があります。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "ディスプレイオーバーハング" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "モデルの欠けている部分または不要な表面部分を、警告マークを使用してハイライトします。ツールパスは意図したジオメトリの欠けている部分になることが多くあります。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "モデルエラーを表示" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "モデルの選択時にモデルがカメラの中心に見えるようにカメラを移動する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "アイテムを選択するとカメラが中心にきます" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Curaのデフォルトのズーム機能は変更できるべきか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "カメラのズーム方向を反転する。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "ズームはマウスの方向に動くべきか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "マウスに対するズームは、正射投影ではサポートされていません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "マウスの方向にズームする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "交差を避けるためにプラットホーム上のモデルを移動するべきですか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "モデルの距離が離れているように確認する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "プラットホーム上のモデルはブルドプレートに触れるように下げるべきか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "自動的にモデルをビルドプレートに落とす" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "G-codeリーダーに注意メッセージを表示します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "G-codeリーダーに注意メッセージ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "レイヤーはコンパティビリティモードに強制されるべきか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Curaを終了した場所で開くようにしますか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "開始時にウィンドウの位置を復元" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "カメラレンダリング:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "パースペクティブ表示" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "平行投影表示" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "ファイルを開くまた保存" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Curaの単一インスタンスを使用" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Curaの単一インスタンスに新しいモデルをロードする前に、ビルドプレートをクリアする必要はありますか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "モデルを単一のインスタンスにロードする前にビルドプレートをクリア" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "モデルがビルドボリュームに対して大きすぎる場合はスケールされるべきか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "大きなモデルをスケールする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "ユニット値がミリメートルではなくメートルの場合、モデルが極端に小さく現れる場合があります。モデルはスケールアップされるべきですか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "極端に小さなモデルをスケールアップする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "モデルはロード後に選択しますか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "ロード後にモデルを選択" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "プリンター名の敬称はプリントジョブの名前に自動的に加えられるべきか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "プリンターの敬称をジョブネームに加える" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "プロジェクトファイルを保存時にサマリーを表示するべきか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "プロジェクトを保存時にダイアログサマリーを表示する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "プロジェクトファイルを開く際のデフォルト機能" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "プロジェクトファイル開く際のデフォルト機能: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "毎回確認する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "常にプロジェクトとして開く" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "常にモデルを取り込む" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "プロファイル内を変更し異なるプロファイルにしました、どこの変更点を保持、破棄したいのダイアログが表示されます、また何度もダイアログが表示されないようにデフォルト機能を選ぶことができます。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "プロファイル交換時に設定値を変更するためのデフォルト処理: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "常に変更した設定を廃棄する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "常に変更した設定を新しいプロファイルに送信する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "プライバシー" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "プリンターの不明なデータをUltimakerにおくりますか?メモ、モデル、IPアドレス、個人的な情報は送信されたり保存されたりはしません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(不特定な) プリントインフォメーションを送信" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "詳細" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "アップデート" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Curaのプログラム開始時にアップデートがあるかチェックしますか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "スタート時にアップデートあるかどうかのチェック" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "アップデートを確認する際に、安定版リリースのみを確認します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "安定版リリースのみ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "アップデートを確認する際に、安定版とベータ版の両方のリリースを確認します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "安定版およびベータ版リリース" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Curaの起動時に毎回、新しいプラグインの自動チェックを行う場合は、この機能を無効にしないことを強くお勧めします!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "プラグインのアップデートを通知" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "インフォメーション" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "直径変更の確認" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "新しいフィラメントの直径は %1 mm に設定されています。これは現在のエクストルーダーに適応していません。続行しますか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "ディスプレイ名" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "フィラメントタイプ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "色" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "プロパティ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "密度" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "直径" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "フィラメントコスト" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "フィラメントの重さ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "フィラメントの長さ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "毎メーターコスト" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "このフィラメントは %1にリンクすプロパティーを共有する。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "フィラメントをリンクを外す" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "記述" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "接着のインフォメーション" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "作成する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "複製" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "プリンターと同期する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "プリンター" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "フィラメントを取り込む" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "%1フィラメントを取り込むことができない: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "フィラメント%1の取り込みに成功しました" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "フィラメントを書き出す" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "フィラメントの書き出しに失敗しました %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "フィラメントの%1への書き出しが完了ました" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "材料をプリンターと同期" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "材料をプリンターと同期" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "簡単な数ステップの手順に従うことで、すべての材料プロファイルをプリンターと同期できるようになります。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "開始" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "材料プロファイルを同期する必要があるのはなぜですか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "サインイン" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "材料プロファイルをDigital Factoryに接続されているすべてのプリンターと自動的に同期するには、Curaにサインインしている必要があります。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "材料をUSBで同期" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "以下のプリンターは新しい材料プロファイルを受け取ります:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "材料をプリンターに送信する際に問題が発生しました。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "材料プロファイルが以下のプリンターと正常に同期されました:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "トラブルシューティング" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "プリンターがありませんか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "すべてのプリンターの電源が入っていて、Digital Factoryに接続されていることを確認してください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "リストを更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "やり直してください" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "完了" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "同期" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "スライス" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "プリンターが見つかりません" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "互換性のあるプリンターがDigital Factoryに接続されていないようです。プリンターが接続されていて、最新のファームウェアが実行されていることを確認してください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Digital Factoryにプリンターを接続する方法について詳しく見る" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "材料プロファイルをUSB経由で同期する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "以下の手順に従って、新しい材料プロファイルをプリンターに読み込みます。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "材料アーカイブのエクスポートボタンをクリックします。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr ".ummファイルをUSBメモリーに保存します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "USBメモリーをプリンターに差し込み、新しい材料プロファイルを読み込む手順を開始します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "新しい材料プロファイルをプリンターに読み込む方法" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "材料アーカイブのエクスポート" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "すべての材料を書き出す" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "視野設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "全てを調べる" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "プリンター" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "計算された" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "プロファイル" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "現在" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "ユニット" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "プリンターにつながっていません" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "今プリンタはコマンドを処理できません" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "メンテナンス。プリンターをチェックしてください" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "プリンターへの接続が切断されました" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "プリント中..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "一時停止しました" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "準備中..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "造形物を取り出してください" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "プリント中止" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "本当にプリントを中止してもいいですか?" + +# can’t enter japanese +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "選択したモデルを%1で印刷する" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "マイプリンター" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Ultimaker Digital Factoryでプリンターをモニタリングします。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Digital Libraryでプリントプロジェクトを作成します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "プリントジョブ" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "プリントジョブをモニタリングしてプリント履歴から再プリントします。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Ultimaker Curaをプラグインと材料プロファイルで拡張します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Ultimaker eラーニングで3Dプリンティングのエキスパートになります。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimakerのサポート" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Ultimaker Curaの使用を開始する方法を確認します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "質問をする" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Ultimaker Communityをご参照ください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "バグを報告" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "問題が発生していることを開発者にお知らせください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Ultimakerウェブサイトをご確認ください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "プリンターコントロール" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "ジョグの位置" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "ジョグの距離" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-codeの送信" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "カスタムG-codeコマンドを接続されているプリンターに送信します。「Enter」を押してコマンドを送信します。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "エクストルーダー" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "ホットエンドの目標温度。ホットエンドはこの温度に向けて上がったり下がったりします。これが0の場合、ホットエンドの加熱はオフになっています。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "このホットエンドの現在の温度です。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "ホットエンドをプリヒートする温度です。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "キャンセル" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "プレヒート" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "プリント開始前にホットエンドを加熱します。加熱中もプリントの調整を行えます、またホットエンドが加熱するまでプリント開始を待つ必要もありません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "エクストルーダーのマテリアルの色。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "エクストルーダー入ったフィラメント。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "ノズルが入ったエクストルーダー。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "このプリンターはつながっていません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "ビルドプレート" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "ヒーティッドベッドの目標温度。ベッドはこの温度に向けて上がったり下がったりします。これが0の場合、ベッドの加熱はオフになっています。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "現在のヒーティッドベッドの温度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "ベッドのプリヒート温度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "プリント開始前にベッドを加熱します。加熱中もプリントの調整を行えます、またべットが加熱するまでプリント開始を待つ必要もありません。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "サインイン" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- マーケットプレースから材料プロファイルとプラグインを追加\n" +"- 材料プロファイルとプラグインのバックアップと同期\n" +"- Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "無料のUltimakerアカウントを作成" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "最終更新:%1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimakerアカウント" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "サインアウト" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "確認しています..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "アカウント同期" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "問題が発生しました..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "保留中の更新をインストール" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "アカウントの更新を確認" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "無題" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "選択するアイテムがありません" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "オンラインでトラブルシューティングガイドを表示する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "留め金 フルスクリーン" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "全画面表示を終了する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&取り消す" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&やりなおす" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&やめる" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3Dビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "フロントビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "トップビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "底面図" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "左サイドビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "右サイドビュー" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Curaを構成する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&プリンターを追加する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "プリンターを管理する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "フィラメントを管理する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "マーケットプレイスから材料を追加" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&現在の設定/無効にプロファイルをアップデートする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&変更を破棄する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&今の設定/無効からプロファイルを作成する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "プロファイルを管理する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "オンラインドキュメントを表示する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "報告&バグ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "新情報" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "アバウト..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "選択内容を削除" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "選択内容を中央に移動" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "選択内容を増倍" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "モデルを消去する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "プラットホームの中心にモデルを配置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&モデルグループ" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "モデルを非グループ化" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "モ&デルの合体" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&モデルを増倍する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "すべてのモデル選択" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "ビルドプレート上のクリア" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "すべてのモデルを読み込む" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "すべてのモデルをすべてのビルドプレートに配置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "すべてのモデルをアレンジする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "選択をアレンジする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "すべてのモデルのポジションをリセットする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "すべてのモデル&変更点をリセットする" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&ファイルを開く(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&新しいプロジェクト..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "コンフィグレーションのフォルダーを表示する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "視野のセッティングを構成する..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&マーケットプレース" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "影響を与えるすべての設定がオーバーライドされるため、この設定は使用されません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "影響" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "次によって影響を受ける" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "この設定はエクストルーダー固有の競合する値から取得します:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5166,7 +5640,7 @@ msgstr "" "この設定にプロファイルと異なった値があります。\n" "プロファイルの値を戻すためにクリックしてください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5176,509 +5650,91 @@ msgstr "" "このセッティングは通常計算されます、今は絶対値に固定されています。\n" "計算された値に変更するためにクリックを押してください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "検索設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "すべてのエクストルーダーの値をコピーする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "すべてのエクストルーダーに対して変更された値をコピーする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "この設定を非表示にする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "この設定を表示しない" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "常に見えるように設定する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3Dビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "フロントビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "トップビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "左ビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "右ビュー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "タイプ表示" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "クラウドプリンターを追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "クラウドの応答を待機しています" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "アカウントにプリンターが見つかりませんか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "アカウントの以下のプリンターがCuraに追加されました。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "プリンタを手動で追加する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "製造元" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "プロファイル作成者" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "プリンター名" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "プリンターに名前を付けてください" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "プリンターの追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "ネットワークプリンターの追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "非ネットワークプリンターの追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "ネットワークにプリンターはありません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "IP でプリンターを追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "クラウドプリンターを追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "トラブルシューティング" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "IP アドレスでプリンターを追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "プリンターのIPアドレスを入力します。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "デバイスに接続できません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimakerプリンターに接続できませんか?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "このアドレスのプリンターは応答していません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "このプリンタは不明なプリンタであるか、またはグループのホストではないため、追加できません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "戻る" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "接続" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "リリースノート" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "マーケットプレイスから材料設定とプラグインを追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "材料設定とプラグインのバックアップと同期" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "無料のUltimakerアカウントを作成" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "スキップ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ultimaker Cura の改善にご協力ください" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために以下の匿名データを収集します:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "プリンターのタイプ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "材料の利用状況" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "スライスの数" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "プリント設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura が収集したデータには個人データは含まれません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "詳細" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "空にする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "ユーザー用使用許諾契約" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "拒否して閉じる" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura にようこそ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" -"以下の手順で\n" -"Ultimaker Cura を設定してください。数秒で完了します。" +"いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n" +"表示されるようにクリックしてください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "はじめに" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "このパッケージは再起動後にインストールされます。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "%1を閉じています" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "%1を終了しますか?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "パッケージをインストール" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "ファイルを開く(s)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "選択したファイルの中に複数のG-codeが存在します。1つのG-codeのみ一度に開けます。G-codeファイルを開く場合は、1点のみ選んでください。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "プリンターを追加する" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "新情報" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "選択するアイテムがありません" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "モデルチェッカー" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MFリーダー" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MFリーダー" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMFファイルの読込みをサポートしています。" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMFリーダー" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "構成をバックアップしてリストアします。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura バックアップ" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Curaエンジンバックエンド" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Curaプロファイルを取り込むためのサポートを供給する。" - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Curaプロファイルリーダー" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Curaプロファイルを書き出すためのサポートを供給する。" - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Curaプロファイルライター" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "ファームウェアアップデートをチェックする。" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "ファームウェアアップデートチェッカー" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "ファームウェアアップデートのためのマシン操作を提供します。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "ファームウェアアップデーター" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "圧縮ファイルからG-codeを読み取ります。" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "圧縮G-codeリーダー" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "圧縮ファイルにG-codeを書き込みます。" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "圧縮G-codeライター" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-codeプロファイルリーダー" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-codeファイルの読み込み、表示を許可する。" - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-codeリーダー" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "ファイルにG-codeを書き込みます。" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-codeライター" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "画像リーダー" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "レガシーCuraプロファイルリーダー" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "プリンターの設定アクション" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Curaでモニターステージを提供します。" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "モニターステージ" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5689,85 +5745,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "各モデル設定ツール" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" +msgid "Provides support for importing Cura profiles." +msgstr "Curaプロファイルを取り込むためのサポートを供給する。" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "後処理" +msgid "Cura Profile Reader" +msgstr "Curaプロファイルリーダー" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Curaで準備ステージを提供します。" +msgid "Provides support for reading X3D files." +msgstr "X3Dファイルを読むこむためのサポートを供給する。" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "ステージの準備" +msgid "X3D Reader" +msgstr "X3Dリーダー" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Curaでプレビューステージを提供します。" +msgid "Backup and restore your configuration." +msgstr "構成をバックアップしてリストアします。" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "プレビューステージ" +msgid "Cura Backups" +msgstr "Cura バックアップ" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "監視ロガー" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "シミュレーションビューを提供します。" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "シミュレーションビュー" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "スライスインフォメーション" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "ノーマルなソリットメッシュビューを供給する。" - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "ソリッドビュー" +msgid "Machine Settings Action" +msgstr "プリンターの設定アクション" #: SupportEraser/plugin.json msgctxt "description" @@ -5779,35 +5795,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "サポート消去機能" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "新しいCuraパッケージを検索、管理、インストールします。" +msgid "Provides removable drive hotplugging and writing support." +msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "ツールボックス" +msgid "Removable Drive Output Device Plugin" +msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "モデルファイルを読み込むためのサポートを供給します。" +msgid "Provides a machine actions for updating firmware." +msgstr "ファームウェアアップデートのためのマシン操作を提供します。" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimeshリーダー" +msgid "Firmware Updater" +msgstr "ファームウェアアップデーター" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "UFP リーダー" +msgid "Legacy Cura Profile Reader" +msgstr "レガシーCuraプロファイルリーダー" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MFリーダー" #: UFPWriter/plugin.json msgctxt "description" @@ -5819,25 +5845,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "UFPライター" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimkerプリンターのアクション" +msgid "Sentry Logger" +msgstr "監視ロガー" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" +msgid "Provides support for importing profiles from g-code files." +msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimakerネットワーク接続" +msgid "G-code Profile Reader" +msgstr "G-codeプロファイルリーダー" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Curaでプレビューステージを提供します。" + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "プレビューステージ" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "透視ビューイング。" + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "透視ビュー" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Curaエンジンバックエンド" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMFファイルの読込みをサポートしています。" + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMFリーダー" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "圧縮ファイルからG-codeを読み取ります。" + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "圧縮G-codeリーダー" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "後処理" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Curaプロファイルを書き出すためのサポートを供給する。" + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Curaプロファイルライター" #: USBPrinting/plugin.json msgctxt "description" @@ -5849,25 +5945,135 @@ msgctxt "name" msgid "USB printing" msgstr "USBプリンティング" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" +msgid "Provides a prepare stage in Cura." +msgstr "Curaで準備ステージを提供します。" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1 から2.2にバージョンアップグレート" +msgid "Prepare Stage" +msgstr "ステージの準備" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" +msgid "Allows loading and displaying G-code files." +msgstr "G-codeファイルの読み込み、表示を許可する。" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2 から2.4にバージョンアップグレート" +msgid "G-code Reader" +msgstr "G-codeリーダー" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "画像リーダー" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ultimkerプリンターのアクション" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "圧縮ファイルにG-codeを書き込みます。" + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "圧縮G-codeライター" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "ファームウェアアップデートをチェックする。" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "ファームウェアアップデートチェッカー" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "スライスインフォメーション" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "フィラメントプロファイル" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "新しいCuraパッケージを検索、管理、インストールします。" + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "ツールボックス" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "ファイルにG-codeを書き込みます。" + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-codeライター" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "シミュレーションビューを提供します。" + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "シミュレーションビュー" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "バージョン4.5から4.6へのアップグレード" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5879,55 +6085,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "2.5から2.6にバージョンアップグレート" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6から2.7にバージョンアップグレート" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0から4.6.2へのバージョン更新" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7から3.0にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0から3.1にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2から3.3にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3から3.4にバージョンアップグレート" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "バージョン4.7から4.8へのアップグレード" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5939,35 +6115,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "3.4 から 3.5 にバージョンアップグレート" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5 から 4.0 にバージョンアップグレート" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1 から2.2にバージョンアップグレート" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0 から 4.1 にバージョンアップグレート" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2から3.3にバージョンアップグレート" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.0 から 4.1 にバージョンアップグレート" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "バージョン4.8から4.9へのアップグレード" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "構成をCura 4.6.2からCura 4.7に更新します。" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2から4.7へのバージョン更新" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -5989,66 +6175,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "4.3から4.4にバージョンアップグレート" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4から4.5にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "バージョン4.5から4.6へのアップグレード" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0から4.6.2へのバージョン更新" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "構成をCura 4.6.2からCura 4.7に更新します。" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2から4.7へのバージョン更新" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "バージョン4.7から4.8へのアップグレード" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "バージョン4.8から4.9へのアップグレード" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6059,35 +6185,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "バージョン4.9から4.10へのアップグレード" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3Dファイルを読むこむためのサポートを供給する。" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3Dリーダー" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7から3.0にバージョンアップグレート" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "フィラメントプロファイル" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6から2.7にバージョンアップグレート" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "透視ビューイング。" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "透視ビュー" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "バージョン4.11から4.12へのアップグレード" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3から3.4にバージョンアップグレート" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0から3.1にバージョンアップグレート" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4から4.5にバージョンアップグレート" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2 から2.4にバージョンアップグレート" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5 から 4.0 にバージョンアップグレート" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ultimakerネットワーク接続" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "モデルファイルを読み込むためのサポートを供給します。" + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimeshリーダー" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP リーダー" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "ノーマルなソリットメッシュビューを供給する。" + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "ソリッドビュー" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MFリーダー" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Curaでモニターステージを提供します。" + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "モニターステージ" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "モデルチェッカー" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Ultimaker のアカウントを使用して、どこからでも印刷ジョブを送信およびモニターします。" + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Ultimaker Digital Factoryに接続" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "クラウドプリンターのウェブカムフィードをUltimaker Curaから見ることができません。" + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。" + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "新しい利用可能な%sファームウェアのアップデートがあります" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index dc0d42f7d6..42c81946c1 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 14:59+0200\n" "Last-Translator: Bothof \n" "Language-Team: Japanese\n" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index d5cc2fdc2f..21d5de8580 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 15:00+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Japanese , Japanese \n" @@ -60,9 +60,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"最初に実行するG-codeコマンドは、\n" -"で区切ります。" +msgstr "最初に実行するG-codeコマンドは、\nで区切ります。" #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -74,9 +72,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"最後に実行するG-codeコマンドは、\n" -"で区切ります。" +msgstr "最後に実行するG-codeコマンドは、\nで区切ります。" #: fdmprinter.def.json msgctxt "material_guid label" @@ -164,6 +160,18 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "造形可能領域の幅(Y方向)。" +# msgstr "楕円形" +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "プリンターの高さ" + +# msgstr "プリンターの高さ" +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "造形可能領域の幅(Z方向)。" + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -206,18 +214,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "アルミニウム" -# msgstr "楕円形" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "プリンターの高さ" - -# msgstr "プリンターの高さ" -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "造形可能領域の幅(Z方向)。" - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -590,8 +586,8 @@ msgstr "Z方向のモーターの最大速度。" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "最大送り速度" +msgid "Maximum Speed E" +msgstr "最大速度E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -715,8 +711,8 @@ msgstr "ミリメートルあたりのステップ (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "1 ミリメートルの押出でステップモーターが行うステップの数を示します。" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1487,6 +1483,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "上面/底面の方向一貫性" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1561,6 +1567,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "ジグザグ" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "アイロン方向一貫性" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + # msgstr "ジグザグ" #: fdmprinter.def.json msgctxt "ironing_line_spacing label" @@ -1782,8 +1798,8 @@ msgstr "インフィルパターン" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "印刷用インフィル材料のパターン。代替層のラインとジグザグの面詰めスワップ方向、材料コストを削減します。グリッド、トライアングル、トライ六角、キュービック、オクテット、クォーターキュービック、クロスと同心円のパターンは、すべてのレイヤーを完全に印刷されます。ジャイロイド、キュービック、クォーターキュービック、オクテットのインフィルは、各レイヤーを変更して各方向の強度をより均等な分布にします。" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1853,6 +1869,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "ジャイロイド" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "ライトニング" + # msgstr "クロス3D" #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" @@ -2073,6 +2094,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "スキンエッジをサポートするインフィルレイヤーの数。" +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "ライトニングインフィルサポート角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "ライトニングインフィルオーバーハング角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "ライトニングインフィル刈り込み角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "ライトニングインフィル矯正角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3272,6 +3333,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "すべて" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "外側表面には適用しない" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5255,11 +5321,10 @@ msgctxt "mold_width label" msgid "Minimal Mold Width" msgstr "最小型幅" -# msgstr "最小のモールド幅" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "型用とモデルの外側の最短距離。" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "型の外側とモデルの外側との間の最小距離です。" #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5432,6 +5497,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "ジグザグ" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "上面方向一貫性" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + # msgstr "ジグザグ" #: fdmprinter.def.json msgctxt "roofing_angles label" @@ -6535,6 +6610,43 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "最初に実行するG-codeコマンドは、\\n で区切ります。" + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "最後に実行するG-codeコマンドは、\\n で区切ります。" + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "最大送り速度" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の(内部)ルーフのみを支えることで、インフィルを最低限にするよう試みます。そのため、インフィル率はモデル内で支える必要がある物の1つ下のレイヤーでのみ有効です。" + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "ツリーの外側末端の刈り込みに関して、ライトニングインフィルレイヤーとそのすぐ上にあるレイヤーとの間に存在することのできる差異です。厚さを考慮して角度で指定されます。" + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "ツリーのスムージングに関して、ライトニングインフィルレイヤーとそのすぐ上にあるレイヤーとの間に存在することのできる差異です。厚さを考慮して角度で指定されます。" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "印刷用インフィル材料のパターン。代替層のラインとジグザグの面詰めスワップ方向、材料コストを削減します。グリッド、トライアングル、トライ六角、キュービック、オクテット、クォーターキュービック、クロスと同心円のパターンは、すべてのレイヤーを完全に印刷されます。ジャイロイド、キュービック、クォーターキュービック、オクテットのインフィルは、各レイヤーを変更して各方向の強度をより均等な分布にします。" + +# msgstr "最小のモールド幅" +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "型用とモデルの外側の最短距離。" + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "1 ミリメートルの押出でステップモーターが行うステップの数を示します。" + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "ゼロ以外の場合、この距離より移動量が多い場合は、引き戻しを使用します。" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 0ae53eb3d4..47212666b9 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 15:01+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2022-01-10 11:57+0100\n" "Last-Translator: Lionbridge \n" "Language-Team: Korean , Jinbum Kim , Korean \n" "Language: ko_KR\n" @@ -15,182 +15,401 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "알 수 없는" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "아래 프린터는 그룹에 속해 있기 때문에 연결할 수 없습니다" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "백업" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "사용 가능한 네트워크 프린터" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "현재 버전보다 높은 Cura 백업을 복원하려고 시도했습니다." + +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "다음의 오류는 Cura 백업을 복원하려고 시도하는 동안 발생했습니다:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "프린트를 시작하기 전에 재료 프로파일을 프린터와 동기화하십시오." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "새로운 재료가 설치됨" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "재료를 프린터와 동기화" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "자세히 알아보기" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "재료 아카이브를 {}에 저장할 수 없음:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "재료 아카이브를 저장하는 데 실패함" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "알 수 없는 오류입니다." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "\"프린팅 순서\"설정 값으로 인해 갠트리가 프린팅 된 모델과 충돌하지 않도록 출력물 높이가 줄어 들었습니다." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "출력물 크기" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#, python-brace-format +msgctxt "@label {0} is the name of a printer that's about to be deleted." +msgid "Are you sure you wish to remove {0}? This cannot be undone!" +msgstr "정말로 {0}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다!" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 msgctxt "@menuitem" msgid "Not overridden" msgstr "재정의되지 않음" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 -#, python-brace-format -msgctxt "@label {0} is the name of a printer that's about to be deleted." -msgid "Are you sure you wish to remove {0}? This cannot be undone!" -msgstr "정말로 {0}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다." +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "알 수 없는" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "아래 프린터는 그룹에 속해 있기 때문에 연결할 수 없습니다" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "사용 가능한 네트워크 프린터" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "뛰어난 외관" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "시각적 프로파일은 높은 시각적 및 표면 품질의 의도를 지니고 시각적 프로토타입과 모델을 인쇄하기 위해 설계되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "엔지니어링 프로파일은 정확도를 개선하고 허용 오차를 좁히려는 의도로 기능 프로토타입 및 최종 사용 부품을 인쇄하도록 설계되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "초안" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "사용자 정의 소재" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "사용자 정의 프로파일" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "지원되는 모든 유형 ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "모든 파일 (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "뛰어난 외관" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "시각적 프로파일은 높은 시각적 및 표면 품질의 의도를 지니고 시각적 프로토타입과 모델을 인쇄하기 위해 설계되었습니다." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "엔지니어링 프로파일은 정확도를 개선하고 허용 오차를 좁히려는 의도로 기능 프로토타입 및 최종 사용 부품을 인쇄하도록 설계되었습니다." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "초안" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "사용자 정의 소재" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "사용자 정의" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "로그인 실패" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "객체의 새 위치 찾기" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "위치 찾기" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "위치를 찾을 수 없음" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "프린터와 동기화할 재료의 아카이브 저장에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "백업" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "프린터와 동기화할 재료의 아카이브 로드에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "Digital Factory의 응답이 손상된 것 같습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "현재 버전보다 높은 Cura 백업을 복원하려고 시도했습니다." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "Digital Factory의 응답에 중요한 정보가 누락되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "다음의 오류는 Cura 백업을 복원하려고 시도하는 동안 발생했습니다." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "일부 프린터와 재료를 동기화하기 위한 Digital Factory 연결에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Digital Factory 연결에 실패했습니다." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "기기로드 중 ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "환경 설정을 설정하는 중..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "활성 기기 초기화 중..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "패키지 관리자 초기화 중..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "출력 사이즈 초기화 중..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "장면 설정 중..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "인터페이스 로드 중 ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "엔진 초기화 중..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "\"프린팅 순서\"설정 값으로 인해 갠트리가 프린팅 된 모델과 충돌하지 않도록 출력물 높이가 줄어 들었습니다." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "출력물 크기" +msgid "Warning" +msgstr "경고" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "오류" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "건너뛰기" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "닫기" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "다음" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "종료" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "추가" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "취소" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "그룹 #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "외벽" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "내벽" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "스킨" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "내부채움" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "내부채움 서포트" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "지원하는 인터페이스" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "서포트" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "스커트" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "프라임 타워" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "움직임 경로" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "리트랙션" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "다른" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "릴리즈 노트를 열 수 없습니다." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "큐라를 시작할 수 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +424,32 @@ msgstr "" "                    

    문제를 해결하기 위해이 오류 보고서를 보내주십시오. \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "충돌 보고서를 Ultimaker에 보내기" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "충돌 리포트 보기" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "설정 폴더 보기" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "백업 및 리셋 설정" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "충돌 보고서" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,491 +460,1233 @@ msgstr "" "

    \"보고서 전송\" 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "시스템 정보" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "알 수 없음" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 버전" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 언어" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "OS 언어" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "플랫폼" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 버전" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 버전" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "아직 초기화되지 않음
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 버전: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 공급업체: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "오류 추적" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "로그" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "보고서 전송" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "기기로드 중 ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "환경 설정을 설정하는 중..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "활성 기기 초기화 중..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "패키지 관리자 초기화 중..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "출력 사이즈 초기화 중..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "장면 설정 중..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "인터페이스 로드 중 ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "엔진 초기화 중..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "경고" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "오류" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "객체를 증가시키고 배치" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "개체 배치 중" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "개체 배치 중" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "응답을 읽을 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "입력한 상태가 올바르지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "로그인을 시도할 때 예기치 못한 문제가 발생했습니다. 다시 시도하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "새 로그인 작업을 시작할 수 없습니다. 다른 로그인 작업이 진행 중인지 확인하십시오." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Ultimaker 계정 서버에 도달할 수 없음." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "로그인 실패" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "입력한 상태가 올바르지 않습니다." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "계정 서버 인증 시간이 초과되었습니다." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "로그인을 시도할 때 예기치 못한 문제가 발생했습니다. 다시 시도하십시오." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "응답을 읽을 수 없습니다." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "객체를 증가시키고 배치" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "개체 배치 중" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "개체 배치 중" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "지원되지 않음" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "노즐" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "설정이 업데이트되었습니다" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "익스트루더 비활성화됨" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "파일이 이미 있습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "파일 {0}이 이미 있습니다. 덮어 쓰시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "유효하지 않은 파일 URL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "프로파일을 {0}: {1}로 내보내는데 실패했습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "프로파일을 {0}로 내보내지 못했습니다. Writer 플러그인이 오류를 보고했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "프로파일을 {0} 에 내보냅니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "내보내기 완료" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}에서 프로파일을 가져오지 못했습니다 {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "프린터가 추가되기 전 {0}에서 프로파일을 가져올 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0}(으)로 가져올 사용자 정의 프로파일이 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "프로파일 {0}에는 정확하지 않은 데이터가 포함되어 있으므로, 불러올 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "프로파일 {0}에 알 수 없는 파일 유형이 있거나 손상되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "사용자 정의 프로파일" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "프로파일에 품질 타입이 누락되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "아직 활성화된 프린터가 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "프로파일을 추가할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "'{0}' 품질 타입은 현재 활성 기기 정의 '{1}'와(과) 호환되지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "경고: 프로파일은 '{0}' 품질 타입을 현재 구성에 이용할 수 없기 때문에 찾을 수 없습니다. 이 품질 타입을 사용할 수 있는 재료/노즐 조합으로 전환하십시오." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "지원되지 않음" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "노즐" +msgid "Per Model Settings" +msgstr "모델 별 설정" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "모델 별 설정 구성" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura 프로파일" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 파일" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "백업 복원 시도 중 오류가 있었습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "설정이 업데이트되었습니다" +msgid "Backups" +msgstr "백업" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "백업을 업로드하는 도중 오류가 있었습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "백업 생성 중..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "백업을 생성하는 도중 오류가 있었습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "백업 업로드 중..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "백업이 업로드를 완료했습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "백업이 최대 파일 크기를 초과했습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "백업 관리" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "기기 설정" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "서포트 차단기" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "서포트가 프린팅되지 않는 볼륨을 만듭니다." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "이동식 드라이브" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "이동식 드라이브에 저장" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "이동식 드라이브 {0}에 저장" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "쓸 수있는 파일 형식이 없습니다!" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "이동식 드라이브 {0}에 저장" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "익스트루더 비활성화됨" +msgid "Saving" +msgstr "저장" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0}: {1} 에 저장할 수 없습니다" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "{device} 장치에 쓸 때 파일 이름을 찾을 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "파일이 저장됨" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 msgctxt "@action:button" -msgid "Add" -msgstr "추가" +msgid "Eject" +msgstr "꺼내기" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "이동식 장치 {0} 꺼내기" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "하드웨어 안전하게 제거" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "펌웨어 업데이트" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 프로파일" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "추천" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "사용자 정의" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "프로젝트 파일 {0}에 알 수 없는 기기 유형 {1}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "프로젝트 파일 열기" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "프로젝트 파일 {0}에 갑자기 접근할 수 없습니다: {1}." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "프로젝트 파일 열 수 없음" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "프로젝트 파일 {0}이 손상됨: {1}." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." +msgstr "프로젝트 파일 {0}이(가) 이 버전의 Ultimaker Cura에서 확인할 수 없는 프로파일을 사용하였습니다." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF 파일" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "UFP 파일에 쓸 수 없음:" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "Ultimaker Format Package" +msgstr "Ultimaker 포맷 패키지" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-code 파일" + +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "미리 보기" + +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "엑스레이 뷰" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "레이어 처리 중" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "정보" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "예기치 않은 오류로 인해 슬라이싱에 실패했습니다. 이슈 트래커에 버그를 보고하는 것을 고려하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "슬라이싱 실패" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "버그 보고" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Ultimaker Cura의 이슈 트래커에 버그 보고." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "슬라이스 할 수 없습니다" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n" +"- 출력 사이즈 내에 맞춤화됨\n" +"- 활성화된 익스트루더로 할당됨\n" +"- 수정자 메쉬로 전체 설정되지 않음" + +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF 파일" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "압축된 G-code 파일" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "후 처리" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "G 코드 수정" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB 프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "USB를 통해 프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "USB를 통해 프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "USB를 통해 연결" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USB 인쇄가 진행 중입니다. Cura를 닫으면 인쇄도 중단됩니다. 계속하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "프린트가 아직 진행 중입니다. Cura는 이전 프린트가 완료될 때까지는 USB를 통해 다른 프린트를 시작할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "프린트 진행 중" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "준비" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G 코드 파싱" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-코드 세부 정보" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "파일을 보내기 전에 g-코드가 프린터 및 프린터 구성에 적합한 지 확인하십시오. g-코드가 정확하지 않을 수 있습니다." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G 파일" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG 이미지" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG 이미지" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG 이미지" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP 이미지" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF 이미지" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "레벨 빌드 플레이트" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "업그레이드 선택" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter는 텍스트 모드는 지원하지 않습니다." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "업데이트 정보에 액세스 할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 완료하지 않은 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "안정적인 신규 %s 펌웨어를 사용할 수 있습니다" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" -msgid "Finish" -msgstr "종료" +msgid "How to update" +msgstr "업데이트하는 방법" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "예시 데이터 파일을 읽을 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "변경 사항이 적용되기 전에 {}을(를) 멈추고 다시 시작해야 합니다." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "동기화 중..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Ultimaker 계정에서 변경 사항이 감지되었습니다" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "귀하의 계정으로 재료와 소프트웨어 패키지를 동기화하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 msgctxt "@action:button" -msgid "Cancel" -msgstr "취소" +msgid "Sync" +msgstr "동기화" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "계정에서 거절 및 제거" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{}개의 플러그인을 다운로드하지 못했습니다" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "거절" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "동의" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "플러그인 사용 계약" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter는 텍스트가 아닌 모드는 지원하지 않습니다." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "내보내기 전에 G-code를 준비하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "와이어 프린팅이 활성화되어 있을 때 Cura는 레이어를 정확하게 표시하지 않습니다." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "시뮬레이션 뷰" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "먼저 슬라이스해야 하기 때문에 아무것도 표시되지 않습니다." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "표시할 레이어 없음" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "다시 메시지 표시 안 함" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "레이어 뷰" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "네트워크를 통해 프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "네트워크를 통해 프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "네트워크를 통해 연결됨" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "내일" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "오늘" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "네트워크를 통해 연결" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "현재 작업이 전송될 때까지 기다려주십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "프린트 오류" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "출력 작업이 프린터에 성공적으로 보내졌습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "데이터 전송 됨" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Ultimaker Connect를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "프린터 업데이트" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "프린트 작업 대기열이 가득 찼습니다. 프린터가 새 작업을 수락할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "대기열 가득 참" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "인쇄 작업 전송" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "프린트 작업을 프린터로 업로드하고 있습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura가 {0} 그룹의 호스트 프린터에 설치되지 않은 재료 프로파일을 감지했습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "재료를 프린터로 전송 중" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "데이터를 프린터로 업로드할 수 없음." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "네트워크 오류" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "연결 시도 중인 {0}이(가) 그룹의 호스트가 아닙니다. 웹 페이지에서 그룹 호스트로 설정할 수 있습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "그룹 호스트 아님" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "그룹 설정" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"{printer_name} 프린터를 클라우드를 통해 연결할 수 있습니다.\n" +" 프린터를 Digital Factory에 연결하는 모든 위치에서 프린트 대기열을 관리하고 프린트를 모니터링합니다" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "클라우드 프린팅이 준비되었습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "시작하기" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "자세히 알아보기" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "Cloud를 통해 프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "Cloud를 통해 프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "Cloud를 통해 연결됨" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "프린트 모니터링" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory에서 프린트 추적" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "프린트 작업 업로드 시 알 수 없는 오류 코드: {0}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Ultimaker 계정에서 새 프린터가 감지되었습니다" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "사용자 계정에서 프린터 {name}({model}) 추가" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... 및 기타 {0}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Digital Factory에서 프린터 추가:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "일부 프린터에서는 클라우드 연결을 사용할 수 없습니다" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "다음 프린터는 Digital Factory에 연결되어 있지 않습니다:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "연결을 설정하려면 {website_link}에 방문하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "프린터 구성 유지" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "프린터 제거" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "다음 계정 동기화 시까지 {printer_name}이(가) 제거됩니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "{printer_name}을(를) 영구적으로 제거하려면 {digital_factory_link}을(를) 방문하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "일시적으로 {printer_name}을(를) 제거하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "프린터를 제거하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "그룹 #{group_nr}" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" +"정말로 계속하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "외벽" +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" +"정말로 계속하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "내벽" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "스킨" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "내부채움" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Binary" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "내부채움 서포트" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "지원하는 인터페이스" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "서포트" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Compressed COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "스커트" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "강조 표시된 영역은 누락되거나 관련 없는 표면을 표시합니다. 모델을 수정하고 Cura에서 다시 엽니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "프라임 타워" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "모델 에러" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "움직임 경로" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "솔리드 뷰" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "리트랙션" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "3MF 파일 작성 중 오류." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "다른" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF 기록기 플러그인이 손상되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "다음" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "작성할 작업 환경이 없습니다. 프린터를 먼저 추가하십시오." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "건너뛰기" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "여기서 작업 환경을 작성할 권한이 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "닫기" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "운영 체제가 프로젝트 파일을 이 위치로 또는 이 파일명으로 저장하지 못합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF 파일" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura 프로젝트 3MF 파일" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "모니터" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D 모델 도우미" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -739,1491 +1700,1469 @@ msgstr "" "

    인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.

    \n" "

    인쇄 품질 가이드 보기

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "프로젝트 파일 {0}에 알 수 없는 기기 유형 {1}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +msgctxt "@label" +msgid "Mesh Type" +msgstr "메쉬 유형" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "프로젝트 파일 열기" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "일반 모델" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "프로젝트 파일 {0}에 갑자기 접근할 수 없습니다: {1}." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "서포터로 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "프로젝트 파일 열 수 없음" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "오버랩 설정 수정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "프로젝트 파일 {0}이 손상됨: {1}." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "오버랩 지원 안함" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." -msgstr "프로젝트 파일 {0}이(가) 이 버전의 Ultimaker Cura에서 확인할 수 없는 프로파일을 사용하였습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "추천" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 파일" +msgid "Infill mesh only" +msgstr "매쉬 내부채움 전용" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 기록기 플러그인이 손상되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "여기서 작업 환경을 작성할 권한이 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "운영 체제가 프로젝트 파일을 이 위치로 또는 이 파일명으로 저장하지 못합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3MF 파일 작성 중 오류." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 파일" +msgid "Cutting mesh" +msgstr "커팅 메쉬" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 프로젝트 3MF 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "백업을 업로드하는 도중 오류가 있었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "백업 생성 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "백업을 생성하는 도중 오류가 있었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "백업 업로드 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "백업이 업로드를 완료했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "백업이 최대 파일 크기를 초과했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "백업 복원 시도 중 오류가 있었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "백업 관리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "슬라이스 할 수 없습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n" -"- 출력 사이즈 내에 맞춤화됨\n" -"- 활성화된 익스트루더로 할당됨\n" -"- 수정자 메쉬로 전체 설정되지 않음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "레이어 처리 중" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "정보" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "업데이트 정보에 액세스 할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 최신 버전이 아닌 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "새로운 %s 펌웨어를 사용할 수 있습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 msgctxt "@action:button" -msgid "How to update" -msgstr "업데이트하는 방법" +msgid "Select settings" +msgstr "설정 선택" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "필터..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "모두 보이기" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura 백업" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura 버전" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "기기" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "재료" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "프로파일" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "플러그인" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "무엇을 더 하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "지금 백업" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "자동 백업" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Cura가 시작되는 날마다 자동으로 백업을 생성하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "복원" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "백업 삭제" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "이 백업을 삭제하시겠습니까? 이 작업을 완료할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "백업 복원" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "백업이 복원되기 전에 Cura를 다시 시작해야 합니다. 지금 Cura를 닫으시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Cura 설정을 백업, 동기화하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "로그인" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "내 백업" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하여 생성하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "미리 보기 단계 중에는 보이는 백업 5개로 제한됩니다. 기존 백업을 보려면 백업을 제거하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "프린터 설정" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (너비)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (깊이)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (높이)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "빌드 플레이트 모양" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "중앙이 원점" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "히트 베드" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "히팅 빌드 사이즈" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Gcode 유형" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "프린트헤드 설정" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X 최소값" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y 최소값" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X 최대값" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y 최대값" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "갠트리 높이" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "익스트루더의 수" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "익스트루더 오프셋을 GCode에 적용" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "시작 GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "End GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "노즐 설정" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "노즐 크기" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "호환되는 재료의 직경" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "노즐 오프셋 X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "노즐 오프셋 Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "냉각 팬 번호" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "익스트루더 시작 Gcode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "익스트루더 종료 Gcode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "프린터" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" msgid "Update Firmware" msgstr "펌웨어 업데이트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "압축된 G-code 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter는 텍스트 모드는 지원하지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G 코드 파싱" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-코드 세부 정보" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "파일을 보내기 전에 g-코드가 프린터 및 프린터 구성에 적합한 지 확인하십시오. g-코드가 정확하지 않을 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter는 텍스트가 아닌 모드는 지원하지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "내보내기 전에 G-code를 준비하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "기기 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "모니터" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 msgctxt "@label" -msgid "Per Model Settings" -msgstr "모델 별 설정" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "펌웨어는 3D 프린터에서 직접 실행되는 소프트웨어입니다. 이 펌웨어는 스텝 모터를 제어하고 온도를 조절하며 프린터를 작동시킵니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "모델 별 설정 구성" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "후 처리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G 코드 수정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "준비" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "미리 보기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "이동식 드라이브에 저장" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "이동식 드라이브 {0}에 저장" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "쓸 수있는 파일 형식이 없습니다!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "이동식 드라이브 {0}에 저장" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -msgctxt "@info:title" -msgid "Saving" -msgstr "저장" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0}: {1} 에 저장할 수 없습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "{device} 장치에 쓸 때 파일 이름을 찾을 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "파일이 저장됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "꺼내기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "이동식 장치 {0} 꺼내기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "하드웨어 안전하게 제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "이동식 드라이브" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "와이어 프린팅이 활성화되어 있을 때 Cura는 레이어를 정확하게 표시하지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "먼저 슬라이스해야 하기 때문에 아무것도 표시되지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "표시할 레이어 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "다시 메시지 표시 안 함" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "레이어 뷰" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "강조 표시된 영역은 누락되거나 관련 없는 표면을 표시합니다. 모델을 수정하고 Cura에서 다시 엽니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "모델 에러" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "자세히 알아보기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "솔리드 뷰" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 msgctxt "@label" -msgid "Support Blocker" -msgstr "서포트 차단기" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "서포트가 프린팅되지 않는 볼륨을 만듭니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "귀하의 계정으로 재료와 소프트웨어 패키지를 동기화하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Ultimaker 계정에서 변경 사항이 감지되었습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 msgctxt "@action:button" -msgid "Sync" -msgstr "동기화" +msgid "Automatically upgrade Firmware" +msgstr "펌웨어 자동 업그레이드" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "동기화 중..." +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "사용자 정의 펌웨어 업로드" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "거절" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "프린터와 연결되지 않아 펌웨어를 업데이트할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "동의" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "플러그인 사용 계약" +msgid "Select custom firmware" +msgstr "사용자 정의 펌웨어 선택" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "계정에서 거절 및 제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "변경 사항이 적용되기 전에 {}을(를) 멈추고 다시 시작해야 합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{}개의 플러그인을 다운로드하지 못했습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 포맷 패키지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "UFP 파일에 쓸 수 없음:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "레벨 빌드 플레이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "업그레이드 선택" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "Cloud를 통해 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "Cloud를 통해 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "Cloud를 통해 연결됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "프린트 작업 업로드 시 알 수 없는 오류 코드: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Ultimaker 계정에서 새 프린터가 감지되었습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "사용자 계정에서 프린터 {name}({model}) 추가" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... 및 기타 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Digital Factory에서 프린터 추가:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "일부 프린터에서는 클라우드 연결을 사용할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "다음 프린터는 Digital Factory에 연결되어 있지 않습니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "연결을 설정하려면 {website_link}에 방문하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "프린터 구성 유지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "프린터 제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "다음 계정 동기화 시까지 {printer_name}이(가) 제거됩니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "{printer_name}을(를) 영구적으로 제거하려면 {digital_factory_link}을(를) 방문하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "일시적으로 {printer_name}을(를) 제거하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 msgctxt "@title:window" -msgid "Remove printers?" -msgstr "프린터를 제거하시겠습니까?" +msgid "Firmware Update" +msgstr "펌웨어 업데이트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 -#, python-brace-format +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" -"정말로 계속하시겠습니까?" +msgid "Updating firmware." +msgstr "펌웨어 업데이트 중." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" -"정말로 계속하시겠습니까?" +msgid "Firmware update completed." +msgstr "펌웨어 업데이트가 완료되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 -msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Ultimaker 계정을 사용하여 어디에서든 인쇄 작업을 전송하고 모니터링하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory에 연결" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "시작하기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Ultimaker Connect를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "프린터 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura가 {0} 그룹의 호스트 프린터에 설치되지 않은 재료 프로파일을 감지했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "재료를 프린터로 전송 중" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "연결 시도 중인 {0}이(가) 그룹의 호스트가 아닙니다. 웹 페이지에서 그룹 호스트로 설정할 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "그룹 호스트 아님" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "그룹 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "현재 작업이 전송될 때까지 기다려주십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "프린트 오류" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "데이터를 프린터로 업로드할 수 없음." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "네트워크 오류" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "인쇄 작업 전송" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "프린트 작업을 프린터로 업로드하고 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "프린트 작업 대기열이 가득 찼습니다. 프린터가 새 작업을 수락할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "대기열 가득 참" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "출력 작업이 프린터에 성공적으로 보내졌습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "데이터 전송 됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "네트워크를 통해 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "네트워크를 통해 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "네트워크를 통해 연결됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "네트워크를 통해 연결" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "내일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "오늘" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "USB를 통해 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "USB를 통해 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "USB를 통해 연결" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "USB 인쇄가 진행 중입니다. Cura를 닫으면 인쇄도 중단됩니다. 계속하시겠습니까?" +msgid "Firmware update failed due to an unknown error." +msgstr "알 수 없는 오류로 인해 펌웨어 업데이트에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "프린트가 아직 진행 중입니다. Cura는 이전 프린트가 완료될 때까지는 USB를 통해 다른 프린트를 시작할 수 없습니다." +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "통신 오류로 인해 펌웨어 업데이트에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "프린트 진행 중" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "입/출력 오류로 인해 펌웨어 업데이트에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 파일" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "펌웨어 누락으로 인해 펌웨어 업데이트에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "엑스레이 뷰" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "이 출력물에는 문제가있을 수 있습니다. 조정을 위한 도움말을 보려면 클릭하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "프로젝트 열기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "기존 업데이트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "새로 만들기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "요약 - Cura 프로젝트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "프린터 설정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "기기의 충돌을 어떻게 해결해야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "유형" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "프린터 그룹" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "프로파일 설정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "프로파일의 충돌을 어떻게 해결해야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "이름" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "프로파일에 없음" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 무시" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivative from" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 무시" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "재료 설정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "재료의 충돌은 어떻게 해결되어야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "표시 설정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "종류" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "표시 설정 :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "1 out of %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "프로젝트를 로드하면 빌드 플레이트의 모든 모델이 지워집니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "열기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "무엇을 더 하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "지금 백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "자동 백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Cura가 시작되는 날마다 자동으로 백업을 생성하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "복원" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "백업 삭제" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "이 백업을 삭제하시겠습니까? 이 작업을 완료할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "백업 복원" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "백업이 복원되기 전에 Cura를 다시 시작해야 합니다. 지금 Cura를 닫으시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 버전" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "기기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 백업" +msgid "Post Processing Plugin" +msgstr "후처리 플러그인" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "내 백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하여 생성하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "미리 보기 단계 중에는 보이는 백업 5개로 제한됩니다. 기존 백업을 보려면 백업을 제거하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Cura 설정을 백업, 동기화하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "로그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "펌웨어 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "펌웨어는 3D 프린터에서 직접 실행되는 소프트웨어입니다. 이 펌웨어는 스텝 모터를 제어하고 온도를 조절하며 프린터를 작동시킵니다." +msgid "Post Processing Scripts" +msgstr "후처리 스크립트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "스크립트 추가" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다." +msgid "Settings" +msgstr "설정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "펌웨어 자동 업그레이드" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "활성 사후 처리 스크립트를 변경하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "사용자 정의 펌웨어 업로드" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "다음 스크립트들이 활성화됩니다:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "프린터와 연결되지 않아 펌웨어를 업데이트할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "사용자 정의 펌웨어 선택" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "펌웨어 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "펌웨어 업데이트 중." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "펌웨어 업데이트가 완료되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "알 수 없는 오류로 인해 펌웨어 업데이트에 실패했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "통신 오류로 인해 펌웨어 업데이트에 실패했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "입/출력 오류로 인해 펌웨어 업데이트에 실패했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "펌웨어 누락으로 인해 펌웨어 업데이트에 실패했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "이미지 변환 ..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "\"Base\"에서 각 픽셀까지의 최대 거리." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "높이 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "바닥 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "빌드 플레이트의 폭 (밀리미터)." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "너비 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "빌드 플레이트의 깊이 (밀리미터)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "깊이 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "리쏘페인(투각)의 경우 들어오는 더 많은 빛을 차단하기 위해서는 다크 픽셀이 더 두꺼운 위치에 해당해야 합니다. 높이 지도의 경우 더 밝은 픽셀이 더 높은 지역을 나타냅니다. 따라서 생성된 3D 모델에서 더 밝은 픽셀이 더 두꺼운 위치에 해당해야 합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "어두울수록 높음" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "밝을수록 높음" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "리쏘페인의 경우 반투명성을 위한 간단한 로그 모델을 사용할 수 있습니다. 높이 지도의 경우, 픽셀 값은 높이에 선형적으로 부합합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "직선 모양" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "반투명성" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "두께가 1mm인 출력물을 관통하는 빛의 비율 이 값을 낮추면 어두운 부분의 대조가 증가하고 이미지의 밝은 부분의 대조가 감소합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1mm의 투과율(%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "이미지에 적용할 스무딩(smoothing)의 정도." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "스무딩(smoothing)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "확인" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "이 Ultimaker Original에 업그레이드 할 항목을 선택하십시오" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "히팅 빌드 플레이트 (공식 키트 또는 자체 조립식)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "빌드 플레이트 레벨링" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "프린팅이 잘 되도록 빌드 플레이트를 조정할 수 있습니다. '다음 위치로 이동'을 클릭하면 노즐이 조정할 수있는 다른 위치로 이동합니다." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "모든 자리에; 노즐 아래에 종이 한 장을 넣고 프린팅 빌드 플레이트 높이를 조정하십시오. 빌드플레이드의 높이는 종이의 끝 부분이 노즐의 끝부분으로 살짝 닿을 때의 높이입니다." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "빌드플레이트 레벨링 시작하기" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "다음 위치로 이동" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "익명 데이터 수집에 대한 추가 정보" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura는 인쇄 품질과 사용자 경험을 개선하기 위해 익명 데이터를 수집합니다. 공유되는 모든 데이터의 예는 다음과 같습니다:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "익명 데이터 전송을 원하지 않습니다" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "익명 데이터 전송 허용" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "시장" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "패키지의 변경 사항이 적용되기 전에 Cura를 다시 시작해야 합니다." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "%1 종료" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "설치" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "설치됨" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "프리미엄" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "웹 마켓플레이스로 이동" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "재료 검색" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "호환성" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "기기" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "빌드 플레이트" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "서포트" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "품질" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "기술 데이터 시트" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "안전 데이터 시트" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "인쇄 가이드라인" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "웹 사이트" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "설치 또는 업데이트에 로그인 필요" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "재료 스플 구입" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "업데이트" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "업데이트 중" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "업데이트됨" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "뒤로" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "프린터" +msgid "Plugins" +msgstr "플러그인" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "노즐 설정" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "재료" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "설치됨" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "노즐 크기" +msgid "Will install upon restarting" +msgstr "다시 시작 시 설치 예정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "업데이트에 로그인 필요" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "다운그레이드" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "설치 제거" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "커뮤니티 기여" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "호환되는 재료의 직경" +msgid "Community Plugins" +msgstr "커뮤니티 플러그인" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "노즐 오프셋 X" +msgid "Generic Materials" +msgstr "일반 재료" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "패키지 가져오는 중..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "노즐 오프셋 Y" +msgid "Website" +msgstr "웹 사이트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "냉각 팬 번호" +msgid "Email" +msgstr "이메일" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "익스트루더 시작 Gcode" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Ultimaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "익스트루더 종료 Gcode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "프린터 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (너비)" +msgid "Version" +msgstr "버전" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (깊이)" +msgid "Last updated" +msgstr "마지막으로 업데이트한 날짜" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (높이)" +msgid "Brand" +msgstr "상표" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "빌드 플레이트 모양" +msgid "Downloads" +msgstr "다운로드" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "설치된 플러그인" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "설치된 플러그인이 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "설치된 재료" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "설치된 재료가 없습니다." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "번들 플러그인" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "번들 재료" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Cura 패키지 데이터베이스에 연결할 수 없습니다. 연결을 확인하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "중앙이 원점" +msgid "You need to accept the license to install the package" +msgstr "패키지를 설치하려면 라이선스를 수락해야 합니다" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "계정의 변경 사항" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "취소" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "다음 것" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "히트 베드" +msgid "The following packages will be added:" +msgstr "다음 패키지가 추가됩니다:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "히팅 빌드 사이즈" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "호환되지 않는 Cura 버전이기 때문에 다음 패키지를 설치할 수 없습니다:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "제거 확인" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "아직 사용 중인 재료 및/또는 프로파일을 제거합니다. 확인하면 다음 재료/프로파일이 기본값으로 재설정됩니다." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "재료" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "프로파일" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "확인" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Gcode 유형" +msgid "Color scheme" +msgstr "색 구성표" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "프린트헤드 설정" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "재료 색상" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "라인 유형" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "속도" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "레이어 두께" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "선 두께" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "유량" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X 최소값" +msgid "Compatibility Mode" +msgstr "호환 모드" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y 최소값" +msgid "Travels" +msgstr "이동" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X 최대값" +msgid "Helpers" +msgstr "도움말" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y 최대값" +msgid "Shell" +msgstr "외곽" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "갠트리 높이" +msgid "Infill" +msgstr "내부채움" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "익스트루더의 수" +msgid "Starts" +msgstr "시작" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "익스트루더 오프셋을 GCode에 적용" +msgid "Only Show Top Layers" +msgstr "상단 레이어 만 표시" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "시작 GCode" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "상단에 5 개의 세부 레이어 표시" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "End GCode" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "위 / 아래" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "내벽" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "최소" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "최대" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "프린터 관리" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "유리" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "대기열을 원격으로 관리하려면 프린터 펌웨어를 업데이트하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "클라우드 프린터용 Webcam 피드는 Ultimaker Cura에서 볼 수 없습니다. '프린터 관리'를 클릭하여 Ultimaker Digital Factory를 방문하고 이 웹캠을 확인하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "로딩 중..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "사용불가" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "연결할 수 없음" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "대기 상태" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "준비 중..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "제목 없음" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "익명" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "구성 변경 필요" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "세부 사항" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "사용할 수 없는 프린터" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "첫 번째로 사용 가능" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "대기 중" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "브라우저에서 관리" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "대기열에 프린팅 작업이 없습니다. 작업을 추가하려면 슬라이스하여 전송하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "인쇄 작업" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "총 인쇄 시간" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "대기" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "네트워크를 통해 프린팅" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "프린트" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "프린터 선택" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "구성 변경" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "무시하기" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "할당된 프린터 %1의 구성을 다음과 같이 변경해야 합니다:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "프린터 %1이(가) 할당되었으나 작업에 알 수 없는 재료 구성이 포함되어 있습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "재료 %1을(를) %2에서 %3(으)로 변경합니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "%3을(를) 재료 %1(으)로 로드합니다(이 작업은 무효화할 수 없음)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "PrintCore %1을(를) %2에서 %3(으)로 변경합니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "빌드 플레이트를 %1(으)로 변경합니다(이 작업은 무효화할 수 없음)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "무시하기는 기존 프린터 구성과 함께 지정된 설정을 사용하게 됩니다. 이는 인쇄 실패로 이어질 수 있습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "알루미늄" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "끝마친" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "중지 중..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "중단됨" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "실패" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "일시 정지 중..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "일시 중지됨" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "다시 시작..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "조치가 필요함" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "%2에서 %1 완료" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "네트워크 프린터에 연결" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g-코드 파일을 프린터로 전송할 수 있습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "아래 목록에서 프린터를 선택하십시오:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "편집" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "제거" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "새로고침" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "유형" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "펌웨어 버전" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "주소" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "이 프린터는 프린터 그룹을 호스트하도록 설정되어 있지 않습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "연결" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "잘못된 IP 주소" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "유효한 IP 주소를 입력하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "프린터 주소" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "네트워크에 있는 프린터의 IP 주소를 입력하십시오." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "맨 위로 이동" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "삭제" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "재개" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "일시 정지 중..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "다시 시작..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "중지" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "중지 중..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "중단" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "%1(을)를 대기열의 맨 위로 이동하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "인쇄 작업을 맨 위로 이동" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "%1(을)를 삭제하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "인쇄 작업 삭제" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "%1(을)를 정말로 중지하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "프린팅 중단" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2234,1411 +3173,427 @@ msgstr "" "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.\n" "- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "프린터를 네트워크에 연결하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "사용자 매뉴얼 온라인 보기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Cura에서 프린트를 모니터링하려면 프린터를 연결하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "메쉬 유형" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "일반 모델" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "서포터로 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "오버랩 설정 수정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "오버랩 지원 안함" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "매쉬 내부채움 전용" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "커팅 메쉬" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "설정 선택" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "필터..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "모두 보이기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "후처리 플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "후처리 스크립트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "스크립트 추가" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "활성 사후 처리 스크립트를 변경하십시오." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "이 출력물에는 문제가있을 수 있습니다. 조정을 위한 도움말을 보려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "다음 스크립트들이 활성화됩니다:" +msgid "3D View" +msgstr "3D 보기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "색 구성표" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "재료 색상" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "라인 유형" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "속도" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "레이어 두께" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "선 두께" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "유량" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "호환 모드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "이동" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "도움말" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "외곽" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "내부채움" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "시작" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "상단 레이어 만 표시" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "상단에 5 개의 세부 레이어 표시" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "위 / 아래" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "내벽" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "최소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "최대" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "익명 데이터 수집에 대한 추가 정보" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura는 인쇄 품질과 사용자 경험을 개선하기 위해 익명 데이터를 수집합니다. 공유되는 모든 데이터의 예는 다음과 같습니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "익명 데이터 전송을 원하지 않습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "익명 데이터 전송 허용" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "뒤로" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "호환성" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "기기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "빌드 플레이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "서포트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "품질" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "기술 데이터 시트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "안전 데이터 시트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "인쇄 가이드라인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "웹 사이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "설치됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "설치 또는 업데이트에 로그인 필요" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "재료 스플 구입" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "업데이트 중" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "업데이트됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "프리미엄" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "웹 마켓플레이스로 이동" +msgid "Front View" +msgstr "앞에서 보기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "위에서 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "왼쪽 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "오른쪽 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "재료 검색" +msgid "Object list" +msgstr "개체 목록" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "패키지의 변경 사항이 적용되기 전에 Cura를 다시 시작해야 합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 종료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "설치됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "다시 시작 시 설치 예정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "업데이트에 로그인 필요" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "다운그레이드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "설치 제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "설치" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "계정의 변경 사항" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "취소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "다음 것" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "다음 패키지가 추가됩니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "호환되지 않는 Cura 버전이기 때문에 다음 패키지를 설치할 수 없습니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "제거 확인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "아직 사용 중인 재료 및/또는 프로파일을 제거합니다. 확인하면 다음 재료/프로파일이 기본값으로 재설정됩니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "확인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "패키지를 설치하려면 라이선스를 수락해야 합니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "웹 사이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "이메일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "버전" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "마지막으로 업데이트한 날짜" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "상표" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "다운로드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "커뮤니티 기여" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "커뮤니티 플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "일반 재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Cura 패키지 데이터베이스에 연결할 수 없습니다. 연결을 확인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "설치된 플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "설치된 플러그인이 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "설치된 재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "설치된 재료가 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "번들 플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "번들 재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "패키지 가져오는 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Ultimaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "시장" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "빌드 플레이트 레벨링" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "파일" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "프린팅이 잘 되도록 빌드 플레이트를 조정할 수 있습니다. '다음 위치로 이동'을 클릭하면 노즐이 조정할 수있는 다른 위치로 이동합니다." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "편집(&E)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "모든 자리에; 노즐 아래에 종이 한 장을 넣고 프린팅 빌드 플레이트 높이를 조정하십시오. 빌드플레이드의 높이는 종이의 끝 부분이 노즐의 끝부분으로 살짝 닿을 때의 높이입니다." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "보기(&V)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "빌드플레이트 레벨링 시작하기" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "설정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "다음 위치로 이동" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "확장 프로그램(&X)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "이 Ultimaker Original에 업그레이드 할 항목을 선택하십시오" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "환경설정(&R)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "히팅 빌드 플레이트 (공식 키트 또는 자체 조립식)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "도움말(&H)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "네트워크 프린터에 연결" +msgid "New project" +msgstr "새 프로젝트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g-코드 파일을 프린터로 전송할 수 있습니다." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "새 프로젝트를 시작 하시겠습니까? 빌드 플레이트 및 저장하지 않은 설정이 지워집니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "아래 목록에서 프린터를 선택하십시오:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "편집" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "새로고침" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "유형" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "펌웨어 버전" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "주소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "이 프린터는 프린터 그룹을 호스트하도록 설정되어 있지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "연결" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "잘못된 IP 주소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "유효한 IP 주소를 입력하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "프린터 주소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "네트워크에 있는 프린터의 IP 주소를 입력하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "구성 변경" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "무시하기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "할당된 프린터 %1의 구성을 다음과 같이 변경해야 합니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "프린터 %1이(가) 할당되었으나 작업에 알 수 없는 재료 구성이 포함되어 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "재료 %1을(를) %2에서 %3(으)로 변경합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3을(를) 재료 %1(으)로 로드합니다(이 작업은 무효화할 수 없음)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "PrintCore %1을(를) %2에서 %3(으)로 변경합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "빌드 플레이트를 %1(으)로 변경합니다(이 작업은 무효화할 수 없음)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "무시하기는 기존 프린터 구성과 함께 지정된 설정을 사용하게 됩니다. 이는 인쇄 실패로 이어질 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "유리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "알루미늄" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "맨 위로 이동" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "삭제" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "재개" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "일시 정지 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "다시 시작..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "중지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "중지 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "중단" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "%1(을)를 대기열의 맨 위로 이동하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "인쇄 작업을 맨 위로 이동" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "%1(을)를 삭제하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "인쇄 작업 삭제" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "%1(을)를 정말로 중지하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "프린팅 중단" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "프린터 관리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "대기열을 원격으로 관리하려면 프린터 펌웨어를 업데이트하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "로딩 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "사용불가" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "연결할 수 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "대기 상태" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "준비 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "제목 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "익명" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "구성 변경 필요" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "세부 사항" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "사용할 수 없는 프린터" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "첫 번째로 사용 가능" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "중단됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "끝마친" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "중지 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "일시 정지 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "일시 중지됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "다시 시작..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "조치가 필요함" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%2에서 %1 완료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "대기 중" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "브라우저에서 관리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "대기열에 프린팅 작업이 없습니다. 작업을 추가하려면 슬라이스하여 전송하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "인쇄 작업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "총 인쇄 시간" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "대기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "네트워크를 통해 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "프린트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "프린터 선택" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "로그인" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Ultimaker 플랫폼에 로그인" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- 재료 설정 및 Marketplace 플러그인 추가\n" -"- 재료 설정과 플러그인 백업 및 동기화\n" -"- Ultimaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Ultimaker 계정 무료 생성" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "확인 중..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "계정 동기화됨" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "오류가 발생하였습니다..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "보류된 업데이트 설치" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "계정 업데이트 확인" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "마지막 업데이트: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 계정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "로그아웃" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "시간 추산 이용 불가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "비용 추산 이용 불가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "미리 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "시간 추산" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "재료 추산" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "슬라이싱..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "슬라이스 할 수 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "처리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "슬라이스" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "슬라이싱 프로세스 시작" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "취소" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "온라인 문제 해결 가이드 표시" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "전채 화면 전환" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "전체 화면 종료" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "되돌리기(&U)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "다시하기(&R)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "종료(&Q)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3D 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "앞에서 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "위에서 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "하단 뷰" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "왼쪽에서 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "오른쪽에서 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Cura 구성 ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "프린터 추가..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "프린터 관리 ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "재료 관리..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "마켓플레이스에서 더 많은 재료 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "현재 설정으로로 프로파일 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "현재 변경 사항 무시" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "현재 설정으로 프로파일 생성..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "프로파일 관리..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "온라인 문서 표시" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "버그 리포트" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "새로운 기능" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "소개..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "선택 항목 삭제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "선택 항목 가운데 정렬" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "선택 항목 복제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "모델 삭제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "플랫폼중심에 모델 위치하기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "모델 그룹화" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "모델 그룹 해제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "모델 합치기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "모델 복제..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "모든 모델 선택" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "빌드 플레이트 지우기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "모든 모델 다시 로드" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "모든 모델을 모든 빌드 플레이트에 정렬" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "모든 모델 정렬" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "선택한 모델 정렬" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "모든 모델의 위치 재설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "모든 모델의 변환 재설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "파일 열기..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "새로운 프로젝트..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "설정 폴더 표시" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "설정 보기..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&시장" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "다시 시작한 후에 이 패키지가 설치됩니다." +msgid "Time estimation" +msgstr "시간 추산" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "일반" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "재료 추산" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "설정" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "프린터" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "프로파일" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "시간 추산 이용 불가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1 닫기" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "비용 추산 이용 불가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "%1을(를) 정말로 종료하시겠습니까?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "미리 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "파일 열기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "패키지 설치" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "파일 열기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "선택한 파일 내에 하나 이상의 G-코드 파일이 있습니다. 한 번에 하나의 G-코드 파일 만 열 수 있습니다. G-코드 파일을 열려면 하나만 선택하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" msgstr "프린터 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "네트워크 프린터 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "비 네트워크 프린터 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "클라우드 프린터 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "클라우드 응답 대기" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "사용자의 계정에 프린터가 없습니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "사용자의 계정에 있는 다음 프린터를 Cura에 추가하였습니다:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "수동으로 프린터 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "IP 주소로 프린터 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "프린터의 IP 주소를 입력하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "장치에 연결할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Ultimaker 프린터로 연결할 수 없습니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "알 수 없는 프린터이거나 그룹의 호스트가 아니기 때문에 이 프린터를 추가할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "뒤로" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "연결" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "사용자 계약" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "거절 및 닫기" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Ultimaker Cura에 오신 것을 환영합니다" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "Ultimaker Cura를 설정하려면 다음 단계로 이동하세요. 오래 걸리지 않습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "시작하기" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Ultimaker 플랫폼에 로그인" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "재료 설정 및 Marketplace 플러그인 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "재료 설정과 플러그인 백업 및 동기화" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Ultimaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "건너뛰기" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Ultimaker 계정 무료 생성" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "제조업체" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "프로파일 원작자" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "프린터 이름" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "프린터의 이름을 설정하십시오" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "네트워크에서 검색된 프린터가 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "새로고침" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "IP로 프린터 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "클라우드 프린터 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "문제 해결" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Ultimaker Cura를 개선하는 데 도움을 주십시오" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura는 인쇄 품질과 사용자 경험을 개선하기 위해 다음과 같은 익명 데이터를 수집합니다:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "기기 유형" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "재료 사용" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "슬라이드 수" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "인쇄 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Ultimaker Cura가 수집하는 데이터에는 개인 정보가 포함되어 있지 않습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "추가 정보" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "새로운 기능" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "비어 있음" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "릴리즈 노트" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "%1 정보" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "버전: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "3D 프린팅을 위한 엔드 투 엔트 솔루션." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3647,183 +3602,202 @@ msgstr "" "Cura는 커뮤니티와 공동으로 Ultimaker B.V.에 의해 개발되었습니다.\n" "Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "그래픽 사용자 인터페이스" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "애플리케이션 프레임 워크" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "GCode 생성기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "프로세스간 통신 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "프로그래밍 언어" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI 프레임 워크" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "GUI 프레임 워크 바인딩" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C/C ++ 바인딩 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "데이터 교환 형식" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "과학 컴퓨팅을 위한 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "더 빠른 수학연산을 위한 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "STL 파일 처리를 위한 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "평면 개체 처리를 위한 지원 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "삼각형 메쉬 처리를 위한 지원 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "3MF 파일 처리를 위한 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "파일 메타데이터 및 스트리밍을 위한 지원 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "직렬 통신 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "ZeroConf discovery 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "다각형 클리핑 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Python용 정적 유형 검사기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "SSL 신뢰성 검증용 루트 인증서" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Python 오류 추적 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "폴리곤 패킹 라이브러리, Prusa Research 개발" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "libnest2d용 Python 바인딩" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "시스템 키링 액세스를 위한 서포트 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Microsoft Windows용 Python 확장" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "폰트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVG 아이콘" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Linux 교차 배포 응용 프로그램 배포" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "프로젝트 파일 열기" +msgid "Open file(s)" +msgstr "파일 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "이 파일은 Cura 프로젝트 파일입니다. 프로젝트로 열거나 모델을 가져 오시겠습니까?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "선택한 파일 내에 하나 이상의 프로젝트 파일이 있습니다. 한 번에 하나의 프로젝트 파일 만 열 수 있습니다. 해당 파일에서 모델 만 가져 오기를 권장합니다. 계속 하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "선택 기억하기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "프로젝트로 열기" +msgid "Import all as models" +msgstr "모두 모델로 가져 오기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "프로젝트 저장" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "%1익스트루더" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & 재료" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "재료" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "프로젝트 요약을 다시 저장하지 마십시오" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "모델 가져 오기" +msgid "Save" +msgstr "저장" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "변경 사항 삭제 또는 유지" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3834,1202 +3808,142 @@ msgstr "" "프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n" "또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "프로파일 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "현재 변경 사항" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "항상 묻기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "최소하고 다시 묻지않기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "계속하고 다시 묻지않기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "변경 사항 삭제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "변경 사항 유지" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "프로젝트 파일 열기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "선택한 파일 내에 하나 이상의 프로젝트 파일이 있습니다. 한 번에 하나의 프로젝트 파일 만 열 수 있습니다. 해당 파일에서 모델 만 가져 오기를 권장합니다. 계속 하시겠습니까?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "이 파일은 Cura 프로젝트 파일입니다. 프로젝트로 열거나 모델을 가져 오시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "선택 기억하기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "모두 모델로 가져 오기" +msgid "Open as project" +msgstr "프로젝트로 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "프로젝트 저장" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "%1익스트루더" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & 재료" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "재료" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "프로젝트 요약을 다시 저장하지 마십시오" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "저장" +msgid "Import models" +msgstr "모델 가져 오기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "선택한 모델을 %1로 프린팅하십시오" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "제목 없음" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "파일" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "편집(&E)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "보기(&V)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "확장 프로그램(&X)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "환경설정(&R)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "도움말(&H)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "새 프로젝트" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "새 프로젝트를 시작 하시겠습니까? 빌드 플레이트 및 저장하지 않은 설정이 지워집니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "시장" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "구성" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "%1이(가) 인식되지 않기 때문에 이 구성을 사용할 수 없습니다. %2에 방문하여 올바른 재료 프로파일을 다운로드하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "시장" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "프린터에서 사용 가능한 구성 로딩 중..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "프린터가 연결되어 있지 않기 때문에 구성을 사용할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "구성 선택" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "구성" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "프린터" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "실행됨" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "재료" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "선택된 모델 프린팅 :" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "선택한 모델 복" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "복제할 수" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "프로젝트 저장(&S)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "내보내기(&E)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "내보내기 선택..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "재료" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "즐겨찾기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "일반" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "파일 여는 중..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "네트워크 프린터" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "로컬 프린터" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "최근 열어본 파일 열기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "프로젝트 저장 중..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "프린터(&P)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "재료(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "활성 익스트루더로 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "익스트루더 사용" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "익스트루더 사용하지 않음" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "표시 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "모든 카테고리 붕괴" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "보기 설정 관리..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "카메라 위치(&C)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "카메라 뷰" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "원근" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "직교" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "빌드 플레이트(&B)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "프린터에 연결되지 않음" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "프린터가 명령을 받아들이지 않습니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "유지 보수 중. 프린터를 확인하십시오" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "프린터와의 연결이 끊어졌습니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "프린팅..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "일시 중지됨" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "준비 중..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "프린트물을 제거하십시오" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "프린팅 중단" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "프린팅를 중단 하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "지원으로 프린팅됩니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "이 모델과 중복되는 다른 모델은 수정됩니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "이 모델과 중복되는 내부채움은 수정됩니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "이 모델과의 중복은 지원되지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "%1 설정을 덮어씁니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "개체 목록" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "인터페이스" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "통화:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "테마:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "이러한 변경 사항을 적용하려면 응용 프로그램을 다시 시작해야합니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "설정이 변경되면 자동으로 슬라이싱 합니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "자동으로 슬라이싱" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "뷰포트 동작" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "지원되지 않는 모델 영역을 빨간색으로 강조 표시하십시오. 서포트가 없으면 이 영역이 제대로 프린팅되지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "오버행 표시" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "경고 기호를 사용해 모델에서 누락되거나 관계 없는 표면을 강조 표시합니다. 도구 경로에서는 종종 의도한 형상의 일부가 누락됩니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "모델 오류 표시" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "모델을 선택하면 모델이 뷰의 가운데에 오도록 카메라를 이동합니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "항목을 선택하면 카메라를 중앙에 위치" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "큐라의 기본 확대 동작을 반전시켜야 합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "카메라 줌의 방향을 반전시키기." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "확대가 마우스 방향으로 이동해야 합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "정투영법 시점에서는 마우스 방향으로 확대가 지원되지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "마우스 방향으로 확대" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "모델을 더 이상 교차시키지 않도록 이동해야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "모델이 분리되어 있는지 확인" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "모델을 빌드 플레이트에 닿도록 아래로 움직여야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "모델을 빌드 플레이트에 자동으로 놓기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "g-code 리더에 주의 메시지를 표시하기." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "g-code 리더의 주의 메시지" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "레이어가 호환 모드로 강제 설정되어야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "닫힌 위치에서 Cura를 열어야 합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "시작 시 창 위치 복원" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "카메라 렌더링:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "원근" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "정투영" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "파일 열기 및 저장" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cura 인스턴스에서 엽니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Cura의 단일 인스턴스 사용" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "크기가 너무 큰 경우 모델을 빌드 볼륨에 맞게 조정해야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "큰 모델의 사이즈 수정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "단위가 밀리미터가 아닌 미터 단위 인 경우 모델이 매우 작게 나타날 수 있습니다. 이 모델을 확대할까요?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "매우 작은 모델의 크기 조정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "모델을 로드한 후에 선택해야 합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "로드된 경우 모델 선택" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "프린터 이름에 기반한 접두어가 프린팅 작업 이름에 자동으로 추가되어야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "작업 이름에 기기 접두어 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "프로젝트 파일을 저장할 때 요약이 표시되어야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "프로젝트 저장시 요약 대화 상자 표시" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "프로젝트 파일을 열 때 기본 동작" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "프로젝트 파일을 열 때 기본 동작 " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "항상 묻기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "항상 프로젝트로 열기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "항상 모델 가져 오기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "프로파일을 변경하고 다른 프로파일로 전환하면 수정 사항을 유지할지 여부를 묻는 대화 상자가 표시됩니다. 기본 행동을 선택하면 해당 대화 상자를 다시 표시 하지 않을 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "다른 프로파일로 변경하는 경우 변경된 설정값에 대한 기본 동작 " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "항상 변경된 설정 삭제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "항상 변경된 설정을 새 프로파일로 전송" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "보안" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Cura가 프로그램이 시작될 때 업데이트를 확인할까요?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "시작시 업데이트 확인" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "프린터에 대한 익명의 데이터를 Ultimaker로 보낼까요? 모델, IP 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(익명) 프린터 정보 보내기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "추가 정보" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "활성화" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "이름 바꾸기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "생성" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "복제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "가져오기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "내보내기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "프린터와 동기화" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "프린터" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "제거 확인" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "재료 가져 오기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "재료를 가져올 수 없습니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "재료를 성공적으로 가져왔습니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "재료 내보내기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "재료를 내보내는데 실패했습니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "재료를 성공적으로 내보냈습니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "모든 재료 내보내기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "정보" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "직경 변경 확인" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "새 필라멘트의 직경은 %1 mm로 설정되었으며, 현재 압출기와 호환되지 않습니다. 계속하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "표시 이름" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "재료 유형" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "색깔" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "속성" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "밀도" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "직경" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "필라멘트 비용" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "필라멘트 무게" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "필라멘트 길이" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "미터 당 비용" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "이 재료는 %1에 연결되어 있으며 일부 속성을 공유합니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "재료 연결 해제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "설명" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "접착 정보" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "프린팅 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "생성" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "복제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "프로파일 생성하기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "이 프로파일에 대한 이름을 제공하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "프로파일 복제하기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "프로파일 이름 바꾸기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "프로파일 가져 오기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "프로파일 내보내기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "프린터: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "현재 설정 / 재정의 프로파일 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "현재 변경 사항 삭제" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "이 프로파일은 프린터에서 지정한 기본값을 사용하므로 아래 목록에 아무런 설정/재정의가 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "현재 설정이 선택한 프로파일과 일치합니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "전역 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "계산된" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "현재 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "단위" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "보기 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "모두 확인" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "익스트루더" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "핫 엔드의 설정 온도입니다. 핫 엔드는 이 온도를 향해 가열되거나 냉각됩니다. 이 값이 0이면 온열 가열이 꺼집니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "이 익스트루더의 현재 온도." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "노즐을 예열하기 위한 온도." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "취소" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "예열" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "프린팅하기 전에 노즐을 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 노즐이 가열 될 때까지 기다릴 필요가 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "이 익스트루더의 재료 색." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "이 익스트루더의 재료." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "이 익스트루더에 삽입 된 노즐." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "빌드 플레이트" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "가열 된 베드의 설정 온도. 베드가 이 온도로 가열되거나 식을 것입니다. 이 값이 0이면 베드 가열이 꺼집니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "가열 된 베드의 현재 온도." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "베드를 예열하기 위한 온도." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "프린팅하기 전에 베드를 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 베드가 가열 될 때까지 기다릴 필요가 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "프린터 제어" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "조그 위치" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "조그 거리" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Gcode 보내기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "연결된 프린터에 사용자 정의 G 코드 명령을 보냅니다. ‘Enter’키를 눌러 명령을 전송하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "프린터가 연결되어 있지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "클라우드 프린터가 오프라인 상태입니다. 프린터가 켜져 있고 인터넷과 연결되어 있는지 확인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "해당 프린터가 사용자의 계정에 연결되어 있지 않습니다. Ultimaker Digital Factory에 방문하여 연결을 설정하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "현재 클라우드 연결을 사용할 수 없습니다. 클라우드 프린터에 연결하려면 로그인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "현재 클라우드 연결을 사용할 수 없습니다. 사용자의 인터넷 연결을 확인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "프린터 관리" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "연결된 프린터" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "프린터 사전 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "활성화된 프린트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "작업 이름" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "프린팅 시간" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "예상 남은 시간" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "클라우드 프린터가 오프라인 상태입니다. 프린터가 켜져 있고 인터넷과 연결되어 있는지 확인하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "해당 프린터가 사용자의 계정에 연결되어 있지 않습니다. Ultimaker Digital Factory에 방문하여 연결을 설정하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "현재 클라우드 연결을 사용할 수 없습니다. 클라우드 프린터에 연결하려면 로그인하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "현재 클라우드 연결을 사용할 수 없습니다. 사용자의 인터넷 연결을 확인하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "프린터 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "프린터 관리" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "연결된 프린터" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "프린터 사전 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "프린팅 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "인쇄 설정 비활성화됨. G 코드 파일을 수정할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "프로파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5040,119 +3954,1676 @@ msgstr "" "\n" "프로파일 매니저를 열려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "사용자 정의 프로파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "현재 변경 사항 삭제" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "추천" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "사용자 정의" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "유효한" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "비활성" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "실험적 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "압출기 %2의 구성에 대한 %1 프로파일이 없습니다. 대신 기본 의도가 사용됩니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "인쇄 설정 비활성화됨. G 코드 파일을 수정할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "추천" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "유효한" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "비활성" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "실험적 설정" +msgid "Profiles" +msgstr "프로파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "부착" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "브림이나 라프트를 사용합니다. 이렇게하면 출력물 주변이나 아래에 평평한 영역이 추가되어 나중에 쉽게 자를 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "점진적 내부채움" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "점차적인 내부채움은 점차적으로 빈 공간 채우기의 양을 증가시킵니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "일부 프로파일 설정을 수정했습니다. 이러한 설정을 변경하려면 사용자 지정 모드로 이동하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "서포트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "오버행이 있는 모델 서포트를 생성합니다. 이러한 구조가 없으면 이러한 부분이 프린팅 중에 붕괴됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n" -"\n" -"이 설정을 표시하려면 클릭하십시오." +msgid "Gradual infill" +msgstr "점진적 내부채움" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "점차적인 내부채움은 점차적으로 빈 공간 채우기의 양을 증가시킵니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "부착" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "브림이나 라프트를 사용합니다. 이렇게하면 출력물 주변이나 아래에 평평한 영역이 추가되어 나중에 쉽게 자를 수 있습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "프로젝트 저장 중..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "네트워크 프린터" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "로컬 프린터" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "재료" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "즐겨찾기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "일반" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "선택된 모델 프린팅 :" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "선택한 모델 복" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "복제할 수" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "프로젝트 저장(&S)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "내보내기(&E)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "내보내기 선택..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "구성" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "사용자 정의" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "프린터" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "실행됨" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "재료" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "이 익스트루더의 구성이 허용되지 않았으며, 슬라이싱이 금지됩니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "이 익스트루더 구성에 일치하는 프로파일이 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "구성 선택" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "구성" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "프린터에서 사용 가능한 구성 로딩 중..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "프린터가 연결되어 있지 않기 때문에 구성을 사용할 수 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "%1이(가) 인식되지 않기 때문에 이 구성을 사용할 수 없습니다. %2에 방문하여 올바른 재료 프로파일을 다운로드하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "시장" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "파일 여는 중..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "프린터(&P)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "재료(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "활성 익스트루더로 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "익스트루더 사용" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "익스트루더 사용하지 않음" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "최근 열어본 파일 열기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "표시 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "모든 카테고리 붕괴" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "보기 설정 관리..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "카메라 위치(&C)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "카메라 뷰" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "원근" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "직교" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "빌드 플레이트(&B)" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "유형 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "지원으로 프린팅됩니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "이 모델과 중복되는 다른 모델은 수정됩니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "이 모델과 중복되는 내부채움은 수정됩니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "이 모델과의 중복은 지원되지 않습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "%1 설정을 덮어씁니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "프로파일" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "활성화" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "생성" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "복제" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "이름 바꾸기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "가져오기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "내보내기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "프로파일 생성하기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "이 프로파일에 대한 이름을 제공하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "프로파일 복제하기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "제거 확인" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "프로파일 이름 바꾸기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "프로파일 가져 오기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "프로파일 내보내기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "프린터: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "현재 설정 / 재정의 프로파일 업데이트" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "이 프로파일은 프린터에서 지정한 기본값을 사용하므로 아래 목록에 아무런 설정/재정의가 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "현재 설정이 선택한 프로파일과 일치합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "전역 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "일반" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "인터페이스" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "통화:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "테마:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "이러한 변경 사항을 적용하려면 응용 프로그램을 다시 시작해야합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "설정이 변경되면 자동으로 슬라이싱 합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "자동으로 슬라이싱" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "뷰포트 동작" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "지원되지 않는 모델 영역을 빨간색으로 강조 표시하십시오. 서포트가 없으면 이 영역이 제대로 프린팅되지 않습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "오버행 표시" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "경고 기호를 사용해 모델에서 누락되거나 관계 없는 표면을 강조 표시합니다. 도구 경로에서는 종종 의도한 형상의 일부가 누락됩니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "모델 오류 표시" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "모델을 선택하면 모델이 뷰의 가운데에 오도록 카메라를 이동합니다" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "항목을 선택하면 카메라를 중앙에 위치" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "큐라의 기본 확대 동작을 반전시켜야 합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "카메라 줌의 방향을 반전시키기." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "확대가 마우스 방향으로 이동해야 합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "정투영법 시점에서는 마우스 방향으로 확대가 지원되지 않습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "마우스 방향으로 확대" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "모델을 더 이상 교차시키지 않도록 이동해야합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "모델이 분리되어 있는지 확인" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "모델을 빌드 플레이트에 닿도록 아래로 움직여야합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "모델을 빌드 플레이트에 자동으로 놓기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "g-code 리더에 주의 메시지를 표시하기." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "g-code 리더의 주의 메시지" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "레이어가 호환 모드로 강제 설정되어야합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "닫힌 위치에서 Cura를 열어야 합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "시작 시 창 위치 복원" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "카메라 렌더링:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "원근" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "정투영" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "파일 열기 및 저장" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cura 인스턴스에서 엽니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Cura의 단일 인스턴스 사용" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Cura의 단일 인스턴스에서 새 모델을 로드하기 전에 빌드 플레이트를 지워야 합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "모델을 단일 인스턴스로 로드하기 전에 빌드 플레이트 지우기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "크기가 너무 큰 경우 모델을 빌드 볼륨에 맞게 조정해야합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "큰 모델의 사이즈 수정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "단위가 밀리미터가 아닌 미터 단위 인 경우 모델이 매우 작게 나타날 수 있습니다. 이 모델을 확대할까요?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "매우 작은 모델의 크기 조정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "모델을 로드한 후에 선택해야 합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "로드된 경우 모델 선택" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "프린터 이름에 기반한 접두어가 프린팅 작업 이름에 자동으로 추가되어야합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "작업 이름에 기기 접두어 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "프로젝트 파일을 저장할 때 요약이 표시되어야합니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "프로젝트 저장시 요약 대화 상자 표시" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "프로젝트 파일을 열 때 기본 동작" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "프로젝트 파일을 열 때 기본 동작 " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "항상 묻기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "항상 프로젝트로 열기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "항상 모델 가져 오기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "프로파일을 변경하고 다른 프로파일로 전환하면 수정 사항을 유지할지 여부를 묻는 대화 상자가 표시됩니다. 기본 행동을 선택하면 해당 대화 상자를 다시 표시 하지 않을 수 있습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "다른 프로파일로 변경하는 경우 변경된 설정값에 대한 기본 동작 " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "항상 변경된 설정 삭제" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "항상 변경된 설정을 새 프로파일로 전송" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "보안" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "프린터에 대한 익명의 데이터를 Ultimaker로 보낼까요? 모델, IP 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(익명) 프린터 정보 보내기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "추가 정보" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "업데이트" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Cura가 프로그램이 시작될 때 업데이트를 확인할까요?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "시작시 업데이트 확인" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "업데이트 사항을 확인할 때 안정적인 릴리즈만 확인하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "안정적인 릴리즈만 해당" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "업데이트 사항을 확인할 때 안정적인 베타 릴리즈를 확인하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "안정적인 베타 릴리즈" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Cura가 시작될 때마다 새로운 플러그인을 자동 확인해야 합니까? 사용 안 함으로 설정하지 않는 것이 좋습니다!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "플러그인 업데이트 알림 받기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "정보" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "직경 변경 확인" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "새 필라멘트의 직경은 %1 mm로 설정되었으며, 현재 압출기와 호환되지 않습니다. 계속하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "표시 이름" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "재료 유형" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "색깔" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "속성" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "밀도" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "직경" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "필라멘트 비용" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "필라멘트 무게" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "필라멘트 길이" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "미터 당 비용" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "이 재료는 %1에 연결되어 있으며 일부 속성을 공유합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "재료 연결 해제" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "설명" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "접착 정보" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "생성" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "복제" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "프린터와 동기화" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "프린터" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "재료 가져 오기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "재료를 가져올 수 없습니다" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "재료를 성공적으로 가져왔습니다" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "재료 내보내기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "재료를 내보내는데 실패했습니다" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "재료를 성공적으로 내보냈습니다" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "재료를 프린터와 동기화" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "재료를 프린터와 동기화" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "몇 가지 간단한 단계를 수행하면 모든 재료 프로파일과 프린터를 동기화할 수 있습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "시작" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "재료 프로파일을 동기화해야 하는 이유는 무엇입니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "로그인" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Digital Factory에 연결된 모든 프린터와 자동으로 재료 프로파일을 동기화하려면 Cura에 가입되어 있어야 합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "재료를 USB로 동기화" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "다음 프린터는 새 재료 프로파일을 받게 됩니다:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "재료를 프린터로 전송할 때 어떤 문제가 발생했습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "다음 프린터에 재료 프로파일이 성공적으로 동기화되었습니다:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "문제 해결" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "프린터가 없습니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "모든 프린터가 켜져 있고 Digital Factory에 연결되어 있는지 확인하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "목록 새로고침" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "다시 시도" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "완료" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "동기화" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "동기화 중" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "프린터를 찾을 수 없음" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Digital Factory에 호환되는 프린터가 연결되지 않은 것 같습니다. 프린터가 연결되어 있고 최신 펌웨어가 설치되어 있는지 확인하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Digital Factory에 프린터를 연결하는 방법 알아보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "새로고침" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "재료 프로파일을 USB로 동기화" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "새로운 재료 프로파일을 프린터로 로드하기 위해 다음 단계를 수행합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "재료 아카이브 내보내기 버튼을 클릭합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr ".umm 파일을 USB 스틱에 저장합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "USB 스틱을 프린터에 삽입하고 새로운 재료 프로파일 로드 절차를 진행합니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "새로운 재료 프로파일을 내 프린터로 로드하는 방법" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "재료 아카이브 내보내기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "모든 재료 내보내기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "보기 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "모두 확인" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "프린터" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "계산된" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "프로파일" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "현재 설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "단위" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "프린터에 연결되지 않음" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "프린터가 명령을 받아들이지 않습니다" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "유지 보수 중. 프린터를 확인하십시오" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "프린터와의 연결이 끊어졌습니다" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "프린팅..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "일시 중지됨" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "준비 중..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "프린트물을 제거하십시오" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "프린팅 중단" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "프린팅를 중단 하시겠습니까?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "선택한 모델을 %1로 프린팅하십시오" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "내 프린터" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Ultimaker Digital Factory의 프린터를 모니터링하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "인쇄 작업" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "프린트 작업을 모니터링하고 프린트 기록에서 다시 프린트하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "플러그인 및 재료 프로파일을 사용하여 Ultimaker Cura를 확장하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Ultimaker e-러닝을 통해 3D 프린팅 전문가로 거듭나십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker support" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Ultimaker Cura로 시작하는 방법을 알아보십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "질문하기" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Ultimaker 커뮤니티에 문의하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "버그 리포트" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "개발자에게 문제를 알려주십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Ultimaker 웹 사이트를 방문하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "프린터 제어" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "조그 위치" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "조그 거리" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Gcode 보내기" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "연결된 프린터에 사용자 정의 G 코드 명령을 보냅니다. ‘Enter’키를 눌러 명령을 전송하십시오." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "익스트루더" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "핫 엔드의 설정 온도입니다. 핫 엔드는 이 온도를 향해 가열되거나 냉각됩니다. 이 값이 0이면 온열 가열이 꺼집니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "이 익스트루더의 현재 온도." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "노즐을 예열하기 위한 온도." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "취소" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "예열" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "프린팅하기 전에 노즐을 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 노즐이 가열 될 때까지 기다릴 필요가 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "이 익스트루더의 재료 색." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "이 익스트루더의 재료." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "이 익스트루더에 삽입 된 노즐." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "프린터가 연결되어 있지 않습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "빌드 플레이트" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "가열 된 베드의 설정 온도. 베드가 이 온도로 가열되거나 식을 것입니다. 이 값이 0이면 베드 가열이 꺼집니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "가열 된 베드의 현재 온도." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "베드를 예열하기 위한 온도." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "프린팅하기 전에 베드를 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 베드가 가열 될 때까지 기다릴 필요가 없습니다." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "로그인" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- 재료 설정 및 Marketplace 플러그인 추가\n" +"- 재료 설정과 플러그인 백업 및 동기화\n" +"- Ultimaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Ultimaker 계정 무료 생성" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "마지막 업데이트: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker 계정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "로그아웃" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "확인 중..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "계정 동기화됨" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "오류가 발생하였습니다..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "보류된 업데이트 설치" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "계정 업데이트 확인" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "제목 없음" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "선택할 항목 없음" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "온라인 문제 해결 가이드 표시" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "전채 화면 전환" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "전체 화면 종료" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "되돌리기(&U)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "다시하기(&R)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "종료(&Q)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3D 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "앞에서 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "위에서 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "하단 뷰" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "왼쪽에서 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "오른쪽에서 보기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Cura 구성 ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "프린터 추가..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "프린터 관리 ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "재료 관리..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "마켓플레이스에서 더 많은 재료 추가" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "현재 설정으로로 프로파일 업데이트" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "현재 변경 사항 무시" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "현재 설정으로 프로파일 생성..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "프로파일 관리..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "온라인 문서 표시" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "버그 리포트" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "새로운 기능" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "소개..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "선택 항목 삭제" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "선택 항목 가운데 정렬" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "선택 항목 복제" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "모델 삭제" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "플랫폼중심에 모델 위치하기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "모델 그룹화" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "모델 그룹 해제" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "모델 합치기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "모델 복제..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "모든 모델 선택" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "빌드 플레이트 지우기" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "모든 모델 다시 로드" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "모든 모델을 모든 빌드 플레이트에 정렬" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "모든 모델 정렬" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "선택한 모델 정렬" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "모든 모델의 위치 재설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "모든 모델의 변환 재설정" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "파일 열기..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "새로운 프로젝트..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "설정 폴더 표시" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "설정 보기..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&시장" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "영향을 미치는 모든 설정이 무효화되기 때문에 이 설정을 사용하지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "영향" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "영향을 받다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5163,7 +5634,7 @@ msgstr "" "\n" "프로파일 값을 복원하려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5174,507 +5645,92 @@ msgstr "" "\n" "계산 된 값을 복원하려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "검색 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "모든 익스트루더에 값 복사" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "변경된 사항을 모든 익스트루더에 복사" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "이 설정 숨기기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "이 설정을 표시하지 않음" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "이 설정을 계속 표시하십시오" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "앞에서 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "위에서 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "왼쪽 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "오른쪽 보기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "유형 보기" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n" +"\n" +"이 설정을 표시하려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "클라우드 프린터 추가" +msgid "This package will be installed after restarting." +msgstr "다시 시작한 후에 이 패키지가 설치됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "클라우드 응답 대기" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "사용자의 계정에 프린터가 없습니까?" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "%1 닫기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "사용자의 계정에 있는 다음 프린터를 Cura에 추가하였습니다." +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "%1을(를) 정말로 종료하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "수동으로 프린터 추가" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "패키지 설치" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "제조업체" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "파일 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "프로파일 원작자" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "선택한 파일 내에 하나 이상의 G-코드 파일이 있습니다. 한 번에 하나의 G-코드 파일 만 열 수 있습니다. G-코드 파일을 열려면 하나만 선택하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "프린터 이름" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "프린터의 이름을 설정하십시오" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" msgstr "프린터 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "네트워크 프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "비 네트워크 프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "네트워크에서 검색된 프린터가 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "새로고침" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "IP로 프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "클라우드 프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "문제 해결" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "IP 주소로 프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "프린터의 IP 주소를 입력하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "장치에 연결할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimaker 프린터로 연결할 수 없습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "알 수 없는 프린터이거나 그룹의 호스트가 아니기 때문에 이 프린터를 추가할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "뒤로" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "연결" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "릴리즈 노트" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "재료 설정 및 Marketplace 플러그인 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "재료 설정과 플러그인 백업 및 동기화" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ultimaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Ultimaker 계정 무료 생성" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "건너뛰기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ultimaker Cura를 개선하는 데 도움을 주십시오" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura는 인쇄 품질과 사용자 경험을 개선하기 위해 다음과 같은 익명 데이터를 수집합니다:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "기기 유형" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "재료 사용" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "슬라이드 수" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "인쇄 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura가 수집하는 데이터에는 개인 정보가 포함되어 있지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "추가 정보" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "비어 있음" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "사용자 계약" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "거절 및 닫기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura에 오신 것을 환영합니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Ultimaker Cura를 설정하려면 다음 단계로 이동하세요. 오래 걸리지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "시작하기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "새로운 기능" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "선택할 항목 없음" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "모델 검사기" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF 파일 읽기 지원." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 리더" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF 파일 작성 지원을 제공합니다." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 기록기" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF 파일 읽기가 지원됩니다." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 리더" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "구성을 백업하고 복원합니다." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 백업" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 백엔드" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 프로파일 리더" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura 프로파일 내보내기 지원을 제공합니다." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 프로파일 작성자" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker 디지털 라이브러리" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "펌웨어 업데이트를 확인합니다." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "펌웨어 업데이트 검사기" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "펌웨어 업데이터" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "압축 된 G 코드 리더기" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "압축 된 아카이브에 g-code를 씁니다." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "압축 된 G 코드 작성기" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "GCode 프로파일 리더기" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-코드 리더" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G Code를 파일에 씁니다." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "GCode 작성자" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "이미지 리더" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "레거시 Cura 프로파일 리더" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "컴퓨터 설정 작업" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura에서 모니터 단계 제공." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "모니터 단계" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5685,85 +5741,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "모델 별 설정 도구" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" +msgid "Provides support for importing Cura profiles." +msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "후처리" +msgid "Cura Profile Reader" +msgstr "Cura 프로파일 리더" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura에서 준비 단계 제공." +msgid "Provides support for reading X3D files." +msgstr "X3D 파일을 읽을 수 있도록 지원합니다." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "준비 단계" +msgid "X3D Reader" +msgstr "X3D 리더" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura에서 미리 보기 단계를 제공합니다." +msgid "Backup and restore your configuration." +msgstr "구성을 백업하고 복원합니다." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "미리 보기 단계" +msgid "Cura Backups" +msgstr "Cura 백업" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "이동식 드라이브를 제공합니다." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "이동식 드라이브 출력 장치 플러그인" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "보초 로거" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "시뮬레이션 뷰를 제공합니다." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "슬라이스 정보" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "일반 솔리드 메쉬보기를 제공합니다." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "솔리드 뷰" +msgid "Machine Settings Action" +msgstr "컴퓨터 설정 작업" #: SupportEraser/plugin.json msgctxt "description" @@ -5775,35 +5791,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Support Eraser" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "새 Cura 패키지를 찾고, 관리하고 설치하십시오." +msgid "Provides removable drive hotplugging and writing support." +msgstr "이동식 드라이브를 제공합니다." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "도구 상자" +msgid "Removable Drive Output Device Plugin" +msgstr "이동식 드라이브 출력 장치 플러그인" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "모델 파일 읽기 기능을 제공합니다." +msgid "Provides a machine actions for updating firmware." +msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 리더" +msgid "Firmware Updater" +msgstr "펌웨어 업데이터" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 리더기" +msgid "Legacy Cura Profile Reader" +msgstr "레거시 Cura 프로파일 리더" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF 파일 읽기 지원." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 리더" #: UFPWriter/plugin.json msgctxt "description" @@ -5815,25 +5841,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "UFP 작성자" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker 기기 동작" +msgid "Sentry Logger" +msgstr "보초 로거" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Ultimaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." +msgid "Provides support for importing profiles from g-code files." +msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker 네트워크 연결" +msgid "G-code Profile Reader" +msgstr "GCode 프로파일 리더기" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura에서 미리 보기 단계를 제공합니다." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "미리 보기 단계" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "엑스레이 뷰를 제공합니다." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "엑스레이 뷰" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 백엔드" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF 파일 읽기가 지원됩니다." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 리더" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "압축 된 G 코드 리더기" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "후처리" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura 프로파일 내보내기 지원을 제공합니다." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 프로파일 작성자" #: USBPrinting/plugin.json msgctxt "description" @@ -5845,25 +5941,135 @@ msgctxt "name" msgid "USB printing" msgstr "USB 프린팅" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." +msgid "Provides a prepare stage in Cura." +msgstr "Cura에서 준비 단계 제공." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1에서 2.2로 버전 업그레이드" +msgid "Prepare Stage" +msgstr "준비 단계" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." +msgid "Allows loading and displaying G-code files." +msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2에서 2.4로 버전 업그레이드" +msgid "G-code Reader" +msgstr "G-코드 리더" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "이미지 리더" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ultimaker 기기 동작" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "압축 된 아카이브에 g-code를 씁니다." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "압축 된 G 코드 작성기" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "펌웨어 업데이트를 확인합니다." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "펌웨어 업데이트 검사기" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "슬라이스 정보" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "재료 프로파일" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker 디지털 라이브러리" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "새 Cura 패키지를 찾고, 관리하고 설치하십시오." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "도구 상자" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G Code를 파일에 씁니다." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "GCode 작성자" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "시뮬레이션 뷰를 제공합니다." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "시뮬레이션 뷰" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5에서 4.6으로 버전 업그레이드" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5875,55 +6081,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "2.5에서 2.6으로 버전 업그레이드" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6에서 2.7으로 버전 업그레이드" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0에서 4.6.2로 버전 업그레이드" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7에서 3.0으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0에서 3.1로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2에서 3.3으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "버전 업그레이드 3.3에서 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7에서 4.8로 버전 업그레이드" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5935,35 +6111,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "3.4에서 3.5로 버전 업그레이드" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "버전 업그레이드 3.5에서 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1에서 2.2로 버전 업그레이드" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "버전 업그레이드 4.0에서 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2에서 3.3으로 버전 업그레이드" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.1에서 4.2로 버전 업그레이드" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8에서 4.9로 버전 업그레이드" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2에서 4.7로 버전 업그레이드" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -5985,66 +6171,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "4.3에서 4.4로 버전 업그레이드" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4에서 4.5로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5에서 4.6으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0에서 4.6.2로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2에서 4.7로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7에서 4.8로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8에서 4.9로 버전 업그레이드" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6055,35 +6181,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "4.9에서 4.10으로 버전 업그레이드" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D 파일을 읽을 수 있도록 지원합니다." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 리더" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7에서 3.0으로 버전 업그레이드" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "재료 프로파일" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6에서 2.7으로 버전 업그레이드" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "엑스레이 뷰를 제공합니다." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "엑스레이 뷰" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11에서 4.12로 버전 업그레이드" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "버전 업그레이드 3.3에서 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0에서 3.1로 버전 업그레이드" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "버전 업그레이드 4.0에서 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4에서 4.5로 버전 업그레이드" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2에서 2.4로 버전 업그레이드" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.1에서 4.2로 버전 업그레이드" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "버전 업그레이드 3.5에서 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Ultimaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker 네트워크 연결" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "모델 파일 읽기 기능을 제공합니다." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 리더" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 리더기" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "일반 솔리드 메쉬보기를 제공합니다." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "솔리드 뷰" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MF 파일 작성 지원을 제공합니다." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 기록기" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura에서 모니터 단계 제공." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "모니터 단계" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "모델 검사기" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Ultimaker 계정을 사용하여 어디에서든 인쇄 작업을 전송하고 모니터링하십시오." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Ultimaker Digital Factory에 연결" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "클라우드 프린터용 Webcam 피드는 Ultimaker Cura에서 볼 수 없습니다." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 최신 버전이 아닌 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "새로운 %s 펌웨어를 사용할 수 있습니다" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index 2aecfbb7e3..9850f464de 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 15:01+0200\n" "Last-Translator: Korean \n" "Language-Team: Jinbum Kim , Korean \n" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 949880ce6c..e1001c29e8 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 15:02+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Korean , Jinbum Kim , Korean \n" @@ -57,9 +57,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"시작과 동시에형실행될 G 코드 명령어 \n" -"." +msgstr "시작과 동시에형실행될 G 코드 명령어 \n." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -71,9 +69,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"맨 마지막에 실행될 G 코드 명령 \n" -"." +msgstr "맨 마지막에 실행될 G 코드 명령 \n." #: fdmprinter.def.json msgctxt "material_guid label" @@ -155,6 +151,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "프린팅 가능 영역의 깊이 (Y 방향)" +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "기기 높이" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -195,16 +201,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "알루미늄" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "기기 높이" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -562,8 +558,8 @@ msgstr "Z 방향의 모터 최대 속도입니다." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "최대 이송 속도" +msgid "Maximum Speed E" +msgstr "최대 속도 E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -687,8 +683,8 @@ msgstr "밀리미터 당 스텝 수 (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "둘레를 따라 1밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1435,6 +1431,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "단면 상단/하단 순서" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1505,6 +1511,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "지그재그" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "단면 다림질 순서" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1712,8 +1728,9 @@ msgstr "내부채움 패턴" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "프린트 충진 재료의 패턴입니다. 선과 갈지자형 충진이 레이어를 하나 걸러서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 삼육각형, 입방체, 옥텟, 4분 입방체, 십자, 동심원 패턴이 레이어마다 완전히 인쇄됩니다. 자이로이드, 입방체, 4분 입방체, 옥텟 충진이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다." +" 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1780,6 +1797,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "자이로이드" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "라이트닝" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1994,6 +2016,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "라이트닝 내부채움 서포트 각도" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "라이트닝 내부채움 오버행 각도" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "라이트닝 내부채움 가지치기 각도" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "라이트닝 내부채움 정리 각도" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3184,6 +3246,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "모두" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "외부 표면에 없음" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5135,8 +5202,8 @@ msgstr "최소 몰드 너비" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "몰드의 바깥 쪽과 모델의 바깥 쪽 사이의 최소 거리입니다." +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5303,6 +5370,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "지그재그" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "단면 상단 표면 순서" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6400,6 +6477,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "시작과 동시에형실행될 G 코드 명령어 \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "맨 마지막에 실행될 G 코드 명령 \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "최대 이송 속도" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "프린트 내부채움 재료의 패턴입니다. 선과 지그재그형 내부채움이 레이어를 하나 걸러서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 삼육각형, 큐빅, 옥텟, 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드, 큐빅, 쿼터 큐빅, 옥텟 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 (내부) 지붕만 서포트하여 내부채움을 최소화합니다. 따라서 내부채움 비율은 모델을 서포트하는 데 필요한 것에 상관없이 한 레이어 아래에만 '유효'합니다." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "나무의 바깥쪽 가지치기에 대해 라이트닝 내부채움 레이어와 바로 위 레이어의 차이점입니다. 두께가 주어진 각도로 측정됩니다." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "나무의 윤곽선을 부드럽게 하는 것에 관한 라이트닝 내부채움 레이어와 바로 위 레이어의 차이점입니다. 두께가 주어진 각도로 측정됩니다." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "프린트 충진 재료의 패턴입니다. 선과 갈지자형 충진이 레이어를 하나 걸러서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 삼육각형, 입방체, 옥텟, 4분 입방체, 십자, 동심원 패턴이 레이어마다 완전히 인쇄됩니다. 자이로이드, 입방체, 4분 입방체, 옥텟 충진이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "몰드의 바깥 쪽과 모델의 바깥 쪽 사이의 최소 거리입니다." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "0이 아닌 경우 이 거리보다 긴 빗질 이동은 후퇴를 사용합니다." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 5bb80d1116..d630cbc53c 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 14:51+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2021-09-07 08:01+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Dutch , Dutch \n" "Language: nl_NL\n" @@ -15,182 +15,451 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Onbekend" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Kan geen archief maken van gegevensmap van gebruiker: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Kan de onderstaande printer(s) niet verbinden omdat deze deel uitmaakt/uitmaken van een groep" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Back-up" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Beschikbare netwerkprinters" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Geprobeerd een Cura-back-up te herstellen zonder correcte gegevens of metadata." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Niet overschreven" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Geprobeerd een Cura-back-up te herstellen van een versie die hoger is dan de huidige versie." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "De volgende fout is opgetreden bij het herstellen van een Cura-backup:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Synchroniseer de materiaalprofielen met uw printer voordat u gaat printen." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Nieuwe materialen geïnstalleerd" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Synchroniseer materialen" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Meer informatie" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Kan materiaalarchief niet opslaan op {}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Opslaan materiaalarchief mislukt" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Onbekende fout." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "De hoogte van het bouwvolume is verminderd wegens de waarde van de instelling “Printvolgorde”, om te voorkomen dat de rijbrug tegen geprinte modellen botst." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Werkvolume" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Niet overschreven" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Onbekend" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Kan de onderstaande printer(s) niet verbinden omdat deze deel uitmaakt/uitmaken van een groep" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Beschikbare netwerkprinters" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visueel" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Het visuele profiel is ontworpen om visuele prototypen en modellen te printen met als doel een hoge visuele en oppervlaktekwaliteit te creëren." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Het engineeringprofiel is ontworpen om functionele prototypen en onderdelen voor eindgebruik te printen met als doel een grotere precisie en nauwere toleranties." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Ontwerp" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Het ontwerpprofiel is ontworpen om initiële prototypen en conceptvalidatie te printen met als doel de printtijd aanzienlijk te verkorten." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Aangepast materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Aangepast" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Aangepaste profielen" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Alle Ondersteunde Typen ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Bestanden (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visueel" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Het visuele profiel is ontworpen om visuele prototypen en modellen te printen met als doel een hoge visuele en oppervlaktekwaliteit te creëren." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Het engineeringprofiel is ontworpen om functionele prototypen en onderdelen voor eindgebruik te printen met als doel een grotere precisie en nauwere toleranties." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Ontwerp" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Het ontwerpprofiel is ontworpen om initiële prototypen en conceptvalidatie te printen met als doel de printtijd aanzienlijk te verkorten." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Aangepast materiaal" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Aangepast" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Inloggen mislukt" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Nieuwe locatie vinden voor objecten" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Locatie vinden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Kan binnen het werkvolume niet voor alle objecten een locatie vinden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Kan locatie niet vinden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Kan geen archief maken van gegevensmap van gebruiker: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Kan geen materiaalarchief maken voor synchronisatie met printers." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Back-up" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Kan het materiaalarchief niet laden voor synchronisatie met printers." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Geprobeerd een Cura-back-up te herstellen zonder correcte gegevens of metadata." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "Antwoord van Digital Factor is mogelijk beschadigd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Geprobeerd een Cura-back-up te herstellen van een versie die hoger is dan de huidige versie." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "In het antwoord van Digital Factory ontbreekt belangrijke informatie." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "De volgende fout is opgetreden bij het herstellen van een Cura-backup:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Kan geen verbinding maken met Digital Factory voor de synchronisatie van materialen met enkele printers." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Kan geen verbinding maken met Digital Factory." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Machines laden..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Voorkeuren instellen..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Actieve machine initialiseren ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Machinebeheer initialiseren ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Werkvolume initialiseren ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Scene instellen..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Interface laden..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Engine initialiseren ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "De hoogte van het bouwvolume is verminderd wegens de waarde van de instelling “Printvolgorde”, om te voorkomen dat de rijbrug tegen geprinte modellen botst." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Er kan slechts één G-code-bestand tegelijkertijd worden geladen. Het importeren van {0} is overgeslagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Werkvolume" +msgid "Warning" +msgstr "Waarschuwing" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Kan geen ander bestand openen als G-code wordt geladen. Het importeren van {0} is overgeslagen" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Fout" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Overslaan" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Sluiten" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Volgende" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Voltooien" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Toevoegen" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuleren" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Groepsnummer #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Buitenwand" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Binnenwanden" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Skin" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Vulling" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Supportvulling" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Verbindingsstructuur" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Supportstructuur" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Primepijler" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Beweging" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Intrekkingen" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Overig(e)" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "De release notes konden niet worden geopend." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kan niet worden gestart" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +474,32 @@ msgstr "" "

    Stuur ons dit crashrapport om het probleem op te lossen.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Het crashrapport naar Ultimaker verzenden" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Gedetailleerd crashrapport weergeven" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Open Configuratiemap" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Back-up maken en herstellen van configuratie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Crashrapport" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,676 +510,641 @@ msgstr "" "

    Druk op de knop \"Rapport verzenden\" om het foutenrapport automatisch naar onze servers te verzenden

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systeeminformatie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Onbekend" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-versie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Taal van Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Taal van besturingssysteem" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platform" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Nog niet geïnitialiseerd
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL-versie: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL-leverancier: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL-renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Traceback van fout" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Logboeken" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Rapport verzenden" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Machines laden..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Voorkeuren instellen..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Actieve machine initialiseren ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Machinebeheer initialiseren ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Werkvolume initialiseren ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Scene instellen..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Interface laden..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Engine initialiseren ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Er kan slechts één G-code-bestand tegelijkertijd worden geladen. Het importeren van {0} is overgeslagen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Waarschuwing" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Kan geen ander bestand openen als G-code wordt geladen. Het importeren van {0} is overgeslagen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Fout" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Objecten verveelvoudigen en plaatsen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Objecten plaatsen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Object plaatsen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Kan het antwoord niet lezen." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "De opgegeven status is niet juist." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Verleen de vereiste toestemmingen toe bij het autoriseren van deze toepassing." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Er heeft een onverwachte gebeurtenis plaatsgevonden bij het aanmelden. Probeer het opnieuw." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Er kan geen nieuw aanmeldingsproces worden gestart. Controleer of een andere aanmeldingspoging nog actief is." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Kan de Ultimaker-accountserver niet bereiken." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Aanmelden mislukt" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "De opgegeven status is niet juist." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Time-out tijdens verificatie bij de accountserver." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Verleen de vereiste toestemmingen toe bij het autoriseren van deze toepassing." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Er heeft een onverwachte gebeurtenis plaatsgevonden bij het aanmelden. Probeer het opnieuw." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Kan het antwoord niet lezen." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Objecten verveelvoudigen en plaatsen" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Objecten plaatsen" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Object plaatsen" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Niet ondersteund" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Nozzle" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van extruders:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "De instellingen zijn bijgewerkt" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extruder(s) uitgeschakeld" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Het Bestand Bestaat Al" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Ongeldige bestands-URL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Kan het profiel niet exporteren als {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." -msgstr "Kan het profiel niet exporteren als {0}: Invoegtoepassing voor de schrijver heeft een fout gerapporteerd." +msgstr "Kan het profiel niet exporteren als {0}: Plug-in voor de schrijver heeft een fout gerapporteerd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Het profiel is geëxporteerd als {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "De export is voltooid" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Kan het profiel niet importeren uit {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Kan het profiel niet importeren uit {0} voordat een printer toegevoegd is." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Er is geen aangepast profiel om in het bestand {0} te importeren" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dit profiel {0} bevat incorrecte gegevens. Kan het profiel niet importeren." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Het profiel {0} is geïmporteerd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Het bestand {0} bevat geen geldig profiel." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Het profiel {0} heeft een onbekend bestandstype of is beschadigd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Aangepast profiel" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Er ontbreekt een kwaliteitstype in het profiel." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Er is nog geen actieve printer." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Kan het profiel niet toevoegen." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Kwaliteitstype '{0}' is niet compatibel met de huidige actieve machinedefinitie '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Waarschuwing: het profiel is niet zichtbaar omdat het kwaliteitstype '{0}' van het profiel niet beschikbaar is voor de huidige configuratie. Schakel naar een materiaal-nozzle-combinatie waarvoor dit kwaliteitstype geschikt is." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Niet ondersteund" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Nozzle" +msgid "Per Model Settings" +msgstr "Instellingen per Model" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van extruders:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Instellingen per Model configureren" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura-profiel" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D-bestand" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Er is een fout opgetreden tijdens het herstellen van uw back-up." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "De instellingen zijn bijgewerkt" +msgid "Backups" +msgstr "Back-ups" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extruder(s) uitgeschakeld" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Er is een fout opgetreden tijdens het uploaden van uw back-up." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Toevoegen" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Uw back-up maken..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Voltooien" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Er is een fout opgetreden bij het maken van de back-up." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuleren" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Uw back-up wordt geüpload..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Uw back-up is geüpload." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "De back-up is groter dan de maximale bestandsgrootte." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Back-ups beheren" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Machine-instellingen" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Supportblokkering" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Maak een volume waarin supportstructuren niet worden geprint." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Verwisselbaar Station" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Opslaan op verwisselbaar station" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Groepsnummer #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Opslaan op Verwisselbaar Station {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Buitenwand" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Er zijn geen bestandsindelingen beschikbaar om te schrijven!" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Binnenwanden" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Opslaan op Verwisselbaar Station {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Skin" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Vulling" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Supportvulling" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Verbindingsstructuur" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Supportstructuur" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Primepijler" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Beweging" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Intrekkingen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Overig(e)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Volgende" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Overslaan" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Sluiten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "3D-modelassistent" +msgid "Saving" +msgstr "Opslaan" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Kan niet opslaan als {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Kan geen bestandsnaam vinden tijdens het schrijven naar {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

    \n" -"

    {model_names}

    \n" -"

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    \n" -"

    Handleiding printkwaliteit bekijken

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Bestand opgeslagen" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Uitwerpen" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Verwisselbaar station {0} uitwerpen" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} is uitgeworpen. U kunt het station nu veilig verwijderen." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Hardware veilig verwijderen" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Uitwerpen van {0} is niet gelukt. Mogelijk wordt het station door een ander programma gebruikt." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Firmware bijwerken" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04-profielen" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Aanbevolen" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Aangepast" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projectbestand {0} bevat een onbekend type machine {1}. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Projectbestand Openen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Projectbestand {0} is plotseling ontoegankelijk: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Kan projectbestand niet openen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Projectbestand {0} is corrupt: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "Projectbestand {0} wordt gemaakt met behulp van profielen die onbekend zijn bij deze versie van Ultimaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Aanbevolen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Aangepast" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-bestand" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF-schrijverplug-in is beschadigd." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Kan niet naar UFP-bestand schrijven:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Geen bevoegdheid om de werkruimte hier te schrijven." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Het besturingssysteem staat niet toe dat u een projectbestand opslaat op deze locatie of met deze bestandsnaam." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Fout bij het schrijven van het 3mf-bestand." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-bestand" +msgid "Ultimaker Format Package" +msgstr "Ultimaker Format Package" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-project 3MF-bestand" +msgid "G-code File" +msgstr "G-code-bestand" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Back-ups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Er is een fout opgetreden tijdens het uploaden van uw back-up." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Uw back-up maken..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Er is een fout opgetreden bij het maken van de back-up." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Uw back-up wordt geüpload..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Uw back-up is geüpload." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "De back-up is groter dan de maximale bestandsgrootte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Er is een fout opgetreden tijdens het herstellen van uw back-up." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Back-ups beheren" +msgid "Preview" +msgstr "Voorbeeld" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Röntgenweergave" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Lagen verwerken" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informatie" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Slicen is mislukt door een onverwachte fout. Overweeg om de fout te melden via onze issue tracker." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Slicen mislukt" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Een fout melden" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Meld een fout via de issue tracker van Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Met het huidige materiaal is slicen niet mogelijk, omdat het materiaal niet compatibel is met de geselecteerde machine of configuratie." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Kan niet slicen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Met de huidige instellingen is slicing niet mogelijk. De volgende instellingen bevatten fouten: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Slicing is niet mogelijk vanwege enkele instellingen per model. De volgende instellingen bevatten fouten voor een of meer modellen: {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Slicen is niet mogelijk omdat de terugduwpijler of terugduwpositie(s) ongeldig zijn." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Slicen is niet mogelijk omdat er objecten gekoppeld zijn aan uitgeschakelde Extruder %s." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -923,465 +1157,436 @@ msgstr "" "- zijn toegewezen aan een ingeschakelde extruder\n" "- niet allemaal zijn ingesteld als modificatierasters" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Lagen verwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Informatie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-profiel" +msgid "AMF File" +msgstr "AMF-bestand" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Geen toegang tot update-informatie." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Er zijn mogelijk nieuwe functies of bugfixes beschikbaar voor uw {machine_name}. Als u nog niet over de nieuwste versie beschikt, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Nieuwe firmware voor %s beschikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Instructies voor bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Firmware bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Gecomprimeerd G-code-bestand" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter ondersteunt geen tekstmodus." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-code parseren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Details van de G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Zorg ervoor dat de G-code geschikt is voor uw printer en de printerconfiguratie voordat u het bestand verzendt. Mogelijk is de weergave van de G-code niet nauwkeurig." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter ondersteunt geen non-tekstmodus." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Bereid voorafgaand aan het exporteren G-code voor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04-profielen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Machine-instellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Controleren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Instellingen per Model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Instellingen per Model configureren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nabewerking" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "G-code wijzigen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB-printen" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Printen via USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Via USB Printen" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Aangesloten via USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Er wordt momenteel via USB geprint. Wanneer u Cura afsluit, wordt het printen gestopt. Weet u zeker dat u wilt afsluiten?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Er wordt nog een print afgedrukt. Cura kan pas een nieuwe print via USB starten zodra de vorige print is voltooid." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Bezig met printen" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Voorbereiden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Voorbeeld" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Opslaan op verwisselbaar station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Opslaan op Verwisselbaar Station {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Er zijn geen bestandsindelingen beschikbaar om te schrijven!" +msgid "Parsing G-code" +msgstr "G-code parseren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Opslaan op Verwisselbaar Station {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Opslaan" +msgid "G-code Details" +msgstr "Details van de G-code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Kan niet opslaan als {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Kan geen bestandsnaam vinden tijdens het schrijven naar {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Bestand opgeslagen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Uitwerpen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Verwisselbaar station {0} uitwerpen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} is uitgeworpen. U kunt het station nu veilig verwijderen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Hardware veilig verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Uitwerpen van {0} is niet gelukt. Mogelijk wordt het station door een ander programma gebruikt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Verwisselbaar Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Als Draadprinten is ingeschakeld, geeft Cura lagen niet goed weer." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Simulatieweergave" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Er wordt niets weergegeven omdat u eerst moet slicen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Geen lagen om weer te geven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Dit bericht niet meer weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Laagweergave" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "De gemarkeerde gebieden geven ofwel ontbrekende of ongebruikelijke oppervlakken aan. Corrigeer het model en open het opnieuw in Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Modelfouten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Meer informatie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Solide weergave" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Supportblokkering" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Maak een volume waarin supportstructuren niet worden geprint." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Wilt u materiaal- en softwarepackages synchroniseren met uw account?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Zorg ervoor dat de G-code geschikt is voor uw printer en de printerconfiguratie voordat u het bestand verzendt. Mogelijk is de weergave van de G-code niet nauwkeurig." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Wijzigingen gedetecteerd van uw Ultimaker-account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchroniseren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchroniseren ..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Nee, ik ga niet akkoord" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Akkoord" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Licentieovereenkomst invoegtoepassing" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Weigeren en verwijderen uit account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "U moet {} afsluiten en herstarten voordat de wijzigingen van kracht worden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} plug-ins zijn niet gedownload" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Gecomprimeerde driehoeksnet openen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "G-bestand" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF-binair" +msgid "JPG Image" +msgstr "JPG-afbeelding" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF-ingesloten JSON" +msgid "JPEG Image" +msgstr "JPEG-afbeelding" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford-driehoeksformaat" +msgid "PNG Image" +msgstr "PNG-afbeelding" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Gecomprimeerde COLLADA Digital Asset Exchange" +msgid "BMP Image" +msgstr "BMP-afbeelding" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +msgid "GIF Image" +msgstr "GIF-afbeelding" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Kan niet naar UFP-bestand schrijven:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Platform kalibreren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Upgrades selecteren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter ondersteunt geen tekstmodus." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Geen toegang tot update-informatie." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Er zijn mogelijk nieuwe functies of foutoplossingen beschikbaar voor uw {machine_name}. Als u dit nog niet hebt gedaan, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nieuwe stabiele firmware voor %s beschikbaar" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Instructies voor bijwerken" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Kan het voorbeeldgegevensbestand niet lezen." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "U moet {} afsluiten en herstarten voordat de wijzigingen van kracht worden." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Synchroniseren ..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Wijzigingen gedetecteerd van uw Ultimaker-account" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Wilt u materiaal- en softwarepackages synchroniseren met uw account?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Synchroniseren" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Weigeren en verwijderen uit account" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} plug-ins zijn niet gedownload" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Nee, ik ga niet akkoord" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Akkoord" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Licentieovereenkomst plug-in" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter ondersteunt geen non-tekstmodus." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Bereid voorafgaand aan het exporteren G-code voor." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Als Draadprinten is ingeschakeld, geeft Cura lagen niet goed weer." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Simulatieweergave" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Er wordt niets weergegeven omdat u eerst moet slicen." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Geen lagen om weer te geven" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Dit bericht niet meer weergeven" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Laagweergave" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Printen via netwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Printen via netwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Via het netwerk verbonden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "morgen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "vandaag" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Verbinding Maken via Netwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Wacht tot de huidige taak is verzonden." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Printfout" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "De printtaak is naar de printer verzonden." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Gegevens verzonden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "U probeert verbinding te maken met een printer waarop Ultimaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Uw printer bijwerken" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "Wachtrij voor afdruktaken is vol. De printer kan geen nieuwe taken accepteren." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Wachtrij vol" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Printtaak verzenden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Printtaak naar printer aan het uploaden." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura heeft materiaalprofielen gedetecteerd die nog niet op de hostprinter van groep {0} zijn geïnstalleerd." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "De materialen worden naar de printer verzonden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Kan de gegevens niet uploaden naar de printer." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Netwerkfout" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "U probeert verbinding te maken met {0}, maar deze is niet de host van een groep. U kunt de webpagina bezoeken om deze als groephost te configureren." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Geen groephost" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Groep configureren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"U kunt uw printer {printer_name} via de cloud verbinden.\n" +" Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Bent u klaar voor printen via de cloud?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Aan de slag" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Meer informatie" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Printen via Cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Printen via Cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Verbonden via Cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Printen in de gaten houden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Volg het printen in Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Onbekende foutcode bij uploaden printtaak: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "Nieuwe printer gedetecteerd van uw Ultimaker-account" msgstr[1] "Nieuwe printers gedetecteerd van uw Ultimaker-account" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Printer {name} ({model}) toevoegen vanaf uw account" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1389,71 +1594,71 @@ msgid_plural "... and {0} others" msgstr[0] "... en {0} andere" msgstr[1] "... en {0} andere" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Printers toegevoegd vanuit Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Een cloudverbinding is niet beschikbaar voor een printer" msgstr[1] "Een cloudverbinding is niet beschikbaar voor meerdere printers" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "Deze printer is niet gekoppeld aan de Digital Factory:" msgstr[1] "Deze printers zijn niet gekoppeld aan de Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Ga naar {website_link} om een verbinding tot stand te brengen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Printerconfiguraties behouden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Printers verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} wordt verwijderd tot de volgende accountsynchronisatie." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Bezoek {digital_factory_link} om {printer_name} permanent te verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Weet u zeker dat u {printer_name} tijdelijk wilt verwijderen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Printers verwijderen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1469,7 +1674,7 @@ msgstr[1] "" "U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" "Weet u zeker dat u door wilt gaan?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1478,761 +1683,1638 @@ msgstr "" "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" "Weet u zeker dat u door wilt gaan?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Gecomprimeerde driehoeksnet openen" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF-binair" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF-ingesloten JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford-driehoeksformaat" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Gecomprimeerde COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Verzend en controleer overal printtaken met uw Ultimaker-account." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "De gemarkeerde gebieden geven ofwel ontbrekende of ongebruikelijke oppervlakken aan. Corrigeer het model en open het opnieuw in Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Verbinden met Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Aan de slag" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "U probeert verbinding te maken met een printer waarop Ultimaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Uw printer bijwerken" +msgid "Model Errors" +msgstr "Modelfouten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura heeft materiaalprofielen gedetecteerd die nog niet op de hostprinter van groep {0} zijn geïnstalleerd." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "De materialen worden naar de printer verzonden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "U probeert verbinding te maken met {0}, maar deze is niet de host van een groep. U kunt de webpagina bezoeken om deze als groephost te configureren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Geen groephost" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Groep configureren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Wacht tot de huidige taak is verzonden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Printfout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Kan de gegevens niet uploaden naar de printer." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Netwerkfout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Printtaak verzenden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Printtaak naar printer aan het uploaden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "Wachtrij voor afdruktaken is vol. De printer kan geen nieuwe taken accepteren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Wachtrij vol" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "De printtaak is naar de printer verzonden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Gegevens verzonden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Printen via netwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Printen via netwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Via het netwerk verbonden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Verbinding Maken via Netwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "morgen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "vandaag" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB-printen" +msgid "Solid view" +msgstr "Solide weergave" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Printen via USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Fout bij het schrijven van het 3mf-bestand." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Via USB Printen" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF-schrijverplug-in is beschadigd." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Er is nog geen werkruimte om te schrijven. Voeg eerst een printer toe." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Geen bevoegdheid om de werkruimte hier te schrijven." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Het besturingssysteem staat niet toe dat u een projectbestand opslaat op deze locatie of met deze bestandsnaam." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF-bestand" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura-project 3MF-bestand" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Controleren" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "3D-modelassistent" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Aangesloten via USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

    \n" +"

    {model_names}

    \n" +"

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    \n" +"

    Handleiding printkwaliteit bekijken

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Er wordt momenteel via USB geprint. Wanneer u Cura afsluit, wordt het printen gestopt. Weet u zeker dat u wilt afsluiten?" +msgid "Mesh Type" +msgstr "Rastertype" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Er wordt nog een print afgedrukt. Cura kan pas een nieuwe print via USB starten zodra de vorige print is voltooid." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Normaal model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Bezig met printen" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Printen als supportstructuur" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Instellingen aanpassen voor overlapping" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Supportstructuur niet laten overlappen" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-bestand" +msgid "Infill mesh only" +msgstr "Alleen vulraster" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgenweergave" +msgid "Cutting mesh" +msgstr "Snijdend raster" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "In deze print kunnen problemen ontstaan. Klik om tips voor aanpassingen te bekijken." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Instellingen selecteren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Instellingen Selecteren om Dit Model Aan te Passen" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filteren..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Alles weergeven" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura-back-ups" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura-versie" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Machines" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materialen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profielen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plug-ins" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Wilt u meer?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Nu back-up maken" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Auto back-up" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Maak elke dag dat Cura wordt gestart, automatisch een back-up." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Herstellen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Back-up verwijderen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Weet u zeker dat u deze back-up wilt verwijderen? Dit kan niet ongedaan worden gemaakt." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Back-up herstellen" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "U moet Cura opnieuw starten voordat uw back-up wordt hersteld. Wilt u Cura nu sluiten?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Maak een back-up van uw Cura-instellingen en synchroniseer deze." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Aanmelden" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Mijn back-ups" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om een back-up te maken." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Tijdens de voorbeeldfase zijn er maximaal 5 back-ups zichtbaar. Verwijder een back-up als u oudere back-ups wilt bekijken." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Printerinstellingen" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Breedte)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Diepte)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Hoogte)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Vorm van het platform" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Centraal oorsprongpunt" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Verwarmd bed" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Verwarmde werkvolume" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Versie G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Printkopinstellingen" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Rijbrughoogte" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Aantal extruders" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Pas extruderoffsets toe op GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Start G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Eind G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nozzle-instellingen" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Maat nozzle" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Compatibele materiaaldiameter" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Nozzle-offset X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Nozzle-offset Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Nummer van koelventilator" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Start-G-code van extruder" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Eind-G-code van extruder" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Printer" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Firmware bijwerken" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Firmware is de software die direct op de 3D-printer wordt uitgevoerd. Deze firmware bedient de stappenmotoren, regelt de temperatuur en zorgt er in feite voor dat de printer doet wat deze moet doen." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "De firmware die bij nieuwe printers wordt geleverd, werkt wel, maar nieuwe versies hebben vaak meer functies en verbeteringen." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Firmware-upgrade Automatisch Uitvoeren" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Aangepaste Firmware Uploaden" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Kan de firmware niet bijwerken omdat er geen verbinding met de printer is." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Kan de firmware niet bijwerken omdat de verbinding met de printer geen ondersteuning biedt voor het uitvoeren van een firmware-upgrade." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Aangepaste firmware selecteren" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Firmware-update" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "De firmware wordt bijgewerkt." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "De firmware-update is voltooid." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Firmware-update mislukt door een onbekende fout." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Firmware-update mislukt door een communicatiefout." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Firmware-update mislukt door een invoer-/uitvoerfout." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Firmware-update mislukt door ontbrekende firmware." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Project openen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Bestaand(e) bijwerken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Nieuw maken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Samenvatting - Cura-project" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Printerinstellingen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Hoe dient het conflict in de machine te worden opgelost?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Type" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Printergroep" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Profielinstellingen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Hoe dient het conflict in het profiel te worden opgelost?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Naam" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Niet in profiel" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 overschrijving" msgstr[1] "%1 overschrijvingen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Afgeleide van" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 overschrijving" msgstr[1] "%1, %2 overschrijvingen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Materiaalinstellingen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Hoe dient het materiaalconflict te worden opgelost?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Zichtbaarheid instellen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Modus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Zichtbare instellingen:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 van %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Als u een project laadt, worden alle modellen van het platform gewist." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Openen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Wilt u meer?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Nu back-up maken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto back-up" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Maak elke dag dat Cura wordt gestart, automatisch een back-up." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Herstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Back-up verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Weet u zeker dat u deze back-up wilt verwijderen? Dit kan niet ongedaan worden gemaakt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Back-up herstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "U moet Cura opnieuw starten voordat uw back-up wordt hersteld. Wilt u Cura nu sluiten?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura-versie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Machines" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profielen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Invoegtoepassingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura-back-ups" +msgid "Post Processing Plugin" +msgstr "Plug-in voor Nabewerking" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mijn back-ups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om een back-up te maken." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Tijdens de voorbeeldfase zijn er maximaal 5 back-ups zichtbaar. Verwijder een back-up als u oudere back-ups wilt bekijken." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Maak een back-up van uw Cura-instellingen en synchroniseer deze." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Aanmelden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Firmware bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Firmware is de software die direct op de 3D-printer wordt uitgevoerd. Deze firmware bedient de stappenmotoren, regelt de temperatuur en zorgt er in feite voor dat de printer doet wat deze moet doen." +msgid "Post Processing Scripts" +msgstr "Scripts voor Nabewerking" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Een script toevoegen" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "De firmware die bij nieuwe printers wordt geleverd, werkt wel, maar nieuwe versies hebben vaak meer functies en verbeteringen." +msgid "Settings" +msgstr "Instellingen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Firmware-upgrade Automatisch Uitvoeren" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Actieve scripts voor nabewerking wijzigen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Aangepaste Firmware Uploaden" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Het volgende script is actief:" +msgstr[1] "De volgende scripts zijn actief:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Kan de firmware niet bijwerken omdat er geen verbinding met de printer is." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Kan de firmware niet bijwerken omdat de verbinding met de printer geen ondersteuning biedt voor het uitvoeren van een firmware-upgrade." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Aangepaste firmware selecteren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware-update" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "De firmware wordt bijgewerkt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "De firmware-update is voltooid." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Firmware-update mislukt door een onbekende fout." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Firmware-update mislukt door een communicatiefout." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Firmware-update mislukt door een invoer-/uitvoerfout." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Firmware-update mislukt door ontbrekende firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Afbeelding Converteren..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "De maximale afstand van elke pixel tot de \"Basis\"." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Hoogte (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "De basishoogte van het platform in millimeters." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Basis (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "De breedte op het platform in millimeters." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Breedte (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "De diepte op het platform in millimeters" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Diepte (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Bij lithofanen dienen donkere pixels overeen te komen met de dikkere plekken om meer licht tegen te houden. Bij hoogtekaarten geven lichtere pixels hoger terrein aan. Lichtere pixels dienen daarom overeen te komen met dikkere plekken in het gegenereerde 3D-model." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Donkerder is hoger" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Lichter is hoger" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Voor lithofanen is een eenvoudig logaritmisch model voor doorschijnendheid beschikbaar. Voor hoogtekaarten corresponderen de pixelwaarden lineair met hoogten." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Lineair" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Doorschijnendheid" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "Het percentage licht dat doordringt in een print met een dikte van 1 millimeter. Een lagere waarde verhoogt het contrast in donkere gebieden en verlaagt het contrast in lichte gebieden van de afbeelding." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Transmissie 1 mm (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "De mate van effening die op de afbeelding moet worden toegepast." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Effenen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Selecteer eventuele upgrades die op deze Ultimaker Original zijn uitgevoerd" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Verwarmd Platform (officiële kit of zelf gebouwd)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Platform Kalibreren" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Je kan nu je platform afstellen, zodat uw prints er altijd fantastisch uitzien. Als u op 'Naar de volgende positie bewegen' klikt, beweegt de nozzle naar de verschillende instelbare posities." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Voor elke positie legt u een stukje papier onder de nozzle en past u de hoogte van het printplatform aan. De hoogte van het printplatform is goed wanneer het papier net door de punt van de nozzle wordt meegenomen." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Kalibratie Platform Starten" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Beweeg Naar de Volgende Positie" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Meer informatie over anonieme gegevensverzameling" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura verzamelt anonieme gegevens om de printkwaliteit en gebruikerservaring te verbeteren. Hieronder ziet u een voorbeeld van alle gegevens die worden gedeeld:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Ik wil geen anonieme gegevens verzenden" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Verzenden van anonieme gegevens toestaan" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Marktplaats" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "U moet Cura opnieuw starten voordat wijzigingen in packages van kracht worden." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sluit %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Installeren" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Geïnstalleerd" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Premium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Ga naar Marketplace op internet" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Materialen zoeken" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Compatibiliteit" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Machine" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Platform" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Supportstructuur" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Kwaliteit" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Technisch informatieblad" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Veiligheidsinformatieblad" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Richtlijnen voor printen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Website" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Aanmelden is vereist voor installeren of bijwerken" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Materiaalspoelen kopen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Bijwerken" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Bijwerken" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Bijgewerkt" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Terug" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Printer" +msgid "Plugins" +msgstr "Plug-ins" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nozzle-instellingen" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materialen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Geïnstalleerd" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Maat nozzle" +msgid "Will install upon restarting" +msgstr "Wordt geïnstalleerd na opnieuw starten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Aanmelden is vereist voor het bijwerken" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Downgraden" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "De-installeren" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Community-bijdragen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Compatibele materiaaldiameter" +msgid "Community Plugins" +msgstr "Community-plug-ins" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Nozzle-offset X" +msgid "Generic Materials" +msgstr "Standaard materialen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Packages ophalen..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Nozzle-offset Y" +msgid "Website" +msgstr "Website" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Nummer van koelventilator" +msgid "Email" +msgstr "E-mail" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Start-G-code van extruder" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Meld u aan voor geverifieerde plug-ins en materialen voor Ultimaker Cura Enterprise" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Eind-G-code van extruder" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Printerinstellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (Breedte)" +msgid "Version" +msgstr "Versie" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Diepte)" +msgid "Last updated" +msgstr "Laatst bijgewerkt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Hoogte)" +msgid "Brand" +msgstr "Merk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Vorm van het platform" +msgid "Downloads" +msgstr "Downloads" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Geïnstalleerde plug-ins" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Er zijn geen plug-ins geïnstalleerd." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Geïnstalleerde materialen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Er zijn materialen geïnstalleerd." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Gebundelde plug-ins" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Gebundelde materialen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Kan geen verbinding maken met de Cura Package-database. Controleer uw verbinding." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Centraal oorsprongpunt" +msgid "You need to accept the license to install the package" +msgstr "U moet de licentie accepteren om de package te installeren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Wijzigingen van uw account" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Verwijderen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Volgende" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Verwarmd bed" +msgid "The following packages will be added:" +msgstr "De volgende packages worden toegevoegd:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Verwarmde werkvolume" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "De volgende packages kunnen niet worden geïnstalleerd omdat de Cura-versie niet compatibel is:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "De-installeren bevestigen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "U verwijdert materialen en/of profielen die nog in gebruik zijn. Wanneer u het verwijderen bevestigt, worden de volgende materialen/profielen teruggezet naar hun standaardinstellingen." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Materialen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Profielen" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Bevestigen" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Versie G-code" +msgid "Color scheme" +msgstr "Kleurenschema" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Printkopinstellingen" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Materiaalkleur" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Lijntype" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Snelheid" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Laagdikte" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Lijnbreedte" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Doorvoer" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X min" +msgid "Compatibility Mode" +msgstr "Compatibiliteitsmodus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y min" +msgid "Travels" +msgstr "Bewegingen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X max" +msgid "Helpers" +msgstr "Helpers" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y max" +msgid "Shell" +msgstr "Shell" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Rijbrughoogte" +msgid "Infill" +msgstr "Vulling" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Aantal extruders" +msgid "Starts" +msgstr "Wordt gestart" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Pas extruderoffsets toe op GCode" +msgid "Only Show Top Layers" +msgstr "Alleen bovenlagen weergegeven" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Start G-code" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 gedetailleerde lagen bovenaan weergeven" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Eind G-code" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Boven-/onderkant" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Binnenwand" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Printer beheren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Glas" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Werk de firmware van uw printer bij om de wachtrij op afstand te beheren." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Vanuit Ultimaker Cura kunt u de webcamfeeds voor cloudprinters niet bekijken. Klik op 'Printer beheren' om Ultimaker Digital Factory te bezoeken en deze webcam te bekijken." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Laden..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Niet beschikbaar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Onbereikbaar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Inactief" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Voorbereiden..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Printen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Zonder titel" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anoniem" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Hiervoor zijn configuratiewijzigingen vereist" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Details" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Niet‑beschikbare printer" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Eerst beschikbaar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "In wachtrij" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Beheren in browser" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Er staan geen afdruktaken in de wachtrij. Slice een taak en verzend deze om er een toe te voegen." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Printtaken" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Totale printtijd" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Wachten op" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Printen via netwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Printen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Printerselectie" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Configuratiewijzigingen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Overschrijven" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Voor de toegewezen printer, %1, is de volgende configuratiewijziging vereist:" +msgstr[1] "Voor de toegewezen printer, %1, zijn de volgende configuratiewijzigingen vereist:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "De printer %1 is toegewezen. De taak bevat echter een onbekende materiaalconfiguratie." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Wijzig het materiaal %1 van %2 in %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Laad %3 als materiaal %1 (kan niet worden overschreven)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Wijzig de print core %1 van %2 in %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Wijzig het platform naar %1 (kan niet worden overschreven)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Met het overschrijven worden de opgegeven instellingen gebruikt met de bestaande printerconfiguratie. De print kan hierdoor mislukken." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Aluminium" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Gereed" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Afbreken..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Afgebroken" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Mislukt" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pauzeren..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Gepauzeerd" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Hervatten..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Handeling nodig" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Voltooit %1 om %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Verbinding Maken met Printer in het Netwerk" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecteer uw printer in de onderstaande lijst:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Bewerken" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Verwijderen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Vernieuwen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Raadpleeg de handleiding voor probleemoplossing bij printen via het netwerk als uw printer niet in de lijst wordt vermeld" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Type" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Firmwareversie" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Adres" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Deze printer is niet ingesteld voor het hosten van een groep printers." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Deze printer is de host voor een groep van %1 printers." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "De printer op dit adres heeft nog niet gereageerd." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Verbinden" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Ongeldig IP-adres" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Voer een geldig IP-adres in." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Printeradres" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Voer het IP-adres van uw printer in het netwerk in." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Plaats bovenaan" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Verwijderen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Hervatten" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Pauzeren..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Hervatten..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Pauzeren" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Afbreken..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Afbreken" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Weet u zeker dat u %1 bovenaan de wachtrij wilt plaatsen?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Plaats printtaak bovenaan" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Weet u zeker dat u %1 wilt verwijderen?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Printtaak verwijderen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Weet u zeker dat u %1 wilt afbreken?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Printen afbreken" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2245,1413 +3327,435 @@ msgstr "" "- Controleer of de printer verbonden is met het netwerk.\n" "- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Verbind uw printer met het netwerk." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Gebruikershandleidingen online weergegeven" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Sluit de printer aan om uw printopdracht vanuit Cura te volgen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Rastertype" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normaal model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Printen als supportstructuur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Instellingen aanpassen voor overlapping" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Supportstructuur niet laten overlappen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Alleen vulraster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Snijdend raster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Instellingen selecteren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Instellingen Selecteren om Dit Model Aan te Passen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filteren..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Alles weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Invoegtoepassing voor Nabewerking" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts voor Nabewerking" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Een script toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Instellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Actieve scripts voor nabewerking wijzigen." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "In deze print kunnen problemen ontstaan. Klik om tips voor aanpassingen te bekijken." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Het volgende script is actief:" -msgstr[1] "De volgende scripts zijn actief:" +msgid "3D View" +msgstr "3D-weergave" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Kleurenschema" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materiaalkleur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Lijntype" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Snelheid" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Laagdikte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Lijnbreedte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Doorvoer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Compatibiliteitsmodus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Bewegingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Helpers" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Shell" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Vulling" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Wordt gestart" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Alleen bovenlagen weergegeven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 gedetailleerde lagen bovenaan weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Boven-/onderkant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Binnenwand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Meer informatie over anonieme gegevensverzameling" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura verzamelt anonieme gegevens om de printkwaliteit en gebruikerservaring te verbeteren. Hieronder ziet u een voorbeeld van alle gegevens die worden gedeeld:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Ik wil geen anonieme gegevens verzenden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Verzenden van anonieme gegevens toestaan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Terug" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibiliteit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Machine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Platform" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Supportstructuur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Kwaliteit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Technisch informatieblad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Veiligheidsinformatieblad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Richtlijnen voor printen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Website" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Geïnstalleerd" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Aanmelden is vereist voor installeren of bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Materiaalspoelen kopen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Bijgewerkt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Ga naar Marketplace op internet" +msgid "Front View" +msgstr "Weergave voorzijde" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Weergave bovenzijde" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Linkeraanzicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Rechteraanzicht" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Materialen zoeken" +msgid "Object list" +msgstr "Lijst met objecten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "U moet Cura opnieuw starten voordat wijzigingen in packages van kracht worden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sluit %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Invoegtoepassingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Geïnstalleerd" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Wordt geïnstalleerd na opnieuw starten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Aanmelden is vereist voor het bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgraden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "De-installeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Installeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Wijzigingen van uw account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Volgende" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "De volgende packages worden toegevoegd:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "De volgende packages kunnen niet worden geïnstalleerd omdat de Cura-versie niet compatibel is:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "De-installeren bevestigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "U verwijdert materialen en/of profielen die nog in gebruik zijn. Wanneer u het verwijderen bevestigt, worden de volgende materialen/profielen teruggezet naar hun standaardinstellingen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profielen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Bevestigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "U moet de licentie accepteren om de package te installeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Website" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "E-mail" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Versie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Laatst bijgewerkt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Merk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Downloads" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Community-bijdragen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Community-invoegtoepassingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Standaard materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Kan geen verbinding maken met de Cura Package-database. Controleer uw verbinding." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Geïnstalleerde plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Er zijn geen plug-ins geïnstalleerd." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Geïnstalleerde materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Er zijn materialen geïnstalleerd." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Gebundelde plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Gebundelde materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Packages ophalen..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Meld u aan voor geverifieerde plug-ins en materialen voor Ultimaker Cura Enterprise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Marktplaats" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Platform Kalibreren" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Bestand" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Je kan nu je platform afstellen, zodat uw prints er altijd fantastisch uitzien. Als u op 'Naar de volgende positie bewegen' klikt, beweegt de nozzle naar de verschillende instelbare posities." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "B&ewerken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Voor elke positie legt u een stukje papier onder de nozzle en past u de hoogte van het printplatform aan. De hoogte van het printplatform is goed wanneer het papier net door de punt van de nozzle wordt meegenomen." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "Beel&d" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Kalibratie Platform Starten" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "In&stellingen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Beweeg Naar de Volgende Positie" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensies" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Selecteer eventuele upgrades die op deze Ultimaker Original zijn uitgevoerd" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Voo&rkeuren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Verwarmd Platform (officiële kit of zelf gebouwd)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Help" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Verbinding Maken met Printer in het Netwerk" +msgid "New project" +msgstr "Nieuw project" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Weet u zeker dat u een nieuw project wilt starten? Hiermee wordt het platform leeggemaakt en worden eventuele niet-opgeslagen instellingen verwijderd." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecteer uw printer in de onderstaande lijst:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Bewerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Vernieuwen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Raadpleeg de handleiding voor probleemoplossing bij printen via het netwerk als uw printer niet in de lijst wordt vermeld" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Type" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Firmwareversie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Deze printer is niet ingesteld voor het hosten van een groep printers." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Deze printer is de host voor een groep van %1 printers." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "De printer op dit adres heeft nog niet gereageerd." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Verbinden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Ongeldig IP-adres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Voer een geldig IP-adres in." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Printeradres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Voer het IP-adres van uw printer in het netwerk in." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Configuratiewijzigingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Overschrijven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Voor de toegewezen printer, %1, is de volgende configuratiewijziging vereist:" -msgstr[1] "Voor de toegewezen printer, %1, zijn de volgende configuratiewijzigingen vereist:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "De printer %1 is toegewezen. De taak bevat echter een onbekende materiaalconfiguratie." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Wijzig het materiaal %1 van %2 in %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Laad %3 als materiaal %1 (kan niet worden overschreven)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Wijzig de print core %1 van %2 in %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Wijzig het platform naar %1 (kan niet worden overschreven)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Met het overschrijven worden de opgegeven instellingen gebruikt met de bestaande printerconfiguratie. De print kan hierdoor mislukken." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Glas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Plaats bovenaan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Hervatten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pauzeren..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Hervatten..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pauzeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Afbreken..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Afbreken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Weet u zeker dat u %1 bovenaan de wachtrij wilt plaatsen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Plaats printtaak bovenaan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Weet u zeker dat u %1 wilt verwijderen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Printtaak verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Weet u zeker dat u %1 wilt afbreken?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Printen afbreken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Printer beheren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Werk de firmware van uw printer bij om de wachtrij op afstand te beheren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Laden..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Niet beschikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Onbereikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inactief" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Voorbereiden..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Printen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Zonder titel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anoniem" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Hiervoor zijn configuratiewijzigingen vereist" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Details" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Niet‑beschikbare printer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Eerst beschikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Afgebroken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Gereed" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Afbreken..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pauzeren..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Gepauzeerd" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Hervatten..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Handeling nodig" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Voltooit %1 om %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "In wachtrij" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Beheren in browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Er staan geen afdruktaken in de wachtrij. Slice een taak en verzend deze om er een toe te voegen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Printtaken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Totale printtijd" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Wachten op" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Printen via netwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Printen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Printerselectie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Aanmelden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Meld u aan op het Ultimaker-platform" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats\n" -"- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze\n" -"- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Maak een gratis Ultimaker-account aan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Aan het controleren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Account gesynchroniseerd" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Er is een fout opgetreden..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Updates in afwachting installeren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Controleren op accountupdates" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Laatste update: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker-account" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Afmelden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Geen tijdschatting beschikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Geen kostenraming beschikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Voorbeeld" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Tijdschatting" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Materiaalschatting" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Kan niet slicen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Verwerken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Slicen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Het sliceproces starten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Annuleren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Online gids voor probleemoplossing weergegeven" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Volledig Scherm In-/Uitschakelen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Volledig scherm sluiten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Ongedaan &Maken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Opnieuw" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Afsluiten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3D-weergave" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Weergave voorzijde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Weergave bovenzijde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Aanzicht onderzijde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Weergave linkerzijde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Weergave rechterzijde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Cura Configureren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Printer Toevoegen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Pr&inters Beheren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Materialen Beheren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Meer materialen toevoegen van Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "Profiel bijwerken met h&uidige instellingen/overschrijvingen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "Hui&dige wijzigingen verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "Profiel maken op basis van huidige instellingen/overs&chrijvingen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Profielen Beheren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Online &Documentatie Weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Een &Bug Rapporteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Nieuwe functies" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Over..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Verwijder geselecteerde items" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centreer geselecteerde items" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Verveelvoudig geselecteerde items" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Model Verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Model op Platform Ce&ntreren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "Modellen &Groeperen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Groeperen van Modellen Opheffen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Modellen Samen&voegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Model verveelvoudigen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Alle Modellen Selecteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Platform Leegmaken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Alle Modellen Opnieuw Laden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Alle modellen schikken op alle platformen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Alle modellen schikken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Selectie schikken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Alle Modelposities Herstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Alle Modeltransformaties Herstellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Bestand(en) &openen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Nieuw project..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Open Configuratiemap" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Zichtbaarheid Instelling Configureren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marktplaats" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Dit package wordt na opnieuw starten geïnstalleerd." +msgid "Time estimation" +msgstr "Tijdschatting" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Algemeen" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Materiaalschatting" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Instellingen" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Printers" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profielen" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Geen tijdschatting beschikbaar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1 wordt gesloten" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Geen kostenraming beschikbaar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Weet u zeker dat u %1 wilt afsluiten?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Voorbeeld" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Bestand(en) openen" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "Een printer toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Package installeren" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Een netwerkprinter toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Bestand(en) openen" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Een niet-netwerkprinter toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Binnen de door u geselecteerde bestanden zijn een of meer G-code-bestanden aangetroffen. U kunt maximaal één G-code-bestand tegelijk openen. Selecteer maximaal één bestand als u dit wilt openen als G-code-bestand." +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Een cloudprinter toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Printer Toevoegen" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Wachten op cloudreactie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Geen printers gevonden in uw account?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "De volgende printers in uw account zijn toegevoegd in Cura:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Printer handmatig toevoegen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Een printer toevoegen op IP-adres" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Voer het IP-adres van uw printer in." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Toevoegen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Kan geen verbinding maken met het apparaat." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Kunt u geen verbinding maken met uw Ultimaker-printer?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "De printer op dit adres heeft nog niet gereageerd." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Kan de printer niet toevoegen omdat het een onbekende printer is of omdat het niet de host in een groep is." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Terug" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Verbinding maken" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Gebruikersovereenkomst" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Afwijzen en sluiten" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Welkom bij Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"Volg deze stappen voor het instellen van\n" +"Ultimaker Cura. Dit duurt slechts even." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Aan de slag" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Meld u aan op het Ultimaker-platform" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Voeg materiaalinstellingen en plugins uit de Marktplaats toe" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Maak een back-up van uw materiaalinstellingen en plug-ins en synchroniseer deze" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Deel ideeën met 48,000+ gebruikers in de Ultimaker Community of vraag hen om ondersteuning" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Overslaan" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Maak een gratis Ultimaker-account aan" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabrikant" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Profieleigenaar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Printernaam" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Geef uw printer een naam" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Kan in uw netwerk geen printer vinden." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Vernieuwen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Printer toevoegen op IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Een cloudprinter toevoegen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Probleemoplossing" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Help ons Ultimaker Cura te verbeteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura verzamelt anonieme gegevens om de printkwaliteit en gebruikerservaring te verbeteren, waaronder:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Machinetypen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Materiaalgebruik" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Aantal slices" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Instellingen voor printen" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "De gegevens die Ultimaker Cura verzamelt, bevatten geen persoonlijke informatie." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Meer informatie" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "Nieuwe functies" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Leeg" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Release notes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Ongeveer %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "versie: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "End-to-end-oplossing voor fused filament 3D-printen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3660,183 +3764,204 @@ msgstr "" "Cura is ontwikkeld door Ultimaker B.V. in samenwerking met de community.\n" "Cura maakt met trots gebruik van de volgende opensourceprojecten:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Grafische gebruikersinterface (GUI)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Toepassingskader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "G-code-generator" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "InterProcess Communication-bibliotheek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Programmeertaal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI-kader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Bindingen met GUI-kader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "Bindingenbibliotheek C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Indeling voor gegevensuitwisseling" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Ondersteuningsbibliotheek voor wetenschappelijke berekeningen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Ondersteuningsbibliotheek voor snellere berekeningen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Ondersteuningsbibliotheek voor het verwerken van STL-bestanden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Ondersteuningsbibliotheek voor het verwerken van tweedimensionale objecten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Ondersteuningsbibliotheek voor het verwerken van driehoekig rasters" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Ondersteuningsbibliotheek voor het verwerken van 3MF-bestanden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Ondersteuningsbibliotheek voor bestandsmetadata en streaming" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Seriële-communicatiebibliotheek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "ZeroConf-detectiebibliotheek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Bibliotheek met veelhoeken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Statische typecontrole voor Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Rootcertificaten voor het valideren van SSL-betrouwbaarheid" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Python fouttraceringsbibliotheek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Verpakkingsbibliotheek met veelhoeken, ontwikkeld door Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Pythonbindingen voor libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Ondersteuningsbibliotheek voor toegang tot systeemkeyring" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Pythonextensies voor Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Lettertype" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVG-pictogrammen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Implementatie van Linux-toepassing voor kruisdistributie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Projectbestand openen" +msgid "Open file(s)" +msgstr "Bestand(en) openen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Dit is een Cura-projectbestand. Wilt u dit openen als project of de modellen eruit importeren?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Binnen de door u geselecteerde bestanden zijn een of meer projectbestanden aangetroffen. U kunt slechts één projectbestand tegelijk openen. Het wordt aangeraden alleen modellen uit deze bestanden te importeren. Wilt u verdergaan?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Mijn keuze onthouden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Openen als project" +msgid "Import all as models" +msgstr "Allemaal als model importeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Project opslaan" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extruder %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 &materiaal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Materiaal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Bij opnieuw opslaan projectsamenvatting niet weergeven" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Modellen importeren" +msgid "Save" +msgstr "Opslaan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Wijzigingen verwijderen of behouden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3847,1206 +3972,144 @@ msgstr "" "Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?\n" "U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Profielinstellingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Huidige wijzigingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Altijd vragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Verwijderen en nooit meer vragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Behouden en nooit meer vragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Wijzigingen verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Wijzigingen behouden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Projectbestand openen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Binnen de door u geselecteerde bestanden zijn een of meer projectbestanden aangetroffen. U kunt slechts één projectbestand tegelijk openen. Het wordt aangeraden alleen modellen uit deze bestanden te importeren. Wilt u verdergaan?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Dit is een Cura-projectbestand. Wilt u dit openen als project of de modellen eruit importeren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Mijn keuze onthouden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Allemaal als model importeren" +msgid "Open as project" +msgstr "Openen als project" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Project opslaan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extruder %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 &materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Bij opnieuw opslaan projectsamenvatting niet weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Opslaan" +msgid "Import models" +msgstr "Modellen importeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Geselecteerd model printen met %1" -msgstr[1] "Geselecteerde modellen printen met %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Zonder titel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Bestand" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "B&ewerken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "Beel&d" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "In&stellingen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensies" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Voo&rkeuren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Help" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Nieuw project" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Weet u zeker dat u een nieuw project wilt starten? Hiermee wordt het platform leeggemaakt en worden eventuele niet-opgeslagen instellingen verwijderd." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Marktplaats" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configuraties" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Deze configuratie is niet beschikbaar omdat %1 niet wordt herkend. Ga naar %2 om het juiste materiaalprofiel te downloaden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marktplaats" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Beschikbare configuraties laden vanaf de printer..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "De configuraties zijn niet beschikbaar omdat de printer niet verbonden is." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Configuratie selecteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Configuraties" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Aangepast" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Printer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Ingeschakeld" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Gebruik lijm bij deze combinatie van materialen voor een betere hechting." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Geselecteerd model printen met:" -msgstr[1] "Geselecteerde modellen printen met:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Geselecteerd model verveelvoudigen" -msgstr[1] "Geselecteerde modellen verveelvoudigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Aantal exemplaren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Project opslaan..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exporteren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Selectie Exporteren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favorieten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Standaard" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Bestand(en) openen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Netwerkprinters" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Lokale printers" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "&Recente bestanden openen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Project opslaan..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Printer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Instellen als Actieve Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder inschakelen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder uitschakelen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Zichtbare instellingen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Alle categorieën samenvouwen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Instelling voor zichtbaarheid beheren..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Camerapositie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Camerabeeld" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectief" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Orthografisch" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Platform" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Niet met een printer verbonden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Printer accepteert geen opdrachten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "In onderhoud. Controleer de printer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Verbinding met de printer is verbroken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Printen..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Gepauzeerd" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Voorbereiden..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Verwijder de print" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Printen Afbreken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Weet u zeker dat u het printen wilt afbreken?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Is geprint als support." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Andere modellen die met dit model overlappen, zijn gewijzigd." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "De vulling die met dit model overlapt, is aangepast." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Overlappingen worden in dit model niet ondersteund." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Overschrijft %1 instelling." -msgstr[1] "Overschrijft %1 instellingen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Lijst met objecten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Valuta:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Thema:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Automatisch slicen bij wijzigen van instellingen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Automatisch slicen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Gedrag kijkvenster" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Geef niet-ondersteunde gedeelten van het model een rode markering. Zonder ondersteuning zullen deze gedeelten niet goed worden geprint." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Overhang weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Markeer ontbrekende of ongebruikelijke oppervlakken van het model met behulp van waarschuwingstekens. De toolpaths zullen vaak delen van de beoogde geometrie missen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Modelfouten weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Verplaatst de camera zodanig dat wanneer een model wordt geselecteerd, het model in het midden van het beeld wordt weergegeven" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Camera centreren wanneer een item wordt geselecteerd" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Moet het standaard zoomgedrag van Cura worden omgekeerd?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Keer de richting van de camerazoom om." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Moet het zoomen in de richting van de muis gebeuren?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Zoomen in de richting van de muis wordt niet ondersteund in het orthografische perspectief." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Zoomen in de richting van de muis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Moeten modellen op het platform zodanig worden verplaatst dat ze elkaar niet meer doorsnijden?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Modellen gescheiden houden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Moeten modellen in het printgebied omlaag worden gebracht zodat ze het platform raken?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Modellen automatisch op het platform laten vallen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Toon het waarschuwingsbericht in de G-code-lezer." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Waarschuwingsbericht in de G-code-lezer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Moet de laag in de compatibiliteitsmodus worden geforceerd?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Compatibiliteitsmodus voor laagweergave forceren (opnieuw opstarten vereist)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Moet Cura openen op de locatie waar het gesloten werd?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Herstel de vensterpositie bij het opstarten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Welk type cameraweergave moet worden gebruikt?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Cameraweergave:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspectief" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Orthografisch" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Bestanden openen en opslaan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Wilt u dat bestanden vanaf de desktop of externe toepassingen in dezelfde instantie van Cura worden geopend?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Gebruik één instantie van Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Moeten modellen worden geschaald naar het werkvolume als ze te groot zijn?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Grote modellen schalen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Een model wordt mogelijk extreem klein weergegeven als de eenheden bijvoorbeeld in meters zijn in plaats van in millimeters. Moeten dergelijke modellen worden opgeschaald?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Extreem kleine modellen schalen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Moeten modellen worden geselecteerd nadat ze zijn geladen?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Modellen selecteren wanneer ze geladen zijn" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Moet er automatisch een op de printernaam gebaseerde voorvoegsel aan de naam van de printtaak worden toegevoegd?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Machinevoorvoegsel toevoegen aan taaknaam" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Dient er een samenvatting te worden weergegeven wanneer een projectbestand wordt opgeslagen?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Dialoogvenster voor samenvatting weergeven tijdens het opslaan van een project" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Standaardgedrag tijdens het openen van een projectbestand" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Standaardgedrag tijdens het openen van een projectbestand: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Altijd vragen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Altijd als project openen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Altijd modellen importeren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Wanneer u wijzigingen hebt aangebracht aan een profiel en naar een ander profiel wisselt, wordt een dialoogvenster weergegeven waarin u wordt gevraagd of u de aanpassingen wilt behouden. U kunt ook een standaardgedrag kiezen en het dialoogvenster nooit meer laten weergeven." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Profielen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Standaardgedrag voor gewijzigde instellingen wanneer er naar een ander profiel wordt overgeschakeld: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Gewijzigde instellingen altijd verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Gewijzigde instellingen altijd naar nieuw profiel overbrengen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Moet Cura op updates controleren wanneer het programma wordt gestart?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Bij starten op updates controleren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Mogen anonieme gegevens over uw print naar Ultimaker worden verzonden? Opmerking: er worden geen modellen, IP-adressen of andere persoonlijk identificeerbare gegevens verzonden of opgeslagen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(Anonieme) printgegevens verzenden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Meer informatie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activeren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Hernoemen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Maken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Dupliceren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Importeren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Exporteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Synchroniseren met printers" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Printer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Verwijderen Bevestigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Materiaal Importeren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Kon materiaal %1 niet importeren: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiaal %1 is geïmporteerd" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Materiaal Exporteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Exporteren van materiaal naar %1 is mislukt: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiaal is geëxporteerd naar %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Alle materialen exporteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informatie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Diameterwijziging bevestigen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Het nieuwe filament is ingesteld op %1 mm. Dit is niet compatibel met de huidige extruder. Wilt u verder gaan?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Naam" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Type Materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Kleur" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Eigenschappen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Dichtheid" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diameter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Kostprijs Filament" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Gewicht filament" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Lengte filament" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Kostprijs per meter" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Dit materiaal is gekoppeld aan %1 en deelt hiermee enkele eigenschappen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Materiaal ontkoppelen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Beschrijving" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Gegevens Hechting" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Instellingen voor printen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Maken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Dupliceren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Profiel Maken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Geef een naam op voor dit profiel." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Profiel Dupliceren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Profiel Hernoemen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profiel Importeren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profiel Exporteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Printer: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Profiel bijwerken met huidige instellingen/overschrijvingen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Huidige wijzigingen verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Dit profiel gebruikt de standaardinstellingen die door de printer zijn opgegeven, dus er zijn hiervoor geen instellingen/overschrijvingen in de onderstaande lijst." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Uw huidige instellingen komen overeen met het geselecteerde profiel." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Algemene Instellingen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Berekend" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Instelling" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profiel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Huidig" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Eenheid" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Zichtbaarheid Instellen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Alles aanvinken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "De doeltemperatuur van de hot-end. De hot-end wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van de hot-end uitgeschakeld." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "De huidige temperatuur van dit hotend." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "De temperatuur waarnaar het hotend moet worden voorverwarmd." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annuleren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Voorverwarmen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Verwarm het hotend voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het hotend wordt verwarmd. Zo hoeft u niet te wachten totdat het hotend is opgewarmd wanneer u gereed bent om te printen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "De kleur van het materiaal in deze extruder." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Het materiaal in deze extruder." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "De nozzle die in deze extruder geplaatst is." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Platform" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "De doeltemperatuur van het verwarmde bed. Het bed wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van het bed uitgeschakeld." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "De huidige temperatuur van het verwarmde bed." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "De temperatuur waarnaar het bed moet worden voorverwarmd." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Verwarm het bed voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het bed wordt verwarmd. Zo hoeft u niet te wachten totdat het bed opgewarmd is wanneer u gereed bent om te printen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Printerbediening" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Jog-positie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Jog-afstand" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-code verzenden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Verzend een aangepaste G-code-opdracht naar de verbonden printer. Druk op Enter om de opdracht te verzenden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Er is geen verbinding met de printer." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "De cloudprinter is offline. Controleer of de printer is ingeschakeld en verbonden is met internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Deze printer is niet gekoppeld aan uw account. Ga naar de Ultimaker Digital Factory om een verbinding tot stand te brengen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "De cloudverbinding is momenteel niet beschikbaar. Log in om verbinding te maken met de cloudprinter." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "De cloudverbinding is momenteel niet beschikbaar. Controleer uw internetverbinding." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Printer toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Printers beheren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Verbonden printers" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Vooraf ingestelde printers" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Actieve print" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Taaknaam" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Printtijd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Geschatte resterende tijd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "De cloudprinter is offline. Controleer of de printer is ingeschakeld en verbonden is met internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Deze printer is niet gekoppeld aan uw account. Ga naar de Ultimaker Digital Factory om een verbinding tot stand te brengen." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "De cloudverbinding is momenteel niet beschikbaar. Log in om verbinding te maken met de cloudprinter." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "De cloudverbinding is momenteel niet beschikbaar. Controleer uw internetverbinding." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Printer toevoegen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Printers beheren" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Verbonden printers" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Vooraf ingestelde printers" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Instellingen voor printen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "De printinstelling is uitgeschakeld. Het G-code-bestand kan niet worden gewijzigd." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Profiel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5057,120 +4120,1704 @@ msgstr "" "\n" "Klik om het profielbeheer te openen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Aangepaste profielen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Huidige wijzigingen verwijderen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Aanbevolen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Aangepast" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Aan" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Uit" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimenteel" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "Er is geen %1 profiel voor de configuratie in extruder %2. In plaats daarvan wordt de standaardintentie gebruikt" msgstr[1] "Er is geen %1 profiel voor de configuraties in extruders %2. In plaats daarvan wordt de standaardintentie gebruikt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "De printinstelling is uitgeschakeld. Het G-code-bestand kan niet worden gewijzigd." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Aanbevolen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Aangepast" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Aan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Uit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Experimenteel" +msgid "Profiles" +msgstr "Profielen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Hechting" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Het printen van een brim of raft inschakelen. Deze optie zorgt ervoor dat er extra materiaal rondom of onder het object wordt neergelegd, dat er naderhand eenvoudig kan worden afgesneden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Geleidelijke vulling" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Met geleidelijke vulling neemt de hoeveelheid vulling naar boven toe." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "U hebt enkele profielinstellingen aangepast. Ga naar de aangepaste modus als u deze wilt wijzigen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Supportstructuur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde.\n" -"\n" -"Klik om deze instellingen zichtbaar te maken." +msgid "Gradual infill" +msgstr "Geleidelijke vulling" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Met geleidelijke vulling neemt de hoeveelheid vulling naar boven toe." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Hechting" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Het printen van een brim of raft inschakelen. Deze optie zorgt ervoor dat er extra materiaal rondom of onder het object wordt neergelegd, dat er naderhand eenvoudig kan worden afgesneden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Project opslaan..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Netwerkprinters" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Lokale printers" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Materiaal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favorieten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Standaard" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Geselecteerd model printen met:" +msgstr[1] "Geselecteerde modellen printen met:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Geselecteerd model verveelvoudigen" +msgstr[1] "Geselecteerde modellen verveelvoudigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Aantal exemplaren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Project opslaan..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exporteren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Selectie Exporteren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Configuraties" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Aangepast" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Printer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Ingeschakeld" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Materiaal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Gebruik lijm bij deze combinatie van materialen voor een betere hechting." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "De configuratie van deze extruder is niet toegestaan en verhindert slicen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Er zijn geen profielen die compatibel zijn met de configuratie van deze extruder." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Configuratie selecteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Configuraties" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Beschikbare configuraties laden vanaf de printer..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "De configuraties zijn niet beschikbaar omdat de printer niet verbonden is." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Deze configuratie is niet beschikbaar omdat %1 niet wordt herkend. Ga naar %2 om het juiste materiaalprofiel te downloaden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marktplaats" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Bestand(en) openen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Printer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Materiaal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Instellen als Actieve Extruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Extruder inschakelen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Extruder uitschakelen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "&Recente bestanden openen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Zichtbare instellingen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Alle categorieën samenvouwen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Instelling voor zichtbaarheid beheren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Camerapositie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Camerabeeld" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectief" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Orthografisch" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "&Platform" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Type weergeven" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Is geprint als support." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Andere modellen die met dit model overlappen, zijn gewijzigd." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "De vulling die met dit model overlapt, is aangepast." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Overlappingen worden in dit model niet ondersteund." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Overschrijft %1 instelling." +msgstr[1] "Overschrijft %1 instellingen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profielen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Activeren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Maken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Dupliceren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Hernoemen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Importeren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Exporteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Profiel Maken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Geef een naam op voor dit profiel." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Profiel Dupliceren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Verwijderen Bevestigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Profiel Hernoemen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Profiel Importeren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profiel Exporteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Printer: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Profiel bijwerken met huidige instellingen/overschrijvingen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Dit profiel gebruikt de standaardinstellingen die door de printer zijn opgegeven, dus er zijn hiervoor geen instellingen/overschrijvingen in de onderstaande lijst." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Uw huidige instellingen komen overeen met het geselecteerde profiel." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Algemene Instellingen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Algemeen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Valuta:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Thema:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Automatisch slicen bij wijzigen van instellingen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Automatisch slicen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Gedrag kijkvenster" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Geef niet-ondersteunde gedeelten van het model een rode markering. Zonder ondersteuning zullen deze gedeelten niet goed worden geprint." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Overhang weergeven" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Markeer ontbrekende of ongebruikelijke oppervlakken van het model met behulp van waarschuwingstekens. De toolpaths zullen vaak delen van de beoogde geometrie missen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Modelfouten weergeven" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Verplaatst de camera zodanig dat wanneer een model wordt geselecteerd, het model in het midden van het beeld wordt weergegeven" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Camera centreren wanneer een item wordt geselecteerd" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Moet het standaard zoomgedrag van Cura worden omgekeerd?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Keer de richting van de camerazoom om." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Moet het zoomen in de richting van de muis gebeuren?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Zoomen in de richting van de muis wordt niet ondersteund in het orthografische perspectief." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Zoomen in de richting van de muis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Moeten modellen op het platform zodanig worden verplaatst dat ze elkaar niet meer doorsnijden?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Modellen gescheiden houden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Moeten modellen in het printgebied omlaag worden gebracht zodat ze het platform raken?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Modellen automatisch op het platform laten vallen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Toon het waarschuwingsbericht in de G-code-lezer." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Waarschuwingsbericht in de G-code-lezer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Moet de laag in de compatibiliteitsmodus worden geforceerd?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Compatibiliteitsmodus voor laagweergave forceren (opnieuw opstarten vereist)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Moet Cura openen op de locatie waar het gesloten werd?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Herstel de vensterpositie bij het opstarten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Welk type cameraweergave moet worden gebruikt?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Cameraweergave:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspectief" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Orthografisch" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Bestanden openen en opslaan" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Wilt u dat bestanden vanaf de desktop of externe toepassingen in dezelfde instantie van Cura worden geopend?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Gebruik één instantie van Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Moet het platform worden leeggemaakt voordat u een nieuw model laadt in de dezelfde instantie van Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Maak platform leeg voordat u een model laadt in dezelfde instantie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Moeten modellen worden geschaald naar het werkvolume als ze te groot zijn?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Grote modellen schalen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Een model wordt mogelijk extreem klein weergegeven als de eenheden bijvoorbeeld in meters zijn in plaats van in millimeters. Moeten dergelijke modellen worden opgeschaald?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Extreem kleine modellen schalen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Moeten modellen worden geselecteerd nadat ze zijn geladen?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Modellen selecteren wanneer ze geladen zijn" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Moet er automatisch een op de printernaam gebaseerde voorvoegsel aan de naam van de printtaak worden toegevoegd?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Machinevoorvoegsel toevoegen aan taaknaam" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Dient er een samenvatting te worden weergegeven wanneer een projectbestand wordt opgeslagen?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Dialoogvenster voor samenvatting weergeven tijdens het opslaan van een project" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Standaardgedrag tijdens het openen van een projectbestand" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Standaardgedrag tijdens het openen van een projectbestand: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Altijd vragen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Altijd als project openen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Altijd modellen importeren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Wanneer u wijzigingen hebt aangebracht aan een profiel en naar een ander profiel wisselt, wordt een dialoogvenster weergegeven waarin u wordt gevraagd of u de aanpassingen wilt behouden. U kunt ook een standaardgedrag kiezen en het dialoogvenster nooit meer laten weergeven." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Standaardgedrag voor gewijzigde instellingen wanneer er naar een ander profiel wordt overgeschakeld: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Gewijzigde instellingen altijd verwijderen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Gewijzigde instellingen altijd naar nieuw profiel overbrengen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Mogen anonieme gegevens over uw print naar Ultimaker worden verzonden? Opmerking: er worden geen modellen, IP-adressen of andere persoonlijk identificeerbare gegevens verzonden of opgeslagen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(Anonieme) printgegevens verzenden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Meer informatie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Updates" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Moet Cura op updates controleren wanneer het programma wordt gestart?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Bij starten op updates controleren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Kijk bij het controleren op updates alleen naar stabiele releases." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Alleen stabiele releases" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Kijk bij het controleren op updates naar stabiele releases en bèta-releases." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Stabiele releases en bèta-releases" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Moet er elke keer dat Cura wordt opgestart automatisch worden gecontroleerd op nieuwe plug-ins? Wij raden u ten zeerste aan dit niet uit te schakelen!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Meldingen ontvangen als er updates zijn voor pug-ins" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Informatie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Diameterwijziging bevestigen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Het nieuwe filament is ingesteld op %1 mm. Dit is niet compatibel met de huidige extruder. Wilt u verder gaan?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Naam" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Type Materiaal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Kleur" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Eigenschappen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Dichtheid" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Diameter" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Kostprijs Filament" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Gewicht filament" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Lengte filament" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Kostprijs per meter" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Dit materiaal is gekoppeld aan %1 en deelt hiermee enkele eigenschappen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Materiaal ontkoppelen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Beschrijving" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Gegevens Hechting" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Maken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Dupliceren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Synchroniseren met printers" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Printer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Materiaal Importeren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Kon materiaal %1 niet importeren: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Materiaal %1 is geïmporteerd" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Materiaal Exporteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Exporteren van materiaal naar %1 is mislukt: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Materiaal is geëxporteerd naar %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Synchroniseer materialen met printers" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Synchroniseer materialen met printers" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Met een paar simpele stappen kunt u al uw materiaalprofielen synchroniseren met uw printers." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Starten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Waarom moet ik materiaalprofielen synchroniseren?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Aanmelden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Om de materiaalprofielen automatisch te synchroniseren met alle printers die op Digital Factory zijn aangesloten, moet u zich aanmelden bij Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Materialen synchroniseren met USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "De volgende printers ontvangen de nieuwe materiaalprofielen:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Er is iets misgegaan bij het verzenden van de materialen naar de printers." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Materiaalprofielen zijn gesynchroniseerd met de volgende printers:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Probleemoplossing" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Ontbreken er printers?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Controleer of alle printers zijn ingeschakeld en zijn aangesloten op Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Lijst vernieuwen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Probeer het opnieuw" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Klaar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Synchroniseren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Synchroniseren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Geen printers gevonden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Mogelijk zijn er geen compatibele printers op Digital Factory aangesloten. Controleer of de printer is aangesloten en de nieuwste firmware op de printer" +" is geïnstalleerd." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Meer informatie over het aansluiten van de printer op Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Vernieuwen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Materiaalprofielen synchroniseren via USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Volg onderstaande stappen om nieuwe materiaalprofielen op uw printer te laden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Klik op de knop Materiaalarchief exporteren." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Bewaar het .umm-bestand op een USB-stick." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Steek de USB-stick in de printer en start de procedure om nieuwe materiaalprofielen te laden." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Hoe u nieuwe materiaalprofielen laadt op Mijn printer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Materiaalarchief exporteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Alle materialen exporteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Zichtbaarheid Instellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Alles aanvinken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Printers" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Berekend" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Instelling" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profiel" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Huidig" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Eenheid" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Niet met een printer verbonden" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Printer accepteert geen opdrachten" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "In onderhoud. Controleer de printer" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Verbinding met de printer is verbroken" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Printen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Gepauzeerd" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Voorbereiden..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Verwijder de print" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Printen Afbreken" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Weet u zeker dat u het printen wilt afbreken?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Geselecteerd model printen met %1" +msgstr[1] "Geselecteerde modellen printen met %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Mijn printers" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Volg uw printers in Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Maak printprojecten aan in Digital Library." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Printtaken" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Volg printtaken en print opnieuw vanuit uw printgeschiedenis." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Breid Ultimaker Cura uit met plug-ins en materiaalprofielen." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Word een 3D-printexpert met Ultimaker e-learning." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ondersteuning van Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Leer hoe u aan de slag gaat met Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Stel een vraag" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consulteer de Ultimaker Community." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Een fout melden" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Laat ontwikkelaars weten dat er iets misgaat." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Bezoek de Ultimaker-website." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Printerbediening" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Jog-positie" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Jog-afstand" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-code verzenden" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Verzend een aangepaste G-code-opdracht naar de verbonden printer. Druk op Enter om de opdracht te verzenden." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Extruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "De doeltemperatuur van de hot-end. De hot-end wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van de hot-end uitgeschakeld." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "De huidige temperatuur van dit hotend." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "De temperatuur waarnaar het hotend moet worden voorverwarmd." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Annuleren" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Voorverwarmen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Verwarm het hotend voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het hotend wordt verwarmd. Zo hoeft u niet te wachten totdat het hotend is opgewarmd wanneer u gereed bent om te printen." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "De kleur van het materiaal in deze extruder." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Het materiaal in deze extruder." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "De nozzle die in deze extruder geplaatst is." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Er is geen verbinding met de printer." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Platform" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "De doeltemperatuur van het verwarmde bed. Het bed wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van het bed uitgeschakeld." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "De huidige temperatuur van het verwarmde bed." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "De temperatuur waarnaar het bed moet worden voorverwarmd." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Verwarm het bed voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het bed wordt verwarmd. Zo hoeft u niet te wachten totdat het bed opgewarmd is wanneer u gereed bent om te printen." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Aanmelden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats\n" +"- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze\n" +"- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Maak een gratis Ultimaker-account aan" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Laatste update: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker-account" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Afmelden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Aan het controleren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Account gesynchroniseerd" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Er is een fout opgetreden..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Updates in afwachting installeren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Controleren op accountupdates" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Zonder titel" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Geen items om uit te kiezen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Online gids voor probleemoplossing weergegeven" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Volledig Scherm In-/Uitschakelen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Volledig scherm sluiten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Ongedaan &Maken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Opnieuw" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Afsluiten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3D-weergave" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Weergave voorzijde" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Weergave bovenzijde" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Aanzicht onderzijde" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Weergave linkerzijde" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Weergave rechterzijde" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Cura Configureren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Printer Toevoegen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Pr&inters Beheren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Materialen Beheren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Meer materialen toevoegen van Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "Profiel bijwerken met h&uidige instellingen/overschrijvingen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "Hui&dige wijzigingen verwijderen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "Profiel maken op basis van huidige instellingen/overs&chrijvingen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Profielen Beheren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Online &Documentatie Weergeven" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Een &Bug Rapporteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Nieuwe functies" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Over..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Verwijder geselecteerde items" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centreer geselecteerde items" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Verveelvoudig geselecteerde items" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Model Verwijderen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Model op Platform Ce&ntreren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "Modellen &Groeperen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Groeperen van Modellen Opheffen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Modellen Samen&voegen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Model verveelvoudigen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Alle Modellen Selecteren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Platform Leegmaken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Alle Modellen Opnieuw Laden" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Alle modellen schikken op alle platformen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Alle modellen schikken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Selectie schikken" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Alle Modelposities Herstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Alle Modeltransformaties Herstellen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Bestand(en) &openen..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Nieuw project..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Open Configuratiemap" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Zichtbaarheid Instelling Configureren..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Marktplaats" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Deze instelling wordt niet gebruikt omdat alle instellingen waarop deze invloed heeft, worden overschreven." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Beïnvloedt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Beïnvloed door" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de instelling wijzigt, wordt de waarde voor alle extruders gewijzigd." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5181,7 +5828,7 @@ msgstr "" "\n" "Klik om de waarde van het profiel te herstellen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5192,509 +5839,93 @@ msgstr "" "\n" "Klik om de berekende waarde te herstellen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Instellingen zoeken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Waarde naar alle extruders kopiëren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Alle gewijzigde waarden naar alle extruders kopiëren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Deze instelling verbergen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Deze instelling verbergen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Deze instelling zichtbaar houden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D-weergave" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Weergave voorzijde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Weergave bovenzijde" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Linkeraanzicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Rechteraanzicht" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Type weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Een cloudprinter toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Wachten op cloudreactie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Geen printers gevonden in uw account?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "De volgende printers in uw account zijn toegevoegd in Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Printer handmatig toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabrikant" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Profieleigenaar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Printernaam" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Geef uw printer een naam" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Een printer toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Een netwerkprinter toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Een niet-netwerkprinter toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Kan in uw netwerk geen printer vinden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Vernieuwen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Printer toevoegen op IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Een cloudprinter toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Probleemoplossing" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Een printer toevoegen op IP-adres" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Voer het IP-adres van uw printer in." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Kan geen verbinding maken met het apparaat." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Kunt u geen verbinding maken met uw Ultimaker-printer?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "De printer op dit adres heeft nog niet gereageerd." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Kan de printer niet toevoegen omdat het een onbekende printer is of omdat het niet de host in een groep is." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Terug" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Verbinding maken" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Release notes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Voeg materiaalinstellingen en plugins uit de Marktplaats toe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Maak een back-up van uw materiaalinstellingen en plug-ins en synchroniseer deze" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Deel ideeën met 48,000+ gebruikers in de Ultimaker Community of vraag hen om ondersteuning" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Maak een gratis Ultimaker-account aan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Overslaan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Help ons Ultimaker Cura te verbeteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura verzamelt anonieme gegevens om de printkwaliteit en gebruikerservaring te verbeteren, waaronder:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Machinetypen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Materiaalgebruik" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Aantal slices" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Instellingen voor printen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "De gegevens die Ultimaker Cura verzamelt, bevatten geen persoonlijke informatie." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Meer informatie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Leeg" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Gebruikersovereenkomst" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Afwijzen en sluiten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Welkom bij Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" -"Volg deze stappen voor het instellen van\n" -"Ultimaker Cura. Dit duurt slechts even." +"Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde.\n" +"\n" +"Klik om deze instellingen zichtbaar te maken." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Aan de slag" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Dit package wordt na opnieuw starten geïnstalleerd." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Instellingen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "%1 wordt gesloten" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Weet u zeker dat u %1 wilt afsluiten?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Package installeren" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Bestand(en) openen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Binnen de door u geselecteerde bestanden zijn een of meer G-code-bestanden aangetroffen. U kunt maximaal één G-code-bestand tegelijk openen. Selecteer maximaal één bestand als u dit wilt openen als G-code-bestand." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Printer Toevoegen" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "Nieuwe functies" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Geen items om uit te kiezen" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Modelcontrole" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-lezer" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-schrijver" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-lezer" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Een back-up maken van uw configuratie en deze herstellen." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-back-ups" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine-back-end" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-profiellezer" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-profielschrijver" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controleert op firmware-updates." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-updatecontrole" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Biedt machineacties voor het bijwerken van de firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-updater" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lezer voor gecomprimeerde G-code" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Schrijver voor gecomprimeerde G-code" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code-profiellezer" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code-lezer" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Met deze optie schrijft u G-code naar een bestand." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code-schrijver" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Afbeeldinglezer" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lezer voor Profielen van oudere Cura-versies" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Actie machine-instellingen" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Deze optie biedt een controlestadium in Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Controlestadium" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5705,85 +5936,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Gereedschap voor Instellingen per Model" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" +msgid "Provides support for importing Cura profiles." +msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Nabewerking" +msgid "Cura Profile Reader" +msgstr "Cura-profiellezer" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Deze optie biedt een voorbereidingsstadium in Cura." +msgid "Provides support for reading X3D files." +msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Stadium voorbereiden" +msgid "X3D Reader" +msgstr "X3D-lezer" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Deze optie biedt een voorbeeldstadium in Cura." +msgid "Backup and restore your configuration." +msgstr "Een back-up maken van uw configuratie en deze herstellen." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Voorbeeldstadium" +msgid "Cura Backups" +msgstr "Cura-back-ups" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Invoegtoepassing voor Verwijderbaar uitvoerapparaat" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentrylogger" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Hiermee geeft u de simulatieweergave weer." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Simulatieweergave" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Slice-informatie" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Biedt een normale, solide rasterweergave." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Solide weergave" +msgid "Machine Settings Action" +msgstr "Actie machine-instellingen" #: SupportEraser/plugin.json msgctxt "description" @@ -5795,35 +5986,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Supportwisser" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Nieuwe Cura-packages zoeken, beheren en installeren." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Werkset" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Biedt ondersteuning voor het lezen van modelbestanden." +msgid "Provides a machine actions for updating firmware." +msgstr "Biedt machineacties voor het bijwerken van de firmware." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh-lezer" +msgid "Firmware Updater" +msgstr "Firmware-updater" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het lezen van Ultimaker Format Packages." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-lezer" +msgid "Legacy Cura Profile Reader" +msgstr "Lezer voor Profielen van oudere Cura-versies" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-lezer" #: UFPWriter/plugin.json msgctxt "description" @@ -5835,6 +6036,136 @@ msgctxt "name" msgid "UFP Writer" msgstr "UFP-schrijver" +#: SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" + +#: SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentrylogger" + +#: GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." + +#: GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code-profiellezer" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Deze optie biedt een voorbeeldstadium in Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Voorbeeldstadium" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Biedt de röntgenweergave." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgenweergave" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine-back-end" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-lezer" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lezer voor gecomprimeerde G-code" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Nabewerking" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-profielschrijver" + +#: USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." + +#: USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB-printen" + +#: PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Deze optie biedt een voorbereidingsstadium in Cura." + +#: PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Stadium voorbereiden" + +#: GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." + +#: GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code-lezer" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Afbeeldinglezer" + #: UltimakerMachineActions/plugin.json msgctxt "description" msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." @@ -5845,45 +6176,95 @@ msgctxt "name" msgid "Ultimaker machine actions" msgstr "Acties Ultimaker-machines" -#: UM3NetworkPrinting/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Hiermee beheert u netwerkverbindingen naar Ultimaker-netwerkprinters." +msgid "Writes g-code to a compressed archive." +msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." -#: UM3NetworkPrinting/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker-netwerkverbinding" +msgid "Compressed G-code Writer" +msgstr "Schrijver voor gecomprimeerde G-code" -#: USBPrinting/plugin.json +#: FirmwareUpdateChecker/plugin.json msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de invoegtoepassing kan tevens de firmware worden bijgewerkt." +msgid "Checks for firmware updates." +msgstr "Controleert op firmware-updates." -#: USBPrinting/plugin.json +#: FirmwareUpdateChecker/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB-printen" +msgid "Firmware Update Checker" +msgstr "Firmware-updatecontrole" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Versie-upgrade van 2.1 naar 2.2" +msgid "Slice info" +msgstr "Slice-informatie" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: XmlMaterialProfile/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: XmlMaterialProfile/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Versie-upgrade van 2.2 naar 2.4" +msgid "Material Profiles" +msgstr "Materiaalprofielen" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Nieuwe Cura-packages zoeken, beheren en installeren." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Werkset" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Met deze optie schrijft u G-code naar een bestand." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code-schrijver" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Hiermee geeft u de simulatieweergave weer." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Simulatieweergave" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Versie-upgrade van 4.5 naar 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5895,55 +6276,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Versie-upgrade van 2.5 naar 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Versie-upgrade van 2.6 naar 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Versie-upgrade van 2.7 naar 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Versie-upgrade van 3.0 naar 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Versie-upgrade van 3.2 naar 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Versie-upgrade van 3.3 naar 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Versie-upgrade van 4.7 naar 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5955,35 +6306,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Versie-upgrade van 3.4 naar 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Versie-upgrade van 3.5 naar 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Versie-upgrade van 2.1 naar 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Versie-upgrade van 4.0 naar 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Versie-upgrade van 3.2 naar 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Versie-upgrade van 4.1 naar 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Versie-upgrade van 4.8 naar 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Versie-upgrade van 4.6.2 naar 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6005,66 +6366,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Versie-upgrade van 4.3 naar 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Versie-upgrade van 4.4 naar 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Versie-upgrade van 4.5 naar 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Versie-upgrade van 4.6.2 naar 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Versie-upgrade van 4.7 naar 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Versie-upgrade van 4.8 naar 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6075,35 +6376,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Versie-upgrade 4.9 naar 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-lezer" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Versie-upgrade van 2.7 naar 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaalprofielen" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Versie-upgrade van 2.6 naar 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Biedt de röntgenweergave." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgenweergave" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Versie-upgrade van 4.11 naar 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Versie-upgrade van 3.3 naar 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Versie-upgrade van 3.0 naar 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Versie-upgrade van 4.0 naar 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Versie-upgrade van 4.4 naar 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Versie-upgrade van 2.2 naar 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Versie-upgrade van 4.1 naar 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Versie-upgrade van 3.5 naar 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Hiermee beheert u netwerkverbindingen naar Ultimaker-netwerkprinters." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker-netwerkverbinding" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Biedt ondersteuning voor het lezen van modelbestanden." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh-lezer" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het lezen van Ultimaker Format Packages." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-lezer" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Biedt een normale, solide rasterweergave." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Solide weergave" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-schrijver" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Deze optie biedt een controlestadium in Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Controlestadium" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Modelcontrole" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Verzend en controleer overal printtaken met uw Ultimaker-account." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Verbinden met Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Vanuit Ultimaker Cura kunt u de webcamfeeds voor cloudprinters niet bekijken." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "Er zijn mogelijk nieuwe functies of bugfixes beschikbaar voor uw {machine_name}. Als u nog niet over de nieuwste versie beschikt, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Nieuwe firmware voor %s beschikbaar" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." @@ -6331,7 +6792,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@description" #~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Krijg invoegtoepassingen en materialen die door Ultimaker zijn geverifieerd" +#~ msgstr "Krijg plug-ins en materialen die door Ultimaker zijn geverifieerd" #~ msgctxt "@label The argument is a username." #~ msgid "Hi %1" @@ -6517,8 +6978,8 @@ msgstr "Röntgenweergave" #~ "You need to accept this license to install this plugin.\n" #~ "Do you agree with the terms below?" #~ msgstr "" -#~ "Deze invoegtoepassing bevat een licentie.\n" -#~ "U moet akkoord gaan met deze licentie om deze invoegtoepassing te mogen installeren.\n" +#~ "Deze plug-in bevat een licentie.\n" +#~ "U moet akkoord gaan met deze licentie om deze plug-in te mogen installeren.\n" #~ "Gaat u akkoord met de onderstaande voorwaarden?" #~ msgctxt "@action:button" @@ -7913,7 +8374,7 @@ msgstr "Röntgenweergave" #~ " - Thomas Karl Pietrowski" #~ msgstr "" #~ "Beste klant,\n" -#~ "Momenteel voert u deze invoegtoepassing uit op een ander besturingssysteem dan Windows. Deze invoegtoepassing werkt alleen op systemen waarop Windows en SolidWorks met een geldige licentie zijn geïnstalleerd. Installeer deze invoegtoepassing op een Windows-systeem waarop SolidWorks is geïnstalleerd.\n" +#~ "Momenteel voert u deze plug-in uit op een ander besturingssysteem dan Windows. Deze plug-in werkt alleen op systemen waarop Windows en SolidWorks met een geldige licentie zijn geïnstalleerd. Installeer deze plug-in op een Windows-systeem waarop SolidWorks is geïnstalleerd.\n" #~ "\n" #~ "Met vriendelijke groeten\n" #~ " - Thomas Karl Pietrowski" @@ -7936,20 +8397,20 @@ msgstr "Röntgenweergave" #~ msgstr "Installeren" #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Kan de bestanden voor de Siemens NX-invoegtoepassingen niet kopiëren. Controleer uw UGII_USER_DIR. Deze is niet ingesteld op een map." +#~ msgstr "Kan de bestanden voor de Siemens NX-plug-ins niet kopiëren. Controleer uw UGII_USER_DIR. Deze is niet ingesteld op een map." #~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "De Siemens NX Cura-invoegtoepassing is geïnstalleerd." +#~ msgstr "De Siemens NX Cura-plug-in is geïnstalleerd." #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Kan de bestanden voor de Siemens NX-invoegtoepassingen niet installeren. Controleer uw UGII_USER_DIR." +#~ msgstr "Kan de bestanden voor de Siemens NX-plug-ins niet installeren. Controleer uw UGII_USER_DIR." #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Kan de Siemens NX-invoegtoepassing niet installeren. Het instellen van de omgevingsvariabele UGII_USER_DIR voor Siemens NX is mislukt." +#~ msgstr "Kan de Siemens NX-plug-in niet installeren. Het instellen van de omgevingsvariabele UGII_USER_DIR voor Siemens NX is mislukt." #~ msgctxt "@info:status" #~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Kan de invoegtoepassing-ID van {0} niet vinden" +#~ msgstr "Kan de plug-in-ID van {0} niet vinden" #~ msgctxt "@info:tile" #~ msgid "Warning" @@ -7957,7 +8418,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@window:title" #~ msgid "Plugin browser" -#~ msgstr "Invoegtoepassingbrowser" +#~ msgstr "plug-in-browser" #~ msgctxt "@label" #~ msgid "Ultimaker 3" @@ -8045,7 +8506,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@title:window" #~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "SolidWorks-invoegtoepassing: configuratie" +#~ msgstr "SolidWorks-plug-in: configuratie" #~ msgctxt "@title:tab" #~ msgid "Conversion settings" @@ -8101,7 +8562,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@action:menu" #~ msgid "Browse plugins..." -#~ msgstr "Door invoegtoepassingen bladeren..." +#~ msgstr "Door plug-ins bladeren..." #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" @@ -8109,7 +8570,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@window:title" #~ msgid "Install Plugin" -#~ msgstr "Invoegtoepassing installeren" +#~ msgstr "plug-in installeren" #~ msgctxt "description" #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" @@ -8121,7 +8582,7 @@ msgstr "Röntgenweergave" #~ msgctxt "description" #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Deze optie biedt u de mogelijkheid bepaalde bestanden via SolidWorks te openen. De bestanden worden vervolgens via deze invoegtoepassing geconverteerd en geoptimaliseerd." +#~ msgstr "Deze optie biedt u de mogelijkheid bepaalde bestanden via SolidWorks te openen. De bestanden worden vervolgens via deze plug-in geconverteerd en geoptimaliseerd." #~ msgctxt "name" #~ msgid "SolidWorks Integration" @@ -8145,11 +8606,11 @@ msgstr "Röntgenweergave" #~ msgctxt "description" #~ msgid "Find, manage and install new plugins." -#~ msgstr "Zoek, beheer en installeer nieuwe invoegtoepassingen." +#~ msgstr "Zoek, beheer en installeer nieuwe plug-ins." #~ msgctxt "name" #~ msgid "Plugin Browser" -#~ msgstr "Invoegtoepassingbrowser" +#~ msgstr "plug-in-browser" #~ msgctxt "description" #~ msgid "Ask the user once if he/she agrees with our license" @@ -8416,11 +8877,11 @@ msgstr "Röntgenweergave" #~ msgctxt "@title:window" #~ msgid "Find & Update plugins" -#~ msgstr "Invoegtoepassingen zoeken en bijwerken" +#~ msgstr "Plug-ins zoeken en bijwerken" #~ msgctxt "@label" #~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Hier vindt u een lijst met invoegtoepassingen van derden." +#~ msgstr "Hier vindt u een lijst met plug-ins van derden." #~ msgctxt "@action:button" #~ msgid "Upgrade" @@ -8558,7 +9019,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@title:window" #~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Configuratie Cura SolidWorks-invoegtoepassing" +#~ msgstr "Configuratie Cura SolidWorks-plug-in" #~ msgctxt "@action:label" #~ msgid "Default quality of the exported STL:" @@ -8658,7 +9119,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@menuitem" #~ msgid "Browse plugins" -#~ msgstr "Door invoegtoepassingen bladeren" +#~ msgstr "Door plug-ins bladeren" #~ msgctxt "@info:title" #~ msgid "Export Details" @@ -8712,8 +9173,8 @@ msgstr "Röntgenweergave" #~ "You need to accept this license to install this plugin.\n" #~ "Do you agree with the terms below?" #~ msgstr "" -#~ " invoegtoepassing bevat een licentie.\n" -#~ "U moet akkoord gaan met deze licentie om deze invoegtoepassing te mogen installeren.\n" +#~ " plug-in bevat een licentie.\n" +#~ "U moet akkoord gaan met deze licentie om deze plug-ins te mogen installeren.\n" #~ "Gaat u akkoord met onderstaande voorwaarden?" #~ msgctxt "@label" @@ -8805,7 +9266,7 @@ msgstr "Röntgenweergave" #~ msgstr "Lagen" #~ msgid "Browse plugins" -#~ msgstr "Vind invoegtoepassingen" +#~ msgstr "Vind plug-ins" #~ msgctxt "@item:inmenu" #~ msgid "Solid" @@ -8821,7 +9282,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@info:status" #~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Kan het profiel niet exporteren als {0}: de invoegtoepassing voor de schrijver heeft een fout gerapporteerd." +#~ msgstr "Kan het profiel niet exporteren als {0}: de plug-in voor de schrijver heeft een fout gerapporteerd." #~ msgctxt "@info:status" #~ msgid "Exported profile to {0}" @@ -8989,7 +9450,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@info:whatsthis" #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -#~ msgstr "Accepteert G-code en verzendt deze code naar een printer. Via de invoegtoepassing kan tevens de firmware worden bijgewerkt." +#~ msgstr "Accepteert G-code en verzendt deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." #~ msgctxt "X3G Writer Plugin Description" #~ msgid "Writes X3G to a file" @@ -8997,7 +9458,7 @@ msgstr "Röntgenweergave" #~ msgctxt "@label" #~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Invoegtoepassing voor Verwijderbaar Uitvoerapparaat" +#~ msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" #~ msgctxt "@info:whatsthis" #~ msgid "Provides removable drive hotplugging and writing support." diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index 72fde7bd7a..bc037bede2 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 15:03+0200\n" "Last-Translator: Bothof \n" "Language-Team: Dutch\n" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index ee37cee494..a10f380139 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 15:03+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Dutch , Dutch \n" @@ -56,9 +56,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \n" -"." +msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \n." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -70,9 +68,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \n" -"." +msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \n." #: fdmprinter.def.json msgctxt "material_guid label" @@ -154,6 +150,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "De diepte (Y-richting) van het printbare gebied." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Machinehoogte" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "De hoogte (Z-richting) van het printbare gebied." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -194,16 +200,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminium" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Machinehoogte" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "De hoogte (Z-richting) van het printbare gebied." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -561,8 +557,8 @@ msgstr "De maximale snelheid van de motor in de Z-richting." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Maximale Doorvoersnelheid" +msgid "Maximum Speed E" +msgstr "Maximale Snelheid E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -686,8 +682,8 @@ msgstr "Stappen per millimeter (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een doorvoer van één millimeter." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van het feederwiel van één millimeter rond de omtrek." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1434,6 +1430,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Verbind skinpaden aan de boven-/onderkant waar ze naast elkaar lopen. Met deze instelling wordt bij concentrische patronen de bewegingstijd aanzienlijk verkort. Dit kan echter ten koste gaan van de kwaliteit van de bovenste laag aangezien de verbindingen in het midden van de vulling kunnen komen te liggen." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotone volgorde van boven naar beneden" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print boven- en onderlijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1504,6 +1510,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Zigzag" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotone strijkvolgorde" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print strijklijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1711,8 +1727,11 @@ msgstr "Vulpatroon" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor wordt bespaard op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden elke laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen elke laag voor een meer gelijke krachtverdeling in elke richting." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor u bespaart op materiaalkosten. De" +" raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden per laag volledig geprint. Gyroïde," +" kubische, afgeknotte kubus- en achtvlaksvullingen veranderen per laag voor een meer gelijke krachtverdeling in elke richting. Bliksemvulling minimaliseert" +" de vulling doordat deze alleen het plafond van het object ondersteunt." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1779,6 +1798,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroïde" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Bliksem" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1993,6 +2017,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Het aantal opvullagen dat skinranden ondersteunt." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Hoek supportstructuur bliksemvulling" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Bepaalt wanneer een bliksemvullaag iets moet ondersteunen dat zich boven de vullaag bevindt. Gemeten in de hoek bepaald door de laagdikte." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Hoek overhang bliksemvulling" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Bepaalt wanneer een bliksemvullaag het model boven de laag moet ondersteunen. Gemeten in de hoek bepaald door de laagdikte." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Snoeihoek bliksemvulling" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "De eindpunten van de vullijnen worden verkort om materiaal te besparen. Deze instelling is de overhanghoek van de eindpunten van deze lijnen." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Rechtbuighoek bliksemvulling" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "De vullijnen zijn rechtgetrokken om printtijd te besparen. Dit is de grootste overhanghoek die over de lengte van de vullijn is toegestaan." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3183,6 +3247,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Alles" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Niet op buitenzijde" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -3201,8 +3270,7 @@ msgstr "Max. combing-afstand zonder intrekken" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum" -" en vindt bij combing-bewegingen geen intrekking plaats." +msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats." #: fdmprinter.def.json msgctxt "travel_retract_before_outer_wall label" @@ -5135,7 +5203,7 @@ msgstr "Minimale matrijsbreedte" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." +msgid "The minimal distance between the outside of the mold and the outside of the model." msgstr "De minimale afstand tussen de buitenzijde van de matrijs en de buitenzijde van het model." #: fdmprinter.def.json @@ -5303,6 +5371,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Zigzag" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotone volgorde bovenlaag" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print de lijnen van de bovenlaag in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6402,6 +6480,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Omzettingsmatrix die moet worden toegepast op het model wanneer dit wordt geladen vanuit een bestand." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maximale Doorvoersnelheid" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor u bespaart op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden per laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen per laag voor een meer gelijke krachtverdeling in elke richting. Bliksemvulling minimaliseert de vulling, doordat deze alleen de (interne) supportdaken ondersteunt. Daarom geldt het invulpercentage slechts voor één laag onder wat er nodig is om het model te ondersteunen." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "Het mogelijke verschil van een bliksemvullaag met de laag onmiddellijk daarboven m.b.t. het snoeien van de buitenste uiteinden van bomen. Gemeten in de hoek bepaald door de laagdikte." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "Het mogelijke verschil van een bliksemvullaag met de laag onmiddellijk daarboven m.b.t. het effenen van bomen. Gemeten in de hoek bepaald door de laagdikte." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor wordt bespaard op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden elke laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen elke laag voor een meer gelijke krachtverdeling in elke richting." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "De minimale afstand tussen de buitenzijde van de matrijs en de buitenzijde van het model." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een doorvoer van één millimeter." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Wanneer dit niet nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 1dce7efaa4..d18671c271 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2019-11-15 15:23+0100\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" "Language: pl_PL\n" @@ -15,183 +15,452 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.2.4\n" +"X-Generator: Poedit 3.0\n" "X-Poedit-SourceCharset: UTF-8\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Nieznany" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Nie można utworzyć archiwum z folderu danych użytkownika: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Poniższa drukarka nie może być podłączona, ponieważ jest częścią grupy" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Kopia zapasowa" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Dostępne drukarki sieciowe" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Podjęto próbę przywrócenia kopii zapasowej Cura na podstawie niepoprawnych danych lub metadanych." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nie zastąpione" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Próbowano przywrócić kopię zapasową Cura, nowszą od aktualnej wersji." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "Wysokość obszaru roboczego została zmniejszona ze względu na wartość ustawienia Print Sequence (Sekwencja wydruku), aby zapobiec kolizji z wydrukowanymi modelami." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Obszar Roboczy" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nie zastąpione" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Nieznany" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Poniższa drukarka nie może być podłączona, ponieważ jest częścią grupy" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Dostępne drukarki sieciowe" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Domyślne" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Wizualny" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Profil wizualny jest przeznaczony do drukowania prototypów i modeli z zamiarem podkreślenia wysokiej jakości wizualnej i powierzchni." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Inżynieria" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Profil inżynieryjny jest przeznaczony do drukowania prototypów funkcjonalnych i części końcowych z naciskiem na lepszą dokładność i lepszą tolerancję." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Szkic" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Niestandardowy materiał" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Niestandardowy" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Profile niestandardowe" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Wszystkie Wspierane Typy ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Wszystkie Pliki (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Wizualny" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Profil wizualny jest przeznaczony do drukowania prototypów i modeli z zamiarem podkreślenia wysokiej jakości wizualnej i powierzchni." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Inżynieria" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Profil inżynieryjny jest przeznaczony do drukowania prototypów funkcjonalnych i części końcowych z naciskiem na lepszą dokładność i lepszą tolerancję." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Szkic" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Niestandardowy materiał" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Niestandardowy" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Logowanie nie powiodło się" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Znajdowanie nowej lokalizacji obiektów" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Szukanie Lokalizacji" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Nie można znaleźć lokalizacji w obrębie obszaru roboczego dla wszystkich obiektów" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nie można Znaleźć Lokalizacji" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Nie można utworzyć archiwum z folderu danych użytkownika: {}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Kopia zapasowa" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Podjęto próbę przywrócenia kopii zapasowej Cura na podstawie niepoprawnych danych lub metadanych." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Próbowano przywrócić kopię zapasową Cura, nowszą od aktualnej wersji." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Ładowanie drukarek..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Ustawianie preferencji..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Ustawianie sceny ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Ładowanie interfejsu ..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "Wysokość obszaru roboczego została zmniejszona ze względu na wartość ustawienia Print Sequence (Sekwencja wydruku), aby zapobiec kolizji z wydrukowanymi modelami." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Jednocześnie można załadować tylko jeden plik G-code. Pominięto importowanie {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Obszar Roboczy" +msgid "Warning" +msgstr "Ostrzeżenie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Nie można otworzyć żadnego innego pliku, jeśli ładuje się G-code. Pominięto importowanie {0}" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Błąd" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Zamknij" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Następny" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Dodaj" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Anuluj" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupa #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Zewnętrzna ściana" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Ściany wewnętrzne" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Skin" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Wypełnienie" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Wypełnienie podpór" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Łączenie podpory" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Podpory" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Obwódka" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Wieża czyszcząca" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Ruch jałowy" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrakcja" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Inny" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura nie może się uruchomić" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -206,32 +475,32 @@ msgstr "" "

    Proszę wyślij do nas ten Raport Błędu, aby rozwiązać problem.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Wyślij raport błędu do Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Pokaż szczegółowy raport błędu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Pokaż folder konfiguracyjny" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Zrób Backup i Zresetuj Konfigurację" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Raport Błędu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -242,491 +511,1259 @@ msgstr "" "

    Proszę użyj przycisku \"Wyślij raport\", aby wysłać raport błędu automatycznie na nasze serwery

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informacje o systemie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Nieznany" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Wersja Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Wersja Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Wersja PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Jeszcze nie uruchomiono
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Wersja OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Wydawca OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Śledzenie błedu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Logi" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Wyślij raport" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Ładowanie drukarek..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Ustawianie preferencji..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Ustawianie sceny ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Ładowanie interfejsu ..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Jednocześnie można załadować tylko jeden plik G-code. Pominięto importowanie {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Ostrzeżenie" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Nie można otworzyć żadnego innego pliku, jeśli ładuje się G-code. Pominięto importowanie {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Błąd" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Zwielokrotnienie i umieszczanie przedmiotów" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Umieść Obiekty" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Rozmieszczenie Obiektów" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Nie można odczytać odpowiedzi." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Proszę nadać wymagane uprawnienia podczas autoryzacji tej aplikacji." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Coś nieoczekiwanego się stało, podczas próby logowania, spróbuj ponownie." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Nie można uzyskać dostępu do serwera kont Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Proszę nadać wymagane uprawnienia podczas autoryzacji tej aplikacji." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Coś nieoczekiwanego się stało, podczas próby logowania, spróbuj ponownie." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Nie można odczytać odpowiedzi." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Zwielokrotnienie i umieszczanie przedmiotów" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Umieść Obiekty" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Rozmieszczenie Obiektów" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Niewspierany" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Domyślne" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Dysza" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Ustawienia zostały zmienione w celu dopasowania do bieżącej dostępności ekstruderów:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Ustawienia zostały zaaktualizowane" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Ekstruder(y) wyłączony(/e)" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Plik już istnieje" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Plik {0} już istnieje. Czy na pewno chcesz go nadpisać?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Nieprawidłowy adres URL pliku:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Nie udało się wyeksportować profilu do {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Nie można eksportować profilu do {0}: Wtyczka pisarza zgłosiła błąd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Wyeksportowano profil do {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Eksport udany" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Nie powiódł się import profilu z {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Nie można importować profilu z {0} przed dodaniem drukarki." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Brak niestandardowego profilu do importu w pliku {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Nie powiódł się import profilu z {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Profil {0} zawiera błędne dane, nie można go importować." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Błąd importu profilu z {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Plik {0} nie zawiera żadnego poprawnego profilu." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} ma nieznany typ pliku lub jest uszkodzony." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Niestandardowy profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profilowi brakuje typu jakości." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Niewspierany" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Domyślne" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Dysza" +msgid "Per Model Settings" +msgstr "Ustawienia każdego modelu osobno" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Ustawienia zostały zmienione w celu dopasowania do bieżącej dostępności ekstruderów:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Konfiguruj ustawienia każdego modelu z osobna" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Profile Cura" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D Plik" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Wystąpił błąd podczas próby przywrócenia kopii zapasowej." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ustawienia zostały zaaktualizowane" +msgid "Backups" +msgstr "Kopie zapasowe" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Ekstruder(y) wyłączony(/e)" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Wystąpił błąd podczas wgrywania kopii zapasowej." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Dodaj" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Anuluj" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Wgrywanie kopii zapasowej..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Wgrywanie kopii zapasowej zakończone." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Zarządzaj kopiami zapasowymi" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ustawienia drukarki" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Blokada Podpory" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Stwórz obszar, w którym podpory nie będą drukowane." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Dysk wymienny" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Zapisz na dysk wymienny" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Zapisz na dysk wymienny {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Nie ma żadnych formatów plików do zapisania!" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Zapisywanie na Dysk Wymienny {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +msgctxt "@info:title" +msgid "Saving" +msgstr "Zapisywanie" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Nie mogę zapisać do {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Nie mogę znaleźć nazwy pliku podczas próby zapisu do {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "Nie można zapisać na wymiennym dysku {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Zapisano na dysk wymienny {0} jako {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Plik Zapisany" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Wyjmij" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Wyjmij urządzenie wymienne {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Wyjęto {0}. Możesz teraz bezpiecznie wyjąć dysk." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Bezpiecznie Odłącz Urządzenie" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Nie można wysunąć {0}. Inny program może używać dysku." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aktualizacja Oprogramowania Sprzętowego" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Profile Cura 15.04" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Zalecane" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Niestandardowe" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "Plik projektu {0} zawiera nieznany typ maszyny {1}. Nie można zaimportować maszyny. Zostaną zaimportowane modele." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Otwórz Plik Projektu" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Plik 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "Ultimaker Format Package" +msgstr "Pakiet Formatu Ultimaker" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Pliki G-code" + +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Podgląd" + +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Widok X-Ray" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Przetwarzanie warstw" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informacja" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Nie można pociąć z obecnym materiałem, ponieważ nie jest on kompatybilny z wybraną maszyną lub konfiguracją." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Nie można pociąć" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Nie można pociąć z bieżącymi ustawieniami. Następujące ustawienia mają błędy: {0}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "Nie można pokroić przez ustawienia osobne dla modelu. Następujące ustawienia mają błędy w jednym lub więcej modeli: {error_labels}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Nie można pociąć, ponieważ wieża czyszcząca lub jej pozycja(e) są niewłaściwe." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Nie można pociąć, ponieważ obecne są obiekty powiązane z wyłączonym ekstruderem %s." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Plik AMF" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Skompresowany Plik G-code" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Przetwarzanie końcowe" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "Modyfikuj G-code" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Drukowanie USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Drukuj przez USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Drukuj przez USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Połączono przez USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Trwa drukowanie przez USB, zamknięcie Cura spowoduje jego zatrzymanie. Jesteś pewien?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Drukowanie w toku" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Przygotuj" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Analizowanie G-code" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Szczegóły G-code" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Przed wysłaniem pliku upewnij się, że G-code jest odpowiedni do konfiguracji drukarki. Przedstawienie G-kodu może nie być dokładne." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Plik G-code" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Obraz JPG" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Obraz JPEG" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Obraz PNG" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Obraz BMP" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Obraz GIF" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "Wypoziomuj stół" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Wybierz aktualizacje" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "Zapisywacz skompresowanego G-code nie obsługuje trybu tekstowego." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Nie można uzyskać dostępu do informacji o aktualizacji." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Jak zaktualizować" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Zgadzam się" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Akceptowanie Licencji Wtyczki" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "Zapisywacz G-code nie obsługuje trybu nietekstowego." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Przygotuj G-code przed eksportem." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Widok symulacji" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Nie pokazuj tego komunikatu ponownie" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Widok warstwy" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Drukuj przez sieć" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Drukuj przez sieć" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Połączone przez sieć" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "jutro" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "dziś" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Połącz przez sieć" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Poczekaj, aż bieżące zadanie zostanie wysłane." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Błąd druku" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Zadanie drukowania zostało pomyślnie wysłane do drukarki." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dane Wysłane" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Próbujesz połączyć się z drukarką, na której nie działa Ultimaker Connect. Zaktualizuj drukarkę do najnowszej wersji firmware." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Zaktualizuj swoją drukarkę" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Wysyłanie zadania druku" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Przesyłanie zadania do drukarki." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura wykryła profile materiałów, które nie zostały jeszcze zainstalowane na gospodarzu grupy {0}." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Wysyłanie materiałów do drukarki" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Nie można wgrać danych do drukarki." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Błąd sieci" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Próbujesz połączyć się z {0}, ale nie jest to gospodarz grupy. Możesz odwiedzić stronę internetową, aby skonfigurować jako gospodarza." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Nie jest gospodarzem grupy" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Konfiguruj grupę" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Rozpocznij" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupa #{group_nr}" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Zewnętrzna ściana" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Ściany wewnętrzne" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Skin" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Wypełnienie" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Wypełnienie podpór" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Łączenie podpory" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Podpory" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Obwódka" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Wieża czyszcząca" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Ruch jałowy" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrakcja" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Inny" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Następny" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Zamknij" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Otwórz skompresowaną siatkę trójkątów" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "Cyfrowa wymiana zasobów COLLADA" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "Biblioteka glTF" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "Załączony JSON glTF" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Format trójkątów Stanforda" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Skompresowana cyfrowa wymiana zasobów COLLADA" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Widok modelu" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Błąd zapisu pliku 3mf." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Plik 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Plik Cura Project 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitor" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Asystent Modelu 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -740,1490 +1777,1533 @@ msgstr "" "

    Dowiedz się, jak zapewnić najlepszą możliwą jakość oraz niezawodnośc wydruku.

    \n" "

    Zobacz przewodnik po jakości wydruku (strona w języku angielskim)

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "Plik projektu {0} zawiera nieznany typ maszyny {1}. Nie można zaimportować maszyny. Zostaną zaimportowane modele." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Typ siatki" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Otwórz Plik Projektu" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Normalny model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Drukuj jako podpora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modyfikuj ustawienia nakładania" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Nie wspieraj nałożenia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Zalecane" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Niestandardowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Plik 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." +msgid "Infill mesh only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Błąd zapisu pliku 3mf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Plik 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Plik Cura Project 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Plik AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Kopie zapasowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Wystąpił błąd podczas wgrywania kopii zapasowej." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." +msgid "Cutting mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Wgrywanie kopii zapasowej..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Wgrywanie kopii zapasowej zakończone." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Wystąpił błąd podczas próby przywrócenia kopii zapasowej." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Zarządzaj kopiami zapasowymi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Nie można pociąć z obecnym materiałem, ponieważ nie jest on kompatybilny z wybraną maszyną lub konfiguracją." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Nie można pociąć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Nie można pociąć z bieżącymi ustawieniami. Następujące ustawienia mają błędy: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "Nie można pokroić przez ustawienia osobne dla modelu. Następujące ustawienia mają błędy w jednym lub więcej modeli: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Nie można pociąć, ponieważ wieża czyszcząca lub jej pozycja(e) są niewłaściwe." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Nie można pociąć, ponieważ obecne są obiekty powiązane z wyłączonym ekstruderem %s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Przetwarzanie warstw" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Informacja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profile Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Nie można uzyskać dostępu do informacji o aktualizacji." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Nowe oprogramowanie %s jest dostępne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 msgctxt "@action:button" -msgid "How to update" -msgstr "Jak zaktualizować" +msgid "Select settings" +msgstr "Wybierz ustawienia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Wybierz Ustawienia, aby dostosować ten model" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtr..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Pokaż wszystko" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Kopie zapasowe cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Wersja Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Drukarki" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiały" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profile" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Pluginy" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Chcesz więcej?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Utwórz kopię zapasową" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Automatyczne tworzenie kopii zapasowej" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Automatycznie twórz kopie zapasowe każdego dnia, w którym uruchomiono Curę." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Przywróć" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Usuń kopię zapasową" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Czy na pewno chcesz usunąć tę kopię zapasową? Tej czynności nie można cofnąć." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Przywróć kopię zapasową" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Musisz zrestartować Curę przed przywróceniem kopii zapasowej. Czy chcesz teraz zamknąć Curę?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Wykonaj kopię zapasową i zsynchronizuj ustawienia Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Zaloguj" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Moje Kopie Zapasowe" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Nie masz żadnych kopii zapasowych. Użyj przycisku „Utwórz kopię zapasową”, aby go utworzyć." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Podczas fazy podglądu będziesz ograniczony do 5 widocznych kopii zapasowych. Usuń kopię zapasową, aby zobaczyć starsze." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ustawienia drukarki" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Szerokość)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Głębokość)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Wysokość)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Kształt stołu roboczego" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Początek na środku" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Podgrzewany stół" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Grzany obszar roboczy" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Wersja G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ustawienia głowicy" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Wysokość wózka" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Liczba ekstruderów" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Początkowy G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Końcowy G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ustawienia dyszy" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Rozmiar dyszy" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Kompatybilna średnica materiału" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Korekcja dyszy X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Korekcja dyszy Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Numer Wentylatora" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Początkowy G-code ekstrudera" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Końcowy G-code ekstrudera" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Drukarka" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" msgid "Update Firmware" msgstr "Aktualizacja Oprogramowania Sprzętowego" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Skompresowany Plik G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "Zapisywacz skompresowanego G-code nie obsługuje trybu tekstowego." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Pliki G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analizowanie G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Szczegóły G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Przed wysłaniem pliku upewnij się, że G-code jest odpowiedni do konfiguracji drukarki. Przedstawienie G-kodu może nie być dokładne." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Plik G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "Zapisywacz G-code nie obsługuje trybu nietekstowego." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Przygotuj G-code przed eksportem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Obraz JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Obraz JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Obraz PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Obraz BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Obraz GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profile Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ustawienia drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ustawienia każdego modelu osobno" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Oprogramowanie ukłądowe jest częścią oprogramowania działającego bezpośrednio na drukarce 3D. Oprogramowanie to steruje silnikami krokowymi, reguluje temperaturę i ostatecznie sprawia, że drukarka działa." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Konfiguruj ustawienia każdego modelu z osobna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Przetwarzanie końcowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modyfikuj G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Przygotuj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Podgląd" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Zapisz na dysk wymienny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Zapisz na dysk wymienny {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Nie ma żadnych formatów plików do zapisania!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Zapisywanie na Dysk Wymienny {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -msgctxt "@info:title" -msgid "Saving" -msgstr "Zapisywanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Nie mogę zapisać do {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Nie mogę znaleźć nazwy pliku podczas próby zapisu do {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Nie można zapisać na wymiennym dysku {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Zapisano na dysk wymienny {0} jako {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Plik Zapisany" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Wyjmij" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Wyjmij urządzenie wymienne {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Wyjęto {0}. Możesz teraz bezpiecznie wyjąć dysk." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Bezpiecznie Odłącz Urządzenie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Nie można wysunąć {0}. Inny program może używać dysku." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Dysk wymienny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Widok symulacji" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Nie pokazuj tego komunikatu ponownie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Widok warstwy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Widok modelu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 msgctxt "@label" -msgid "Support Blocker" -msgstr "Blokada Podpory" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Oprogramowanie ukłądowe dostarczane z nowymi drukarkami działa, ale nowe wersje mają zazwyczaj więcej funkcji i ulepszeń." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Stwórz obszar, w którym podpory nie będą drukowane." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 msgctxt "@action:button" -msgid "Sync" -msgstr "" +msgid "Automatically upgrade Firmware" +msgstr "Automatycznie uaktualnij oprogramowanie" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Prześlij niestandardowe oprogramowanie" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ nie ma połączenia z drukarką." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Zgadzam się" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ połączenie z drukarką nie wspiera usługi." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Akceptowanie Licencji Wtyczki" +msgid "Select custom firmware" +msgstr "Wybierz niestandardowe oprogramowanie" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Otwórz skompresowaną siatkę trójkątów" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Cyfrowa wymiana zasobów COLLADA" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Biblioteka glTF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "Załączony JSON glTF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Format trójkątów Stanforda" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Skompresowana cyfrowa wymiana zasobów COLLADA" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pakiet Formatu Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Wypoziomuj stół" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Wybierz aktualizacje" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 msgctxt "@title:window" -msgid "Remove printers?" -msgstr "" +msgid "Firmware Update" +msgstr "Aktualizacja oprogramowania układowego" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 -#, python-brace-format +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -msgstr[1] "" +msgid "Updating firmware." +msgstr "Aktualizowanie oprogramowania." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" +msgid "Firmware update completed." +msgstr "Aktualizacja oprogramowania zakończona." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 -msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Wyślij i nadzoruj zadania druku z każdego miejsca, używając konta Ultimaker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Rozpocznij" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Próbujesz połączyć się z drukarką, na której nie działa Ultimaker Connect. Zaktualizuj drukarkę do najnowszej wersji firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Zaktualizuj swoją drukarkę" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura wykryła profile materiałów, które nie zostały jeszcze zainstalowane na gospodarzu grupy {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Wysyłanie materiałów do drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Próbujesz połączyć się z {0}, ale nie jest to gospodarz grupy. Możesz odwiedzić stronę internetową, aby skonfigurować jako gospodarza." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Nie jest gospodarzem grupy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Konfiguruj grupę" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Poczekaj, aż bieżące zadanie zostanie wysłane." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Błąd druku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Nie można wgrać danych do drukarki." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Błąd sieci" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Wysyłanie zadania druku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Przesyłanie zadania do drukarki." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Zadanie drukowania zostało pomyślnie wysłane do drukarki." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dane Wysłane" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Drukuj przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Drukuj przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Połączone przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Połącz przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "jutro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "dziś" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Drukowanie USB" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Drukuj przez USB" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Drukuj przez USB" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Połączono przez USB" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Trwa drukowanie przez USB, zamknięcie Cura spowoduje jego zatrzymanie. Jesteś pewien?" +msgid "Firmware update failed due to an unknown error." +msgstr "Aktualizacja oprogramowania nie powiodła się z powodu nieznanego błędu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony." +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu komunikacji." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Drukowanie w toku" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu wejścia / wyjścia." -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Plik" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Aktualizacja oprogramowania nie powiodła się z powodu utraconego oprogramowania." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Widok X-Ray" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Niektóre rzeczy mogą być problematyczne podczas tego wydruku. Kliknij, aby zobaczyć porady dotyczące regulacji." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Otwórz projekt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Zaktualizuj istniejące" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Utwórz nowy" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Podsumowanie - Projekt Cura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Ustawienia drukarki" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Jak powinny być rozwiązywane błędy w maszynie?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Typ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Grupa drukarek" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Ustawienia profilu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Jak powinien zostać rozwiązany problem z profilem?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Nazwa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Cel" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Nie w profilu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 nadpisanie" msgstr[1] "%1 Zastępuje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Pochodna z" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 nadpisanie" msgstr[1] "%1, %2 zastępuje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Ustawienia materiału" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Jak powinien zostać rozwiązany problem z materiałem?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Ustawienie widoczności" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Tryb" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Widoczne ustawienie:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 poza %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Ładowanie projektu usunie wszystkie modele z platformy roboczej." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Otwórz" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Chcesz więcej?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Utwórz kopię zapasową" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatyczne tworzenie kopii zapasowej" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Automatycznie twórz kopie zapasowe każdego dnia, w którym uruchomiono Curę." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Przywróć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Usuń kopię zapasową" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Czy na pewno chcesz usunąć tę kopię zapasową? Tej czynności nie można cofnąć." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Przywróć kopię zapasową" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Musisz zrestartować Curę przed przywróceniem kopii zapasowej. Czy chcesz teraz zamknąć Curę?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Wersja Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiały" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Pluginy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Kopie zapasowe cura" +msgid "Post Processing Plugin" +msgstr "Plugin post-processingu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Moje Kopie Zapasowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Nie masz żadnych kopii zapasowych. Użyj przycisku „Utwórz kopię zapasową”, aby go utworzyć." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Podczas fazy podglądu będziesz ograniczony do 5 widocznych kopii zapasowych. Usuń kopię zapasową, aby zobaczyć starsze." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Wykonaj kopię zapasową i zsynchronizuj ustawienia Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Zaloguj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aktualizacja Oprogramowania Sprzętowego" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Oprogramowanie ukłądowe jest częścią oprogramowania działającego bezpośrednio na drukarce 3D. Oprogramowanie to steruje silnikami krokowymi, reguluje temperaturę i ostatecznie sprawia, że drukarka działa." +msgid "Post Processing Scripts" +msgstr "Skrypty post-processingu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Dodaj skrypt" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Oprogramowanie ukłądowe dostarczane z nowymi drukarkami działa, ale nowe wersje mają zazwyczaj więcej funkcji i ulepszeń." +msgid "Settings" +msgstr "Ustawienia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automatycznie uaktualnij oprogramowanie" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Prześlij niestandardowe oprogramowanie" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "" +msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ nie ma połączenia z drukarką." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ połączenie z drukarką nie wspiera usługi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Wybierz niestandardowe oprogramowanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aktualizacja oprogramowania układowego" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aktualizowanie oprogramowania." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aktualizacja oprogramowania zakończona." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu nieznanego błędu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu komunikacji." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu wejścia / wyjścia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu utraconego oprogramowania." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Konwertuj obraz ..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "Maksymalna odległość każdego piksela od \"Bazy.\"" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Wysokość (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Wysokość podstawy od stołu w milimetrach." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Baza (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "Szerokość w milimetrach na stole." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Szerokość (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "Głębokość w milimetrach na stole" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Głębokość (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Dla litofanów ciemne piksele powinny odpowiadać grubszym miejscom, aby zablokować więcej światła. Dla zaznaczenia wysokości map, jaśniejsze piksele oznaczają wyższy teren, więc jaśniejsze piksele powinny odpowiadać wyższym położeniom w wygenerowanym modelu 3D." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Ciemniejsze jest wyższe" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Jaśniejszy jest wyższy" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "Ilość wygładzania do zastosowania do obrazu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Wygładzanie" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Drukarka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ustawienia dyszy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 msgctxt "@label" -msgid "Nozzle size" -msgstr "Rozmiar dyszy" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Proszę wybrać ulepszenia wykonane w tym Ultimaker Original" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Płyta grzewcza (zestaw oficjalny lub własnej roboty)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Poziomowanie stołu" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatybilna średnica materiału" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Aby upewnić się, że wydruki będą wychodziły świetne, możesz teraz wyregulować stół. Po kliknięciu przycisku \"Przejdź do następnego położenia\" dysza będzie się poruszać do różnych pozycji, które można wyregulować." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Korekcja dyszy X" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Dla każdej pozycji; Włóż kartkę papieru pod dyszę i wyreguluj wysokość stołu roboczego. Wysokość stołu jest prawidłowa, gdy papier stawia lekki opór." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Korekcja dyszy Y" +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Rozpocznij poziomowanie stołu roboczego" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numer Wentylatora" +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Przejdź do następnego położenia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Początkowy G-code ekstrudera" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Wiećej informacji o zbieraniu anonimowych danych" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Końcowy G-code ekstrudera" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkowania. Poniżej znajduje się przykład wszystkich udostępnianych danych:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ustawienia drukarki" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Nie chcę wysyłać anonimowych danych" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Szerokość)" +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Pozwól na wysyłanie anonimowych danych" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Głębokość)" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Wysokość)" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Należy uruchomić ponownie Cura, aby zmiany w pakietach przyniosły efekt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Kształt stołu roboczego" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Początek na środku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Podgrzewany stół" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Grzany obszar roboczy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Wersja G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ustawienia głowicy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Wysokość wózka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Liczba ekstruderów" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Początkowy G-code" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Instaluj" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Końcowy G-code" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Zainstalowane" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Zgodność" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Drukarka" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Stół roboczy" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Podpory" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Jakość" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Dane Techniczne" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Dane Bezpieczeństwa" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Wskazówki Drukowania" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Strona Internetowa" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Zaloguj aby zainstalować lub aktualizować" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Kup materiał na szpulach" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Aktualizuj" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Aktualizowanie" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Zaktualizowano" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Powrót" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +msgctxt "@title:tab" +msgid "Plugins" +msgstr "Wtyczki" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiał" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Zainstalowano" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +msgctxt "@label" +msgid "Will install upon restarting" +msgstr "Zostanie zainstalowane po ponownym uruchomieniu" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Zaloguj aby aktualizować" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Zainstaluj poprzednią wersję" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Odinstaluj" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +msgctxt "@label" +msgid "Community Contributions" +msgstr "Udział Społeczności" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +msgctxt "@label" +msgid "Community Plugins" +msgstr "Wtyczki Społeczności" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +msgctxt "@label" +msgid "Generic Materials" +msgstr "Materiały Podstawowe" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Uzyskiwanie pakietów..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +msgctxt "@label" +msgid "Website" +msgstr "Strona internetowa" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +msgctxt "@label" +msgid "Email" +msgstr "E-mail" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +msgctxt "@label" +msgid "Version" +msgstr "Wersja" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +msgctxt "@label" +msgid "Last updated" +msgstr "Ostatnia aktualizacja" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +msgctxt "@label" +msgid "Brand" +msgstr "Marka" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +msgctxt "@label" +msgid "Downloads" +msgstr "Pobrań" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Nie można połączyć się z bazą danych pakietów Cura. Sprawdź swoje połączenie z internetem." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Dalej" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Potwierdź deinstalację" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Odinstalowujesz materiały i/lub profile, które są aktualnie używane. Zatwierdzenie spowoduje przywrócenie bieżących ustawień materiału/profilu do ustawień domyślnych." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Materiały" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Profile" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Potwierdź" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 +msgctxt "@label" +msgid "Color scheme" +msgstr "Schemat kolorów" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Kolor materiału" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Rodzaj linii" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Tryb zgodności" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 +msgctxt "@label" +msgid "Travels" +msgstr "Ruchy" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 +msgctxt "@label" +msgid "Helpers" +msgstr "Pomoce" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Shell" +msgstr "Obrys" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 +msgctxt "@label" +msgid "Infill" +msgstr "Wypełnienie" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 +msgctxt "@label" +msgid "Starts" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Pokaż tylko najwyższe warstwy" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Pokaż 5 Szczegółowych Warstw" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Góra/ Dół" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Wewnętrzna ściana" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Zarządzaj drukarkami" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Szkło" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Zaktualizuj oprogramowanie drukarki, aby zdalnie zarządzać kolejką." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Wczytywanie..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Niedostępne" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Nieosiągalna" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Zajęta" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Przygotowyję..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Drukowanie" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Bez tytułu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonimowa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Wymaga zmian konfiguracji" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Szczegóły" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Drukarka niedostępna" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Pierwsza dostępna" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "W kolejce" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Zarządzaj w przeglądarce" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "W kolejce nie ma zadań drukowania. Potnij i wyślij zadanie, aby dodać." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Zadania druku" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Łączny czas druku" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Oczekiwanie na" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Drukuj przez sieć" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Drukuj" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Wybór drukarki" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Zmiany konfiguracji" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Nadpisz" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Przypisana drukarka, %1, wymaga następującej zmiany konfiguracji:" +msgstr[1] "Przypisana drukarka, %1, wymaga następujących zmian konfiguracji:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Drukarka %1 jest przypisana, ale zadanie zawiera nieznaną konfigurację materiału." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Zmień materiał %1 z %2 na %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Załaduj %3 jako materiał %1 (Nie można nadpisać)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Zmień rdzeń drukujący %1 z %2 na %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Zmień stół na %1 (Nie można nadpisać)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Nadpisanie spowoduje użycie określonych ustawień w istniejącej konfiguracji drukarki. Może to spowodować niepowodzenie druku." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Aluminum" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Zakończono" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Przerywanie..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Anulowano" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Zatrzymywanie..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Wstrzymana" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Przywracanie..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Konieczne są działania" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Zakończone %1 z %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Połącz się z drukarką sieciową" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Aby drukować bezpośrednio na drukarce przez sieć, upewnij się, że drukarka jest podłączona do sieci za pomocą kabla sieciowego lub do sieci WIFI. Jeśli nie podłączysz Cury do drukarki, możesz nadal używać napędu USB do przesyłania plików G-Code do drukarki." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Wybierz swoją drukarkę z poniższej listy:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Edycja" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Usunąć" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Odśwież" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Jeżeli twojej drukarki nie ma na liście, przeczytaj poradnik o problemach z drukowaniem przez sieć" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Rodzaj" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Wersja oprogramowania" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Adres" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Ta drukarka nie jest skonfigurowana jako host dla grupy drukarek." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Ta drukarka jest hostem grupy %1 drukarek." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Połącz" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Nieprawidłowy adres IP" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Proszę podać poprawny adres IP." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Adres drukarki" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Wprowadź adres IP drukarki." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Przesuń na początek" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Usuń" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Ponów" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Zatrzymywanie..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Przywracanie..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Wstrzymaj" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Przerywanie..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Anuluj" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Czy jesteś pewien, że chcesz przesunąć %1 na początek kolejki?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Przesuń zadanie drukowania na początek" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Czy jesteś pewien, że chcesz usunąć %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Usuń zadanie drukowania" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Czy jesteś pewien, że chcesz anulować %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Anuluj wydruk" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2236,1410 +3316,433 @@ msgstr "" "- Sprawdź, czy drukarka jest podłączona do sieci.\n" "- Sprawdź, czy jesteś zalogowany, aby znaleźć drukarki podłączone do chmury." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Podłącz drukarkę do sieci." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Pokaż instrukcję użytkownika online" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Typ siatki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normalny model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Drukuj jako podpora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modyfikuj ustawienia nakładania" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Nie wspieraj nałożenia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Wybierz ustawienia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Wybierz Ustawienia, aby dostosować ten model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtr..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Pokaż wszystko" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plugin post-processingu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Skrypty post-processingu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Dodaj skrypt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Ustawienia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "" +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Niektóre rzeczy mogą być problematyczne podczas tego wydruku. Kliknij, aby zobaczyć porady dotyczące regulacji." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "" -msgstr[1] "" +msgid "3D View" +msgstr "Widok 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Schemat kolorów" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Kolor materiału" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Rodzaj linii" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Tryb zgodności" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Ruchy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Pomoce" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Obrys" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Wypełnienie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Pokaż tylko najwyższe warstwy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Pokaż 5 Szczegółowych Warstw" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Góra/ Dół" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Wewnętrzna ściana" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Wiećej informacji o zbieraniu anonimowych danych" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkowania. Poniżej znajduje się przykład wszystkich udostępnianych danych:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Nie chcę wysyłać anonimowych danych" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Pozwól na wysyłanie anonimowych danych" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Powrót" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Zgodność" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Drukarka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Stół roboczy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Podpory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Jakość" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Dane Techniczne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Dane Bezpieczeństwa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Wskazówki Drukowania" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Strona Internetowa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Zainstalowane" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Zaloguj aby zainstalować lub aktualizować" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Kup materiał na szpulach" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Aktualizuj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Aktualizowanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Zaktualizowano" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "" +msgid "Front View" +msgstr "Widok z przodu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Widok z góry" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Widok z lewej strony" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Widok z prawej strony" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "" +msgid "Object list" +msgstr "Lista obiektów" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Należy uruchomić ponownie Cura, aby zmiany w pakietach przyniosły efekt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Wtyczki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiał" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Zainstalowano" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Zostanie zainstalowane po ponownym uruchomieniu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Zaloguj aby aktualizować" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Zainstaluj poprzednią wersję" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Odinstaluj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Instaluj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Dalej" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Potwierdź deinstalację" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Odinstalowujesz materiały i/lub profile, które są aktualnie używane. Zatwierdzenie spowoduje przywrócenie bieżących ustawień materiału/profilu do ustawień domyślnych." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiały" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Potwierdź" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Strona internetowa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "E-mail" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Wersja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Ostatnia aktualizacja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Pobrań" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Udział Społeczności" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Wtyczki Społeczności" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiały Podstawowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Nie można połączyć się z bazą danych pakietów Cura. Sprawdź swoje połączenie z internetem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Uzyskiwanie pakietów..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Poziomowanie stołu" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Plik" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Aby upewnić się, że wydruki będą wychodziły świetne, możesz teraz wyregulować stół. Po kliknięciu przycisku \"Przejdź do następnego położenia\" dysza będzie się poruszać do różnych pozycji, które można wyregulować." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Edytuj" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Dla każdej pozycji; Włóż kartkę papieru pod dyszę i wyreguluj wysokość stołu roboczego. Wysokość stołu jest prawidłowa, gdy papier stawia lekki opór." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Widok" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Rozpocznij poziomowanie stołu roboczego" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Opcje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Przejdź do następnego położenia" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "&Rozszerzenia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Proszę wybrać ulepszenia wykonane w tym Ultimaker Original" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Preferencje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Płyta grzewcza (zestaw oficjalny lub własnej roboty)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "P&omoc" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Połącz się z drukarką sieciową" +msgid "New project" +msgstr "Nowy projekt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Aby drukować bezpośrednio na drukarce przez sieć, upewnij się, że drukarka jest podłączona do sieci za pomocą kabla sieciowego lub do sieci WIFI. Jeśli nie podłączysz Cury do drukarki, możesz nadal używać napędu USB do przesyłania plików G-Code do drukarki." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Czy na pewno chcesz rozpocząć nowy projekt? Spowoduje to wyczyszczenie stołu i niezapisanych ustawień." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Wybierz swoją drukarkę z poniższej listy:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Edycja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Usunąć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Odśwież" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Jeżeli twojej drukarki nie ma na liście, przeczytaj poradnik o problemach z drukowaniem przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Rodzaj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Wersja oprogramowania" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Ta drukarka nie jest skonfigurowana jako host dla grupy drukarek." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Ta drukarka jest hostem grupy %1 drukarek." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Połącz" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Nieprawidłowy adres IP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Proszę podać poprawny adres IP." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Adres drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Wprowadź adres IP drukarki." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Zmiany konfiguracji" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Nadpisz" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Przypisana drukarka, %1, wymaga następującej zmiany konfiguracji:" -msgstr[1] "Przypisana drukarka, %1, wymaga następujących zmian konfiguracji:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Drukarka %1 jest przypisana, ale zadanie zawiera nieznaną konfigurację materiału." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Zmień materiał %1 z %2 na %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Załaduj %3 jako materiał %1 (Nie można nadpisać)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Zmień rdzeń drukujący %1 z %2 na %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Zmień stół na %1 (Nie można nadpisać)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Nadpisanie spowoduje użycie określonych ustawień w istniejącej konfiguracji drukarki. Może to spowodować niepowodzenie druku." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Szkło" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Przesuń na początek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Usuń" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Ponów" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Zatrzymywanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Przywracanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Wstrzymaj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Przerywanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Anuluj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Czy jesteś pewien, że chcesz przesunąć %1 na początek kolejki?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Przesuń zadanie drukowania na początek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Czy jesteś pewien, że chcesz usunąć %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Usuń zadanie drukowania" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Czy jesteś pewien, że chcesz anulować %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Anuluj wydruk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Zarządzaj drukarkami" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Zaktualizuj oprogramowanie drukarki, aby zdalnie zarządzać kolejką." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Wczytywanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Niedostępne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nieosiągalna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Zajęta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Przygotowyję..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Drukowanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Bez tytułu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonimowa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Wymaga zmian konfiguracji" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Szczegóły" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Drukarka niedostępna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Pierwsza dostępna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Anulowano" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Zakończono" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Przerywanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Zatrzymywanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Wstrzymana" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Przywracanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Konieczne są działania" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Zakończone %1 z %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "W kolejce" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Zarządzaj w przeglądarce" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "W kolejce nie ma zadań drukowania. Potnij i wyślij zadanie, aby dodać." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Zadania druku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Łączny czas druku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Oczekiwanie na" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Drukuj przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Drukuj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Wybór drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Zaloguj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Szacunkowy czas niedostępny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Szacunkowy koszt niedostępny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Podgląd" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Szacunkowy czas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Szacunkowy materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Cięcie..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Nie można pociąć" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Przetwarzanie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Potnij" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Rozpocznij proces cięcia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Anuluj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Pokaż przewodnik rozwiązywania problemów online" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Przełącz tryb pełnoekranowy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Wyłącz tryb pełnoekranowy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Cofnij" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Ponów" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Zamknij" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Widok 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Widok z przodu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Widok z góry" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Widok z lewej strony" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Widok z prawej strony" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Konfiguruj Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Dodaj drukarkę..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Zarządzaj drukarkami..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Zarządzaj materiałami..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Aktualizuj profil z bieżącymi ustawieniami" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Odrzuć bieżące zmiany" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Utwórz profil z bieżących ustawień..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Zarządzaj profilami..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Pokaż dokumentację internetową" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Zgłoś błąd" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Co nowego" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "O..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Usuń model" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Wyśrodkuj model na platformie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Grupuj modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Rozgrupuj modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Połącz modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Powiel model..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Wybierz wszystkie modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Wyczyść stół" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Przeładuj wszystkie modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Rozłóż Wszystkie Modele na Wszystkie Platformy Robocze" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Ułóż wszystkie modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Wybór ułożenia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Zresetuj wszystkie pozycje modelu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Zresetuj wszystkie przekształcenia modelu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Otwórz plik(i)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Nowy projekt..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Pokaż folder konfiguracji" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Skonfiguruj widoczność ustawień ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Ten pakiet zostanie zainstalowany po ponownym uruchomieniu." +msgid "Time estimation" +msgstr "Szacunkowy czas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Ogólny" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Szacunkowy materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ustawienia" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Drukarki" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profile" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Szacunkowy czas niedostępny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Szacunkowy koszt niedostępny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Podgląd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Otwórz plik(i)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instaluj pakiety" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Otwórz plik(i)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Znaleziono jeden lub więcej plików G-code w wybranych plikach. Możesz otwierać tylko jeden plik G-code jednocześnie. Jeśli chcesz otworzyć plik G-code, proszę wybierz tylko jeden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" msgstr "Dodaj drukarkę" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" -msgid "What's New" -msgstr "Co nowego" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Dodaj drukarkę sieciową" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Dodaj drukarkę niesieciową" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Dodaj drukarkę przez IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Dodaj" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Nie można połączyć się z urządzeniem." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Ta drukarka nie może zostać dodana, ponieważ jest nieznana lub nie jest hostem grupy." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Wstecz" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Połącz" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Umowa z użytkownikiem" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Odrzuć i zamknij" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Witaj w Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Rozpocznij" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Producent" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Nazwa drukarki" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Nie znaleziono drukarki w Twojej sieci." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Odśwież" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Dodaj drukarkę przez IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Rozwiązywanie problemów" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Pomóż nam ulepszyć Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkownika, w tym:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Typy maszyn" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Zużycie materiału" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Ilość warstw" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Ustawienia druku" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Dane zebrane przez Ultimaker Cura nie będą zawierać żadnych prywatnych danych osobowych." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Więcej informacji" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" +msgid "What's New" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Pusty" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "version: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Kompletne rozwiązanie do druku przestrzennego." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3648,183 +3751,204 @@ msgstr "" "Cura jest rozwijana przez firmę Ultimaker B.V. we współpracy ze społecznością.\n" "Cura z dumą korzysta z następujących projektów open source:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Graficzny interfejs użytkownika" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Struktura aplikacji" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "Generator g-code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Biblioteka komunikacji międzyprocesowej" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Język programowania" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "Framework GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Powiązania Frameworka GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "Biblioteka Powiązań C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Format wymiany danych" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Wsparcie biblioteki do obliczeń naukowych" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Wsparcie biblioteki dla szybszej matematyki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Wsparcie biblioteki do obsługi plików STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Biblioteka pomocnicza do obsługi obiektów płaskich" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Biblioteka pomocnicza do obsługi siatek trójkątów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Wsparcie biblioteki do obsługi plików 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Biblioteka pomocy dla metadanych plików i przesyłania strumieniowego" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Biblioteka komunikacji szeregowej" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Bilbiotek poszukująca Zeroconf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Biblioteka edytująca pola" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Czcionka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "Ikony SVG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Wdrożenie aplikacji pomiędzy dystrybucjami Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Otwórz plik projektu" +msgid "Open file(s)" +msgstr "Otwórz plik(i)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Jest to plik projektu Cura. Czy chcesz otworzyć go jako projekt, czy zaimportować z niego modele?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Znaleziono jeden lub więcej plików projektu w wybranych plikach. Możesz otwierać tylko jeden plik projektu na raz. Proponujemy importowanie tylko modeli z tych plików. Czy chcesz kontynuować?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Zapamiętaj mój wybór" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Otwórz jako projekt" +msgid "Import all as models" +msgstr "Importuj wszystkie jako modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Zapisz projekt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Ekstruder %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & materiał" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Materiał" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Nie pokazuj podsumowania projektu podczas ponownego zapisywania" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Importuj modele" +msgid "Save" +msgstr "Zapisz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Odrzuć lub zachowaj zmiany" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3832,1206 +3956,144 @@ msgid "" "Alternatively, you can discard the changes to load the defaults from '%1'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Ustawienia profilu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Zawsze pytaj o to" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Odrzuć i nigdy nie pytaj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Zachowaj i nigdy nie pytaj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Otwórz plik projektu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Znaleziono jeden lub więcej plików projektu w wybranych plikach. Możesz otwierać tylko jeden plik projektu na raz. Proponujemy importowanie tylko modeli z tych plików. Czy chcesz kontynuować?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Jest to plik projektu Cura. Czy chcesz otworzyć go jako projekt, czy zaimportować z niego modele?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Zapamiętaj mój wybór" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importuj wszystkie jako modele" +msgid "Open as project" +msgstr "Otwórz jako projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Zapisz projekt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Ekstruder %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Nie pokazuj podsumowania projektu podczas ponownego zapisywania" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Zapisz" +msgid "Import models" +msgstr "Importuj modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Drukuj Wybrany Model z %1" -msgstr[1] "Drukuj Wybrane Modele z %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Bez tytułu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Plik" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Edytuj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Widok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Opcje" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "&Rozszerzenia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Preferencje" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "P&omoc" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Nowy projekt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Czy na pewno chcesz rozpocząć nowy projekt? Spowoduje to wyczyszczenie stołu i niezapisanych ustawień." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Konfiguracje" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Ta konfiguracja jest niedostępna, ponieważ %1 jest nierozpoznany. Przejdź do %2, aby pobrać prawidłowy profil materiału." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Ładowanie dostępnych konfiguracji z drukarki..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Konfiguracje są niedostępne, ponieważ drukarka jest odłączona." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Wybierz konfigurację" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Konfiguracje" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Niestandardowe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Drukarka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Włączona" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Użyj kleju dla lepszej przyczepności dla tej kombinacji materiałów." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Wydrukuj wybrany model z:" -msgstr[1] "Wydrukuj wybrane modele z:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Zduplikuj wybrany model" -msgstr[1] "Zduplikuj wybrane modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Liczba kopii" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Eksportuj..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Eksportuj Zaznaczenie..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Ulubione" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Podstawowe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Drukarki dostępne w sieci" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Drukarki lokalne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Otwórz &ostatnio używane" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Drukarka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Ustaw jako aktywną głowicę" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Włącz Ekstruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Wyłącz Ekstruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Widoczne Ustawienia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Ustaw Widoczność Ustawień..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Pozycja kamery" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Widok z kamery" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspektywiczny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Rzut ortograficzny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "P&ole robocze" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Nie podłączono do drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Drukarka nie akceptuje poleceń" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "W naprawie. Sprawdź drukarkę" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Utracone połączenie z drukarką" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Drukowanie..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Wstrzymano" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Przygotowywanie ..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Usuń wydruk" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Anuluj Wydruk" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Czy na pewno chcesz przerwać drukowanie?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Lista obiektów" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Interfejs" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Waluta:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Motyw:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Musisz zrestartować aplikację, aby te zmiany zaczęły obowiązywać." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Tnij automatycznie podczas zmiany ustawień." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Automatyczne Cięcie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Zachowanie okna edycji" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Zaznacz nieobsługiwane obszary modelu na czerwono. Bez wsparcia te obszary nie będą drukowane prawidłowo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Wyświetl zwis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Przenosi kamerę, aby model był w centrum widoku, gdy wybrano model" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Wyśrodkuj kamerę kiedy przedmiot jest zaznaczony" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Czy domyślne zachowanie zoomu powinno zostać odwrócone?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Odwróć kierunek zoomu kamery." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Czy przybliżanie powinno poruszać się w kierunku myszy?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Powiększanie w kierunku myszy nie jest obsługiwane w danej perspektywie." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Przybliżaj w kierunku myszy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Czy modele na platformie powinny być przenoszone w taki sposób, aby nie przecinały się?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Upewnij się, że modele są oddzielone" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Czy modele na platformie powinny być przesunięte w dół, aby dotknęły stołu roboczego?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automatycznie upuść modele na stół roboczy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Pokaż wiadomości ostrzegawcze w czytniku g-code." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Wiadomość ostrzegawcza w czytniku g-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Czy warstwa powinna być wymuszona w trybie zgodności?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomienia)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Czy Cura powinna się otwierać w miejscu, w którym została zamknięta?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Przywróć pozycję okna przy starcie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Jakiego rodzaju kamery należy użyć do renderowania?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderowanie z kamery: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspektywiczny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Rzut ortograficzny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Otwieranie i zapisywanie plików" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Czy modele powinny być skalowane do wielkości obszaru roboczego, jeśli są zbyt duże?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Skaluj duże modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Model może wydawać się bardzo mały, jeśli jego jednostka jest na przykład w metrach, a nie w milimetrach. Czy takie modele powinny być skalowane?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Skaluj bardzo małe modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Czy modele powinny zostać zaznaczone po załadowaniu?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Zaznaczaj modele po załadowaniu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Czy przedrostek oparty na nazwie drukarki powinien być automatycznie dodawany do nazwy zadania?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Dodaj przedrostek maszyny do nazwy zadania" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Czy podsumowanie powinno być wyświetlane podczas zapisu projektu?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Pokaż okno podsumowania podczas zapisywaniu projektu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Domyślne zachowanie podczas otwierania pliku projektu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Domyślne zachowanie podczas otwierania pliku projektu: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Zawsze pytaj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Zawsze otwieraj jako projekt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Zawsze importuj modele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Kiedy dokonasz zmian w profilu i przełączysz się na inny, zostanie wyświetlone okno z pytaniem, czy chcesz zachować twoje zmiany, czy nie. Możesz też wybrać domyślne zachowanie, żeby to okno już nigdy nie było pokazywane." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Profile" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Domyślne zachowanie dla zmienionych ustawień podczas zmiany profilu na inny: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Zawsze odrzucaj wprowadzone zmiany" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Zawsze przenoś wprowadzone zmiany do nowego profilu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Prywatność" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Czy Cura ma sprawdzać dostępność aktualizacji podczas uruchamiania programu?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Sprawdź, dostępność aktualizacji podczas uruchamiania" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Czy anonimowe dane na temat wydruku mają być wysyłane do Ultimaker? Uwaga. Żadne modele, adresy IP, ani żadne inne dane osobiste nie będą wysyłane i/lub przechowywane." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Wyślij (anonimowe) informacje o drukowaniu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Więcej informacji" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktywuj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Zmień nazwę" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Stwórz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplikuj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Importuj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Eksportuj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Drukarka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Potwierdź Usunięcie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Czy na pewno chcesz usunąć %1? Nie można tego cofnąć!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importuj Materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Nie można zaimportować materiału %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Udało się zaimportować materiał %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Eksportuj Materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Nie udało się wyeksportować materiału do %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Udało się wyeksportować materiał do %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informacja" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Potwierdź Zmianę Średnicy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Średnica nowego filamentu została ustawiona na %1mm, i nie jest kompatybilna z bieżącym ekstruderem. Czy chcesz kontynuować?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Wyświetlana nazwa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Typ Materiału" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Kolor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Właściwości" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Gęstość" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Średnica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Koszt Filamentu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Waga filamentu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Długość Filamentu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Koszt na metr" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Ten materiał jest powiązany z %1 i dzieli się niekórymi swoimi właściwościami." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Odłącz materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Opis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informacje dotyczące przyczepności" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Ustawienia druku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Stwórz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplikuj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Stwórz profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Podaj nazwę tego profilu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplikuj profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Zmień nazwę profilu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importuj Profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Eksportuj Profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Drukarka: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Aktualizuj profil z bieżącymi ustawieniami" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Odrzuć bieżące zmiany" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Ten profil używa ustawień domyślnych określonych przez drukarkę, dlatego nie ma żadnych ustawień z poniższej liście." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Aktualne ustawienia odpowiadają wybranemu profilowi." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ustawienia ogólne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Przeliczone" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Ustawienie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Aktualny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Jednostka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Widoczność ustawienia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Zaznacz wszystko" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Ekstruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Docelowa temperatura głowicy. Głowica będzie się rozgrzewać lub chłodzić do tej temperatury. Jeżeli jest równe 0, grzanie głowicy będzie wyłączone." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Aktualna temperatura tej głowicy." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Temperatura do wstępnego podgrzewania głowicy." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Anuluj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Podgrzewanie wstępne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Podgrzej głowicę przed drukowaniem. Możesz w dalszym ciągu dostosowywać drukowanie podczas podgrzewania i nie będziesz musiał czekać na podgrzanie głowicy kiedy będziesz gotowy." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Kolor materiału w tym ekstruderze." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Materiał w głowicy drukującej." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Dysza włożona do tego ekstrudera." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Stół roboczy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "Temperatura docelowa podgrzewanego stołu. Stół rozgrzeje się lub schłodzi w kierunku tej temperatury. Jeśli ustawione jest 0, grzanie stołu jest wyłączone." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Bieżąca temperatura podgrzewanego stołu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Temperatura do wstępnego podgrzewania stołu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Przed drukowaniem podgrzej stół. W dalszym ciągu można dostosowywać druk podczas nagrzewania, a nie będziesz musiał czekać na rozgrzanie stołu, gdy będziesz gotowy do drukowania." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Kontrola drukarką" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Pozycja Swobodnego Ruchu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Dystans Swobodnego Ruchu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Wyślij G-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Wyślij niestandardową komendę G-code do podłączonej drukarki. Naciśnij 'enter', aby wysłać komendę." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Drukarka nie jest podłączona." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Dodaj drukarkę" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Zarządzaj drukarkami" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Podłączone drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Zdefiniowane drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Aktywny wydruk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Nazwa pracy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Czas druku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Szacowany czas pozostały" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Dodaj drukarkę" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Zarządzaj drukarkami" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Podłączone drukarki" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Zdefiniowane drukarki" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Ustawienia druku" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Ustawienia druku niedostępne. Plik .gcode nie może być modyfikowany." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5042,120 +4104,1700 @@ msgstr "" "\n" "Kliknij, aby otworzyć menedżer profili." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Profile niestandardowe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Odrzuć bieżące zmiany" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Polecane" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Niestandardowe" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Wł" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Wył" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Eksperymentalne" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "Nie ma profilu %1 dla konfiguracji w ekstruderze %2. Zamiast tego zostaną użyte domyślne cale" msgstr[1] "Nie ma profilu %1 dla konfiguracji w ekstruderach %2. Zamiast tego zostaną użyte domyślne cale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Ustawienia druku niedostępne. Plik .gcode nie może być modyfikowany." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Polecane" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Niestandardowe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Wł" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Wył" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Eksperymentalne" +msgid "Profiles" +msgstr "Profile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Przyczepność" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Włącz drukowanie obrysu lub tratwy. Spowoduje to dodanie płaskiej powierzchni wokół lub pod Twoim obiektem, która jest łatwa do usunięcia po wydruku." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Stopniowe wypełnienie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Stopniowe wypełnienie stopniowo zwiększa ilość wypełnień w górę." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Zmodyfikowałeś ustawienia profilu. Jeżeli chcesz je zmienić, przejdź do trybu niestandardowego." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Podpory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Generuje podpory wspierające części modelu, które mają zwis. Bez tych podpór takie części mogłyby spaść podczas drukowania." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Niektóre ukryte ustawienia używają wartości różniących się od ich normalnej, obliczonej wartości.\n" -"\n" -"Kliknij, aby te ustawienia były widoczne." +msgid "Gradual infill" +msgstr "Stopniowe wypełnienie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Stopniowe wypełnienie stopniowo zwiększa ilość wypełnień w górę." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Przyczepność" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Włącz drukowanie obrysu lub tratwy. Spowoduje to dodanie płaskiej powierzchni wokół lub pod Twoim obiektem, która jest łatwa do usunięcia po wydruku." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Drukarki dostępne w sieci" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Drukarki lokalne" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Materiał" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Ulubione" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Podstawowe" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Wydrukuj wybrany model z:" +msgstr[1] "Wydrukuj wybrane modele z:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Zduplikuj wybrany model" +msgstr[1] "Zduplikuj wybrane modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Liczba kopii" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Eksportuj..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Eksportuj Zaznaczenie..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Konfiguracje" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Niestandardowe" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Drukarka" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Włączona" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Materiał" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Użyj kleju dla lepszej przyczepności dla tej kombinacji materiałów." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Wybierz konfigurację" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Konfiguracje" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Ładowanie dostępnych konfiguracji z drukarki..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "Konfiguracje są niedostępne, ponieważ drukarka jest odłączona." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Ta konfiguracja jest niedostępna, ponieważ %1 jest nierozpoznany. Przejdź do %2, aby pobrać prawidłowy profil materiału." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Drukarka" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Materiał" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Ustaw jako aktywną głowicę" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Włącz Ekstruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Wyłącz Ekstruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Otwórz &ostatnio używane" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Widoczne Ustawienia" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Ustaw Widoczność Ustawień..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Pozycja kamery" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Widok z kamery" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspektywiczny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Rzut ortograficzny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "P&ole robocze" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Typ widoku" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "" +msgstr[1] "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profile" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Aktywuj" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Stwórz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Duplikuj" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Zmień nazwę" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Importuj" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Eksportuj" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Stwórz profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Podaj nazwę tego profilu." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplikuj profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Potwierdź Usunięcie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Czy na pewno chcesz usunąć %1? Nie można tego cofnąć!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Zmień nazwę profilu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importuj Profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Eksportuj Profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Drukarka: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Aktualizuj profil z bieżącymi ustawieniami" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Ten profil używa ustawień domyślnych określonych przez drukarkę, dlatego nie ma żadnych ustawień z poniższej liście." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Aktualne ustawienia odpowiadają wybranemu profilowi." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ustawienia ogólne" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Ogólny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Interfejs" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Waluta:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Motyw:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Musisz zrestartować aplikację, aby te zmiany zaczęły obowiązywać." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Tnij automatycznie podczas zmiany ustawień." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Automatyczne Cięcie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Zachowanie okna edycji" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Zaznacz nieobsługiwane obszary modelu na czerwono. Bez wsparcia te obszary nie będą drukowane prawidłowo." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Wyświetl zwis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Przenosi kamerę, aby model był w centrum widoku, gdy wybrano model" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Wyśrodkuj kamerę kiedy przedmiot jest zaznaczony" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Czy domyślne zachowanie zoomu powinno zostać odwrócone?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Odwróć kierunek zoomu kamery." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Czy przybliżanie powinno poruszać się w kierunku myszy?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Powiększanie w kierunku myszy nie jest obsługiwane w danej perspektywie." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Przybliżaj w kierunku myszy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Czy modele na platformie powinny być przenoszone w taki sposób, aby nie przecinały się?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Upewnij się, że modele są oddzielone" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Czy modele na platformie powinny być przesunięte w dół, aby dotknęły stołu roboczego?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Automatycznie upuść modele na stół roboczy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Pokaż wiadomości ostrzegawcze w czytniku g-code." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Wiadomość ostrzegawcza w czytniku g-code" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Czy warstwa powinna być wymuszona w trybie zgodności?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomienia)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Czy Cura powinna się otwierać w miejscu, w którym została zamknięta?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Przywróć pozycję okna przy starcie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Jakiego rodzaju kamery należy użyć do renderowania?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderowanie z kamery:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspektywiczny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Rzut ortograficzny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Otwieranie i zapisywanie plików" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Czy modele powinny być skalowane do wielkości obszaru roboczego, jeśli są zbyt duże?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Skaluj duże modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Model może wydawać się bardzo mały, jeśli jego jednostka jest na przykład w metrach, a nie w milimetrach. Czy takie modele powinny być skalowane?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Skaluj bardzo małe modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Czy modele powinny zostać zaznaczone po załadowaniu?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Zaznaczaj modele po załadowaniu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Czy przedrostek oparty na nazwie drukarki powinien być automatycznie dodawany do nazwy zadania?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Dodaj przedrostek maszyny do nazwy zadania" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Czy podsumowanie powinno być wyświetlane podczas zapisu projektu?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Pokaż okno podsumowania podczas zapisywaniu projektu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Domyślne zachowanie podczas otwierania pliku projektu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Domyślne zachowanie podczas otwierania pliku projektu: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Zawsze pytaj" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Zawsze otwieraj jako projekt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Zawsze importuj modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Kiedy dokonasz zmian w profilu i przełączysz się na inny, zostanie wyświetlone okno z pytaniem, czy chcesz zachować twoje zmiany, czy nie. Możesz też wybrać domyślne zachowanie, żeby to okno już nigdy nie było pokazywane." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Domyślne zachowanie dla zmienionych ustawień podczas zmiany profilu na inny: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Zawsze odrzucaj wprowadzone zmiany" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Zawsze przenoś wprowadzone zmiany do nowego profilu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Prywatność" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Czy anonimowe dane na temat wydruku mają być wysyłane do Ultimaker? Uwaga. Żadne modele, adresy IP, ani żadne inne dane osobiste nie będą wysyłane i/lub przechowywane." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Wyślij (anonimowe) informacje o drukowaniu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Więcej informacji" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Czy Cura ma sprawdzać dostępność aktualizacji podczas uruchamiania programu?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Sprawdź, dostępność aktualizacji podczas uruchamiania" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Informacja" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Potwierdź Zmianę Średnicy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Średnica nowego filamentu została ustawiona na %1mm, i nie jest kompatybilna z bieżącym ekstruderem. Czy chcesz kontynuować?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Wyświetlana nazwa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Typ Materiału" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Kolor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Właściwości" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Gęstość" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Średnica" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Koszt Filamentu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Waga filamentu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Długość Filamentu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Koszt na metr" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Ten materiał jest powiązany z %1 i dzieli się niekórymi swoimi właściwościami." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Odłącz materiał" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Opis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informacje dotyczące przyczepności" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Stwórz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplikuj" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Drukarka" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importuj Materiał" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Nie można zaimportować materiału %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Udało się zaimportować materiał %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Eksportuj Materiał" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Nie udało się wyeksportować materiału do %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Udało się wyeksportować materiał do %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Widoczność ustawienia" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Zaznacz wszystko" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Drukarki" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Przeliczone" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Ustawienie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Aktualny" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Jednostka" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Nie podłączono do drukarki" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Drukarka nie akceptuje poleceń" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "W naprawie. Sprawdź drukarkę" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Utracone połączenie z drukarką" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Drukowanie..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Wstrzymano" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Przygotowywanie ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Usuń wydruk" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Anuluj Wydruk" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Czy na pewno chcesz przerwać drukowanie?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Drukuj Wybrany Model z %1" +msgstr[1] "Drukuj Wybrane Modele z %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Kontrola drukarką" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Pozycja Swobodnego Ruchu" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Dystans Swobodnego Ruchu" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Wyślij G-code" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Wyślij niestandardową komendę G-code do podłączonej drukarki. Naciśnij 'enter', aby wysłać komendę." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Ekstruder" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Docelowa temperatura głowicy. Głowica będzie się rozgrzewać lub chłodzić do tej temperatury. Jeżeli jest równe 0, grzanie głowicy będzie wyłączone." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Aktualna temperatura tej głowicy." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Temperatura do wstępnego podgrzewania głowicy." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Anuluj" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Podgrzewanie wstępne" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Podgrzej głowicę przed drukowaniem. Możesz w dalszym ciągu dostosowywać drukowanie podczas podgrzewania i nie będziesz musiał czekać na podgrzanie głowicy kiedy będziesz gotowy." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Kolor materiału w tym ekstruderze." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Materiał w głowicy drukującej." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Dysza włożona do tego ekstrudera." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Drukarka nie jest podłączona." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Stół roboczy" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "Temperatura docelowa podgrzewanego stołu. Stół rozgrzeje się lub schłodzi w kierunku tej temperatury. Jeśli ustawione jest 0, grzanie stołu jest wyłączone." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Bieżąca temperatura podgrzewanego stołu." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Temperatura do wstępnego podgrzewania stołu." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Przed drukowaniem podgrzej stół. W dalszym ciągu można dostosowywać druk podczas nagrzewania, a nie będziesz musiał czekać na rozgrzanie stołu, gdy będziesz gotowy do drukowania." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Zaloguj" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Bez tytułu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Pokaż przewodnik rozwiązywania problemów online" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Przełącz tryb pełnoekranowy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Wyłącz tryb pełnoekranowy" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Cofnij" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Ponów" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Zamknij" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Widok 3D" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Widok z przodu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Widok z góry" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Widok z lewej strony" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Widok z prawej strony" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Konfiguruj Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Dodaj drukarkę..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Zarządzaj drukarkami..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Zarządzaj materiałami..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Aktualizuj profil z bieżącymi ustawieniami" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Odrzuć bieżące zmiany" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Utwórz profil z bieżących ustawień..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Zarządzaj profilami..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Pokaż dokumentację internetową" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Zgłoś błąd" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Co nowego" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "O..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Usuń model" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Wyśrodkuj model na platformie" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Grupuj modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Rozgrupuj modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Połącz modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Powiel model..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Wybierz wszystkie modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Wyczyść stół" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Przeładuj wszystkie modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Rozłóż Wszystkie Modele na Wszystkie Platformy Robocze" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Ułóż wszystkie modele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Wybór ułożenia" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Zresetuj wszystkie pozycje modelu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Zresetuj wszystkie przekształcenia modelu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Otwórz plik(i)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Nowy projekt..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Pokaż folder konfiguracji" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Skonfiguruj widoczność ustawień ..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "To ustawienie nie jest używane, ponieważ wszystkie ustawienia, na które wpływa, są nadpisane." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Wpływać" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Pod wpływem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "To ustawienie jest dzielone pomiędzy wszystkimi ekstruderami. Zmiana tutaj spowoduje zmianę dla wszystkich ekstruderów." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5166,7 +5808,7 @@ msgstr "" "\n" "Kliknij, aby przywrócić wartość z profilu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5177,506 +5819,92 @@ msgstr "" "\n" "Kliknij, aby przywrócić wartość obliczoną." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Ustawienia wyszukiwania" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Skopiuj wartość do wszystkich ekstruderów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Skopiuj wszystkie zmienione wartości do wszystkich ekstruderów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ukryj tę opcję" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Nie pokazuj tej opcji" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Pozostaw tę opcję widoczną" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Widok 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Widok z przodu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Widok z góry" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Widok z lewej strony" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Widok z prawej strony" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Typ widoku" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Niektóre ukryte ustawienia używają wartości różniących się od ich normalnej, obliczonej wartości.\n" +"\n" +"Kliknij, aby te ustawienia były widoczne." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" +msgid "This package will be installed after restarting." +msgstr "Ten pakiet zostanie zainstalowany po ponownym uruchomieniu." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ustawienia" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instaluj pakiety" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Otwórz plik(i)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Znaleziono jeden lub więcej plików G-code w wybranych plikach. Możesz otwierać tylko jeden plik G-code jednocześnie. Jeśli chcesz otworzyć plik G-code, proszę wybierz tylko jeden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Producent" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Nazwa drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" msgstr "Dodaj drukarkę" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Dodaj drukarkę sieciową" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Dodaj drukarkę niesieciową" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Nie znaleziono drukarki w Twojej sieci." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Odśwież" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Dodaj drukarkę przez IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Rozwiązywanie problemów" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Dodaj drukarkę przez IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Dodaj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Nie można połączyć się z urządzeniem." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Ta drukarka nie może zostać dodana, ponieważ jest nieznana lub nie jest hostem grupy." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Wstecz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Połącz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Pomóż nam ulepszyć Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkownika, w tym:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Typy maszyn" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Zużycie materiału" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Ilość warstw" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Ustawienia druku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Dane zebrane przez Ultimaker Cura nie będą zawierać żadnych prywatnych danych osobowych." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Więcej informacji" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Pusty" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Umowa z użytkownikiem" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Odrzuć i zamknij" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Witaj w Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Rozpocznij" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Sprawdza możliwe problemy drukowania modeli i konfiguracji wydruku i podaje porady." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Sprawdzacz Modelu" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Zapewnia wsparcie dla czytania plików 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Czytnik 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Writer" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Zapewnia wsparcie dla czytania plików AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Czytnik AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Utwórz kopię zapasową i przywróć konfigurację." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Kopie zapasowe Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Zapewnia połączenie z tnącym zapleczem CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Zaplecze CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Zapewnia wsparcie dla importowania profili Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Czytnik Profili Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Zapewnia wsparcie dla eksportowania profili Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura Profile Writer" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Sprawdź aktualizacje oprogramowania." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Sprawdzacz Aktualizacji Oprogramowania" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Dostarcza działanie, pozwalające na aktualizację oprogramowania sprzętowego." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aktualizacja oprogramowania sprzętowego" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Odczytuje g-code ze skompresowanych archiwum." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Czytnik Skompresowanego G-code" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Zapisuje g-code do skompresowanego archiwum." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Zapisywacz Skompresowanego G-code" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Zapewnia wsparcie dla importowania profili z plików g-code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Czytnik Profili G-code" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Pozwala na ładowanie i wyświetlanie plików G-code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Czytnik G-code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Zapisuje g-code do pliku." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Zapisywacz G-code" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Włącza możliwość generowania drukowalnej geometrii z pliku obrazu 2D." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Czytnik Obrazu" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Zapewnia wsparcie dla importowania profili ze starszych wersji Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Czytnik Profili Starszej Cura" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Zapewnia możliwość zmiany ustawień maszyny (takich jak objętość robocza, rozmiar dyszy itp.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Zapewnia etap monitorowania w Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Etap Monitorowania" +msgstr "Co nowego" #: PerObjectSettingsTool/plugin.json msgctxt "description" @@ -5688,86 +5916,46 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Narzędzie Ustawień dla Każdego Modelu" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Dodatek, który pozwala użytkownikowi tworzenie skryptów do post processingu" +msgid "Provides support for importing Cura profiles." +msgstr "Zapewnia wsparcie dla importowania profili Cura." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Post Processing" +msgid "Cura Profile Reader" +msgstr "Czytnik Profili Cura" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Zapewnia etap przygotowania w Cura." +msgid "Provides support for reading X3D files." +msgstr "Zapewnia możliwość czytania plików X3D." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Etap Przygotowania" +msgid "X3D Reader" +msgstr "Czytnik X3D" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Dostarcza podgląd w Cura." +msgid "Backup and restore your configuration." +msgstr "Utwórz kopię zapasową i przywróć konfigurację." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Podgląd" +msgid "Cura Backups" +msgstr "Kopie zapasowe Cura" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Zapewnia wsparcie dla podłączania i zapisywania dysków zewnętrznych." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Zapewnia możliwość zmiany ustawień maszyny (takich jak objętość robocza, rozmiar dyszy itp.)." -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Wtyczka Urządzenia Wyjścia Dysku Zewnętrznego" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" +msgid "Machine Settings Action" msgstr "" -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Zapewnia widok Symulacji." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Widok Symulacji" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Zatwierdza anonimowe informację o cięciu. Może być wyłączone w preferencjach." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informacje o cięciu" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Zapewnia normalny widok siatki." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Widok Bryły" - #: SupportEraser/plugin.json msgctxt "description" msgid "Creates an eraser mesh to block the printing of support in certain places" @@ -5778,35 +5966,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Usuwacz Podpór" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Znajdź, zarządzaj i instaluj nowe pakiety Cura." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Zapewnia wsparcie dla podłączania i zapisywania dysków zewnętrznych." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Narzędzia" +msgid "Removable Drive Output Device Plugin" +msgstr "Wtyczka Urządzenia Wyjścia Dysku Zewnętrznego" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Zapewnia wsparcie dla czytania plików modeli." +msgid "Provides a machine actions for updating firmware." +msgstr "Dostarcza działanie, pozwalające na aktualizację oprogramowania sprzętowego." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Czytnik siatki trójkątów" +msgid "Firmware Updater" +msgstr "Aktualizacja oprogramowania sprzętowego" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Zapewnia obsługę odczytu pakietów formatu Ultimaker." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Zapewnia wsparcie dla importowania profili ze starszych wersji Cura." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "Czytnik UFP" +msgid "Legacy Cura Profile Reader" +msgstr "Czytnik Profili Starszej Cura" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Zapewnia wsparcie dla czytania plików 3MF." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Czytnik 3MF" #: UFPWriter/plugin.json msgctxt "description" @@ -5818,25 +6016,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "Zapisywacz UFP" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Zapewnia czynności maszyny dla urządzeń Ultimaker (na przykład kreator poziomowania stołu, wybór ulepszeń itp.)." +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Czynności maszyny Ultimaker" +msgid "Sentry Logger" +msgstr "" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Zarządza połączeniami z sieciowymi drukarkami Ultimaker." +msgid "Provides support for importing profiles from g-code files." +msgstr "Zapewnia wsparcie dla importowania profili z plików g-code." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Połączenie sieciowe Ultimaker" +msgid "G-code Profile Reader" +msgstr "Czytnik Profili G-code" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Dostarcza podgląd w Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Podgląd" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Zapewnia widok rentgena." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Widok Rentgena" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Zapewnia połączenie z tnącym zapleczem CuraEngine." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Zaplecze CuraEngine" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Zapewnia wsparcie dla czytania plików AMF." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Czytnik AMF" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Odczytuje g-code ze skompresowanych archiwum." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Czytnik Skompresowanego G-code" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Dodatek, który pozwala użytkownikowi tworzenie skryptów do post processingu" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Post Processing" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Zapewnia wsparcie dla eksportowania profili Cura." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura Profile Writer" #: USBPrinting/plugin.json msgctxt "description" @@ -5848,25 +6116,135 @@ msgctxt "name" msgid "USB printing" msgstr "Drukowanie USB" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Ulepsza konfigurację z Cura 2.1 do Cura 2.2." +msgid "Provides a prepare stage in Cura." +msgstr "Zapewnia etap przygotowania w Cura." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Ulepszenie Wersji z 2.1 do 2.2" +msgid "Prepare Stage" +msgstr "Etap Przygotowania" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Ulepsza konfigurację z Cura 2.2 do Cura 2.4." +msgid "Allows loading and displaying G-code files." +msgstr "Pozwala na ładowanie i wyświetlanie plików G-code." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Ulepszenie Wersji z 2.2 do 2.4" +msgid "G-code Reader" +msgstr "Czytnik G-code" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Włącza możliwość generowania drukowalnej geometrii z pliku obrazu 2D." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Czytnik Obrazu" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Zapewnia czynności maszyny dla urządzeń Ultimaker (na przykład kreator poziomowania stołu, wybór ulepszeń itp.)." + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Czynności maszyny Ultimaker" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Zapisuje g-code do skompresowanego archiwum." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Zapisywacz Skompresowanego G-code" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Sprawdź aktualizacje oprogramowania." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Sprawdzacz Aktualizacji Oprogramowania" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Zatwierdza anonimowe informację o cięciu. Może być wyłączone w preferencjach." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informacje o cięciu" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Zapewnia możliwość czytania i tworzenia profili materiałów opartych o XML." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Profile Materiału" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "" + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Znajdź, zarządzaj i instaluj nowe pakiety Cura." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Narzędzia" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Zapisuje g-code do pliku." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Zapisywacz G-code" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Zapewnia widok Symulacji." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Widok Symulacji" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5878,55 +6256,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Ulepszenie Wersji z 2.5 do 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Ulepsza konfigurację z Cura 2.6 do Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Ulepszenie Wersji z 2.6 do 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Ulepsza konfigurację z Cura 2.7 do Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Ulepszenie Wersji 2.7 do 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Ulepsza konfigurację z Cura 3.0 do Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Ulepszenie Wersji 3.0 do 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Ulepsza konfigurację z Cura 3.2 do Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Ulepszenie Wersji z 3.2 do 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Ulepsza konfigurację z Cura 3.3 do Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Ulepszenie Wersji z 3.3 do 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5938,35 +6286,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Ulepszenie Wersji z 3.4 do 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Uaktualnia konfiguracje z Cura 3.5 to Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Ulepsza konfigurację z Cura 2.1 do Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Uaktualnij wersję 3.5 do 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Ulepszenie Wersji z 2.1 do 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Uaktualnia konfiguracje z Cura 4.0 to Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Ulepsza konfigurację z Cura 3.2 do Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Uaktualnij wersję 4.0 do 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Ulepszenie Wersji z 3.2 do 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Uaktualnia konfiguracje z Cura 4.1 to Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Uaktualnij wersję 4.1 do 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -5988,66 +6346,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Uaktualnij wersję 4.3 do 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6058,35 +6356,183 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Zapewnia możliwość czytania plików X3D." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Ulepsza konfigurację z Cura 2.7 do Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "Czytnik X3D" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Ulepszenie Wersji 2.7 do 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Zapewnia możliwość czytania i tworzenia profili materiałów opartych o XML." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Ulepsza konfigurację z Cura 2.6 do Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Profile Materiału" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Ulepszenie Wersji z 2.6 do 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Zapewnia widok rentgena." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Widok Rentgena" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Ulepsza konfigurację z Cura 3.3 do Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Ulepszenie Wersji z 3.3 do 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Ulepsza konfigurację z Cura 3.0 do Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Ulepszenie Wersji 3.0 do 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Uaktualnia konfiguracje z Cura 4.0 to Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Uaktualnij wersję 4.0 do 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Ulepsza konfigurację z Cura 2.2 do Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Ulepszenie Wersji z 2.2 do 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Uaktualnia konfiguracje z Cura 4.1 to Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Uaktualnij wersję 4.1 do 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Uaktualnia konfiguracje z Cura 3.5 to Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Uaktualnij wersję 3.5 do 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Zarządza połączeniami z sieciowymi drukarkami Ultimaker." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Połączenie sieciowe Ultimaker" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Zapewnia wsparcie dla czytania plików modeli." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Czytnik siatki trójkątów" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Zapewnia obsługę odczytu pakietów formatu Ultimaker." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Czytnik UFP" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Zapewnia normalny widok siatki." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Widok Bryły" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF Writer" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Zapewnia etap monitorowania w Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Etap Monitorowania" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Sprawdza możliwe problemy drukowania modeli i konfiguracji wydruku i podaje porady." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Sprawdzacz Modelu" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Wyślij i nadzoruj zadania druku z każdego miejsca, używając konta Ultimaker." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Nowe oprogramowanie %s jest dostępne" #~ msgctxt "@label:listbox" #~ msgid "Layer thickness" diff --git a/resources/i18n/pl_PL/fdmextruder.def.json.po b/resources/i18n/pl_PL/fdmextruder.def.json.po index ddfad4bb62..c9a1cb944b 100644 --- a/resources/i18n/pl_PL/fdmextruder.def.json.po +++ b/resources/i18n/pl_PL/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2019-03-13 14:00+0200\n" "Last-Translator: Mariusz 'Virgin71' Matłosz \n" "Language-Team: reprapy.pl\n" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index ab90d10d72..bfe7723308 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -154,6 +154,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "Głębokość (w kierunku Y) obszaru drukowania." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Wysokość Maszyny" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Wysokość (w kierunku Z) obszaru drukowania." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -194,16 +204,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminium" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Wysokość Maszyny" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Wysokość (w kierunku Z) obszaru drukowania." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -561,8 +561,8 @@ msgstr "Maksymalna prędkość silnika osi Z." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Maksymalna Prędk. Posuwu" +msgid "Maximum Speed E" +msgstr "" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -686,8 +686,8 @@ msgstr "Kroki na milimetr (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "" #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Połącz górne/dolne ścieżki, które przebiegają koło siebie. Włączenie tej opcji powoduje ograniczenie czasu ruchów jałowych dla wzorca koncentrycznego, ale ze względu na możliwość pojawienia się połączeń w połowie ścieżki wypełnienia, opcja ta może obniżyć jakość górnego wykończenia." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Zygzak" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1711,8 +1731,8 @@ msgstr "Wzorzec Wypełnienia" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Wzorzec wypełnienia wydruku. Kierunek zamiany linii i zygzaka na alternatywnych warstwach, zmniejsza koszty materiałów. Wzorzec siatki, trójkąta, sześcianu, oktetu, ćwiartki sześciennej, krzyżyka i koncentryczny, są w pełni drukowane na każdej warstwie. Gyroid, sześcian, świartka sześcienna i oktet zmienia się z każdą warstwą, aby zapewnić bardziej równomierny rozkład sił w każdym kierunku." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "" #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1779,6 +1799,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1993,6 +2018,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "" + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3183,6 +3248,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Wszędzie" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5134,8 +5204,8 @@ msgstr "Min. Szerokość Formy" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "Minimalna odległość między zewnętrzną stroną formy i zewnętrzną stroną modelu." +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "" #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5302,6 +5372,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Zygzak" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6401,6 +6481,22 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładowania z pliku." +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maksymalna Prędk. Posuwu" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Wzorzec wypełnienia wydruku. Kierunek zamiany linii i zygzaka na alternatywnych warstwach, zmniejsza koszty materiałów. Wzorzec siatki, trójkąta, sześcianu, oktetu, ćwiartki sześciennej, krzyżyka i koncentryczny, są w pełni drukowane na każdej warstwie. Gyroid, sześcian, świartka sześcienna i oktet zmienia się z każdą warstwą, aby zapewnić bardziej równomierny rozkład sił w każdym kierunku." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Minimalna odległość między zewnętrzną stroną formy i zewnętrzną stroną modelu." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Przy wartości niezerowej, kombinowane ruchy jałowe o dystansie większym niż zadany bedą używały retrakcji." diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 1e2858a8ea..f9d8002a8c 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-06-19 06:21+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2022-01-10 12:10+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -17,160 +17,399 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Backup" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras de rede disponíveis" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Não sobreposto" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Novos materiais instalados" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saiba mais" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Não foi possível salvar o arquivo de materiais para {}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Falha em salvar o arquivo de materiais" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Erro desconhecido." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volume de Impressão" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Não sobreposto" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras de rede disponíveis" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visual" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engenharia" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Perfis personalizados" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Todos Os Tipos Suportados ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos Os Arquivos (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visual" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engenharia" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Rascunho" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Material Personalizado" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Login falhou" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Achando novos lugares para objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Buscando Localização" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Não Foi Encontrada Localização" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "A resposta da Digital Factory parece estar corrompida." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "A resposta da Digital Factory veio sem informações importantes." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Falha em conectar à Digital Factory." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Carregando máquinas..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Ajustando preferências..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inicializando Máquina Ativa..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inicializando gestor de máquinas..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inicializando volume de impressão..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Configurando cena..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Carregando interface..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inicializando motor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume de Impressão" +msgid "Warning" +msgstr "Aviso" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Pular" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Fechar" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Próximo" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Finalizar" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Adicionar" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupo #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parede Externa" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes Internas" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Contorno" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Preenchimento" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Preenchimento de Suporte" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface de Suporte" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Suporte" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt (Saia)" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre de Prime" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Percurso" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrações" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Outros" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "As notas de lançamento não puderam ser abertas." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "O Cura não consegue iniciar" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -185,32 +424,32 @@ msgstr "" "

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Enviar relatório de falha à Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Exibir relatório de falha detalhado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostrar a pasta de configuração" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Salvar e Restabelecer Configuração" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Relatório de Problema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -221,642 +460,618 @@ msgstr "" "

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informação do Sistema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconhecida" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Linguagem do Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Linguagem do SO" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versão do Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versão do PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Ainda não inicializado
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versão da OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Renderizador da OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Traceback do erro" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Carregando máquinas..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Ajustando preferências..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inicializando Máquina Ativa..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inicializando gestor de máquinas..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inicializando volume de impressão..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Configurando cena..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Carregando interface..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inicializando motor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Erro" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Multiplicando e colocando objetos" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Colocando Objetos" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Colocando Objeto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Não foi possível ler a resposta." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "O estado provido não está correto." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não foi possível iniciar processo de sign-in. Verifique se outra tentativa de sign-in ainda está ativa." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Não foi possível contactar o servidor de contas da Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Login falhou" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "O estado provido não está correto." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Tempo esgotado ao autenticar com o servidor da conta." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Não foi possível ler a resposta." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Multiplicando e colocando objetos" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Colocando Objetos" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Colocando Objeto" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Não Suportado" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Bico" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Ajustes atualizados" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extrusor(es) Desabilitado(s)" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "O Arquivo Já Existe" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL de arquivo inválida:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Falha ao exportar perfil para {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado para {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação concluída" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Falha ao importar perfil de {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Não há perfil personalizado a importar no arquivo {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Erro ao importar perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Erro ao importar perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com sucesso." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Arquivo {0} não contém nenhum perfil válido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Falta um tipo de qualidade ao Perfil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Não há impressora ativa ainda." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não foi possível adicionar o perfil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Não Suportado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Bico" +msgid "Per Model Settings" +msgstr "Ajustes por Modelo" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar ajustes por Modelo" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil do Cura" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Arquivo X3D" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Houve um erro ao tentar restaurar seu backup." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ajustes atualizados" +msgid "Backups" +msgstr "Backups" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusor(es) Desabilitado(s)" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Houve um erro ao transferir seu backup." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Adicionar" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Criando seu backup..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Finalizar" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Houve um erro ao criar seu backup." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Enviando seu backup..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Seu backup terminou de ser enviado." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "O backup excede o tamanho máximo de arquivo." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gerenciar backups" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ajustes da Máquina" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Bloqueador de Suporte" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Cria um volume em que os suportes não são impressos." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Unidade Removível" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Salvar em Unidade Removível" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupo #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Salvar em Unidade Removível {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parede Externa" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes Internas" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Salvando na Unidade Removível {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Contorno" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Preenchimento" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Preenchimento de Suporte" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface de Suporte" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Suporte" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt (Saia)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre de Prime" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Percurso" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrações" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Outros" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Próximo" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Pular" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Fechar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente de Modelo 3D" +msgid "Saving" +msgstr "Salvando" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível salvar em {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" -"

    {model_names}

    \n" -"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" -"

    Ver guia de qualidade de impressão

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Não foi possível salvar em unidade removível {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Salvo em Unidade Removível {0} como {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Arquivo Salvo" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejetar" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Ejetar dispositivo removível {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Remover Hardware com Segurança" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfis do Cura 15.04" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir Arquivo de Projeto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Não Foi Possível Abrir o Arquivo de Projeto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Arquivo de projeto {0} está corrompido: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do Ultimaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Arquivo 3MF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "O complemento de Escrita 3MF está corrompido." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Não foi possível escrever no arquivo UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Sem permissão para gravar o espaço de trabalho aqui." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erro ao escrever arquivo 3mf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Arquivo 3MF" +msgid "Ultimaker Format Package" +msgstr "Pacote de Formato da Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Arquivo de Projeto 3MF do Cura" +msgid "G-code File" +msgstr "Arquivo G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Arquivo AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Houve um erro ao transferir seu backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Criando seu backup..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Houve um erro ao criar seu backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Enviando seu backup..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Seu backup terminou de ser enviado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "O backup excede o tamanho máximo de arquivo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Houve um erro ao tentar restaurar seu backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerenciar backups" +msgid "Preview" +msgstr "Pré-visualização" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Visão de Raios-X" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Processando Camadas" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informação" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Fatiamento falhado" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Relatar um bug" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Relatar um bug no issue tracker do Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Não foi possível fatiar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -869,448 +1084,430 @@ msgstr "" "- Estão associados a um extrusor habilitado\n" "- Não estão todos configurados como malhas de modificação" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Processando Camadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Informação" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil do Cura" +msgid "AMF File" +msgstr "Arquivo AMF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Não foi possível acessar informação de atualização." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Novos recursos ou consertos de bugs podem estar disponível para sua {machine_name}! Se já não estiver na última versão, é recomendado que atualize o firmware da sua impressora para a versão {latest_version}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Novo firmware de %s disponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Como atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Arquivo de G-Code Comprimido" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "O GCodeGzWriter não suporta modo binário." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Arquivo G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Interpretando G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Arquivo G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "O GCodeWriter não suporta modo binário." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Por favor prepare o G-Code antes de exportar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis do Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes da Máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ajustes por Modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar ajustes por Modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Pós-Processamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modificar G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Impressão USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Imprimir pela USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir pela USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Conectado via USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impressão em Progresso" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Pré-visualização" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Salvar em Unidade Removível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Salvar em Unidade Removível {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" +msgid "Parsing G-code" +msgstr "Interpretando G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Salvando na Unidade Removível {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Salvando" +msgid "G-code Details" +msgstr "Detalhes do G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Não foi possível salvar em {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Não foi possível salvar em unidade removível {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Salvo em Unidade Removível {0} como {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Arquivo Salvo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Ejetar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejetar dispositivo removível {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Remover Hardware com Segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unidade Removível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Visão Simulada" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Nada está exibido porque você precisa fatiar primeiro." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Não há camadas a exibir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Não mostrar essa mensagem novamente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Visão de Camadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erros de Modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saiba mais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Visão sólida" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Bloqueador de Suporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Cria um volume em que os suportes não são impressos." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Alterações detectadas de sua conta Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Recusar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acordo de Licença do Complemento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Recusar e remover da conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} complementos falharam em baixar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA" +msgid "G File" +msgstr "Arquivo G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Binário glTF" +msgid "JPG Image" +msgstr "Imagem JPG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "JSON Embutido glTF" +msgid "JPEG Image" +msgstr "Imagem JPEG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Formato de Triângulos de Stanford" +msgid "PNG Image" +msgstr "Imagem PNG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" +msgid "BMP Image" +msgstr "Imagem BMP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pacote de Formato da Ultimaker" +msgid "GIF Image" +msgstr "Imagem GIF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Não foi possível escrever no arquivo UFP:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Nivelar mesa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Selecionar Atualizações" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "O GCodeGzWriter não suporta modo binário." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Não foi possível acessar informação de atualização." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Novo firmware estável de %s disponível" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Como atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Não foi possível ler o arquivo de dados de exemplo." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizando..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Alterações detectadas de sua conta Ultimaker" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Recusar e remover da conta" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} complementos falharam em baixar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Recusar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Concordar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Acordo de Licença do Complemento" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "O GCodeWriter não suporta modo binário." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Por favor prepare o G-Code antes de exportar." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Visão Simulada" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Nada está exibido porque você precisa fatiar primeiro." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Não há camadas a exibir" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Não mostrar essa mensagem novamente" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Visão de Camadas" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Imprimir pela rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprime pela rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Conectado pela rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "amanhã" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "hoje" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Conectar pela rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Por favor espere até que o trabalho atual tenha sido enviado." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Erro de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Trabalho de impressão enviado à impressora com sucesso." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dados Enviados" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Você está tentando conectar a uma impressora que não está rodando Ultimaker Connect. Por favor atualiza a impressora para o firmware mais recente." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Atualize sua impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila Cheia" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Enviando Trabalho de Impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Transferindo trabalho de impressão para a impressora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Enviando material para a impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Não foi possível transferir os dados para a impressora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Erro de rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Não é host de grupo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" +" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Você está pronto para a impressão de nuvem?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Começar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Saiba mais" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir pela nuvem" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir pela nuvem" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado pela nuvem" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Monitorar impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Rastrear a impressão na Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "Nova impressora detectada na sua conta Ultimaker" msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Adicionando impressora {name} ({model}) da sua conta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1318,70 +1515,70 @@ msgid_plural "... and {0} others" msgstr[0] "... e {0} outra" msgstr[1] "... e {0} outras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Impressoras adicionadas da Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Conexão de nuvem não está disponível para uma impressora" msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "Esta impressora não está ligada à Digital Factory:" msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Manter configurações da impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Remover impressoras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} será removida até a próxima sincronização de conta." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Tem certeza que quer remover {printer_name} temporariamente?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Remover impressoras?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1397,7 +1594,7 @@ msgstr[1] "" "Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" "Tem certeza que quer continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1406,738 +1603,1577 @@ msgstr "" "Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" "Tem certeza que quer continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "Binário glTF" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embutido JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Formato de Triângulos de Stanford" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Envia e monitora trabalhos de impressão de qualquer lugar usando sua conta Ultimaker." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Conectar à Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Começar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Você está tentando conectar a uma impressora que não está rodando Ultimaker Connect. Por favor atualiza a impressora para o firmware mais recente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Atualize sua impressora" +msgid "Model Errors" +msgstr "Erros de Modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviando material para a impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Não é host de grupo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Por favor espere até que o trabalho atual tenha sido enviado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Erro de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Não foi possível transferir os dados para a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Erro de rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Enviando Trabalho de Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Transferindo trabalho de impressão para a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila Cheia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Trabalho de impressão enviado à impressora com sucesso." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dados Enviados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir pela rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprime pela rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Conectado pela rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Conectar pela rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "amanhã" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "hoje" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impressão USB" +msgid "Solid view" +msgstr "Visão sólida" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir pela USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Erro ao escrever arquivo 3mf." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir pela USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O complemento de Escrita 3MF está corrompido." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Sem permissão para gravar o espaço de trabalho aqui." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Arquivo 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Arquivo de Projeto 3MF do Cura" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitor" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Assistente de Modelo 3D" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Conectado via USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" +"

    {model_names}

    \n" +"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" +"

    Ver guia de qualidade de impressão

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" +msgid "Mesh Type" +msgstr "Tipo de Malha" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impressão em Progresso" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como suporte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar ajustes para sobreposições" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Não suportar sobreposições" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Arquivo X3D" +msgid "Infill mesh only" +msgstr "Somente malha de preenchimento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visão de Raios-X" +msgid "Cutting mesh" +msgstr "Malha de corte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Algumas coisas podem ser problemáticas nesta impressão. Clique para ver dicas de correção." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Selecionar ajustes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar Ajustes a Personalizar para este modelo" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Exibir tudo" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Backups do Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versão do Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiais" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfis" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Complementos" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Quer mais?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Backup Agora" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Auto Backup" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Apagar o Backup" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar Backup" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Fazer backup e sincronizar os ajustes do Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Entrar" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Meus backups" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ajustes de Impressora" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (largura)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altura)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma da plataforma de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origem no centro" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Mesa aquecida" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de construção aquecido" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Sabor de G-Code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ajustes da Cabeça de Impressão" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar deslocamentos de Extrusão ao G-Code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-Code Final" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes do Bico" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamanho do bico" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diâmetro de material compatível" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Deslocamento X do Bico" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Deslocamento Y do Bico" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número da Ventoinha de Resfriamento" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Inicial do Extrusor" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-Code Final do Extrusor" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impressora" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticamente atualizar Firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar Firmware personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização do Firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Atualizando firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Atualização do Firmware completada." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A atualização de Firmware falhou devido a um erro desconhecido." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A atualização de firmware falhou devido a um erro de comunicação." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A atualização de firmware falhou devido a firmware não encontrado." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Abrir Projeto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Atualizar existentes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Criar novos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumo - Projeto do Cura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Ajustes da impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Como o conflito na máquina deve ser resolvido?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Tipo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Grupo de Impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Ajustes de perfil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Como o conflito no perfil deve ser resolvido?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Nome" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Objetivo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Ausente no perfil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 sobreposto" msgstr[1] "%1 sobrepostos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivado de" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 sobreposição" msgstr[1] "%1, %2 sobreposições" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Ajustes de material" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Como o conflito no material deve ser resolvido?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Visibilidade dos ajustes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Modo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Ajustes visíveis:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 de %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Abrir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Quer mais?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Backup Agora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Apagar o Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backups do Cura" +msgid "Post Processing Plugin" +msgstr "Complemento de Pós-Processamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Meus backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Fazer backup e sincronizar os ajustes do Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Entrar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." +msgid "Post Processing Scripts" +msgstr "Scripts de Pós-Processamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." +msgid "Settings" +msgstr "Ajustes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticamente atualizar Firmware" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Alterar scripts de pós-processamento ativos." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar Firmware personalizado" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "O seguinte script está ativo:" +msgstr[1] "Os seguintes scripts estão ativos:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização do Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Atualizando firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização do Firmware completada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de Firmware falhou devido a um erro desconhecido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A atualização de firmware falhou devido a um erro de comunicação." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido a firmware não encontrado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Converter imagem..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "A distância máxima de cada pixel da \"Base\"." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Altura (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "A altura-base da mesa de impressão em milímetros." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "A largura da mesa de impressão em milímetros." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Largura (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "A profundidade da mesa de impressão em milímetros" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profundidade (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Mais escuro é mais alto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Mais claro é mais alto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Linear" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Translucidez" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Transmitância de 1mm (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "A quantidade de suavização para aplicar na imagem." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "Ok" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Por favor selecionar quaisquer atualizações feitas nesta Ultimaker Original" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelamento da mesa de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Iniciar Nivelamento da Mesa de Impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Mover pra a Posição Seguinte" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Mais informações em coleção anônima de dados" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "O Ultimaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Recusar enviar dados anônimos" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir enviar dados anônimos" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Mercado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Você precisará reiniciar o Cura para que as alterações tenham efeito." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sair de %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Instalar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Instalado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Premium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Ir ao Mercado Web" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Buscar materiais" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Compatibilidade" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Máquina" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Plataforma de Impressão" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Suporte" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Qualidade" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Documento de Dados Técnicos" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Documento de Dados de Segurança" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Diretrizes de Impressão" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Sítio Web" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Entrar na conta é necessário para instalar ou atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Comprar rolos de material" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Atualizando" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Atualizado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Voltar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" +msgid "Plugins" +msgstr "Complementos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes do Bico" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiais" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Instalado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do bico" +msgid "Will install upon restarting" +msgstr "Será instalado ao reiniciar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Entrar na conta é necessário para atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Downgrade" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Desinstalar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Contribuições da Comunidade" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro de material compatível" +msgid "Community Plugins" +msgstr "Complementos da Comunidade" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Deslocamento X do Bico" +msgid "Generic Materials" +msgstr "Materiais Genéricos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Obtendo pacotes..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Deslocamento Y do Bico" +msgid "Website" +msgstr "Sítio Web" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número da Ventoinha de Resfriamento" +msgid "Email" +msgstr "Email" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Inicial do Extrusor" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Por favor se logue para adquirir complementos e materiais verificados para o Ultimaker Cura Enterprise" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Final do Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (largura)" +msgid "Version" +msgstr "Versão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" +msgid "Last updated" +msgstr "Última atualização" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" +msgid "Brand" +msgstr "Marca" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da plataforma de impressão" +msgid "Downloads" +msgstr "Downloads" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Complementos instalados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Nenhum complemento foi instalado." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Materiais instalados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Nenhum material foi instalado." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Complementos empacotados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Materiais empacotados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Não foi possível conectar-se à base de dados de Pacotes do Cura. Por favor verifique sua conexão." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" +msgid "You need to accept the license to install the package" +msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Alterações da sua conta" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Dispensar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Próximo" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Mesa aquecida" +msgid "The following packages will be added:" +msgstr "Os seguintes pacotes serão adicionados:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Confirme a desinstalação" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Você está desinstalando material e/ou perfis que ainda estão em uso. Confirmar irá restaurar os materiais e perfis seguintes a seus defaults." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Materiais" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Perfis" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Confirmar" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Sabor de G-Code" +msgid "Color scheme" +msgstr "Esquema de Cores" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes da Cabeça de Impressão" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidade" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Espessura de Camada" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Largura de Extrusão" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluxo" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X mín." +msgid "Compatibility Mode" +msgstr "Modo de Compatibilidade" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y mín." +msgid "Travels" +msgstr "Percursos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X máx." +msgid "Helpers" +msgstr "Assistentes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y máx." +msgid "Shell" +msgstr "Perímetro" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do Eixo" +msgid "Infill" +msgstr "Preenchimento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" +msgid "Starts" +msgstr "Inícios" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar deslocamentos de Extrusão ao G-Code" +msgid "Only Show Top Layers" +msgstr "Somente Exibir Camadas Superiores" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code Inicial" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Exibir 5 Camadas Superiores Detalhadas" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code Final" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Topo / Base" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parede Interna" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "mín" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "máx" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gerir Impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Vidro" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo Ultimaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Carregando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponível" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Inacessivel" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Ocioso" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Imprimindo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Sem Título" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anônimo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Requer mudanças na configuração" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Detalhes" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impressora indisponível" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Primeira disponível" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Enfileirados" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gerir no navegador" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo total de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Esperando por" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir pela rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Seleção de impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Alterações de Configuração" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Sobrepor" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" +msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Alterar material %1 de %2 para %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Alterar núcleo de impressão %1 de %2 para %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Alterar mesa de impressão para %1 (Isto não pode ser sobreposto)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Alumínio" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Finalizado" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Abortando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abortado" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Falhado" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pausando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausado" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Continuando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Necessária uma ação" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina %1 em %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Conectar a Impressora de Rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecione sua impressora da lista abaixo:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Remover" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Versão do firmware" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Endereço" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A impressora neste endereço ainda não respondeu." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Conectar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Endereço IP inválido" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Por favor entre um endereço IP válido." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Entre o endereço IP da sua impressora na rede." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Mover para o topo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Remover" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Continuar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Pausando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Continuando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Pausar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Abortando..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Abortar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Você tem certeza que quer mover %1 para o topo da fila?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Move o trabalho de impressão para o topo da fila" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Você tem certeza que quer remover %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Remover trabalho de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Você tem certeza que quer abortar %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abortar impressão" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2150,1376 +3186,427 @@ msgstr "" "- Verifique se ela está conectada à rede.\n" "- Verifique se você está logado para descobrir impressoras conectadas à nuvem." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Por favor conecte sua impressora à rede." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Ver manuais de usuário online" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Malha" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar ajustes para sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Somente malha de preenchimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar Ajustes a Personalizar para este modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Exibir tudo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Complemento de Pós-Processamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de Pós-Processamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Alterar scripts de pós-processamento ativos." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Algumas coisas podem ser problemáticas nesta impressão. Clique para ver dicas de correção." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "O seguinte script está ativo:" -msgstr[1] "Os seguintes scripts estão ativos:" +msgid "3D View" +msgstr "Visão 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de Cores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura de Camada" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largura de Extrusão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de Compatibilidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Percursos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Assistentes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Preenchimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Inícios" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Somente Exibir Camadas Superiores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Exibir 5 Camadas Superiores Detalhadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Topo / Base" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações em coleção anônima de dados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "O Ultimaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Recusar enviar dados anônimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir enviar dados anônimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Voltar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Plataforma de Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Suporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Documento de Dados Técnicos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Documento de Dados de Segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Diretrizes de Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Sítio Web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Instalado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Entrar na conta é necessário para instalar ou atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Comprar rolos de material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Atualizando" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Atualizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Ir ao Mercado Web" +msgid "Front View" +msgstr "Viso de Frente" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Visão de Cima" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Visão à Esquerda" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Visão à Direita" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Buscar materiais" +msgid "Object list" +msgstr "Lista de objetos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Você precisará reiniciar o Cura para que as alterações tenham efeito." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair de %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Instalado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Será instalado ao reiniciar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Entrar na conta é necessário para atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgrade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Instalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Alterações da sua conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Dispensar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Próximo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Os seguintes pacotes serão adicionados:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Confirme a desinstalação" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Você está desinstalando material e/ou perfis que ainda estão em uso. Confirmar irá restaurar os materiais e perfis seguintes a seus defaults." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Perfis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Confirmar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Sítio Web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "Email" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Versão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Última atualização" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marca" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Downloads" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Contribuições da Comunidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Complementos da Comunidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiais Genéricos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Não foi possível conectar-se à base de dados de Pacotes do Cura. Por favor verifique sua conexão." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Complementos instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Nenhum complemento foi instalado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Materiais instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Nenhum material foi instalado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Complementos empacotados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Materiais empacotados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Obtendo pacotes..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Por favor se logue para adquirir complementos e materiais verificados para o Ultimaker Cura Enterprise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Mercado" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelamento da mesa de impressão" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "Arquivo (&F)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Editar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Ver" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar Nivelamento da Mesa de Impressão" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Aju&stes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mover pra a Posição Seguinte" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensões" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Por favor selecionar quaisquer atualizações feitas nesta Ultimaker Original" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referências" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "Ajuda (&H)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar a Impressora de Rede" +msgid "New project" +msgstr "Novo projeto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione sua impressora da lista abaixo:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão do firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Endereço" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A impressora neste endereço ainda não respondeu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Por favor entre um endereço IP válido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Entre o endereço IP da sua impressora na rede." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações de Configuração" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Sobrepor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" -msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar material %1 de %2 para %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Alterar núcleo de impressão %1 de %2 para %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Alterar mesa de impressão para %1 (Isto não pode ser sobreposto)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Vidro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Mover para o topo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Remover" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Continuar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Continuando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Abortando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abortar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Você tem certeza que quer mover %1 para o topo da fila?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Move o trabalho de impressão para o topo da fila" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Você tem certeza que quer remover %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Remover trabalho de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Você tem certeza que quer abortar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abortar impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Carregando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessivel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Ocioso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimindo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Sem Título" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anônimo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer mudanças na configuração" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abortado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Finalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abortando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Continuando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Necessária uma ação" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 em %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Enfileirados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no navegador" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo total de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando por" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir pela rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Entrar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Entre na plataforma Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Adicione perfis de material e plug-ins do Marketplace\n" -"- Faça backup e sincronize seus perfis de materiais e plugins\n" -"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Criar uma conta Ultimaker gratuita" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Verificando..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Conta sincronizada" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Alguma coisa deu errado..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Instalação aguardando atualizações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Verificar atualizações da conta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Última atualização: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Conta na Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Deslogar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Sem estimativa de tempo disponível" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Sem estimativa de custo disponível" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Pré-visualização" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Estimativa de tempo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Estimativa de material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Fatiando..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Não foi possível fatiar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Processando" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Fatiar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Inicia o processo de fatiamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mostra Guia de Resolução de Problemas Online" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Alternar Tela Cheia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Sair da Tela Cheia" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Desfazer (&U)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Refazer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "Sair (&Q)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Visão &3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Visão Frontal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Visão Superior" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Visão de Baixo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Visão do Lado Esquerdo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Visão do Lado Direito" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configurar Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Adicionar Impressora..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Adm&inistrar Impressoras..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Administrar Materiais..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Adicionar mais materiais do Mercado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "At&ualizar perfil com valores e sobreposições atuais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Descartar ajustes atuais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Administrar perfis..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Exibir &Documentação Online" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Relatar um &Bug" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Novidades" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Sobre..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Remover Selecionados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centralizar Selecionados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Multiplicar Selecionados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Remover Modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ce&ntralizar Modelo na Mesa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "A&grupar Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Desagrupar Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Co&mbinar Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Multiplicar Modelo..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Selecionar Todos Os Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Esvaziar a Mesa de Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Recarregar Todos Os Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Posicionar Todos os Modelos em Todas as Plataformas de Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Posicionar Todos os Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Posicionar Seleção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Reestabelecer as Posições de Todos Os Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Remover as Transformações de Todos Os Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Abrir Arquiv&o(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Novo Projeto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Exibir Pasta de Configuração" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configurar a visibilidade dos ajustes..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Mercado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este pacote será instalado após o reinício." +msgid "Time estimation" +msgstr "Estimativa de tempo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimativa de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfis" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Sem estimativa de tempo disponível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Fechando %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Sem estimativa de custo disponível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Tem certeza que quer sair de %1?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Pré-visualização" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir arquivo(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "Adicionar uma impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar Pacote" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Adicionar uma impressora de rede" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir Arquivo(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Adicionar uma impressora local" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Adicionar uma impressora de Nuvem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Adicionar Impressora" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Aguardando resposta da Nuvem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Nenhuma impressora encontrada em sua conta?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Adicionar impressora manualmente" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Adicionar impressora por endereço IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Entre o endereço IP de sua impressora." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Adicionar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Não foi possível conectar ao dispositivo." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Não consegue conectar à sua impressora Ultimaker?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "A impressora neste endereço ainda não respondeu." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Voltar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Conectar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Contrato de Usuário" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Rejeitar e fechar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Bem-vindo ao Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "Por favor siga estes passos para configurar o Ultimaker Cura. Isto tomará apenas alguns momentos." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Começar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Entre na plataforma Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Adicionar ajustes de materiais e plugins do Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Pular" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Criar uma conta Ultimaker gratuita" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Autor do perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Nome da impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Por favor dê um nome à sua impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Não foi encontrada nenhuma impressora em sua rede." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Adicionar impressora por IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Adicionar impressora de nuvem" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Nos ajude a melhor o Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "O Ultimaker Cura coleta dados anônimos para melhor a qualidade de impressão e experiência do usuário, incluindo:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Tipos de máquina" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Uso do material" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Número de fatias" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Ajustes de impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Dados coletados pelo Ultimaker Cura não conterão nenhuma informação pessoal." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Mais informações" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" -msgstr "Novidades" +msgstr "O Que Há de Novo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Vazio" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Notas de lançamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Sobre %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "versão: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Solução completa para impressão 3D com filamento fundido." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3528,182 +3615,202 @@ msgstr "" "Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" "Cura orgulhosamente usa os seguintes projetos open-source:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Interface Gráfica de usuário" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Framework de Aplicações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "Gerador de G-Code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Biblioteca de comunicação interprocessos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Linguagem de Programação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "Framework Gráfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Ligações da Framework Gráfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "Biblioteca de Ligações C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Formato de Intercâmbio de Dados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Biblioteca de suporte para computação científica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Biblioteca de suporte para matemática acelerada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Biblioteca de suporte para manuseamento de arquivos STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Biblioteca de suporte para manuseamento de objetos planares" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Biblioteca de suporte para streaming e metadados de arquivo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Biblioteca de comunicação serial" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Biblioteca de descoberta 'ZeroConf'" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Biblioteca de recorte de polígonos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Verificador de tipos estáticos para Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Certificados raiz para validar confiança de SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Biblioteca de rastreamento de Erros de Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Ligações de Python para a libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Extensões de python para o Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Fonte" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "Ícones SVG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Implementação de aplicação multidistribuição em Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir arquivo de projeto" +msgid "Open file(s)" +msgstr "Abrir arquivo(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Lembrar minha escolha" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como projeto" +msgid "Import all as models" +msgstr "Importar todos como modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Salvar Projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Não exibir resumo do projeto ao salvar novamente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" +msgid "Save" +msgstr "Salvar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Descartar ou Manter alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3714,1188 +3821,142 @@ msgstr "" "Gostaria de manter estes ajustes alterados após mudar de perfis?\n" "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Ajustes de perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Alterações atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Sempre perguntar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar e não perguntar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Manter e não perguntar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Descartar alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Manter alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Abrir arquivo de projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Lembrar minha escolha" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar todos como modelos" +msgid "Open as project" +msgstr "Abrir como projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Salvar Projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Não exibir resumo do projeto ao salvar novamente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Salvar" +msgid "Import models" +msgstr "Importar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Imprimir Modelo Selecionado com %1" -msgstr[1] "Imprimir Modelos Selecionados com %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sem Título" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Arquivo (&F)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Editar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ver" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Aju&stes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensões" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referências" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Ajuda (&H)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Novo projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Mercado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configurações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Carregando configurações disponíveis da impressora..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "As configurações não estão disponíveis porque a impressora está desconectada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Selecione configuração" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Configurações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Habilitado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Use cola para melhor aderência com essa combinação de materiais." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Imprimir Modelo Selecionado Com:" -msgstr[1] "Imprimir Modelos Selecionados Com:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar Modelo Selecionado" -msgstr[1] "Multiplicar Modelos Selecionados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de Cópias" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Salvar Projeto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar Seleção..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir Arquivo(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impressoras habilitadas pela rede" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impressoras locais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &Recente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Salvar Projeto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Im&pressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir Como Extrusor Ativo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desabilitar Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Ajustes Visíveis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Encolher Todas As Categorias" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gerenciar Visibilidade dos Ajustes..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Posição da &câmera" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Visão de câmera" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfico" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "Plataforma de Impressão (&B)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Não conectado a nenhuma impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A impressora não aceita comandos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Em manutenção. Por favor verifique a impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "A conexão à impressora foi perdida" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Imprimindo..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pausado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparando..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Por favor remova a impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Abortar Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Tem certeza que deseja abortar a impressão?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Está impresso como suporte." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Preenchimento se sobrepondo a este modelo foi modificado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Sobreposições neste modelo não são suportadas." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Sobrepõe %1 ajuste." -msgstr[1] "Sobrepõe %1 ajustes." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Moeda:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Você precisará reiniciar a aplicação para que essas mudanças tenham efeito." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Fatiar automaticamente quando mudar ajustes." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Fatiar automaticamente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento da área de visualização" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Exibir seções pendentes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Exibir erros de modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centralizar câmera quanto o item é selecionado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "O comportamento default de ampliação deve ser invertido?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverter a direção da ampliação de câmera." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "A ampliação (zoom) deve se mover na direção do mouse?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Ampliar na direção do mouse" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Assegurar que os modelos sejam mantidos separados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Exibir mensagem de alerta no leitor de G-Code." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensagem de alera no leitor de G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "O Cura deve abrir no lugar onde foi fechado?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar posição da janela no início" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Que tipo de renderização de câmera deve ser usada?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderização de câmera:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspectiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrindo e salvando arquivos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Usar uma única instância do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Redimensionar modelos grandes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Redimensionar modelos minúsculos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Os modelos devem ser selecionados após serem carregados?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selecionar modelos ao carregar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Adicionar prefixo de máquina ao nome do trabalho" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Exibir diálogo de resumo ao salvar projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento default ao abrir um arquivo de projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento default ao abrir um arquivo de projeto: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Sempre me perguntar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Sempre abrir como projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Sempre importar modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Sempre descartar alterações da configuração" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Sempre transferir as alterações para o novo perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidade" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Verificar atualizações na inicialização" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Dados anônimos sobre sua impressão podem ser enviados para a Ultimaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar informação (anônima) de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Mais informações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Renomear" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Criar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Sincronizar com Impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Não foi possível importar material %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com sucesso" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Falha em exportar material para %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado para %1 com sucesso" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar Todos Os Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informação" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar Mudança de Diâmetro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Exibir Nome" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Cor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Propriedades" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densidade" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diâmetro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Custo do Filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso do Filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Comprimento do Filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Custo por Metro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desvincular Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Descrição" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informação sobre Aderência" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Ajustes de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Criar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Criar Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Por favor dê um nome a este perfil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Renomear Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Impressora: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Atualizar perfil com ajustes/sobreposições atuais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar ajustes atuais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Seus ajustes atuais coincidem com o perfil selecionado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ajustes globais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Atual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unidade" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidade dos Ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Verificar tudo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste hotend." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura com a qual pré-aquecer o hotend." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pré-aquecer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O bico inserido neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Mesa de Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A temperatura atual da mesa aquecida." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura em que pré-aquecer a mesa." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Controle da Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de Trote" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de Trote" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está conectada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerenciar impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras conectadas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras pré-ajustadas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Impressão ativa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Nome do Trabalho" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Tempo de Impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo restante estimado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Adicionar impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Gerenciar impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Impressoras conectadas" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Impressoras pré-ajustadas" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Ajustes de impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -4906,120 +3967,1681 @@ msgstr "" "\n" "Clique para abrir o gerenciador de perfis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Perfis personalizados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar ajustes atuais" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Recomendado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "On" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Off" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimental" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "Não há perfil %1 para a configuração no extrusor %2. O objetivo default será usado no lugar dele" msgstr[1] "Não há perfis %1 para a configurações nos extrusores %2. O objetivo default será usado no lugar deles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "On" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Off" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" +msgid "Profiles" +msgstr "Perfis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Aderência" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Preenchimento gradual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Preenchimento gradual aumentará gradualmente a quantidade de preenchimento em direção ao topo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Você modificou alguns ajustes de perfil. Se você quiser alterá-los, use o modo personalizado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Suporte" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" -"\n" -"Clique para tornar estes ajustes visíveis." +msgid "Gradual infill" +msgstr "Preenchimento gradual" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Preenchimento gradual aumentará gradualmente a quantidade de preenchimento em direção ao topo." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Aderência" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Salvar Projeto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Impressoras habilitadas pela rede" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impressoras locais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoritos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Imprimir Modelo Selecionado Com:" +msgstr[1] "Imprimir Modelos Selecionados Com:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Multiplicar Modelo Selecionado" +msgstr[1] "Multiplicar Modelos Selecionados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de Cópias" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Salvar Projeto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportar..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar Seleção..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Configurações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Habilitado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Use cola para melhor aderência com essa combinação de materiais." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Não há perfis correspondendo à configuração deste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Selecione configuração" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Configurações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Carregando configurações disponíveis da impressora..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "As configurações não estão disponíveis porque a impressora está desconectada." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Abrir Arquivo(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "Im&pressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir Como Extrusor Ativo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Habilitar Extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Desabilitar Extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Abrir &Recente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Ajustes Visíveis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Encolher Todas As Categorias" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gerenciar Visibilidade dos Ajustes..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Posição da &câmera" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Visão de câmera" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfico" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "Plataforma de Impressão (&B)" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Tipo de Visão" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Está impresso como suporte." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Preenchimento se sobrepondo a este modelo foi modificado." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Sobreposições neste modelo não são suportadas." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Sobrepõe %1 ajuste." +msgstr[1] "Sobrepõe %1 ajustes." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Ativar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Criar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Duplicar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Renomear" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Criar Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Por favor dê um nome a este perfil." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplicar Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Renomear Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importar Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Impressora: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Atualizar perfil com ajustes/sobreposições atuais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Seus ajustes atuais coincidem com o perfil selecionado." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ajustes globais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Moeda:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Tema:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Você precisará reiniciar a aplicação para que essas mudanças tenham efeito." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Fatiar automaticamente quando mudar ajustes." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Fatiar automaticamente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento da área de visualização" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Exibir seções pendentes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Exibir erros de modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centralizar câmera quanto o item é selecionado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "O comportamento default de ampliação deve ser invertido?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Inverter a direção da ampliação de câmera." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "A ampliação (zoom) deve se mover na direção do mouse?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Ampliar na direção do mouse" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Assegurar que os modelos sejam mantidos separados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Exibir mensagem de alerta no leitor de G-Code." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Mensagem de alera no leitor de G-Code" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "O Cura deve abrir no lugar onde foi fechado?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Restaurar posição da janela no início" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Que tipo de renderização de câmera deve ser usada?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderização de câmera:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspectiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrindo e salvando arquivos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Usar uma única instância do Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Redimensionar modelos grandes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Redimensionar modelos minúsculos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Os modelos devem ser selecionados após serem carregados?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Selecionar modelos ao carregar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Adicionar prefixo de máquina ao nome do trabalho" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Exibir diálogo de resumo ao salvar projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportamento default ao abrir um arquivo de projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportamento default ao abrir um arquivo de projeto: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Sempre me perguntar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Sempre abrir como projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Sempre importar modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Sempre descartar alterações da configuração" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Sempre transferir as alterações para o novo perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidade" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Dados anônimos sobre sua impressão podem ser enviados para a Ultimaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Enviar informação (anônima) de impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Mais informações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Atualizações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Verificar atualizações na inicialização" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Versões estáveis somente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versões estáveis ou beta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Ter notificações para atualizações de complementos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Informação" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Confirmar Mudança de Diâmetro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Exibir Nome" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Cor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Propriedades" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Densidade" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Diâmetro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Custo do Filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Peso do Filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Comprimento do Filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Custo por Metro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desvincular Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Descrição" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informação sobre Aderência" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Criar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Sincronizar com Impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Não foi possível importar material %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material %1 importado com sucesso" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Falha em exportar material para %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material exportado para %1 com sucesso" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Iniciar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Por que eu preciso sincronizar perfis de material?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Entrar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizar materiais usando USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Os seguintes materiais receberão novos perfis de material:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Impressoras faltando?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Atualizar Lista" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Tentar novamente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Feito" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizando" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nenhuma impressora encontrada" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Aprenda como conectar sua impressora à Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Sincronizar perfis de material via USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Clique no botão de exportar arquivo de material." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Grava o arquivo .umm em um pendrive USB." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Como carregar novos perfis de material na minha impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar arquivo de material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar Todos Os Materiais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidade dos Ajustes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Verificar tudo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Ajustes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Atual" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Unidade" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Não conectado a nenhuma impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "A impressora não aceita comandos" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Em manutenção. Por favor verifique a impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "A conexão à impressora foi perdida" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Imprimindo..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pausado" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparando..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Por favor remova a impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Abortar Impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Tem certeza que deseja abortar a impressão?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Imprimir Modelo Selecionado com %1" +msgstr[1] "Imprimir Modelos Selecionados com %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Minhas impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Monitora as impressoras na Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Cria projetos de impressão na Digital Library." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Estende o Ultimaker Cura com complementos e perfis de material." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Torne-se um especialista em impressão 3D com Ultimaker e-learning." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Suporte Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Saiba como começar com o Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Fazer uma pergunta" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consultar a Comunidade Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Relatar um problema" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Deixe os desenvolvedores saberem que algo está errado." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visita o website da Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Controle da Impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Posição de Trote" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distância de Trote" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar G-Code" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "A temperatura atual deste hotend." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A temperatura com a qual pré-aquecer o hotend." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Pré-aquecer" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "A cor do material neste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "O material neste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "O bico inserido neste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A impressora não está conectada." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Mesa de Impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A temperatura atual da mesa aquecida." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A temperatura em que pré-aquecer a mesa." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Entrar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Adicione perfis de material e plug-ins do Marketplace\n" +"- Faça backup e sincronize seus perfis de materiais e plugins\n" +"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Criar uma conta Ultimaker gratuita" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Última atualização: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Conta na Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Deslogar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Verificando..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Conta sincronizada" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Alguma coisa deu errado..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Instalação aguardando atualizações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Verificar atualizações da conta" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Sem Título" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Sem itens para selecionar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Mostra Guia de Resolução de Problemas Online" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Alternar Tela Cheia" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Sair da Tela Cheia" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Desfazer (&U)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Refazer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "Sair (&Q)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Visão &3D" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Visão Frontal" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Visão Superior" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Visão de Baixo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Visão do Lado Esquerdo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Visão do Lado Direito" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configurar Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Adicionar Impressora..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Adm&inistrar Impressoras..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Administrar Materiais..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Adicionar mais materiais do Mercado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "At&ualizar perfil com valores e sobreposições atuais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Descartar ajustes atuais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Administrar perfis..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Exibir &Documentação Online" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Relatar um &Bug" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Novidades" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Sobre..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Remover Selecionados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centralizar Selecionados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Multiplicar Selecionados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Remover Modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ce&ntralizar Modelo na Mesa" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "A&grupar Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Desagrupar Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Co&mbinar Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Multiplicar Modelo..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Selecionar Todos Os Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Esvaziar a Mesa de Impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Recarregar Todos Os Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Posicionar Todos os Modelos em Todas as Plataformas de Impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Posicionar Todos os Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Posicionar Seleção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Reestabelecer as Posições de Todos Os Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Remover as Transformações de Todos Os Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Abrir Arquiv&o(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Novo Projeto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Exibir Pasta de Configuração" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configurar a visibilidade dos ajustes..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Mercado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Afeta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Afetado Por" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5030,7 +5652,7 @@ msgstr "" "\n" "Clique para restaurar o valor do perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5041,505 +5663,91 @@ msgstr "" "\n" "Clique para restaurar o valor calculado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Ajustes de busca" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copiar valor para todos os extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos os valores alterados para todos os extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Não exibir este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Manter este ajuste visível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Visão 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Viso de Frente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Visão de Cima" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Visão à Esquerda" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Visão à Direita" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Tipo de Visão" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" +"\n" +"Clique para tornar estes ajustes visíveis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Adicionar uma impressora de Nuvem" +msgid "This package will be installed after restarting." +msgstr "Este pacote será instalado após o reinício." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Aguardando resposta da Nuvem" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Nenhuma impressora encontrada em sua conta?" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Fechando %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Tem certeza que quer sair de %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Adicionar impressora manualmente" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar Pacote" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir Arquivo(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor do perfil" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Nome da impressora" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Adicionar Impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Por favor dê um nome à sua impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Adicionar uma impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora de rede" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Adicionar uma impressora local" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Não foi encontrada nenhuma impressora em sua rede." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Adicionar impressora por IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Adicionar impressora de nuvem" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Adicionar impressora por endereço IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Entre o endereço IP de sua impressora." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Adicionar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Não foi possível conectar ao dispositivo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Não consegue conectar à sua impressora Ultimaker?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "A impressora neste endereço ainda não respondeu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Voltar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Conectar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas de lançamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Adicionar ajustes de materiais e plugins do Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Criar uma conta Ultimaker gratuita" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Pular" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Nos ajude a melhor o Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "O Ultimaker Cura coleta dados anônimos para melhor a qualidade de impressão e experiência do usuário, incluindo:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Uso do material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de fatias" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Ajustes de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Dados coletados pelo Ultimaker Cura não conterão nenhuma informação pessoal." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Mais informações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vazio" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de Usuário" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Rejeitar e fechar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bem-vindo ao Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Por favor siga estes passos para configurar o Ultimaker Cura. Isto tomará apenas alguns momentos." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Começar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" -msgstr "O Que Há de Novo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Sem itens para selecionar" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelo" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Provê suporte à leitura de arquivos 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Gerador de 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Provê suporta à leitura de arquivos AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Permite backup e restauração da configuração." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Backups Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Provê a ligação ao backend de fatiamento CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Provê suporte à importação de perfis do Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis do Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Provê suporte à exportação de perfis do Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de Perfis do Cura" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digital Library da Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Verifica por atualizações de firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador de Atualizações de Firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Provê ações de máquina para atualização do firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de Firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê G-Code de um arquivo comprimido." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-Code Comprimido" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escreve em formato G-Code comprimido." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gerador de G-Code Comprimido" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Provê suporte a importar perfis de arquivos G-Code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de Perfil de G-Code" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite carregar e exibir arquivos G-Code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-Code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escreve em formato G-Code." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Gerador de G-Code" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de Imagens" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Provê suporte a importação de perfis de versões legadas do Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de Perfis de Cura Legado" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Ação de Ajustes de Máquina" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Provê um estágio de monitor no Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Estágio de Monitor" +msgstr "Novidades" #: PerObjectSettingsTool/plugin.json msgctxt "description" @@ -5551,85 +5759,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Ferramenta de Ajustes Por Modelo" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite scripts criados por usuários para pós-processamento" +msgid "Provides support for importing Cura profiles." +msgstr "Provê suporte à importação de perfis do Cura." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Pós-processamento" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis do Cura" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Provê um estágio de preparação no Cura." +msgid "Provides support for reading X3D files." +msgstr "Provê suporte à leitura de arquivos X3D." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Estágio de Preparação" +msgid "X3D Reader" +msgstr "Leitor de X3D" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Provê uma etapa de pré-visualização ao Cura." +msgid "Backup and restore your configuration." +msgstr "Permite backup e restauração da configuração." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Estágio de Pré-visualização" +msgid "Cura Backups" +msgstr "Backups Cura" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Provê suporte a escrita e reconhecimento de drives a quente." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de Dispositivo de Escrita Removível" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentinela para Registro" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Provê a Visão Simulada." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Visão Simulada" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informação de fatiamento" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Provê uma visualização de malha sólida normal." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Visão Sólida" +msgid "Machine Settings Action" +msgstr "Ação de Ajustes de Máquina" #: SupportEraser/plugin.json msgctxt "description" @@ -5641,35 +5809,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Apagador de Suporte" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Buscar, gerenciar e instalar novos pacotes do Cura." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Provê suporte a escrita e reconhecimento de drives a quente." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Ferramentas" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de Dispositivo de Escrita Removível" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Provê suporta a ler arquivos de modelo." +msgid "Provides a machine actions for updating firmware." +msgstr "Provê ações de máquina para atualização do firmware." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor Trimesh" +msgid "Firmware Updater" +msgstr "Atualizador de Firmware" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Provê suporte a leitura de Pacotes de Formato Ultimaker (UFP)." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Provê suporte a importação de perfis de versões legadas do Cura." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor UFP" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de Perfis de Cura Legado" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Provê suporte à leitura de arquivos 3MF." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" #: UFPWriter/plugin.json msgctxt "description" @@ -5681,25 +5859,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "Gerador de UFP" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Provê ações de máquina para impressoras da Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ações de máquina Ultimaker" +msgid "Sentry Logger" +msgstr "Sentinela para Registro" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Administra conexões de rede a impressora Ultimaker conectadas." +msgid "Provides support for importing profiles from g-code files." +msgstr "Provê suporte a importar perfis de arquivos G-Code." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Conexão de Rede Ultimaker" +msgid "G-code Profile Reader" +msgstr "Leitor de Perfil de G-Code" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Provê uma etapa de pré-visualização ao Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Estágio de Pré-visualização" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Provê a visão de Raios-X." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Visão de Raios-X" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Provê a ligação ao backend de fatiamento CuraEngine." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Provê suporta à leitura de arquivos AMF." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor AMF" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê G-Code de um arquivo comprimido." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-Code Comprimido" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite scripts criados por usuários para pós-processamento" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-processamento" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Provê suporte à exportação de perfis do Cura." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de Perfis do Cura" #: USBPrinting/plugin.json msgctxt "description" @@ -5711,25 +5959,135 @@ msgctxt "name" msgid "USB printing" msgstr "Impressão USB" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." +msgid "Provides a prepare stage in Cura." +msgstr "Provê um estágio de preparação no Cura." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização de Versão de 2.1 para 2.2" +msgid "Prepare Stage" +msgstr "Estágio de Preparação" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." +msgid "Allows loading and displaying G-code files." +msgstr "Permite carregar e exibir arquivos G-Code." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização de Versão de 2.2 para 2.4" +msgid "G-code Reader" +msgstr "Leitor de G-Code" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de Imagens" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Provê ações de máquina para impressoras da Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ações de máquina Ultimaker" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escreve em formato G-Code comprimido." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gerador de G-Code Comprimido" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Verifica por atualizações de firmware." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador de Atualizações de Firmware" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informação de fatiamento" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Material" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digital Library da Ultimaker" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Buscar, gerenciar e instalar novos pacotes do Cura." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Ferramentas" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escreve em formato G-Code." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Gerador de G-Code" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Provê a Visão Simulada." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Visão Simulada" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização de Versão de 4.5 para 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5741,55 +6099,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Atualização de Versão de 2.5 para 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização de Versão de 2.6 para 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização de Versão de 4.6.0 para 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização de Versão de 2.7 para 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização de Versão 3.0 para 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização de Versão de 3.2 para 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização de Versão de 3.3 para 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização de Versão de 4.7 para 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5801,35 +6129,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Atualização de Versão de 3.4 para 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização de Versão de 3.5 para 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização de Versão de 2.1 para 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização de Versão 4.0 para 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização de Versão de 3.2 para 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização de Versão 4.1 para 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização de Versão de 4.8 para 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização de Versão de 4.6.2 para 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -5851,66 +6189,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Atualização de Versão de 4.3 para 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização de Versão de 4.4 para 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização de Versão de 4.5 para 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização de Versão de 4.6.0 para 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização de Versão de 4.6.2 para 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização de Versão de 4.7 para 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização de Versão de 4.8 para 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -5921,35 +6199,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Atualização de Versão de 4.9 para 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Provê suporte à leitura de arquivos X3D." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização de Versão de 2.7 para 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Material" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização de Versão de 2.6 para 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Provê a visão de Raios-X." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Visão de Raios-X" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização de Versão de 4.11 para 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização de Versão de 3.3 para 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização de Versão 3.0 para 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização de Versão de 4.0 para 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização de Versão de 4.4 para 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização de Versão de 2.2 para 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização de Versão de 4.1 para 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização de Versão de 3.5 para 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Administra conexões de rede a impressora Ultimaker conectadas." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Conexão de Rede Ultimaker" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Provê suporta a ler arquivos de modelo." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor Trimesh" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Provê suporte a leitura de Pacotes de Formato Ultimaker (UFP)." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor UFP" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Provê uma visualização de malha sólida normal." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Visão Sólida" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Provê suporte à escrita de arquivos 3MF." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Gerador de 3MF" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Provê um estágio de monitor no Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Estágio de Monitor" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelo" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Envia e monitora trabalhos de impressão de qualquer lugar usando sua conta Ultimaker." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Conectar à Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Feeds de webcam para impressoras de nuvem não podem ser vistos pelo Ultimaker Cura." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "Novos recursos ou consertos de bugs podem estar disponível para sua {machine_name}! Se já não estiver na última versão, é recomendado que atualize o firmware da sua impressora para a versão {latest_version}." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Novo firmware de %s disponível" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index 0ade4ddd02..fd346707cf 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-11 17:09+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index fea811aac4..ef79c89037 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" -"PO-Revision-Date: 2021-06-19 06:31+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" +"PO-Revision-Date: 2022-01-04 05:45+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -155,6 +155,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "A profundidade (direção Y) da área imprimível." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura do Volume" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) do volume imprimível." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -195,16 +205,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Alumínio" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura do Volume" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) do volume imprimível." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -562,8 +562,8 @@ msgstr "A velocidade máxima para o motor da impressora na direção Z." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Velocidade Máxima de Alimentação" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de Extrusão" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -687,8 +687,8 @@ msgstr "Passos por Milímetro (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Monotônica Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Passagem a Ferro Monotônica" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1712,8 +1732,8 @@ msgstr "Padrão de Preenchimento" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1780,6 +1800,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Giróide" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1994,6 +2019,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "O número de camadas de preenchimento que suportam arestas de contorno." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de Suporte do Preenchimento Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de Poda do Preenchimento Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de Retificação do Preenchimento Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3184,6 +3249,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Tudo" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Externa" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5135,8 +5205,8 @@ msgstr "Largura Mínima do Molde" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "A distância mínima entre o exterior do molde e do modelo." +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5303,6 +5373,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da Superfície Monotônica Superior" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6402,6 +6482,34 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo." +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocidade Máxima de Alimentação" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "A distância mínima entre o exterior do molde e do modelo." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index e5a738b4f8..3f68d20754 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" "PO-Revision-Date: 2021-04-16 14:56+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Portuguese , Paulo Miranda , Portuguese \n" @@ -17,183 +17,455 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.4.1\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Não é possível criar um arquivo a partir do directório de dados do utilizador: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Não é possível ligar a(s) impressora(s) abaixo porque faz(em) parte de um grupo" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Backup" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras em rede disponíveis" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Tentou restaurar um Cura backup sem existirem dados ou metadados correctos." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Manter" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Tentativa de reposição de uma cópia de segurança do Cura que é superior à versão atual." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "O seguinte erro ocorreu ao tentar restaurar uma cópia de segurança do Cura:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Sincronize os perfis de material com as suas impressoras antes de começar a imprimir." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Novos materiais instalados" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saber mais" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Não foi possível guardar o arquivo de material em {}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Erro ao guardar o arquivo de material" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Erro desconhecido." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "A altura do volume de construção foi reduzida devido ao valor da definição \"Sequência de impressão\" para impedir que o pórtico colida com os modelos impressos." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volume de construção" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Manter" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Não é possível ligar a(s) impressora(s) abaixo porque faz(em) parte de um grupo" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras em rede disponíveis" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Acabamento" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "O perfil de acabamento foi criado para imprimir modelos e protótipos finais com o objetivo de se obter uma elevada qualidade de acabamento da superfície em termos visuais." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "O perfil de engenharia foi criado para imprimir protótipos funcionais e peças finais com o objetivo de se obter uma maior precisão dimensional assim como tolerâncias menores." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "O perfil de rascunho foi concebido para imprimir protótipos de teste e de validação de conceitos com o objetivo de se obter uma redução significativa do tempo de impressão." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Perfis personalizados" # rever! # contexto -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Todos os Formatos Suportados ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos os Ficheiros (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Acabamento" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "O perfil de acabamento foi criado para imprimir modelos e protótipos finais com o objetivo de se obter uma elevada qualidade de acabamento da superfície em termos visuais." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "O perfil de engenharia foi criado para imprimir protótipos funcionais e peças finais com o objetivo de se obter uma maior precisão dimensional assim como tolerâncias menores." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Rascunho" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "O perfil de rascunho foi concebido para imprimir protótipos de teste e de validação de conceitos com o objetivo de se obter uma redução significativa do tempo de impressão." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Material Personalizado" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Falha no início de sessão" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "A procurar nova posição para os objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "A Procurar Posição" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Não é possível posicionar todos os objetos dentro do volume de construção" # rever! -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Não é Possível Posicionar" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Não é possível criar um arquivo a partir do directório de dados do utilizador: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Não foi possível criar o ficheiro de materiais para sincronizar com as impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Não foi possível carregar o ficheiro de materiais para sincronizá-lo com as impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Tentou restaurar um Cura backup sem existirem dados ou metadados correctos." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "A resposta da Digital Factory parece estar corrompida." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Tentativa de reposição de uma cópia de segurança do Cura que é superior à versão atual." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "A resposta da Digital Factory tem informações importantes em falta." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "O seguinte erro ocorreu ao tentar restaurar uma cópia de segurança do Cura:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Não foi possível estabelecer a ligação com a Digital Factory para poder sincronizar os materiais com algumas das impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Não foi possível estabelecer a ligação com a Digital Factory." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "A carregar máquinas..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "A configurar as preferências..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "A Inicializar a Máquina Ativa..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "A inicializar o gestor das máquinas..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "A inicializar o volume de construção..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "A configurar cenário..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "A carregar interface..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "A inicializar o motor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "A altura do volume de construção foi reduzida devido ao valor da definição \"Sequência de impressão\" para impedir que o pórtico colida com os modelos impressos." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +# rever! +# contexto! +# Atenção? +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume de construção" +msgid "Warning" +msgstr "Aviso" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Não é possível abrir outro ficheiro enquanto o G-code estiver a carregar. Importação {0} ignorada" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Ignorar" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Fechar" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Seguinte" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Concluir" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Adicionar" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupo #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parede Exterior" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes Interiores" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Revestimento" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Enchimento" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Enchimento dos Suportes" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface dos Suportes" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Suportes" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Contorno" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre de preparação" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Deslocação" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrações" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Outro" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "Não foi possível abrir as notas sobre a nova versão." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Não é possível iniciar o Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -210,32 +482,32 @@ msgstr "" # rever! # button size? -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Enviar relatório de falhas para a Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar relatório de falhas detalhado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostrar pasta de configuração" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e Repor a Configuração" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Relatório de Falhas" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -246,682 +518,645 @@ msgstr "" "

    Por favor utilize o botão \"Enviar relatório\" para publicar um relatório de erros automaticamente nos nossos servidores

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informações do sistema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconhecido" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Idioma do Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Idioma do Sistema Operativo" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versão Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versão PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Ainda não inicializado
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versão do OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Vendedor do OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Processador do OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Determinação da origem do erro" # rever! # Registos? -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Relatórios" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "A carregar máquinas..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "A configurar as preferências..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "A Inicializar a Máquina Ativa..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "A inicializar o gestor das máquinas..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "A inicializar o volume de construção..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "A configurar cenário..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "A carregar interface..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "A inicializar o motor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada" - -# rever! -# contexto! -# Atenção? -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Não é possível abrir outro ficheiro enquanto o G-code estiver a carregar. Importação {0} ignorada" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Erro" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Multiplicar e posicionar objetos" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "A posicionar objetos" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "A Posicionar Objeto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Não foi possível ler a resposta." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "O estado apresentado não está correto." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Forneça as permissões necessárias ao autorizar esta aplicação." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Ocorreu algo inesperado ao tentar iniciar sessão, tente novamente." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não é possível iniciar um novo processo de início de sessão. Verifique se ainda está ativa outra tentativa de início de sessão." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Não é possível aceder ao servidor da conta Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "O Log-in falhou" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "O estado apresentado não está correto." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Foi excedido o tempo limite de autenticação com o servidor." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Forneça as permissões necessárias ao autorizar esta aplicação." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Ocorreu algo inesperado ao tentar iniciar sessão, tente novamente." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Não foi possível ler a resposta." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Multiplicar e posicionar objetos" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "A posicionar objetos" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "A Posicionar Objeto" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Não suportado" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Nozzle" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Definições atualizadas" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extrusor(es) desativado(s)" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "O Ficheiro Já Existe" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL de ficheiro inválido:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Falha ao exportar perfil para {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Falha ao exportar perfil para {0}: O plug-in de gravação comunicou uma falha." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado para {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação bem-sucedida" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Falha ao importar perfil de {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Não é possível importar o perfil de {0} antes de ser adicionada uma impressora." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nenhum perfil personalizado para importar no ficheiro {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "O perfil {0} contém dados incorretos, não foi possível importá-lo." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com êxito." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "O ficheiro {0} não contém qualquer perfil válido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "O perfil {0} é de um formato de ficheiro desconhecido ou está corrompido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "O perfil não inclui qualquer tipo de qualidade." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Ainda não existe qualquer impressora ativa." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não é possível adicionar o perfil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "O tipo de qualidade '{0}' não é compatível com a definição de máquina atualmente ativa '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Aviso: o perfil não é visível porque o respetivo tipo de qualidade '{0}' não está disponível para a configuração atual. Mude para uma combinação de material/bocal que possa utilizar este tipo de qualidade." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Não suportado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Nozzle" +msgid "Per Model Settings" +msgstr "Definições Por-Modelo" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar definições individuais Por-Modelo" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil Cura" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Ficheiro X3D" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Ocorreu um erro ao tentar restaurar a sua cópia de segurança." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Definições atualizadas" +msgid "Backups" +msgstr "Cópias de segurança" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusor(es) desativado(s)" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Ocorreu um erro ao carregar a sua cópia de segurança." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Adicionar" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "A criar a cópia de segurança..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Concluir" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Ocorreu um erro ao criar a cópia de segurança." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "A carregar a sua cópia de segurança..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "A cópia de segurança terminou o seu carregamento." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "A cópia de segurança excede o tamanho de ficheiro máximo." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gerir cópias de segurança" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Definições da Máquina" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Remover Suportes" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Criar um volume dentro do qual não são impressos suportes." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Disco Externo" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Guardar no Disco Externo" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupo #{group_nr}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parede Exterior" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes Interiores" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Revestimento" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Enchimento" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Enchimento dos Suportes" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface dos Suportes" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Suportes" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Contorno" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre de preparação" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Deslocação" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrações" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Outro" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Seguinte" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Ignorar" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Fechar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente de Modelos 3D" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Guardar no Disco Externo {0}" # rever! -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +# contexto +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Não existem quaisquer formatos disponíveis para gravar o ficheiro!" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "A Guardar no Disco Externo {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +msgctxt "@info:title" +msgid "Saving" +msgstr "A Guardar" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível guardar em {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Não foi possível encontrar um nome do ficheiro ao tentar gravar em {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

    \n" -"

    {model_names}

    \n" -"

    Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

    \n" -"

    Ver o guia de qualidade da impressão

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Não foi possível guardar no Disco Externo {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Guardado no Disco Externo {0} como {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Ficheiro Guardado" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejetar" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Ejetar Disco Externo {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} foi ejetado. O Disco já pode ser removido de forma segura." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Remover Hardware de forma segura" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Não foi possível ejectar {0}. Outro programa pode estar a usar o disco." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar firmware" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfis Cura 15.04" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "O ficheiro de projeto {0} contém um tipo de máquina desconhecido {1}. Não é possível importar a máquina. Em vez disso, serão importados os modelos." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir ficheiro de projeto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "O projeto de ficheiro {0} ficou subitamente inacessível: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Não é possível abrir o ficheiro de projeto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "O ficheiro de projeto {0} está corrompido: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "O ficheiro de projeto {0} foi criado utilizando perfis que são desconhecidos para esta versão do Ultimaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Ficheiro 3MF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "O plug-in Gravador 3MF está danificado." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Não é possível escrever no ficheiro UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Não tem permissão para escrever o espaço de trabalho aqui." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "O sistema operativo não permite guardar um ficheiro de projeto nesta localização ou com este nome de ficheiro." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erro ao gravar ficheiro 3mf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Ficheiro 3MF" +msgid "Ultimaker Format Package" +msgstr "Arquivo Ultimaker Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Ficheiro 3MF de Projeto Cura" +msgid "G-code File" +msgstr "Ficheiro G-code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Ficheiro AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Cópias de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Ocorreu um erro ao carregar a sua cópia de segurança." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "A criar a cópia de segurança..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Ocorreu um erro ao criar a cópia de segurança." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "A carregar a sua cópia de segurança..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "A cópia de segurança terminou o seu carregamento." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "A cópia de segurança excede o tamanho de ficheiro máximo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Ocorreu um erro ao tentar restaurar a sua cópia de segurança." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerir cópias de segurança" +msgid "Preview" +msgstr "Pré-visualizar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Vista Raio-X" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "A Processar Camadas" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informações" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "O seccionamento falhou" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Reportar um erro" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Reportar um erro no registo de problemas do Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Não é possível seccionar com o material atual, uma vez que é incompatível com a impressora ou configuração selecionada." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Não é possível Seccionar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Não é possível seccionar com as definições atuais. As seguintes definições apresentam erros: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Não é possível seccionar devido a algumas definições por modelo. As seguintes definições apresentam erros num ou mais modelos: {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Não é possível seccionar porque a torre de preparação ou a(s) posição(ões) de preparação é(são) inválidas." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -934,467 +1169,436 @@ msgstr "" "- Estão atribuídos a uma extrusora ativada\n" "- Não estão todos definidos como objetos modificadores" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "A Processar Camadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Informações" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil Cura" +msgid "AMF File" +msgstr "Ficheiro AMF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Não foi possível aceder às informações de atualização." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Novo firmware para %s está disponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Como atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Ficheiro G-code comprimido" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "O GCodeGzWriter não suporta modo de texto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Ficheiro G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "A analisar G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Certifique-se de que este g-code é apropriado para a sua impressora e respetiva configuração, antes de enviar o ficheiro para a impressora. A representação do g-code poderá não ser exata." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Ficheiro G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "O GCodeWriter não suporta modo sem texto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Prepare um G-code antes de exportar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Definições da Máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitorizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Definições Por-Modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar definições individuais Por-Modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Pós-Processamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modificar G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Impressão USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Imprimir por USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir por USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Ligado via USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Existe uma impressão por USB em curso; fechar o Cura irá interromper esta impressão. Tem a certeza?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Existe uma impressão em curso. O Cura não consegue iniciar outra impressão via USB até a impressão anterior ser concluída." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impressão em curso" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Pré-visualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Guardar no Disco Externo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Guardar no Disco Externo {0}" - -# rever! -# contexto -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Não existem quaisquer formatos disponíveis para gravar o ficheiro!" +msgid "Parsing G-code" +msgstr "A analisar G-code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "A Guardar no Disco Externo {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "A Guardar" +msgid "G-code Details" +msgstr "Detalhes do G-code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Não foi possível guardar em {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Não foi possível encontrar um nome do ficheiro ao tentar gravar em {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Não foi possível guardar no Disco Externo {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Guardado no Disco Externo {0} como {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Ficheiro Guardado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Ejetar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejetar Disco Externo {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} foi ejetado. O Disco já pode ser removido de forma segura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Remover Hardware de forma segura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Não foi possível ejectar {0}. Outro programa pode estar a usar o disco." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Disco Externo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Quando a opção Wire Printing está ativa, o Cura não permite visualizar as camadas de uma forma precisa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Visualização por Camadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Não consegue visualizar, porque precisa de fazer o seccionamento primeiro." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Sem camadas para visualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Não mostrar esta mensagem novamente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Vista Camadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "As áreas destacadas indicam superfícies em falta ou separadas. Corrija o modelo e volte a abri-lo no Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erros no modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saber mais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Vista Sólidos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Remover Suportes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Criar um volume dentro do qual não são impressos suportes." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Pretende sincronizar o material e os pacotes de software com a sua conta?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Certifique-se de que este g-code é apropriado para a sua impressora e respetiva configuração, antes de enviar o ficheiro para a impressora. A representação do g-code poderá não ser exata." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Foram detetadas alterações da sua conta Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "A sincronizar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Rejeitar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Contrato de licença do plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rejeitar e remover da conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "É necessário reiniciar o {} para que as alterações tenham efeito." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Falhou a transferência de {} plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "Ficheiro G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" +msgid "JPG Image" +msgstr "Imagem JPG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" +msgid "JPEG Image" +msgstr "Imagem JPEG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" +msgid "PNG Image" +msgstr "Imagem PNG" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" +msgid "BMP Image" +msgstr "Imagem BMP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Arquivo Ultimaker Format" +msgid "GIF Image" +msgstr "Imagem GIF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Não é possível escrever no ficheiro UFP:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Nivelar base de construção" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Selecionar atualizações" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "O GCodeGzWriter não suporta modo de texto." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Não foi possível aceder às informações de atualização." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para a sua {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "A nova versão de firmware %s estável está disponível" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Como atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Não foi possível ler o ficheiro de dados de exemplo." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "É necessário reiniciar o {} para que as alterações tenham efeito." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "A sincronizar..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Foram detetadas alterações da sua conta Ultimaker" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Pretende sincronizar o material e os pacotes de software com a sua conta?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Rejeitar e remover da conta" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Falhou a transferência de {} plug-ins" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Rejeitar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Concordar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Contrato de licença do plug-in" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "O GCodeWriter não suporta modo sem texto." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Prepare um G-code antes de exportar." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Quando a opção Wire Printing está ativa, o Cura não permite visualizar as camadas de uma forma precisa." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Visualização por Camadas" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Não consegue visualizar, porque precisa de fazer o seccionamento primeiro." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Sem camadas para visualizar" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Não mostrar esta mensagem novamente" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Vista Camadas" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Imprimir através da rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprimir através da rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Ligado através da rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "amanhã" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "hoje" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Ligar Através da Rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Aguarde até o trabalho atual ter sido enviado." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Erro de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "O trabalho de impressão foi enviado com sucesso para a impressora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dados Enviados" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Está a tentar ligar a uma impressora que não tem o Ultimaker Connect. Atualize a impressora para o firmware mais recente." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Atualizar a impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "A fila de trabalhos de impressão está cheia. A impressora não consegue aceitar um novo trabalho." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila cheia" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "A enviar trabalho de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Carregar um trabalho de impressão na impressora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Enviar materiais para a impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Não foi possível carregar os dados para a impressora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Erro de rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Está a tentar ligar a {0}, mas esta não é Host de um grupo. Pode visitar a página Web para a configurar como Host do grupo." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Não é Host do grupo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"A sua impressora {printer_name} pode ser ligada através da cloud.\n" +" Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Está preparado para a impressão na cloud?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Iniciar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Saber mais" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir através da cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir através da cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Ligada através da cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Monitorizar a impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Controle a impressão no Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de erro desconhecido ao carregar trabalho de impressão: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "Nova impressora detetada a partir da sua conta Ultimaker" msgstr[1] "Novas impressoras detetadas a partir da sua conta Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Adicionar impressora {name} ({model}) a partir da sua conta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1402,71 +1606,71 @@ msgid_plural "... and {0} others" msgstr[0] "... e {0} outra" msgstr[1] "... e {0} outras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Impressoras adicionadas a partir da Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Não existe uma conectividade de cloud disponível para a impressora" msgstr[1] "Não existe uma conectividade de cloud disponível para algumas impressoras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "Esta impressora não está associada à Digital Factory:" msgstr[1] "Estas impressoras não estão associadas à Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para estabelecer uma ligação, visite {website_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Manter configurações da impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Remover impressoras" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "A impressora {printer_name} vai ser removida até à próxima sincronização de conta." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para remover a impressora {printer_name} de forma permanente, visite {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Tem a certeza de que pretende remover a impressora {printer_name} temporariamente?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Remover impressoras?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1482,772 +1686,1655 @@ msgstr[1] "" "Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\n" "Tem a certeza de que pretende continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "Está prestes a remover todas as impressoras do Cura. Esta ação não pode ser anulada.Tem a certeza de que pretende continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Binary" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Compressed COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Envie e monitorize trabalhos de impressão a partir de qualquer lugar através da sua conta Ultimaker." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "As áreas destacadas indicam superfícies em falta ou separadas. Corrija o modelo e volte a abri-lo no Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Ligar à Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Iniciar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Está a tentar ligar a uma impressora que não tem o Ultimaker Connect. Atualize a impressora para o firmware mais recente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Atualizar a impressora" +msgid "Model Errors" +msgstr "Erros no modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviar materiais para a impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Está a tentar ligar a {0}, mas esta não é Host de um grupo. Pode visitar a página Web para a configurar como Host do grupo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Não é Host do grupo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Aguarde até o trabalho atual ter sido enviado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Erro de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Não foi possível carregar os dados para a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Erro de rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "A enviar trabalho de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Carregar um trabalho de impressão na impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "A fila de trabalhos de impressão está cheia. A impressora não consegue aceitar um novo trabalho." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila cheia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "O trabalho de impressão foi enviado com sucesso para a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dados Enviados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir através da rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprimir através da rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Ligado através da rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Ligar Através da Rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "amanhã" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "hoje" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impressão USB" +msgid "Solid view" +msgstr "Vista Sólidos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir por USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Erro ao gravar ficheiro 3mf." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir por USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O plug-in Gravador 3MF está danificado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Ainda não existe um espaço de trabalho para gravar. Por favor, primeiro adicione uma impressora." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Não tem permissão para escrever o espaço de trabalho aqui." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "O sistema operativo não permite guardar um ficheiro de projeto nesta localização ou com este nome de ficheiro." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Ficheiro 3MF" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Ficheiro 3MF de Projeto Cura" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitorizar" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Assistente de Modelos 3D" + +# rever! +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Ligado via USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

    \n" +"

    {model_names}

    \n" +"

    Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

    \n" +"

    Ver o guia de qualidade da impressão

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Existe uma impressão por USB em curso; fechar o Cura irá interromper esta impressão. Tem a certeza?" +msgid "Mesh Type" +msgstr "Tipo de Objecto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Existe uma impressão em curso. O Cura não consegue iniciar outra impressão via USB até a impressão anterior ser concluída." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impressão em curso" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como suporte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar definições para sobreposições" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Não suportar sobreposições" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Ficheiro X3D" +msgid "Infill mesh only" +msgstr "Apenas objeto de enchimento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista Raio-X" +msgid "Cutting mesh" +msgstr "Malha de corte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Alguns factores podem vir a ser problemáticos nesta impressão. Clique para ver algumas sugestões para melhorar a qualidade da impressão." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Selecionar definições" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar definições a personalizar para este modelo" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostrar tudo" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versão do Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiais" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfis" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plug-ins" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Deseja mais?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Efetuar cópia de segurança agora" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Efetuar cópia de segurança automaticamente" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Criar automaticamente uma cópia de segurança sempre que o Cura é iniciado." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Eliminar cópia de segurança" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Tem a certeza de que pretende eliminar esta cópia de segurança? Esta ação não pode ser anulada." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar cópia de segurança" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "É necessário reiniciar o Cura para restaurar a sua cópia de segurança. Pretende fechar o Cura agora?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Efetue a cópia de segurança e sincronize as suas definições do Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Iniciar sessão" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "As minhas cópias de segurança" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botão \"Efetuar cópia de segurança agora\" para criar uma." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante a fase de pré-visualização, terá um limite de 5 cópias de segurança visíveis. Remova uma cópia de segurança para ver as antigas." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Definições da impressora" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Largura)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altura)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma da base de construção" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origem no centro" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Base aquecida" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de construção aquecido" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Variante do G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Definições da cabeça de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura do pórtico" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar desvios da extrusora ao GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-code inicial" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-code final" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Definições do nozzle" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamanho do nozzle" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diâmetro do material compatível" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Desvio X do Nozzle" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Desvio Y do Nozzle" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número de ventoinha de arrefecimento" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-code inicial do extrusor" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-code final do extrusor" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impressora" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Atualizar firmware" + +# rever! +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "O firmware é o software que é executado diretamente na sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e basicamente assegura o funcionamento da sua impressora." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "O firmware que é expedido com as novas impressoras funciona corretamente, mas as novas versões costumam ter mais funcionalidades e melhorias." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Atualizar firmware automaticamente" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar firmware personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "O firmware não pode ser atualizado por não existir ligação com a impressora." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "O firmware não pode ser atualizado porque a ligação com a impressora não suporta a atualização de firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização de firmware" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "A atualizar firmware." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Atualização de firmware concluída." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A atualização de firmware falhou devido a um erro desconhecido." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A atualização de firmware falhou devido a um erro de comunicação." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A atualização de firmware falhou devido a um erro de entrada/saída." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A atualização de firmware falhou devido à ausência de firmware." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Abrir Projeto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Atualizar existente" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Criar nova" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumo – Projeto Cura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Definições da impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Como deve ser resolvido o conflito da máquina?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Tipo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Grupo da Impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Definições do perfil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Como deve ser resolvido o conflito no perfil?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Nome" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Inexistente no perfil" # rever! # contexto?! -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 substituição" msgstr[1] "%1 substituições" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivado de" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 substituição" msgstr[1] "%1, %2 substituições" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Definições de material" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Como deve ser resolvido o conflito no material?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Visibilidade das definições" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Modo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Definições visíveis:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 de %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Abrir um projeto irá apagar todos os modelos na base de construção." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Abrir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Deseja mais?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Efetuar cópia de segurança agora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Efetuar cópia de segurança automaticamente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Criar automaticamente uma cópia de segurança sempre que o Cura é iniciado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Eliminar cópia de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Tem a certeza de que pretende eliminar esta cópia de segurança? Esta ação não pode ser anulada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar cópia de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "É necessário reiniciar o Cura para restaurar a sua cópia de segurança. Pretende fechar o Cura agora?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cópias de segurança do Cura" +msgid "Post Processing Plugin" +msgstr "Plug-in de pós-processamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "As minhas cópias de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botão \"Efetuar cópia de segurança agora\" para criar uma." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante a fase de pré-visualização, terá um limite de 5 cópias de segurança visíveis. Remova uma cópia de segurança para ver as antigas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Efetue a cópia de segurança e sincronize as suas definições do Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Iniciar sessão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar firmware" - -# rever! -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "O firmware é o software que é executado diretamente na sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e basicamente assegura o funcionamento da sua impressora." +msgid "Post Processing Scripts" +msgstr "Scripts de pós-processamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "O firmware que é expedido com as novas impressoras funciona corretamente, mas as novas versões costumam ter mais funcionalidades e melhorias." +msgid "Settings" +msgstr "Definições" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Atualizar firmware automaticamente" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Altere os scripts de pós-processamento." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar firmware personalizado" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "O script a seguir está ativo:" +msgstr[1] "Os seguintes scripts estão ativos:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "O firmware não pode ser atualizado por não existir ligação com a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "O firmware não pode ser atualizado porque a ligação com a impressora não suporta a atualização de firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização de firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "A atualizar firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização de firmware concluída." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de firmware falhou devido a um erro desconhecido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A atualização de firmware falhou devido a um erro de comunicação." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A atualização de firmware falhou devido a um erro de entrada/saída." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido à ausência de firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Converter imagem..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "A distância máxima de cada pixel desde a \"Base\"" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Altura (mm)" # rever! -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "A altura da \"Base\" desde a base de construção em milímetros." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "A largura em milímetros na base de construção." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Largura (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "A profundidade em milímetros na base de construção" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profundidade (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Para litofanias, os pixels escuros devem corresponder a localizações mais espessas para bloquear mais a passagem da luz. Para mapas de altura, os pixels mais claros significam um terreno mais alto, por isso, os pixels mais claros devem corresponder a localizações mais espessas no modelo 3D gerado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Mais escuro é mais alto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Mais claro é mais alto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Está disponível um modelo logarítmico simples para definir a translucidez das litofanias. Para mapas de altura, os valores dos pixels correspondem de forma linear à elevação." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Linear" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Translucidez" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "A percentagem de luz que penetra numa impressão com uma espessura de 1 milímetro. Diminuir este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "(%) transmitância de 1 mm" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "A quantidade de suavização a aplicar à imagem." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Selecione quaisquer atualizações realizadas a esta Ultimaker Original" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Base de Construção Aquecida (kit oficial ou de construção própria)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelamento da Base de Construção" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Para assegurar uma boa qualidade das suas impressões, pode agora ajustar a base de construção. Quando clica em \"Avançar para a posição seguinte\", o nozzle irá deslocar-se para as diferentes posições que podem ser ajustadas." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Para cada posição, introduza um pedaço de papel debaixo do nozzle e ajuste a altura da base de construção. A altura da base de construção está correta quando o papel fica ligeiramente preso pelo nozzle." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Iniciar Nivelamento da base de construção" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Avançar para Posição Seguinte" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Mais informações sobre a recolha anónima de dados" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador. Segue-se um exemplo de todos os dados partilhados:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Não pretendo enviar dados anónimos" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir o envio de dados anónimos" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Mercado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "É necessário reiniciar o Cura para que as alterações dos pacotes sejam aplicadas." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sair %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Instalar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Instalado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Premium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Ir para Mercado na Web" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Procurar materiais" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Compatibilidade" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Máquina" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Base de construção" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Suportes" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Qualidade" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Ficha técnica" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Ficha de segurança" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Instruções de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Site" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "É necessário Log in para instalar ou atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Comprar bobinas de material" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "A Actualizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Atualizado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Anterior" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" +msgid "Plugins" +msgstr "Plug-ins" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Definições do nozzle" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiais" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Instalado" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do nozzle" +msgid "Will install upon restarting" +msgstr "Será instalado após reiniciar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "É necessário Log in para atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Repor Versão Anterior" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Desinstalar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Contribuições comunitárias" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro do material compatível" +msgid "Community Plugins" +msgstr "Plug-ins comunitários" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Desvio X do Nozzle" +msgid "Generic Materials" +msgstr "Materiais genéricos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "A obter pacotes..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Desvio Y do Nozzle" +msgid "Website" +msgstr "Site" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número de ventoinha de arrefecimento" +msgid "Email" +msgstr "E-mail" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-code inicial do extrusor" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Inicie sessão para obter plug-ins e materiais verificados para o Ultimaker Cura Enterprise" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-code final do extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Definições da impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (Largura)" +msgid "Version" +msgstr "Versão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" +msgid "Last updated" +msgstr "Actualizado em" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" +msgid "Brand" +msgstr "Marca" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da base de construção" +msgid "Downloads" +msgstr "Transferências" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Plug-ins instalados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Não foi instalado qualquer plug-in." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Materiais instalados" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Não foi instalado qualquer material." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Plug-ins em pacote" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Materiais em pacote" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Não foi possível aceder á base de dados de Pacotes do Cura. Por favor verifique a sua ligação." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" +msgid "You need to accept the license to install the package" +msgstr "É necessário aceitar a licença para instalar o pacote" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Alterações feitas desde a sua conta" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Descartar" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Seguinte" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Base aquecida" +msgid "The following packages will be added:" +msgstr "Os seguintes pacotes vão ser instalados:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Os seguintes pacotes não podem ser instalados devido a uma versão incompatível do Cura:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Confirmar desinstalação" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Está a desinstalar materiais e/ou perfis que ainda estão a ser utilizados. Mediante confirmação, as predefinições dos seguintes materiais/perfis serão repostas." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Materiais" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Perfis" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Confirmar" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Variante do G-code" +msgid "Color scheme" +msgstr "Esquema de cores" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Definições da cabeça de impressão" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidade" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Espessura da Camada" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Diâmetro da Linha" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluxo" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X mín" +msgid "Compatibility Mode" +msgstr "Modo Compatibilidade" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y mín" +msgid "Travels" +msgstr "Deslocações" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X máx" +msgid "Helpers" +msgstr "Auxiliares" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y máx" +msgid "Shell" +msgstr "Invólucro" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do pórtico" +msgid "Infill" +msgstr "Enchimento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" +msgid "Starts" +msgstr "A Iniciar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar desvios da extrusora ao GCode" +msgid "Only Show Top Layers" +msgstr "Só Camadas Superiores" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-code inicial" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 Camadas Superiores Detalhadas" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-code final" +# rever! +# todas as strings com a frase +# Topo / Base ?? +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Superior / Inferior" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parede Interior" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "mín" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "máx" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gerir impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Vidro" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Atualize o firmware da impressora para gerir a fila remotamente." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Não é possível visualizar os feeds das câmaras das impressoras na cloud a partir do Ultimaker Cura. Clique em \"Gerir impressora\" para visitar o Ultimaker Digital Factory e ver esta câmara." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "A carregar..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponível" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Inacessível" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Inativa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "A preparar..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "A Imprimir" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Sem título" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anónimo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Requer alterações na configuração" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Detalhes" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impressora indisponível" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Primeira disponível" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Em fila" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gerir no browser" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Não existem trabalhos de impressão na fila. Para adicionar um trabalho, seccione e envie." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabalhos em Impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo de impressão total" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "A aguardar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir Através da Rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Seleção de Impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Alterações na configuração" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Ignorar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A impressora atribuída %1 requer a seguinte alteração na configuração:" +msgstr[1] "A impressora atribuída %1 requer as seguintes alterações na configuração:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A impressora %1 está atribuída, mas o trabalho tem uma configuração de material desconhecida." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Alterar o material %1 de %2 para %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Carregar %3 como material %1 (isto não pode ser substituído)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Substituir o print core %1 de %2 para %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Alterar base de construção para %1 (isto não pode ser substituído)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Ignorar utilizará as definições especificadas com a configuração da impressora existente. Tal pode resultar numa falha de impressão." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Alumínio" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Impressão terminada" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "A cancelar..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Cancelado" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Falhou" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "A colocar em pausa..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Em Pausa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "A recomeçar..." + +# rever! +# ver contexto! +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Ação necessária" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina %1 a %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Ligar a uma Impressora em Rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a impressora está ligada à rede através de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecione a impressora a partir da lista abaixo:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Remover" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Se a sua impressora não estiver na lista, por favor, consulte o guia de resolução de problemas de impressão em rede" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Versão de Firmware" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Endereço" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impressora não está configurada para alojar um grupo de impressoras." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impressora aloja um grupo de %1 impressoras." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A impressora neste endereço ainda não respondeu." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Ligar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Endereço IP inválido" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Introduza um endereço IP válido." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Introduza o endereço IP da sua impressora na rede." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Mover para o topo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Eliminar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Retomar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "A colocar em pausa..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "A recomeçar..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Colocar em pausa" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "A cancelar..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Cancelar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Tem a certeza de que pretende mover %1 para o topo da fila?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Mover trabalho de impressão para o topo" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Tem a certeza de que pretende eliminar %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Eliminar trabalho de impressão" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Tem a certeza de que deseja cancelar %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Cancelar impressão" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2260,1420 +3347,433 @@ msgstr "" "- Verifique se a impressora está ligada à rede.\n" "- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Ligue a impressora à sua rede." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Ver manuais do utilizador online" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Para monitorizar a sua impressão a partir do Cura, ligue a impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Objecto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar definições para sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Apenas objeto de enchimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar definições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar definições a personalizar para este modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostrar tudo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plug-in de pós-processamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de pós-processamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Definições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Altere os scripts de pós-processamento." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Alguns factores podem vir a ser problemáticos nesta impressão. Clique para ver algumas sugestões para melhorar a qualidade da impressão." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "O script a seguir está ativo:" -msgstr[1] "Os seguintes scripts estão ativos:" +msgid "3D View" +msgstr "Vista 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de cores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura da Camada" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Diâmetro da Linha" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo Compatibilidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Deslocações" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Auxiliares" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Invólucro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Enchimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "A Iniciar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Só Camadas Superiores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 Camadas Superiores Detalhadas" - -# rever! -# todas as strings com a frase -# Topo / Base ?? -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superior / Inferior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações sobre a recolha anónima de dados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador. Segue-se um exemplo de todos os dados partilhados:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Não pretendo enviar dados anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir o envio de dados anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Anterior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Suportes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Ficha técnica" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Ficha de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Instruções de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Site" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Instalado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "É necessário Log in para instalar ou atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Comprar bobinas de material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "A Actualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Atualizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Ir para Mercado na Web" +msgid "Front View" +msgstr "Vista Frente" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Vista Cima" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Vista esquerda" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Vista direita" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Procurar materiais" +msgid "Object list" +msgstr "Lista de objetos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "É necessário reiniciar o Cura para que as alterações dos pacotes sejam aplicadas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Instalado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Será instalado após reiniciar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "É necessário Log in para atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Repor Versão Anterior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Instalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Alterações feitas desde a sua conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Descartar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Seguinte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Os seguintes pacotes vão ser instalados:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Os seguintes pacotes não podem ser instalados devido a uma versão incompatível do Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Confirmar desinstalação" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Está a desinstalar materiais e/ou perfis que ainda estão a ser utilizados. Mediante confirmação, as predefinições dos seguintes materiais/perfis serão repostas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Perfis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Confirmar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "É necessário aceitar a licença para instalar o pacote" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Site" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "E-mail" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Versão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Actualizado em" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marca" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Transferências" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Contribuições comunitárias" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Plug-ins comunitários" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiais genéricos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Não foi possível aceder á base de dados de Pacotes do Cura. Por favor verifique a sua ligação." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Plug-ins instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Não foi instalado qualquer plug-in." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Materiais instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Não foi instalado qualquer material." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Plug-ins em pacote" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Materiais em pacote" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "A obter pacotes..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Inicie sessão para obter plug-ins e materiais verificados para o Ultimaker Cura Enterprise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Mercado" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelamento da Base de Construção" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Ficheiro" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Para assegurar uma boa qualidade das suas impressões, pode agora ajustar a base de construção. Quando clica em \"Avançar para a posição seguinte\", o nozzle irá deslocar-se para as diferentes posições que podem ser ajustadas." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Editar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Para cada posição, introduza um pedaço de papel debaixo do nozzle e ajuste a altura da base de construção. A altura da base de construção está correta quando o papel fica ligeiramente preso pelo nozzle." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Visualizar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar Nivelamento da base de construção" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Definições" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Avançar para Posição Seguinte" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensões" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Selecione quaisquer atualizações realizadas a esta Ultimaker Original" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referências" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Base de Construção Aquecida (kit oficial ou de construção própria)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Ajuda" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Ligar a uma Impressora em Rede" +msgid "New project" +msgstr "Novo projeto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a impressora está ligada à rede através de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Tem a certeza de que deseja iniciar um novo projeto? Isto irá apagar tudo na base de construção assim como quaisquer definições que não tenham sido guardadas." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione a impressora a partir da lista abaixo:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Se a sua impressora não estiver na lista, por favor, consulte o guia de resolução de problemas de impressão em rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão de Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Endereço" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impressora não está configurada para alojar um grupo de impressoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impressora aloja um grupo de %1 impressoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A impressora neste endereço ainda não respondeu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Ligar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Introduza um endereço IP válido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Introduza o endereço IP da sua impressora na rede." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações na configuração" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Ignorar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A impressora atribuída %1 requer a seguinte alteração na configuração:" -msgstr[1] "A impressora atribuída %1 requer as seguintes alterações na configuração:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A impressora %1 está atribuída, mas o trabalho tem uma configuração de material desconhecida." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar o material %1 de %2 para %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Carregar %3 como material %1 (isto não pode ser substituído)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Substituir o print core %1 de %2 para %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Alterar base de construção para %1 (isto não pode ser substituído)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Ignorar utilizará as definições especificadas com a configuração da impressora existente. Tal pode resultar numa falha de impressão." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Vidro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Mover para o topo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Eliminar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Retomar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "A colocar em pausa..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "A recomeçar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Colocar em pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "A cancelar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Tem a certeza de que pretende mover %1 para o topo da fila?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Mover trabalho de impressão para o topo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Tem a certeza de que pretende eliminar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Eliminar trabalho de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Tem a certeza de que deseja cancelar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Cancelar impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Atualize o firmware da impressora para gerir a fila remotamente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "A carregar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inativa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "A preparar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "A Imprimir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Sem título" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anónimo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer alterações na configuração" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Cancelado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Impressão terminada" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "A cancelar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "A colocar em pausa..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Em Pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "A recomeçar..." - -# rever! -# ver contexto! -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Ação necessária" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 a %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Em fila" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Não existem trabalhos de impressão na fila. Para adicionar um trabalho, seccione e envie." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos em Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo de impressão total" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "A aguardar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir Através da Rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Iniciar sessão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Inicie a sessão na plataforma Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Adicione definições de materiais e plug-ins do Marketplace\n" -"- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n" -"- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Crie uma conta Ultimaker gratuita" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "A verificar..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Conta sincronizada" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Ocorreu um problema..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Instalar atualizações pendentes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Verificar atualizações de conta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Atualização mais recente: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Conta Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Terminar sessão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Nenhuma estimativa de tempo disponível" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Nenhuma estimativa de custos disponível" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Pré-visualizar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Estimativa de tempo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Estimativa de material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "A Seccionar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Não é possível seccionar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "A processar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" -msgstr "Segmentação" +msgstr "Seccionar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" -msgstr "Iniciar o processo de segmentação" +msgstr "Iniciar o processo de seccionamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mostrar Guia de resolução de problemas online" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Alternar para ecrã inteiro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Sair do Ecrã Inteiro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Desfazer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Refazer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Sair" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Vista 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Vista Frente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Vista Cima" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Vista Inferior" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Vista Lado Esquerdo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Vista Lado Direito" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configurar Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Adicionar Impressora..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Gerir Im&pressoras..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Gerir Materiais..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Use o Mercado para adicionar outros materiais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Atualizar perfil com as definições/substituições atuais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Descartar alterações atuais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Criar perfil a partir das definições/substituições atuais..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Gerir Perfis..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Mostrar &documentação online" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Reportar um &erro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Novidades" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Sobre..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Apagar seleção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centrar seleção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Multiplicar seleção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Apagar Modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ce&ntrar Modelo na Base" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Agrupar Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Desagrupar Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "&Combinar Modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Multiplicar Modelo..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Selecionar todos os modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Limpar base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Recarregar todos os modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Dispor todos os modelos em todas as bases de construção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Dispor todos os modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Dispor seleção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Repor todas as posições de modelos" - -# rever! -# Cancelar todas? -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Repor Todas as Transformações do Modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Abrir Ficheiro(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Novo Projeto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Mostrar pasta de configuração" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configurar visibilidade das definições..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Mercado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este pacote será instalado após reiniciar." +msgid "Time estimation" +msgstr "Estimativa de tempo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimativa de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Definições" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfis" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Nenhuma estimativa de tempo disponível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "A fechar %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Nenhuma estimativa de custos disponível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Tem a certeza de que pretende sair de %1?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Pré-visualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir ficheiro(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "Adicionar uma impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar Pacote" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Adicionar uma impressora em rede" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir ficheiro(s)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Adicionar uma impressora sem rede" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Encontrámos um ou mais ficheiros G-code nos ficheiros selecionados. Só é possível abrir um ficheiro G-code de cada vez. Se pretender abrir um ficheiro G-code, selecione apenas um." +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Adicionar uma impressora de cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Adicionar Impressora" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "A aguardar resposta da cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Não foram encontradas impressoras na sua conta?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "As seguintes impressoras na sua conta foram adicionadas no Cura:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Adicionar impressora manualmente" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Adicionar impressora por endereço IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Introduza o endereço IP da sua impressora." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Adicionar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Não foi possível ligar ao dispositivo." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Não se consegue ligar a uma impressora Ultimaker?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "A impressora neste endereço ainda não respondeu." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Não foi possível adicionar esta impressora porque é uma impressora desconhecida ou não aloja um grupo." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Anterior" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Ligar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Contrato de utilizador" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Rejeitar e fechar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Bem-vindo ao Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "Siga estes passos para configurar o Ultimaker Cura. Este processo irá demorar apenas alguns momentos." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Iniciar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Inicie a sessão na plataforma Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Adicione definições de materiais e plug-ins do Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Ignorar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Crie uma Conta Ultimaker gratuita" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Autor do perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Nome da impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Atribuir um nome à impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Não foi encontrada nenhuma impressora na sua rede." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Adicionar impressora por IP" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Adicionar impressora de cloud" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Ajude-nos a melhorar o Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador, incluindo:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Tipos de máquina" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Utilização do material" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Número de Secções" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Definições de impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Os dados recolhidos pelo Ultimaker Cura não conterão quaisquer informações pessoais." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Mais informações" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "Novidades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Vazio" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Notas da versão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Acerca de %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "versão: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "A Solução completa para a impressão 3D por filamento fundido." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3682,186 +3782,207 @@ msgstr "" "O Cura foi desenvolvido pela Ultimaker B.V. em colaboração com a comunidade.\n" "O Cura tem o prazer de utilizar os seguintes projetos open source:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Interface gráfica do utilizador" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Framework da aplicação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "Gerador de G-code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Biblioteca de comunicação interprocessual" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Linguagem de programação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI framework" # rever! # use eng programing terms? -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Ligações de estrutura da GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "Biblioteca de ligações C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Formato de intercâmbio de dados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Biblioteca de apoio para computação científica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Biblioteca de apoio para cálculos mais rápidos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Biblioteca de apoio para processamento de ficheiros STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Biblioteca de apoio para processamento de objetos planos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Biblioteca de apoio para processamento de malhas triangulares" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Biblioteca de apoio para processamento de ficheiros 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Biblioteca de apoio para transmissões de fluxo e metadados de ficheiros" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Biblioteca de comunicação em série" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Biblioteca de deteção ZeroConf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Biblioteca de recortes de polígonos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Verificador de tipo estático para Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Certificados de raiz para validar a credibilidade SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Biblioteca de controlo de erros de Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Biblioteca de embalagens de polígonos, desenvolvida pela Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Ligações Python para libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Biblioteca de apoio para acesso às chaves de sistema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Extensões Python para Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Tipo de letra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "Ícones SVG" # rever! -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Implementação da aplicação de distribuição cruzada Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir ficheiro de projeto" +msgid "Open file(s)" +msgstr "Abrir ficheiro(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Este ficheiro é um Projeto do Cura. Pretende abrir como Projeto ou só importar os modelos 3D incluídos no Projeto?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Encontrámos um ou mais projetos do Cura nos ficheiros selecionados. Só é possível abrir um Projeto do Cura, de cada vez. Sugerimos importar apenas os modelos 3D desses Projetos do Cura. Deseja continuar?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Memorizar a minha escolha" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como projeto" +msgid "Import all as models" +msgstr "Importar tudo como modelos 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Guardar projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Não mostrar novamente o resumo do projeto ao guardar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" +msgid "Save" +msgstr "Guardar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Descartar ou Manter as alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3872,1216 +3993,144 @@ msgstr "" "Pretende manter estas definições alteradas depois de trocar de perfis?\n" "Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Definições do perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Alterações atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Perguntar sempre isto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar e não perguntar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Manter e não perguntar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Descartar alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Manter alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Abrir ficheiro de projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Encontrámos um ou mais projetos do Cura nos ficheiros selecionados. Só é possível abrir um Projeto do Cura, de cada vez. Sugerimos importar apenas os modelos 3D desses Projetos do Cura. Deseja continuar?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Este ficheiro é um Projeto do Cura. Pretende abrir como Projeto ou só importar os modelos 3D incluídos no Projeto?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Memorizar a minha escolha" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar tudo como modelos 3D" +msgid "Open as project" +msgstr "Abrir como projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Guardar projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Não mostrar novamente o resumo do projeto ao guardar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Guardar" +msgid "Import models" +msgstr "Importar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Imprimir Modelo Selecionado com o %1" -msgstr[1] "Imprimir Modelos Selecionados com o %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sem título" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Ficheiro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Editar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Visualizar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Definições" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensões" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referências" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Ajuda" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Novo projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Tem a certeza de que deseja iniciar um novo projeto? Isto irá apagar tudo na base de construção assim como quaisquer definições que não tenham sido guardadas." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Mercado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configurações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Esta configuração não está disponível porque não foi possível reconhecer %1. Visite %2 para transferir o perfil de material correto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "A carregar as configurações disponíveis da impressora..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "As configurações não estão disponíveis porque a impressora está desligada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Selecionar configuração" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Configurações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Ativado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Utilizar cola para melhor aderência com esta combinação de materiais." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Imprimir Modelo Selecionado Com:" -msgstr[1] "Imprimir modelos selecionados com:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar Modelo Selecionado" -msgstr[1] "Multiplicar modelos selecionados" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de Cópias" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Guardar projeto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar seleção..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir ficheiro(s)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impressoras em rede" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impressoras locais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &Recente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Guardar projeto..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir como Extrusor Ativo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Ativar Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desativar Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Definições Visíveis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Fechar todas as categorias" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gerir Visibilidade das Definições..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Posição da câmara" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Vista da câmara" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspetiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Sem ligação a uma impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A impressora não aceita comandos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Em manutenção. Verifique a impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Perdeu-se a ligação com a impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "A imprimir..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Em pausa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "A preparar..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Remova a impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Cancelar impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Tem a certeza de que deseja cancelar a impressão?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "É imprimido como suporte." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Foram modificados outros modelos sobrepostos com este modelo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Foi modificada a sobreposição de enchimento com este modelo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Não são suportadas sobreposições com este modelo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Substitui %1 definição." -msgstr[1] "Substitui %1 definições." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Moeda:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "É necessário reiniciar a aplicação para que estas alterações sejam aplicadas." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Seccionar automaticamente ao alterar as definições." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Seccionar automaticamente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento da janela" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Realçar, a vermelho, as áreas do modelo sem apoio. Sem suporte, estas áreas podem não ser impressas correctamente." - -# rever! -# consolas? -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Mostrar Saliências (Overhangs)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Destaque as superfícies extra ou em falta do modelo utilizando sinais de aviso. As trajetórias de ferramentas irão falhar muitas vezes partes da geometria pretendida." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Apresentar erros de modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Move a câmara de forma que o modelo fique no centro da visualização quando é selecionado um modelo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centrar câmara ao selecionar item" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "O comportamento de zoom predefinido do Cura deve ser invertido?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverta a direção do zoom da câmera." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "O zoom deve deslocar-se na direção do rato?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Fazer zoom em direção ao rato não é suportado na perspetiva ortográfica." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Fazer Zoom na direção do rato" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Os modelos, na plataforma, devem ser movidos para que não se intersectem?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Garantir que os modelos não se interceptam" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Pousar os modelos na base de construção?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Pousar automaticamente os modelos na base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Mostrar mensagem de aviso no leitor de g-code." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensagem de aviso no leitor de g-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "A vista por camada deve ser forçada a utilizar o modo de compatibilidade?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forçar o modo de compatibilidade na visualização por camada (é necessário reiniciar)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "O Cura deve abrir na localização onde foi fechado?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar posição da janela ao iniciar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Que tipo de composição de câmara deve ser utilizado?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Composição de câmara:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspetiva" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrir e guardar ficheiros" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Pretende que os ficheiros abertos a partir do ambiente de trabalho ou de aplicações externas sejam executados na mesma instância do Cura?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizar uma única instância do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Os modelos devem ser redimensionados até ao volume de construção se forem demasiado grandes?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Redimensionar modelos demasiado grandes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Um modelo pode parecer extremamente pequeno se, por exemplo, este tiver sido criado em metros e não em milímetros. Estes modelos devem ser redimensionados?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Redimensionar modelos extremamente pequenos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Selecionar os modelos depois de abertos?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selecionar os modelos depois de abertos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Deve um prefixo com base no nome da impressora ser adicionado ao nome do trabalho de impressão automaticamente?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Adicionar prefixo da máquina ao nome do trabalho" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Deve ser apresentado um resumo ao guardar um ficheiro de projeto?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Mostrar caixa de diálogo de resumo ao guardar projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento predefinido ao abrir um ficheiro de projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento predefinido ao abrir um ficheiro de projeto: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Perguntar sempre isto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Abrir sempre como projeto" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Importar sempre modelos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Quando tiver realizado alterações a um perfil e mudado para outro, será apresentada uma caixa de diálogo a perguntar se pretende manter as alterações. Caso contrário, pode escolher um comportamento predefinido, sendo que a caixa de diálogo nunca mais é apresentada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportamento predefinido para valores de definição alterados ao mudar para um perfil diferente: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Descartar sempre definições alteradas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Transferir sempre definições alteradas para o novo perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidade" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "O Cura deve procurar atualizações quando o programa é iniciado?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Procurar atualizações ao iniciar" - -# rever! -# legal wording -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Podem alguns dados anónimos sobre a impressão ser enviados para a Ultimaker? Não são enviadas, nem armazenadas, quaisquer informações pessoais, incluindo modelos, endereços IP ou outro tipo de identificação pessoal." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar dados (anónimos) sobre a impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Mais informações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Mudar Nome" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Criar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Sincronizar com Impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Não foi possível importar o material %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com êxito" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Falha ao exportar material para %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado com êxito para %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar Todos os Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar Alteração de Diâmetro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "O novo diâmetro do filamento está definido como %1 mm, o que não é compatível com o extrusor actual. Pretende prosseguir?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Nome" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Cor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Propriedades" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densidade" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diâmetro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Custo do Filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso do Filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Comprimento do filamento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Custo por Metro" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Este material está associado a %1 e partilha algumas das suas propriedades." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desassociar Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Descrição" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informações de Aderência" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Definições de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Criar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Criar Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Forneça um nome para este perfil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Mudar Nome do Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Impressora: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Atualizar perfil com as definições/substituições atuais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar alterações atuais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Este perfil utiliza as predefinições especificadas pela impressora, pelo que não tem quaisquer definições/substituições na lista seguinte." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "As suas definições atuais correspondem ao perfil selecionado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Definições Globais" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Definição" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Atual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unidade" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidade das Definições" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Selecionar tudo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "A temperatura-alvo do extrusor. O extrusor irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento do extrusor será desligado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura-alvo de preaquecimento do extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Preaquecer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Aquecer o extrusor com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar que o extrusor aqueça quando começar a impressão." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O nozzle inserido neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "A temperatura desejada da base aquecida. A base irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento da base será desligado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A temperatura atual da base aquecida." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura de pré-aquecimento da base." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Aqueçer a base com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar que a base aqueça quando começar a impressão." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Controlo da impressora" - -# rever! -# contexto?! -# Jog? -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de deslocação" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -# rever! -# contexto?! -# Jog? -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de deslocação" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Enviar um comando G-code personalizado para a impressora ligada. Prima \"Enter\" para enviar o comando." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está ligada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "A impressora de cloud está offline. Verifique se a impressora está ligada e conectada à Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impressora não está associada à sua conta. Visite a Ultimaker Digital Factory para estabelecer uma ligação." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "A conectividade de cloud está atualmente indisponível. Inicie sessão para estabelecer ligação com a impressora de cloud." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "A conectividade de cloud está atualmente indisponível. Verifique a sua ligação à Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerir impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras ligadas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras predefinidas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Impressão ativa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Nome do trabalho" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Tempo de Impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo restante estimado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "A impressora de cloud está offline. Verifique se a impressora está ligada e conectada à Internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impressora não está associada à sua conta. Visite a Ultimaker Digital Factory para estabelecer uma ligação." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "A conectividade de cloud está atualmente indisponível. Inicie sessão para estabelecer ligação com a impressora de cloud." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "A conectividade de cloud está atualmente indisponível. Verifique a sua ligação à Internet." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Adicionar Impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Gerir impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Impressoras ligadas" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Impressoras predefinidas" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Definições de impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Configuração de impressão desativada. O ficheiro G-code não pode ser modificado." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5092,74 +4141,61 @@ msgstr "" "\n" "Clique para abrir o gestor de perfis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Perfis personalizados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar alterações atuais" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Recomendado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Ligado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Desligado" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimental" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "Não existe um perfil %1 para a configuração do extrusor %2. O objetivo predefinido será usado como alternativa" msgstr[1] "Não existe um perfil %1 para as configurações dos extrusores %2. O objetivo predefinido será usado como alternativa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Configuração de impressão desativada. O ficheiro G-code não pode ser modificado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Ligado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Desligado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" +msgid "Profiles" +msgstr "Perfis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Aderência à Base de Construção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Permite a impressão de uma aba ou raft. Isto irá adicionar, respetivamente, uma área plana em torno ou sob a base do seu objeto, que são fáceis de retirar posteriormente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Enchimento gradual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "O enchimento gradual irá aumentar progressivamente a densidade do enchimento em direção ao topo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Algumas definições do perfil foram modificadas. Se pretender alterá-las, aceda ao modo Personalizado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Suportes" @@ -5167,27 +4203,1632 @@ msgstr "Suportes" # rever! # collapse ? # desmoronar? desabar? -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." -# rever! -# ocultas? -# escondidas? -# valor normal? automatico? -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.\n" -"\n" -"Clique para tornar estas definições visíveis." +msgid "Gradual infill" +msgstr "Enchimento gradual" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "O enchimento gradual irá aumentar progressivamente a densidade do enchimento em direção ao topo." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Aderência à Base de Construção" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Permite a impressão de uma aba ou raft. Isto irá adicionar, respetivamente, uma área plana em torno ou sob a base do seu objeto, que são fáceis de retirar posteriormente." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Guardar projeto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Impressoras em rede" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impressoras locais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoritos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Imprimir Modelo Selecionado Com:" +msgstr[1] "Imprimir modelos selecionados com:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Multiplicar Modelo Selecionado" +msgstr[1] "Multiplicar modelos selecionados" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de Cópias" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Guardar projeto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportar..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar seleção..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Configurações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Personalizado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Ativado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Utilizar cola para melhor aderência com esta combinação de materiais." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "A configuração deste extrusor não é permitida o que impede o seccionamento." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Não existem perfis que correspondam à configuração deste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Selecionar configuração" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Configurações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "A carregar as configurações disponíveis da impressora..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "As configurações não estão disponíveis porque a impressora está desligada." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Esta configuração não está disponível porque não foi possível reconhecer %1. Visite %2 para transferir o perfil de material correto." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Abrir ficheiro(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir como Extrusor Ativo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Ativar Extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Desativar Extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Abrir &Recente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Definições Visíveis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Fechar todas as categorias" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gerir Visibilidade das Definições..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Posição da câmara" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Vista da câmara" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspetiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "&Base de construção" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Ver tipo" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "É imprimido como suporte." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Foram modificados outros modelos sobrepostos com este modelo." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Foi modificada a sobreposição de enchimento com este modelo." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Não são suportadas sobreposições com este modelo." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Substitui %1 definição." +msgstr[1] "Substitui %1 definições." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Ativar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Criar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Duplicar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Mudar Nome" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Criar Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Forneça um nome para este perfil." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplicar Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Mudar Nome do Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importar Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Impressora: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Atualizar perfil com as definições/substituições atuais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Este perfil utiliza as predefinições especificadas pela impressora, pelo que não tem quaisquer definições/substituições na lista seguinte." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "As suas definições atuais correspondem ao perfil selecionado." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Definições Globais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Moeda:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Tema:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "É necessário reiniciar a aplicação para que estas alterações sejam aplicadas." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Seccionar automaticamente ao alterar as definições." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Seccionar automaticamente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento da janela" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Realçar, a vermelho, as áreas do modelo sem apoio. Sem suporte, estas áreas podem não ser impressas correctamente." + +# rever! +# consolas? +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Mostrar Saliências (Overhangs)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Destaque as superfícies extra ou em falta do modelo utilizando sinais de aviso. As trajetórias de ferramentas irão falhar muitas vezes partes da geometria pretendida." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Apresentar erros de modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Move a câmara de forma que o modelo fique no centro da visualização quando é selecionado um modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centrar câmara ao selecionar item" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "O comportamento de zoom predefinido do Cura deve ser invertido?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Inverta a direção do zoom da câmera." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "O zoom deve deslocar-se na direção do rato?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Fazer zoom em direção ao rato não é suportado na perspetiva ortográfica." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Fazer Zoom na direção do rato" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Os modelos, na plataforma, devem ser movidos para que não se intersectem?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Garantir que os modelos não se interceptam" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Pousar os modelos na base de construção?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Pousar automaticamente os modelos na base de construção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Mostrar mensagem de aviso no leitor de g-code." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Mensagem de aviso no leitor de g-code" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "A vista por camada deve ser forçada a utilizar o modo de compatibilidade?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forçar o modo de compatibilidade na visualização por camada (é necessário reiniciar)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "O Cura deve abrir na localização onde foi fechado?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Restaurar posição da janela ao iniciar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Que tipo de composição de câmara deve ser utilizado?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Composição de câmara:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspetiva" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrir e guardar ficheiros" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Pretende que os ficheiros abertos a partir do ambiente de trabalho ou de aplicações externas sejam executados na mesma instância do Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Utilizar uma única instância do Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Limpar a base de construção antes de carregar um novo modelo na instância única do Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Limpar base de construção antes de carregar o modelo na instância única" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Os modelos devem ser redimensionados até ao volume de construção se forem demasiado grandes?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Redimensionar modelos demasiado grandes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Um modelo pode parecer extremamente pequeno se, por exemplo, este tiver sido criado em metros e não em milímetros. Estes modelos devem ser redimensionados?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Redimensionar modelos extremamente pequenos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Selecionar os modelos depois de abertos?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Selecionar os modelos depois de abertos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Deve um prefixo com base no nome da impressora ser adicionado ao nome do trabalho de impressão automaticamente?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Adicionar prefixo da máquina ao nome do trabalho" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Deve ser apresentado um resumo ao guardar um ficheiro de projeto?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Mostrar caixa de diálogo de resumo ao guardar projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportamento predefinido ao abrir um ficheiro de projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportamento predefinido ao abrir um ficheiro de projeto: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Perguntar sempre isto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Abrir sempre como projeto" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Importar sempre modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Quando tiver realizado alterações a um perfil e mudado para outro, será apresentada uma caixa de diálogo a perguntar se pretende manter as alterações. Caso contrário, pode escolher um comportamento predefinido, sendo que a caixa de diálogo nunca mais é apresentada." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportamento predefinido para valores de definição alterados ao mudar para um perfil diferente: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Descartar sempre definições alteradas" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Transferir sempre definições alteradas para o novo perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidade" + +# rever! +# legal wording +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Podem alguns dados anónimos sobre a impressão ser enviados para a Ultimaker? Não são enviadas, nem armazenadas, quaisquer informações pessoais, incluindo modelos, endereços IP ou outro tipo de identificação pessoal." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Enviar dados (anónimos) sobre a impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Mais informações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Atualizações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "O Cura deve procurar atualizações quando o programa é iniciado?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Procurar atualizações ao iniciar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Quando se verificar se existem atualizações, verificar apenas a existência de versões estáveis." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Apenas versões estáveis" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Quando se verificar se existem atualizações, verificar tanto a existência de versões estáveis como de versões beta." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versões estáveis e beta" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Fazer uma verificação automática de novos plug-ins sempre que o Cura for iniciado? Recomenda-se vivamente que não desative esta opção!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Receber notificações para atualizações de plug-ins" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Informações" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Confirmar Alteração de Diâmetro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "O novo diâmetro do filamento está definido como %1 mm, o que não é compatível com o extrusor actual. Pretende prosseguir?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Nome" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Cor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Propriedades" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Densidade" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Diâmetro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Custo do Filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Peso do Filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Comprimento do filamento" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Custo por Metro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Este material está associado a %1 e partilha algumas das suas propriedades." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desassociar Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Descrição" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informações de Aderência" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Criar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Sincronizar com Impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Não foi possível importar o material %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material %1 importado com êxito" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Falha ao exportar material para %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material exportado com êxito para %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Com alguns passos simples poderá sincronizar todos os seus perfis de materiais com as suas impressoras." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Começar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Por que motivo tenho de sincronizar os perfis de materiais?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Iniciar sessão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Para sincronizar automaticamente os perfis de materiais com todas as impressoras ligadas à Digital Factory, tem de ter uma sessão iniciada no Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizar materiais através de USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "As seguintes impressoras vão receber os novos perfis de materiais:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Ocorreu um problema ao enviar os materiais para as impressoras." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Perfis de materiais foram sincronizados com êxito com as seguintes impressoras:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Faltam impressoras?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Certifique-se de que todas as impressoras estão ON e ligadas com a Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Atualizar lista" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Tente novamente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Concluído" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "A sincronizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Não foi encontrada nenhuma impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Parece que não tem nenhuma impressora compatível ligada com a Digital Factory. Certifique-se de que a impressora está ligada e que tem o firmware mais" +" recente instalado." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Saiba como ligar a sua impressora à Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Sincronizar perfis de materiais via USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Siga os seguintes passos para instalar os novos perfis de materiais na sua impressora." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Clique no botão para exportar o ficheiro de material." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Guarde o ficheiro .umm numa unidade USB." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Insira a unidade USB na impressora e inicie o procedimento para carregar novos perfis de materiais." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Como carregar novos perfis de materiais para a minha impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar ficheiro de material" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar Todos os Materiais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidade das Definições" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Selecionar tudo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Definição" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Atual" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Unidade" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Sem ligação a uma impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "A impressora não aceita comandos" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Em manutenção. Verifique a impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Perdeu-se a ligação com a impressora" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "A imprimir..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Em pausa" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "A preparar..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Remova a impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Cancelar impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Tem a certeza de que deseja cancelar a impressão?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Imprimir Modelo Selecionado com o %1" +msgstr[1] "Imprimir Modelos Selecionados com o %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "As minhas impressoras" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Monitorize as impressoras no Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Crie projetos de impressão na Digital Library." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabalhos em Impressão" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Monitorize os trabalhos de impressão e volte a imprimir a partir do histórico de impressão." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Tire mais partido do Ultimaker Cura com plug-ins e perfis de materiais." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Torne-se um perito em impressão 3D com os cursos de e-learning da Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Suporte da Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Saiba como começar a utilizar o Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Faça uma pergunta" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consulte a Comunidade Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Reportar um erro" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Informe os programadores quando houver algum problema." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visite o site da Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Controlo da impressora" + +# rever! +# contexto?! +# Jog? +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Posição de deslocação" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +# rever! +# contexto?! +# Jog? +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distância de deslocação" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar G-code" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Enviar um comando G-code personalizado para a impressora ligada. Prima \"Enter\" para enviar o comando." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "A temperatura-alvo do extrusor. O extrusor irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento do extrusor será desligado." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "A temperatura atual deste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A temperatura-alvo de preaquecimento do extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Preaquecer" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Aquecer o extrusor com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar que o extrusor aqueça quando começar a impressão." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "A cor do material neste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "O material neste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "O nozzle inserido neste extrusor." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A impressora não está ligada." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Base de construção" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "A temperatura desejada da base aquecida. A base irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento da base será desligado." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A temperatura atual da base aquecida." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A temperatura de pré-aquecimento da base." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Aqueçer a base com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar que a base aqueça quando começar a impressão." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Iniciar sessão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Adicione definições de materiais e plug-ins do Marketplace\n" +"- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n" +"- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Crie uma conta Ultimaker gratuita" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Atualização mais recente: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Conta Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Terminar sessão" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "A verificar..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Conta sincronizada" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Ocorreu um problema..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Instalar atualizações pendentes" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Verificar atualizações de conta" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Sem título" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Nenhum item para selecionar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Mostrar Guia de resolução de problemas online" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Alternar para ecrã inteiro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Sair do Ecrã Inteiro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Desfazer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Refazer" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Sair" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Vista 3D" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Vista Frente" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Vista Cima" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Vista Inferior" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Vista Lado Esquerdo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Vista Lado Direito" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configurar Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Adicionar Impressora..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Gerir Im&pressoras..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Gerir Materiais..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Use o Mercado para adicionar outros materiais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Atualizar perfil com as definições/substituições atuais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Descartar alterações atuais" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Criar perfil a partir das definições/substituições atuais..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Gerir Perfis..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Mostrar &documentação online" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Reportar um &erro" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Novidades" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Sobre..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Apagar seleção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centrar seleção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Multiplicar seleção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Apagar Modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ce&ntrar Modelo na Base" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Agrupar Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Desagrupar Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "&Combinar Modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Multiplicar Modelo..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Selecionar todos os modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Limpar base de construção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Recarregar todos os modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Dispor todos os modelos em todas as bases de construção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Dispor todos os modelos" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Dispor seleção" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Repor todas as posições de modelos" + +# rever! +# Cancelar todas? +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Repor Todas as Transformações do Modelo" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Abrir Ficheiro(s)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Novo Projeto..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Mostrar pasta de configuração" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configurar visibilidade das definições..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Mercado" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Esta definição não é utilizada porque todas as definições influenciadas foram substituídas." @@ -5197,27 +5838,27 @@ msgstr "Esta definição não é utilizada porque todas as definições influenc # Influencia? # Altera? # Modifica? -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Modifica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Modificado Por" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alterá-la aqui, o valor será alterado em todos os extrusores." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Esta definição está resolvida a partir de valores específicos da extrusora em conflito:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5228,7 +5869,7 @@ msgstr "" "\n" "Clique para restaurar o valor do perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5239,346 +5880,126 @@ msgstr "" "\n" "Clique para restaurar o valor calculado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Procurar definições" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copiar valor para todos os extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos os valores alterados para todos os extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Esconder esta definição" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Não mostrar esta definição" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Manter esta definição visível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Vista 3D" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Vista Frente" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Vista Cima" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Vista esquerda" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Vista direita" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +# rever! +# ocultas? +# escondidas? +# valor normal? automatico? +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Ver tipo" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.\n" +"\n" +"Clique para tornar estas definições visíveis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Adicionar uma impressora de cloud" +msgid "This package will be installed after restarting." +msgstr "Este pacote será instalado após reiniciar." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "A aguardar resposta da cloud" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Definições" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Não foram encontradas impressoras na sua conta?" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "A fechar %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "As seguintes impressoras na sua conta foram adicionadas no Cura:" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Tem a certeza de que pretende sair de %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Adicionar impressora manualmente" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar Pacote" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir ficheiro(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor do perfil" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Encontrámos um ou mais ficheiros G-code nos ficheiros selecionados. Só é possível abrir um ficheiro G-code de cada vez. Se pretender abrir um ficheiro G-code, selecione apenas um." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Nome da impressora" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Adicionar Impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Atribuir um nome à impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Adicionar uma impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora em rede" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Adicionar uma impressora sem rede" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Não foi encontrada nenhuma impressora na sua rede." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Adicionar impressora por IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Adicionar impressora de cloud" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Adicionar impressora por endereço IP" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Introduza o endereço IP da sua impressora." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Adicionar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Não foi possível ligar ao dispositivo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Não se consegue ligar a uma impressora Ultimaker?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "A impressora neste endereço ainda não respondeu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Não foi possível adicionar esta impressora porque é uma impressora desconhecida ou não aloja um grupo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Anterior" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Ligar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas da versão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Adicione definições de materiais e plug-ins do Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Crie uma Conta Ultimaker gratuita" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Ignorar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ajude-nos a melhorar o Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador, incluindo:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilização do material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de segmentos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Definições de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Os dados recolhidos pelo Ultimaker Cura não conterão quaisquer informações pessoais." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Mais informações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vazio" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de utilizador" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Rejeitar e fechar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bem-vindo ao Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Siga estes passos para configurar o Ultimaker Cura. Este processo irá demorar apenas alguns momentos." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Iniciar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "Novidades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Nenhum item para selecionar" - -#: ModelChecker/plugin.json +#: PerObjectSettingsTool/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." +msgid "Provides the Per Model Settings." +msgstr "Fornece as definições por-modelo." -#: ModelChecker/plugin.json +#: PerObjectSettingsTool/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelos" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de definições Por-Modelo" -#: 3MFReader/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornece suporte para ler ficheiros 3MF." +msgid "Provides support for importing Cura profiles." +msgstr "Fornece suporte para importar perfis Cura." -#: 3MFReader/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis Cura" -#: 3MFWriter/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Possiblita a gravação de ficheiros 3MF." +msgid "Provides support for reading X3D files." +msgstr "Fornece suporte para ler ficheiros X3D." -#: 3MFWriter/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "Gravador 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornece suporte para ler ficheiros AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor de AMF" +msgid "X3D Reader" +msgstr "Leitor de X3D" #: CuraDrive/plugin.json msgctxt "description" @@ -5590,6 +6011,116 @@ msgctxt "name" msgid "Cura Backups" msgstr "Cópias de segurança do Cura" +#: MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." + +#: MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Função Definições da Máquina" + +#: SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" + +#: SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Eliminador de suportes" + +#: RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." + +#: RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in de dispositivo de saída da unidade amovível" + +#: FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Disponibiliza as ações da máquina para atualizar o firmware." + +#: FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de firmware" + +#: LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Permite importar perfis de versões antigas do Cura." + +#: LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de perfis antigos do Cura" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornece suporte para ler ficheiros 3MF." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +#: UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite a gravação de arquivos Ultimaker Format." + +#: UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Gravador de UFP" + +#: SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" + +#: SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry Logger" + +#: GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Permite importar perfis a partir de ficheiros g-code." + +#: GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de perfis G-code" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornece uma fase de pré-visualização no Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de pré-visualização" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permite a visualização em Raio-X." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista Raio-X" + #: CuraEngineBackend/plugin.json msgctxt "description" msgid "Provides the link to the CuraEngine slicing backend." @@ -5600,15 +6131,35 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Back-end do CuraEngine" -#: CuraProfileReader/plugin.json +#: AMFReader/plugin.json msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornece suporte para importar perfis Cura." +msgid "Provides support for reading AMF files." +msgstr "Fornece suporte para ler ficheiros AMF." -#: CuraProfileReader/plugin.json +#: AMFReader/plugin.json msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis Cura" +msgid "AMF Reader" +msgstr "Leitor de AMF" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê o g-code a partir de um arquivo comprimido." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-code comprimido" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-Processamento" # rever! # Fornece suporte para exportar perfis Cura. @@ -5622,145 +6173,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Gravador de perfis Cura" -#: DigitalLibrary/plugin.json +#: USBPrinting/plugin.json msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." -#: DigitalLibrary/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Biblioteca Digital Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Procura e verifica se existem atualizações de firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador Atualizações Firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Disponibiliza as ações da máquina para atualizar o firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê o g-code a partir de um arquivo comprimido." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-code comprimido" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Grava o g-code num arquivo comprimido." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gravador de G-code comprimido" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Permite importar perfis a partir de ficheiros g-code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de perfis G-code" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite abrir e visualizar ficheiros G-code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Grava o g-code num ficheiro." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Gravador de G-code" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de imagens" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Permite importar perfis de versões antigas do Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de perfis antigos do Cura" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Função Definições da Máquina" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornece uma fase de monitorização no Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de monitorização" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornece as definições por-modelo." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de definições Por-Modelo" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-Processamento" +msgid "USB printing" +msgstr "Impressão USB" #: PrepareStage/plugin.json msgctxt "description" @@ -5772,35 +6193,105 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Fase de preparação" -#: PreviewStage/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornece uma fase de pré-visualização no Cura." +msgid "Allows loading and displaying G-code files." +msgstr "Permite abrir e visualizar ficheiros G-code." -#: PreviewStage/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de pré-visualização" +msgid "G-code Reader" +msgstr "Leitor de G-code" -#: RemovableDriveOutputDevice/plugin.json +#: ImageReader/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." -#: RemovableDriveOutputDevice/plugin.json +#: ImageReader/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in de dispositivo de saída da unidade amovível" +msgid "Image Reader" +msgstr "Leitor de imagens" -#: SentryLogger/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Disponibiliza funções especificas para as máquinas Ultimaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." -#: SentryLogger/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry Logger" +msgid "Ultimaker machine actions" +msgstr "Funções para impressoras Ultimaker" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Grava o g-code num arquivo comprimido." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gravador de G-code comprimido" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Procura e verifica se existem atualizações de firmware." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador Atualizações Firmware" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informações do seccionamento" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Materiais" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Biblioteca Digital Ultimaker" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Encontre, organize e instale novos pacotes para o Cura." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Toolbox" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Grava o g-code num ficheiro." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Gravador de G-code" #: SimulationView/plugin.json msgctxt "description" @@ -5813,125 +6304,15 @@ msgctxt "name" msgid "Simulation View" msgstr "Visualização por camadas" -#: SliceInfoPlugin/plugin.json +#: VersionUpgrade/VersionUpgrade45to46/plugin.json msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." -#: SliceInfoPlugin/plugin.json +#: VersionUpgrade/VersionUpgrade45to46/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Informações do seccionamento" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Permite a visualização (simples) dos objetos como sólidos." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Vista Sólidos" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Eliminador de suportes" - -#: Toolbox/plugin.json -msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Encontre, organize e instale novos pacotes para o Cura." - -#: Toolbox/plugin.json -msgctxt "name" -msgid "Toolbox" -msgstr "Toolbox" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornece suporte para a leitura de ficheiros modelo." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor de Trimesh" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornece suporte para ler pacotes de formato Ultimaker." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor de UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite a gravação de arquivos Ultimaker Format." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Gravador de UFP" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Disponibiliza funções especificas para as máquinas Ultimaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Funções para impressoras Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Gere as ligações de rede com as impressoras em rede Ultimaker." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ligação de rede Ultimaker" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização da versão 2.1 para 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização da versão 2.2 para 2.4" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização da versão 4.5 para a versão 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5943,55 +6324,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Atualização da versão 2.5 para 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização da versão 2.6 para 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização da versão 2.7 para 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização da versão 3.0 para 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização da versão 3.2 para 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização da versão 3.3 para 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização da versão 4.7 para 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -6003,35 +6354,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Atualização da versão 3.4 para 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização da versão 3.5 para 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização da versão 2.1 para 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização da versão 4.0 para 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização da versão 3.2 para 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização da versão 4.1 para 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização da versão 4.8 para 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização da versão 4.6.2 para a versão 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6053,66 +6414,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Atualização da versão 4.3 para 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização da versão 4.4 para a versão 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização da versão 4.5 para a versão 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização da versão 4.6.2 para a versão 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização da versão 4.7 para 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização da versão 4.8 para 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6123,35 +6424,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Atualização da versão 4.9 para 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornece suporte para ler ficheiros X3D." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização da versão 2.7 para 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Materiais" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização da versão 2.6 para 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permite a visualização em Raio-X." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Vista Raio-X" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização da versão 4.11 para a versão 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização da versão 3.3 para 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização da versão 3.0 para 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização da versão 4.0 para 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização da versão 4.4 para a versão 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização da versão 2.2 para 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização da versão 4.1 para 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização da versão 3.5 para 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Gere as ligações de rede com as impressoras em rede Ultimaker." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ligação de rede Ultimaker" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornece suporte para a leitura de ficheiros modelo." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor de Trimesh" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornece suporte para ler pacotes de formato Ultimaker." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor de UFP" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Permite a visualização (simples) dos objetos como sólidos." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Vista Sólidos" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Possiblita a gravação de ficheiros 3MF." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Gravador 3MF" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornece uma fase de monitorização no Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de monitorização" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelos" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Envie e monitorize trabalhos de impressão a partir de qualquer lugar através da sua conta Ultimaker." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Ligar à Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Não é possível visualizar os feeds das câmaras das impressoras na cloud a partir do Ultimaker Cura." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Novo firmware para %s está disponível" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." @@ -6459,7 +6920,7 @@ msgstr "Vista Raio-X" #~ msgctxt "@info:status" #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Sem conteúdo para segmentar porque nenhum dos modelos está dentro do volume de construção ou porque os mesmos estão atribuídos a um extrusor desativado. Dimensione ou rode os modelos para os adaptar ou ative o extrusor." +#~ msgstr "Sem conteúdo para seccionar porque nenhum dos modelos está dentro do volume de construção ou porque os mesmos estão atribuídos a um extrusor desativado. Dimensione ou rode os modelos para os adaptar ou ative o extrusor." #~ msgctxt "@info:backup_status" #~ msgid "There was an error listing your backups." diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index 338c20d5d3..d843296f89 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 14:56+0200\n" "Last-Translator: Portuguese \n" "Language-Team: Paulo Miranda , Portuguese \n" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index cd8849efd5..8f81248f64 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 14:56+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Portuguese , Paulo Miranda , Portuguese \n" @@ -57,9 +57,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"Comandos G-code a serem executados no início – separados por \n" -"." +msgstr "Comandos G-code a serem executados no início – separados por \n." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -71,9 +69,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"Comandos G-code a serem executados no fim – separados por \n" -"." +msgstr "Comandos G-code a serem executados no fim – separados por \n." #: fdmprinter.def.json msgctxt "material_guid label" @@ -155,6 +151,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "A profundidade (direção Y) da área de impressão." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura da Máquina" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) da área de impressão." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -195,16 +201,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Alumínio" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura da Máquina" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) da área de impressão." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -566,8 +562,8 @@ msgstr "A velocidade máxima do motor da direção Z." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Velocidade Máxima de Alimentação" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -691,8 +687,8 @@ msgstr "Passos por Milímetro (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "O numero de passos dos motores de passos (stepper motors) que irão resultar em um milímetro de extrusão." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "O número de passos do motor de passos (stepper motor) que irá resultar no movimento de um milímetro da roda do alimentador à volta da respetiva circunferência." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1479,6 +1475,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Superior/Inferior em \"Monotonic\"" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas superiores/inferiores numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1553,6 +1559,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Engomar em \"Monotonic\"" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas de engomar numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1766,8 +1782,11 @@ msgstr "Padrão de Enchimento" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "O padrão do material de enchimento da impressão. A direção de troca de enchimento de linha e ziguezague em camadas alternadas, reduzindo os custos de material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos Gyroid, cúbico, quarto cúbico e octeto são alterados a cada camada para fornecer uma distribuição mais uniforme da resistência em cada direção." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do" +" material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos" +" gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento" +" relâmpago tenta minimizar o enchimento, ao suportar apenas a parte superior do objeto." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1834,6 +1853,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -2051,6 +2075,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "O número de camadas de enchimento que suportam as arestas do revestimento." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de suporte de enchimento relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar algo acima da mesma. Medido como um ângulo conforme a espessura da camada." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de saliência do enchimento relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar o modelo acima da mesma. Medido como um ângulo conforme a espessura." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de corte do enchimento relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As extremidades das linhas de enchimento são encurtadas para poupar material. Esta definição é o ângulo da saliência das extremidades destas linhas." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de alisamento do enchimento relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3287,6 +3351,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Tudo" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Exterior" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -3305,8 +3374,7 @@ msgstr "Distância Max. de Combing sem Retração" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido" -" como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações." +msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações." #: fdmprinter.def.json msgctxt "travel_retract_before_outer_wall label" @@ -5285,7 +5353,7 @@ msgstr "Largura mínima do molde" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." +msgid "The minimal distance between the outside of the mold and the outside of the model." msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." #: fdmprinter.def.json @@ -5455,6 +5523,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da superfície superior em \"Monotonic\"" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas da superfície superior numa ordem que faz com que ocorra sempre uma sobreposição com linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6568,6 +6646,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "Comandos G-code a serem executados no início – separados por \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "Comandos G-code a serem executados no fim – separados por \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocidade Máxima de Alimentação" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões em grelha, triângulo, tri-hexágono, octeto, quarto cúbico, cruz e concêntricos são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas as partes superiores (internas) do objeto. Como tal, a percentagem de enchimento só é \"válida\" uma camada abaixo do que for necessário para suportar o modelo." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de enchimento relâmpago pode ter com uma imediatamente acima no que diz respeito ao corte das extremidades exteriores das árvores. Medido como um ângulo conforme a espessura." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de enchimento relâmpago pode ter com uma imediatamente acima no que diz respeito ao alisamento das árvores. Medido como um ângulo conforme a espessura." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de enchimento da impressão. A direção de troca de enchimento de linha e ziguezague em camadas alternadas, reduzindo os custos de material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos Gyroid, cúbico, quarto cúbico e octeto são alterados a cada camada para fornecer uma distribuição mais uniforme da resistência em cada direção." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "O numero de passos dos motores de passos (stepper motors) que irão resultar em um milímetro de extrusão." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index cf2eb14327..858f640f24 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -4,193 +4,412 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 14:57+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2022-01-10 12:09+0100\n" "Last-Translator: Lionbridge \n" "Language-Team: Russian , Ruslan Popov , Russian \n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 2.3\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Неизвестно" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Не удалось создать архив из каталога с данными пользователя: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Перечисленные ниже принтеры невозможно подключить, поскольку они входят в состав группы" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Резервное копирование" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Доступные сетевые принтеры" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Не переопределен" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Выполнена попытка восстановить резервную копию Cura с более поздней версией, чем текущая." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "При попытке восстановить резервную копию Cura произошла следующая ошибка:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Перед началом печати синхронизируйте профили материалов с принтерами." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Установлены новые материалы" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Синхронизация материалов" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Узнать больше" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Невозможно сохранить архив материалов в {}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Архив материалов не сохранен" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Неизвестная ошибка." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "Высота печатаемого объёма была уменьшена до значения параметра \"Последовательность печати\", чтобы предотвратить касание портала за напечатанные детали." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Объём печати" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Действительно удалить {0}? Это действие невозможно будет отменить!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Не переопределен" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Неизвестно" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Перечисленные ниже принтеры невозможно подключить, поскольку они входят в состав группы" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Доступные сетевые принтеры" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Визуальный" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Визуальный профиль предназначен для печати визуальных прототипов и моделей, для которых требуется высокое качество поверхности и внешнего вида." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Инженерный профиль предназначен для печати функциональных прототипов и готовых деталей, для которых требуется высокая точность и малые допуски." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Черновой" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Собственный материал" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Своё" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Собственные профили" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Все поддерживаемые типы ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Все файлы (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Визуальный" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Визуальный профиль предназначен для печати визуальных прототипов и моделей, для которых требуется высокое качество поверхности и внешнего вида." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Инженерный профиль предназначен для печати функциональных прототипов и готовых деталей, для которых требуется высокая точность и малые допуски." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Черновой" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Собственный материал" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Своё" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Вход не выполнен" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Поиск места для новых объектов" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Поиск места" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Невозможно разместить все объекты внутри печатаемого объёма" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Не могу найти место" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Не удалось создать архив из каталога с данными пользователя: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Архив материалов для синхронизации с принтерами не создан." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Резервное копирование" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Архив материалов для синхронизации с принтерами не загружен." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "Ответ от Digital Factory поврежден." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Выполнена попытка восстановить резервную копию Cura с более поздней версией, чем текущая." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "В ответе от Digital Factory отсутствует важная информация." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "При попытке восстановить резервную копию Cura произошла следующая ошибка:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Подключение к Digital Factory для синхронизации материалов с некоторыми принтерами не установлено." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Подключение к Digital Factory не установлено." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Загрузка принтеров..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Настройка параметров..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Инициализация активной машины..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Инициализация диспетчера машин..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Инициализация объема печати..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Настройка сцены..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Загрузка интерфейса..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Инициализация ядра..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f мм" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "Высота печатаемого объёма была уменьшена до значения параметра \"Последовательность печати\", чтобы предотвратить касание портала за напечатанные детали." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Объём печати" +msgid "Warning" +msgstr "Внимание" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Невозможно открыть любой другой файл, если G-code файл уже загружен. Пропускаю импортирование {0}" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Ошибка" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Пропустить" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Закрыть" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Следующий" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Завершить" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Добавить" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Отмена" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Группа #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Внешняя стенка" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Внутренние стенки" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Покрытие" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Заполнение" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Заполнение поддержек" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Связующий слой поддержек" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Поддержки" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Юбка" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Черновая башня" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Перемещение" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Откаты" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Другое" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "Невозможно открыть примечания к версии." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Не удалось запустить Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +424,32 @@ msgstr "" "

    Отправьте нам этот отчет о сбое для устранения проблемы.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Отправить отчет о сбое в Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Показать подробный отчет о сбое" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Показать конфигурационный каталог" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Резервное копирование и сброс конфигурации" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Отчёт о сбое" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,676 +460,618 @@ msgstr "" "

    Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Информация о системе" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Неизвестно" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Версия Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Язык Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Язык ОС" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Платформа" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Версия Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Версия PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Еще не инициализировано
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Версия OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Поставщик OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Средство визуализации OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Обратное отслеживание ошибки" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Журналы" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Отправить отчёт" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Загрузка принтеров..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Настройка параметров..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Инициализация активной машины..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Инициализация диспетчера машин..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Инициализация объема печати..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Настройка сцены..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Загрузка интерфейса..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Инициализация ядра..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f мм" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Внимание" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Невозможно открыть любой другой файл, если G-code файл уже загружен. Пропускаю импортирование {0}" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Ошибка" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Размножение и размещение объектов" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Размещение объектов" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Размещение объекта" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Не удалось прочитать ответ." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "Указано неверное состояние." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Дайте необходимые разрешения при авторизации в этом приложении." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Возникла непредвиденная ошибка при попытке входа в систему. Повторите попытку." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Нет связи с сервером учетных записей Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Вход в систему не выполнен" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Указано неверное состояние." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Истекло время аутентификации на сервере учетной записи." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Дайте необходимые разрешения при авторизации в этом приложении." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Возникла непредвиденная ошибка при попытке входа в систему. Повторите попытку." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Не удалось прочитать ответ." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Размножение и размещение объектов" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Размещение объектов" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Размещение объекта" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Не поддерживается" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Сопло" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Настройки обновлены" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Экструдер (-ы) отключен (-ы)" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Файл уже существует" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Файл {0} уже существует. Вы уверены, что желаете перезаписать его?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Неправильный URL-адрес файла:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Невозможно экспортировать профиль в {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Невозможно экспортировать профиль в {0}: Плагин записи уведомил об ошибке." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Экспортирование профиля в {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Экспорт успешно завершен" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Не удалось импортировать профиль из {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Невозможно импортировать профиль из {0}, пока не добавлен принтер." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Отсутствует собственный профиль для импорта в файл {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Данный профиль {0} содержит неверные данные, поэтому его невозможно импортировать." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Профиль {0} успешно импортирован." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "В файле {0} нет подходящих профилей." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Профиль {0} имеет неизвестный тип файла или повреждён." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Собственный профиль" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "У профайла отсутствует тип качества." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Еще нет активных принтеров." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Невозможно добавить профиль." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Внимание! Профиль не отображается, так как его тип качества \"{0}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Не поддерживается" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Сопло" +msgid "Per Model Settings" +msgstr "Параметры модели" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Правка параметров модели" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Профиль Cura" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Файл X3D" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "При попытке восстановления данных из резервной копии возникла ошибка." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Настройки обновлены" +msgid "Backups" +msgstr "Резервные копии" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Экструдер (-ы) отключен (-ы)" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "При заливке вашей резервной копии возникла ошибка." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Добавить" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Создание резервной копии..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Завершить" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "При создании резервной копии возникла ошибка." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Отмена" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Выполняется заливка вашей резервной копии..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Заливка вашей резервной копии завершена." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Размер файла резервной копии превышает максимально допустимый." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Управление резервными копиями" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Параметры принтера" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Блокировщик поддержки" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Создание объема без печати элементов поддержки." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Внешний носитель" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Сохранить на внешний носитель" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Группа #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Сохранить на внешний носитель {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Внешняя стенка" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Ни один из форматов файлов не доступен для записи!" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Внутренние стенки" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Сохранение на внешний носитель {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Покрытие" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Заполнение" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Заполнение поддержек" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Связующий слой поддержек" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Поддержки" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Юбка" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Черновая башня" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Перемещение" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Откаты" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Другое" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Следующий" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Пропустить" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Закрыть" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Помощник по 3D-моделям" +msgid "Saving" +msgstr "Сохранение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Не могу записать {0}: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Не могу найти имя файла при записи в {device}." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

    \n" -"

    {model_names}

    \n" -"

    Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

    \n" -"

    Ознакомиться с руководством по качеству печати

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Невозможно сохранить на внешний носитель {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Сохранено на внешний носитель {0} как {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Файл сохранён" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Извлечь" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Извлекает внешний носитель {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Безопасное извлечение устройства" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Обновить прошивку" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Профили Cura 15.04" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Рекомендованная" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Своя" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Файл проекта {0} содержит неизвестный тип принтера {1}. Не удалось импортировать принтер. Вместо этого будут импортированы модели." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Открыть файл проекта" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Файл проекта {0} внезапно стал недоступен: {1}.." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Невозможно открыть файл проекта" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Файл проекта {0} поврежден: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "Файл проекта {0} создан с использованием профилей, несовместимых с данной версией Ultimaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Рекомендованная" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Своя" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Файл 3MF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Подключаемый модуль для записи 3MF поврежден." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Невозможно записать в файл UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Права на запись рабочей среды отсутствуют." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Операционная система не позволяет сохранять файл проекта в этом каталоге или с этим именем файла." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Ошибка в ходе записи файла 3MF." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF файл" +msgid "Ultimaker Format Package" +msgstr "Пакет формата Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "3MF файл проекта Cura" +msgid "G-code File" +msgstr "Файл G-code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Файл AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Резервные копии" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "При заливке вашей резервной копии возникла ошибка." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Создание резервной копии..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "При создании резервной копии возникла ошибка." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Выполняется заливка вашей резервной копии..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Заливка вашей резервной копии завершена." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Размер файла резервной копии превышает максимально допустимый." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "При попытке восстановления данных из резервной копии возникла ошибка." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Управление резервными копиями" +msgid "Preview" +msgstr "Предварительный просмотр" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Просмотр в рентгене" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Обработка слоёв" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Информация" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Нарезка на слои не выполнена" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Сообщить об ошибке" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Сообщите об ошибке в системе отслеживания проблем Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Невозможно нарезать" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -923,466 +1084,431 @@ msgstr "" "- назначены активированному экструдеру\n" "- не заданы как объекты-модификаторы" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Обработка слоёв" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Информация" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Профиль Cura" +msgid "AMF File" +msgstr "Файл AMF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Не могу получить информацию об обновлениях." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Доступна новая прошивка %s" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Порядок обновления" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Обновить прошивку" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Сжатый файл с G-кодом" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "Средство записи G-кода с расширением GZ (GCodeGzWriter) не поддерживает текстовый режим." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Файл G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Обработка G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Параметры G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Перед отправкой G-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Файл G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "Средство записи G-кода (GCodeWriter) не поддерживает нетекстовый режим." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Подготовьте G-код перед экспортом." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Профили Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Параметры принтера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Монитор" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Параметры модели" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Правка параметров модели" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Пост-обработка" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Изменить G-код" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Печать через USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Печатать через USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Печатать через USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Подключено через USB" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Идет печать" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Подготовка" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Предварительный просмотр" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Сохранить на внешний носитель" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Сохранить на внешний носитель {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Ни один из форматов файлов не доступен для записи!" +msgid "Parsing G-code" +msgstr "Обработка G-code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Сохранение на внешний носитель {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Сохранение" +msgid "G-code Details" +msgstr "Параметры G-code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Не могу записать {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Не могу найти имя файла при записи в {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Невозможно сохранить на внешний носитель {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Сохранено на внешний носитель {0} как {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Файл сохранён" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Извлечь" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Извлекает внешний носитель {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Безопасное извлечение устройства" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Внешний носитель" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "При печати через кабель Cura отображает слои неточно." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Вид моделирования" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Ничего не отображается, поскольку сначала нужно выполнить нарезку на слои." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Нет слоев для отображения" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Больше не показывать это сообщение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Просмотр слоёв" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "Выделены области с отсутствующими или лишними поверхностями. Исправьте модель и снова откройте ее в Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Ошибки модели" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Узнать больше" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Просмотр модели" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Блокировщик поддержки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Создание объема без печати элементов поддержки." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Перед отправкой G-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "В вашей учетной записи Ultimaker обнаружены изменения" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Синхронизация" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Синхронизация..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Отклонить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Принимаю" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Лицензионное соглашение плагина" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Отклонить и удалить из учетной записи" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Для активации изменений вам потребуется завершить работу программного обеспечения {} и перезапустить его." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Встраиваемые модули ({} шт.) не загружены" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "Файл G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" +msgid "JPG Image" +msgstr "JPG изображение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" +msgid "JPEG Image" +msgstr "JPEG изображение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" +msgid "PNG Image" +msgstr "PNG изображение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" +msgid "BMP Image" +msgstr "BMP изображение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Пакет формата Ultimaker" +msgid "GIF Image" +msgstr "GIF изображение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Невозможно записать в файл UFP:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Выравнивание стола" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Выбор обновлений" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "Средство записи G-кода с расширением GZ (GCodeGzWriter) не поддерживает текстовый режим." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Не могу получить информацию об обновлениях." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Доступна новая стабильная прошивка %s" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Порядок обновления" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Невозможно прочитать пример файла данных." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Для активации изменений вам потребуется завершить работу программного обеспечения {} и перезапустить его." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Синхронизация..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "В вашей учетной записи Ultimaker обнаружены изменения" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Синхронизация" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Отклонить и удалить из учетной записи" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Встраиваемые модули ({} шт.) не загружены" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Отклонить" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Принимаю" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Лицензионное соглашение плагина" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "Средство записи G-кода (GCodeWriter) не поддерживает нетекстовый режим." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Подготовьте G-код перед экспортом." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "При печати через кабель Cura отображает слои неточно." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Вид моделирования" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Ничего не отображается, поскольку сначала нужно выполнить нарезку на слои." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Нет слоев для отображения" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Больше не показывать это сообщение" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Просмотр слоёв" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Печать через сеть" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Печать через сеть" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Подключен по сети" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "завтра" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "сегодня" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Подключиться через сеть" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Дождитесь окончания отправки текущего задания." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Ошибка печати" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Задание печати успешно отправлено на принтер." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Данные отправлены" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Вы пытаетесь подключиться к принтеру, на котором не работает Ultimaker Connect. Обновите прошивку принтера до последней версии." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Обновите свой принтер" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "Очередь заданий печати заполнена. Принтер не может принять новое задание." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Очередь заполнена" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Отправка задания печати" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Загрузка задания печати в принтер." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura обнаружены профили материалов, которые пока не установлены в главном принтере группы {0}." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Отправка материалов на принтер" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Облако не залило данные на принтер." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Ошибка сети" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Вы пытаетесь подключиться к {0}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Не главный принтер группы" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Настроить группу" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Ваш принтер {printer_name} может быть подключен через облако.\n" +" Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Вы готовы к облачной печати?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Приступить" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Узнать больше" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Печать через облако" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Печать через облако" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Подключено через облако" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Мониторинг печати" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Отслеживайте печать в Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Неизвестный код ошибки при загрузке задания печати: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "новый принтер обнаружен из учетной записи Ultimaker" -msgstr[1] "новых принтера обнаружено из учетной записи Ultimaker" -msgstr[2] "новых принтеров обнаружено из учетной записи Ultimaker" +msgstr[0] "Новый принтер обнаружен из учетной записи Ultimaker" +msgstr[1] "Новых принтера обнаружено из учетной записи Ultimaker" +msgstr[2] "Новых принтеров обнаружено из учетной записи Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Добавление принтера {name} ({model}) из вашей учетной записи" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1391,12 +1517,12 @@ msgstr[0] "... и еще {0} другой" msgstr[1] "... и еще {0} других" msgstr[2] "... и еще {0} других" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Принтеры, добавленные из Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" @@ -1404,7 +1530,7 @@ msgstr[0] "Подключение к облаку недоступно для п msgstr[1] "Подключение к облаку недоступно для некоторых принтеров" msgstr[2] "Подключение к облаку недоступно для некоторых принтеров" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" @@ -1412,52 +1538,51 @@ msgstr[0] "Это принтер не подключен Digital Factory:" msgstr[1] "Эти принтеры не подключены Digital Factory:" msgstr[2] "Эти принтеры не подключены Digital Factory:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Чтобы установить подключение, перейдите на сайт {website_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Сохранить конфигурации принтера" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Удалить принтеры" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} будет удален до следующей синхронизации учетной записи." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Чтобы удалить {printer_name} без возможности восстановления, перейдите на сайт {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Действительно удалить {printer_name} временно?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Удалить принтеры?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1476,272 +1601,562 @@ msgstr[2] "" "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n" "Продолжить?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Binary" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Compressed COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Отправляйте и отслеживайте задания печати из любого места с помощью вашей учетной записи Ultimaker." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "Выделены области с отсутствующими или лишними поверхностями. Исправьте модель и снова откройте ее в Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Подключение к Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Приступить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Вы пытаетесь подключиться к принтеру, на котором не работает Ultimaker Connect. Обновите прошивку принтера до последней версии." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Обновите свой принтер" +msgid "Model Errors" +msgstr "Ошибки модели" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura обнаружены профили материалов, которые пока не установлены в главном принтере группы {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Отправка материалов на принтер" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Вы пытаетесь подключиться к {0}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Не главный принтер группы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Настроить группу" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Дождитесь окончания отправки текущего задания." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Ошибка печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Облако не залило данные на принтер." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Ошибка сети" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Отправка задания печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Загрузка задания печати в принтер." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "Очередь заданий печати заполнена. Принтер не может принять новое задание." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Очередь заполнена" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Задание печати успешно отправлено на принтер." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Данные отправлены" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Печать через сеть" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Печать через сеть" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Подключен по сети" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Подключиться через сеть" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "завтра" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "сегодня" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Печать через USB" +msgid "Solid view" +msgstr "Просмотр модели" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Печатать через USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Ошибка в ходе записи файла 3MF." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Печатать через USB" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Подключаемый модуль для записи 3MF поврежден." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Нет рабочей среды для записи. Сначала добавьте принтер." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Права на запись рабочей среды отсутствуют." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Операционная система не позволяет сохранять файл проекта в этом каталоге или с этим именем файла." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF файл" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "3MF файл проекта Cura" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Монитор" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Помощник по 3D-моделям" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Подключено через USB" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

    \n" +"

    {model_names}

    \n" +"

    Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

    \n" +"

    Ознакомиться с руководством по качеству печати

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?" +msgid "Mesh Type" +msgstr "Тип объекта" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Нормальная модель" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Идет печать" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Печать в качестве поддержки" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Изменить настройки для перекрытий" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Не поддерживать перекрытия" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Файл X3D" +msgid "Infill mesh only" +msgstr "Заполнение объекта" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Просмотр в рентгене" +msgid "Cutting mesh" +msgstr "Ограничивающий объект" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "С этой печатью могут быть связаны некоторые проблемы. Щелкните для просмотра советов по регулировке." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Выберите параметры" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Выберите параметр для изменения этой модели" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Фильтр..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Показать всё" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Резервные копии Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Версия Cura" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Принтеры" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Материалы" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Профили" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Плагины" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Желаете большего?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Создать резервную копию" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Автоматическое резервное копирование" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Автоматически создавать резервную копию в день запуска Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Восстановить" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Удалить резервную копию" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Вы уверены, что хотите удалить указанную резервную копию? Данное действие невозможно отменить." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Восстановить резервную копию" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Вам потребуется перезапустить Cura, прежде чем данные будут восстановлены из резервной копии. Вы действительно хотите закрыть Cura прямо сейчас?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Резервное копирование и синхронизация ваших параметров Cura." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Войти" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Мои резервные копии" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "В данный момент у вас отсутствуют резервные копии. Для создания резервной копии нажмите кнопку «Создать резервную копию»." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "На этапе предварительного просмотра отображается только 5 резервных копий. Для просмотра предыдущих резервных копий удалите одну копию." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Параметры принтера" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Ширина)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "мм" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Глубина)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Высота)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Форма стола" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Начало координат в центре" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Нагреваемый стол" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Подогреваемый объем печати" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Вариант G-кода" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Параметры головы" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X минимум" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y минимум" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X максимум" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y максимум" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Высота портала" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Количество экструдеров" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Применить смещения экструдера к GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Стартовый G-код" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Завершающий G-код" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Параметры сопла" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Диаметр сопла" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Диаметр совместимого материала" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Смещение сопла по оси X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Смещение сопла по оси Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Номер охлаждающего вентилятора" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Стартовый G-код экструдера" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Завершающий G-код экструдера" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Принтер" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Обновить прошивку" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Прошивка является программным обеспечением, которое работает на плате вашего 3D принтера. Прошивка управляет шаговыми моторами, регулирует температуру и, в конечном счёте, обеспечивает работу вашего принтера." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Автоматическое обновление прошивки" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Залить собственную прошивку" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Невозможно обновить прошивку, так как нет подключения к принтеру." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Выбрать собственную прошивку" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Обновление прошивки" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Обновление прошивки." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Обновление прошивки завершено." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Обновление прошивки не удалось из-за неизвестной ошибки." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Обновление прошивки не удалось из-за ошибки связи." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Обновление прошивки не удалось из-за ошибки ввода-вывода." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Обновление прошивки не удалось из-за её отсутствия." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Открытие проекта" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Обновить существующий" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Создать новый" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Сводка - Проект Cura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Параметры принтера" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Как следует решать конфликт в принтере?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Тип" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Группа принтеров" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Параметры профиля" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Как следует решать конфликт в профиле?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "Название" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Вне профиля" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -1749,12 +2164,12 @@ msgstr[0] "%1 перекрыт" msgstr[1] "%1 перекрыто" msgstr[2] "%1 перекрыто" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Производное от" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" @@ -1762,484 +2177,1012 @@ msgstr[0] "%1, %2 перекрыто" msgstr[1] "%1, %2 перекрыто" msgstr[2] "%1, %2 перекрыто" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Параметры материала" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Как следует решать конфликт в материале?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Видимость параметров" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Режим" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Видимые параметры:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 из %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Загрузка проекта приведет к удалению всех моделей на рабочем столе." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Открыть" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Желаете большего?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Создать резервную копию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Автоматическое резервное копирование" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Автоматически создавать резервную копию в день запуска Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Восстановить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Удалить резервную копию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Вы уверены, что хотите удалить указанную резервную копию? Данное действие невозможно отменить." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Восстановить резервную копию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Вам потребуется перезапустить Cura, прежде чем данные будут восстановлены из резервной копии. Вы действительно хотите закрыть Cura прямо сейчас?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Версия Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Профили" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Плагины" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Резервные копии Cura" +msgid "Post Processing Plugin" +msgstr "Плагин пост-обработки" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Мои резервные копии" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "В данный момент у вас отсутствуют резервные копии. Для создания резервной копии нажмите кнопку «Создать резервную копию»." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "На этапе предварительного просмотра отображается только 5 резервных копий. Для просмотра предыдущих резервных копий удалите одну копию." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Резервное копирование и синхронизация ваших параметров Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Войти" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Обновить прошивку" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Прошивка является программным обеспечением, которое работает на плате вашего 3D принтера. Прошивка управляет шаговыми моторами, регулирует температуру и, в конечном счёте, обеспечивает работу вашего принтера." +msgid "Post Processing Scripts" +msgstr "Скрипты пост-обработки" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Добавить скрипт" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований." +msgid "Settings" +msgstr "Параметры" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Автоматическое обновление прошивки" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Измените активные скрипты пост-обработки." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Залить собственную прошивку" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Активны следующие скрипты:" +msgstr[1] "Активны следующие скрипты:" +msgstr[2] "Активны следующие скрипты:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Невозможно обновить прошивку, так как нет подключения к принтеру." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Выбрать собственную прошивку" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Обновление прошивки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Обновление прошивки." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Обновление прошивки завершено." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Обновление прошивки не удалось из-за неизвестной ошибки." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Обновление прошивки не удалось из-за ошибки связи." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Обновление прошивки не удалось из-за ошибки ввода-вывода." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Обновление прошивки не удалось из-за её отсутствия." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Преобразование изображения..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "Максимальная дистанция каждого пикселя от \"Основания.\"" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Высота (мм)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Высота основания от стола в миллиметрах." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Основание (мм)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "Ширина в миллиметрах на столе." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Ширина (мм)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "Глубина в миллиметрах на столе" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Глубина (мм)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Для литофании темные пиксели должны соответствовать более толстым частям, чтобы сильнее задерживать проходящий свет. Для схем высот более светлые пиксели обозначают более высокий участок. Поэтому более светлые пиксели должны соответствовать более толстым местам в созданной 3D-модели." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Тёмные выше" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Светлые выше" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Для литофании предусмотрена простая логарифмическая модель светопроходимости. В картах высот значения пикселей линейно соответствуют высотам." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Линейный" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Светопроходимость" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "Процент света, проникающего в отпечаток толщиной 1 миллиметр. Если уменьшить это значение, контрастность в темных областях изображения увеличится, а в светлых — уменьшится." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Проходимость через 1 мм (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "Величина сглаживания для применения к изображению." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Сглаживание" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Пожалуйста, укажите любые изменения, внесённые в Ultimaker Original" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Нагреваемый стол (официальный набор или самодельный)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Выравнивание стола" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Сейчас вы можете отрегулировать ваш стол, чтобы быть уверенным в качестве последующей печати. При нажатии на кнопку «Перейти к следующей позиции» сопло перейдёт на другую позиции, которую можно будет отрегулировать." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Для каждой позиции, вставьте кусок бумаги под сопло и отрегулируйте высоту стола. Когда кончик сопла немного прижимает бумагу к столу, значит вы выставили правильную высоту стола." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Начало выравнивания стола" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Перейти к следующей позиции" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Дополнительная информация о сборе анонимных данных" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем. Ниже приведен пример всех передаваемых данных:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Не хочу отправлять анонимные данные" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Разрешить отправку анонимных данных" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Магазин" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Вам потребуется перезапустить Cura для активации изменений в пакетах." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Выйти из %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Установить" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Установлено" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Премиум" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Перейти в интернет-магазин" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Поиск материалов" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Совместимость" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" msgstr "Принтер" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Параметры сопла" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Рабочий стол" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Поддержки" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Качество" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Таблица технических характеристик" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Паспорт безопасности" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Инструкции по печати" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Веб-сайт" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Для выполнения установки или обновления необходимо войти" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Приобретение катушек с материалом" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Обновить" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Обновление" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Обновлено" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Назад" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +msgctxt "@title:tab" +msgid "Plugins" +msgstr "Плагины" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Материалы" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Установлено" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Диаметр сопла" +msgid "Will install upon restarting" +msgstr "Установка выполнится при перезагрузке" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Для выполнения обновления необходимо войти" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Переход на более раннюю версию" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Удалить" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "мм" +msgid "Community Contributions" +msgstr "Вклад в развитие сообщества" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Диаметр совместимого материала" +msgid "Community Plugins" +msgstr "Плагины сообщества" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Смещение сопла по оси X" +msgid "Generic Materials" +msgstr "Универсальные материалы" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Выборка пакетов..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Смещение сопла по оси Y" +msgid "Website" +msgstr "Веб-сайт" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Номер охлаждающего вентилятора" +msgid "Email" +msgstr "Электронная почта" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Стартовый G-код экструдера" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для Ultimaker Cura Enterprise" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Завершающий G-код экструдера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Параметры принтера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (Ширина)" +msgid "Version" +msgstr "Версия" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Глубина)" +msgid "Last updated" +msgstr "Последнее обновление" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Высота)" +msgid "Brand" +msgstr "Брэнд" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Форма стола" +msgid "Downloads" +msgstr "Загрузки" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Установленные встраиваемые модули" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Встраиваемые модули не установлены." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Установленные материалы" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Материалы не установлены." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Связанные встраиваемые модули" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Связанные материалы" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Не удалось подключиться к базе данных пакета Cura. Проверьте свое подключение." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Начало координат в центре" +msgid "You need to accept the license to install the package" +msgstr "Для установки пакета необходимо принять лицензию" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Изменения в вашей учетной записи" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Отклонить" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Следующий" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Нагреваемый стол" +msgid "The following packages will be added:" +msgstr "Будут добавлены следующие пакеты:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Подогреваемый объем печати" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Следующие пакеты невозможно установить из-за несовместимой версии Cura:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Подтвердить удаление" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Вы удаляете материалы и/или профили, которые все еще используются. Подтверждение приведет к сбросу указанных ниже материалов/профилей к их настройкам по умолчанию." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Материалы" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Профили" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Подтвердить" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "Вариант G-кода" +msgid "Color scheme" +msgstr "Цветовая схема" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Параметры головы" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Цвет материала" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Тип линии" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Скорость" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Толщина слоя" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Ширина линии" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Поток" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X минимум" +msgid "Compatibility Mode" +msgstr "Режим совместимости" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y минимум" +msgid "Travels" +msgstr "Перемещения" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X максимум" +msgid "Helpers" +msgstr "Помощники" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y максимум" +msgid "Shell" +msgstr "Ограждение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Высота портала" +msgid "Infill" +msgstr "Заполнение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Количество экструдеров" +msgid "Starts" +msgstr "Запуск" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Применить смещения экструдера к GCode" +msgid "Only Show Top Layers" +msgstr "Показать только верхние слои" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Стартовый G-код" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Показать 5 детализированных слоёв сверху" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Завершающий G-код" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Дно / крышка" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Внутренняя стенка" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "мин" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "макс" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Управление принтером" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Стекло" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Для удаленного управления очередью необходимо обновить программное обеспечение принтера." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Каналы веб-камеры для облачных принтеров невозможно просмотреть из Ultimaker Cura. Щелкните «Управление принтером», чтобы просмотреть эту веб-камеру на сайте Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Загрузка..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Недоступен" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Недостижимо" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Простой" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Подготовка..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Печать" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Без имени" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Анонимн" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Необходимо внести изменения конфигурации" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Подробности" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Недоступный принтер" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "Первое доступное" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Запланировано" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Управление через браузер" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "В очереди нет заданий печати. Выполните нарезку и отправьте задание." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Задания печати" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Общее время печати" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Ожидание" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Печать через сеть" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Печать" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Выбор принтера" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Изменения конфигурации" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Переопределить" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Для назначенного принтера %1 требуется следующее изменение конфигурации:" +msgstr[1] "Для назначенного принтера %1 требуются следующие изменения конфигурации:" +msgstr[2] "Для назначенного принтера %1 требуются следующие изменения конфигурации:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Принтер %1 назначен, однако в задании указана неизвестная конфигурация материала." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Изменить материал %1 с %2 на %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Загрузите %3 как материал %1 (переопределение этого действия невозможно)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Изменить экструдер %1 с %2 на %3." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Заменить рабочий стол на %1 (переопределение этого действия невозможно)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Алюминий" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Завершено" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Прерывается..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Прервано" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Сбой" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Приостановка..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Приостановлено" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Возобновляется..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Необходимое действие" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Завершение %1 в %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Подключение к сетевому принтеру" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Выберите свой принтер из приведенного ниже списка:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Правка" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Удалить" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Обновить" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Тип" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Версия прошивки" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Адрес" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Данный принтер не настроен для управления группой принтеров." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Данный принтер управляет группой из %1 принтера (-ов)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Принтер по этому адресу ещё не отвечал." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Подключить" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Недействительный IP-адрес" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Введите действительный IP-адрес." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Адрес принтера" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Введите IP-адрес принтера в сети." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "Переместить в начало" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Удалить" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Продолжить" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Приостановка..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Возобновляется..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Пауза" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "Прерывается..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Прервать" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Вы уверены, что хотите переместить %1 в начало очереди?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Переместить задание печати в начало очереди" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Вы уверены, что хотите удалить %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Удалить задание печати" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Вы уверены, что хотите прервать %1?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Прервать печать" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2252,1415 +3195,429 @@ msgstr "" "- Убедитесь, что принтер подключен к сети.\n" "- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Подключите принтер к сети." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Просмотр руководств пользователей онлайн" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Чтобы отслеживать задания печати при помощи Cura, подключите принтер." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Тип объекта" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Нормальная модель" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Печать в качестве поддержки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Изменить настройки для перекрытий" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Не поддерживать перекрытия" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Заполнение объекта" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Ограничивающий объект" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Выберите параметры" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Выберите параметр для изменения этой модели" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Фильтр..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Показать всё" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Плагин пост-обработки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Скрипты пост-обработки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Добавить скрипт" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Параметры" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Измените активные скрипты пост-обработки." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "С этой печатью могут быть связаны некоторые проблемы. Щелкните для просмотра советов по регулировке." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Активны следующие скрипты:" -msgstr[1] "Активны следующие скрипты:" -msgstr[2] "Активны следующие скрипты:" +msgid "3D View" +msgstr "Трехмерный вид" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Цветовая схема" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Цвет материала" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Тип линии" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Скорость" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Толщина слоя" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Ширина линии" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Поток" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Режим совместимости" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Перемещения" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Помощники" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Ограждение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Заполнение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Запуск" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Показать только верхние слои" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Показать 5 детализированных слоёв сверху" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Дно / крышка" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Внутренняя стенка" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "мин." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "макс." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Дополнительная информация о сборе анонимных данных" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем. Ниже приведен пример всех передаваемых данных:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Не хочу отправлять анонимные данные" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Разрешить отправку анонимных данных" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Назад" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Совместимость" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Принтер" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Рабочий стол" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Поддержки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Качество" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Таблица технических характеристик" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Паспорт безопасности" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Инструкции по печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Веб-сайт" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Установлено" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Для выполнения установки или обновления необходимо войти" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Приобретение катушек с материалом" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Обновить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Обновление" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Обновлено" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Премиум" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Перейти в интернет-магазин" +msgid "Front View" +msgstr "Вид спереди" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Вид сверху" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Вид слева" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Вид справа" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Поиск материалов" +msgid "Object list" +msgstr "Список объектов" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Вам потребуется перезапустить Cura для активации изменений в пакетах." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Выйти из %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Плагины" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Установлено" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Установка выполнится при перезагрузке" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Для выполнения обновления необходимо войти" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Переход на более раннюю версию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Удалить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Установить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Изменения в вашей учетной записи" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Отклонить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Следующий" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Будут добавлены следующие пакеты:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Следующие пакеты невозможно установить из-за несовместимой версии Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Подтвердить удаление" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Вы удаляете материалы и/или профили, которые все еще используются. Подтверждение приведет к сбросу указанных ниже материалов/профилей к их настройкам по умолчанию." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Профили" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Подтвердить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Для установки пакета необходимо принять лицензию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Веб-сайт" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "Электронная почта" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Версия" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Последнее обновление" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Брэнд" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Загрузки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Вклад в развитие сообщества" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Плагины сообщества" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Универсальные материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Не удалось подключиться к базе данных пакета Cura. Проверьте свое подключение." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Установленные встраиваемые модули" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Встраиваемые модули не установлены." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Установленные материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Материалы не установлены." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Связанные встраиваемые модули" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Связанные материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Выборка пакетов..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для Ultimaker Cura Enterprise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Магазин" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Выравнивание стола" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "Файл" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Сейчас вы можете отрегулировать ваш стол, чтобы быть уверенным в качестве последующей печати. При нажатии на кнопку «Перейти к следующей позиции» сопло перейдёт на другую позиции, которую можно будет отрегулировать." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Для каждой позиции, вставьте кусок бумаги под сопло и отрегулируйте высоту стола. Когда кончик сопла немного прижимает бумагу к столу, значит вы выставили правильную высоту стола." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Начало выравнивания стола" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Перейти к следующей позиции" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Пожалуйста, укажите любые изменения, внесённые в Ultimaker Original" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Нагреваемый стол (официальный набор или самодельный)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Подключение к сетевому принтеру" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Выберите свой принтер из приведенного ниже списка:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" msgstr "Правка" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Удалить" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "Вид" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Обновить" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Параметры" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Расширения" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Тип" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Настройки" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Версия прошивки" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "Справка" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Адрес" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Данный принтер не настроен для управления группой принтеров." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Данный принтер управляет группой из %1 принтера (-ов)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Принтер по этому адресу ещё не отвечал." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Подключить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Недействительный IP-адрес" +msgid "New project" +msgstr "Новый проект" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Введите действительный IP-адрес." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Вы действительно желаете начать новый проект? Это действие очистит область печати и сбросит все несохранённые настройки." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Адрес принтера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Введите IP-адрес принтера в сети." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Изменения конфигурации" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Переопределить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Для назначенного принтера %1 требуется следующее изменение конфигурации:" -msgstr[1] "Для назначенного принтера %1 требуются следующие изменения конфигурации:" -msgstr[2] "Для назначенного принтера %1 требуются следующие изменения конфигурации:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Принтер %1 назначен, однако в задании указана неизвестная конфигурация материала." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Изменить материал %1 с %2 на %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Загрузите %3 как материал %1 (переопределение этого действия невозможно)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Изменить экструдер %1 с %2 на %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Заменить рабочий стол на %1 (переопределение этого действия невозможно)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Стекло" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Алюминий" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Переместить в начало" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Удалить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Продолжить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Приостановка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Возобновляется..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Пауза" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Прерывается..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Прервать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Вы уверены, что хотите переместить %1 в начало очереди?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Переместить задание печати в начало очереди" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Вы уверены, что хотите удалить %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Удалить задание печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Вы уверены, что хотите прервать %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Прервать печать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Управление принтером" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Для удаленного управления очередью необходимо обновить программное обеспечение принтера." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Загрузка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Недоступен" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Недостижимо" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Простой" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Подготовка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Печать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Без имени" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Анонимн" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Необходимо внести изменения конфигурации" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Подробности" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Недоступный принтер" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Первое доступное" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Прервано" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Завершено" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Прерывается..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Приостановка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Приостановлено" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Возобновляется..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Необходимое действие" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Завершение %1 в %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Запланировано" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Управление через браузер" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "В очереди нет заданий печати. Выполните нарезку и отправьте задание." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Задания печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Общее время печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Ожидание" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Печать через сеть" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Печать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Выбор принтера" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Войти" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Войдите на платформу Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Добавляйте настройки материалов и плагины из Marketplace \n" -" - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n" -" - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Создайте бесплатную учетную запись Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Проверка..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Учетная запись синхронизирована" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Что-то пошло не так..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Установить ожидающие обновления" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Проверить наличие обновлений учетной записи" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Последнее обновление: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Учетная запись Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Выйти" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Оценка времени недоступна" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Оценка расходов недоступна" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Предварительный просмотр" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Оценка времени" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Оценка материала" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 м" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 г" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Нарезка на слои..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Невозможно нарезать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "Обработка" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Нарезка на слои" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Запустить нарезку на слои" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "Отмена" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Показать онлайн-руководство по решению проблем" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Полный экран" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Выйти из полноэкранного режима" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Отмена" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "Возврат" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "Выход" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Трехмерный вид" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Вид спереди" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Вид сверху" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Вид снизу" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Вид слева" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Вид справа" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Настроить Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "Добавить принтер..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Управление принтерами..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Управление материалами..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Добавить больше материалов из Магазина" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "Обновить профиль текущими параметрами" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "Сбросить текущие параметры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "Создать профиль из текущих параметров..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Управление профилями..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Показать онлайн документацию" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Отправить отчёт об ошибке" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Что нового" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "О Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Удалить выбранное" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Центрировать выбранное" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Размножить выбранное" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Удалить модель" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Поместить модель по центру" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "Сгруппировать модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Разгруппировать модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Объединить модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "Дублировать модель..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Выбрать все модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Очистить стол" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Перезагрузить все модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Выровнять все модели по всем рабочим столам" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Выровнять все модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Выровнять выбранные" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Сбросить позиции всех моделей" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Сбросить преобразования всех моделей" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Открыть файл(ы)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "Новый проект..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Показать конфигурационный каталог" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Видимость параметров..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Магазин" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Этот пакет будет установлен после перезапуска." +msgid "Time estimation" +msgstr "Оценка времени" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Общее" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Оценка материала" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Параметры" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 м" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Принтеры" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 г" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Профили" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Оценка времени недоступна" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Закрытие %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Оценка расходов недоступна" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Вы уверены, что хотите выйти из %1?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Предварительный просмотр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Открыть файл(ы)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "Добавить принтер" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Установить пакет" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Добавить сетевой принтер" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Открыть файл(ы)" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Добавить принтер, не подключенный к сети" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Среди выбранных файлов мы нашли несколько файлов с G-кодом. Вы можете открыть только один файл за раз. Измените свой выбор, пожалуйста." +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Добавить облачный принтер" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Добавление принтера" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Ожидается ответ от облака" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "В учетной записи нет принтеров?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "Следующие принтеры в вашей учетной записи добавлены в Cura:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Добавить принтер вручную" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Добавить принтер по IP-адресу" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Введите IP-адрес своего принтера." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Добавить" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Не удалось подключиться к устройству." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Не удается подключиться к принтеру Ultimaker?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "От принтера с этим адресом еще не поступал ответ." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Назад" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Подключить" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Пользовательское соглашение" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Отклонить и закрыть" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Приветствуем в Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"Выполните указанные ниже действия для настройки\n" +"Ultimaker Cura. Это займет немного времени." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Приступить" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Войдите на платформу Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Добавляйте настройки материалов и плагины из Marketplace" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Пропустить" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Создайте бесплатную учетную запись Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Производитель" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Автор профиля" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Имя принтера" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Присвойте имя принтеру" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "В вашей сети не найден принтер." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Обновить" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Добавить принтер по IP-адресу" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Добавить облачный принтер" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Поиск и устранение неисправностей" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Помогите нам улучшить Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем, включая перечисленные ниже:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Типы принтера" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Использование материала" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Количество слоев" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Параметры печати" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Данные, собранные Ultimaker Cura, не содержат каких-либо персональных данных." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Дополнительная информация" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "Что нового" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Пусто" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Примечания к выпуску" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "О программе %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "версия: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Полное решение для 3D печати методом наплавления материала." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3669,183 +3626,202 @@ msgstr "" "Cura разработана компанией Ultimaker B.V. совместно с сообществом.\n" "Cura использует следующие проекты с открытым исходным кодом:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Графический интерфейс пользователя" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Фреймворк приложения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "Генератор G-кода" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "Библиотека межпроцессного взаимодействия" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Язык программирования" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "Фреймворк GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "Фреймворк GUI, интерфейс" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C/C++ библиотека интерфейса" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Формат обмена данными" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Вспомогательная библиотека для научных вычислений" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Вспомогательная библиотека для быстрых расчётов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "Вспомогательная библиотека для работы с STL файлами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Вспомогательная библиотека для работы с плоскими объектами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Вспомогательная библиотека для работы с треугольными сетками" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "Вспомогательная библиотека для работы с 3MF файлами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Вспомогательная библиотека для метаданных файла и потоковой передачи" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Библиотека последовательного интерфейса" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "Библиотека ZeroConf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Библиотека обрезки полигонов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Средство проверки статического типа для Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "Корневые сертификаты для проверки надежности SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Библиотека отслеживания ошибок Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Библиотека упаковки полигонов, разработанная Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Интерфейс Python для libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Вспомогательная библиотека для доступа к набору ключей системы" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Расширения Python для Microsoft Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Шрифт" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "Иконки SVG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Развертывание приложений для различных дистрибутивов Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Открыть файл проекта" +msgid "Open file(s)" +msgstr "Открыть файл(ы)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Это проект Cura. Следует открыть его как проект или просто импортировать из него модели?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Мы нашли один или более проектных файлов среди выбранных вами. Вы можете открыть только один файл проекта. Мы предлагаем импортировать только модели их этих файлов. Желаете продолжить?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Запомнить мой выбор" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Открыть как проект" +msgid "Import all as models" +msgstr "Импортировать всё как модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Сохранить проект" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Экструдер %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 и материал" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Материал" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Больше не показывать сводку по проекту" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Импортировать модели" +msgid "Save" +msgstr "Сохранить" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Сбросить или сохранить изменения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3856,1210 +3832,142 @@ msgstr "" "Сохранить измененные настройки после переключения профилей?\n" "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Параметры профиля" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Текущие изменения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Всегда спрашивать меня" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Сбросить и никогда больше не спрашивать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Сохранить и никогда больше не спрашивать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Отменить изменения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Сохранить изменения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Открыть файл проекта" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Мы нашли один или более проектных файлов среди выбранных вами. Вы можете открыть только один файл проекта. Мы предлагаем импортировать только модели их этих файлов. Желаете продолжить?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Это проект Cura. Следует открыть его как проект или просто импортировать из него модели?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Запомнить мой выбор" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Импортировать всё как модели" +msgid "Open as project" +msgstr "Открыть как проект" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Сохранить проект" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Экструдер %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 и материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Больше не показывать сводку по проекту" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Сохранить" +msgid "Import models" +msgstr "Импортировать модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Печатать выбранную модель с %1" -msgstr[1] "Печатать выбранные модели с %1" -msgstr[2] "Печатать выбранные модели с %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Без имени" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Файл" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "Правка" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "Вид" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Параметры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Расширения" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Настройки" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Справка" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Новый проект" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Вы действительно желаете начать новый проект? Это действие очистит область печати и сбросит все несохранённые настройки." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Магазин" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Конфигурации" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Данная конфигурация недоступна, поскольку %1 не распознан. Посетите %2 и загрузите подходящий профиль материала." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Магазин" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Загрузка доступных конфигураций из принтера..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Конфигурации недоступны, поскольку принтер отключен." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Выберите конфигурации" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Конфигурации" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Свое" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Включено" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Печать выбранной модели:" -msgstr[1] "Печать выбранных моделей:" -msgstr[2] "Печать выбранных моделей:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Размножить выбранную модель" -msgstr[1] "Размножить выбранные модели" -msgstr[2] "Размножить выбранные модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Количество копий" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Сохранить проект..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Экспорт..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Экспорт выбранного..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Избранные" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Универсальные" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Открыть файл(ы)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Подключенные к сети принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Локальные принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Открыть недавние" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Сохранить проект..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "Материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Установить как активный экструдер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Включить экструдер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Отключить экструдер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Видимые параметры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Свернуть все категории" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Управление видимостью настроек..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Положение камеры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Вид камеры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Перспективная" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ортографическая" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "Рабочий стол" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Не подключен к принтеру" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Принтер не принимает команды" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "В режиме обслуживания. Пожалуйста, проверьте принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Потеряно соединение с принтером" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Печать..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Приостановлен" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Подготовка..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Пожалуйста, удалите напечатанное" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Прервать печать" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Вы уверены, что желаете прервать печать?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Печатается как поддержка." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Другие модели, имеющие перекрытия с этой моделью, изменены." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Изменено заполнение перекрытия с этой моделью." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Перекрытия с этой моделью не поддерживаются." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Переопределяет %1 настройку." -msgstr[1] "Переопределяет %1 настройки." -msgstr[2] "Переопределяет %1 настроек." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Список объектов" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Интерфейс" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Валюта:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Тема:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Для применения данных изменений вам потребуется перезапустить приложение." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Нарезать автоматически при изменении настроек." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Нарезать автоматически" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Поведение окна" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Подсвечивать красным области модели, требующие поддержек. Без поддержек эти области не будут напечатаны правильно." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Отобразить нависания" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Отметьте отсутствующие или лишние поверхности модели с помощью предупреждающих знаков. В путях инструментов часто будут отсутствовать детали предполагаемой геометрии." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Показывать ошибки модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Перемещать камеру так, чтобы выбранная модель помещалась в центр экрана" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Центрировать камеру на выбранном объекте" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Следует ли инвертировать стандартный способ увеличения в Cura?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Инвертировать направление увеличения камеры." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Увеличивать по мере движения мышкой?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Увеличивать по движению мышки" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Следует ли размещать модели на столе так, чтобы они больше не пересекались?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Удостовериться, что модели размещены рядом" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Следует ли опустить модели на стол?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Автоматически опускать модели на стол" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Показывать предупреждающее сообщение в средстве считывания G-кода." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Предупреждающее сообщение в средстве считывания G-кода" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Должен ли слой быть переведён в режим совместимости?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Открыть Cura на том месте, где вы остановились в прошлый раз?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Восстановить положение окна при запуске" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Рендеринг камеры какого типа следует использовать?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Рендеринг камеры:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Перспективная" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Ортографическая" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Открытие и сохранение файлов" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Использовать один экземпляр Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Масштабировать ли модели для размещения внутри печатаемого объёма, если они не влезают в него?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Масштабировать большие модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Модель может показаться очень маленькой, если её размерность задана в метрах, а не миллиметрах. Следует ли масштабировать такие модели?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Масштабировать очень маленькие модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Выбрать модели после их загрузки?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Выбрать модели при загрузке" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Надо ли автоматически добавлять префикс, основанный на имени принтера, к названию задачи на печать?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Добавить префикс принтера к имени задачи" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Показывать сводку при сохранении файла проекта?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Показывать сводку при сохранении проекта" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Стандартное поведение при открытии файла проекта" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Стандартное поведение при открытии файла проекта: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Всегда спрашивать меня" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Всегда открывать как проект" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Всегда импортировать модели" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "При внесении изменений в профиль и переключении на другой, будет показан диалог, запрашивающий ваше решение о сохранении ваших изменений, или вы можете указать стандартное поведение и не показывать такой диалог." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Профили" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Всегда сбрасывать измененные настройки" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Всегда передавать измененные настройки новому профилю" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Приватность" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Должна ли Cura проверять обновления программы при старте?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Проверять обновления при старте" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Можно ли отправлять анонимную информацию о вашей печати в Ultimaker? Следует отметить, что ни модели, ни IP-адреса и никакая другая персональная информация не будет отправлена или сохранена." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Отправлять (анонимно) информацию о печати" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Дополнительная информация" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Активировать" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Переименовать" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Создать" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Дублировать" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "Импорт" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Экспорт" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Синхронизация с принтерами" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Подтвердите удаление" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Импортировать материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Не могу импортировать материал %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Успешно импортированный материал %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Экспортировать материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Не могу экспортировать материал %1: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Материал успешно экспортирован в %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Экспорт всех материалов" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Информация" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Подтвердить изменение диаметра" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Установлен новый диаметр пластиковой нити %1 мм. Это значение несовместимо с текущим экструдером. Продолжить?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Отображаемое имя" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Тип материала" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Цвет" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Свойства" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Плотность" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Диаметр" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Стоимость материала" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Вес материала" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Длина материала" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Стоимость метра" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Данный материал привязан к %1 и имеет ряд его свойств." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Отвязать материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Описание" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Информация об адгезии" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Параметры печати" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Создать" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Дублировать" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Создать профиль" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Укажите имя для данного профиля." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Скопировать профиль" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Переименовать профиль" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Импорт профиля" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Экспорт профиля" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Принтер: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Обновить профиль текущими параметрами" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Сбросить текущие параметры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Данный профиль использует настройки принтера по умолчанию, поэтому список ниже пуст." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Ваши текущие параметры совпадают с выбранным профилем." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Общие параметры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Вычислено" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Параметр" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Профиль" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Текущий" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Единица" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Видимость параметров" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Выбрать все" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Экструдер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Целевая температура сопла. Сопло будет нагрето или остужено до указанной температуры. Если значение равно 0, то нагрев будет отключен." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Текущая температура данного сопла." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Температура предварительного нагрева сопла." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Отмена" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Преднагрев" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Нагрев сопла перед печатью. Можно продолжать настройки вашей печати во время нагрева, и вам не понадобится ждать нагрева сопла, когда вы будете готовы приступить к печати." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Цвет материала в данном экструдере." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Материал в данном экструдере." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Сопло, вставленное в данный экструдер." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Рабочий стол" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "Целевая температура горячего стола. Стол будет нагреваться и охлаждаться, оставаясь на этой температуре. Если установлена в 0, значит нагрев стола отключен." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Текущая температура горячего стола." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Температура преднагрева горячего стола." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Нагрев горячего стола перед печатью. Вы можете продолжать настройки вашей печати, пока стол нагревается, и вам не понадобится ждать нагрева стола для старта печати." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Управление принтером" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Положение толчковой подачи" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Расстояние толчковой подачи" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Отправить G-код" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Отправить свою команду в G-коде подключенному принтеру. Нажмите Enter (Ввод) для отправки команды." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Принтер не подключен." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "Облачный принтер не в сети. Убедитесь, что принтер включен и подключен к Интернету." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Этот принтер не связан с вашей учетной записью. Посетите сайт Ultimaker Digital Factory, чтобы установить привязку." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "В настоящий момент нет подключения к облаку. Для подключения к облачному принтеру выполните вход." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "В настоящий момент нет подключения к облаку. Проверьте подключение к Интернету." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Добавить принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Управление принтерами" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Подключенные принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Предварительно настроенные принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Идёт печать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "Имя задачи" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Время печати" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Осталось примерно" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "Облачный принтер не в сети. Убедитесь, что принтер включен и подключен к Интернету." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Этот принтер не связан с вашей учетной записью. Посетите сайт Ultimaker Digital Factory, чтобы установить привязку." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "В настоящий момент нет подключения к облаку. Для подключения к облачному принтеру выполните вход." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "В настоящий момент нет подключения к облаку. Проверьте подключение к Интернету." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Добавить принтер" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Управление принтерами" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Подключенные принтеры" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Предварительно настроенные принтеры" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Параметры печати" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Профиль" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5070,12 +3978,42 @@ msgstr "" "\n" "Нажмите для открытия менеджера профилей." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Собственные профили" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Сбросить текущие параметры" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Рекомендован" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Свое" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Вкл" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Выкл" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Экспериментальное" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" @@ -5083,108 +4021,1643 @@ msgstr[0] "Нет %1 профиля для конфигураций в экст msgstr[1] "Нет %1 профилей для конфигураций в экструдерах %2. Вместо этого будет использоваться функция по умолчанию" msgstr[2] "Нет %1 профилей для конфигураций в экструдерах %2. Вместо этого будет использоваться функция по умолчанию" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Рекомендован" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Свое" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Вкл" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Выкл" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Экспериментальное" +msgid "Profiles" +msgstr "Профили" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Прилипание" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Разрешает печать каймы или подложки. Это добавляет плоскую область вокруг или под вашим объектом, которую легко удалить после печати." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Постепенное заполнение" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Постепенное заполнение будет постепенно увеличивать объём заполнения по направлению вверх." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "В некоторые настройки профиля были внесены изменения. Если их необходимо изменить, перейдите в пользовательский режим." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Поддержки" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n" -"\n" -"Щёлкните, чтобы сделать эти параметры видимыми." +msgid "Gradual infill" +msgstr "Постепенное заполнение" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Постепенное заполнение будет постепенно увеличивать объём заполнения по направлению вверх." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Прилипание" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Разрешает печать каймы или подложки. Это добавляет плоскую область вокруг или под вашим объектом, которую легко удалить после печати." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Сохранить проект..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Подключенные к сети принтеры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Локальные принтеры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Материал" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Избранные" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Универсальные" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Печать выбранной модели:" +msgstr[1] "Печать выбранных моделей:" +msgstr[2] "Печать выбранных моделей:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Размножить выбранную модель" +msgstr[1] "Размножить выбранные модели" +msgstr[2] "Размножить выбранные модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Количество копий" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Сохранить проект..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Экспорт..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Экспорт выбранного..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Конфигурации" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Свое" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Принтер" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Включено" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Материал" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "Конфигурация этого экструдера не разрешается и запрещает нарезку на слои." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Нет профилей, соответствующих конфигурации этого экструдера." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Выберите конфигурации" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Конфигурации" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Загрузка доступных конфигураций из принтера..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "Конфигурации недоступны, поскольку принтер отключен." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Данная конфигурация недоступна, поскольку %1 не распознан. Посетите %2 и загрузите подходящий профиль материала." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Магазин" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Открыть файл(ы)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "Принтер" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "Материал" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Установить как активный экструдер" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Включить экструдер" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Отключить экструдер" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Открыть недавние" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Видимые параметры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Свернуть все категории" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Управление видимостью настроек..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Положение камеры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Вид камеры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Перспективная" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ортографическая" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "Рабочий стол" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Просмотр типа" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Печатается как поддержка." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Другие модели, имеющие перекрытия с этой моделью, изменены." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Изменено заполнение перекрытия с этой моделью." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Перекрытия с этой моделью не поддерживаются." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Переопределяет %1 настройку." +msgstr[1] "Переопределяет %1 настройки." +msgstr[2] "Переопределяет %1 настроек." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Профили" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Активировать" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Создать" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Дублировать" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Переименовать" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "Импорт" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Экспорт" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Создать профиль" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Укажите имя для данного профиля." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Скопировать профиль" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Подтвердите удаление" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Переименовать профиль" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Импорт профиля" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Экспорт профиля" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Принтер: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Обновить профиль текущими параметрами" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Данный профиль использует настройки принтера по умолчанию, поэтому список ниже пуст." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Ваши текущие параметры совпадают с выбранным профилем." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Общие параметры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Общее" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Интерфейс" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Валюта:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Тема:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Для применения данных изменений вам потребуется перезапустить приложение." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Нарезать автоматически при изменении настроек." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Нарезать автоматически" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Поведение окна" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Подсвечивать красным области модели, требующие поддержек. Без поддержек эти области не будут напечатаны правильно." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Отобразить нависания" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Отметьте отсутствующие или лишние поверхности модели с помощью предупреждающих знаков. В путях инструментов часто будут отсутствовать детали предполагаемой геометрии." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Показывать ошибки модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Перемещать камеру так, чтобы выбранная модель помещалась в центр экрана" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Центрировать камеру на выбранном объекте" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Следует ли инвертировать стандартный способ увеличения в Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Инвертировать направление увеличения камеры." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Увеличивать по мере движения мышкой?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Увеличивать по движению мышки" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Следует ли размещать модели на столе так, чтобы они больше не пересекались?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Удостовериться, что модели размещены рядом" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Следует ли опустить модели на стол?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Автоматически опускать модели на стол" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Показывать предупреждающее сообщение в средстве считывания G-кода." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Предупреждающее сообщение в средстве считывания G-кода" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Должен ли слой быть переведён в режим совместимости?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Открыть Cura на том месте, где вы остановились в прошлый раз?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Восстановить положение окна при запуске" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Рендеринг камеры какого типа следует использовать?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Рендеринг камеры:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Перспективная" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Ортографическая" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Открытие и сохранение файлов" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Использовать один экземпляр Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Следует ли очищать печатную пластину перед загрузкой новой модели в единственный экземпляр Cura?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Очистите печатную пластину перед загрузкой модели в единственный экземпляр" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Масштабировать ли модели для размещения внутри печатаемого объёма, если они не влезают в него?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Масштабировать большие модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Модель может показаться очень маленькой, если её размерность задана в метрах, а не миллиметрах. Следует ли масштабировать такие модели?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Масштабировать очень маленькие модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Выбрать модели после их загрузки?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Выбрать модели при загрузке" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Надо ли автоматически добавлять префикс, основанный на имени принтера, к названию задачи на печать?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Добавить префикс принтера к имени задачи" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Показывать сводку при сохранении файла проекта?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Показывать сводку при сохранении проекта" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Стандартное поведение при открытии файла проекта" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Стандартное поведение при открытии файла проекта: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Всегда спрашивать меня" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Всегда открывать как проект" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Всегда импортировать модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "При внесении изменений в профиль и переключении на другой, будет показан диалог, запрашивающий ваше решение о сохранении ваших изменений, или вы можете указать стандартное поведение и не показывать такой диалог." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Всегда сбрасывать измененные настройки" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Всегда передавать измененные настройки новому профилю" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Приватность" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Можно ли отправлять анонимную информацию о вашей печати в Ultimaker? Следует отметить, что ни модели, ни IP-адреса и никакая другая персональная информация не будет отправлена или сохранена." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Отправлять (анонимно) информацию о печати" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Дополнительная информация" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Обновления" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Должна ли Cura проверять обновления программы при старте?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Проверять обновления при старте" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "При проверке обновлений проверяйте только стабильные версии." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Только стабильные версии" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "При проверке обновлений проверяйте как стабильные, так и бета-версии." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Стабильные и бета-версии" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Следует ли автоматически проверять наличие новых плагинов при каждом запуске Cura? Настоятельно рекомендуется не выключать это!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Получать уведомления об обновлениях плагинов" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Информация" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Подтвердить изменение диаметра" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Установлен новый диаметр пластиковой нити %1 мм. Это значение несовместимо с текущим экструдером. Продолжить?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Отображаемое имя" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Тип материала" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Цвет" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Свойства" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Плотность" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Диаметр" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Стоимость материала" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Вес материала" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Длина материала" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Стоимость метра" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Данный материал привязан к %1 и имеет ряд его свойств." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Отвязать материал" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Описание" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Информация об адгезии" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Создать" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Дублировать" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Синхронизация с принтерами" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Принтер" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Импортировать материал" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Не могу импортировать материал %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Успешно импортированный материал %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Экспортировать материал" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Не могу экспортировать материал %1: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Материал успешно экспортирован в %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Синхронизировать материалы с принтерами" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Синхронизировать материалы с принтерами" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Выполнив несколько простых действий, вы сможете синхронизировать все профили материалов со своими принтерами." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Пуск" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Зачем нужна синхронизация профилей материалов?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Войти" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Для автоматической синхронизации профилей материалов со всеми принтерами, подключенными к Digital Factory, необходимо войти в Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Синхронизация материалов с помощью USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Следующие принтеры получат новые профили материалов:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "При отправке материалов на принтеры что-то пошло не так." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Профили материалов успешно синхронизированы со следующими принтерами:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Поиск и устранение неисправностей" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Отсутствуют принтеры?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Убедитесь, что все ваши принтеры включены и подключены к Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Обновить список" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Повторить попытку" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Готово" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Синхронизация" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Синхронизация" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Принтеры не обнаружены" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Похоже, у вас нет совместимых принтеров, подключенных к Digital Factory. Убедитесь, что ваш принтер подключен и на нем установлена последняя версия прошивки." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Узнайте, как подключить принтер к Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Обновить" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Синхронизация профилей материалов с помощью USB" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Чтобы загрузить новые профили материалов в принтер, выполните следующие действия." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Нажмите кнопку экспорта архива материалов." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Сохраните UMM-файл на USB-накопителе." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Вставьте USB-накопитель в принтер и запустите процедуру загрузки новых профилей материалов." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Загрузка новых профилей материалов в принтер" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Экспорт архива материалов" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Экспорт всех материалов" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Видимость параметров" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Выбрать все" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Принтеры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Вычислено" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Параметр" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Профиль" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Текущий" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Единица" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Не подключен к принтеру" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Принтер не принимает команды" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "В режиме обслуживания. Пожалуйста, проверьте принтер" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Потеряно соединение с принтером" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Печать..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Приостановлен" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Подготовка..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Пожалуйста, удалите напечатанное" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Прервать печать" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Вы уверены, что желаете прервать печать?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Печатать выбранную модель с %1" +msgstr[1] "Печатать выбранные модели с %1" +msgstr[2] "Печатать выбранные модели с %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Мои принтеры" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Следите за своими принтерами в Ultimaker Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Создавайте проекты печати в электронной библиотеке." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Задания печати" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Отслеживайте задания печати и запускайте их повторно из истории печати." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Расширяйте возможности Ultimaker Cura за счет плагинов и профилей материалов." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Пройдите электронное обучение Ultimaker и станьте экспертом в области 3D-печати." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Поддержка Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Узнайте, как начать работу с Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Задать вопрос" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Посоветуйтесь со специалистами в сообществе Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Сообщить об ошибке" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Сообщите разработчикам о неполадках." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Посетите веб-сайт Ultimaker." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Управление принтером" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Положение толчковой подачи" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Расстояние толчковой подачи" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "Отправить G-код" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Отправить свою команду в G-коде подключенному принтеру. Нажмите Enter (Ввод) для отправки команды." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Экструдер" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Целевая температура сопла. Сопло будет нагрето или остужено до указанной температуры. Если значение равно 0, то нагрев будет отключен." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Текущая температура данного сопла." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Температура предварительного нагрева сопла." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Отмена" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Преднагрев" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Нагрев сопла перед печатью. Можно продолжать настройки вашей печати во время нагрева, и вам не понадобится ждать нагрева сопла, когда вы будете готовы приступить к печати." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Цвет материала в данном экструдере." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Материал в данном экструдере." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Сопло, вставленное в данный экструдер." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Принтер не подключен." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Рабочий стол" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "Целевая температура горячего стола. Стол будет нагреваться и охлаждаться, оставаясь на этой температуре. Если установлена в 0, значит нагрев стола отключен." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Текущая температура горячего стола." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Температура преднагрева горячего стола." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Нагрев горячего стола перед печатью. Вы можете продолжать настройки вашей печати, пока стол нагревается, и вам не понадобится ждать нагрева стола для старта печати." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Войти" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Добавляйте настройки материалов и плагины из Marketplace \n" +" - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n" +" - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Создайте бесплатную учетную запись Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Последнее обновление: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Учетная запись Ultimaker" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Выйти" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Проверка..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Учетная запись синхронизирована" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Что-то пошло не так..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Установить ожидающие обновления" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Проверить наличие обновлений учетной записи" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Без имени" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Нет элементов для выбора" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Показать онлайн-руководство по решению проблем" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Полный экран" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Выйти из полноэкранного режима" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Отмена" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "Возврат" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "Выход" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Трехмерный вид" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Вид спереди" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Вид сверху" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Вид снизу" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Вид слева" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Вид справа" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Настроить Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "Добавить принтер..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Управление принтерами..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Управление материалами..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Добавить больше материалов из Магазина" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "Обновить профиль текущими параметрами" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "Сбросить текущие параметры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "Создать профиль из текущих параметров..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Управление профилями..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Показать онлайн документацию" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Отправить отчёт об ошибке" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Что нового" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "О Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Удалить выбранное" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Центрировать выбранное" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Размножить выбранное" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Удалить модель" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Поместить модель по центру" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "Сгруппировать модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Разгруппировать модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Объединить модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "Дублировать модель..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Выбрать все модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Очистить стол" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Перезагрузить все модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Выровнять все модели по всем рабочим столам" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Выровнять все модели" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Выровнять выбранные" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Сбросить позиции всех моделей" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Сбросить преобразования всех моделей" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Открыть файл(ы)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "Новый проект..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Показать конфигурационный каталог" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Видимость параметров..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Магазин" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Этот параметр не используется, поскольку все параметры, на которые он влияет, переопределяются." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Влияет на" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Зависит от" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Эта настройка получена из конфликтующих значений экструдера:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5195,7 +5668,7 @@ msgstr "" "\n" "Щёлкните для восстановления значения из профиля." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5206,509 +5679,92 @@ msgstr "" "\n" "Щёлкните для восстановления вычисленного значения." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Параметры поиска" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Скопировать значение для всех экструдеров" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Копировать все измененные значения для всех экструдеров" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Спрятать этот параметр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Не показывать этот параметр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Оставить этот параметр видимым" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Трехмерный вид" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Вид спереди" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Вид сверху" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Вид слева" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Вид справа" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Просмотр типа" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Добавить облачный принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Ожидается ответ от облака" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "В учетной записи нет принтеров?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "Следующие принтеры в вашей учетной записи добавлены в Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Добавить принтер вручную" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Производитель" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Автор профиля" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Имя принтера" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Присвойте имя принтеру" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Добавить принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Добавить сетевой принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Добавить принтер, не подключенный к сети" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "В вашей сети не найден принтер." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Обновить" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Добавить принтер по IP-адресу" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Добавить облачный принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Поиск и устранение неисправностей" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Добавить принтер по IP-адресу" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Введите IP-адрес своего принтера." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Добавить" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Не удалось подключиться к устройству." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Не удается подключиться к принтеру Ultimaker?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "От принтера с этим адресом еще не поступал ответ." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Назад" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Подключить" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Примечания к выпуску" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Добавляйте настройки материалов и плагины из Marketplace" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Создайте бесплатную учетную запись Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Пропустить" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Помогите нам улучшить Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем, включая перечисленные ниже:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Типы принтера" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Использование материала" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Количество слоев" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Параметры печати" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Данные, собранные Ultimaker Cura, не содержат каких-либо персональных данных." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Дополнительная информация" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Пусто" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Пользовательское соглашение" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Отклонить и закрыть" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Приветствуем в Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" -"Выполните указанные ниже действия для настройки\n" -"Ultimaker Cura. Это займет немного времени." +"Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n" +"\n" +"Щёлкните, чтобы сделать эти параметры видимыми." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Приступить" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Этот пакет будет установлен после перезапуска." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Параметры" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Закрытие %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Вы уверены, что хотите выйти из %1?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Установить пакет" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Открыть файл(ы)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Среди выбранных файлов мы нашли несколько файлов с G-кодом. Вы можете открыть только один файл за раз. Измените свой выбор, пожалуйста." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Добавление принтера" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "Что нового" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Нет элементов для выбора" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Средство проверки моделей" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Предоставляет поддержку для чтения 3MF файлов." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Чтение 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Предоставляет возможность записи 3MF файлов." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Запись 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Обеспечивает поддержку чтения файлов AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Средство чтения AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Резервное копирование и восстановление конфигурации." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Резервные копии Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Предоставляет интерфейс к движку CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Движок CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Предоставляет поддержку для импорта профилей Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Чтение профиля Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Предоставляет поддержку для экспорта профилей Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Запись профиля Cura" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Цифровая библиотека Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Проверяет наличие обновлений ПО." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Проверка обновлений" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Обеспечение действий принтера для обновления прошивки." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Средство обновления прошивки" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Считывает G-код из сжатого архива." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Средство считывания сжатого G-кода" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Записывает G-код в сжатый архив." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Средство записи сжатого G-кода" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Средство считывания профиля из G-кода" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Позволяет загружать и отображать файлы G-code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Чтение G-code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Записывает G-код в файл." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Средство записи G-кода" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Чтение изображений" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Чтение устаревших профилей Cura" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Параметры принтера действие" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Обеспечивает этап мониторинга в Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Этап мониторинга" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5719,85 +5775,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Инструмент для настройки каждой модели" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" +msgid "Provides support for importing Cura profiles." +msgstr "Предоставляет поддержку для импорта профилей Cura." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Пост обработка" +msgid "Cura Profile Reader" +msgstr "Чтение профиля Cura" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Обеспечивает подготовительный этап в Cura." +msgid "Provides support for reading X3D files." +msgstr "Предоставляет поддержку для чтения X3D файлов." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Подготовительный этап" +msgid "X3D Reader" +msgstr "Чтение X3D" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." +msgid "Backup and restore your configuration." +msgstr "Резервное копирование и восстановление конфигурации." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Этап предварительного просмотра" +msgid "Cura Backups" +msgstr "Резервные копии Cura" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Плагин для работы с внешним носителем" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Контрольный журнал" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Открытие вида моделирования." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Вид моделирования" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Информация о нарезке модели" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Предоставляет просмотр твёрдого тела." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Обзор" +msgid "Machine Settings Action" +msgstr "Параметры принтера действие" #: SupportEraser/plugin.json msgctxt "description" @@ -5809,35 +5825,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Средство стирания элемента поддержки" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Поиск, управление и установка новых пакетов Cura." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Панель инструментов" +msgid "Removable Drive Output Device Plugin" +msgstr "Плагин для работы с внешним носителем" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Предоставляет поддержку для чтения файлов моделей." +msgid "Provides a machine actions for updating firmware." +msgstr "Обеспечение действий принтера для обновления прошивки." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Средство чтения Trimesh" +msgid "Firmware Updater" +msgstr "Средство обновления прошивки" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Предоставляет поддержку для чтения пакетов формата Ultimaker." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "Средство считывания UFP" +msgid "Legacy Cura Profile Reader" +msgstr "Чтение устаревших профилей Cura" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Предоставляет поддержку для чтения 3MF файлов." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Чтение 3MF" #: UFPWriter/plugin.json msgctxt "description" @@ -5849,25 +5875,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "Средство записи UFP" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Действия с принтерами Ultimaker" +msgid "Sentry Logger" +msgstr "Контрольный журнал" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Управляет сетевыми соединениями с сетевыми принтерами Ultimaker 3." +msgid "Provides support for importing profiles from g-code files." +msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Соединение с сетью Ultimaker" +msgid "G-code Profile Reader" +msgstr "Средство считывания профиля из G-кода" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Этап предварительного просмотра" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Предоставляет рентгеновский вид." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Просмотр в рентгене" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Предоставляет интерфейс к движку CuraEngine." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Движок CuraEngine" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Обеспечивает поддержку чтения файлов AMF." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Средство чтения AMF" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Считывает G-код из сжатого архива." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Средство считывания сжатого G-кода" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Пост обработка" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Предоставляет поддержку для экспорта профилей Cura." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Запись профиля Cura" #: USBPrinting/plugin.json msgctxt "description" @@ -5879,25 +5975,135 @@ msgctxt "name" msgid "USB printing" msgstr "Печать через USB" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." +msgid "Provides a prepare stage in Cura." +msgstr "Обеспечивает подготовительный этап в Cura." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Обновление версии 2.1 до 2.2" +msgid "Prepare Stage" +msgstr "Подготовительный этап" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." +msgid "Allows loading and displaying G-code files." +msgstr "Позволяет загружать и отображать файлы G-code." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Обновление версии 2.2 до 2.4" +msgid "G-code Reader" +msgstr "Чтение G-code" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Чтение изображений" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Действия с принтерами Ultimaker" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Записывает G-код в сжатый архив." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Средство записи сжатого G-кода" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Проверяет наличие обновлений ПО." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Проверка обновлений" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Информация о нарезке модели" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Профили материалов" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Цифровая библиотека Ultimaker" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Поиск, управление и установка новых пакетов Cura." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Панель инструментов" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Записывает G-код в файл." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Средство записи G-кода" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Открытие вида моделирования." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Вид моделирования" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Обновление версии 4.5 до 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5909,55 +6115,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "Обновление версии 2.5 до 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Обновление версии 2.6 до 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Обновление версии с 4.6.0 до 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Обновление версии 2.7 до 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Обновление настроек Cura 3.0 до Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Обновление версии 3.0 до 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Обновление версии 3.2 до 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Обновление версии 3.3 до 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Обновление версии 4.7 до 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5969,35 +6145,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "Обновление версии 3.4 до 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Обновление версии 3.5 до 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Обновление версии 2.1 до 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Обновление версии 4.0 до 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Обновление версии 3.2 до 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Обновление версии 4.1 до 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Обновление версии 4.8 до 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Обновление версии с 4.6.2 до 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6019,66 +6205,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "Обновление версии 4.3 до 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Обновление версии 4.4 до 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Обновление версии 4.5 до 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Обновление версии с 4.6.0 до 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Обновление версии с 4.6.2 до 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Обновление версии 4.7 до 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Обновление версии 4.8 до 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6089,35 +6215,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "Обновление версии 4.9 до 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Предоставляет поддержку для чтения X3D файлов." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "Чтение X3D" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Обновление версии 2.7 до 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Профили материалов" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Обновление версии 2.6 до 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Предоставляет рентгеновский вид." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Просмотр в рентгене" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Обновление версии 4.11 до 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Обновление версии 3.3 до 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Обновление настроек Cura 3.0 до Cura 3.1." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Обновление версии 3.0 до 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Обновление версии 4.0 до 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Обновление версии 4.4 до 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Обновление версии 2.2 до 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Обновление версии 4.1 до 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Обновление версии 3.5 до 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Управляет сетевыми соединениями с сетевыми принтерами Ultimaker 3." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Соединение с сетью Ultimaker" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Предоставляет поддержку для чтения файлов моделей." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Средство чтения Trimesh" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Предоставляет поддержку для чтения пакетов формата Ultimaker." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Средство считывания UFP" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Предоставляет просмотр твёрдого тела." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Обзор" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Предоставляет возможность записи 3MF файлов." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Запись 3MF" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Обеспечивает этап мониторинга в Cura." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Этап мониторинга" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Средство проверки моделей" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Отправляйте и отслеживайте задания печати из любого места с помощью вашей учетной записи Ultimaker." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Подключение к Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Каналы веб-камеры для облачных принтеров невозможно просмотреть из Ultimaker Cura." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Доступна новая прошивка %s" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." @@ -7924,7 +8210,8 @@ msgstr "Просмотр в рентгене" #~ " - Thomas Karl Pietrowski" #~ msgstr "" #~ "Уважаемый клиент!\n" -#~ "В данный момент этот плагин запущен в операционной системе, отличной от Windows. Плагин функционирует исключительно под управлением ОС Windows с установленным ПО SolidWorks, для которого имеется подходящая лицензия. Установите данный плагин на принтер под управлением Windows с установленным ПО SolidWorks.\n" +#~ "В данный момент этот плагин запущен в операционной системе, отличной от Windows. Плагин функционирует исключительно под управлением ОС Windows с установленным ПО SolidWorks, для которого имеется подходящая лицензия. Установите данный плагин на принтер под управлением Windows с установленным ПО " +#~ "SolidWorks.\n" #~ "\n" #~ "С наилучшими пожеланиями,\n" #~ " - Томас Карл Петровски (Thomas Karl Pietrowski)" diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 110b6180b6..1b954f3ce2 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 14:58+0200\n" "Last-Translator: Bothof \n" "Language-Team: Ruslan Popov , Russian \n" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index f0bd5a6feb..810f0034a4 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 14:58+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Russian , Ruslan Popov , Russian \n" @@ -57,9 +57,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n" -"." +msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -71,9 +69,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n" -"." +msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n." #: fdmprinter.def.json msgctxt "material_guid label" @@ -108,12 +104,12 @@ msgstr "Следует ли добавлять команду ожидания #: fdmprinter.def.json msgctxt "material_print_temp_wait label" msgid "Wait for Nozzle Heatup" -msgstr "Ожидать пока прогреется голова" +msgstr "Ожидать пока прогреется сопло" #: fdmprinter.def.json msgctxt "material_print_temp_wait description" msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Следует ли добавлять команду ожидания прогрева головы перед началом печати." +msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." #: fdmprinter.def.json msgctxt "material_print_temp_prepend label" @@ -155,6 +151,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "Ширина (по оси Y) области печати." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Высота принтера" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Ширина (по оси Z) области печати." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -195,16 +201,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Алюминий" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Высота принтера" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Ширина (по оси Z) области печати." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -562,8 +558,8 @@ msgstr "Максимальная скорость для мотора оси Z." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Максимальная подача" +msgid "Maximum Speed E" +msgstr "Максимальная скорость по оси E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -687,8 +683,8 @@ msgstr "Количество шагов на миллиметр (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Количество шагов шаговых двигателей, приводящее к экструзии на один миллиметр." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1435,6 +1431,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Монотонный порядок дна/крышки" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1505,6 +1511,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Зигзаг" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Монотонный порядок разглаживания" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1712,8 +1728,11 @@ msgstr "Шаблон заполнения" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны" +" «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются" +" в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение" +" прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1780,6 +1799,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Гироид" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Молния" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1994,6 +2018,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Количество слоев, которые поддерживают края оболочки." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Угол поддержки шаблона заполнения «молния»" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Угол выступа шаблона заполнения «молния»" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Угол обрезки шаблона заполнения «молния»" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Угол выпрямления шаблона заполнения «молния»" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3184,6 +3248,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Везде" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Не на внешней поверхности" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -3202,8 +3271,7 @@ msgstr "Макс. расстояние комб. без отката" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю," -" то максимума нет и перемещения комбинга выполняются без отката." +msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." #: fdmprinter.def.json msgctxt "travel_retract_before_outer_wall label" @@ -5136,7 +5204,7 @@ msgstr "Минимальная ширина формы" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." +msgid "The minimal distance between the outside of the mold and the outside of the model." msgstr "Минимальное расстояние между внешними сторонами формы и модели." #: fdmprinter.def.json @@ -5304,6 +5372,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Зигзаг" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Монотонный порядок верхней оболочки" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -5322,7 +5400,7 @@ msgstr "Оптимизация перемещения заполнения" #: fdmprinter.def.json msgctxt "infill_enable_travel_optimization description" msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Если включено, заказ, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." +msgstr "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." #: fdmprinter.def.json msgctxt "material_flow_dependent_temperature label" @@ -6403,6 +6481,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Максимальная подача" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только (внутренние) верхние части объекта. Таким образом, процент заполнения «действует» только на один слой ниже того, который требуется для поддержки модели." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "Разность, которая может возникать между слоем шаблона заполнения «молния» и слоем, расположенным непосредственно над ним, при обрезке внешних оконечностей деревьев. Измеряется под углом с учетом толщины." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "Разность, которая может возникать между слоем шаблона заполнения «молния» и слоем, расположенным непосредственно над ним, при выравнивании деревьев. Измеряется под углом с учетом толщины." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Минимальное расстояние между внешними сторонами формы и модели." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Количество шагов шаговых двигателей, приводящее к экструзии на один миллиметр." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "При ненулевом значении перемещения комбинга, превышающие указанное расстояние, будут выполняться с откатом." @@ -7141,7 +7255,7 @@ msgstr "Матрица преобразования, применяемая к #~ msgctxt "material_print_temp_wait label" #~ msgid "Wait for nozzle heatup" -#~ msgstr "Ожидать пока прогреется голова" +#~ msgstr "Ожидать пока прогреется сопло" #~ msgctxt "material_print_temp_prepend label" #~ msgid "Include material temperatures" diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index 7f356a3702..c69664af1c 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-04-16 14:58+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2022-01-10 11:57+0100\n" "Last-Translator: Lionbridge \n" "Language-Team: Turkish , Turkish \n" "Language: tr_TR\n" @@ -15,182 +15,401 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 2.3\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Bilinmiyor" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Aşağıdaki yazıcı(lar) bir grubun parçası olmadıkları için bağlanamıyor" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "Yedekle" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Mevcut ağ yazıcıları" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Uygun veri veya meta veri olmadan Cura yedeği geri yüklenmeye çalışıldı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Geçersiz kılınmadı" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Geçerli sürümünüzden yüksek bir sürüme sahip bir Cura yedeği geri yüklenmeye çalışıldı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "Cura yedeklemesi geri yüklenmeye çalışılırken aşağıdaki hata oluştu:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Lütfen baskıya başlamadan önce malzeme profillerini yazıcılarınızla senkronize edin." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Yeni malzemeler yüklendi" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "Malzemeleri yazıcılarla senkronize et" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Malzeme arşivi {} konumuna kaydedilemedi:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Malzeme arşivi kaydedilemedi" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Bilinmeyen hata." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "Portalın yazdırılan modeller ile çarpışmasını önlemek için yapı hacmi yüksekliği “Sıralamayı Yazdır” ayarı nedeniyle azaltıldı." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Yapı Disk Bölümü" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Geçersiz kılınmadı" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "Bilinmiyor" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Aşağıdaki yazıcı(lar) bir grubun parçası olmadıkları için bağlanamıyor" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Mevcut ağ yazıcıları" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Görsel" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Görsel profili, yüksek görsel ve yüzey kalitesi oluşturmak amacıyla, görsel prototipler ve modeller basılması için tasarlanmıştır." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Mühendislik profili, daha yüksek doğruluk ve daha yakın toleranslar sağlamak amacıyla, işlevsel prototipler ve son kullanım parçaları basılması için tasarlanmıştır." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Taslak" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Taslak profili, baskı süresinin önemli ölçüde kısaltılması amacıyla, birincil prototipler basılması ve konsept doğrulaması yapılması için tasarlanmıştır." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "Özel Malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "Özel" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "Özel profiller" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tüm desteklenen türler ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Görsel" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Görsel profili, yüksek görsel ve yüzey kalitesi oluşturmak amacıyla, görsel prototipler ve modeller basılması için tasarlanmıştır." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Mühendislik profili, daha yüksek doğruluk ve daha yakın toleranslar sağlamak amacıyla, işlevsel prototipler ve son kullanım parçaları basılması için tasarlanmıştır." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Taslak" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Taslak profili, baskı süresinin önemli ölçüde kısaltılması amacıyla, birincil prototipler basılması ve konsept doğrulaması yapılması için tasarlanmıştır." + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "Özel Malzeme" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "Özel" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Giriş başarısız" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Nesneler için yeni konum bulunuyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Konumu Buluyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Yapılan hacim içinde tüm nesneler için konum bulunamadı" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Konum Bulunamıyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Yazıcılarla senkronize edilecek malzeme arşivi oluşturulamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "Yedekle" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Yazıcılarla senkronize etmek için malzeme arşivi oluşturulamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Uygun veri veya meta veri olmadan Cura yedeği geri yüklenmeye çalışıldı." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "Digital Factory'den gelen yanıt bozuk görünüyor." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Geçerli sürümünüzden yüksek bir sürüme sahip bir Cura yedeği geri yüklenmeye çalışıldı." +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "Digital Factory'den gelen yanıtta önemli bilgiler eksik." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "Cura yedeklemesi geri yüklenmeye çalışılırken aşağıdaki hata oluştu:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Malzemeleri bazı yazıcılarla senkronize etmek için Digital Factory'ye bağlanılamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Digital Factory'ye bağlanılamadı." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Makineler yükleniyor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Tercihler ayarlanıyor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Etkin Makine Başlatılıyor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Makine yöneticisi başlatılıyor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Yapı hacmi başlatılıyor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Görünüm ayarlanıyor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Arayüz yükleniyor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Motor başlatılıyor..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "Portalın yazdırılan modeller ile çarpışmasını önlemek için yapı hacmi yüksekliği “Sıralamayı Yazdır” ayarı nedeniyle azaltıldı." +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "Yapı Disk Bölümü" +msgid "Warning" +msgstr "Uyarı" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "G-code yüklenirken başka bir dosya açılamaz. {0} içe aktarma atlandı" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "Hata" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "Atla" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "Kapat" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "Sonraki" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "Bitir" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "Ekle" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "İptal Et" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grup #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Dış Duvar" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "İç Duvarlar" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Yüzey Alanı" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Dolgu" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Destek Dolgusu" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Destek Arayüzü" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Destek" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Etek" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Astarlama Direği" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Hareket" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Geri Çekmeler" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Diğer" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "Sürüm notları açılamadı." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura başlatılamıyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +424,32 @@ msgstr "" "

    Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Çökme raporunu Ultimaker’a gönder" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Ayrıntılı çökme raporu göster" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Yapılandırma Klasörünü Göster" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Yapılandırmayı Yedekle ve Sıfırla" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Çökme Raporu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,676 +460,617 @@ msgstr "" "

    Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen \"Rapor gönder\" düğmesini kullanın

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Sistem bilgileri" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Bilinmiyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura sürümü" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura dili" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "İşletim sistemi dili" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platform" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt Sürümü" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt Sürümü" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "Henüz başlatılmadı
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL Sürümü: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL Satıcısı: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Oluşturucusu: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Hata geri izleme" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "Günlükler" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "Rapor gönder" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Makineler yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Tercihler ayarlanıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Etkin Makine Başlatılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Makine yöneticisi başlatılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Yapı hacmi başlatılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Görünüm ayarlanıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Arayüz yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Motor başlatılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "Uyarı" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "G-code yüklenirken başka bir dosya açılamaz. {0} içe aktarma atlandı" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "Hata" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Nesneler çoğaltılıyor ve yerleştiriliyor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Nesneler Yerleştiriliyor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Nesne Yerleştiriliyor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "Yanıt okunamadı." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "Sağlanan durum doğru değil." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Oturum açmaya çalışırken beklenmeyen bir sorun oluştu, lütfen tekrar deneyin." - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Yeni bir oturum açma işlemi başlatılamıyor. Başka bir aktif oturum açma girişimi olup olmadığını kontrol edin." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "Ultimaker hesabı sunucusuna ulaşılamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Giriş başarısız" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Sağlanan durum doğru değil." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Hesap sunucusuyla kimlik doğrulaması yapılırken zaman aşımı oluştu." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Oturum açmaya çalışırken beklenmeyen bir sorun oluştu, lütfen tekrar deneyin." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Yanıt okunamadı." + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Nesneler çoğaltılıyor ve yerleştiriliyor" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Nesneler Yerleştiriliyor" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Nesne Yerleştiriliyor" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Desteklenmiyor" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "Nozül" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Ayarlar, ekstrüderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Ayarlar güncellendi" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Dosya Zaten Mevcut" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Geçersiz dosya URL’si:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: Yazıcı eklentisinde rapor edilen hata." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil {0} dosyasına aktarıldı" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Dışa aktarma başarılı" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Yazıcı eklenmeden önce profil, {0} dosyasından içe aktarılamaz." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0} dosyasında içe aktarılabilecek özel profil yok" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Bu {0} profili yanlış veri içeriyor, içeri aktarılamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "{0} profili başarıyla içe aktarıldı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Dosya {0} geçerli bir profil içermemekte." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} öğesinde bilinmeyen bir dosya türü var veya profil bozuk." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Özel profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profilde eksik bir kalite tipi var." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Henüz etkin bir yazıcı yok." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Profil eklenemiyor." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "'{0}' kalite tipi, mevcut aktif makine tanımı '{1}' ile uyumlu değil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Uyarı: Profilin '{0}' kalite tipi, mevcut yapılandırma için kullanılabilir olmadığından profil görünür değil. Bu kalite tipini kullanabilen malzeme/nozül kombinasyonuna geçiş yapın." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Desteklenmiyor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "Nozül" +msgid "Per Model Settings" +msgstr "Model Başına Ayarlar" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Ayarlar, ekstrüderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Model Başına Ayarları Yapılandır" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura Profili" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D Dosyası" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Yedeklemeniz geri yüklenirken bir hata oluştu." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ayarlar güncellendi" +msgid "Backups" +msgstr "Yedeklemeler" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Yedeklemeniz yüklenirken bir hata oluştu." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Ekle" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Yedeklemeniz oluşturuluyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 -msgctxt "@action:button" -msgid "Finish" -msgstr "Bitir" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Yedeklemeniz oluşturulurken bir hata oluştu." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 -msgctxt "@action:button" -msgid "Cancel" -msgstr "İptal Et" +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Yedeklemeniz yükleniyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Yedeklemenizin yüklenmesi tamamlandı." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Yedekleme maksimum dosya boyutunu aşıyor." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Yedeklemeleri yönet" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Makine Ayarları" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Destek Engelleyici" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Desteklerin yazdırılmadığı bir hacim oluşturun." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Çıkarılabilir Sürücü" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Çıkarılabilir Sürücüye Kaydet" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grup #{group_nr}" +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Dış Duvar" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Yazılacak dosya biçimleri mevcut değil!" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "İç Duvarlar" +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Çıkarılabilir Sürücü {0} Üzerine Kaydediliyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Yüzey Alanı" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Dolgu" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Destek Dolgusu" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Destek Arayüzü" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "Destek" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Etek" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Astarlama Direği" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Hareket" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Geri Çekmeler" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "Diğer" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "Sonraki" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "Atla" - -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Kapat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "3D Model Yardımcısı" +msgid "Saving" +msgstr "Kaydediliyor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0} dosyasına kaydedilemedi: {1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "{device} üzerine yazmaya çalışırken dosya adı bulunamadı." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 #, python-brace-format msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

    \n" -"

    {model_names}

    \n" -"

    En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

    \n" -"

    Yazdırma kalitesi kılavuzunu görüntüleyin

    " +msgid "Could not save to removable drive {0}: {1}" +msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Dosya Kaydedildi" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +msgctxt "@action:button" +msgid "Eject" +msgstr "Çıkar" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Çıkarılabilir aygıtı çıkar {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Çıkarıldı {0}. Şimdi sürücüyü güvenle kaldırabilirsiniz." + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Donanımı Güvenli Bir Şekilde Kaldırın" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Çıkarma işlemi başarısız oldu {0}. Başka bir program sürücüyü kullanıyor olabilir." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aygıt Yazılımını Güncelle" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 profilleri" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Önerilen Ayarlar" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Özel" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Proje dosyası {0} bilinmeyen bir makine tipi içeriyor: {1}. Makine alınamıyor. Bunun yerine modeller alınacak." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 msgctxt "@info:title" msgid "Open Project File" msgstr "Proje Dosyası Aç" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "{0} proje dosyası aniden erişilemez oldu: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Proje Dosyası Açılamıyor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Proje dosyası {0} bozuk: {1}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." msgstr "{0} proje dosyası, Ultimaker Cura'nın bu sürümünde bilinmeyen profiller kullanılarak yapılmış." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Önerilen Ayarlar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Özel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF Dosyası" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF Writer eklentisi bozuk." +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "UFP dosyasına yazamıyor:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Burada çalışma alanını yazmak için izin yok." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "İşletim sistemi, proje dosyalarının bu konuma veya bu dosya adıyla kaydedilmesine izin vermiyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3mf dosyasını yazarken hata oluştu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF dosyası" +msgid "Ultimaker Format Package" +msgstr "Ultimaker Biçim Paketi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura Projesi 3MF dosyası" +msgid "G-code File" +msgstr "G-code dosyası" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF Dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "Yedeklemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Yedeklemeniz yüklenirken bir hata oluştu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Yedeklemeniz oluşturuluyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Yedeklemeniz oluşturulurken bir hata oluştu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Yedeklemeniz yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Yedeklemenizin yüklenmesi tamamlandı." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Yedekleme maksimum dosya boyutunu aşıyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Yedeklemeniz geri yüklenirken bir hata oluştu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Yedeklemeleri yönet" +msgid "Preview" +msgstr "Önizleme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Röntgen Görüntüsü" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Katmanlar İşleniyor" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Bilgi" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Dilimleme işlemi beklenmeyen bir hatayla başarısız oldu. Lütfen sorun izleyicimizde hata bildirmeyi düşünün." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Dilimleme başarısız" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Hata bildirin" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "Ultimaker Cura'nın sorun izleyicisinde hata bildirin." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Mevcut malzeme, seçilen makine veya yapılandırma ile uyumlu olmadığından mevcut malzeme ile dilimlenemedi." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 msgctxt "@info:title" msgid "Unable to slice" msgstr "Dilimlenemedi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Geçerli ayarlarla dilimlenemiyor. Şu ayarlarda hata var: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Modele özgü ayarlar nedeniyle dilimlenemedi. Şu ayarlar bir veya daha fazla modelde hataya yol açıyor: {error_labels}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "İlk direk veya ilk konum(lar) geçersiz olduğu için dilimlenemiyor." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 #, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor." -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -923,465 +1083,430 @@ msgstr "" "- Etkin bir ekstrüdere atanma\n" "- Değiştirici kafesler olarak ayarlanmama" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Katmanlar İşleniyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "Bilgi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura Profili" +msgid "AMF File" +msgstr "AMF Dosyası" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Güncelleme bilgilerine erişilemedi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "{machine_name} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "Yeni %s bellenimi mevcut" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Nasıl güncellenir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aygıt Yazılımını Güncelle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Sıkıştırılmış G-code Dosyası" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter yazı modunu desteklemez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-code ayrıştırma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code Ayrıntıları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Dosya göndermeden önce g-code’un yazıcınız ve yazıcı yapılandırmanız için uygun olduğundan emin olun. G-code temsili doğru olmayabilir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G Dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter metin dışı modu desteklemez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Lütfen dışa aktarmadan önce G-code'u hazırlayın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 profilleri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Makine Ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Görüntüle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Model Başına Ayarlar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Model Başına Ayarları Yapılandır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Son İşleme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "G-Code Öğesini Değiştir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB yazdırma" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "USB ile yazdır" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "USB ile yazdır" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "USB ile bağlı" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USB’den yazdırma devam ediyor, Cura’yı kapatmanız bu yazdırma işlemini durduracak. Emin misiniz?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz." + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Baskı Sürüyor" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Hazırla" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Önizleme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Çıkarılabilir Sürücüye Kaydet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Yazılacak dosya biçimleri mevcut değil!" +msgid "Parsing G-code" +msgstr "G-code ayrıştırma" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Çıkarılabilir Sürücü {0} Üzerine Kaydediliyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 msgctxt "@info:title" -msgid "Saving" -msgstr "Kaydediliyor" +msgid "G-code Details" +msgstr "G-code Ayrıntıları" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0} dosyasına kaydedilemedi: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "{device} üzerine yazmaya çalışırken dosya adı bulunamadı." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Dosya Kaydedildi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "Çıkar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Çıkarılabilir aygıtı çıkar {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Çıkarıldı {0}. Şimdi sürücüyü güvenle kaldırabilirsiniz." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Donanımı Güvenli Bir Şekilde Kaldırın" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Çıkarma işlemi başarısız oldu {0}. Başka bir program sürücüyü kullanıyor olabilir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Çıkarılabilir Sürücü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Kablo Yazdırma etkinleştirildiğinde Cura, katmanları doğru olarak görüntülemez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Simülasyon Görünümü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Önce dilimleme yapmanız gerektiğinden hiçbir şey gösterilmez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Görüntülenecek katman yok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Bu mesajı bir daha gösterme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Katman görünümü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "Vurgulanan alanlar, eksik ya da ikincil yüzeyleri gösterir. Modelinizi düzeltin ve Cura'da tekrar açın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Model hataları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Daha fazla bilgi edinin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Gerçek görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Destek Engelleyici" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Desteklerin yazdırılmadığı bir hacim oluşturun." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Malzeme ve yazılım paketlerini hesabınızla senkronize etmek istiyor musunuz?" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Dosya göndermeden önce g-code’un yazıcınız ve yazıcı yapılandırmanız için uygun olduğundan emin olun. G-code temsili doğru olmayabilir." -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Ultimaker hesabınızda değişiklik tespit edildi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Senkronize et" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Senkronize ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Reddet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Kabul ediyorum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Eklenti Lisans Anlaşması" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Reddet ve hesaptan kaldır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Değişikliklerin etkili olması için {} uygulamasını kapatarak yeniden başlatmalısınız." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} eklenti indirilemedi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" +msgid "G File" +msgstr "G Dosyası" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" +msgid "JPG Image" +msgstr "JPG Resmi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" +msgid "JPEG Image" +msgstr "JPEG Resmi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" +msgid "PNG Image" +msgstr "PNG Resmi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" +msgid "BMP Image" +msgstr "BMP Resmi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Biçim Paketi" +msgid "GIF Image" +msgstr "GIF Resmi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "UFP dosyasına yazamıyor:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" msgid "Level build plate" msgstr "Yapı levhasını dengele" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" msgid "Select upgrades" msgstr "Yükseltmeleri seçin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter yazı modunu desteklemez." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Güncelleme bilgilerine erişilemedi." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "{machine_name} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Yeni %s istikrarlı donanım yazılımı yayınlandı" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Nasıl güncellenir" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Örnek veri dosyası okunamıyor." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Değişikliklerin etkili olması için {} uygulamasını kapatarak yeniden başlatmalısınız." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Senkronize ediliyor..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "Ultimaker hesabınızda değişiklik tespit edildi" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Malzeme ve yazılım paketlerini hesabınızla senkronize etmek istiyor musunuz?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +msgctxt "@action:button" +msgid "Sync" +msgstr "Senkronize et" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Reddet ve hesaptan kaldır" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} eklenti indirilemedi" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "Reddet" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "Kabul ediyorum" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Eklenti Lisans Anlaşması" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter metin dışı modu desteklemez." + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Lütfen dışa aktarmadan önce G-code'u hazırlayın." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "Kablo Yazdırma etkinleştirildiğinde Cura, katmanları doğru olarak görüntülemez." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "Simülasyon Görünümü" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Önce dilimleme yapmanız gerektiğinden hiçbir şey gösterilmez." + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Görüntülenecek katman yok" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Bu mesajı bir daha gösterme" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Katman görünümü" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Ağ üzerinden yazdır" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Ağ üzerinden yazdır" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Ağ üzerinden bağlandı" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "yarın" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "bugün" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Ağ ile Bağlan" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Mevcut iş gönderilene kadar bekleyin." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Baskı hatası" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Yazdırma işi yazıcıya başarıyla gönderildi." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Veri Gönderildi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "Ultimaker Connect çalıştırmayan bir yazıcıya bağlanmaya çalışıyorsunuz. Lütfen yazıcının donanım yazılımını son sürüme güncelleyin." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Yazıcınızı güncelleyin" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "Baskı işi kuyruğu dolu. Yazıcı yeni iş kabul edemez." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Kuyruk Dolu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Yazdırma İşi Gönderiliyor" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Baskı işi yazıcıya yükleniyor." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Malzemeler yazıcıya gönderiliyor" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Veri yazıcıya yüklenemedi." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Ağ hatası" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "{0} ile bağlantı kurmayı deniyorsunuz ancak cihaz bir grubun ana makinesi değil. Bu cihazı grup ana makinesi olarak yapılandırmak için web sayfasını ziyaret edebilirsiniz." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Grup ana makinesi değil" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Grubu yapılandır" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı.\n" +" Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Buluttan yazdırma için hazır mısınız?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Başlayın" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Bulut üzerinden yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Bulut üzerinden yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Bulut üzerinden bağlı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Baskı izleme" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory'de baskıyı izleyin" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Baskı işi yüklenirken bilinmeyen hata kodu: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" msgstr[0] "Ultimaker hesabınızdan yeni yazıcı tespit edildi" msgstr[1] "Ultimaker hesabınızdan yeni yazıcılar tespit edildi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 #, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "{name} yazıcısı ({model}) hesabınızdan ekleniyor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 #, python-brace-format msgctxt "info:{0} gets replaced by a number of printers" msgid "... and {0} other" @@ -1389,71 +1514,70 @@ msgid_plural "... and {0} others" msgstr[0] "... ve {0} diğeri" msgstr[1] "... ve {0} diğeri" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Digital Factory'den eklenen yazıcılar:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Yazıcı için kullanılabilir bulut bağlantısı yok" msgstr[1] "Bazı yazıcılar için kullanılabilir bulut bağlantısı yok" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" msgstr[0] "Bu yazıcı Digital Factory ile bağlantılandırılmamış:" msgstr[1] "Bu yazıcılar Digital Factory ile bağlantılandırılmamış:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 #, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Bağlantı kurmak için lütfen {website_link} adresini ziyaret edin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Yazıcı yapılandırmalarını koru" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 msgctxt "@action:button" msgid "Remove printers" msgstr "Yazıcıları kaldır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} yazıcısı bir sonraki hesap senkronizasyonuna kadar kaldırılacak." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name} yazıcısını kalıcı olarak kaldırmak için {digital_factory_link} adresini ziyaret edin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 #, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "{printer_name} yazıcısını geçici olarak kaldırmak istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 msgctxt "@title:window" msgid "Remove printers?" msgstr "Yazıcılar kaldırılsın mı?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" msgid "" @@ -1469,7 +1593,7 @@ msgstr[1] "" "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" "Devam etmek istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1478,761 +1602,1577 @@ msgstr "" "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" "Devam etmek istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Binary" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" + +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Compressed COLLADA Digital Asset Exchange" + +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "Ultimaker hesabınızı kullanarak yazdırma görevlerini dilediğiniz yerden gönderin ve görüntüleyin." +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "Vurgulanan alanlar, eksik ya da ikincil yüzeyleri gösterir. Modelinizi düzeltin ve Cura'da tekrar açın." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory'e Bağlan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "Başlayın" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "Ultimaker Connect çalıştırmayan bir yazıcıya bağlanmaya çalışıyorsunuz. Lütfen yazıcının donanım yazılımını son sürüme güncelleyin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" -msgstr "Yazıcınızı güncelleyin" +msgid "Model Errors" +msgstr "Model hataları" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Malzemeler yazıcıya gönderiliyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "{0} ile bağlantı kurmayı deniyorsunuz ancak cihaz bir grubun ana makinesi değil. Bu cihazı grup ana makinesi olarak yapılandırmak için web sayfasını ziyaret edebilirsiniz." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Grup ana makinesi değil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "Grubu yapılandır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Mevcut iş gönderilene kadar bekleyin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Baskı hatası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Veri yazıcıya yüklenemedi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Ağ hatası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Yazdırma İşi Gönderiliyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Baskı işi yazıcıya yükleniyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "Baskı işi kuyruğu dolu. Yazıcı yeni iş kabul edemez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Kuyruk Dolu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Yazdırma işi yazıcıya başarıyla gönderildi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Veri Gönderildi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Ağ üzerinden yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Ağ üzerinden yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Ağ üzerinden bağlandı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Ağ ile Bağlan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "yarın" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "bugün" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB yazdırma" +msgid "Solid view" +msgstr "Gerçek görünüm" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "USB ile yazdır" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "3mf dosyasını yazarken hata oluştu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "USB ile yazdır" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF Writer eklentisi bozuk." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Henüz yazılacak bir çalışma alanı yok. Lütfen önce bir yazıcı ekleyin." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Burada çalışma alanını yazmak için izin yok." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "İşletim sistemi, proje dosyalarının bu konuma veya bu dosya adıyla kaydedilmesine izin vermiyor." + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF dosyası" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura Projesi 3MF dosyası" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Görüntüle" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "3D Model Yardımcısı" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format msgctxt "@info:status" -msgid "Connected via USB" -msgstr "USB ile bağlı" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

    \n" +"

    {model_names}

    \n" +"

    En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

    \n" +"

    Yazdırma kalitesi kılavuzunu görüntüleyin

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "USB’den yazdırma devam ediyor, Cura’yı kapatmanız bu yazdırma işlemini durduracak. Emin misiniz?" +msgid "Mesh Type" +msgstr "Ağ Tipi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "Normal model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Baskı Sürüyor" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "Destek olarak yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Çakışma ayarlarını değiştir" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Çakışmaları destekleme" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Dosyası" +msgid "Infill mesh only" +msgstr "Yalnızca dolgu kafes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen Görüntüsü" +msgid "Cutting mesh" +msgstr "Kesme Örgüsü" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "Bu yazdırmada bazı şeyler sorunlu olabilir. Ayarlama için ipuçlarını görmek için tıklayın." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Ayarları seçin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Bu modeli Özelleştirmek için Ayarları seçin" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrele..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Tümünü göster" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura Sürümü" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Makineler" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Malzemeler" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profiller" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Eklentiler" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Daha fazla seçenek görüntülemek ister misiniz?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Şimdi Yedekle" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Otomatik Yedekle" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Cura’nın başlatıldığı günlerde otomatik olarak yedekleme yapar." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "Geri Yükle" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Yedeklemeyi Sil" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Bu yedeklemeyi silmek istediğinizden emin misiniz? Bu eylem geri alınamaz." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Yedeklemeyi Geri Yükle" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Yedeklemeniz geri yüklenmeden öne Cura’yı yeniden başlatmalısınız. Cura’yı şimdi kapatmak istiyor musunuz?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Cura ayarlarınızı yedekleyin ve senkronize edin." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "Giriş yap" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Yedeklemelerim" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğmesini kullanın." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Önizleme aşamasında en fazla 5 yedekleme görüntüleyebilirsiniz. Önceki yedeklemeleri görmek için mevcut yedeklemelerden birini kaldırın." + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Yazıcı Ayarları" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Genişlik)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Derinlik)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Yükseklik)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Yapı levhası şekli" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "Merkez nokta" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "Isıtılmış yatak" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Isıtılmış yapı hacmi" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-code türü" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Yazıcı Başlığı Ayarları" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X maks" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y maks" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Portal Yüksekliği" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Ekstrüder Sayısı" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Ekstrüder ofsetlerini GCode'a uygula" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-code’u Başlat" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-code’u Sonlandır" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nozül Ayarları" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Nozzle boyutu" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Uyumlu malzeme çapı" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Nozül X ofseti" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Nozül Y ofseti" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Soğutma Fanı Numarası" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Ekstruder G-Code'u Başlatma" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Ekstruder G-Code'u Sonlandırma" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Yazıcı" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Aygıt Yazılımını Güncelle" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "Aygıt yazılımı doğrudan 3B yazıcı üzerinden çalışan bir yazılım parçasıdır. Bu aygıt yazılımı adım motorlarını kontrol eder, sıcaklığı düzenler ve sonunda yazıcının çalışmasını sağlar." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Yeni yazıcıları olan aygıt yazılımı gönderimi yararlı olmaktadır, ancak yeni sürümler daha fazla özellik ve geliştirmeye eğilimlidir." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Aygıt Yazılımını otomatik olarak yükselt" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Özel Aygıt Yazılımı Yükle" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Yazıcı ile bağlantı kurulmadığı için aygıt yazılımı güncellenemiyor." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Yazıcı bağlantısı aygıt yazılımını yükseltmeyi desteklemediği için aygıt yazılımı güncellenemiyor." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Özel aygıt yazılımı seçin" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aygıt Yazılımı Güncellemesi" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Aygıt yazılımı güncelleniyor." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Aygıt yazılımı güncellemesi tamamlandı." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Bilinmeyen bir hata nedeniyle aygıt yazılımı güncellemesi başarısız oldu." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Bir iletişim hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Bir girdi/çıktı hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Eksik aygıt yazılımı nedeniyle aygıt yazılımı güncellemesi başarısız oldu." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Proje Aç" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Var olanları güncelleştir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Yeni oluştur" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Özet - Cura Projesi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "Yazıcı ayarları" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "Makinedeki çakışma nasıl çözülmelidir?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "Tür" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "Yazıcı Grubu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "Profil ayarları" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "Profildeki çakışma nasıl çözülmelidir?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "İsim" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "Profilde değil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 geçersiz kılma" msgstr[1] "%1 geçersiz kılmalar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "Kaynağı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 geçersiz kılma" msgstr[1] "%1, %2 geçersiz kılmalar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "Malzeme ayarları" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "Malzemedeki çakışma nasıl çözülmelidir?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "Görünürlük ayarı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "Mod" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "Görünür ayarlar:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "Bir projenin yüklenmesi derleme levhasındaki tüm modelleri siler." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "Aç" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Daha fazla seçenek görüntülemek ister misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Şimdi Yedekle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Otomatik Yedekle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Cura’nın başlatıldığı günlerde otomatik olarak yedekleme yapar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Geri Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Yedeklemeyi Sil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Bu yedeklemeyi silmek istediğinizden emin misiniz? Bu eylem geri alınamaz." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Yedeklemeyi Geri Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Yedeklemeniz geri yüklenmeden öne Cura’yı yeniden başlatmalısınız. Cura’yı şimdi kapatmak istiyor musunuz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura Sürümü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Makineler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profiller" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Eklentiler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" +msgid "Post Processing Plugin" +msgstr "Son İşleme Uzantısı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Yedeklemelerim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğmesini kullanın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Önizleme aşamasında en fazla 5 yedekleme görüntüleyebilirsiniz. Önceki yedeklemeleri görmek için mevcut yedeklemelerden birini kaldırın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Cura ayarlarınızı yedekleyin ve senkronize edin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "Giriş yap" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aygıt Yazılımını Güncelle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "Aygıt yazılımı doğrudan 3B yazıcı üzerinden çalışan bir yazılım parçasıdır. Bu aygıt yazılımı adım motorlarını kontrol eder, sıcaklığı düzenler ve sonunda yazıcının çalışmasını sağlar." +msgid "Post Processing Scripts" +msgstr "Son İşleme Dosyaları" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "Dosya ekle" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Yeni yazıcıları olan aygıt yazılımı gönderimi yararlı olmaktadır, ancak yeni sürümler daha fazla özellik ve geliştirmeye eğilimlidir." +msgid "Settings" +msgstr "Ayarlar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Aygıt Yazılımını otomatik olarak yükselt" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Etkin ileri işleme komut dosyalarını değiştirin." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Özel Aygıt Yazılımı Yükle" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Aşağıdaki komut dosyası etkin:" +msgstr[1] "Aşağıdaki komut dosyaları etkin:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Yazıcı ile bağlantı kurulmadığı için aygıt yazılımı güncellenemiyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Yazıcı bağlantısı aygıt yazılımını yükseltmeyi desteklemediği için aygıt yazılımı güncellenemiyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Özel aygıt yazılımı seçin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aygıt Yazılımı Güncellemesi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aygıt yazılımı güncelleniyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aygıt yazılımı güncellemesi tamamlandı." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Bilinmeyen bir hata nedeniyle aygıt yazılımı güncellemesi başarısız oldu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Bir iletişim hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Bir girdi/çıktı hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Eksik aygıt yazılımı nedeniyle aygıt yazılımı güncellemesi başarısız oldu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "Resim Dönüştürülüyor..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "Her bir pikselin “Taban”dan en yüksek mesafesi." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "Yükseklik (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "Taban (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "Yapı levhasındaki milimetre cinsinden genişlik." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "Genişlik (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "Yapı levhasındaki milimetre cinsinden derinlik" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Derinlik (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "Litofanlar için, daha fazla ışığın girmesini engellemek amacıyla koyu renk pikseller daha kalın olan bölgelere denk gelmelidir. Yükseklik haritaları için daha açık renk pikseller daha yüksek araziyi ifade eder; bu nedenle daha açık renk piksellerin oluşturulan 3D modelde daha kalın bölgelere denk gelmesi gerekir." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Daha koyu olan daha yüksek" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Daha açık olan daha yüksek" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "Litofanlar için yarı saydamlık sağlayacak basit bir logaritmik model bulunur. Yükseklik haritaları için piksel değerleri doğrusal yüksekliklere karşılık gelir." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "Doğrusal" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Yarı saydamlık" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "1 milimetre kalınlığında bir baskıya nüfuz eden ışığın yüzdesi. Bu değerin düşürülmesi karanlık bölgelerdeki kontrastı arttırır ve görüntünün açık bölgelerindeki kontrastı azaltır." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1 mm Geçirgenlik (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "Resme uygulanacak düzeltme miktarı." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "Düzeltme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "Tamam" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "Lütfen Ultimaker Original’e yapılan herhangi bir yükseltmeyi seçin" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Isıtılmış Yapı Levhası (orijinal donanım veya şahsen yapılan)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Yapı Levhası Dengeleme" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Baskılarınızın düzgün çıktığından emin olmak için yapı levhanızı ayarlayabilirsiniz. “Sonraki Konuma Taşı” seçeneğine tıkladığınızda, nozül ayarlanabilen farklı konumlara taşınacak." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Her konum için nozülün altına bir kağıt yerleştirin ve yazdırma yapı levhasının yüksekliğini ayarlayın. Kağıt nozülün ucundan yavaşça geçerse yazdırma yapı levhasının yüksekliği doğrudur." + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Yapı Levhasını Dengelemeyi Başlat" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Sonraki Konuma Taşı" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Anonim veri toplama hakkında daha fazla bilgi" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Aşağıda, paylaşılan tüm verilerin bir örneği verilmiştir:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Anonim veri göndermek istemiyorum" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Anonim veri gönderilmesine izin ver" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "Mağaza" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "Pakette değişikliklerin geçerli olması için Cura’yı yeniden başlatmalısınız." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "%1 uygulamasından çık" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "Yükle" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "Yüklü" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "Premium" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "Web Mağazasına Git" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "Malzeme ara" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "Uyumluluk" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "Makine" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "Baskı tepsisi" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "Destek" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "Kalite" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "Teknik Veri Sayfası" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "Güvenlik Veri Sayfası" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "Yazdırma Talimatları" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "Web sitesi" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "Yükleme ve güncelleme yapabilmek için oturum açın" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "Malzeme makarası satın al" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "Güncelle" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "Güncelleniyor" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "Güncellendi" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "Geri" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "Yazıcı" +msgid "Plugins" +msgstr "Eklentiler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nozül Ayarları" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Malzemeler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "Yüklü" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "Nozzle boyutu" +msgid "Will install upon restarting" +msgstr "Yeniden başlatıldığında kurulacak" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "Güncelleme yapabilmek için oturum açın" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "Eski Sürümü Yükle" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "Kaldır" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "Topluluk Katkıları" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Uyumlu malzeme çapı" +msgid "Community Plugins" +msgstr "Topluluk Eklentileri" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Nozül X ofseti" +msgid "Generic Materials" +msgstr "Genel Materyaller" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "Paketler alınıyor..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Nozül Y ofseti" +msgid "Website" +msgstr "Web sitesi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Soğutma Fanı Numarası" +msgid "Email" +msgstr "E-posta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Ekstruder G-Code'u Başlatma" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "Ultimaker Cura Enterprise için onaylı eklenti ve malzemeleri almak için lütfen oturum açın" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Ekstruder G-Code'u Sonlandırma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Yazıcı Ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (Genişlik)" +msgid "Version" +msgstr "Sürüm" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Derinlik)" +msgid "Last updated" +msgstr "Son güncelleme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Yükseklik)" +msgid "Brand" +msgstr "Marka" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "Yapı levhası şekli" +msgid "Downloads" +msgstr "İndirmeler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "Yüklü eklentiler" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "Hiç eklenti yüklenmedi." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "Yüklü malzemeler" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "Hiç malzeme yüklenmedi." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "Paketli eklentiler" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "Paketli malzemeler" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "Cura Paket veri tabanına bağlanılamadı. Lütfen bağlantınızı kontrol edin." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "Merkez nokta" +msgid "You need to accept the license to install the package" +msgstr "Paketi yüklemek için lisansı kabul etmeniz gerekir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Hesabınızda değişiklik var" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "Kapat" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "Sonraki" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "Isıtılmış yatak" +msgid "The following packages will be added:" +msgstr "Aşağıdaki paketler eklenecek:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "Isıtılmış yapı hacmi" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Aşağıdaki paketler uyumsuz Cura sürümü nedeniyle yüklenemiyor:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "Kaldırmayı onayla" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "Kullanımda olan materyalleri ve/veya profilleri kaldırıyorsunuz. Onay verirseniz aşağıdaki materyaller/profiller varsayılan değerlerine sıfırlanacaktır." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "Malzemeler" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "Profiller" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "Onayla" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code türü" +msgid "Color scheme" +msgstr "Renk şeması" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Yazıcı Başlığı Ayarları" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Malzeme Rengi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Çizgi Tipi" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Hız" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Katman kalınlığı" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Hat Genişliği" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Akış" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X min" +msgid "Compatibility Mode" +msgstr "Uyumluluk Modu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y min" +msgid "Travels" +msgstr "Geçişler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X maks" +msgid "Helpers" +msgstr "Yardımcılar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y maks" +msgid "Shell" +msgstr "Kabuk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "Portal Yüksekliği" +msgid "Infill" +msgstr "Dolgu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "Ekstrüder Sayısı" +msgid "Starts" +msgstr "Başlangıçlar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Ekstrüder ofsetlerini GCode'a uygula" +msgid "Only Show Top Layers" +msgstr "Yalnızca Üst Katmanları Göster" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-code’u Başlat" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-code’u Sonlandır" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Üst / Alt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "İç Duvar" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "maks" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Yazıcıyı yönet" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "Cam" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Kuyruğu uzaktan yönetmek için lütfen yazıcının donanım yazılımını güncelleyin." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Bulut yazıcıları için web kamerası akışları Ultimaker Cura'dan görüntülenemez. Ultimaker Digital Factory'i ziyaret etmek ve bu web kamerasını görüntülemek için \"Yazıcıyı Yönet\"i tıklayın." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Yükleniyor..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Mevcut değil" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Ulaşılamıyor" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "Boşta" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Hazırlanıyor..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "Yazdırma" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "Başlıksız" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonim" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Yapılandırma değişiklikleri gerekiyor" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "Detaylar" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Kullanım dışı yazıcı" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "İlk kullanılabilen" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "Kuyrukta" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Tarayıcıda yönet" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Kuyrukta baskı işi yok. Bir iş eklemek için dilimleme yapın ve gönderin." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "Yazdırma görevleri" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "Toplam yazdırma süresi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "Bekleniyor" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Ağ üzerinden yazdır" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "Yazdır" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "Yazıcı seçimi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Yapılandırma Değişiklikleri" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "Geçersiz kıl" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Atanan yazıcı %1, şu yapılandırma değişikliğini gerektiriyor:" +msgstr[1] "Atanan yazıcı %1, şu yapılandırma değişikliklerini gerektiriyor:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Yazıcı %1 atandı, fakat iş bilinmeyen bir malzeme yapılandırması içeriyor." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "%2 olan %1 malzemesini %3 yapın." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "%3 malzemesini %1 malzemesi olarak yükleyin (Bu işlem geçersiz kılınamaz)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "%2 olan %1 print core'u %3 yapın." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "Baskı tablasını %1 olarak değiştirin (Bu işlem geçersiz kılınamaz)." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Geçersiz kıl seçeneği mevcut yazıcı yapılandırmasındaki ayarları kullanacaktır. Yazdırma işlemi başarısız olabilir." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "Alüminyum" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "Tamamlandı" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "İptal ediliyor..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Durduruldu" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "Başarısız" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Duraklatılıyor..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "Duraklatıldı" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Devam ediliyor..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "Eylem gerekli" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "%1 bitiş tarihi: %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Ağ Yazıcısına Bağlan" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Yazıcınıza ağ üzerinden doğrudan baskı göndermek için lütfen yazıcınızın ağ kablosuyla ağa bağlı olduğundan veya yazıcınızı WiFi ağınıza bağladığınızdan emin olun. Yazıcınız ile Cura'ya bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Aşağıdaki listeden yazıcınızı seçin:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "Düzenle" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "Kaldır" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Yenile" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Yazıcınız listede yoksa ağ yazdırma sorun giderme kılavuzunu okuyun" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "Tür" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "Üretici yazılımı sürümü" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "Adres" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Bu yazıcı, bir yazıcı grubunu barındırmak için ayarlı değildir." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Bu adresteki yazıcı henüz yanıt vermedi." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "Bağlan" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Geçersiz IP adresi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Lütfen geçerli bir IP adresi girin." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Yazıcı Adresi" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Ağdaki yazıcınızın IP adresini girin." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "En üste taşı" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "Sil" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "Devam et" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Duraklatılıyor..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "Devam ediliyor..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "Duraklat" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "İptal ediliyor..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "Durdur" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "%1 öğesini kuyruğun en üstüne taşımak ister misiniz?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Yazdırma işini en üste taşı" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "%1 öğesini silmek istediğinizden emin misiniz?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Yazdırma işini sil" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "%1 öğesini durdurmak istediğinizden emin misiniz?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Yazdırmayı durdur" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2245,1413 +3185,429 @@ msgstr "" "- Yazıcının ağa bağlı olup olmadığını kontrol edin.\n" "- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Lütfen yazıcınızı ağa bağlayın." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Kullanım kılavuzlarını çevrimiçi olarak görüntüle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "Baskınızı Cura üzerinden izlemek için lütfen yazıcıyı bağlayın." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Ağ Tipi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normal model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Destek olarak yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Çakışma ayarlarını değiştir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Çakışmaları destekleme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Yalnızca dolgu kafes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Kesme Örgüsü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Ayarları seçin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Bu modeli Özelleştirmek için Ayarları seçin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrele..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Tümünü göster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Son İşleme Uzantısı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Son İşleme Dosyaları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Dosya ekle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Ayarlar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Etkin ileri işleme komut dosyalarını değiştirin." +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "Bu yazdırmada bazı şeyler sorunlu olabilir. Ayarlama için ipuçlarını görmek için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Aşağıdaki komut dosyası etkin:" -msgstr[1] "Aşağıdaki komut dosyaları etkin:" +msgid "3D View" +msgstr "3 Boyutlu Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Renk şeması" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Malzeme Rengi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Çizgi Tipi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Hız" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Katman kalınlığı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Hat Genişliği" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Akış" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Uyumluluk Modu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Geçişler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Yardımcılar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Kabuk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Dolgu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Başlangıçlar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Yalnızca Üst Katmanları Göster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Üst / Alt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "İç Duvar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "maks" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Anonim veri toplama hakkında daha fazla bilgi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Aşağıda, paylaşılan tüm verilerin bir örneği verilmiştir:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Anonim veri göndermek istemiyorum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Anonim veri gönderilmesine izin ver" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Geri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Uyumluluk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Makine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Baskı tepsisi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Destek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Kalite" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Teknik Veri Sayfası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Güvenlik Veri Sayfası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Yazdırma Talimatları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Web sitesi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "Yüklü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Yükleme ve güncelleme yapabilmek için oturum açın" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Malzeme makarası satın al" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Güncelle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Güncelleniyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Güncellendi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Web Mağazasına Git" +msgid "Front View" +msgstr "Önden Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Yukarıdan Görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Sol görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Sağ görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "Malzeme ara" +msgid "Object list" +msgstr "Nesne listesi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Pakette değişikliklerin geçerli olması için Cura’yı yeniden başlatmalısınız." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 uygulamasından çık" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Eklentiler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Yüklü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Yeniden başlatıldığında kurulacak" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Güncelleme yapabilmek için oturum açın" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "Eski Sürümü Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Kaldır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Hesabınızda değişiklik var" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "Kapat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "Sonraki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Aşağıdaki paketler eklenecek:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Aşağıdaki paketler uyumsuz Cura sürümü nedeniyle yüklenemiyor:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Kaldırmayı onayla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "Kullanımda olan materyalleri ve/veya profilleri kaldırıyorsunuz. Onay verirseniz aşağıdaki materyaller/profiller varsayılan değerlerine sıfırlanacaktır." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profiller" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Onayla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Paketi yüklemek için lisansı kabul etmeniz gerekir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "Web sitesi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "E-posta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Sürüm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Son güncelleme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "İndirmeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "Topluluk Katkıları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "Topluluk Eklentileri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "Genel Materyaller" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Cura Paket veri tabanına bağlanılamadı. Lütfen bağlantınızı kontrol edin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Yüklü eklentiler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Hiç eklenti yüklenmedi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Yüklü malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Hiç malzeme yüklenmedi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Paketli eklentiler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Paketli malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Paketler alınıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Ultimaker Cura Enterprise için onaylı eklenti ve malzemeleri almak için lütfen oturum açın" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "Mağaza" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Yapı Levhası Dengeleme" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "&Dosya" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Baskılarınızın düzgün çıktığından emin olmak için yapı levhanızı ayarlayabilirsiniz. “Sonraki Konuma Taşı” seçeneğine tıkladığınızda, nozül ayarlanabilen farklı konumlara taşınacak." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "Düz&enle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Her konum için nozülün altına bir kağıt yerleştirin ve yazdırma yapı levhasının yüksekliğini ayarlayın. Kağıt nozülün ucundan yavaşça geçerse yazdırma yapı levhasının yüksekliği doğrudur." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Yapı Levhasını Dengelemeyi Başlat" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Ayarlar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Sonraki Konuma Taşı" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Uzantılar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Lütfen Ultimaker Original’e yapılan herhangi bir yükseltmeyi seçin" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Tercihler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Isıtılmış Yapı Levhası (orijinal donanım veya şahsen yapılan)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Yardım" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Ağ Yazıcısına Bağlan" +msgid "New project" +msgstr "Yeni proje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Yazıcınıza ağ üzerinden doğrudan baskı göndermek için lütfen yazıcınızın ağ kablosuyla ağa bağlı olduğundan veya yazıcınızı WiFi ağınıza bağladığınızdan emin olun. Yazıcınız ile Cura'ya bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz." +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "Yeni bir proje başlatmak istediğinizden emin misiniz? Bu işlem yapı levhasını ve kaydedilmemiş tüm ayarları silecektir." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Aşağıdaki listeden yazıcınızı seçin:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Düzenle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "Kaldır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Yenile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Yazıcınız listede yoksa ağ yazdırma sorun giderme kılavuzunu okuyun" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tür" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Üretici yazılımı sürümü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Bu yazıcı, bir yazıcı grubunu barındırmak için ayarlı değildir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Bu adresteki yazıcı henüz yanıt vermedi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Bağlan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Geçersiz IP adresi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Lütfen geçerli bir IP adresi girin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Yazıcı Adresi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Ağdaki yazıcınızın IP adresini girin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Yapılandırma Değişiklikleri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Geçersiz kıl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Atanan yazıcı %1, şu yapılandırma değişikliğini gerektiriyor:" -msgstr[1] "Atanan yazıcı %1, şu yapılandırma değişikliklerini gerektiriyor:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Yazıcı %1 atandı, fakat iş bilinmeyen bir malzeme yapılandırması içeriyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "%2 olan %1 malzemesini %3 yapın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3 malzemesini %1 malzemesi olarak yükleyin (Bu işlem geçersiz kılınamaz)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "%2 olan %1 print core'u %3 yapın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Baskı tablasını %1 olarak değiştirin (Bu işlem geçersiz kılınamaz)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Geçersiz kıl seçeneği mevcut yazıcı yapılandırmasındaki ayarları kullanacaktır. Yazdırma işlemi başarısız olabilir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "Cam" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alüminyum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "En üste taşı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Sil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Devam et" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Duraklatılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Devam ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Duraklat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "İptal ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Durdur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "%1 öğesini kuyruğun en üstüne taşımak ister misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Yazdırma işini en üste taşı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "%1 öğesini silmek istediğinizden emin misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Yazdırma işini sil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "%1 öğesini durdurmak istediğinizden emin misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Yazdırmayı durdur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Yazıcıyı yönet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Kuyruğu uzaktan yönetmek için lütfen yazıcının donanım yazılımını güncelleyin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Mevcut değil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Ulaşılamıyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Boşta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Hazırlanıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Yazdırma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Başlıksız" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Yapılandırma değişiklikleri gerekiyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Detaylar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Kullanım dışı yazıcı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "İlk kullanılabilen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Durduruldu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "Tamamlandı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "İptal ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Duraklatılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "Duraklatıldı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Devam ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "Eylem gerekli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%1 bitiş tarihi: %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Kuyrukta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Tarayıcıda yönet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Kuyrukta baskı işi yok. Bir iş eklemek için dilimleme yapın ve gönderin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Yazdırma görevleri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Toplam yazdırma süresi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Bekleniyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Ağ üzerinden yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "Yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "Yazıcı seçimi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Giriş yap" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Ultimaker platformuna giriş yapın" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- Marketplace'den malzeme profilleri ve eklentiler ekleyin\n" -"- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin\n" -"- Ultimaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Ücretsiz Ultimaker hesabı oluşturun" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Kontrol ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Hesap senkronize edildi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Bir sorun oluştu..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Bekleyen güncellemeleri yükle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Hesap güncellemelerini kontrol et" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Son güncelleme: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker hesabı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "Çıkış yap" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Süre tahmini yok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Maliyet tahmini yok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Önizleme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "Süre tahmini" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Malzeme tahmini" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Dilimleniyor..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Dilimlenemedi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "İşleme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "Dilimle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "Dilimleme sürecini başlat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "İptal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Çevrimiçi Sorun Giderme Kılavuzunu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Tam Ekrana Geç" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Tam Ekrandan Çık" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Geri Al" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Yinele" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Çıkış" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3 Boyutlu Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Önden Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Yukarıdan Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Alttan Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Sol Taraftan Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Sağ Taraftan Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Cura’yı yapılandır..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Yazıcı Ekle..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Yazıcıları Yönet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Malzemeleri Yönet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Mağazadan daha fazla malzeme ekle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "&Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Geçerli değişiklikleri iptal et" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "G&eçerli ayarlardan/geçersiz kılmalardan profil oluştur..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Profilleri Yönet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Çevrimiçi Belgeleri Göster" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Hata Bildir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Yenilikler" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Hakkında..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Seçileni Sil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Seçileni Ortala" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Seçileni Çoğalt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Modeli Sil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Modeli Platformda Ortala" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "Modelleri Gruplandır" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Model Grubunu Çöz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "&Modelleri Birleştir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Modeli Çoğalt..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Tüm modelleri Seç" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Yapı Levhasını Temizle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Tüm Modelleri Yeniden Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Tüm Modelleri Tüm Yapı Levhalarına Yerleştir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Tüm Modelleri Düzenle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Seçimi Düzenle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Tüm Model Konumlarını Sıfırla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Tüm Model ve Dönüşümleri Sıfırla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Dosya Aç..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Yeni Proje..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Yapılandırma Klasörünü Göster" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Görünürlük ayarını yapılandır..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Mağazayı Göster" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Bu paket yeniden başlatmanın ardından kurulacak." +msgid "Time estimation" +msgstr "Süre tahmini" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "Genel" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "Malzeme tahmini" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ayarlar" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Yazıcılar" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profiller" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "Süre tahmini yok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1 kapatılıyor" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Maliyet tahmini yok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "%1 uygulamasından çıkmak istediğinizden emin misiniz?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Önizleme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Dosya aç" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "Bir yazıcı ekleyin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Paketi Kur" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Bir ağ yazıcısı ekleyin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Dosya Aç" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Ağ dışı bir yazıcı ekleyin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Seçtiğiniz dosyalar arasında bir veya daha fazla G-code dosyası bulduk. Tek seferde sadece bir G-code dosyası açabilirsiniz. Bir G-code dosyası açmak istiyorsanız, sadece birini seçiniz." +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Bulut yazıcısı ekle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Yazıcı Ekle" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Bulut yanıtı bekleniyor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Hesabınızda hiç yazıcı bulunamıyor mu?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "Hesabınızdaki şu yazıcılar Cura'ya eklendi:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Yazıcıyı manuel olarak ekle" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "IP adresine göre bir yazıcı ekleyin" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Yazıcınızın IP adresini girin." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "Ekle" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Cihaza bağlanılamadı." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Ultimaker yazıcınıza bağlanamıyor musunuz?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "Bu adresteki yazıcı henüz yanıt vermedi." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Bu yazıcı bilinmeyen bir yazıcı olduğu veya bir grubun ana makinesi olmadığı için eklenemiyor." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "Geri" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "Bağlan" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Kullanıcı Anlaşması" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "Reddet ve kapat" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "Ultimaker Cura'ya hoş geldiniz" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"Ultimaker Cura'yı kurmak\n" +" için lütfen aşağıdaki adımları izleyin. Bu sadece birkaç saniye sürecektir." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "Başlayın" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "Ultimaker platformuna giriş yapın" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Marketplace'den malzeme ayarlarını ve eklentileri ekleyin" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "Ultimaker Topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "Atla" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "Ücretsiz Ultimaker Hesabı oluşturun" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Üretici" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "Profil sahibi" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "Yazıcı adı" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "Lütfen yazıcınızı adlandırın" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Ağınızda yazıcı bulunamadı." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "Yenile" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "IP'ye göre bir yazıcı ekleyin" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "Bulut yazıcısı ekle" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Sorun giderme" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "Ultimaker Cura'yı geliştirmemiz yardım edin" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Bu veriler aşağıdakileri içerir:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "Makine türleri" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "Malzeme kullanımı" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "Dilim sayısı" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "Yazdırma ayarları" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Ultimaker Cura tarafından toplanan veriler herhangi bir kişisel bilgi içermeyecektir." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "Daha fazla bilgi" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "Yenilikler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "Boş" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Sürüm notları" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "%1 hakkında" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "sürüm: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Kaynaşık filaman 3B yazdırma için kalıcı çözüm." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3660,183 +3616,202 @@ msgstr "" "Cura, topluluk iş birliği ile Ultimaker B.V. tarafından geliştirilmiştir.\n" "Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "Grafik kullanıcı arayüzü" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "Uygulama çerçevesi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "G-code oluşturucu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "İşlemler arası iletişim kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "Programlama dili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI çerçevesi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "GUI çerçeve bağlantıları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C/C++ Bağlantı kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "Veri değişim biçimi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "Bilimsel bilgi işlem için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "Daha hızlı matematik için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "STL dosyalarının işlenmesi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "Düzlemsel nesnelerin işlenmesi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "Üçgen birleşimlerin işlenmesi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "3MF dosyalarının işlenmesi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "Dosya meta verileri ve akış için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "Seri iletişim kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "ZeroConf keşif kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "Poligon kırpma kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Python için statik tür denetleyicisi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "SSL güvenilirliğini doğrulamak için kök sertifikalar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Python Hata takip kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Prusa Research tarafından geliştirilen Poligon paketleme kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "libnest2d için Python bağlamaları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "Sistem anahtarlık erişimi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Microsoft Windows için Python uzantıları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "Yazı tipi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVG simgeleri" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Linux çapraz-dağıtım uygulama dağıtımı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "Proje dosyası aç" +msgid "Open file(s)" +msgstr "Dosya aç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Bu bir Cura proje dosyasıdır. Bir proje olarak açmak mı yoksa içindeki modelleri içe aktarmak mı istiyorsunuz?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Seçtiğiniz dosyalar arasında bir veya daha fazla proje dosyası bulduk. Tek seferde sadece bir proje dosyası açabilirsiniz. Sadece bu dosyalarda bulunan modelleri içe aktarmanızı öneririz. Devam etmek istiyor musunuz?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Seçimimi hatırla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "Proje olarak aç" +msgid "Import all as models" +msgstr "Tümünü model olarak içe aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Projeyi Kaydet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Ekstruder %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & malzeme" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "Malzeme" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Kaydederken proje özetini bir daha gösterme" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "Modelleri içe aktar" +msgid "Save" +msgstr "Kaydet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Değişiklikleri iptal et veya kaydet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3847,1206 +3822,142 @@ msgstr "" "Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?\n" "Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "Profil ayarları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "Mevcut değişiklikler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Her zaman sor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "İptal et ve bir daha sorma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Kaydet ve bir daha sorma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "Değişiklikleri sil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "Değişiklikleri tut" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "Proje dosyası aç" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Seçtiğiniz dosyalar arasında bir veya daha fazla proje dosyası bulduk. Tek seferde sadece bir proje dosyası açabilirsiniz. Sadece bu dosyalarda bulunan modelleri içe aktarmanızı öneririz. Devam etmek istiyor musunuz?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Bu bir Cura proje dosyasıdır. Bir proje olarak açmak mı yoksa içindeki modelleri içe aktarmak mı istiyorsunuz?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Seçimimi hatırla" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Tümünü model olarak içe aktar" +msgid "Open as project" +msgstr "Proje olarak aç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Projeyi Kaydet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Ekstruder %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "Malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Kaydederken proje özetini bir daha gösterme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "Kaydet" +msgid "Import models" +msgstr "Modelleri içe aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Seçili Modeli %1 ile Yazdır" -msgstr[1] "Seçili Modelleri %1 ile Yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Başlıksız" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Dosya" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "Düz&enle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Ayarlar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Uzantılar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Tercihler" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Yardım" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "Yeni proje" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "Yeni bir proje başlatmak istediğinizden emin misiniz? Bu işlem yapı levhasını ve kaydedilmemiş tüm ayarları silecektir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Mağaza" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Yapılandırmalar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "%1 tanınmadığından bu yapılandırma kullanılamaz. Doğru malzeme profilini indirmek için lütfen %2 bölümünü ziyaret edin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Mağaza" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Kullanılabilir yapılandırmalar yazıcıdan yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Yazıcı bağlı olmadığından yapılandırmalar kullanılamıyor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "Yapılandırma seç" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "Yapılandırmalar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Özel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Yazıcı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Etkin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Bu malzeme kombinasyonuyla daha iyi yapıştırma için yapıştırıcı kullanın." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Seçili Modeli Şununla Yazdır:" -msgstr[1] "Seçili Modelleri Şununla Yazdır:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Seçili Modeli Çoğalt" -msgstr[1] "Seçili Modelleri Çoğalt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Kopya Sayısı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Projeyi Kaydet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Dışa Aktar..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Seçimi Dışa Aktar..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoriler" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Dosya Aç..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Ağ etkin yazıcılar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Yerel yazıcılar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "En Son Öğeyi Aç" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Projeyi Kaydet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Yazıcı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Etkin Ekstruder olarak ayarla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Ekstruderi Etkinleştir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Ekstruderi Devre Dışı Bırak" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Görünür ayarlar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Tüm Kategorileri Daralt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Ayar Görünürlüğünü Yönet..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Kamera konumu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Kamera görüşü" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspektif" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortografik" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Yapı levhası" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Yazıcıya bağlı değil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Yazıcı komutları kabul etmiyor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Bakımda. Lütfen yazıcıyı kontrol edin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Yazıcı bağlantısı koptu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Yazdırılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Duraklatıldı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Hazırlanıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Lütfen yazıcıyı çıkarın" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Yazdırmayı Durdur" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Yazdırmayı iptal etmek istediğinizden emin misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Destek olarak basıldı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Bu model ile çakışan diğer modeller değiştirilir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Bu model ile çakışan dolgu değiştirilir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Bu model ile çakışmalar desteklenmez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "%1 ayarı geçersiz kılar." -msgstr[1] "%1 ayarı geçersiz kılar." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "Nesne listesi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "Arayüz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "Para Birimi:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Bu değişikliklerinin geçerli olması için uygulamayı yeniden başlatmanız gerekecektir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Ayarlar değiştirilirken otomatik olarak dilimle." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Otomatik olarak dilimle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Görünüm şekli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Modelin desteklenmeyen alanlarını kırmızı ile gösterin. Destek alınmadan bu alanlar düzgün bir şekilde yazdırılmayacaktır." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Dışarıda kalan alanı göster" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Modelin eksik veya ikincil yüzeylerini uyarı işaretleri kullanarak vurgulayın. Amaçlanan geometrinin eksik parçaları genellikle takım yolları olacaktır." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Model hatalarını görüntüle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Bir model seçildiğinde bu model görüntünün ortasında kalacak şekilde kamera hareket eder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Öğeyi seçince kamerayı ortalayın" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Cura’nın varsayılan yakınlaştırma davranışı tersine çevrilsin mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Kamera yakınlaştırma yönünü ters çevir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Yakınlaştırma farenin hareket yönüne uygun olsun mu?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Fareye doğru yakınlaştırma yapılması ortografik perspektifte desteklenmez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Farenin hareket yönüne göre yakınlaştır" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Platformun üzerindeki öğeler kesişmemeleri için hareket ettirilmeli mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Modellerin birbirinden ayrı olduğundan emin olduğundan emin olun" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Platformun üzerindeki modeller yapı levhasına değmeleri için indirilmeli mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Modelleri otomatik olarak yapı tahtasına indirin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "G-code okuyucuda uyarı mesajı göster." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "G-code okuyucuda uyarı mesajı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Katman, uyumluluk moduna zorlansın mı?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Katman görünümünü uyumluluk moduna zorla (yeniden başlatma gerekir)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Cura kapatıldığı yerden mi başlatılsın?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Başlangıçtaki pencere konumuna dönülsün" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Ne tür bir kamera oluşturma işlemi kullanılmalıdır?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Kamera oluşturma:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "Perspektif" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "Ortografik" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Dosyaların açılması ve kaydedilmesi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Masaüstünden veya harici uygulamalardan açılan dosyalar aynı Cura örneğinde mi açılacak?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Tek bir Cura örneği kullan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Modeller çok büyükse yapı hacmine göre ölçeklendirilmeli mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Büyük modelleri ölçeklendirin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Bir modelin birimi milimetre değil de metre ise oldukça küçük görünebilir. Bu modeller ölçeklendirilmeli mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Çok küçük modelleri ölçeklendirin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Yüklendikten sonra modeller seçilsin mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Yüklendiğinde modelleri seç" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Yazıcı adına bağlı bir ön ek otomatik olarak yazdırma işinin adına eklenmeli mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Makine ön ekini iş adına ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Bir proje dosyasını kaydederken özet gösterilmeli mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Projeyi kaydederken özet iletişim kutusunu göster" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Bir proje dosyası açıldığında varsayılan davranış" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Bir proje dosyası açıldığında varsayılan davranış: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Her zaman sor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Her zaman proje olarak aç" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Her zaman modelleri içe aktar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Bir profil üzerinde değişiklik yapıp farklı bir profile geçtiğinizde, değişikliklerin kaydedilmesini isteyip istemediğinizi soran bir iletişim kutusu açılır. Alternatif olarak bu işleve yönelik varsayılan bir davranış seçebilir ve bu iletişim kutusunun bir daha görüntülenmemesini tercih edebilirsiniz." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "Profiller" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Farklı bir profile geçerken değişen ayar değerleriyle ilgili varsayılan davranış: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Değiştirilen ayarları her zaman at" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Değiştirilen ayarları her zaman yeni profile taşı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "Gizlilik" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Cura, program başladığında güncellemeleri kontrol etmeli mi?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Başlangıçta güncellemeleri kontrol edin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Yazdırmanızdaki anonim veriler Ultimaker’a gönderilmeli mi? Unutmayın; hiçbir model, IP adresi veya diğer kişiye özgü bilgiler gönderilmez veya saklanmaz." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(Anonim) yazdırma bilgisi gönder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "Daha fazla bilgi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "Etkinleştir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "Yeniden adlandır" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Oluştur" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Çoğalt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "İçe Aktar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "Dışa Aktar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Yazıcılarla Senkronize Et" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Yazıcı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Kaldırmayı Onayla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Malzemeyi İçe Aktar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Malzeme %1 dosyasına içe aktarılamadı: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Malzeme %1 dosyasına başarıyla içe aktarıldı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Malzemeyi Dışa Aktar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Malzemenin %1 dosyasına dışa aktarımı başarısız oldu: %2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Malzeme %1 dosyasına başarıyla dışa aktarıldı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Tüm Malzemeleri Dışa Aktar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Bilgi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Çap Değişikliğini Onayla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "Yeni filaman çapı %1 mm olarak ayarlandı ve bu değer, geçerli ekstrüder ile uyumlu değil. Devam etmek istiyor musunuz?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Görünen Ad" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Malzeme Türü" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Renk" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Özellikler" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Yoğunluk" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Çap" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Filaman masrafı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Filaman ağırlığı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Filaman uzunluğu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Metre başına maliyet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Bu malzeme %1’e bağlıdır ve özelliklerinden bazılarını paylaşır." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Malzemeyi Ayır" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Tanım" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Yapışma Bilgileri" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "Yazdırma ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Oluştur" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Çoğalt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Profil Oluştur" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Bu profil için lütfen bir ad girin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Profili Çoğalt" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Profili Yeniden Adlandır" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profili İçe Aktar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profili Dışa Aktar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Yazıcı: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Geçerli değişiklikleri iptal et" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Bu profil yazıcının belirlediği varsayılan ayarları kullanır; dolayısıyla aşağıdaki listede bulunan ayarları/geçersiz kılmaları içermez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Geçerli ayarlarınız seçilen profille uyumlu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Küresel Ayarlar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Hesaplanmış" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Ayar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Geçerli" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Birim" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Görünürlüğü Ayarlama" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Tümünü denetle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Ekstrüder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "Sıcak ucun hedef sıcaklığı. Sıcak uç, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse sıcak uç ısıtma kapatılır." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Bu sıcak ucun geçerli sıcaklığı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Sıcak ucun ön ısıtma sıcaklığı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "İptal Et" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Ön ısıtma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Yazdırma öncesinde sıcak ucu ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda sıcak ucun ısınmasını beklemeniz gerekmez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Bu ekstruderdeki malzemenin rengi." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Bu ekstruderdeki malzeme." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Bu ekstrudere takılan nozül." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Yapı levhası" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "Isıtılmış yatağın hedef sıcaklığı. Yatak, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse yatak ısıtma kapatılır." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Isıtılmış yatağın geçerli sıcaklığı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Yatağın ön ısıtma sıcaklığı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Yazdırma öncesinde yatağı ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda yatağın ısınmasını beklemeniz gerekmez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Yazıcı kontrolü" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Jog Konumu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Jog Mesafesi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-code Gönder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Bağlı yazıcıya özel bir G-code komutu gönderin. Komutu göndermek için 'enter' tuşuna basın." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Yazıcı bağlı değil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "Bulut yazıcısı çevrimdışı. Yazıcının açık ve internete bağlı olup olmadığını kontrol edin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Yazıcı hesabınızla bağlanmamış. Bağlantı kurmak için lütfen Ultimaker Digital Factory bölümünü ziyaret edin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "Bulut bağlantısı şu anda kullanılamıyor. Bulut yazıcısına bağlanmak için lütfen oturum açın." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "Bulut bağlantısı şu anda kullanılamıyor. Lütfen internet bağlantınızı kontrol edin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "Yazıcı ekle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "Yazıcıları yönet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Bağlı yazıcılar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Önayarlı yazıcılar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "Geçerli yazdırma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "İşin Adı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "Yazdırma süresi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "Kalan tahmini süre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "Bulut yazıcısı çevrimdışı. Yazıcının açık ve internete bağlı olup olmadığını kontrol edin." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Yazıcı hesabınızla bağlanmamış. Bağlantı kurmak için lütfen Ultimaker Digital Factory bölümünü ziyaret edin." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "Bulut bağlantısı şu anda kullanılamıyor. Bulut yazıcısına bağlanmak için lütfen oturum açın." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "Bulut bağlantısı şu anda kullanılamıyor. Lütfen internet bağlantınızı kontrol edin." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "Yazıcı ekle" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "Yazıcıları yönet" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "Bağlı yazıcılar" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "Önayarlı yazıcılar" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "Yazdırma ayarları" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Yazıcı kurulumu devre dışı bırakıldı. G-code dosyası düzenlenemez." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5057,120 +3968,1681 @@ msgstr "" "\n" "Profil yöneticisini açmak için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "Özel profiller" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Geçerli değişiklikleri iptal et" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "Önerilen" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "Özel" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Açık" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Kapalı" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "Deneysel" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "%2 ekstrüderindeki yapılandırmalar için %1 profili yok. Bunun yerine varsayılan amaç kullanılacak" msgstr[1] "%2 ekstrüderindeki yapılandırmalar için %1 profili yok. Bunun yerine varsayılan amaç kullanılacak" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Yazıcı kurulumu devre dışı bırakıldı. G-code dosyası düzenlenemez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Önerilen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Özel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Açık" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Kapalı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "Deneysel" +msgid "Profiles" +msgstr "Profiller" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Yapıştırma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "Bir kenar veya radye yazdırın. Bu nesnenizin etrafına veya altına daha sonra kesilmesi kolay olan düz bir alan sağlayacak." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Aşamalı dolgu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Kademeli dolgu, yukarıya doğru dolgu miktarını kademeli olarak yükselecektir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "Bazı profil ayarlarını değiştirdiniz. Bunları değişiklikleri kaydetmek istiyorsanız, özel moda gidin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "Destek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "Modellerin askıda kalan kısımlarını destekleyen yapılar oluşturun. Bu yapılar olmadan, yazdırma sırasında söz konusu kısımlar düşebilir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.\n" -"\n" -"Bu ayarları görmek için tıklayın." +msgid "Gradual infill" +msgstr "Aşamalı dolgu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Kademeli dolgu, yukarıya doğru dolgu miktarını kademeli olarak yükselecektir." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "Yapıştırma" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "Bir kenar veya radye yazdırın. Bu nesnenizin etrafına veya altına daha sonra kesilmesi kolay olan düz bir alan sağlayacak." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Projeyi Kaydet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Ağ etkin yazıcılar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Yerel yazıcılar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Malzeme" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoriler" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genel" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Seçili Modeli Şununla Yazdır:" +msgstr[1] "Seçili Modelleri Şununla Yazdır:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Seçili Modeli Çoğalt" +msgstr[1] "Seçili Modelleri Çoğalt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Kopya Sayısı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Projeyi Kaydet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Dışa Aktar..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Seçimi Dışa Aktar..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Yapılandırmalar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "Özel" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "Yazıcı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "Etkin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "Malzeme" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Bu malzeme kombinasyonuyla daha iyi yapıştırma için yapıştırıcı kullanın." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "Bu ekstrüderin yapılandırılmasına izin verilmiyor ve dilimleme yapılamaz." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Bu ekstrüderin yapılandırmasıyla eşleşen profil yok." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "Yapılandırma seç" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "Yapılandırmalar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Kullanılabilir yapılandırmalar yazıcıdan yükleniyor..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "Yazıcı bağlı olmadığından yapılandırmalar kullanılamıyor." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "%1 tanınmadığından bu yapılandırma kullanılamaz. Doğru malzeme profilini indirmek için lütfen %2 bölümünü ziyaret edin." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "Mağaza" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Dosya Aç..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Yazıcı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Malzeme" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Etkin Ekstruder olarak ayarla" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Ekstruderi Etkinleştir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Ekstruderi Devre Dışı Bırak" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "En Son Öğeyi Aç" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Görünür ayarlar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Tüm Kategorileri Daralt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Ayar Görünürlüğünü Yönet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Kamera konumu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Kamera görüşü" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspektif" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortografik" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "&Yapı levhası" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Görüntüleme tipi" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Destek olarak basıldı." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Bu model ile çakışan diğer modeller değiştirilir." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Bu model ile çakışan dolgu değiştirilir." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Bu model ile çakışmalar desteklenmez." + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "%1 ayarı geçersiz kılar." +msgstr[1] "%1 ayarı geçersiz kılar." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profiller" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "Etkinleştir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "Oluştur" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "Çoğalt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "Yeniden adlandır" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "İçe Aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "Dışa Aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Profil Oluştur" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Bu profil için lütfen bir ad girin." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Profili Çoğalt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Kaldırmayı Onayla" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Profili Yeniden Adlandır" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Profili İçe Aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profili Dışa Aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "Yazıcı: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Bu profil yazıcının belirlediği varsayılan ayarları kullanır; dolayısıyla aşağıdaki listede bulunan ayarları/geçersiz kılmaları içermez." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Geçerli ayarlarınız seçilen profille uyumlu." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Küresel Ayarlar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "Genel" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "Arayüz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "Para Birimi:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "Tema:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "Bu değişikliklerinin geçerli olması için uygulamayı yeniden başlatmanız gerekecektir." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Ayarlar değiştirilirken otomatik olarak dilimle." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Otomatik olarak dilimle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Görünüm şekli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Modelin desteklenmeyen alanlarını kırmızı ile gösterin. Destek alınmadan bu alanlar düzgün bir şekilde yazdırılmayacaktır." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Dışarıda kalan alanı göster" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Modelin eksik veya ikincil yüzeylerini uyarı işaretleri kullanarak vurgulayın. Amaçlanan geometrinin eksik parçaları genellikle takım yolları olacaktır." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Model hatalarını görüntüle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Bir model seçildiğinde bu model görüntünün ortasında kalacak şekilde kamera hareket eder" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Öğeyi seçince kamerayı ortalayın" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "Cura’nın varsayılan yakınlaştırma davranışı tersine çevrilsin mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Kamera yakınlaştırma yönünü ters çevir." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "Yakınlaştırma farenin hareket yönüne uygun olsun mu?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Fareye doğru yakınlaştırma yapılması ortografik perspektifte desteklenmez." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Farenin hareket yönüne göre yakınlaştır" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Platformun üzerindeki öğeler kesişmemeleri için hareket ettirilmeli mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Modellerin birbirinden ayrı olduğundan emin olduğundan emin olun" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Platformun üzerindeki modeller yapı levhasına değmeleri için indirilmeli mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Modelleri otomatik olarak yapı tahtasına indirin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "G-code okuyucuda uyarı mesajı göster." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "G-code okuyucuda uyarı mesajı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Katman, uyumluluk moduna zorlansın mı?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Katman görünümünü uyumluluk moduna zorla (yeniden başlatma gerekir)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Cura kapatıldığı yerden mi başlatılsın?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Başlangıçtaki pencere konumuna dönülsün" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Ne tür bir kamera oluşturma işlemi kullanılmalıdır?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Kamera oluşturma:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "Perspektif" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "Ortografik" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Dosyaların açılması ve kaydedilmesi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Masaüstünden veya harici uygulamalardan açılan dosyalar aynı Cura örneğinde mi açılacak?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Tek bir Cura örneği kullan" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "Cura'nın tek örneğinde yeni bir model yüklenmeden önce yapı plakası temizlensin mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Modeli tek örneğe yüklemeden önce yapı plakasını temizleyin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Modeller çok büyükse yapı hacmine göre ölçeklendirilmeli mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Büyük modelleri ölçeklendirin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Bir modelin birimi milimetre değil de metre ise oldukça küçük görünebilir. Bu modeller ölçeklendirilmeli mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Çok küçük modelleri ölçeklendirin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Yüklendikten sonra modeller seçilsin mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Yüklendiğinde modelleri seç" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Yazıcı adına bağlı bir ön ek otomatik olarak yazdırma işinin adına eklenmeli mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Makine ön ekini iş adına ekleyin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Bir proje dosyasını kaydederken özet gösterilmeli mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Projeyi kaydederken özet iletişim kutusunu göster" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Bir proje dosyası açıldığında varsayılan davranış" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Bir proje dosyası açıldığında varsayılan davranış: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Her zaman sor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Her zaman proje olarak aç" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Her zaman modelleri içe aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Bir profil üzerinde değişiklik yapıp farklı bir profile geçtiğinizde, değişikliklerin kaydedilmesini isteyip istemediğinizi soran bir iletişim kutusu açılır. Alternatif olarak bu işleve yönelik varsayılan bir davranış seçebilir ve bu iletişim kutusunun bir daha görüntülenmemesini tercih edebilirsiniz." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Farklı bir profile geçerken değişen ayar değerleriyle ilgili varsayılan davranış: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Değiştirilen ayarları her zaman at" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Değiştirilen ayarları her zaman yeni profile taşı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "Gizlilik" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Yazdırmanızdaki anonim veriler Ultimaker’a gönderilmeli mi? Unutmayın; hiçbir model, IP adresi veya diğer kişiye özgü bilgiler gönderilmez veya saklanmaz." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(Anonim) yazdırma bilgisi gönder" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "Daha fazla bilgi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "Güncellemeler" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "Cura, program başladığında güncellemeleri kontrol etmeli mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Başlangıçta güncellemeleri kontrol edin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Güncellemeleri kontrol ederken yalnızca istikrarlı sürümleri kontrol edin." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Yalnızca istikrarlı sürümler" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Güncellemeleri kontrol ederken hem istikrarlı hem de beta sürümleri kontrol edin." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "İstikrarlı ve Beta sürümler" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Cura her başlatıldığında yeni eklentiler için otomatik kontrol yapılsın mı? Bu seçeneği devre dışı bırakmanız kesinlikle önerilmez!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Eklenti güncellemeleri için bildirim alın" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "Bilgi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Çap Değişikliğini Onayla" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "Yeni filaman çapı %1 mm olarak ayarlandı ve bu değer, geçerli ekstrüder ile uyumlu değil. Devam etmek istiyor musunuz?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "Görünen Ad" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "Malzeme Türü" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "Renk" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "Özellikler" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "Yoğunluk" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "Çap" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Filaman masrafı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "Filaman ağırlığı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "Filaman uzunluğu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Metre başına maliyet" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Bu malzeme %1’e bağlıdır ve özelliklerinden bazılarını paylaşır." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Malzemeyi Ayır" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "Tanım" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Yapışma Bilgileri" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "Oluştur" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Çoğalt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "Yazıcılarla Senkronize Et" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "Yazıcı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Malzemeyi İçe Aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Malzeme %1 dosyasına içe aktarılamadı: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Malzeme %1 dosyasına başarıyla içe aktarıldı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Malzemeyi Dışa Aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Malzemenin %1 dosyasına dışa aktarımı başarısız oldu: %2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Malzeme %1 dosyasına başarıyla dışa aktarıldı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Malzemeleri yazıcılarla senkronize et" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Malzemeleri yazıcılarla senkronize et" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Birkaç basit adımı izleyerek tüm malzeme profillerinizi yazıcılarınızla senkronize edebileceksiniz." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "Başlat" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Malzeme profillerini neden senkronize etmem gerekiyor?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Giriş yap" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Malzeme profillerini Digital Factory'ye bağlı tüm yazıcılarınızla otomatik olarak senkronize etmek için Cura'da oturum açmanız gerekir." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Malzemeleri USB ile senkronize et" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Aşağıdaki yazıcılar yeni malzeme profillerini alacak:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Malzemeler yazıcılara gönderilirken bir sorun oluştu." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Malzeme profilleri aşağıdaki yazıcılarla başarıyla senkronize edildi:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Sorun giderme" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Yazıcı eksik mi?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Tüm yazıcılarınızın AÇIK ve Digitial Factory'ye bağlı olduğundan emin olun." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "Listeyi Yenile" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "Yeniden dene" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "Bitti" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "Senkronize et" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "Senkronize ediliyor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Yazıcı bulunamadı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Digital Factory'ye bağlı uyumlu yazıcınız yok gibi görünüyor. Yazıcınızın bağlı olduğundan ve en son donanım yazılımını çalıştırdığından emin olun." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Yazıcınızı Digital Factory'ye nasıl bağlayacağınızı öğrenin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "Yenile" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Malzeme profillerini USB üzerinden senkronize edin" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Yeni malzeme profillerini yazıcınıza yüklemek için aşağıdaki adımları izleyin." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Malzeme arşivini dışa aktar düğmesine tıklayın." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr ".umm dosyasını bir USB çubuğa kaydedin." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "USB çubuğunu yazıcınıza takın ve yeni malzeme profillerini yükleme işlemini başlatın." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Yazıcıma yeni malzeme profilleri nasıl yüklenir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "Malzeme arşivini dışa aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Tüm Malzemeleri Dışa Aktar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Görünürlüğü Ayarlama" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Tümünü denetle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "Yazıcılar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Hesaplanmış" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "Ayar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "Geçerli" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "Birim" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Yazıcıya bağlı değil" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Yazıcı komutları kabul etmiyor" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Bakımda. Lütfen yazıcıyı kontrol edin" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Yazıcı bağlantısı koptu" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Yazdırılıyor..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Duraklatıldı" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Hazırlanıyor..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Lütfen yazıcıyı çıkarın" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "Yazdırmayı Durdur" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Yazdırmayı iptal etmek istediğinizden emin misiniz?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Seçili Modeli %1 ile Yazdır" +msgstr[1] "Seçili Modelleri %1 ile Yazdır" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Yazıcılarım" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Ultimaker Digital Factory'de yazıcıları izleyin." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Digital Library'de baskı projeleri oluşturun." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Yazdırma görevleri" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Baskı işlerini takip edin ve baskı geçmişinizden yeniden baskı işlemi yapın." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Ultimaker Cura'yı eklentilerle ve malzeme profilleriyle genişletin." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Ultimaker e-öğrenme ile 3D baskı uzmanı olun." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker desteği" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Ultimaker Cura ile işe nasıl başlayacağınızı öğrenin." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Soru gönder" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Ultimaker Topluluğundan yardım alın." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Hata bildirin" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Geliştiricileri sorunlarla ilgili bilgilendirin." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Ultimaker web sitesini ziyaret edin." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "Yazıcı kontrolü" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "Jog Konumu" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Jog Mesafesi" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-code Gönder" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Bağlı yazıcıya özel bir G-code komutu gönderin. Komutu göndermek için 'enter' tuşuna basın." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "Ekstrüder" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "Sıcak ucun hedef sıcaklığı. Sıcak uç, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse sıcak uç ısıtma kapatılır." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Bu sıcak ucun geçerli sıcaklığı." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Sıcak ucun ön ısıtma sıcaklığı." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "İptal Et" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Ön ısıtma" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Yazdırma öncesinde sıcak ucu ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda sıcak ucun ısınmasını beklemeniz gerekmez." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Bu ekstruderdeki malzemenin rengi." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Bu ekstruderdeki malzeme." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Bu ekstrudere takılan nozül." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Yazıcı bağlı değil." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "Yapı levhası" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "Isıtılmış yatağın hedef sıcaklığı. Yatak, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse yatak ısıtma kapatılır." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Isıtılmış yatağın geçerli sıcaklığı." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Yatağın ön ısıtma sıcaklığı." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Yazdırma öncesinde yatağı ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda yatağın ısınmasını beklemeniz gerekmez." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "Giriş yap" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- Marketplace'den malzeme profilleri ve eklentiler ekleyin\n" +"- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin\n" +"- Ultimaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "Ücretsiz Ultimaker hesabı oluşturun" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Son güncelleme: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker hesabı" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Çıkış yap" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "Kontrol ediliyor..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "Hesap senkronize edildi" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Bir sorun oluştu..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Bekleyen güncellemeleri yükle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "Hesap güncellemelerini kontrol et" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Başlıksız" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Seçilecek öğe yok" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "Çevrimiçi Sorun Giderme Kılavuzunu" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Tam Ekrana Geç" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Tam Ekrandan Çık" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Geri Al" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Yinele" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Çıkış" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3 Boyutlu Görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Önden Görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Yukarıdan Görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Alttan Görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Sol Taraftan Görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Sağ Taraftan Görünüm" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Cura’yı yapılandır..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Yazıcı Ekle..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Yazıcıları Yönet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Malzemeleri Yönet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "Mağazadan daha fazla malzeme ekle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "&Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Geçerli değişiklikleri iptal et" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "G&eçerli ayarlardan/geçersiz kılmalardan profil oluştur..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Profilleri Yönet..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Çevrimiçi Belgeleri Göster" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Hata Bildir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Yenilikler" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Hakkında..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Seçileni Sil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Seçileni Ortala" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Seçileni Çoğalt" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Modeli Sil" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Modeli Platformda Ortala" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "Modelleri Gruplandır" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Model Grubunu Çöz" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "&Modelleri Birleştir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Modeli Çoğalt..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Tüm modelleri Seç" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Yapı Levhasını Temizle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Tüm Modelleri Yeniden Yükle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "Tüm Modelleri Tüm Yapı Levhalarına Yerleştir" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Tüm Modelleri Düzenle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Seçimi Düzenle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Tüm Model Konumlarını Sıfırla" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Tüm Model ve Dönüşümleri Sıfırla" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Dosya Aç..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Yeni Proje..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Yapılandırma Klasörünü Göster" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Görünürlük ayarını yapılandır..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "&Mağazayı Göster" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Etkilediği tüm ayarlar geçersiz kılındığı için bu ayar kullanılmamaktadır." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Etkileri" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr ".........den etkilenir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Bu ayar her zaman, tüm ekstrüderler arasında paylaşılır. Buradan değiştirildiğinde tüm ekstrüderler için değer değiştirir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Bu ayar, çakışan ekstrüdere özgü değerlerden çözümlenir:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5181,7 +5653,7 @@ msgstr "" "\n" "Profil değerini yenilemek için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5192,509 +5664,92 @@ msgstr "" "\n" "Hesaplanan değeri yenilemek için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "Arama ayarları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Değeri tüm ekstruderlere kopyala" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Tüm değiştirilmiş değerleri tüm ekstruderlere kopyala" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Bu ayarı gizle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Bu ayarı gösterme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Bu ayarı görünür yap" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3 Boyutlu Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Önden Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Yukarıdan Görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Sol görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Sağ görünüm" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "Görüntüleme tipi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Bulut yazıcısı ekle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Bulut yanıtı bekleniyor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Hesabınızda hiç yazıcı bulunamıyor mu?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "Hesabınızdaki şu yazıcılar Cura'ya eklendi:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Yazıcıyı manuel olarak ekle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Üretici" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "Profil sahibi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "Yazıcı adı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Lütfen yazıcınızı adlandırın" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Bir yazıcı ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Bir ağ yazıcısı ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Ağ dışı bir yazıcı ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Ağınızda yazıcı bulunamadı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Yenile" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "IP'ye göre bir yazıcı ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Bulut yazıcısı ekle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Sorun giderme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "IP adresine göre bir yazıcı ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Yazıcınızın IP adresini girin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Ekle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Cihaza bağlanılamadı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimaker yazıcınıza bağlanamıyor musunuz?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "Bu adresteki yazıcı henüz yanıt vermedi." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Bu yazıcı bilinmeyen bir yazıcı olduğu veya bir grubun ana makinesi olmadığı için eklenemiyor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "Geri" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "Bağlan" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Sürüm notları" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Marketplace'den malzeme ayarlarını ve eklentileri ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ultimaker Topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Ücretsiz Ultimaker Hesabı oluşturun" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "Atla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ultimaker Cura'yı geliştirmemiz yardım edin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Bu veriler aşağıdakileri içerir:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Makine türleri" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Malzeme kullanımı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Dilim sayısı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Yazdırma ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura tarafından toplanan veriler herhangi bir kişisel bilgi içermeyecektir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Daha fazla bilgi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Boş" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Kullanıcı Anlaşması" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Reddet ve kapat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura'ya hoş geldiniz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" -"Ultimaker Cura'yı kurmak\n" -" için lütfen aşağıdaki adımları izleyin. Bu sadece birkaç saniye sürecektir." +"Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.\n" +"\n" +"Bu ayarları görmek için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Başlayın" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Bu paket yeniden başlatmanın ardından kurulacak." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ayarlar" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "%1 kapatılıyor" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "%1 uygulamasından çıkmak istediğinizden emin misiniz?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Paketi Kur" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Dosya Aç" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Seçtiğiniz dosyalar arasında bir veya daha fazla G-code dosyası bulduk. Tek seferde sadece bir G-code dosyası açabilirsiniz. Bir G-code dosyası açmak istiyorsanız, sadece birini seçiniz." + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Yazıcı Ekle" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "Yenilikler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "Seçilecek öğe yok" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Model Kontrol Edici" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF dosyalarının okunması için destek sağlar." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF Okuyucu" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF dosyalarının yazılması için destek sağlar." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Yazıcı" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF dosyalarının okunması için destek sağlar." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF Okuyucu" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Arka Uç" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura profillerinin içe aktarılması için destek sağlar." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura Profil Okuyucu" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura profillerinin dışa aktarılması için destek sağlar." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura Profili Yazıcı" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Bellenim güncellemelerini denetler." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Bellenim Güncelleme Denetleyicisi" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aygıt Yazılımı Güncelleyici" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Bir sıkıştırılmış arşivden g-code okur." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Sıkıştırılmış G-code Okuyucusu" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-code’u bir sıkıştırılmış arşive yazar." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Sıkıştırılmış G-code Yazıcısı" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code Profil Okuyucu" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code Okuyucu" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G-code’u bir dosyaya yazar." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code Yazıcı" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Resim Okuyucu" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Eski Cura Profil Okuyucu" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Makine Ayarları eylemi" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura’da görüntüleme aşaması sunar." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Görüntüleme Aşaması" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5705,85 +5760,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "Model Başına Ayarlar Aracı" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" +msgid "Provides support for importing Cura profiles." +msgstr "Cura profillerinin içe aktarılması için destek sağlar." -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Son İşleme" +msgid "Cura Profile Reader" +msgstr "Cura Profil Okuyucu" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura’da hazırlık aşaması sunar." +msgid "Provides support for reading X3D files." +msgstr "X3D dosyalarının okunması için destek sağlar." -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "Hazırlık Aşaması" +msgid "X3D Reader" +msgstr "X3D Okuyucu" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura’da ön izleme aşaması sunar." +msgid "Backup and restore your configuration." +msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "Öz İzleme Aşaması" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Nöbetçi Günlükçü" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "Simülasyon görünümünü sunar." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Simülasyon Görünümü" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Dilim bilgisi" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Normal gerçek bir ağ görünümü sağlar." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Gerçek Görünüm" +msgid "Machine Settings Action" +msgstr "Makine Ayarları eylemi" #: SupportEraser/plugin.json msgctxt "description" @@ -5795,35 +5810,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "Destek Silici" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Yeni Cura paketleri bulun, yönetin ve kurun." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Araç kutusu" +msgid "Removable Drive Output Device Plugin" +msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Model dosyalarını okuma desteği sağlar." +msgid "Provides a machine actions for updating firmware." +msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Okuyucu" +msgid "Firmware Updater" +msgstr "Aygıt Yazılımı Güncelleyici" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "UFP Okuyucu" +msgid "Legacy Cura Profile Reader" +msgstr "Eski Cura Profil Okuyucu" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF dosyalarının okunması için destek sağlar." + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF Okuyucu" #: UFPWriter/plugin.json msgctxt "description" @@ -5835,25 +5860,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "UPF Yazıcı" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker makine eylemleri" +msgid "Sentry Logger" +msgstr "Nöbetçi Günlükçü" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Ultimaker ağındaki yazıcılar için ağ bağlantılarını yönetir." +msgid "Provides support for importing profiles from g-code files." +msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker Ağ Bağlantısı" +msgid "G-code Profile Reader" +msgstr "G-code Profil Okuyucu" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura’da ön izleme aşaması sunar." + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Öz İzleme Aşaması" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Röntgen Görüntüsü sağlar." + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen Görüntüsü" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Arka Uç" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF dosyalarının okunması için destek sağlar." + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF Okuyucu" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Bir sıkıştırılmış arşivden g-code okur." + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Sıkıştırılmış G-code Okuyucusu" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Son İşleme" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura profillerinin dışa aktarılması için destek sağlar." + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura Profili Yazıcı" #: USBPrinting/plugin.json msgctxt "description" @@ -5865,25 +5960,135 @@ msgctxt "name" msgid "USB printing" msgstr "USB yazdırma" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." +msgid "Provides a prepare stage in Cura." +msgstr "Cura’da hazırlık aşaması sunar." -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1’den 2.2’ye Sürüm Yükseltme" +msgid "Prepare Stage" +msgstr "Hazırlık Aşaması" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." +msgid "Allows loading and displaying G-code files." +msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2’den 2.4’e Sürüm Yükseltme" +msgid "G-code Reader" +msgstr "G-code Okuyucu" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Resim Okuyucu" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ultimaker makine eylemleri" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-code’u bir sıkıştırılmış arşive yazar." + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Sıkıştırılmış G-code Yazıcısı" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Bellenim güncellemelerini denetler." + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Bellenim Güncelleme Denetleyicisi" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Dilim bilgisi" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Malzeme Profilleri" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "Yeni Cura paketleri bulun, yönetin ve kurun." + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "Araç kutusu" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G-code’u bir dosyaya yazar." + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code Yazıcı" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "Simülasyon görünümünü sunar." + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Simülasyon Görünümü" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5895,55 +6100,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7’den 3.0’a Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0'dan 3.1'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2'dan 3.3'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3'dan 3.4'e Sürüm Yükseltme" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7'den 4.8'e Sürüm Yükseltme" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5955,35 +6130,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "3.4’ten 3.5’e Sürüm Yükseltme" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5’ten 4.0’a Sürüm Yükseltme" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1’den 2.2’ye Sürüm Yükseltme" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0’dan 4.1’e Sürüm Yükseltme" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2'dan 3.3'e Sürüm Yükseltme" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8'den 4.9'a Sürüm Yükseltme" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -6005,66 +6190,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "4.3'ten 4.4'e Sürüm Yükseltme" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4'ten 4.5'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7'den 4.8'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8'den 4.9'a Sürüm Yükseltme" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6075,35 +6200,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "4.9'dan 4.10'a Sürüm Yükseltme" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D dosyalarının okunması için destek sağlar." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3D Okuyucu" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7’den 3.0’a Sürüm Yükseltme" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Malzeme Profilleri" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Röntgen Görüntüsü sağlar." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen Görüntüsü" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11'den 4.12'ye Sürüm Yükseltme" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3'dan 3.4'e Sürüm Yükseltme" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0'dan 3.1'e Sürüm Yükseltme" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0’dan 4.1’e Sürüm Yükseltme" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4'ten 4.5'e Sürüm Yükseltme" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2’den 2.4’e Sürüm Yükseltme" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5’ten 4.0’a Sürüm Yükseltme" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Ultimaker ağındaki yazıcılar için ağ bağlantılarını yönetir." + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker Ağ Bağlantısı" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Model dosyalarını okuma desteği sağlar." + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Okuyucu" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP Okuyucu" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Normal gerçek bir ağ görünümü sağlar." + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Gerçek Görünüm" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MF dosyalarının yazılması için destek sağlar." + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF Yazıcı" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura’da görüntüleme aşaması sunar." + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Görüntüleme Aşaması" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Model Kontrol Edici" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "Ultimaker hesabınızı kullanarak yazdırma görevlerini dilediğiniz yerden gönderin ve görüntüleyin." + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "Ultimaker Digital Factory'e Bağlan" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "Bulut yazıcıları için web kamerası akışları Ultimaker Cura'dan görüntülenemez." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "{machine_name} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "Yeni %s bellenimi mevcut" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index 74b7cd1a7c..e4fc701181 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2021-04-16 15:03+0200\n" "Last-Translator: Bothof \n" "Language-Team: Turkish\n" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index ed189efda7..f3362c7c9f 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -4,17 +4,17 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" -"PO-Revision-Date: 2021-04-16 15:03+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" +"PO-Revision-Date: 2022-01-10 12:00+0100\n" "Last-Translator: Lionbridge \n" "Language-Team: Turkish , Turkish \n" "Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 2.3\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -71,7 +71,7 @@ msgid "" "G-code commands to be executed at the very end - separated by \n" "." msgstr "" -"ile ayrılan, bitişte yürütülecek G-code komutları\n" +"Ile ayrılan, bitişte yürütülecek G-code komutları\n" "." #: fdmprinter.def.json @@ -154,6 +154,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "Yazdırılabilir alan derinliği (Y yönü)." +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Makine Yüksekliği" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -194,16 +204,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Alüminyum" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Makine Yüksekliği" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -561,8 +561,8 @@ msgstr "Z yönü motoru için maksimum hız." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "Maksimum besleme hızı" +msgid "Maximum Speed E" +msgstr "Maksimum Hız E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -686,8 +686,8 @@ msgstr "Milimetre Başına Adım (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "Kademeli motorun kaç adımının, bir milimetre ekstruzyon ile sonuçlanacağı." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir." +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotonik Üst/Alt Düzeni" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst/alt hat baskısı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "Zikzak" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotonik Ütüleme Düzeni" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle hatları ütüleyerek baskı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1711,8 +1731,8 @@ msgstr "Dolgu Şekli" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller, her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir." +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca tavanını destekleyerek dolgu miktarını en aza indirmeye çalışır." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1779,6 +1799,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Yıldırım" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1993,6 +2018,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı." +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Yıldırım Dolgu Destek Açısı" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Bir yıldırım dolgu tabakasının üstünde kalanları ne zaman desteklenmesi gerektiğini belirler. Bir katmanın kalınlığı verilen açıyla ölçülür." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Yıldırım Dolgu Çıkıntı Açısı" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Bir yıldırım dolgu tabakasının üstündeki modeli ne zaman desteklemesi gerektiğini belirler. Dalların açısı olarak ölçülür." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Yıldırım Dolgu Budama Açısı" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Malzemeden tasarruf etmek için dolgu hatlarının uç noktaları kısaltılır. Bu ayar, bu hatların uç noktalarının çıkıntı açısıdır." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Yıldırım Dolgu Düzleştirme Açısı" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3183,6 +3248,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "Tümü" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Dış Yüzeyde Değil" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -3201,8 +3271,7 @@ msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" #: fdmprinter.def.json msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde" -" geri çekme kullanılmaz." +msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz." #: fdmprinter.def.json msgctxt "travel_retract_before_outer_wall label" @@ -5135,8 +5204,8 @@ msgstr "Minimum Kalıp Genişliği" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafe." +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir." #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5303,6 +5372,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "Zikzak" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotonik Üst Yüzey Düzeni" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst yüzey hatlarının baskısını yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6402,6 +6481,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi." +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "ile ayrılan, başlangıçta yürütülecek G-code komutları \\n." + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "ile ayrılan, bitişte yürütülecek G-code komutları \\n." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maksimum besleme hızı" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca (iç) çatılarını destekleyerek dolgu miktarını en aza indirmeye çalışır. Bu durumda dolgu yüzdesi yalnızca bir katmanın altında 'geçerli' olur ve modeli destekler." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "Bir yıldırım dolgu katmanının hemen üstündeki katmanla ağaçların dış uzantılarının budanması şeklinde sahip olabileceği farktır. Dalların açısı olarak ölçülür." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "Bir yıldırım dolgu katmanının hemen üstündeki katmanla ağaçların düzlenmesi şeklinde sahip olabileceği farktır. Dalların açısı olarak ölçülür." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller, her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafe." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Kademeli motorun kaç adımının, bir milimetre ekstruzyon ile sonuçlanacağı." + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "Sıfır olmadığında, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 6ef1643c6f..ab248b8cae 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" "PO-Revision-Date: 2021-04-16 15:04+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Chinese , PCDotFan , Chinese \n" @@ -17,180 +17,449 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 2.4.1\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "未知" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "不能从用户数据目录创建存档: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "无法连接到下列打印机,因为这些打印机已在组中" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "备份" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "可用的网络打印机" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "未覆盖" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "尝试恢复的 Cura 备份版本高于当前版本。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "尝试恢复 Cura 备份时出现以下错误:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "请在开始打印之前将材料配置文件与您的打印机同步。" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "新材料已装载" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "同步材料与打印机" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "详细了解" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "未能将材料存档保存到 {}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "未能保存材料存档" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "未知错误。" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "由于“打印序列”设置的值,成形空间体积高度已被减少,以防止十字轴与打印模型相冲突。" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "成形空间体积" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "是否确实要删除 {0}?此操作无法撤消!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "未覆盖" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "未知" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "无法连接到下列打印机,因为这些打印机已在组中" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "可用的网络打印机" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "Default" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "视觉" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "视觉配置文件用于打印视觉原型和模型,可实现出色的视觉效果和表面质量。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "工程配置文件用于打印功能性原型和最终用途部件,可提高准确性和减小公差。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "草稿" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "自定义材料" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "自定义" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "自定义配置文件" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "所有支持的文件类型 ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有文件 (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "视觉" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "视觉配置文件用于打印视觉原型和模型,可实现出色的视觉效果和表面质量。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "工程配置文件用于打印功能性原型和最终用途部件,可提高准确性和减小公差。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "草稿" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "自定义材料" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "自定义" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "登录失败" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "正在为模型寻找新位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "正在寻找位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "无法在成形空间体积内放下全部模型" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "找不到位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "不能从用户数据目录创建存档: {}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "无法创建材料存档以与打印机同步。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "备份" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "无法加载材料存档以与打印机同步。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "来自 Digital Factory 的响应似乎已损坏。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "尝试恢复的 Cura 备份版本高于当前版本。" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "来自 Digital Factory 的响应缺少重要信息。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "尝试恢复 Cura 备份时出现以下错误:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "无法通过 Digital Factory 为某些打印机同步材料配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "无法连接至 Digital Factory。" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "正在载入打印机..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "正在设置偏好设置..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "正在初始化当前机器..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "正在初始化机器管理器..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "正在初始化成形空间体积..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "正在设置场景..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "正在载入界面..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "正在初始化引擎..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "由于“打印序列”设置的值,成形空间体积高度已被减少,以防止十字轴与打印模型相冲突。" +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "成形空间体积" +msgid "Warning" +msgstr "警告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "如果加载 G-code,则无法打开其他任何文件。{0} 已跳过导入" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "错误" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "跳过" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "关闭" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "下一步" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "完成" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "添加" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "组 #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "外壁" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "内壁" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "表层" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "填充" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "支撑填充" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "支撑接触面" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "支撑" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "装填塔" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "移动" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "回抽" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "其它" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "无法打开版本说明。" + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 无法启动" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -205,32 +474,32 @@ msgstr "" "

    请向我们发送此错误报告,以便解决问题。

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "向 Ultimaker 发送错误报告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "显示详细的错误报告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "显示配置文件夹" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "备份并重置配置" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "错误报告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -241,491 +510,1264 @@ msgstr "" "

    请使用“发送报告”按钮将错误报告自动发布到我们的服务器

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "系统信息" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "未知" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 语言" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "操作系统语言" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "平台" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "尚未初始化
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 版本: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 供应商: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL 渲染器: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "错误追溯" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "日志" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "发送报告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "正在载入打印机..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "正在设置偏好设置..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "正在初始化当前机器..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "正在初始化机器管理器..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "正在初始化成形空间体积..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "正在设置场景..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "正在载入界面..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "正在初始化引擎..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "警告" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "如果加载 G-code,则无法打开其他任何文件。{0} 已跳过导入" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "错误" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "复制并放置模型" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "放置模型" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "放置模型" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "无法读取响应。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "所提供的状态不正确。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "在授权此应用程序时,须提供所需权限。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "尝试登录时出现意外情况,请重试。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "无法连接 Ultimaker 帐户服务器。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "登录失败" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "所提供的状态不正确。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "使用帐户服务器进行身份验证超时。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "在授权此应用程序时,须提供所需权限。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "尝试登录时出现意外情况,请重试。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "无法读取响应。" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "复制并放置模型" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "放置模型" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "放置模型" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "不支持" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "喷嘴" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "已根据挤出机的当前可用性更改设置:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "设置已更新" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "挤出机已禁用" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "文件已存在" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "文件 {0} 已存在。您确定要覆盖它吗?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "文件 URL 无效:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "无法将配置文件导出至 {0} {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "无法将配置文件导出至 {0} : 写入器插件报告故障。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "配置文件已导出至: {0} " -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "导出成功" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "无法从 {0} 导入配置文件:{1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "无法在添加打印机前从 {0} 导入配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "没有可导入文件 {0} 的自定义配置文件" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "此配置文件 {0} 包含错误数据,无法导入。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功导入配置文件 {0}。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "文件 {0} 不包含任何有效的配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "配置 {0} 文件类型未知或已损坏。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "自定义配置文件" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "配置文件缺少打印质量类型定义。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "尚无处于活动状态的打印机。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "无法添加配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:配置文件不可见,因为其质量类型“{0}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "不支持" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "喷嘴" +msgid "Per Model Settings" +msgstr "单一模型设置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "已根据挤出机的当前可用性更改设置:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "设置对每个模型的单独设定" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura 配置文件" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 文件" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "尝试恢复您的备份时出错。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "设置已更新" +msgid "Backups" +msgstr "备份" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "上传您的备份时出错。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "正在创建您的备份..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "创建您的备份时出错。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "正在上传您的备份..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "您的备份已完成上传。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "备份超过了最大文件大小。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "管理备份" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "打印机设置" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "支撑拦截器" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "创建一个不打印支撑的体积。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "可移动磁盘" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "保存至可移动磁盘" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "保存到可移动磁盘 {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "没有可进行写入的文件格式!" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "保存到可移动磁盘 {0} " + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "挤出机已禁用" +msgid "Saving" +msgstr "正在保存" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "无法保存到 {0}{1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "尝试写入到 {device} 时找不到文件名。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "无法保存到可移动磁盘 {0}:{1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "保存到可移动磁盘 {0} :{1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "文件已保存" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 msgctxt "@action:button" -msgid "Add" -msgstr "添加" +msgid "Eject" +msgstr "弹出" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "弹出可移动设备 {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "安全移除硬件" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "更新固件" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 配置文件" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "推荐" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "自定义" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "项目文件 {0} 包含未知机器类型 {1}。无法导入机器。将改为导入模型。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "打开项目文件" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "突然无法访问项目文件 {0}{1}。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "无法打开项目文件" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "项目文件 {0} 损坏: {1}。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." +msgstr "项目文件 {0} 是用此 Ultimaker Cura 版本未识别的配置文件制作的。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF 文件" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "无法写入到 UFP 文件:" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 +#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "Ultimaker Format Package" +msgstr "Ultimaker 格式包" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "GCode 文件" + +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "预览" + +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "透视视图" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "正在处理层" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "信息" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "切片失败" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "报告错误" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "在 Ultimaker Cura 问题跟踪器上报告错误。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "无法切片" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "无法切片(原因:主塔或主位置无效)。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"请检查设置并检查您的模型是否:\n" +"- 适合构建体积\n" +"- 分配给了已启用的挤出器\n" +"- 尚未全部设置为修改器网格" + +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF 文件" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "压缩 G-code 文件" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "后期处理" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "修改 G-Code" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB 联机打印" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "通过 USB 联机打印" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "通过 USB 联机打印" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "通过 USB 连接" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "正在进行 USB 打印,关闭 Cura 将停止此打印。您确定吗?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "正在进行打印" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "准备" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "解析 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-code 详细信息" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "发送文件之前,请确保 G-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G 文件" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG 图像" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG 图像" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG 图像" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP 图像" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF 图像" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "调平打印平台" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "选择升级" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter 不支持文本模式。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "无法获取更新信息。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将其更新为 {latest_version} 版。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "新 %s 稳定固件可用" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" -msgid "Finish" -msgstr "完成" +msgid "How to update" +msgstr "如何更新" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "无法读取示例数据文件。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "需要退出并重新启动 {},然后更改才能生效。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "正在同步..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "检测到您的 Ultimaker 帐户有更改" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "是否要与您的帐户同步材料和软件包?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 msgctxt "@action:button" -msgid "Cancel" -msgstr "取消" +msgid "Sync" +msgstr "同步" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "拒绝并从帐户中删除" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} 个插件下载失败" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "拒绝" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "同意" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "插件许可协议" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter 不支持非文本模式。" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "导出前请先准备 G-code。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "启用“单线打印”后,Cura 将无法准确地显示打印层。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "仿真视图" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "由于需要先切片,因此未显示任何内容。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "无层可显示" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "不再显示此消息" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "分层视图" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "通过网络打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "通过网络打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "已通过网络连接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "明天" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "今天" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "通过网络连接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "请等待当前作业完成发送。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "打印错误" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "打印作业已成功发送到打印机。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "数据已发送" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "您正在尝试连接未运行 Ultimaker Connect 的打印机。请将打印机更新至最新固件。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "请更新升级打印机" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "打印作业队列已满。打印机无法接受新作业。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "队列已满" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "发送打印作业" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "正在将打印作业上传至打印机。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机打印机上。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "正在将材料发送到打印机" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "无法将数据上传到打印机。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "网络错误" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "您正在尝试连接到 {0},但它不是组中的主机。您可以访问网页,将其配置为组主机。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "非组中的主机" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "配置组" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"未能通过云连接您的打印机 {printer_name}。\n" +"只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "是否进行云打印?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "开始" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "了解详情" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "通过云打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "通过云打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "通过云连接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "监控打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "在 Ultimaker Digital Factory 中跟踪打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "上传打印作业时出现未知错误代码:{0}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "从您的 Ultimaker 帐户中检测到新的打印机" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "正在从您的帐户添加打印机 {name} ({model})" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... 和另外 {0} 台" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "从 Digital Factory 添加的打印机:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "某些打印机无云连接可用" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "这些打印机未链接到 Digital Factory:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "要建立连接,请访问 {website_link}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "保留打印机配置" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "删除打印机" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "将删除 {printer_name},直到下次帐户同步为止。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "要永久删除 {printer_name},请访问 {digital_factory_link}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "是否确实要暂时删除 {printer_name}?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "是否删除打印机?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "组 #{group_nr}" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n" +"是否确实要继续?" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "外壁" +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"您即将从 Cura 中删除所有打印机。此操作无法撤消。\n" +"是否确定继续?" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "内壁" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "打开压缩三角网格" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "表层" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA 数据资源交换" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "填充" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF 二进制" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "支撑填充" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF 嵌入式 JSON" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "支撑接触面" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "斯坦福三角格式" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "支撑" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "压缩 COLLADA 数据资源交换" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "突出显示的区域指示缺少或多余的表面。修复模型,并再次在 Cura 中打开。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "装填塔" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "模型错误" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "移动" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "实体视图" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "回抽" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "写入 3mf 文件时出错。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "其它" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF 编写器插件已损坏。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "下一步" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "没有可写入的工作区。请先添加打印机。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "跳过" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "没有在此处写入工作区的权限。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "关闭" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "操作系统不允许向此位置或用此文件名保存项目文件。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF 文件" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura 项目 3MF 文件" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "监控" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "三维模型的助理" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -739,1491 +1781,1529 @@ msgstr "" "

    找出如何确保最好的打印质量和可靠性.

    \n" "

    查看打印质量指南

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "项目文件 {0} 包含未知机器类型 {1}。无法导入机器。将改为导入模型。" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +msgctxt "@label" +msgid "Mesh Type" +msgstr "网格类型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "打开项目文件" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "正常模式" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "突然无法访问项目文件 {0}{1}。" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "打印为支撑" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "无法打开项目文件" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "修改重叠设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "项目文件 {0} 损坏: {1}。" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "不支持重叠" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." -msgstr "项目文件 {0} 是用此 Ultimaker Cura 版本未识别的配置文件制作的。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推荐" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "自定义" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 文件" +msgid "Infill mesh only" +msgstr "仅填充网格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 编写器插件已损坏。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "没有在此处写入工作区的权限。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "操作系统不允许向此位置或用此文件名保存项目文件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "写入 3mf 文件时出错。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 文件" +msgid "Cutting mesh" +msgstr "切割网格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 项目 3MF 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "上传您的备份时出错。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "正在创建您的备份..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "创建您的备份时出错。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "正在上传您的备份..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "您的备份已完成上传。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "备份超过了最大文件大小。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "尝试恢复您的备份时出错。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "管理备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "无法切片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "无法切片(原因:主塔或主位置无效)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"请检查设置并检查您的模型是否:\n" -"- 适合构建体积\n" -"- 分配给了已启用的挤出器\n" -"- 尚未全部设置为修改器网格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "正在处理层" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "信息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "无法获取更新信息。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将它更新为 {latest_version} 版。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "新 %s 固件可用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 msgctxt "@action:button" -msgid "How to update" -msgstr "如何更新" +msgid "Select settings" +msgstr "选择设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "选择对此模型的自定义设置" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "筛选..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "显示全部" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura 备份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura 版本" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "机器" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "配置文件" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "插件" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "想要更多?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "立即备份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "自动备份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "在 Cura 每天启动时自动创建备份。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "恢复" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "删除备份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "您确定要删除此备份吗?此操作无法撤销。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "恢复备份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "您需要重新启动 Cura 才能恢复备份。您要立即关闭 Cura 吗?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "备份并同步您的 Cura 设置。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "登录" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "我的备份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个备份。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "在预览阶段,将限制为 5 个可见备份。移除一个备份以查看更早的备份。" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "打印机设置" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (宽度)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (深度)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (高度)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "打印平台形状" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "置中" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "加热床" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "加热的构建体积" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-code 风格" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "打印头设置" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X 最小值" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y 最小值" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X 最大值" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y 最大值" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "十字轴高度" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "挤出机数目" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "将挤出器偏移量应用于 GCode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "开始 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "结束 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "喷嘴设置" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "喷嘴孔径" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "兼容的材料直径" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "喷嘴偏移 X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "喷嘴偏移 Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "冷却风扇数量" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "挤出机的开始 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "挤出机的结束 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "打印机" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" msgid "Update Firmware" msgstr "更新固件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "压缩 G-code 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter 不支持文本模式。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "GCode 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "解析 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code 详细信息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "发送文件之前,请确保 G-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter 不支持非文本模式。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "导出前请先准备 G-code。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "打印机设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "监控" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 msgctxt "@label" -msgid "Per Model Settings" -msgstr "单一模型设置" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "固件是直接在 3D 打印机上运行的一个软件。此固件控制步进电机,调节温度并最终使打印机正常工作。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "设置对每个模型的单独设定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "后期处理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "修改 G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "准备" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "预览" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "保存至可移动磁盘" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "保存到可移动磁盘 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "没有可进行写入的文件格式!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "保存到可移动磁盘 {0} " - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -msgctxt "@info:title" -msgid "Saving" -msgstr "正在保存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "无法保存到 {0}{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "尝试写入到 {device} 时找不到文件名。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "无法保存到可移动磁盘 {0}:{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "保存到可移动磁盘 {0} :{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "文件已保存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "弹出" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "弹出可移动设备 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "安全移除硬件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "可移动磁盘" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "启用“单线打印”后,Cura 将无法准确地显示打印层。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "仿真视图" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "由于需要先切片,因此未显示任何内容。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "无层可显示" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "不再显示此消息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "分层视图" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "突出显示的区域指示缺少或多余的表面。修复模型,并再次在 Cura 中打开。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "模型错误" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "详细了解" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "实体视图" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 msgctxt "@label" -msgid "Support Blocker" -msgstr "支撑拦截器" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "创建一个不打印支撑的体积。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "是否要与您的帐户同步材料和软件包?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "检测到您的 Ultimaker 帐户有更改" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 msgctxt "@action:button" -msgid "Sync" -msgstr "同步" +msgid "Automatically upgrade Firmware" +msgstr "自动升级固件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "正在同步..." +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "上传自定义固件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "拒绝" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "未连接打印机,无法更新固件。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "同意" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "插件许可协议" +msgid "Select custom firmware" +msgstr "选择自定义固件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒绝并从帐户中删除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "需要退出并重新启动 {},然后更改才能生效。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} 个插件下载失败" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "打开压缩三角网格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA 数据资源交换" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF 二进制" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF 嵌入式 JSON" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "斯坦福三角格式" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "压缩 COLLADA 数据资源交换" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 格式包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "无法写入到 UFP 文件:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "调平打印平台" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "选择升级" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "通过云打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "通过云打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "通过云连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "上传打印作业时出现未知错误代码:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "从您的 Ultimaker 帐户中检测到新的打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "正在从您的帐户添加打印机 {name} ({model})" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... 和另外 {0} 台" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "从 Digital Factory 添加的打印机:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "某些打印机无云连接可用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "这些打印机未链接到 Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "要建立连接,请访问 {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "保留打印机配置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "删除打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "将删除 {printer_name},直到下次帐户同步为止。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "要永久删除 {printer_name},请访问 {digital_factory_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "是否确实要暂时删除 {printer_name}?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 msgctxt "@title:window" -msgid "Remove printers?" -msgstr "是否删除打印机?" +msgid "Firmware Update" +msgstr "固件升级" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 -#, python-brace-format +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n" -"是否确实要继续?" +msgid "Updating firmware." +msgstr "更新固件中..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"您即将从 Cura 中删除所有打印机。此操作无法撤消。\n" -"是否确定继续?" +msgid "Firmware update completed." +msgstr "固件更新已完成。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 -msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "使用您的 Ultimaker account 帐户从任何地方发送和监控打印作业。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "连接到 Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "开始" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "您正在尝试连接未运行 Ultimaker Connect 的打印机。请将打印机更新至最新固件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "请更新升级打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机打印机上。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "正在将材料发送到打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "您正在尝试连接到 {0},但它不是组中的主机。您可以访问网页,将其配置为组主机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "非组中的主机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "配置组" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "请等待当前作业完成发送。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "打印错误" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "无法将数据上传到打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "网络错误" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "发送打印作业" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "正在将打印作业上传至打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "打印作业队列已满。打印机无法接受新作业。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "队列已满" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "打印作业已成功发送到打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "数据已发送" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "通过网络打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "通过网络打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "已通过网络连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "通过网络连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "明天" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "今天" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB 联机打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "通过 USB 联机打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "通过 USB 联机打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "通过 USB 连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "正在进行 USB 打印,关闭 Cura 将停止此打印。您确定吗?" +msgid "Firmware update failed due to an unknown error." +msgstr "由于未知错误,固件更新失败。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "由于通信错误,导致固件升级失败。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "正在进行打印" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "由于输入/输出错误,导致固件升级失败。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 文件" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "由于固件丢失,导致固件升级失败。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透视视图" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "此次打印可能出现了某些问题。点击查看调整提示。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "打开项目" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "更新已有配置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "新建" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "摘要 - Cura 项目" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "打印机设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "机器的设置冲突应如何解决?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "类型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "打印机组" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "配置文件设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "配置文件中的冲突如何解决?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "名字" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "Intent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "不在配置文件中" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 重写" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "衍生自" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 重写" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "材料设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "材料的设置冲突应如何解决?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "设置可见性" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "模式" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "可见设置:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "加载项目将清除打印平台上的所有模型。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "打开" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "想要更多?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "立即备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自动备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "在 Cura 每天启动时自动创建备份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "恢复" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "删除备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "您确定要删除此备份吗?此操作无法撤销。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "恢复备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "您需要重新启动 Cura 才能恢复备份。您要立即关闭 Cura 吗?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "机器" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 备份" +msgid "Post Processing Plugin" +msgstr "后期处理插件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "我的备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个备份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "在预览阶段,将限制为 5 个可见备份。移除一个备份以查看更早的备份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "备份并同步您的 Cura 设置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "登录" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "更新固件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "固件是直接在 3D 打印机上运行的一个软件。此固件控制步进电机,调节温度并最终使打印机正常工作。" +msgid "Post Processing Scripts" +msgstr "后期处理脚本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "添加一个脚本" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。" +msgid "Settings" +msgstr "设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "自动升级固件" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "更改处于活动状态的后期处理脚本。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "上传自定义固件" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "以下脚本处于活动状态:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "未连接打印机,无法更新固件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "选择自定义固件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "固件升级" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "更新固件中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "固件更新已完成。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "由于未知错误,固件更新失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "由于通信错误,导致固件升级失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "由于输入/输出错误,导致固件升级失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "由于固件丢失,导致固件升级失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "转换图像..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "每个像素与底板的最大距离" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "高度 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "距离打印平台的底板高度,以毫米为单位。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "底板 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "打印平台宽度,以毫米为单位。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "宽度 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "打印平台深度,以毫米为单位" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "深度 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "在影像浮雕中,为了阻挡更多光源通过,深色像素应对应于较厚的位置。在高度图中,浅色像素代表着更高的地形,因此浅色像素对应于生成的 3D 模型中较厚的位置。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "颜色越深厚度越大" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "颜色越浅厚度越大" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "对于隐雕,提供一个用于半透明的简单对数模型。对于高度图,像素值与高度线性对应。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "线性" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "半透明" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "穿透 1 毫米厚的打印件的光线百分比。降低此值将增大图像暗区中的对比度并减小图像亮区中的对比度。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1 毫米透射率 (%)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "要应用到图像的平滑量。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "确定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "请选择适用于 Ultimaker Original 的升级文件" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "热床(官方版本或自制)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "打印平台调平" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "为了确保打印质量出色,您现在可以开始调整您的打印平台。当您点击「移动到下一个位置」时,喷嘴将移动到可以调节的不同位置。" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "在打印头停止的每一个位置下方插入一张纸,并调整平台高度。当纸张恰好被喷嘴的尖端轻微压住时,此时打印平台的高度已被正确校准。" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "开始进行打印平台调平" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "移动到下一个位置" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "更多关于匿名数据收集的信息" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据。以下是所有数据分享的示例:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "我不想发送匿名数据" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "允许发送匿名数据" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "市场" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "在包装更改生效之前,您需要重新启动Cura。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "退出 %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "安装" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "已安装" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "高级" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "前往网上市场" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "搜索材料" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "兼容性" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "机器" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "打印平台" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "支持" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "质量" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "技术数据表" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "安全数据表" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "打印指南" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "网站" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "安装或更新需要登录" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "购买材料线轴" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "背部" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "打印机" +msgid "Plugins" +msgstr "插件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "喷嘴设置" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "材料" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "安装" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "喷嘴孔径" +msgid "Will install upon restarting" +msgstr "将安装后重新启动" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "更新需要登录" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "降级" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "卸载" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "社区贡献" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "兼容的材料直径" +msgid "Community Plugins" +msgstr "社区插件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "喷嘴偏移 X" +msgid "Generic Materials" +msgstr "通用材料" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "获取包..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "喷嘴偏移 Y" +msgid "Website" +msgstr "网站" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷却风扇数量" +msgid "Email" +msgstr "电子邮件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "挤出机的开始 G-code" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "请登录以获取经验证适用于 Ultimaker Cura Enterprise 的插件和材料" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "挤出机的结束 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "打印机设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (宽度)" +msgid "Version" +msgstr "版本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (深度)" +msgid "Last updated" +msgstr "更新日期" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高度)" +msgid "Brand" +msgstr "品牌" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "打印平台形状" +msgid "Downloads" +msgstr "下载项" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "已安装的插件" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "尚未安装任何插件。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "已安装的材料" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "尚未安装任何材料。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "已捆绑的插件" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "已捆绑的材料" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "无法连接到Cura包数据库。请检查您的连接。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "置中" +msgid "You need to accept the license to install the package" +msgstr "需要接受许可证才能安装该程序包" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "您的帐户有更改" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "解除" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "下一步" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "加热床" +msgid "The following packages will be added:" +msgstr "将添加以下程序包:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "加热的构建体积" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "由于 Cura 版本不兼容,无法安装以下程序包:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "确认卸载" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "您正在卸载仍在使用的材料和/或配置文件。确认会将以下材料/配置文件重置为默认值。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "配置文件" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "确认" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code 风格" +msgid "Color scheme" +msgstr "颜色方案" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "打印头设置" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "材料颜色" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "走线类型" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "速度" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "层厚度" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "走线宽度" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "流量" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X 最小值" +msgid "Compatibility Mode" +msgstr "兼容模式" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y 最小值" +msgid "Travels" +msgstr "空驶" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X 最大值" +msgid "Helpers" +msgstr "打印辅助结构" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y 最大值" +msgid "Shell" +msgstr "外壳" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "十字轴高度" +msgid "Infill" +msgstr "填充" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "挤出机数目" +msgid "Starts" +msgstr "开始" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "将挤出器偏移量应用于 GCode" +msgid "Only Show Top Layers" +msgstr "只显示顶层" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "开始 G-code" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "在顶部显示 5 层打印细节" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "结束 G-code" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "顶 / 底层" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "内壁" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "最小" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "最大" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "管理打印机" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "玻璃" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "请及时更新打印机固件以远程管理打印队列。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "无法从 Ultimaker Cura 中查看云打印机的网络摄像头馈送。请单击“管理打印机”以访问 Ultimaker Digital Factory 并查看此网络摄像头。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "正在加载..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "不可用" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "无法连接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "空闲" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "正在准备..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "未命名" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "匿名" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "需要更改配置" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "详细信息" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "不可用的打印机" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "第一个可用" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "已排队" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "请于浏览器中进行管理" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "队列中无打印任务。可通过切片和发送添加任务。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "打印作业" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "总打印时间" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "等待" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "通过网络打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "打印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "打印机选择" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "配置更改" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "覆盖" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "分配的打印机 %1 需要以下配置更改:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "已向打印机 %1 分配作业,但作业包含未知的材料配置。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "将材料 %1 从 %2 更改为 %3。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "将 %3 作为材料 %1 进行加载(此操作无法覆盖)。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "将 Print Core %1 从 %2 更改为 %3。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "将打印平台更改为 %1(此操作无法覆盖)。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "覆盖将使用包含现有打印机配置的指定设置。这可能会导致打印失败。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "铝" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "已完成" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "正在中止..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "已中止" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "失败" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "正在暂停..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "已暂停" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "正在恢复..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "需要采取行动" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "完成 %1 于 %2" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "连接到网络打印机" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "欲通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接至网络。若不能连接 Cura 与打印机,亦可通过使用 USB 设备将 G-code 文件传输到打印机。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "请从以下列表中选择您的打印机:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "编辑" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "删除" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "刷新" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "类型" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "固件版本" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "地址" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "这台打印机未设置为运行一组打印机。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "这台打印机是一组共 %1 台打印机的主机。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "该网络地址的打印机尚未响应。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "连接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "IP 地址无效" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "请输入有效的 IP 地址。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "打印机网络地址" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "请输入打印机在网络上的 IP 地址。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "移至顶部" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "删除" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "恢复" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "正在暂停..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "正在恢复..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "暂停" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "正在中止..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "中止" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "您确定要将 %1 移至队列顶部吗?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "将打印作业移至顶部" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "您确定要删除 %1 吗?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "删除打印作业" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "您确定要中止 %1 吗?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "中止打印" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2236,1411 +3316,435 @@ msgstr "" "- 检查打印机是否连接至网络。\n" "- 检查您是否已登录查找云连接的打印机。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "请将打印机连接到网络。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "查看联机用户手册" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "为了从 Cura 监控您的打印,请连接打印机。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "网格类型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "正常模式" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "打印为支撑" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "修改重叠设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "不支持重叠" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "仅填充网格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "切割网格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "选择设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "选择对此模型的自定义设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "筛选..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "显示全部" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "后期处理插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "后期处理脚本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "添加一个脚本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "更改处于活动状态的后期处理脚本。" +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "此次打印可能出现了某些问题。点击查看调整提示。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "以下脚本处于活动状态:" +msgid "3D View" +msgstr "3D 视图" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "颜色方案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "材料颜色" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "走线类型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "速度" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "层厚度" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "走线宽度" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "流量" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "兼容模式" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "空驶" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "打印辅助结构" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "外壳" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "填充" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "开始" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "只显示顶层" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "在顶部显示 5 层打印细节" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "顶 / 底层" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "内壁" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "最小" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "最大" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "更多关于匿名数据收集的信息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据。以下是所有数据分享的示例:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "我不想发送匿名数据" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "允许发送匿名数据" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "背部" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "兼容性" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "机器" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "打印平台" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "支持" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "质量" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "技术数据表" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "安全数据表" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "打印指南" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "网站" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "已安装" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "安装或更新需要登录" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "购买材料线轴" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "高级" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "前往网上市场" +msgid "Front View" +msgstr "正视图" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "顶视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "左视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "右视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "搜索材料" +msgid "Object list" +msgstr "对象列表" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "在包装更改生效之前,您需要重新启动Cura。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "退出 %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "安装" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "将安装后重新启动" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "更新需要登录" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "降级" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "卸载" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "安装" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "您的帐户有更改" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "解除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "下一步" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "将添加以下程序包:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "由于 Cura 版本不兼容,无法安装以下程序包:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "确认卸载" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "您正在卸载仍在使用的材料和/或配置文件。确认会将以下材料/配置文件重置为默认值。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "确认" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "需要接受许可证才能安装该程序包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "网站" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "电子邮件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "更新日期" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "品牌" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "下载项" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "社区贡献" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "社区插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "通用材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "无法连接到Cura包数据库。请检查您的连接。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "已安装的插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "尚未安装任何插件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "已安装的材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "尚未安装任何材料。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "已捆绑的插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "已捆绑的材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "获取包..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "请登录以获取经验证适用于 Ultimaker Cura Enterprise 的插件和材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "市场" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "打印平台调平" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "文件(&F)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "为了确保打印质量出色,您现在可以开始调整您的打印平台。当您点击「移动到下一个位置」时,喷嘴将移动到可以调节的不同位置。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "编辑(&E)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "在打印头停止的每一个位置下方插入一张纸,并调整平台高度。当纸张恰好被喷嘴的尖端轻微压住时,此时打印平台的高度已被正确校准。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "视图(&V)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "开始进行打印平台调平" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "设置(&S)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "移动到下一个位置" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "扩展(&X)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "请选择适用于 Ultimaker Original 的升级文件" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "偏好设置(&R)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "热床(官方版本或自制)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "帮助(&H)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "连接到网络打印机" +msgid "New project" +msgstr "新建项目" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "欲通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接至网络。若不能连接 Cura 与打印机,亦可通过使用 USB 设备将 G-code 文件传输到打印机。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "你确定要开始一个新项目吗?这将清除打印平台及任何未保存的设置。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "请从以下列表中选择您的打印机:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "编辑" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "删除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "刷新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "类型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "固件版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "地址" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "这台打印机未设置为运行一组打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "这台打印机是一组共 %1 台打印机的主机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "该网络地址的打印机尚未响应。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "IP 地址无效" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "请输入有效的 IP 地址。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "打印机网络地址" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "请输入打印机在网络上的 IP 地址。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "配置更改" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "覆盖" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "分配的打印机 %1 需要以下配置更改:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "已向打印机 %1 分配作业,但作业包含未知的材料配置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "将材料 %1 从 %2 更改为 %3。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "将 %3 作为材料 %1 进行加载(此操作无法覆盖)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "将 Print Core %1 从 %2 更改为 %3。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "将打印平台更改为 %1(此操作无法覆盖)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "覆盖将使用包含现有打印机配置的指定设置。这可能会导致打印失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "玻璃" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "铝" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "移至顶部" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "删除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "恢复" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "正在暂停..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "正在恢复..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "暂停" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "正在中止..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "中止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "您确定要将 %1 移至队列顶部吗?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "将打印作业移至顶部" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "您确定要删除 %1 吗?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "删除打印作业" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "您确定要中止 %1 吗?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "中止打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "管理打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "请及时更新打印机固件以远程管理打印队列。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "正在加载..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "不可用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "无法连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "空闲" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "正在准备..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "未命名" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "需要更改配置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "详细信息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "不可用的打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "第一个可用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "已中止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "已完成" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "正在中止..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "正在暂停..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "已暂停" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "正在恢复..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "需要采取行动" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "完成 %1 于 %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "已排队" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "请于浏览器中进行管理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "队列中无打印任务。可通过切片和发送添加任务。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "打印作业" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "总打印时间" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "等待" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "通过网络打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "打印机选择" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "登录" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "登录 Ultimaker 平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- 从 Marketplace 添加材料配置文件和插件\n" -"- 备份和同步材料配置文件和插件\n" -"- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "创建免费的 Ultimaker 帐户" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "正在检查..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "帐户已同步" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "发生了错误..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "安装挂起的更新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "检查是否存在帐户更新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "上次更新时间:%1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 帐户" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "注销" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "无可用时间估计" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "无可用成本估计" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "预览" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "预计时间" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "预计材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "无法切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "正在处理中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "开始切片流程" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "取消" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "显示联机故障排除指南" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "切换完整界面" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "退出完整界面" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "撤销(&U)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "重做(&R)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "退出(&Q)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3D 视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "正视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "顶视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "仰视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "左视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "右视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "配置 Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "新增打印机(&A)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "管理打印机(&I)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "管理材料..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "从市场添加更多材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "使用当前设置 / 重写值更新配置文件(&U)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "舍弃当前更改(&D)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "从当前设置 / 重写值创建配置文件(&C)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "管理配置文件.." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "显示在线文档(&D)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "BUG 反馈(&B)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "新增功能" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "关于..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "删除所选项" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "居中所选项" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "复制所选项" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "删除模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "使模型居于平台中央(&N)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "绑定模型(&G)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "拆分模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "合并模型(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "复制模型…(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "选择所有模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "清空打印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "重新载入所有模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "将所有模型编位到所有打印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "编位所有的模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "为所选模型编位" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "复位所有模型的位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "复位所有模型的变动" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "打开文件(&O)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "新建项目(&N)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "显示配置文件夹" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "配置设定可见性..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "市场(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "这个包将在重新启动后安装。" +msgid "Time estimation" +msgstr "预计时间" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "基本" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "预计材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "设置" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "打印机" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "配置文件" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "无可用时间估计" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "正在关闭 %1" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "无可用成本估计" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "您确定要退出 %1 吗?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "预览" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "打开文件" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" +msgstr "添加打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "安装包" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "添加已联网打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "打开文件" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "添加未联网打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "我们已经在您选择的文件中找到一个或多个 G-Code 文件。您一次只能打开一个 G-Code 文件。若需打开 G-Code 文件,请仅选择一个。" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "添加云打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "新增打印机" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "等待云响应" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "在您的帐户中未找到任何打印机?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "您帐户中的以下打印机已添加到 Cura 中:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "手动添加打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "按 IP 地址添加打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "输入您打印机的 IP 地址。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "添加" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "无法连接到设备。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "无法连接到 Ultimaker 打印机?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "该网络地址的打印机尚未响应。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "由于是未知打印机或不是组内主机,无法添加该打印机。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "返回" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "连接" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "用户协议" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "拒绝并关闭" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "欢迎使用 Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "" +"请按照以下步骤设置\n" +"Ultimaker Cura。此操作只需要几分钟时间。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "开始" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "登录 Ultimaker 平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "从 Marketplace 添加材料设置和插件" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "备份和同步材料设置和插件" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "跳过" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "创建免费的 Ultimaker 帐户" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "制造商" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "配置文件作者" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "打印机名称" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "请为您的打印机命名" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "未找到网络内打印机。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "刷新" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "按 IP 添加打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "添加云打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "故障排除" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "帮助我们改进 Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据,这些数据包括:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "机器类型" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "材料使用" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "切片数量" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "打印设置" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Ultimaker Cura 收集的数据不会包含任何个人信息。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "更多信息" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "新增功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "空" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "版本说明" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "关于 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "版本: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "熔丝 3D 打印技术的的端对端解决方案。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3649,183 +3753,204 @@ msgstr "" "Cura 由 Ultimaker B.V. 与社区合作开发。\n" "Cura 使用以下开源项目:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "图形用户界面" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "应用框架" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "G-code 生成器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "进程间通信交互使用库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "编程语言" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI 框架" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "GUI 框架绑定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C / C++ 绑定库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "数据交换格式" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "科学计算支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "高速运算支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "用于处理 STL 文件的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "用于处理平面对象的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "用于处理三角网格的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "用于处理 3MF 文件的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "用于文件元数据和流媒体的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "串口通讯库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "ZeroConf 发现库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "多边形剪辑库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "适用于 Python 的静态类型检查器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "用于验证 SSL 可信度的根证书" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Python 错误跟踪库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "Prusa Research 开发的多边形打包库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "libnest2d 的 Python 绑定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "支持系统密钥环访问库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "适用于 Microsoft Windows 的 Python 扩展" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "字体" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVG 图标" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Linux 交叉分布应用程序部署" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "打开项目文件" +msgid "Open file(s)" +msgstr "打开文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "这是一个 Cura 项目文件。您想将其作为一个项目打开还是从中导入模型?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "我们已经在您所选择的文件中找到一个或多个项目文件,但一次只能打开一个项目文件。我们建议只从那些文件中导入模型而不打开项目。您要继续操作吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "记住我的选择" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "作为项目打开" +msgid "Import all as models" +msgstr "导入所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "保存项目" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "挤出机 %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & 材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "保存时不再显示项目摘要" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "导入模型" +msgid "Save" +msgstr "保存" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "舍弃或保留更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3836,1202 +3961,144 @@ msgstr "" "是否要在切换配置文件后保留这些更改的设置?\n" "或者,也可舍弃更改以从“%1”加载默认值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "配置文件设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "当前更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "总是询问" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "舍弃更改,并不再询问此问题" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "保留更改,并不再询问此问题" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "舍弃更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "保留更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "打开项目文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "我们已经在您所选择的文件中找到一个或多个项目文件,但一次只能打开一个项目文件。我们建议只从那些文件中导入模型而不打开项目。您要继续操作吗?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "这是一个 Cura 项目文件。您想将其作为一个项目打开还是从中导入模型?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "记住我的选择" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "导入所有模型" +msgid "Open as project" +msgstr "作为项目打开" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "保存项目" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "挤出机 %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & 材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "保存时不再显示项目摘要" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "保存" +msgid "Import models" +msgstr "导入模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "用 %1 打印所选模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "未命名" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "文件(&F)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "编辑(&E)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "视图(&V)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "设置(&S)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "扩展(&X)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "偏好设置(&R)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "帮助(&H)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "新建项目" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "你确定要开始一个新项目吗?这将清除打印平台及任何未保存的设置。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "市场" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "配置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正确的材料配置文件。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "市场" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "正在从打印机加载可用配置..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "该配置不可用,因为打印机已断开连接。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "选择配置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "配置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "自定义" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "已启用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "用胶粘和此材料组合以产生更好的附着。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "打印所选模型:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "复制所选模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "复制个数" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "保存项目(&S)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "导出(&E)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "导出选择..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "收藏" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "通用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "打开文件..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "网络打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "本地打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "打开最近使用过的文件(&R)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "保存项目..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "打印机(&P)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "材料(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "设为主要挤出机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "启用挤出机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "禁用挤出机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "可见设置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "折叠所有类别" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "管理设置可见性..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "摄像头位置(&C)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "摄像头视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "透视" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "正交" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "打印平台(&B)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "未连接至打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "打印机不接受命令" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "维护中。请检查打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "与打印机的连接中断" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "打印中..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "已暂停" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "初始化中..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "请取出打印件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "中止打印" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "您确定要中止打印吗?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "打印为支撑。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "修改了与此模型重叠的其他模型。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "修改了与该模型重叠的填充。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "不支持与此模型重叠。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "覆盖 %1 设置。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "对象列表" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "接口" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "币种:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "主题:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "需重新启动 Cura,新的设置才能生效。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "当设置被更改时自动进行切片。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "自动切片" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "视区行为" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "以红色突出显示模型需要增加支撑结构的区域。没有支撑,这些区域将无法正确打印。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "显示悬垂(Overhang)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "使用警告标志突出显示模型缺少或多余的表面。刀具路径常常是要打印的几何结构缺少的部分。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "显示模型错误" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "当模型被选中时,视角将自动调整到最合适的观察位置(模型处于正中央)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "当项目被选中时,自动对中视角" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "需要令 Cura 的默认缩放操作反转吗?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "反转视角变焦方向。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "是否跟随鼠标方向进行缩放?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "正交透视不支持通过鼠标进行缩放。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "跟随鼠标方向缩放" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "需要移动平台上的模型,使它们不再相交吗?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "确保每个模型都保持分离" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "需要转动模型,使它们接触打印平台吗?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "自动下降模型到打印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "在 G-code 读取器中显示警告信息。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "G-code 读取器中的警告信息" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "层视图要强制进入兼容模式吗?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "强制层视图兼容模式(需要重新启动)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Cura 是否应该在关闭的位置打开?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "恢复初始窗口位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "应使用哪种类型的摄像头进行渲染?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "摄像头渲染:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "透视" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "正交" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "打开并保存文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "使用单个 Cura 实例" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "当模型的尺寸过大时,是否将模型自动缩小至成形空间体积?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "缩小过大模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "当模型以米而不是毫米为单位时,模型可能会在打印平台中显得非常小。在此情况下是否进行放大?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "放大过小模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "模型是否应该在加载后被选中?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "选择模型时加载" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "打印机名是否自动作为打印作业名称的前缀?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "将机器前缀添加到作业名称中" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "保存项目文件时是否显示摘要?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "保存项目时显示摘要对话框" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "打开项目文件时的默认行为" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "打开项目文件时的默认行为: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "总是询问" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "始终作为一个项目打开" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "始终导入模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "当您对配置文件进行更改并切换到其他配置文件时将显示一个对话框,询问您是否要保留修改。您也可以选择一个默认行为并令其不再显示该对话框。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "切换到不同配置文件时对设置值更改的默认操作: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "总是舍失更改的设置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "总是将更改的设置传输至新配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "隐私" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "当 Cura 启动时,是否自动检查更新?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "启动时检查更新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "您愿意将关于您的打印数据以匿名形式发送到 Ultimaker 吗?注意:我们不会记录/发送任何模型、IP 地址或其他私人数据。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(匿名)发送打印信息" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "详细信息" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "激活" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "重命名" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "创建" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "复制" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "导入" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "导出" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "与打印机同步" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "确认删除" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "您确认要删除 %1?该操作无法恢复!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "导入配置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "无法导入材料 %1%2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "成功导入材料 %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "导出材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "无法导出材料至 %1%2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "成功导出材料至: %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "导出所有材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "信息" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "确认直径更改" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "新的灯丝直径被设置为%1毫米,这与当前的挤出机不兼容。你想继续吗?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "显示名称" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "材料类型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "颜色" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "属性" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "密度" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "直径" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "耗材成本" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "耗材重量" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "耗材长度" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "每米成本" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "此材料与 %1 相关联,并共享其某些属性。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "解绑材料" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "描述" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "粘附信息" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "打印设置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "创建" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "复制" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "创建配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "请为此配置文件提供名称。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "复制配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "重命名配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "导入配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "导出配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "打印机:%1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "使用当前设置 / 重写值更新配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "舍弃当前更改" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "此配置文件使用打印机指定的默认值,因此在下面的列表中没有此设置项。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "您当前的设置与选定的配置文件相匹配。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "全局设置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "已计算" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "设置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "当前" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "单位" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "设置可见性" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "全部勾选" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "挤出机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "热端的目标温度。 热端将加热或冷却至此温度。 如果目标温度为 0,则热端加热将关闭。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "该热端的当前温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "热端的预热温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "取消" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "预热" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "打印前请预热热端。您可以在热端加热时继续调整打印机,而不必等待热端加热完毕再做好打印准备。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "该挤出机中材料的颜色。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "该挤出机中的材料。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "该挤出机所使用的喷嘴。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "打印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "热床的目标温度。热床将加热或冷却至此温度。若设置为 0,则不使用热床。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "热床当前温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "热床的预热温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "打印前请预热热床。您可以在热床加热时继续调整相关项,让您在准备打印时不必等待热床加热完毕。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "打印机控制" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "垛齐位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "垛齐距离" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "发送 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "向连接的打印机发送自定义 G-code 命令。按“Enter”发送命令。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "尚未连接到打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "云打印机离线。请检查打印机是否已开启并连接到 Internet。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "此打印机未链接到您的帐户。请访问 Ultimaker Digital Factory 以建立连接。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "云连接当前不可用。请登录以连接到云打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "云连接当前不可用。请检查您的 Internet 连接。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "添加打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "管理打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "已连接的打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "预设打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "正在打印" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "作业名" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "打印时间" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "预计剩余时间" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "云打印机离线。请检查打印机是否已开启并连接到 Internet。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "此打印机未链接到您的帐户。请访问 Ultimaker Digital Factory 以建立连接。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "云连接当前不可用。请登录以连接到云打印机。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "云连接当前不可用。请检查您的 Internet 连接。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "添加打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "管理打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "已连接的打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "预设打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "打印设置" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "打印设置已禁用。无法修改 G code 文件。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5042,119 +4109,1698 @@ msgstr "" "\n" "点击打开配置文件管理器。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "自定义配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "舍弃当前更改" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "推荐" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "自定义" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "开" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "关" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "实验性" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "没有 %1 配置文件可用于挤出器 %2 中的配置。将改为使用默认意图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "打印设置已禁用。无法修改 G code 文件。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "推荐" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "自定义" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "开" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "关" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "实验性" +msgid "Profiles" +msgstr "配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "附着" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "允许打印 Brim 或 Raft。这将在您的对象周围或下方添加一个容易切断的平面区域。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "渐层填充" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "渐层填充(Gradual infill)将随着打印高度的提升而逐渐加大填充密度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "您已修改部分配置文件设置。 如果您想对其进行更改,请转至自定义模式。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "支持" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"一些隐藏设置正在使用有别于一般设置的计算值。\n" -"\n" -"单击以使这些设置可见。" +msgid "Gradual infill" +msgstr "渐层填充" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "渐层填充(Gradual infill)将随着打印高度的提升而逐渐加大填充密度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "附着" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "允许打印 Brim 或 Raft。这将在您的对象周围或下方添加一个容易切断的平面区域。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "保存项目..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "网络打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "本地打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "收藏" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "通用" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "打印所选模型:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "复制所选模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "复制个数" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "保存项目(&S)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "导出(&E)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "导出选择..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "配置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "自定义" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "已启用" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "用胶粘和此材料组合以产生更好的附着。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "不允许此挤出器的配置并禁止切片。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "没有与此挤出器的配置匹配的配置文件。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "选择配置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "配置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "正在从打印机加载可用配置..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "该配置不可用,因为打印机已断开连接。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正确的材料配置文件。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "市场" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "打开文件..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "打印机(&P)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "材料(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "设为主要挤出机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "启用挤出机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "禁用挤出机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "打开最近使用过的文件(&R)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "可见设置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "折叠所有类别" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "管理设置可见性..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "摄像头位置(&C)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "摄像头视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "透视" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "正交" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "打印平台(&B)" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "查看类型" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "打印为支撑。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "修改了与此模型重叠的其他模型。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "修改了与该模型重叠的填充。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "不支持与此模型重叠。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "覆盖 %1 设置。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "激活" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "创建" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "复制" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "重命名" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "导入" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "导出" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "创建配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "请为此配置文件提供名称。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "复制配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "确认删除" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "您确认要删除 %1?该操作无法恢复!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "重命名配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "导入配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "导出配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "打印机:%1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "使用当前设置 / 重写值更新配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "此配置文件使用打印机指定的默认值,因此在下面的列表中没有此设置项。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "您当前的设置与选定的配置文件相匹配。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "全局设置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "基本" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "接口" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "币种:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "主题:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "需重新启动 Cura,新的设置才能生效。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "当设置被更改时自动进行切片。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "自动切片" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "视区行为" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "以红色突出显示模型需要增加支撑结构的区域。没有支撑,这些区域将无法正确打印。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "显示悬垂(Overhang)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "使用警告标志突出显示模型缺少或多余的表面。刀具路径常常是要打印的几何结构缺少的部分。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "显示模型错误" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "当模型被选中时,视角将自动调整到最合适的观察位置(模型处于正中央)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "当项目被选中时,自动对中视角" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "需要令 Cura 的默认缩放操作反转吗?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "反转视角变焦方向。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "是否跟随鼠标方向进行缩放?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "正交透视不支持通过鼠标进行缩放。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "跟随鼠标方向缩放" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "需要移动平台上的模型,使它们不再相交吗?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "确保每个模型都保持分离" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "需要转动模型,使它们接触打印平台吗?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "自动下降模型到打印平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "在 G-code 读取器中显示警告信息。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "G-code 读取器中的警告信息" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "层视图要强制进入兼容模式吗?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "强制层视图兼容模式(需要重新启动)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Cura 是否应该在关闭的位置打开?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "恢复初始窗口位置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "应使用哪种类型的摄像头进行渲染?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "摄像头渲染:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "透视" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "正交" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "打开并保存文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "使用单个 Cura 实例" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "是否应在清理构建板后再将新模型加载到单个 Cura 实例中?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "在清理构建板后再将模型加载到单个实例中" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "当模型的尺寸过大时,是否将模型自动缩小至成形空间体积?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "缩小过大模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "当模型以米而不是毫米为单位时,模型可能会在打印平台中显得非常小。在此情况下是否进行放大?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "放大过小模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "模型是否应该在加载后被选中?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "选择模型时加载" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "打印机名是否自动作为打印作业名称的前缀?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "将机器前缀添加到作业名称中" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "保存项目文件时是否显示摘要?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "保存项目时显示摘要对话框" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "打开项目文件时的默认行为" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "打开项目文件时的默认行为: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "总是询问" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "始终作为一个项目打开" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "始终导入模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "当您对配置文件进行更改并切换到其他配置文件时将显示一个对话框,询问您是否要保留修改。您也可以选择一个默认行为并令其不再显示该对话框。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "切换到不同配置文件时对设置值更改的默认操作: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "总是舍失更改的设置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "总是将更改的设置传输至新配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "隐私" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "您愿意将关于您的打印数据以匿名形式发送到 Ultimaker 吗?注意:我们不会记录/发送任何模型、IP 地址或其他私人数据。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(匿名)发送打印信息" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "详细信息" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "当 Cura 启动时,是否自动检查更新?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "启动时检查更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "在检查更新时,只检查稳定版。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "仅限稳定版" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "在检查更新时,同时检查稳定版和测试版。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "稳定版和测试版" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "是否应在每次启动 Cura 时自动检查新插件?强烈建议您不要禁用此功能!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "获取插件更新通知" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "信息" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "确认直径更改" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "新的灯丝直径被设置为%1毫米,这与当前的挤出机不兼容。你想继续吗?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "显示名称" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "材料类型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "颜色" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "属性" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "密度" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "直径" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "耗材成本" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "耗材重量" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "耗材长度" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "每米成本" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "此材料与 %1 相关联,并共享其某些属性。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "解绑材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "描述" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "粘附信息" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "创建" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "复制" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "与打印机同步" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "导入配置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "无法导入材料 %1%2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "成功导入材料 %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "导出材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "无法导出材料至 %1%2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "成功导出材料至: %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "匹配材料和打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "匹配材料和打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "只需遵循几个简单步骤,您就可以将所有材料配置文件与打印机同步。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "开始" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "为什么需要同步材料配置文件?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "登录" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "要自动将材料配置文件与连接到 Digital Factory 的所有打印机同步,您需要登录 Cura。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "使用 USB 同步材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "以下打印机将收到新的材料配置文件:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "向打印机发送材料时出错。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "材料配置文件与以下打印机成功同步:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "故障排除" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "缺少打印机?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "请确保所有打印机都已打开并连接到 Digital Factory。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "刷新列表" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "再试一次" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "完成" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "同步" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "正在同步" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "未找到打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "您似乎没有任何兼容打印机连接到 Digital Factory。请确保打印机已连接并运行最新固件。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "了解如何将打印机连接到 Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "刷新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "通过 USB 同步材料配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "请遵循以下步骤将新材料配置文件加载到打印机。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "单击导出材料存档按钮。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "将 .umm文件保存到 U 盘。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "将 U 盘插入打印机,并启动程序以加载新材料配置文件。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "如何将新材料配置文件加载到打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "导出材料存档" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "导出所有材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "设置可见性" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "全部勾选" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "已计算" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "设置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "配置文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "当前" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "单位" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "未连接至打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "打印机不接受命令" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "维护中。请检查打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "与打印机的连接中断" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "打印中..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "已暂停" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "初始化中..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "请取出打印件" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "中止打印" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "您确定要中止打印吗?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "用 %1 打印所选模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "我的打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "在 Ultimaker Digital Factory 中监控打印机。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "在 Digital Library 中创建打印项目。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "打印作业" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "监控打印作业并从打印历史记录重新打印。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "用插件和材料配置文件扩展 Ultimaker Cura。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "通过 Ultimaker 线上课程教学,成为 3D 打印专家。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker 支持" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "了解如何开始使用 Ultimaker Cura。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "提问" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "咨询 Ultimaker 社区。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "报告错误" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "向开发人员报错。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "访问 Ultimaker 网站。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "打印机控制" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "垛齐位置" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "垛齐距离" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "发送 G-code" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "向连接的打印机发送自定义 G-code 命令。按“Enter”发送命令。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "挤出机" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "热端的目标温度。 热端将加热或冷却至此温度。 如果目标温度为 0,则热端加热将关闭。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "该热端的当前温度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "热端的预热温度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "取消" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "预热" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "打印前请预热热端。您可以在热端加热时继续调整打印机,而不必等待热端加热完毕再做好打印准备。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "该挤出机中材料的颜色。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "该挤出机中的材料。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "该挤出机所使用的喷嘴。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "尚未连接到打印机。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "打印平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "热床的目标温度。热床将加热或冷却至此温度。若设置为 0,则不使用热床。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "热床当前温度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "热床的预热温度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "打印前请预热热床。您可以在热床加热时继续调整相关项,让您在准备打印时不必等待热床加热完毕。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "登录" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- 从 Marketplace 添加材料配置文件和插件\n" +"- 备份和同步材料配置文件和插件\n" +"- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "创建免费的 Ultimaker 帐户" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "上次更新时间:%1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker 帐户" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "注销" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "正在检查..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "帐户已同步" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "发生了错误..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "安装挂起的更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "检查是否存在帐户更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "未命名" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "没有可供选择的项目" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "显示联机故障排除指南" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "切换完整界面" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "退出完整界面" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "撤销(&U)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "重做(&R)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "退出(&Q)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3D 视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "正视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "顶视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "仰视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "左视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "右视图" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "配置 Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "新增打印机(&A)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "管理打印机(&I)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "管理材料..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "从市场添加更多材料" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "使用当前设置 / 重写值更新配置文件(&U)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "舍弃当前更改(&D)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "从当前设置 / 重写值创建配置文件(&C)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "管理配置文件.." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "显示在线文档(&D)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "BUG 反馈(&B)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "新增功能" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "关于..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "删除所选项" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "居中所选项" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "复制所选项" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "删除模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "使模型居于平台中央(&N)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "绑定模型(&G)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "拆分模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "合并模型(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "复制模型…(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "选择所有模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "清空打印平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "重新载入所有模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "将所有模型编位到所有打印平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "编位所有的模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "为所选模型编位" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "复位所有模型的位置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "复位所有模型的变动" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "打开文件(&O)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "新建项目(&N)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "显示配置文件夹" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "配置设定可见性..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "市场(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "未使用此设置,因为受其影响的所有设置均已覆盖。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "影响" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "受影响项目" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "此设置与挤出器特定值不同:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5165,7 +5811,7 @@ msgstr "" "\n" "单击以恢复配置文件的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5176,509 +5822,93 @@ msgstr "" "\n" "单击以恢复自动计算的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "搜索设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "将值复制到所有挤出机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "将所有修改值复制到所有挤出机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "隐藏此设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "不再显示此设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "保持此设置可见" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D 视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "正视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "顶视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "左视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "右视图" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "查看类型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "添加云打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "等待云响应" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "在您的帐户中未找到任何打印机?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "您帐户中的以下打印机已添加到 Cura 中:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "手动添加打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "制造商" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "配置文件作者" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "打印机名称" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "请为您的打印机命名" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "添加打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "添加已联网打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "添加未联网打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "未找到网络内打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "刷新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "按 IP 添加打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "添加云打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "故障排除" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "按 IP 地址添加打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "输入您打印机的 IP 地址。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "添加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "无法连接到设备。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "无法连接到 Ultimaker 打印机?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "该网络地址的打印机尚未响应。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "由于是未知打印机或不是组内主机,无法添加该打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "返回" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "连接" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "版本说明" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "从 Marketplace 添加材料设置和插件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "备份和同步材料设置和插件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "创建免费的 Ultimaker 帐户" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "跳过" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "帮助我们改进 Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据,这些数据包括:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "机器类型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "材料使用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "切片数量" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "打印设置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura 收集的数据不会包含任何个人信息。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "更多信息" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "空" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "用户协议" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "拒绝并关闭" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "欢迎使用 Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." msgstr "" -"请按照以下步骤设置\n" -"Ultimaker Cura。此操作只需要几分钟时间。" +"一些隐藏设置正在使用有别于一般设置的计算值。\n" +"\n" +"单击以使这些设置可见。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "开始" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "这个包将在重新启动后安装。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "设置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "正在关闭 %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "您确定要退出 %1 吗?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "安装包" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "打开文件" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "我们已经在您选择的文件中找到一个或多个 G-Code 文件。您一次只能打开一个 G-Code 文件。若需打开 G-Code 文件,请仅选择一个。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "新增打印机" + +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "新增功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "没有可供选择的项目" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "模型检查器" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "提供对读取 3MF 格式文件的支持。" - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 读取器" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供对写入 3MF 文件的支持。" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 写入器" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "提供对读取 AMF 文件的支持。" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 读取器" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "备份和还原配置。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 备份" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "提供 CuraEngine 切片后端的路径。" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 后端" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "提供了对导入 Cura 配置文件的支持。" - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 配置文件读取器" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "提供了对导出 Cura 配置文件的支持。" - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 配置文件写入器" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "检查以进行固件更新。" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "固件更新检查程序" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "为固件更新提供操作选项。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "固件更新程序" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "从压缩存档文件读取 G-code。" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "压缩 G-code 读取器" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "将 G-code 写入至压缩存档文件。" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "压缩 G-code 写入器" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "提供了从 GCode 文件中导入配置文件的支持。" - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code 配置文件读取器" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "允许加载和显示 G-code 文件。" - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code 读取器" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "将 G-code 写入至文件。" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code 写入器" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "图像读取器" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "支持从 Cura 旧版本导入配置文件。" - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "旧版 Cura 配置文件读取器" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "打印机设置操作" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 Cura 中提供监视阶段。" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "监视阶段" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5689,85 +5919,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "单一模型设置工具" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "扩展程序(允许用户创建脚本进行后期处理)" +msgid "Provides support for importing Cura profiles." +msgstr "提供了对导入 Cura 配置文件的支持。" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "后期处理" +msgid "Cura Profile Reader" +msgstr "Cura 配置文件读取器" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 Cura 中提供准备阶段。" +msgid "Provides support for reading X3D files." +msgstr "支持读取 X3D 文件。" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "准备阶段" +msgid "X3D Reader" +msgstr "X3D 读取器" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 中提供预览阶段。" +msgid "Backup and restore your configuration." +msgstr "备份和还原配置。" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "预览阶段" +msgid "Cura Backups" +msgstr "Cura 备份" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "提供可移动磁盘热插拔和写入文件的支持。" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "可移动磁盘输出设备插件" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "记录某些事件,以使其可供崩溃报告器使用" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry 日志记录" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "提供仿真视图。" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "仿真视图" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "切片信息" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一个基本的实体网格视图。" - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "实体视图" +msgid "Machine Settings Action" +msgstr "打印机设置操作" #: SupportEraser/plugin.json msgctxt "description" @@ -5779,35 +5969,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "支持橡皮擦" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "查找、管理和安装新的Cura包。" +msgid "Provides removable drive hotplugging and writing support." +msgstr "提供可移动磁盘热插拔和写入文件的支持。" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "工具箱" +msgid "Removable Drive Output Device Plugin" +msgstr "可移动磁盘输出设备插件" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "提供对读取模型文件的支持。" +msgid "Provides a machine actions for updating firmware." +msgstr "为固件更新提供操作选项。" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 阅读器" +msgid "Firmware Updater" +msgstr "固件更新程序" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "支持读取 Ultimaker 格式包。" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "支持从 Cura 旧版本导入配置文件。" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 读取器" +msgid "Legacy Cura Profile Reader" +msgstr "旧版 Cura 配置文件读取器" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "提供对读取 3MF 格式文件的支持。" + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 读取器" #: UFPWriter/plugin.json msgctxt "description" @@ -5819,25 +6019,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "UFP 写入器" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "为最后的机器提供机器操作(例如,热床调平向导,选择升级等)。" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "记录某些事件,以使其可供崩溃报告器使用" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker 打印机操作" +msgid "Sentry Logger" +msgstr "Sentry 日志记录" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "管理与 Ultimaker 网络打印机的网络连接。" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供了从 GCode 文件中导入配置文件的支持。" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker 网络连接" +msgid "G-code Profile Reader" +msgstr "G-code 配置文件读取器" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "在 Cura 中提供预览阶段。" + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "预览阶段" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "提供透视视图。" + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "透视视图" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供 CuraEngine 切片后端的路径。" + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 后端" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "提供对读取 AMF 文件的支持。" + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 读取器" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "从压缩存档文件读取 G-code。" + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "压缩 G-code 读取器" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "扩展程序(允许用户创建脚本进行后期处理)" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "后期处理" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "提供了对导出 Cura 配置文件的支持。" + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 配置文件写入器" #: USBPrinting/plugin.json msgctxt "description" @@ -5849,25 +6119,135 @@ msgctxt "name" msgid "USB printing" msgstr "USB 联机打印" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" +msgid "Provides a prepare stage in Cura." +msgstr "在 Cura 中提供准备阶段。" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "版本自 2.1 升级到 2.2" +msgid "Prepare Stage" +msgstr "准备阶段" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" +msgid "Allows loading and displaying G-code files." +msgstr "允许加载和显示 G-code 文件。" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "版本自 2.2 升级到 2.4" +msgid "G-code Reader" +msgstr "G-code 读取器" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "图像读取器" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "为最后的机器提供机器操作(例如,热床调平向导,选择升级等)。" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ultimaker 打印机操作" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "将 G-code 写入至压缩存档文件。" + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "压缩 G-code 写入器" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "检查以进行固件更新。" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "固件更新检查程序" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "切片信息" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "材料配置文件" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "查找、管理和安装新的Cura包。" + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "工具箱" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "将 G-code 写入至文件。" + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code 写入器" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "提供仿真视图。" + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "仿真视图" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "版本从 4.5 升级至 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5879,55 +6259,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "版本自 2.5 升级到 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "版本自 2.6 升级到 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "版本从 4.6.0 升级到 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "版本自 2.7 升级到 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "版本自 3.0 升级到 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "版本自 3.2 升级到 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "从Cura 3.3升级到Cura 3.4。" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "版本升级3.3到3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "将版本从 4.7 升级到 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5939,35 +6289,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "版本自 3.4 升级到 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "版本自 3.5 升级到 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "版本自 2.1 升级到 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "版本自 4.0 升级到 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "版本自 3.2 升级到 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "版本自 4.1 升级到 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "版本从 4.8 升级到 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "版本从 4.6.2 升级到 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -5989,66 +6349,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "版本自 4.3 升级至 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "版本从 4.4 升级至 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "版本从 4.5 升级至 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "版本从 4.6.0 升级到 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "版本从 4.6.2 升级到 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "将版本从 4.7 升级到 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "版本从 4.8 升级到 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -6059,35 +6359,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "版本从 4.9 升级到 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "支持读取 X3D 文件。" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 读取器" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "版本自 2.7 升级到 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "材料配置文件" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "版本自 2.6 升级到 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透视视图。" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "透视视图" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "版本从 4.11 升级到 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "从Cura 3.3升级到Cura 3.4。" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "版本升级3.3到3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "版本自 3.0 升级到 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "版本自 4.0 升级到 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "版本从 4.4 升级至 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "版本自 2.2 升级到 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "版本自 4.1 升级到 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "版本自 3.5 升级到 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "管理与 Ultimaker 网络打印机的网络连接。" + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker 网络连接" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "提供对读取模型文件的支持。" + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 阅读器" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "支持读取 Ultimaker 格式包。" + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 读取器" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "提供一个基本的实体网格视图。" + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "实体视图" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "提供对写入 3MF 文件的支持。" + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 写入器" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "在 Cura 中提供监视阶段。" + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "监视阶段" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "模型检查器" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "使用您的 Ultimaker account 帐户从任何地方发送和监控打印作业。" + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "连接到 Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "无法从 Ultimaker Cura 中查看云打印机的网络摄像头馈送。" + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将它更新为 {latest_version} 版。" + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "新 %s 固件可用" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 01edc05a49..ee72d6c03b 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" "PO-Revision-Date: 2019-03-13 14:00+0200\n" "Last-Translator: Bothof \n" "Language-Team: PCDotFan , Bothof \n" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 5ab5e2533b..b4fc48684b 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -4,9 +4,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" "PO-Revision-Date: 2021-04-16 15:04+0200\n" "Last-Translator: Lionbridge \n" "Language-Team: Chinese , PCDotFan , Chinese \n" @@ -57,9 +57,7 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "" -"在开始时执行的 G-code 命令 - 以 \n" -" 分行。" +msgstr "在开始时执行的 G-code 命令 - 以 \n 分行。" #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -71,9 +69,7 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "" -"在结束前执行的 G-code 命令 - 以 \n" -" 分行。" +msgstr "在结束前执行的 G-code 命令 - 以 \n 分行。" #: fdmprinter.def.json msgctxt "material_guid label" @@ -155,6 +151,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "机器可打印区域深度(Y 坐标)" +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "机器高度" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "机器可打印区域高度(Z 坐标)" + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -195,16 +201,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "铝" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "机器高度" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "机器可打印区域高度(Z 坐标)" - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -562,8 +558,8 @@ msgstr "Z 轴方向电机的最大速度。" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "最大进料速率" +msgid "Maximum Speed E" +msgstr "E 轴最大速度" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -687,8 +683,8 @@ msgstr "每毫米步数 (E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "步进电机前进多少步将导致挤出一毫米。" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1435,6 +1431,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "单调顶部/底部顺序" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1505,6 +1511,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "锯齿形" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "单调熨平顺序" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1712,8 +1728,8 @@ msgstr "填充图案" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "打印填充材料的图案。线条和锯齿形填充在交替层上交换方向,从而降低材料成本。网格、三角形、内六角、立方体、八角形、四面体、交叉和同心图案在每层完整打印。螺旋二十四面体、立方体、四面体和八角形填充随每层变化,以在各个方向提供更均衡的强度分布。" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1780,6 +1796,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "螺旋二十四面体" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "闪电形" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1994,6 +2015,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "支撑皮肤边缘的填充物的层数。" +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "闪电形填充支撑角" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "闪电形填充悬垂角" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "闪电形填充修剪角" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "闪电形填充矫直角" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -3184,6 +3245,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "所有" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "不在外表面上" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5135,8 +5201,8 @@ msgstr "最小模具宽度" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "模具外侧和模型外侧之间的最小距离。" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "模具外侧与模型外侧之间的最短距离。" #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5303,6 +5369,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "锯齿形" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "单调顶部表面顺序" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6402,6 +6478,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" +#~ msgctxt "machine_start_gcode description" +#~ msgid "G-code commands to be executed at the very start - separated by \\n." +#~ msgstr "在开始时执行的 G-code 命令 - 以 \\n 分行。" + +#~ msgctxt "machine_end_gcode description" +#~ msgid "G-code commands to be executed at the very end - separated by \\n." +#~ msgstr "在结束前执行的 G-code 命令 - 以 \\n 分行。" + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "最大进料速率" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体的(内)顶部,将填充程度降至最低。因此,填充百分比仅在支撑模型所需的无论何种物体之下的一层“有效”。" + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "对于修剪树形外端的情况,闪电形填充层与紧接其上的一层可存在的区别。在给定的厚度下测得的角度。" + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "对于使树形平滑的情况,闪电形填充层与紧接其上的一层可存在的区别。在给定的厚度下测得的角度。" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "打印填充材料的图案。线条和锯齿形填充在交替层上交换方向,从而降低材料成本。网格、三角形、内六角、立方体、八角形、四面体、交叉和同心图案在每层完整打印。螺旋二十四面体、立方体、四面体和八角形填充随每层变化,以在各个方向提供更均衡的强度分布。" + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "模具外侧和模型外侧之间的最小距离。" + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "步进电机前进多少步将导致挤出一毫米。" + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "当非零的时候,梳理比这段距离更长的旅行移动将会使用撤回。" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 37610a8a1d..0eab1c49e0 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -1,177 +1,416 @@ # Cura # Copyright (C) 2021 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2021. +# Ultimaker , 2021. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0200\n" -"PO-Revision-Date: 2021-06-12 11:31+0800\n" -"Last-Translator: Valen Chang \n" -"Language-Team: Valen Chang / Leo Hsu\n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"PO-Revision-Date: 2022-01-02 19:59+0800\n" +"Last-Translator: Valen Chang \n" +"Language-Team: Valen Chang \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.4.2\n" +"X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "未知" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "無法從使用者資料目錄建立備份檔:{}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "下列印表機因為是群組的一部份導致無法連接" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +msgctxt "@info:title" +msgid "Backup" +msgstr "備份" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "可用的網路印表機" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "嘗試復原Cura 備份(若無proper data或meta data)。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "不覆寫" +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "嘗試復原新版本的Cura備份。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76 +#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "恢復Cura備份時,出現下列錯誤:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "再列印前請先同步線材資料." + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "新線材資料安裝" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 +msgctxt "@action:button" +msgid "Sync materials with printers" +msgstr "列印機同步線材資料" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 +msgctxt "@action:button" +msgid "Learn more" +msgstr "學習更多" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "無法儲存線材資料至{}:" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "線材資料儲存失敗" + +#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "未知的錯誤." + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "由於「列印序列」設定的值,成形列印範圍高度已被減少,以防止龍門與列印模型相衝突。" + +#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 +msgctxt "@info:title" +msgid "Build Volume" +msgstr "列印範圍" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 #, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "你確定要移除 {0} 嗎?這動作無法復原!" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "不覆寫" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +msgctxt "@label" +msgid "Unknown" +msgstr "未知" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "下列印表機因為是群組的一部份導致無法連接" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "可用的網路印表機" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 msgctxt "@label" msgid "Default" msgstr "預設值" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "外觀" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "外觀參數是設計來列印較高品質形狀和表面的視覺性原型和模型。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "工程" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "工程參數是設計來列印較高精度和較小公差的功能性原型和實際使用零件。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "草稿" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234 -msgctxt "@label" -msgid "Custom Material" -msgstr "自訂線材" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205 -msgctxt "@label" -msgid "Custom" -msgstr "自訂" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 msgctxt "@label" msgid "Custom profiles" msgstr "自訂列印參數" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "所有支援的類型 ({0})" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有檔案 (*)" -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181 +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "外觀" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "外觀參數是設計來列印較高品質形狀和表面的視覺性原型和模型。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "工程" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "工程參數是設計來列印較高精度和較小公差的功能性原型和實際使用零件。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "草稿" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +msgctxt "@label" +msgid "Custom Material" +msgstr "自訂線材資料" + +#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +msgctxt "@label" +msgid "Custom" +msgstr "自訂" + +#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "登入失敗" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "正在為物件尋找新位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "尋找位置中" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "無法在列印範圍內放下全部物件" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 msgctxt "@info:title" msgid "Can't Find Location" msgstr "無法找到位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "無法從使用者資料目錄建立備份檔:{}" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "無法建立與印表機同步的材料檔案." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113 -msgctxt "@info:title" -msgid "Backup" -msgstr "備份" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "無法載入與印表機同步的材料檔案." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "嘗試復原Cura 備份(若無proper data或meta data)。" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "從Digital Factory的回應似乎已損壞." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "嘗試復原新版本的Cura備份。" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "從Digital Factory的回應似乎遺漏重要資訊." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "恢復Cura備份時,出現下列錯誤:" +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "在連接至Digital Factory去同步材料的過程中失敗." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98 +#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "在連接至Digital Factory的過程中失敗." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "正在載入印表機..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "正在設定偏好設定..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "正在初始化啟用的機器..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "正在初始化機器管理員..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "正在初始化列印範圍..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "正在設定場景..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "正在載入介面..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "正在初始化引擎..." + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 +#, python-brace-format msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "由於「列印序列」設定的值,成形列印範圍高度已被減少,以防止龍門與列印模型相衝突。" +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "一次只能載入一個 G-code 檔案。{0} 已跳過匯入" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 msgctxt "@info:title" -msgid "Build Volume" -msgstr "列印範圍" +msgid "Warning" +msgstr "警告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "如果載入 G-code,則無法開啟其他任何檔案。{0} 已跳過匯入" + +#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +msgctxt "@info:title" +msgid "Error" +msgstr "錯誤" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 +msgctxt "@action:button" +msgid "Skip" +msgstr "略過" + +#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 +msgctxt "@action:button" +msgid "Close" +msgstr "關閉" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "下一步" + +#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 +msgctxt "@action:button" +msgid "Finish" +msgstr "完成" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 +msgctxt "@action:button" +msgid "Add" +msgstr "增加" + +#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" + +#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "群組 #{group_nr}" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "外壁" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "內壁" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "表層" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "填充" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "支撐填充" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "支撐介面" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "支撐" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "裙邊" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "裝填塔" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "移動" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "回抽" + +#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "其它" + +#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "發佈通知無法開啟." + +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 無法啟動" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

    Oops, Ultimaker Cura has encountered something that doesn't seem right.

    \n" @@ -186,32 +425,32 @@ msgstr "" "

    請將錯誤報告傳送給我們以修正此問題。

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "傳送錯誤報告給 Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "顯示詳細的錯誤報告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "顯示設定資料夾" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "備份和重置設定" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "錯誤報告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" @@ -222,465 +461,1234 @@ msgstr "" "

    請用\"送出報告\"按鈕自動發出一份錯誤報告到我們的伺服器

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "系統資訊" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "未知" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 語言" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "作業系統語言" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "平台" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized
    " msgstr "尚未初始化
    " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 版本:{version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 供應商:{vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL 渲染器:{renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "錯誤追溯" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 msgctxt "@title:groupbox" msgid "Logs" msgstr "日誌" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417 +#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 msgctxt "@action:button" msgid "Send report" msgstr "送出報告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "正在載入印表機..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "正在設定偏好設定..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "正在初始化啟用的機器..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "正在初始化機器管理員..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "正在初始化列印範圍..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "正在設定場景..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "正在載入介面..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "正在初始化引擎..." - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246 -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "一次只能載入一個 G-code 檔案。{0} 已跳過匯入" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190 /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@info:title" -msgid "Warning" -msgstr "警告" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "如果載入 G-code,則無法開啟其他任何檔案。{0} 已跳過匯入" - -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -msgctxt "@info:title" -msgid "Error" -msgstr "錯誤" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "正在複製並放置模型" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "正在放置模型" - -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "擺放物件中" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92 -msgctxt "@message" -msgid "Could not read response." -msgstr "雲端沒有讀取回應。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "提供的狀態不正確。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "核准此應用程式時,請給予所需的權限。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "嘗試登入時出現意外狀況,請再試一次。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "無法開始新的登入程序。檢查是否有其他登入仍在進行中。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "無法連上 Ultimaker 帳號伺服器。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132 +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "登入失敗" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "提供的狀態不正確。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "在向帳戶伺服器進行身分驗證時逾時." + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "核准此應用程式時,請給予所需的權限。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "嘗試登入時出現意外狀況,請再試一次。" + +#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "雲端沒有讀取回應。" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "正在複製並放置模型" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "正在放置模型" + +#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "擺放物件中" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "不支援" + +#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "預設值" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 +msgctxt "@label" +msgid "Nozzle" +msgstr "噴頭" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "設定已被更改為符合目前擠出機:" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +msgctxt "@info:title" +msgid "Settings updated" +msgstr "設定更新" + +#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "擠出機已停用" + +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "檔案已經存在" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "檔案 {0} 已存在。你確定要覆蓋掉它嗎?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460 +#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "無效的檔案網址:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "無法將列印參數匯出至 {0}{1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "無法將列印參數匯出至 {0}:寫入器外掛報告故障。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "列印參數已匯出至:{0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "匯出成功" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "無法從 {0} 匯入列印參數:{1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "在加入印表機前,無法從 {0} 匯入列印參數。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "檔案 {0} 內沒有自訂列印參數可匯入" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "從 {0} 匯入列印參數失敗:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "列印參數 {0} 含有不正確的資料,無法匯入。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "從 {0} 匯入列印參數失敗:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功匯入列印參數 {0}。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "檔案 {0} 內未含有效的列印參數。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "列印參數 {0} 檔案類型未知或已損壞。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "自訂列印參數" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "列印參數缺少列印品質類型定義。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "尚未啟動列印機." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "無法新增列印參數。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "品質類型 '{0}' 與目前的啟用的機器設定 '{1} '不相容。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471 +#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:列印參數無法顯示,因為它的品質類型 '{0}' 無法在目前設定使用。切換到可使用此品質類型的線材/噴頭組合。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "不支援" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "預設值" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" -msgid "Nozzle" -msgstr "噴頭" +msgid "Per Model Settings" +msgstr "單一模型設定" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "設定已被更改為符合目前擠出機:" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "設定對每個模型的單獨設定" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura 列印參數" + +#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "嘗試恢復備份時發生錯誤。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" -msgid "Settings updated" -msgstr "設定更新" +msgid "Backups" +msgstr "備份" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478 +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "上傳你的備份時發生錯誤。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "正在建立備份..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "建立備份時發生了錯誤。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "正在上傳你的備份..." + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "你的備份上傳完成。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "備份超過了最大檔案大小。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "管理備份" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "印表機設定" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "支撐阻斷器" + +#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "建立一塊不列印支撐的空間。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "行動裝置" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "儲存至行動裝置" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "儲存到行動裝置 {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "沒有可供寫入的檔案格式!" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "正在儲存到行動裝置 {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "擠出機已停用" +msgid "Saving" +msgstr "儲存中" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "無法儲存到 {0}{1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "嘗試寫入到 {device} 時無法找到檔名。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "無法儲存到行動裝置 {0}:{1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "儲存到行動裝置 {0}:{1}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 +msgctxt "@info:title" +msgid "File Saved" +msgstr "檔案已儲存" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 msgctxt "@action:button" -msgid "Add" -msgstr "增加" +msgid "Eject" +msgstr "卸載" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272 +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "卸載行動裝置 {0}" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "安全移除硬體" + +#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "無法卸載 {0},可能有其它程式正在使用行動裝置。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "更新韌體" + +#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 列印參數" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "推薦" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 +msgctxt "@title:tab" +msgid "Custom" +msgstr "自訂選項" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "專案檔案 {0} 包含未知的機器類型 {1}。機器無法被匯入,但模型將被匯入。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "開啟專案檔案" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "專案檔案 {0} 無法存取:{1}。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "無法開啟專案檔案" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "專案檔案{0} 已毀損 : {1}." + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." +msgstr "專案檔案 {0} 使用了此版本 Ultimaker Cura 未知的參數製作。" + +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "無法寫入 UFP 檔案:" + +#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "Ultimaker Format Package" +msgstr "Ultimaker 格式的封包" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-code 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "預覽" + +#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "透視檢視" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "正在處理層" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "資訊" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "切片失敗" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "回報問題" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:description" +msgid "Report a bug on Ultimaker Cura's issue tracker." +msgstr "於Ultimaker Cura問題追蹤器中回報問題." + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "無法切片" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "無法切片(原因:換料塔或主位置無效)。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"請檢查設定並檢查你的模型是否:\n" +"- 適合列印範圍\n" +"- 分配了一個已啟用的擠出機\n" +"- 沒有全部設定成修改網格" + +#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "壓縮 G-code 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "後處理" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "修改 G-Code 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB 連線列印" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "透過 USB 連線列印" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "透過 USB 連線列印" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "透過 USB 連接" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。" + +#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "列印正在進行中" + +#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "準備" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "正在解析 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-code 細項設定" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "發送檔案之前,請確保 G-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG 圖片" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG 圖片" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG 圖片" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP 圖片" + +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF 圖片" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "調整列印平台水平" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "選擇升級" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "G-code GZ 寫入器不支援非文字模式。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "無法存取更新資訊。" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "新的問題修復功能適用於您的 {machine_name}! 如果你準備好了,推薦您將列印機的軟體升級至最新版本 {latest_version}." + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "新的%s軟體已可使用" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" -msgid "Finish" -msgstr "完成" +msgid "How to update" +msgstr "如何更新" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292 +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "無法讀取範例資料檔案." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "你需要結束並重新啟動 {} ,更動才能生效。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "同步中..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +msgctxt "@info:title" +msgid "Changes detected from your Ultimaker account" +msgstr "從你的 Ultimaker 帳號偵測到資料更動" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 msgctxt "@action:button" -msgid "Cancel" -msgstr "取消" +msgid "Sync" +msgstr "同步" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "拒絕並從帳號中刪除" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "下載外掛 {} 失敗" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 +msgctxt "@button" +msgid "Decline" +msgstr "拒絕" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 +msgctxt "@button" +msgid "Agree" +msgstr "同意" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "外掛授權協議" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "G-code 寫入器不支援非文字模式。" + +#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "匯出前請先將 G-code 準備好。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Cura does not accurately display layers when Wire Printing is enabled." +msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "Simulation View" +msgstr "模擬檢視" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "因為你還沒切片,沒有東西可顯示。" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "沒有列印層可顯示" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "不要再顯示這個訊息" + +# Added manually to fix a string that was changed after string freeze. +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "分層檢視" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "網路連線列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "網路連線列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "透過網路連接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "明天" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "今天" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "透過網路連接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "請等待目前作業傳送完成。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "列印錯誤" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "列印作業已成功傳送到印表機。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "資料傳送" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." +msgstr "你正在嘗試連接到一台未安裝 Ultimaker Connect 的印表機。請將印表機更新至最新版本的韌體。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "更新你印表機" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "列印作業隊列已滿,印表機無法再接受新的作業。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "隊列已滿" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "正在傳送列印作業" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "正在上傳列印作業到印表機。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "Cura 偵測到群組 {0} 的管理主機上未安裝的線材參數。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "向印表機傳送線材參數中" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "雲端服務未上傳資料到印表機。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "網路錯誤" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "你正在嘗試連接到 {0},但它不是印表機群組的管理者。你可以透過網頁將其設定為印表機群組的管理者。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "不是印表機群組管理者" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "設定印表機群組" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"您的列印機 {printer_name} 可以透過雲端連接.\n" +"\v透過連接Digital Factory使您可以任意管理列印順序及監控列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "您準備好雲端列印嗎?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "開始" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "學習更多" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "透過雲端服務列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "透過雲端服務列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "透過雲端服務連接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "監控列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "在Ultimaker Digital Factory中追蹤您的列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "不明上傳列印作業錯誤代碼:{0}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "從你的 Ultimaker 帳號偵測到新的印表機" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "從你的帳號新增印表機 {name} ({model})" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "… 和 {0} 其他" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "從 Digital Factory 新增的印表機:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "印表機無法使用雲端連接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "印表機未連到 Digital Factory:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "要建立連線,請前往 {website_link}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "保留印表機設定" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "移除印表機" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "{printer_name} 將被移除,直到下次帳號同步之前。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "要永久移除 {printer_name},請前往 {digital_factory_link}" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "你確定要暫時移除 {printer_name} 嗎?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "移除印表機?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 #, python-brace-format msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "群組 #{group_nr}" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"你將從 Cura 移除 {0} 印表機。此動作無法復原。\n" +"你確定要繼續嗎?" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "外壁" +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"你將從 Cura 移除所有印表機。此動作無法復原。\n" +"你確定要繼續嗎?" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "內壁" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "打開壓縮的三角面網格" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84 -msgctxt "@tooltip" -msgid "Skin" -msgstr "表層" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Infill" -msgstr "填充" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Binary" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "支撐填充" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "支撐介面" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford 三角形格式" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Support" -msgstr "支撐" +#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Compressed COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "外圍" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "模型區域顯示已遺失或突出表面, 請修復您的模型並重新匯入Cura." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "裝填塔" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "模型錯誤" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Travel" -msgstr "移動" +#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "實體檢視" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "回抽" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "寫入 3mf 檔案發生錯誤。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Other" -msgstr "其它" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF 寫入器外掛已損壞。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259 -msgctxt "@action:button" -msgid "Next" -msgstr "下一步" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "無工作區可寫入,請先添加一部印表機." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55 -msgctxt "@action:button" -msgid "Skip" -msgstr "略過" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "沒有寫入此處工作區的權限。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "關閉" +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "操作系統不允許將專案檔案儲存到此位置或儲存為此檔名。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura 專案 3MF 檔案" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "監控" + +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D 模型助手" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -694,1443 +1702,1469 @@ msgstr "" "

    了解如何確保最佳的列印品質和可靠性。

    \n" "

    閱讀列印品質指南

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "專案檔案 {0} 包含未知的機器類型 {1}。機器無法被匯入,但模型將被匯入。" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +msgctxt "@label" +msgid "Mesh Type" +msgstr "網格類型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "開啟專案檔案" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 +msgctxt "@label" +msgid "Normal model" +msgstr "普通模型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "專案檔案 {0} 無法存取:{1}。" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 +msgctxt "@label" +msgid "Print as support" +msgstr "做為支撐" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "無法開啟專案檔案" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "修改重疊處設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "專案檔案{0} 已毀損 : {1}." +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "重疊處不建立支撐" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura." -msgstr "專案檔案 {0} 使用了此版本 Ultimaker Cura 未知的參數製作。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推薦" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "自訂選項" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 檔案" +msgid "Infill mesh only" +msgstr "只填充網格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 寫入器外掛已損壞。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "沒有寫入此處工作區的權限。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "操作系統不允許將專案檔案儲存到此位置或儲存為此檔名。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "寫入 3mf 檔案發生錯誤。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 檔案" +msgid "Cutting mesh" +msgstr "切割網格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 專案 3MF 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:title" -msgid "Backups" -msgstr "備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "上傳你的備份時發生錯誤。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "正在建立備份..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "建立備份時發生了錯誤。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "正在上傳你的備份..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "你的備份上傳完成。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "備份超過了最大檔案大小。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "嘗試恢復備份時發生錯誤。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "管理備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "無法切片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "無法切片(原因:換料塔或主位置無效)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463 -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"請檢查設定並檢查你的模型是否:\n" -"- 適合列印範圍\n" -"- 分配了一個已啟用的擠出機\n" -"- 沒有全部設定成修改網格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "正在處理層" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:title" -msgid "Information" -msgstr "資訊" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "無法存取更新資訊。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "可能有適用於你的 {machine_name} 的新功能或錯誤修正!假如尚未使用最新版本,建議更新你印表機的韌體到版本 {latest_version}。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s firmware available" -msgstr "有新 %s 韌體可用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 msgctxt "@action:button" -msgid "How to update" -msgstr "如何更新" +msgid "Select settings" +msgstr "選擇設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "選擇對此模型的自訂設定" + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "篩選..." + +#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "顯示全部" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura 備份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura 版本" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "印表機" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "線材" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "參數" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "外掛" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "想要更多?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "立即備份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "自動備份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "每天啟動 Cura 時自動建立備份。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +msgctxt "@button" +msgid "Restore" +msgstr "復原" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "刪除備份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "你確定要刪除此備份嗎? 這動作無法復原。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "復原備份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "在復原備份之前,你需要重新啟動 Cura。 你想要現在關閉 Cura 嗎?" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "備份並同步你的 Cura 設定。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 +msgctxt "@button" +msgid "Sign in" +msgstr "登入" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "我的備份" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。" + +#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "在預覽階段限制只能顯示 5 個備份。 刪除備份以顯示較舊的備份。" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "印表機設定" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (寬度)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (深度)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (高度)" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +msgctxt "@label" +msgid "Build plate shape" +msgstr "列印平台形狀" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +msgctxt "@label" +msgid "Origin at center" +msgstr "原點位於中心" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +msgctxt "@label" +msgid "Heated bed" +msgstr "熱床" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +msgctxt "@label" +msgid "Heated build volume" +msgstr "熱箱" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-code 類型" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "列印頭設定" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +msgctxt "@label" +msgid "X min" +msgstr "X 最小值" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +msgctxt "@label" +msgid "Y min" +msgstr "Y 最小值" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +msgctxt "@label" +msgid "X max" +msgstr "X 最大值" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +msgctxt "@label" +msgid "Y max" +msgstr "Y 最大值" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +msgctxt "@label" +msgid "Gantry Height" +msgstr "吊車高度" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "擠出機數目" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "將擠出機偏移設定至Gcode" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "起始 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 +msgctxt "@title:label" +msgid "End G-code" +msgstr "結束 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "噴頭設定" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +msgctxt "@label" +msgid "Nozzle size" +msgstr "噴頭孔徑" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "相容的線材直徑" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "噴頭偏移 X" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "噴頭偏移 Y" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "冷卻風扇數量" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "擠出機起始 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "擠出機結束 G-code" + +#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "印表機" + +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" msgid "Update Firmware" msgstr "更新韌體" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "壓縮 G-code 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "G-code GZ 寫入器不支援非文字模式。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "正在解析 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code 細項設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501 -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "發送檔案之前,請確保 G-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "G-code 寫入器不支援非文字模式。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "匯出前請先將 G-code 準備好。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "印表機設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "監控" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 msgctxt "@label" -msgid "Per Model Settings" -msgstr "單一模型設定" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "韌體是直接在 3D 印表機上運行的一個軟體。此韌體控制步進馬達,調節溫度讓印表機正常運作。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "設定對每個模型的單獨設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "後處理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "修改 G-Code 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "準備" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "預覽" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "儲存至行動裝置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "儲存到行動裝置 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "沒有可供寫入的檔案格式!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "正在儲存到行動裝置 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96 -msgctxt "@info:title" -msgid "Saving" -msgstr "儲存中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "無法儲存到 {0}{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125 -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "嘗試寫入到 {device} 時無法找到檔名。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "無法儲存到行動裝置 {0}:{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "儲存到行動裝置 {0}:{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147 -msgctxt "@info:title" -msgid "File Saved" -msgstr "檔案已儲存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -msgctxt "@action:button" -msgid "Eject" -msgstr "卸載" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "卸載行動裝置 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "安全移除硬體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "無法卸載 {0},可能有其它程式正在使用行動裝置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "行動裝置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "模擬檢視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "因為你還沒切片,沒有東西可顯示。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "沒有列印層可顯示" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131 /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "不要再顯示這個訊息" - -# Added manually to fix a string that was changed after string freeze. -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "分層檢視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "模型區域顯示已遺失或突出表面, 請修復您的模型並重新匯入Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "模型錯誤" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79 -msgctxt "@action:button" -msgid "Learn more" -msgstr "學習更多" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "實體檢視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 msgctxt "@label" -msgid "Support Blocker" -msgstr "支撐阻斷器" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "建立一塊不列印支撐的空間。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "從你的 Ultimaker 帳號偵測到資料更動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 msgctxt "@action:button" -msgid "Sync" -msgstr "同步" +msgid "Automatically upgrade Firmware" +msgstr "自動升級韌體" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "同步中..." +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "上傳自訂韌體" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "拒絕" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "因為沒有與印表機連線,無法更新韌體。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "同意" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "因為連線的印表機不支援更新韌體,無法更新韌體。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "外掛授權協議" +msgid "Select custom firmware" +msgstr "選擇自訂韌體" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒絕並從帳號中刪除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "你需要結束並重新啟動 {} ,更動才能生效。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "下載外掛 {} 失敗" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 格式的封包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "無法寫入 UFP 檔案:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "調平列印平台" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "選擇升級" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "透過雲端服務列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "透過雲端服務列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "透過雲端服務連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "不明上傳列印作業錯誤代碼:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "從你的 Ultimaker 帳號偵測到新的印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "從你的帳號新增印表機 {name} ({model})" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "… 和 {0} 其他" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "從 Digital Factory 新增的印表機:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "印表機無法使用雲端連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "印表機未連到 Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "要建立連線,請前往 {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "保留印表機設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "移除印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "{printer_name} 將被移除,直到下次帳號同步之前。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "要永久移除 {printer_name},請前往 {digital_factory_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423 -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "你確定要暫時移除 {printer_name} 嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 msgctxt "@title:window" -msgid "Remove printers?" -msgstr "移除印表機?" +msgid "Firmware Update" +msgstr "韌體更新" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463 -#, python-brace-format +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"你將從 Cura 移除 {0} 印表機。此動作無法復原。\n" -"你確定要繼續嗎?" +msgid "Updating firmware." +msgstr "更新韌體中..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"你將從 Cura 移除所有印表機。此動作無法復原。\n" -"你確定要繼續嗎?" +msgid "Firmware update completed." +msgstr "韌體更新已完成。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27 -msgctxt "@info:status" -msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -msgstr "利用你的 Ultimaker 帳號在任何地方傳送和監控列印作業。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33 -msgctxt "@info:status Ultimaker Cloud should not be translated." -msgid "Connect to Ultimaker Digital Factory" -msgstr "連接到 Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36 -msgctxt "@action" -msgid "Get started" -msgstr "開始" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware." -msgstr "你正在嘗試連接到一台未安裝 Ultimaker Connect 的印表機。請將印表機更新至最新版本的韌體。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "更新你印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "Cura 偵測到群組 {0} 的管理主機上未安裝的線材參數。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "向印表機傳送線材參數中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "你正在嘗試連接到 {0},但它不是印表機群組的管理者。你可以透過網頁將其設定為印表機群組的管理者。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "不是印表機群組管理者" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35 -msgctxt "@action" -msgid "Configure group" -msgstr "設定印表機群組" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "請等待目前作業傳送完成。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "列印錯誤" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "雲端服務未上傳資料到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "網路錯誤" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "正在傳送列印作業" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "正在上傳列印作業到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "列印作業隊列已滿,印表機無法再接受新的作業。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "隊列已滿" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "列印作業已成功傳送到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "資料傳送" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "網路連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "網路連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "透過網路連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "透過網路連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "明天" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "今天" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB 連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "透過 USB 連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "透過 USB 連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "透過 USB 連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?" +msgid "Firmware update failed due to an unknown error." +msgstr "由於未知錯誤,韌體更新失敗。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "由於通訊錯誤,導致韌體更新失敗。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134 -msgctxt "@message" -msgid "Print in Progress" -msgstr "列印正在進行中" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 檔案" +#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "由於韌體遺失,導致韌體更新失敗。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透視檢視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "此列印可能會有些問題。點擊查看調整提示。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "開啟專案" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "更新已有設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "新建設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "摘要 - Cura 專案" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 msgctxt "@action:label" msgid "Printer settings" msgstr "印表機設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 msgctxt "@info:tooltip" msgid "How should the conflict in the machine be resolved?" msgstr "如何解決機器的設定衝突?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 msgctxt "@action:label" msgid "Type" msgstr "類型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 msgctxt "@action:label" msgid "Printer Group" msgstr "印表機群組" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 msgctxt "@action:label" msgid "Profile settings" msgstr "列印參數設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 msgctxt "@info:tooltip" msgid "How should the conflict in the profile be resolved?" msgstr "如何解决列印參數中的設定衝突?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 msgctxt "@action:label" msgid "Name" msgstr "名稱" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 msgctxt "@action:label" msgid "Intent" msgstr "意圖" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 msgctxt "@action:label" msgid "Not in profile" msgstr "不在列印參數中" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" msgstr[0] "%1 覆寫" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 msgctxt "@action:label" msgid "Derivative from" msgstr "衍生自" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" msgstr[0] "%1, %2 覆寫" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 msgctxt "@action:label" msgid "Material settings" msgstr "線材設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 msgctxt "@info:tooltip" msgid "How should the conflict in the material be resolved?" msgstr "如何解决線材的設定衝突?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 msgctxt "@action:label" msgid "Setting visibility" msgstr "參數顯示設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 msgctxt "@action:label" msgid "Mode" msgstr "模式" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 msgctxt "@action:label" msgid "Visible settings:" msgstr "顯示設定:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." msgstr "載入專案時將清除列印平台上的所有模型。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 msgctxt "@action:button" msgid "Open" msgstr "開啟" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "想要更多?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "立即備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自動備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "每天啟動 Cura 時自動建立備份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "復原" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "刪除備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "你確定要刪除此備份嗎? 這動作無法復原。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "復原備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "在復原備份之前,你需要重新啟動 Cura。 你想要現在關閉 Cura 嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "線材" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "參數" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "外掛" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 備份" +msgid "Post Processing Plugin" +msgstr "後處理外掛" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "我的備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "在預覽階段限制只能顯示 5 個備份。 刪除備份以顯示較舊的備份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "備份並同步你的 Cura 設定。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199 -msgctxt "@button" -msgid "Sign in" -msgstr "登入" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "更新韌體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "韌體是直接在 3D 印表機上運行的一個軟體。此韌體控制步進馬達,調節溫度讓印表機正常運作。" +msgid "Post Processing Scripts" +msgstr "後處理腳本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 +msgctxt "@action" +msgid "Add a script" +msgstr "添加一個腳本" + +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。" +msgid "Settings" +msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "自動升級韌體" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "更改目前啟用的後處理腳本。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "上傳自訂韌體" +#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "下列為啟用中的腳本:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "因為沒有與印表機連線,無法更新韌體。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "因為連線的印表機不支援更新韌體,無法更新韌體。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "選擇自訂韌體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "韌體更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "更新韌體中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "韌體更新已完成。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "由於未知錯誤,韌體更新失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "由於通訊錯誤,導致韌體更新失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "由於韌體遺失,導致韌體更新失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 msgctxt "@title:window" msgid "Convert Image..." msgstr "轉換圖片..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "每個像素與底板的最大距離。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 msgctxt "@action:label" msgid "Height (mm)" msgstr "高度 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "距離列印平台的底板高度,以毫米為單位。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 msgctxt "@action:label" msgid "Base (mm)" msgstr "底板 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate." msgstr "列印平台寬度,以毫米為單位。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 msgctxt "@action:label" msgid "Width (mm)" msgstr "寬度 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "列印平台深度,以毫米為單位" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 msgctxt "@action:label" msgid "Depth (mm)" msgstr "深度 (mm)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 msgctxt "@info:tooltip" msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "若要列印浮雕,深色像素應該對應到較厚的位置,以阻擋更多的光通過。若要列印高度圖,淺色像素表示較高的地形,因此淺色像素應對應於產生的 3D 模型中較厚的位置。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "顏色越深高度越高" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "顏色越淺高度越高" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 msgctxt "@info:tooltip" msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 msgctxt "@item:inlistbox" msgid "Linear" msgstr "線性" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "半透明" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "光線穿透 1mm 厚度列印件的百分比。降低此值可增加暗部的對比度,並降低亮部的對比度。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1mm 透明度" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "影像平滑程度。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 msgctxt "@action:button" msgid "OK" msgstr "確定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "請選擇適用於 Ultimaker Original 的更新檔案" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "熱床(官方版本或自製版本)" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "列印平台調整水平" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "為了確保列印品質出色,你現在可以開始調整你的列印平台。當你點擊「移動到下一個位置」時,噴頭將移動到不同的可調節位置。" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "開始進行列印平台調平" + +#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "移動到下一個位置" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "更多關於匿名資料收集的資訊" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 +msgctxt "@text:window" +msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗。以下是共享資料的範例:" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "我不想傳送匿名資料" + +#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "允許傳送匿名資料" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 +msgctxt "@title" +msgid "Marketplace" +msgstr "市集" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 +msgctxt "@info" +msgid "You will need to restart Cura before changes in packages have effect." +msgstr "需重新啟動 Cura,套件的更動才能生效。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "結束 %1" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 +msgctxt "@action:button" +msgid "Install" +msgstr "安裝" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 +msgctxt "@action:button" +msgid "Installed" +msgstr "已安裝" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +msgctxt "@label" +msgid "Premium" +msgstr "付費會員" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +msgctxt "@info:tooltip" +msgid "Go to Web Marketplace" +msgstr "前往網路市集" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +msgctxt "@label" +msgid "Search materials" +msgstr "搜尋線材" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 +msgctxt "@label" +msgid "Compatibility" +msgstr "相容性" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 +msgctxt "@label:table_header" +msgid "Machine" +msgstr "機器" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 +msgctxt "@label:table_header" +msgid "Build Plate" +msgstr "列印平台" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 +msgctxt "@label:table_header" +msgid "Support" +msgstr "支撐" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 +msgctxt "@label:table_header" +msgid "Quality" +msgstr "品質" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 +msgctxt "@action:label" +msgid "Technical Data Sheet" +msgstr "技術資料表" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 +msgctxt "@action:label" +msgid "Safety Data Sheet" +msgstr "安全資料表" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 +msgctxt "@action:label" +msgid "Printing Guidelines" +msgstr "列印指南" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 +msgctxt "@action:label" +msgid "Website" +msgstr "網站" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to install or update" +msgstr "需要登入才能進行安裝或升級" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 +msgctxt "@label:The string between and is the highlighted link" +msgid "Buy material spools" +msgstr "購買線材線軸" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 +msgctxt "@action:button" +msgid "Update" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 +msgctxt "@action:button" +msgid "Updating" +msgstr "更新中" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 +msgctxt "@action:button" +msgid "Updated" +msgstr "更新完成" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 +msgctxt "@action:button" +msgid "Back" +msgstr "返回" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 msgctxt "@title:tab" -msgid "Printer" -msgstr "印表機" +msgid "Plugins" +msgstr "外掛" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "噴頭設定" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 +msgctxt "@title:tab" +msgid "Materials" +msgstr "線材" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 +msgctxt "@title:tab" +msgid "Installed" +msgstr "已安裝" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 msgctxt "@label" -msgid "Nozzle size" -msgstr "噴頭孔徑" +msgid "Will install upon restarting" +msgstr "將在重新啟動時安裝" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 +msgctxt "@label:The string between and is the highlighted link" +msgid "Log in is required to update" +msgstr "需要登入才能進行升級" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Downgrade" +msgstr "降級版本" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +msgctxt "@action:button" +msgid "Uninstall" +msgstr "移除" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "mm" -msgstr "mm" +msgid "Community Contributions" +msgstr "社群貢獻" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 msgctxt "@label" -msgid "Compatible material diameter" -msgstr "相容的線材直徑" +msgid "Community Plugins" +msgstr "社群外掛" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 msgctxt "@label" -msgid "Nozzle offset X" -msgstr "噴頭偏移 X" +msgid "Generic Materials" +msgstr "通用線材" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 +msgctxt "@info" +msgid "Fetching packages..." +msgstr "取得套件..." + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "噴頭偏移 Y" +msgid "Website" +msgstr "網站" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷卻風扇數量" +msgid "Email" +msgstr "電子郵件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "擠出機起始 G-code" +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +msgstr "請登入以取得 Ultimaker Cura Enterprise 驗証的外掛及線材" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "擠出機結束 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "印表機設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 msgctxt "@label" -msgid "X (Width)" -msgstr "X (寬度)" +msgid "Version" +msgstr "版本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (深度)" +msgid "Last updated" +msgstr "最後更新時間" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高度)" +msgid "Brand" +msgstr "品牌" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 msgctxt "@label" -msgid "Build plate shape" -msgstr "列印平台形狀" +msgid "Downloads" +msgstr "下載" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 +msgctxt "@title:tab" +msgid "Installed plugins" +msgstr "已安裝外掛" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 +msgctxt "@info" +msgid "No plugin has been installed." +msgstr "尚未安裝任何外掛。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 +msgctxt "@title:tab" +msgid "Installed materials" +msgstr "已安裝線材" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 +msgctxt "@info" +msgid "No material has been installed." +msgstr "尚未安裝任何線材。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 +msgctxt "@title:tab" +msgid "Bundled plugins" +msgstr "捆綁式外掛" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 +msgctxt "@title:tab" +msgid "Bundled materials" +msgstr "捆綁式線材" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 +msgctxt "@info" +msgid "Could not connect to the Cura Package database. Please check your connection." +msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 msgctxt "@label" -msgid "Origin at center" -msgstr "原點位於中心" +msgid "You need to accept the license to install the package" +msgstr "你必需同意授權協議才能安裝套件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +msgctxt "@title" +msgid "Changes from your account" +msgstr "你帳戶的更動" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +msgctxt "@button" +msgid "Dismiss" +msgstr "捨棄" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +msgctxt "@button" +msgid "Next" +msgstr "下一步" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 msgctxt "@label" -msgid "Heated bed" -msgstr "熱床" +msgid "The following packages will be added:" +msgstr "將新增下列套件:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 msgctxt "@label" -msgid "Heated build volume" -msgstr "熱箱" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "下列套件因 Cura 版本不相容,無法安裝:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall" +msgstr "移除確認" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 +msgctxt "@text:window" +msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +msgstr "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "線材" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "參數" + +#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 +msgctxt "@action:button" +msgid "Confirm" +msgstr "確定" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code 類型" +msgid "Color scheme" +msgstr "顏色方案" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "列印頭設定" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "線材顏色" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "線條類型" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "速度" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "層厚" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "線寬" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "流動" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 msgctxt "@label" -msgid "X min" -msgstr "X 最小值" +msgid "Compatibility Mode" +msgstr "相容模式" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 msgctxt "@label" -msgid "Y min" -msgstr "Y 最小值" +msgid "Travels" +msgstr "移動軌跡" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 msgctxt "@label" -msgid "X max" -msgstr "X 最大值" +msgid "Helpers" +msgstr "輔助結構" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Y max" -msgstr "Y 最大值" +msgid "Shell" +msgstr "外殼" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 msgctxt "@label" -msgid "Gantry Height" -msgstr "吊車高度" +msgid "Infill" +msgstr "填充" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 msgctxt "@label" -msgid "Number of Extruders" -msgstr "擠出機數目" +msgid "Starts" +msgstr "啟動" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "將擠出機偏移設定至Gcode" +msgid "Only Show Top Layers" +msgstr "只顯示頂層" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "起始 G-code" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "顯示頂端 5 層列印細節" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "結束 G-code" +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "頂 / 底層" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 +msgctxt "@label" +msgid "Inner Wall" +msgstr "內壁" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 +msgctxt "@label" +msgid "min" +msgstr "最小值" + +#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 +msgctxt "@label" +msgid "max" +msgstr "最大值" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "管理印表機" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 +msgctxt "@label" +msgid "Glass" +msgstr "玻璃" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "請更新你印表機的韌體以便遠端管理工作隊列。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "網路攝影機無法從Ultimaker Cura中瀏覽,請點擊\"管理列印機\"並從Ultimaker Digital Factory中瀏覽網路攝影機." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Loading..." +msgstr "正在載入..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "無法使用" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "無法連接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 +msgctxt "@label:status" +msgid "Idle" +msgstr "閒置中" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "正在準備..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 +msgctxt "@label:status" +msgid "Printing" +msgstr "正在列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +msgctxt "@label" +msgid "Untitled" +msgstr "無標題" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 +msgctxt "@label" +msgid "Anonymous" +msgstr "匿名" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "需要修改設定" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 +msgctxt "@action:button" +msgid "Details" +msgstr "細項" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "無法使用的印表機" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 +msgctxt "@label" +msgid "First available" +msgstr "可用的第一個" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 +msgctxt "@label" +msgid "Queued" +msgstr "已排入隊列" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "使用瀏覽器管理" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "目前沒有列印作業在隊列中。可透過切片並傳送列印作來增加一個。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 +msgctxt "@label" +msgid "Print jobs" +msgstr "列印作業" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 +msgctxt "@label" +msgid "Total print time" +msgstr "總列印時間" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 +msgctxt "@label" +msgid "Waiting for" +msgstr "等待" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 +msgctxt "@title:window" +msgid "Print over network" +msgstr "網路連線列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 +msgctxt "@action:button" +msgid "Print" +msgstr "列印" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 +msgctxt "@label" +msgid "Printer selection" +msgstr "印表機選擇" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "修改設定" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +msgctxt "@action:button" +msgid "Override" +msgstr "覆寫" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "分配的印表機 %1 需要下列的設定更動:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "已分配到印表機 %1,但列印工作含有未知的線材設定。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "將線材 %1 從 %2 改成 %3。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "將 %3 做為線材 %1 載入(無法覆寫)。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "將 print core %1 從 %2 改成 %3。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 +msgctxt "@label" +msgid "Change build plate to %1 (This cannot be overridden)." +msgstr "將列印平台改成 %1(無法覆寫)。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "覆寫會將指定的設定套用在現有的印表機上。這可能導致列印失敗。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 +msgctxt "@label" +msgid "Aluminum" +msgstr "鋁" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +msgctxt "@label:status" +msgid "Finished" +msgstr "已完成" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "正在中斷..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +msgctxt "@label:status" +msgid "Aborted" +msgstr "已中斷" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Failed" +msgstr "失敗" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "正在暫停..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Paused" +msgstr "已暫停" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "正在繼續..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 +msgctxt "@label:status" +msgid "Action required" +msgstr "需要採取的動作" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "在 %2 完成 %1" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "連接到網路印表機" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "從下列清單中選擇你的印表機:" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +msgctxt "@action:button" +msgid "Edit" +msgstr "編輯" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +msgctxt "@action:button" +msgid "Remove" +msgstr "移除" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +msgctxt "@action:button" +msgid "Refresh" +msgstr "刷新" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "如果你的印表機未被列出,請閱讀網路列印故障排除指南" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +msgctxt "@label" +msgid "Type" +msgstr "類型" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +msgctxt "@label" +msgid "Firmware version" +msgstr "韌體版本" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +msgctxt "@label" +msgid "Address" +msgstr "位址" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "此印表機未被設定為管理印表機群組。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "此印表機為 %1 印表機群組的管理者。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "該網路位址的印表機尚無回應。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +msgctxt "@action:button" +msgid "Connect" +msgstr "連接" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "無效的 IP 位址" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "請輸入有效的 IP 位址 。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "印表機網路位址" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "輸入印表機的 IP 位址。" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +msgctxt "@label" +msgid "Move to top" +msgstr "移至頂端" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +msgctxt "@label" +msgid "Delete" +msgstr "刪除" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +msgctxt "@label" +msgid "Resume" +msgstr "繼續" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "正在暫停..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +msgctxt "@label" +msgid "Resuming..." +msgstr "正在繼續..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +msgctxt "@label" +msgid "Pause" +msgstr "暫停" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Aborting..." +msgstr "正在中斷..." + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +msgctxt "@label" +msgid "Abort" +msgstr "中斷" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "你確定要將 %1 移至隊列的頂端嗎?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "將列印作業移至最頂端" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "你確定要刪除 %1 嗎?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "刪除列印作業" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "你確定要中斷 %1 嗎?" + +#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +msgctxt "@window:title" +msgid "Abort print" +msgstr "中斷列印" + +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2143,1558 +3177,631 @@ msgstr "" "- 檢查印表機是否已連接到網路。\n" "- 檢查是否已登入以尋找雲端連接的印表機。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "請將你的印表機連上網路。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "查看線上使用者手冊" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "為了監控您的印表機,請連結印表機." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "網格類型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "普通模型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "做為支撐" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "修改重疊處設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "重疊處不建立支撐" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "只填充網格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "切割網格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380 -msgctxt "@action:button" -msgid "Select settings" -msgstr "選擇設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "選擇對此模型的自訂設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "篩選..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "顯示全部" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "後處理外掛" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "後處理腳本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "添加一個腳本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 +#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "更改目前啟用的後處理腳本。" +msgid "Some things could be problematic in this print. Click to see tips for adjustment." +msgstr "此列印可能會有些問題。點擊查看調整提示。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "下列為啟用中的腳本:" +msgid "3D View" +msgstr "立體圖" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "顏色方案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "線材顏色" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "線條類型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "速度" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "層厚" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "線寬" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "流動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "相容模式" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "移動軌跡" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "輔助結構" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "外殼" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "填充" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "啟動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "只顯示頂層" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "顯示頂端 5 層列印細節" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "頂 / 底層" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "內壁" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "最小值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "最大值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "更多關於匿名資料收集的資訊" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -msgctxt "@text:window" -msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗。以下是共享資料的範例:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "我不想傳送匿名資料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "允許傳送匿名資料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "返回" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "相容性" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "機器" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "列印平台" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "支撐" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "品質" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "技術資料表" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "安全資料表" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "列印指南" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "網站" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -msgctxt "@action:button" -msgid "Installed" -msgstr "已安裝" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "需要登入才能進行安裝或升級" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "購買線材線軸" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "更新中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "更新完成" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "付費會員" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "前往網路市集" +msgid "Front View" +msgstr "前視圖" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "上視圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "左視圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "右視圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 msgctxt "@label" -msgid "Search materials" -msgstr "搜尋線材" +msgid "Object list" +msgstr "物件清單" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "需重新啟動 Cura,套件的更動才能生效。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "結束 %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "外掛" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -msgctxt "@title:tab" -msgid "Materials" -msgstr "線材" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "已安裝" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "將在重新啟動時安裝" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "需要登入才能進行升級" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 msgctxt "@action:button" -msgid "Downgrade" -msgstr "降級版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "移除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "安裝" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "你帳戶的更動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "捨棄" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178 -msgctxt "@button" -msgid "Next" -msgstr "下一步" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "將新增下列套件:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "下列套件因 Cura 版本不相容,無法安裝:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "移除確認" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -msgctxt "@text:window" -msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -msgstr "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "線材" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "參數" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "確定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "你必需同意授權協議才能安裝套件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "網站" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "電子郵件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "最後更新時間" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "品牌" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "下載" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "社群貢獻" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "社群外掛" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "通用線材" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "已安裝外掛" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "尚未安裝任何外掛。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "已安裝線材" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125 -msgctxt "@info" -msgid "No material has been installed." -msgstr "尚未安裝任何線材。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "捆綁式外掛" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "捆綁式線材" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "取得套件..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "請登入以取得 Ultimaker Cura Enterprise 驗証的外掛及線材" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" msgid "Marketplace" msgstr "市集" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "列印平台調平" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "檔案(&F)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "為了確保列印品質出色,你現在可以開始調整你的列印平台。當你點擊「移動到下一個位置」時,噴頭將移動到不同的可調節位置。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "編輯(&E)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "檢視(&V)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "開始進行列印平台調平" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "設定(&S)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "移動到下一個位置" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "擴充功能(&X)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "請選擇適用於 Ultimaker Original 的更新檔案" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "偏好設定(&R)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "熱床(官方版本或自製版本)" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "幫助(&H)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "連接到網路印表機" +msgid "New project" +msgstr "新建專案" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。" +#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 +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 "你確定要開始一個新專案嗎?這將清除列印平台及任何未儲存的設定。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "從下列清單中選擇你的印表機:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "編輯" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -msgctxt "@action:button" -msgid "Remove" -msgstr "移除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "刷新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "如果你的印表機未被列出,請閱讀網路列印故障排除指南" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "類型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "韌體版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "位址" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "此印表機未被設定為管理印表機群組。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "此印表機為 %1 印表機群組的管理者。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "該網路位址的印表機尚無回應。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "無效的 IP 位址" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "請輸入有效的 IP 位址 。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "印表機網路位址" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "輸入印表機的 IP 位址。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "修改設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "覆寫" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "分配的印表機 %1 需要下列的設定更動:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "已分配到印表機 %1,但列印工作含有未知的線材設定。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "將線材 %1 從 %2 改成 %3。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "將 %3 做為線材 %1 載入(無法覆寫)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "將 print core %1 從 %2 改成 %3。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "將列印平台改成 %1(無法覆寫)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "覆寫會將指定的設定套用在現有的印表機上。這可能導致列印失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -msgctxt "@label" -msgid "Glass" -msgstr "玻璃" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "鋁" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "移至頂端" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "刪除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "繼續" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "正在暫停..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "正在繼續..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "暫停" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "正在中斷..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "中斷" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "你確定要將 %1 移至隊列的頂端嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "將列印作業移至最頂端" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "你確定要刪除 %1 嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "刪除列印作業" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "你確定要中斷 %1 嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "中斷列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "管理印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "請更新你印表機的韌體以便遠端管理工作隊列。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "正在載入..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "無法使用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "無法連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "閒置中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "正在準備..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "正在列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "無標題" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "需要修改設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "細項" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "無法使用的印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "可用的第一個" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -msgctxt "@label:status" -msgid "Aborted" -msgstr "已中斷" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Finished" -msgstr "已完成" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "正在中斷..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "正在暫停..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -msgctxt "@label:status" -msgid "Paused" -msgstr "已暫停" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "正在繼續..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Action required" -msgstr "需要採取的動作" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "在 %2 完成 %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "已排入隊列" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "使用瀏覽器管理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "目前沒有列印作業在隊列中。可透過切片並傳送列印作來增加一個。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "列印作業" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "總列印時間" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "等待" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11 -msgctxt "@title:window" -msgid "Print over network" -msgstr "網路連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52 -msgctxt "@action:button" -msgid "Print" -msgstr "列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80 -msgctxt "@label" -msgid "Printer selection" -msgstr "印表機選擇" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "登入" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "登入Ultimaker 論壇" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42 -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the Ultimaker community" -msgstr "" -"- 從市集中加入線材參數及插件\n" -"-備份及同步您的線材設定與插件 \n" -"- 分享創意並可從Ultimaker社群中超過48000的使用者得到幫助" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "創建免費的Ultimaker帳戶" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "檢查中..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "帳號已同步" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "出了些問題..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "安裝待處理的更新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "檢查帳號更新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "最後一次更新:%1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 帳號" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125 -msgctxt "@button" -msgid "Sign Out" -msgstr "登出" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "沒有時間估計" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "沒有成本估算" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "預覽" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "時間估計" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "線材估計" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "無法切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Processing" msgstr "處理中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 msgctxt "@button" msgid "Slice" msgstr "切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 msgctxt "@label" msgid "Start the slicing process" msgstr "開始切片程序" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 msgctxt "@button" msgid "Cancel" msgstr "取消" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "顯示線上故障排除指南" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "切換全螢幕" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "離開全螢幕" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "復原(&U)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "取消復原(&R)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "退出(&Q)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "立體圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "前視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "上視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "下視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "左視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "右視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "設定 Cura..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "新增印表機(&A)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "管理印表機(&I)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "管理線材..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "從市集增加更多線材" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "使用目前設定 / 覆寫更新列印參數(&U)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "捨棄目前更改(&D)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "從目前設定 / 覆寫值建立列印參數(&C)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "管理列印參數.." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "顯示線上說明文件(&D)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "BUG 回報(&B)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "新功能" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "關於..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "刪除選取" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "置中選取" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "複製選取" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "刪除模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "將模型置中(&N)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "群組模型(&G)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "取消模型群組" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "結合模型(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "複製模型...(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "選擇所有模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "清空列印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "重新載入所有模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "將所有模型排列到所有列印平台上" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "排列所有模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "排列所選模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "重置所有模型位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "重置所有模型旋轉" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "開啟檔案(&O)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "新建專案(&N)..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "顯示設定資料夾" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "參數顯示設定..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "市集(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257 +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "此套件將在重新啟動後安裝。" +msgid "Time estimation" +msgstr "時間估計" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17 -msgctxt "@title:tab" -msgid "General" -msgstr "基本" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +msgctxt "@label" +msgid "Material estimation" +msgstr "線材估計" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453 -msgctxt "@title:tab" -msgid "Settings" -msgstr "設定" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -msgctxt "@title:tab" -msgid "Printers" -msgstr "印表機" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "列印參數" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +msgctxt "@label" +msgid "No time estimation available" +msgstr "沒有時間估計" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "關閉 %1 中" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +msgctxt "@label" +msgid "No cost estimation available" +msgstr "沒有成本估算" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577 /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "是否確定要離開 %1 ?" +#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "預覽" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "開啟檔案" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737 -msgctxt "@window:title" -msgid "Install Package" -msgstr "安裝套件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "開啟檔案" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748 -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "我們已經在你選擇的檔案中找到一個或多個 G-Code 檔案。你一次只能開啟一個 G-Code 檔案。若需開啟 G-Code 檔案,請僅選擇一個。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +msgctxt "@label" +msgid "Add a printer" msgstr "新增印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865 -msgctxt "@title:window" +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "新增網路印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "新增非網路印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "新增雲端印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "等待雲端服務回應" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "在你的帳號未發現任何印表機?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "下列您帳號中的印表機已新增至 Cura:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 +msgctxt "@button" +msgid "Add printer manually" +msgstr "手動新增印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "使用 IP 位址新增印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "輸入印表機的 IP 位址。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 +msgctxt "@button" +msgid "Add" +msgstr "新增" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +msgctxt "@label" +msgid "Could not connect to device." +msgstr "無法連接到裝置。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "無法連接到 Ultimaker 印表機?" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "此位址的印表機尚未回應。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "無法添加此印表機,因為它是未知的印表機,或者它不是印表機群組的主機。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 +msgctxt "@button" +msgid "Back" +msgstr "返回" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 +msgctxt "@button" +msgid "Connect" +msgstr "連接" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "使用者授權" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 +msgctxt "@button" +msgid "Decline and close" +msgstr "拒絕並關閉" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 +msgctxt "@label" +msgid "Welcome to Ultimaker Cura" +msgstr "歡迎來到 Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +msgctxt "@text" +msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgstr "請依照步驟安裝Ultimaker Cura. 這會需要幾分鐘的時間." + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 +msgctxt "@button" +msgid "Get started" +msgstr "開始" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +msgctxt "@label" +msgid "Sign in to the Ultimaker platform" +msgstr "登入Ultimaker 論壇" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "從市集中加入線材設定或插件" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "備份及同步您的線材設定與插件" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgstr "分享創意並可從Ultimaker社群中超過48000的使用者得到幫助" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +msgctxt "@button" +msgid "Skip" +msgstr "略過" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 +msgctxt "@text" +msgid "Create a free Ultimaker Account" +msgstr "創建免費的Ultimaker帳戶" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +msgctxt "@label" +msgid "Manufacturer" +msgstr "製造商" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +msgctxt "@label" +msgid "Profile author" +msgstr "列印參數作者" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +msgctxt "@label" +msgid "Printer name" +msgstr "印表機名稱" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 +msgctxt "@text" +msgid "Please name your printer" +msgstr "請為你的印表機取一個名稱" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "在你的網路上找不到印表機。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +msgctxt "@label" +msgid "Refresh" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "使用 IP 位址新增印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +msgctxt "@label" +msgid "Add cloud printer" +msgstr "新增雲端印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "故障排除" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +msgctxt "@label" +msgid "Help us to improve Ultimaker Cura" +msgstr "協助我們改進 Ultimaker Cura" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 +msgctxt "@text" +msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 +msgctxt "@text" +msgid "Machine types" +msgstr "機器類型" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 +msgctxt "@text" +msgid "Material usage" +msgstr "線材用法" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 +msgctxt "@text" +msgid "Number of slices" +msgstr "切片次數" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 +msgctxt "@text" +msgid "Print settings" +msgstr "列印設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 +msgctxt "@text" +msgid "Data collected by Ultimaker Cura will not contain any personal information." +msgstr "Ultimaker Cura 收集的資料不包含任何個人資訊。" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 +msgctxt "@text" +msgid "More information" +msgstr "更多資訊" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +msgctxt "@label" msgid "What's New" msgstr "新功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +msgctxt "@label" +msgid "Empty" +msgstr "空的" + +#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "發佈通知" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "關於 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "版本:%1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "熔絲 3D 列印技術的的端對端解決方案。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Cura 由 Ultimaker B.V. 與社區合作開發。\n" +"Cura 由 Ultimaker B.V. 與社群合作開發。\n" "Cura 使用以下開源專案:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 msgctxt "@label" msgid "Graphical user interface" msgstr "圖形用戶介面" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Application framework" msgstr "應用框架" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "G-code generator" msgstr "G-code 產生器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "Interprocess communication library" msgstr "進程間通訊交互使用庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Programming language" msgstr "編程語言" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" msgid "GUI framework" msgstr "GUI 框架" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" msgid "GUI framework bindings" msgstr "GUI 框架綁定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 msgctxt "@label" msgid "C/C++ Binding library" msgstr "C / C++ 綁定庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 msgctxt "@label" msgid "Data interchange format" msgstr "資料交換格式" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 msgctxt "@label" msgid "Support library for scientific computing" msgstr "科學計算函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 msgctxt "@label" msgid "Support library for faster math" msgstr "高速運算函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 msgctxt "@label" msgid "Support library for handling STL files" msgstr "用於處理 STL 檔案的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 msgctxt "@label" msgid "Support library for handling planar objects" msgstr "用於處理平面物件的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 msgctxt "@label" msgid "Support library for handling triangular meshes" msgstr "用於處理三角形網格的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 msgctxt "@label" msgid "Support library for handling 3MF files" msgstr "用於處理 3MF 檔案的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Support library for file metadata and streaming" msgstr "用於檔案 metadata 和串流的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 msgctxt "@label" msgid "Serial communication library" msgstr "串口通訊函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "ZeroConf discovery library" msgstr "ZeroConf 發現函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" msgid "Polygon clipping library" msgstr "多邊形剪輯函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 msgctxt "@Label" msgid "Static type checker for Python" msgstr "Python 靜態型別檢查器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 msgctxt "@Label" msgid "Root Certificates for validating SSL trustworthiness" msgstr "驗證 SSL 可信度用的根憑證" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 msgctxt "@Label" msgid "Python Error tracking library" msgstr "Python 錯誤追蹤函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 msgctxt "@label" msgid "Polygon packing library, developed by Prusa Research" msgstr "多邊形包裝函式庫,由 Prusa Research 開發" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Python bindings for libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 msgctxt "@label" msgid "Support library for system keyring access" msgstr "存取系統金鑰函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 msgctxt "@label" msgid "Python extensions for Microsoft Windows" msgstr "Python擴充(windows)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 msgctxt "@label" msgid "Font" msgstr "字體" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 msgctxt "@label" msgid "SVG icons" msgstr "SVG 圖標" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Linux cross-distribution 應用程式部署" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 msgctxt "@title:window" -msgid "Open project file" -msgstr "開啟專案檔案" +msgid "Open file(s)" +msgstr "開啟檔案" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "這是一個 Cura 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "我們已經在你所選擇的檔案中找到一個或多個專案檔案,但一次只能開啟一個專案檔案。我們建議只從那些檔案中匯入模型而不開啟專案。你要繼續操作嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "記住我的選擇" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 msgctxt "@action:button" -msgid "Open as project" -msgstr "作為專案開啟" +msgid "Import all as models" +msgstr "匯入所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +msgctxt "@title:window" +msgid "Save Project" +msgstr "儲存專案" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "擠出機 %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & 線材" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +msgctxt "@action:label" +msgid "Material" +msgstr "線材" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "儲存時不再顯示專案摘要" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 msgctxt "@action:button" -msgid "Import models" -msgstr "匯入模型" +msgid "Save" +msgstr "儲存" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "捨棄或保留更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 msgctxt "@text:window, %1 is a profile name" msgid "" "You have customized some profile settings.\n" @@ -3705,1184 +3812,142 @@ msgstr "" "你要在切換參數後保留這些更動嗎?\n" "或者你也可以忽略這些更動,從 '%1' 載入預設值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 msgctxt "@title:column" msgid "Profile settings" msgstr "列印參數設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 msgctxt "@title:column" msgid "Current changes" msgstr "目前更動" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "總是詢問" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "捨棄更改,並不再詢問此問題" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "保留更改,並不再詢問此問題" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 msgctxt "@action:button" msgid "Discard changes" msgstr "忽略更動" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 msgctxt "@action:button" msgid "Keep changes" msgstr "保留更動" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +msgctxt "@title:window" +msgid "Open project file" +msgstr "開啟專案檔案" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "我們已經在你所選擇的檔案中找到一個或多個專案檔案,但一次只能開啟一個專案檔案。我們建議只從那些檔案中匯入模型而不開啟專案。你要繼續操作嗎?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "這是一個 Cura 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "記住我的選擇" + +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 msgctxt "@action:button" -msgid "Import all as models" -msgstr "匯入所有模型" +msgid "Open as project" +msgstr "作為專案開啟" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15 -msgctxt "@title:window" -msgid "Save Project" -msgstr "儲存專案" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "擠出機 %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & 線材" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 -msgctxt "@action:label" -msgid "Material" -msgstr "線材" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "儲存時不再顯示專案摘要" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300 +#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 msgctxt "@action:button" -msgid "Save" -msgstr "儲存" +msgid "Import models" +msgstr "匯入模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "用 %1 列印所選模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "無標題" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "檔案(&F)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "編輯(&E)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "檢視(&V)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "設定(&S)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "擴充功能(&X)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "偏好設定(&R)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "幫助(&H)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148 -msgctxt "@title:window" -msgid "New project" -msgstr "新建專案" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149 -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 "你確定要開始一個新專案嗎?這將清除列印平台及任何未儲存的設定。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 -msgctxt "@action:button" -msgid "Marketplace" -msgstr "市集" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "市集" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "從印表機載入可用的設定..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "由於印表機已斷線,因此設定無法使用。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112 -msgctxt "@label" -msgid "Select configuration" -msgstr "選擇設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223 -msgctxt "@label" -msgid "Configurations" -msgstr "設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "自訂選項" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "已啟用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "線材" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "在此線材組合下,使用膠水以獲得較佳的附著。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "列印所選模型:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "複製所選模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "複製個數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "儲存專案...(&S)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "匯出...(&E)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "匯出選擇..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "線材" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "常用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "通用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "開啟檔案." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "支援網路的印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "本機印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "最近開啟的檔案(&R)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "儲存專案." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "印表機(&P)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "線材(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "設為主要擠出機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "啟用擠出機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "關閉擠出機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "顯示設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "折疊所有分類" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "管理參數顯示..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "視角位置(&C)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "攝影機檢視" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "透視" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "正交" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "列印平台(&B)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "未連接至印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "印表機不接受命令" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "維護中。請檢查印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "與印表機的連線中斷" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "列印中..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "已暫停" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "準備中..." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "請取出列印件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "中斷列印" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "你確定要中斷列印嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114 -msgctxt "@label" -msgid "Is printed as support." -msgstr "做為支撐而列印。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "與此模型重疊的其他模型已被更改。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "與此模型重疊的填充已被更改。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "與此模型的重疊沒有支撐。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "覆寫 %1 設定。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 -msgctxt "@label" -msgid "Object list" -msgstr "物件清單" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137 -msgctxt "@label" -msgid "Interface" -msgstr "介面" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209 -msgctxt "@label" -msgid "Currency:" -msgstr "貨幣:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222 -msgctxt "@label" -msgid "Theme:" -msgstr "主題:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "需重新啟動 Cura,新的設定才能生效。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "當設定變更時自動進行切片。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "自動切片" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "顯示區設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "模型缺少支撐的區域已以紅色標示。如果沒有支撐這些區域將無法正常列印。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "顯示突出部分" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333 -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "模型缺少或多餘的表面已用警告符號標示。工具路徑是將缺少部份補上的型狀。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "顯示模型錯誤" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "當模型被選中時,視角將自動調整到最合適的觀察位置(模型處於正中央)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "當專案被選中時,自動置中視角" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "需要讓 Cura 的預設縮放操作反轉嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "反轉視角縮放方向。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "是否跟隨滑鼠方向進行縮放?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "正交透視不支援游標縮放功能。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "跟隨滑鼠方向縮放" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "需要移動平台上的模型,使它們不再交錯嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "確保每個模型都保持分離" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "要將模型下降到碰觸列印平台嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "自動下降模型到列印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "在 g-code 讀取器中顯示警告訊息。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "G-code 讀取器中的警告訊息" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "分層檢視要強制進入相容模式嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "強制分層檢視相容模式(需要重新啟動)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Cura 應該開啟在前次關閉時的位置嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "開啟時復原視窗位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "使用哪種類型的攝影機渲染?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "攝影機渲染:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509 -msgid "Perspective" -msgstr "透視" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510 -msgid "Orthographic" -msgstr "正交" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "開啟並儲存檔案" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "使用同一 Cura 視窗" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "當模型的尺寸過大時,是否將模型自動縮小至列印範圍嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "縮小過大模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585 -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "部份模型採用較大的單位(例如:公尺),導致模型變得非常小,要將這些模型放大嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "放大過小模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "模型載入後要設為被選擇的狀態嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "模型載入後選擇模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "是否自動將印表機名稱作為列印作業名稱的前綴?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "將印表機名稱前綴添加到列印作業名稱中" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "儲存專案檔案時是否顯示摘要?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "儲存專案時顯示摘要對話框" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "開啟專案檔案時的預設行為" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "開啟專案檔案時的預設行為: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "每次都向我確認" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "總是作為一個專案開啟" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "總是匯入模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705 -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "當你對列印參數進行更改然後切換到其他列印參數時,將顯示一個對話框詢問你是否要保留修改。你也可以選擇預設不顯示該對話框。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -msgctxt "@label" -msgid "Profiles" -msgstr "列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: " - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "總是放棄修改過的設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "總是將修改過的設定轉移至新的列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770 -msgctxt "@label" -msgid "Privacy" -msgstr "隱私權" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "當 Cura 啟動時,是否自動檢查更新?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "啟動時檢查更新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792 -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "你願意將關於你的列印資料以匿名形式發送到 Ultimaker 嗎?注意:我們不會記錄或發送任何模型、IP 位址或其他私人資料。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(匿名)發送列印資訊" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806 -msgctxt "@action:button" -msgid "More information" -msgstr "更多資訊" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -msgctxt "@action:button" -msgid "Activate" -msgstr "啟用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -msgctxt "@action:button" -msgid "Rename" -msgstr "重命名" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "建立" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "複製" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -msgctxt "@action:button" -msgid "Import" -msgstr "匯入" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -msgctxt "@action:button" -msgid "Export" -msgstr "匯出" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "同步列印機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "移除確認" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "你確定要移除 %1 嗎?這動作無法復原!" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "匯入線材設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "無法匯入線材 %1%2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "成功匯入線材 %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "匯出線材設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "無法匯出線材至 %1%2" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "成功匯出線材至:%1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "匯出所有線材設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "資訊" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "直徑更改確認" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "新的線材直徑設定為 %1 mm,這與目前的擠出機不相容。你要繼續嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "顯示名稱" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "線材類型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "顏色" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "屬性" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "密度" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "直徑" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "線材成本" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "線材重量" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "線材長度" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "每公尺成本" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "此線材與 %1 相關聯,並共享其部份屬性。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "解除聯結線材" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "描述" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "附著資訊" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -msgctxt "@label" -msgid "Print settings" -msgstr "列印設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "建立" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "複製" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "建立列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "請為此參數提供一個名字。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "複製列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "重命名列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "匯入列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "匯出列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "印表機:%1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "使用目前設定 / 覆寫值更新列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "捨棄目前更改" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "此列印參數使用印表機指定的預設值,因此在下面的清單中沒有此設定項。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "你目前的設定與選定的列印參數相匹配。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "全局設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "已計算" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "目前" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "單位" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "參數顯示設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "全選" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "擠出機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "加熱頭的目標溫度。加熱頭將加熱或冷卻至此溫度。若設定為 0,則關閉加熱頭的加熱。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "此加熱頭的目前溫度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "加熱頭預熱溫度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "取消" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "預熱" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "列印前預先加熱。你可以在加熱時繼續調整你的列印,當你準備好列印時就不需等待加熱頭升溫。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "該擠出機中線材的顏色。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "該擠出機中的線材。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "該擠出機所使用的噴頭。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "列印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "熱床的目標溫度。熱床將加熱或冷卻至此溫度。若設定為 0,則不使用熱床。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "熱床目前溫度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "熱床的預熱溫度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "列印前請預熱熱床。你可以在熱床加熱時繼續調整相關物件,讓你在準備列印時不必等待熱床加熱完畢。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "印表機控制" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "輕搖位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "輕搖距離" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "傳送 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "尚未連線到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "雲端印表機為離線狀態。請檢查印表機是否已開機並連上網路。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "此印表機未連接到你的帳號。請前往 Ultimaker Digital Factory 建立連接。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "雲端服務目前無法使用。請登入以連接到雲端印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "雲端服務目前無法使用。請檢查你的網路連線。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238 -msgctxt "@button" -msgid "Add printer" -msgstr "新增印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255 -msgctxt "@button" -msgid "Manage printers" -msgstr "管理印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "已連線印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "預設印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 msgctxt "@label" msgid "Active print" msgstr "正在列印" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 msgctxt "@label" msgid "Job Name" msgstr "作業名稱" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Printing Time" msgstr "列印時間" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Estimated time left" msgstr "預計剩餘時間" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "雲端印表機為離線狀態。請檢查印表機是否已開機並連上網路。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "此印表機未連接到你的帳號。請前往 Ultimaker Digital Factory 建立連接。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "雲端服務目前無法使用。請登入以連接到雲端印表機。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "雲端服務目前無法使用。請檢查你的網路連線。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +msgctxt "@button" +msgid "Add printer" +msgstr "新增印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +msgctxt "@button" +msgid "Manage printers" +msgstr "管理印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Connected printers" +msgstr "已連線印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +msgctxt "@label" +msgid "Preset printers" +msgstr "預設印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +msgctxt "@label" +msgid "Print settings" +msgstr "列印設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "列印設定已被停用。 G-code 檔案無法修改。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 msgctxt "@label" msgid "Profile" msgstr "參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -4893,119 +3958,1676 @@ msgstr "" "\n" "點擊開啟列印參數管理器。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 msgctxt "@label:header" msgid "Custom profiles" msgstr "自訂列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "捨棄目前更改" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +msgctxt "@button" +msgid "Recommended" +msgstr "推薦" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +msgctxt "@button" +msgid "Custom" +msgstr "自訂選項" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +msgctxt "@label:Should be short" +msgid "On" +msgstr "開啟" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +msgctxt "@label:Should be short" +msgid "Off" +msgstr "關閉" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +msgctxt "@label" +msgid "Experimental" +msgstr "實驗功能" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" msgstr[0] "沒有擠出機 %2 用的 %1 參數。將使用預設參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "列印設定已被停用。 G-code 檔案無法修改。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "推薦" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "自訂選項" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "開啟" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "關閉" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 msgctxt "@label" -msgid "Experimental" -msgstr "實驗功能" +msgid "Profiles" +msgstr "列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "附著" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74 -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -msgstr "允許列印邊緣或木筏。這將在你的物件周圍或下方添加一個容易切斷的平面區域。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193 -msgctxt "@label" -msgid "Gradual infill" -msgstr "漸近式填充" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 msgctxt "@label" msgid "Support" msgstr "支撐" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"部份隱藏設定使用的值與一般計算所得的值不同。\n" -"\n" -"點擊以顯這些設定。" +msgid "Gradual infill" +msgstr "漸近式填充" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 +msgctxt "@label" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +msgctxt "@label" +msgid "Adhesion" +msgstr "附著" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +msgstr "允許列印邊緣或木筏。這將在你的物件周圍或下方添加一個容易切斷的平面區域。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "儲存專案." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "支援網路的印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "本機印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "線材" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "常用" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "通用" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "列印所選模型:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "複製所選模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +msgctxt "@label" +msgid "Number of Copies" +msgstr "複製個數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "儲存專案...(&S)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "匯出...(&E)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "匯出選擇..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 +msgctxt "@header" +msgid "Custom" +msgstr "自訂選項" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +msgctxt "@label" +msgid "Printer" +msgstr "印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +msgctxt "@label" +msgid "Enabled" +msgstr "已啟用" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +msgctxt "@label" +msgid "Material" +msgstr "線材" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "在此線材組合下,使用膠水以獲得較佳的附著。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "不允許使用此擠出機的配置並禁止切片功能." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "目前無對應此擠出機的配置設定." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 +msgctxt "@label" +msgid "Select configuration" +msgstr "選擇設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 +msgctxt "@label" +msgid "Configurations" +msgstr "設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "從印表機載入可用的設定..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "由於印表機已斷線,因此設定無法使用。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +msgctxt "@label" +msgid "Marketplace" +msgstr "市集" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "開啟檔案." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "印表機(&P)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 +msgctxt "@title:menu" +msgid "&Material" +msgstr "線材(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "設為主要擠出機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "啟用擠出機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "關閉擠出機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "最近開啟的檔案(&R)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "顯示設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "折疊所有分類" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "管理參數顯示..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "視角位置(&C)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "攝影機檢視" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "透視" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "正交" + +#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 +msgctxt "@action:inmenu menubar:view" +msgid "&Build plate" +msgstr "列印平台(&B)" + +#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "檢示類型" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 +msgctxt "@label" +msgid "Is printed as support." +msgstr "做為支撐而列印。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "與此模型重疊的其他模型已被更改。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "與此模型重疊的填充已被更改。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "與此模型的重疊沒有支撐。" + +#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "覆寫 %1 設定。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 +msgctxt "@action:button" +msgid "Activate" +msgstr "啟用" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 +msgctxt "@label" +msgid "Create" +msgstr "建立" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 +msgctxt "@label" +msgid "Duplicate" +msgstr "複製" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 +msgctxt "@action:button" +msgid "Rename" +msgstr "重命名" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 +msgctxt "@action:button" +msgid "Import" +msgstr "匯入" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 +msgctxt "@action:button" +msgid "Export" +msgstr "匯出" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "建立列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "請為此參數提供一個名字。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "複製列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "移除確認" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "你確定要移除 %1 嗎?這動作無法復原!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "重命名列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 +msgctxt "@title:window" +msgid "Import Profile" +msgstr "匯入列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "匯出列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 +msgctxt "@label %1 is printer name" +msgid "Printer: %1" +msgstr "印表機:%1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 +msgctxt "@action:button" +msgid "Update profile with current settings/overrides" +msgstr "使用目前設定 / 覆寫值更新列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "此列印參數使用印表機指定的預設值,因此在下面的清單中沒有此設定項。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "你目前的設定與選定的列印參數相匹配。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "全局設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 +msgctxt "@title:tab" +msgid "General" +msgstr "基本" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 +msgctxt "@label" +msgid "Interface" +msgstr "介面" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 +msgctxt "@label" +msgid "Currency:" +msgstr "貨幣:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 +msgctxt "@label" +msgid "Theme:" +msgstr "主題:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 +msgctxt "@label" +msgid "You will need to restart the application for these changes to have effect." +msgstr "需重新啟動 Cura,新的設定才能生效。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "當設定變更時自動進行切片。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "自動切片" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "顯示區設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "模型缺少支撐的區域已以紅色標示。如果沒有支撐這些區域將無法正常列印。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "顯示突出部分" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "模型缺少或多餘的表面已用警告符號標示。工具路徑是將缺少部份補上的型狀。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "顯示模型錯誤" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "當模型被選中時,視角將自動調整到最合適的觀察位置(模型處於正中央)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "當專案被選中時,自動置中視角" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "需要讓 Cura 的預設縮放操作反轉嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "反轉視角縮放方向。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "是否跟隨滑鼠方向進行縮放?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "正交透視不支援游標縮放功能。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "跟隨滑鼠方向縮放" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "需要移動平台上的模型,使它們不再交錯嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "確保每個模型都保持分離" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "要將模型下降到碰觸列印平台嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "自動下降模型到列印平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "在 g-code 讀取器中顯示警告訊息。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "G-code 讀取器中的警告訊息" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "分層檢視要強制進入相容模式嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "強制分層檢視相容模式(需要重新啟動)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "Cura 應該開啟在前次關閉時的位置嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "開啟時復原視窗位置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "使用哪種類型的攝影機渲染?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "攝影機渲染:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 +msgid "Perspective" +msgstr "透視" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgid "Orthographic" +msgstr "正交" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "開啟並儲存檔案" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "使用同一 Cura 視窗" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "需要再載入新模型前清空視窗內之列印平台嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "載入新模型時清空視窗內之列印平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "當模型的尺寸過大時,是否將模型自動縮小至列印範圍嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "縮小過大模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "部份模型採用較大的單位(例如:公尺),導致模型變得非常小,要將這些模型放大嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "放大過小模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "模型載入後要設為被選擇的狀態嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "模型載入後選擇模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "是否自動將印表機名稱作為列印作業名稱的前綴?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "將印表機名稱前綴添加到列印作業名稱中" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "儲存專案檔案時是否顯示摘要?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "儲存專案時顯示摘要對話框" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "開啟專案檔案時的預設行為" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "開啟專案檔案時的預設行為: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "每次都向我確認" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "總是作為一個專案開啟" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "總是匯入模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "當你對列印參數進行更改然後切換到其他列印參數時,將顯示一個對話框詢問你是否要保留修改。你也可以選擇預設不顯示該對話框。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: " + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "總是放棄修改過的設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "總是將修改過的設定轉移至新的列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 +msgctxt "@label" +msgid "Privacy" +msgstr "隱私權" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "你願意將關於你的列印資料以匿名形式發送到 Ultimaker 嗎?注意:我們不會記錄或發送任何模型、IP 位址或其他私人資料。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(匿名)發送列印資訊" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 +msgctxt "@action:button" +msgid "More information" +msgstr "更多資訊" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 +msgctxt "@label" +msgid "Updates" +msgstr "更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "當 Cura 啟動時,是否自動檢查更新?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "啟動時檢查更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "當檢查更新時,只檢查正式版本." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "僅正式版本" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "當檢查更新時,同時檢查正式版本與測試版本." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "正式版本與測試版本發佈" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "需要於開啟Cura時自動更新插件嗎? 建議您勿關閉此功能!" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "設定插件更新提示" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 +msgctxt "@title" +msgid "Information" +msgstr "資訊" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "直徑更改確認" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "新的線材直徑設定為 %1 mm,這與目前的擠出機不相容。你要繼續嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 +msgctxt "@label" +msgid "Display Name" +msgstr "顯示名稱" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 +msgctxt "@label" +msgid "Material Type" +msgstr "線材類型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 +msgctxt "@label" +msgid "Color" +msgstr "顏色" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 +msgctxt "@label" +msgid "Properties" +msgstr "屬性" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Density" +msgstr "密度" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 +msgctxt "@label" +msgid "Diameter" +msgstr "直徑" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 +msgctxt "@label" +msgid "Filament Cost" +msgstr "線材成本" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 +msgctxt "@label" +msgid "Filament weight" +msgstr "線材重量" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 +msgctxt "@label" +msgid "Filament length" +msgstr "線材長度" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "每公尺成本" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "此線材與 %1 相關聯,並共享其部份屬性。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 +msgctxt "@label" +msgid "Unlink Material" +msgstr "解除聯結線材" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 +msgctxt "@label" +msgid "Description" +msgstr "描述" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "附著資訊" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 +msgctxt "@action:button" +msgid "Create" +msgstr "建立" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "複製" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 +msgctxt "@action:button Sending materials to printers" +msgid "Sync with Printers" +msgstr "同步列印機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 +msgctxt "@action:label" +msgid "Printer" +msgstr "印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 +msgctxt "@title:window" +msgid "Import Material" +msgstr "匯入線材設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "無法匯入線材 %1%2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "成功匯入線材 %1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 +msgctxt "@title:window" +msgid "Export Material" +msgstr "匯出線材設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "無法匯出線材至 %1%2" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "成功匯出線材至:%1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "同步印表機線材設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "同步印表機線材設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "依照下述簡單的步驟。您將同步線材設定檔至您的印表機." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +msgctxt "@button" +msgid "Start" +msgstr "開始" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "為何我需要同步線材設定檔?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 +msgctxt "@title:header" +msgid "Sign in" +msgstr "登入" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "為了自動將線材設定檔與所有連接到 Digital Factory 的列印機同步,您必須先從Cura進行登入." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "從USB進行同步線材設定檔" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "下述的印表機將新增新的線材設定檔:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "再發送線材設定檔至印表機時發生錯誤." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "線材設定檔成功同步至下述的印表機內:" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "故障排除" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "列印機資訊遺失了?" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "確認您的列印機已開機並連接至Digital Factory." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +msgctxt "@button" +msgid "Refresh List" +msgstr "重新載入清單" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 +msgctxt "@button" +msgid "Try again" +msgstr "再試一次" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Done" +msgstr "完成" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 +msgctxt "@button" +msgid "Sync" +msgstr "同步" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 +msgctxt "@button" +msgid "Syncing" +msgstr "同步中" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 +msgctxt "@title:header" +msgid "No printers found" +msgstr "未發現任何列印機資訊" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "您似乎沒有任何兼容的打印機連接至Digital Factory。請確保您的打印機已連接並且安裝最新的軟體." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "學習如何連結您的印表機至Digital Factory" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 +msgctxt "@button" +msgid "Refresh" +msgstr "重新載入" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "透過USB同步您的線材設定檔" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "請依照下述步驟載入新的線材設定檔至印表機." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "請點擊輸出材料檔案按鈕." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "將 .umm 的文件儲存至USB." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "插入USB至您的列印機,並啟動程式去載入新的線材設定檔." + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "如何載入新的線材設定檔至我的列印機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 +msgctxt "@button" +msgid "Export material archive" +msgstr "輸出線材設定存檔" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "匯出所有線材設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "參數顯示設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 +msgctxt "@label:textbox" +msgid "Check all" +msgstr "全選" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 +msgctxt "@title:tab" +msgid "Printers" +msgstr "印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 +msgctxt "@info:status" +msgid "Calculated" +msgstr "已計算" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +msgctxt "@title:column" +msgid "Setting" +msgstr "設定" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +msgctxt "@title:column" +msgid "Profile" +msgstr "列印參數" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +msgctxt "@title:column" +msgid "Current" +msgstr "目前" + +#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 +msgctxt "@title:column" +msgid "Unit" +msgstr "單位" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "未連接至印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "印表機不接受命令" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "維護中。請檢查印表機" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "與印表機的連線中斷" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "列印中..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "已暫停" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "準備中..." + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "請取出列印件" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 +msgctxt "@label" +msgid "Abort Print" +msgstr "中斷列印" + +#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "你確定要中斷列印嗎?" + +#: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16 +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "用 %1 列印所選模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "我的列印機" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "從Ultimaker Digital Factory中監控我的列印機." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "從 Digital Library中創建列印專案." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "列印工作" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "監控列印工作並於從您的歷史紀錄中再次列印." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "使用插件及線材參數擴充Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "使用Ultimaker e-learning成為一位3D列印專家." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker 支援" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "學習如何開始使用Ultimaker Cura." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +msgctxt "@label:button" +msgid "Ask a question" +msgstr "提出問題" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "諮詢Ultimaker社群." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +msgctxt "@label:button" +msgid "Report a bug" +msgstr "回報Bug" + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "讓開發者了解您遇到的問題." + +#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "參觀Ultimaker網站." + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 +msgctxt "@label" +msgid "Printer control" +msgstr "印表機控制" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 +msgctxt "@label" +msgid "Jog Position" +msgstr "輕搖位置" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Jog Distance" +msgstr "輕搖距離" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 +msgctxt "@label" +msgid "Send G-code" +msgstr "傳送 G-code" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 +msgctxt "@label" +msgid "Extruder" +msgstr "擠出機" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "加熱頭的目標溫度。加熱頭將加熱或冷卻至此溫度。若設定為 0,則關閉加熱頭的加熱。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "此加熱頭的目前溫度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "加熱頭預熱溫度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "取消" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 +msgctxt "@button" +msgid "Pre-heat" +msgstr "預熱" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "列印前預先加熱。你可以在加熱時繼續調整你的列印,當你準備好列印時就不需等待加熱頭升溫。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "該擠出機中線材的顏色。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "該擠出機中的線材。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "該擠出機所使用的噴頭。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "尚未連線到印表機。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 +msgctxt "@label" +msgid "Build plate" +msgstr "列印平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "熱床的目標溫度。熱床將加熱或冷卻至此溫度。若設定為 0,則不使用熱床。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "熱床目前溫度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "熱床的預熱溫度。" + +#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "列印前請預熱熱床。你可以在熱床加熱時繼續調整相關物件,讓你在準備列印時不必等待熱床加熱完畢。" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" +msgstr "登入" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the Ultimaker community" +msgstr "" +"- 從市集中加入線材參數及插件\n" +"-備份及同步您的線材設定與插件 \n" +"- 分享創意並可從Ultimaker社群中超過48000的使用者得到幫助" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +msgctxt "@button" +msgid "Create a free Ultimaker account" +msgstr "創建免費的Ultimaker帳戶" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "最後一次更新:%1" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker 帳號" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "登出" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +msgctxt "@label" +msgid "Checking..." +msgstr "檢查中..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Account synced" +msgstr "帳號已同步" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +msgctxt "@label" +msgid "Something went wrong..." +msgstr "出了些問題..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +msgctxt "@button" +msgid "Install pending updates" +msgstr "安裝待處理的更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +msgctxt "@button" +msgid "Check for account updates" +msgstr "檢查帳號更新" + +#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "無標題" + +#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "沒有可選取的專案" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting Guide" +msgstr "顯示線上故障排除指南" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "切換全螢幕" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "離開全螢幕" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "復原(&U)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "取消復原(&R)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "退出(&Q)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "立體圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "前視圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "上視圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "下視圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "左視圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "右視圖" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "設定 Cura..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "新增印表機(&A)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "管理印表機(&I)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "管理線材..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 +msgctxt "@action:inmenu" +msgid "Add more materials from Marketplace" +msgstr "從市集增加更多線材" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "使用目前設定 / 覆寫更新列印參數(&U)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "捨棄目前更改(&D)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "從目前設定 / 覆寫值建立列印參數(&C)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "管理列印參數.." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "顯示線上說明文件(&D)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "BUG 回報(&B)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "新功能" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "關於..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "刪除選取" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "置中選取" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "複製選取" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "刪除模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "將模型置中(&N)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "群組模型(&G)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "取消模型群組" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "結合模型(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "複製模型...(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "選擇所有模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "清空列印平台" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "重新載入所有模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models To All Build Plates" +msgstr "將所有模型排列到所有列印平台上" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "排列所有模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "排列所選模型" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "重置所有模型位置" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "重置所有模型旋轉" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "開啟檔案(&O)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "新建專案(&N)..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "顯示設定資料夾" + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "參數顯示設定..." + +#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 +msgctxt "@action:menu" +msgid "&Marketplace" +msgstr "市集(&M)" + +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "此設定未被使用,因為受它影響的設定都被覆寫了。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "影響" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "影響因素" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "此設定是透過解決擠出機設定值衝突獲得:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5016,7 +5638,7 @@ msgstr "" "\n" "單擊以復原列印參數的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5027,506 +5649,92 @@ msgstr "" "\n" "點擊以恢復計算得出的數值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 msgctxt "@label:textbox" msgid "Search settings" msgstr "搜尋設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "將設定值複製到所有擠出機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "複製所有改變的設定值到所有擠出機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 msgctxt "@action:menu" msgid "Hide this setting" msgstr "隱藏此設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "不再顯示此設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "保持此設定顯示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "立體圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "前視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "上視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "左視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "右視圖" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 msgctxt "@label" -msgid "View type" -msgstr "檢示類型" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"部份隱藏設定使用的值與一般計算所得的值不同。\n" +"\n" +"點擊以顯這些設定。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "新增雲端印表機" +msgid "This package will be installed after restarting." +msgstr "此套件將在重新啟動後安裝。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "等待雲端服務回應" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 +msgctxt "@title:tab" +msgid "Settings" +msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "在你的帳號未發現任何印表機?" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "關閉 %1 中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "下列你帳號中的印表機已新增至 Cura:" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "是否確定要離開 %1 ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "手動新增印表機" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 +msgctxt "@window:title" +msgid "Install Package" +msgstr "安裝套件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230 -msgctxt "@label" -msgid "Manufacturer" -msgstr "製造商" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "開啟檔案" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247 -msgctxt "@label" -msgid "Profile author" -msgstr "列印參數作者" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "我們已經在你選擇的檔案中找到一個或多個 G-Code 檔案。你一次只能開啟一個 G-Code 檔案。若需開啟 G-Code 檔案,請僅選擇一個。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265 -msgctxt "@label" -msgid "Printer name" -msgstr "印表機名稱" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274 -msgctxt "@text" -msgid "Please name your printer" -msgstr "請為你的印表機取一個名稱" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 +msgctxt "@title:window" +msgid "Add Printer" msgstr "新增印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "新增網路印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "新增非網路印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "在你的網路上找不到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "使用 IP 位址新增印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "新增雲端印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "故障排除" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "使用 IP 位址新增印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "輸入印表機的 IP 位址。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "新增" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "無法連接到裝置。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "無法連接到 Ultimaker 印表機?" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "此位址的印表機尚未回應。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "無法添加此印表機,因為它是未知的印表機,或者它不是印表機群組的主機。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -msgctxt "@button" -msgid "Back" -msgstr "返回" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "連接" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "發佈通知" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "從市集中加入線材設定或插件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "備份及同步您的線材設定與插件" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "分享創意並可從Ultimaker社群中超過48000的使用者得到幫助" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "創建免費的Ultimaker帳戶" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230 -msgctxt "@button" -msgid "Skip" -msgstr "略過" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "協助我們改進 Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "機器類型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "線材用法" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "切片次數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "列印設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura 收集的資料不包含任何個人資訊。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "更多資訊" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "空的" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "使用者授權" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "拒絕並關閉" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "歡迎來到 Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "請依照步驟安裝Ultimaker Cura. 這會需要幾分鐘的時間." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "開始" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 -msgctxt "@label" +#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 +msgctxt "@title:window" msgid "What's New" msgstr "新功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24 -msgctxt "@label" -msgid "No items to select from" -msgstr "沒有可選取的專案" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "模器檢查器" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "提供讀取 3MF 格式檔案的支援。" - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 讀取器" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供寫入 3MF 檔案的支援。" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 寫入器" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "提供對讀取 AMF 格式檔案的支援。" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 讀取器" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "備份和復原你的設定。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 備份" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "提供連結到 Cura 切片引擎後台。" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Cura 引擎後台" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "提供匯入 Cura 列印參數的支援。" - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 列印參數讀取器" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "提供匯出 Cura 列印參數的支援。" - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 列印參數寫入器" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "連結至\"數位博物館\",允許Cura從\"數位博物館\"打開或保存文件." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker 數位博物館" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "檢查是否有韌體更新。" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "韌體更新檢查" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "提供升級韌體用的機器操作。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "韌體更新器" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "從一個壓縮檔案中讀取 G-code。" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "壓縮檔案 G-code 讀取器" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "將 G-code 寫入壓縮檔案。" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "壓縮檔案 G-code 寫入器" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "提供匯入 G-code 檔案中列印參數的支援。" - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code 列印參數讀取器" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "允許載入和顯示 G-code 檔案。" - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code 讀取器" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "將 G-code 寫入檔案。" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code 寫入器" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "支援從 2D 圖片檔案產生可列印 3D 模型的能力。" - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "圖片讀取器" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "提供匯入 Cura 舊版本列印參數的支援。" - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "舊版 Cura 列印參數讀取器" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "提供更改機器設定的方法(如列印範圍,噴頭大小等)。" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "印表機設定操作" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 cura 提供一個監控介面。" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "監控介面" - #: PerObjectSettingsTool/plugin.json msgctxt "description" msgid "Provides the Per Model Settings." @@ -5537,85 +5745,45 @@ msgctxt "name" msgid "Per Model Settings Tool" msgstr "單一模型設定工具" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "擴充程式(允許用戶建立腳本進行後處理)" +msgid "Provides support for importing Cura profiles." +msgstr "提供匯入 Cura 列印參數的支援。" -#: PostProcessingPlugin/plugin.json +#: CuraProfileReader/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "後處理" +msgid "Cura Profile Reader" +msgstr "Cura 列印參數讀取器" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 cura 提供一個準備介面。" +msgid "Provides support for reading X3D files." +msgstr "提供讀取 X3D 檔案的支援。" -#: PrepareStage/plugin.json +#: X3DReader/plugin.json msgctxt "name" -msgid "Prepare Stage" -msgstr "準備介面" +msgid "X3D Reader" +msgstr "X3D 讀取器" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 提供一個預覽介面。" +msgid "Backup and restore your configuration." +msgstr "備份和復原你的設定。" -#: PreviewStage/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Preview Stage" -msgstr "預覽介面" +msgid "Cura Backups" +msgstr "Cura 備份" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "提供行動裝置熱插拔和寫入檔案的支援。" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "提供更改機器設定的方法(如列印範圍,噴頭大小等)。" -#: RemovableDriveOutputDevice/plugin.json +#: MachineSettingsAction/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "行動裝置輸出設備外掛" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "記錄某些事件以便在錯誤報告中使用" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "哨兵記錄器" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the Simulation view." -msgstr "提供模擬檢視。" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "模擬檢視" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。" - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "切片資訊" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一個基本的實體網格檢視。" - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "實體檢視" +msgid "Machine Settings Action" +msgstr "印表機設定操作" #: SupportEraser/plugin.json msgctxt "description" @@ -5627,35 +5795,45 @@ msgctxt "name" msgid "Support Eraser" msgstr "支援抹除器" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "查詢,管理和安裝新的 Cura 套件。" +msgid "Provides removable drive hotplugging and writing support." +msgstr "提供行動裝置熱插拔和寫入檔案的支援。" -#: Toolbox/plugin.json +#: RemovableDriveOutputDevice/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "工具箱" +msgid "Removable Drive Output Device Plugin" +msgstr "行動裝置輸出設備外掛" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Provides support for reading model files." -msgstr "提供讀取模型檔案的支援。" +msgid "Provides a machine actions for updating firmware." +msgstr "提供升級韌體用的機器操作。" -#: TrimeshReader/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 讀取器" +msgid "Firmware Updater" +msgstr "韌體更新器" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "提供讀取 Ultimaker 格式封包的支援。" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "提供匯入 Cura 舊版本列印參數的支援。" -#: UFPReader/plugin.json +#: LegacyProfileReader/plugin.json msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 讀取器" +msgid "Legacy Cura Profile Reader" +msgstr "舊版 Cura 列印參數讀取器" + +#: 3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "提供讀取 3MF 格式檔案的支援。" + +#: 3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 讀取器" #: UFPWriter/plugin.json msgctxt "description" @@ -5667,25 +5845,95 @@ msgctxt "name" msgid "UFP Writer" msgstr "UFP 寫入器" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "提供 Ultimaker 機器的操作(例如平台調平精靈,選擇升級等)。" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "記錄某些事件以便在錯誤報告中使用" -#: UltimakerMachineActions/plugin.json +#: SentryLogger/plugin.json msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker 印表機操作" +msgid "Sentry Logger" +msgstr "哨兵記錄器" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "管理與 Ultimaker 網絡印表機的網絡連線。" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供匯入 G-code 檔案中列印參數的支援。" -#: UM3NetworkPrinting/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker 網絡連線" +msgid "G-code Profile Reader" +msgstr "G-code 列印參數讀取器" + +#: PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "在 Cura 提供一個預覽介面。" + +#: PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "預覽介面" + +#: XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "提供透視檢視。" + +#: XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "透視檢視" + +#: CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供連結到 Cura 切片引擎後台。" + +#: CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Cura 引擎後台" + +#: AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "提供對讀取 AMF 格式檔案的支援。" + +#: AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 讀取器" + +#: GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "從一個壓縮檔案中讀取 G-code。" + +#: GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "壓縮檔案 G-code 讀取器" + +#: PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "擴充程式(允許用戶建立腳本進行後處理)" + +#: PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "後處理" + +#: CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "提供匯出 Cura 列印參數的支援。" + +#: CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 列印參數寫入器" #: USBPrinting/plugin.json msgctxt "description" @@ -5697,25 +5945,135 @@ msgctxt "name" msgid "USB printing" msgstr "USB 連線列印" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "將設定從 Cura 2.1 版本升級至 2.2 版本。" +msgid "Provides a prepare stage in Cura." +msgstr "在 cura 提供一個準備介面。" -#: VersionUpgrade/VersionUpgrade21to22/plugin.json +#: PrepareStage/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "升級版本 2.1 到 2.2" +msgid "Prepare Stage" +msgstr "準備介面" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "將設定從 Cura 2.2 版本升級至 2.4 版本。" +msgid "Allows loading and displaying G-code files." +msgstr "允許載入和顯示 G-code 檔案。" -#: VersionUpgrade/VersionUpgrade22to24/plugin.json +#: GCodeReader/plugin.json msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "升級版本 2.2 到 2.4" +msgid "G-code Reader" +msgstr "G-code 讀取器" + +#: ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "支援從 2D 圖片檔案產生可列印 3D 模型的能力。" + +#: ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "圖片讀取器" + +#: UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "提供 Ultimaker 機器的操作(例如平台調平精靈,選擇升級等)。" + +#: UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "Ultimaker machine actions" +msgstr "Ultimaker 印表機操作" + +#: GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "將 G-code 寫入壓縮檔案。" + +#: GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "壓縮檔案 G-code 寫入器" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "檢查是否有韌體更新。" + +#: FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "韌體更新檢查" + +#: SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。" + +#: SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "切片資訊" + +#: XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "提供讀寫 XML 格式線材參數的功能。" + +#: XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "線材參數" + +#: DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "連結至\"數位博物館\",允許Cura從\"數位博物館\"打開或保存文件." + +#: DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker 數位博物館" + +#: Toolbox/plugin.json +msgctxt "description" +msgid "Find, manage and install new Cura packages." +msgstr "查詢,管理和安裝新的 Cura 套件。" + +#: Toolbox/plugin.json +msgctxt "name" +msgid "Toolbox" +msgstr "工具箱" + +#: GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "將 G-code 寫入檔案。" + +#: GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code 寫入器" + +#: SimulationView/plugin.json +msgctxt "description" +msgid "Provides the Simulation view." +msgstr "提供模擬檢視。" + +#: SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "模擬檢視" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。" + +#: VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "升級版本 4.5 到 4.6" #: VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" @@ -5727,55 +6085,25 @@ msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" msgstr "升級版本 2.5 到 2.6" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "將設定從 Cura 2.6 版本升級至 2.7 版本。" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "將設定從 Cura 4.6.0 版本升級至 4.6.2 版本。" -#: VersionUpgrade/VersionUpgrade26to27/plugin.json +#: VersionUpgrade/VersionUpgrade460to462/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "升級版本 2.6 到 2.7" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "升級版本 4.6.0 到 4.6.2" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "將設定從 Cura 2.7 版本升級至 3.0 版本。" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "將設定從 Cura 4.7 版本升級至 4.8 版本。" -#: VersionUpgrade/VersionUpgrade27to30/plugin.json +#: VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "升級版本 2.7 到 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "將設定從 Cura 3.0 版本升級至 3.1 版本。" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "升級版本 3.0 到 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "升級版本 3.2 到 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "將設定從 Cura 3.3 版本升級至 3.4 版本。" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "升級版本 3.3 到 3.4" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "升級版本 4.7 到 4.8" #: VersionUpgrade/VersionUpgrade34to35/plugin.json msgctxt "description" @@ -5787,35 +6115,45 @@ msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" msgstr "升級版本 3.4 到 3.5" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "將設定從 Cura 3.5 版本升級至 4.0 版本。" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "將設定從 Cura 2.1 版本升級至 2.2 版本。" -#: VersionUpgrade/VersionUpgrade35to40/plugin.json +#: VersionUpgrade/VersionUpgrade21to22/plugin.json msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "升級版本 3.5 到 4.0" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "升級版本 2.1 到 2.2" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "將設定從 Cura 4.0 版本升級至 4.1 版本。" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。" -#: VersionUpgrade/VersionUpgrade40to41/plugin.json +#: VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "升級版本 4.0 到 4.1" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "升級版本 3.2 到 3.3" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "將設定從 Cura 4.1 版本升級至 4.2 版本。" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "將設定從 Cura 4.8 版本升級至 4.9 版本。" -#: VersionUpgrade/VersionUpgrade41to42/plugin.json +#: VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "升級版本 4.1 到 4.2" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "升級版本 4.8 到 4.9" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "將設定從 Cura 4.6.2 版本升級至 4.7 版本。" + +#: VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "升級版本 4.6.2 到 4.7" #: VersionUpgrade/VersionUpgrade42to43/plugin.json msgctxt "description" @@ -5837,66 +6175,6 @@ msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" msgstr "升級版本 4.3 到 4.4" -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "將設定從 Cura 4.4 版本升級至 4.5 版本。" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "升級版本 4.4 到 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "升級版本 4.5 到 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "將設定從 Cura 4.6.0 版本升級至 4.6.2 版本。" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "升級版本 4.6.0 到 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "將設定從 Cura 4.6.2 版本升級至 4.7 版本。" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "升級版本 4.6.2 到 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "將設定從 Cura 4.7 版本升級至 4.8 版本。" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "升級版本 4.7 到 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "將設定從 Cura 4.8 版本升級至 4.9 版本。" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "升級版本 4.8 到 4.9" - #: VersionUpgrade/VersionUpgrade49to410/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." @@ -5907,35 +6185,195 @@ msgctxt "name" msgid "Version Upgrade 4.9 to 4.10" msgstr "升級版本 4.9 到 4.10" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "提供讀取 X3D 檔案的支援。" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "將設定從 Cura 2.7 版本升級至 3.0 版本。" -#: X3DReader/plugin.json +#: VersionUpgrade/VersionUpgrade27to30/plugin.json msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 讀取器" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "升級版本 2.7 到 3.0" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供讀寫 XML 格式線材參數的功能。" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "將設定從 Cura 2.6 版本升級至 2.7 版本。" -#: XmlMaterialProfile/plugin.json +#: VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "線材參數" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "升級版本 2.6 到 2.7" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透視檢視。" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "將設定從 Cura 4.11 版本升級至 4.12 版本。" -#: XRayView/plugin.json +#: VersionUpgrade/VersionUpgrade411to412/plugin.json msgctxt "name" -msgid "X-Ray View" -msgstr "透視檢視" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "升級版本 4.11 到 4.12" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "將設定從 Cura 3.3 版本升級至 3.4 版本。" + +#: VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "升級版本 3.3 到 3.4" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "將設定從 Cura 3.0 版本升級至 3.1 版本。" + +#: VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "升級版本 3.0 到 3.1" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "將設定從 Cura 4.0 版本升級至 4.1 版本。" + +#: VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "升級版本 4.0 到 4.1" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "將設定從 Cura 4.4 版本升級至 4.5 版本。" + +#: VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "升級版本 4.4 到 4.5" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "將設定從 Cura 2.2 版本升級至 2.4 版本。" + +#: VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "升級版本 2.2 到 2.4" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "將設定從 Cura 4.1 版本升級至 4.2 版本。" + +#: VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "升級版本 4.1 到 4.2" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "將設定從 Cura 3.5 版本升級至 4.0 版本。" + +#: VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "升級版本 3.5 到 4.0" + +#: UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "管理與 Ultimaker 網絡印表機的網絡連線。" + +#: UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker 網絡連線" + +#: TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "提供讀取模型檔案的支援。" + +#: TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 讀取器" + +#: UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "提供讀取 Ultimaker 格式封包的支援。" + +#: UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 讀取器" + +#: SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "提供一個基本的實體網格檢視。" + +#: SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "實體檢視" + +#: 3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "提供寫入 3MF 檔案的支援。" + +#: 3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 寫入器" + +#: MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "在 cura 提供一個監控介面。" + +#: MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "監控介面" + +#: ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。" + +#: ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "模器檢查器" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." +#~ msgstr "利用你的 Ultimaker 帳號在任何地方傳送和監控列印作業。" + +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to Ultimaker Digital Factory" +#~ msgstr "連接到 Ultimaker Digital Factory" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." +#~ msgstr "無法從Ultimaker Cura中查看你的雲端列印機." + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "可能有適用於你的 {machine_name} 的新功能或錯誤修正!假如尚未使用最新版本,建議更新你印表機的韌體到版本 {latest_version}。" + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "有新 %s 韌體可用" #~ msgctxt "@info:status" #~ msgid "Global stack is missing." diff --git a/resources/i18n/zh_TW/fdmextruder.def.json.po b/resources/i18n/zh_TW/fdmextruder.def.json.po index 15eaf9e315..5420f8be93 100644 --- a/resources/i18n/zh_TW/fdmextruder.def.json.po +++ b/resources/i18n/zh_TW/fdmextruder.def.json.po @@ -1,21 +1,21 @@ # Cura JSON setting files # Copyright (C) 2021 Ultimaker # This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2021. +# Ultimaker , 2021. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" -"PO-Revision-Date: 2021-04-16 20:13+0200\n" -"Last-Translator: Valen Chang \n" -"Language-Team: Valen Chang /Zhang Heh Ji \n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 12:00+0000\n" +"PO-Revision-Date: 2022-01-02 19:59+0800\n" +"Last-Translator: Valen Chang \n" +"Language-Team: Valen Chang \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 8cd0dd8978..84af9c3b86 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -1,21 +1,21 @@ # Cura JSON setting files # Copyright (C) 2021 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2021. +# Ultimaker , 2021. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.10\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2021-06-10 17:35+0000\n" -"PO-Revision-Date: 2021-06-14 16:21+0800\n" -"Last-Translator: Valen Chang \n" -"Language-Team: Valen Chang /Zhang Heh Ji \n" +"Project-Id-Version: Cura 4.13\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2021-12-10 11:59+0000\n" +"PO-Revision-Date: 2022-01-02 20:24+0800\n" +"Last-Translator: Valen Chang \n" +"Language-Team: Valen Chang \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.2\n" +"X-Generator: Poedit 3.0\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -155,6 +155,16 @@ msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "機器可列印區域深度(Y 座標)" +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "機器高度" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "機器可列印區域高度(Z 座標)" + #: fdmprinter.def.json msgctxt "machine_shape label" msgid "Build Plate Shape" @@ -195,16 +205,6 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "鋁" -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "機器高度" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "機器可列印區域高度(Z 座標)" - #: fdmprinter.def.json msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" @@ -562,8 +562,8 @@ msgstr "Z 軸方向馬達的最大速度。" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" -msgid "Maximum Feedrate" -msgstr "最大進料速率" +msgid "Maximum Speed E" +msgstr "E 軸最大速度" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -687,8 +687,8 @@ msgstr "每毫米的步數(E)" #: fdmprinter.def.json msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -msgstr "擠出機移動一毫米時,步進馬達所需移動的步數。" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "在擠出輪旋轉一毫米時,步進馬達所需移動的步數." #: fdmprinter.def.json msgctxt "machine_endstop_positive_direction_x label" @@ -1278,12 +1278,12 @@ msgstr "啟用時,Z 接縫座標為相對於各個部分中心的值。關閉 #: fdmprinter.def.json msgctxt "top_bottom label" msgid "Top/Bottom" -msgstr "頂層" +msgstr "頂層/底層" #: fdmprinter.def.json msgctxt "top_bottom description" msgid "Top/Bottom" -msgstr "頂層" +msgstr "頂層/底層" #: fdmprinter.def.json msgctxt "roofing_extruder_nr label" @@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." msgstr "將頂部/底部表層路徑相鄰的位置連接。同心模式時啟用此設定,可以大大地減少移動時間。但因連接可能碰巧在途中跨越填充,所以此功能可能會降低頂部表層的品質。" +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "單一化列印 頂層/底層 順序" + +#: fdmprinter.def.json +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "再列印頂層/底層線條時,命令相鄰線條於單方向重疊. 雖然會花更多時間列印,但會使平面更平整." + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" msgstr "鋸齒狀" +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "單一化燙平順序" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "再使用燙平列印線條時,命令相鄰線條於單方向重疊。雖然會花更多時間列印,但會使平面更平整." + #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" @@ -1712,8 +1732,8 @@ msgstr "填充列印樣式" #: fdmprinter.def.json msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -msgstr "選擇填充線材的樣式。直線和鋸齒狀填充輪流在每一層交換方向,以降低線材成本。網格、三角形、三-六邊形、立方體、八面體、四分立方體、十字形和同心的列印樣式在每層完整列印。螺旋形、立方體、四分立方體和八面體填充隨每層變化,以在各個方向提供更均衡的强度分布。" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "內部填充層的圖案。線形、鋸齒形填充在交替層間交換方向,已降低材料成本。網格、三角形、三角-六邊形、立方體、八面體、四分立方體、十字和同心圖案每個層間皆有列印。螺旋型、立方體、四分立方體和八面體的填充隨著每一層而變化,以在每個方向上提供更均勻的強度分佈。閃電型填充透過僅支撐物體的頂層來最小化填充。" #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -1733,7 +1753,7 @@ msgstr "三角形" #: fdmprinter.def.json msgctxt "infill_pattern option trihexagon" msgid "Tri-Hexagon" -msgstr "三-六邊形" +msgstr "三角-六邊形混和" #: fdmprinter.def.json msgctxt "infill_pattern option cubic" @@ -1780,6 +1800,11 @@ msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "螺旋形" +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "閃電形" + #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1994,6 +2019,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "支撐表層邊緣的額外填充的層數。" +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "閃電形填充支撐堆疊角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "決定使用閃電形填充支撐時,層間堆疊的角度." + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "閃電形填充突出角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "決定使用閃電形填充支撐時,層間堆疊的角度." + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "閃電形填充生成角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "內部填充線的端點已被縮減以節省線材. 這個設定用於調整突出線的角度." + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "閃電形填充層間垂直堆疊角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "填充線被拉直用以節省列印時間. 這是填充線長度上允許的最大突出角度." + #: fdmprinter.def.json msgctxt "material label" msgid "Material" @@ -2452,7 +2517,7 @@ msgstr "列印速度" #: fdmprinter.def.json msgctxt "speed_print description" msgid "The speed at which printing happens." -msgstr "開始列印的速度。" +msgstr "開始列印時的速度。" #: fdmprinter.def.json msgctxt "speed_infill label" @@ -3184,6 +3249,11 @@ msgctxt "retraction_combing option all" msgid "All" msgstr "所有" +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "不在外表面上" + #: fdmprinter.def.json msgctxt "retraction_combing option noskin" msgid "Not in Skin" @@ -5135,8 +5205,8 @@ msgstr "最小模具寬度" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "The minimal distance between the ouside of the mold and the outside of the model." -msgstr "模具外側和模型外側之間的最小距離。" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "模具外部與模型外部的最小距離." #: fdmprinter.def.json msgctxt "mold_roof_height label" @@ -5303,6 +5373,16 @@ msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" msgstr "鋸齒狀" +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "頂層表面單一化列印順序" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "再列印頂層表面線條時,命令相鄰線條於單方向重疊. 雖然會花更多時間列印,但會使平面更平整." + #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" @@ -6402,6 +6482,34 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "最大進料速率" + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "列印填充樣式;直線型與鋸齒狀填充於層間交替方向,減少線材消耗;網格型、三角形、三角-六邊形混和、立方體、八面體、四分立方體、十字形、同心於每層間皆完整列印;螺旋形、立方體、四分立方體及八面體填充於每層一間進行改變,確保每個方向都有相同的強度分配,閃電形填充透過只支撐物件內層頂部來最小化填充,因此填充百分比只對於下一層才有效果." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "閃電形填充層與其附著物間的生成角度." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "設定閃電形填充層間垂直堆疊角度,調整樹狀堆疊的平滑度." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "選擇填充線材的樣式。直線和鋸齒狀填充輪流在每一層交換方向,以降低線材成本。網格、三角形、三-六邊形、立方體、八面體、四分立方體、十字形和同心的列印樣式在每層完整列印。螺旋形、立方體、四分立方體和八面體填充隨每層變化,以在各個方向提供更均衡的强度分布。" + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "模具外側和模型外側之間的最小距離。" + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "擠出機移動一毫米時,步進馬達所需移動的步數。" + #~ msgctxt "retraction_combing_max_distance description" #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." #~ msgstr "當此值不為 0 時,在梳理模式空跑超過此距離時,會啟用回抽。" diff --git a/resources/images/Magna2_400.png b/resources/images/Magna2_400.png new file mode 100644 index 0000000000..1b0b29bdff Binary files /dev/null and b/resources/images/Magna2_400.png differ diff --git a/resources/images/Magna2_500.png b/resources/images/Magna2_500.png new file mode 100644 index 0000000000..ecbb9a6df1 Binary files /dev/null and b/resources/images/Magna2_500.png differ diff --git a/resources/images/Ultimaker2PlusConnectbackplate.png b/resources/images/Ultimaker2PlusConnectbackplate.png index a8090cd769..789a48e887 100644 Binary files a/resources/images/Ultimaker2PlusConnectbackplate.png and b/resources/images/Ultimaker2PlusConnectbackplate.png differ diff --git a/resources/images/UltimakerS3backplate.png b/resources/images/UltimakerS3backplate.png index 60897a30ec..486c282934 100644 Binary files a/resources/images/UltimakerS3backplate.png and b/resources/images/UltimakerS3backplate.png differ diff --git a/resources/images/UltimakerS5backplate.png b/resources/images/UltimakerS5backplate.png index d9414b5ac0..cb37c296a4 100644 Binary files a/resources/images/UltimakerS5backplate.png and b/resources/images/UltimakerS5backplate.png differ diff --git a/resources/images/cura-icon-32.png b/resources/images/cura-icon-32.png index 5608ea00d4..b20e22dbac 100644 Binary files a/resources/images/cura-icon-32.png and b/resources/images/cura-icon-32.png differ diff --git a/resources/images/cura-icon-32_wip.png b/resources/images/cura-icon-32_wip.png new file mode 100644 index 0000000000..a007843075 Binary files /dev/null and b/resources/images/cura-icon-32_wip.png differ diff --git a/resources/images/cura-icon.png b/resources/images/cura-icon.png index 8fd6f41691..bcd1700c29 100644 Binary files a/resources/images/cura-icon.png and b/resources/images/cura-icon.png differ diff --git a/resources/images/cura-icon_wip.png b/resources/images/cura-icon_wip.png new file mode 100644 index 0000000000..222c251442 Binary files /dev/null and b/resources/images/cura-icon_wip.png differ diff --git a/resources/images/cura_wip.png b/resources/images/cura_wip.png new file mode 100644 index 0000000000..e62768f11e Binary files /dev/null and b/resources/images/cura_wip.png differ diff --git a/resources/images/hellbot_magna_SE.png b/resources/images/hellbot_magna_SE.png new file mode 100644 index 0000000000..381490361b Binary files /dev/null and b/resources/images/hellbot_magna_SE.png differ diff --git a/resources/images/whats_new/0.png b/resources/images/whats_new/0.png deleted file mode 100644 index 68b06eab10..0000000000 Binary files a/resources/images/whats_new/0.png and /dev/null differ diff --git a/resources/images/whats_new/1.png b/resources/images/whats_new/1.png deleted file mode 100644 index f46847155b..0000000000 Binary files a/resources/images/whats_new/1.png and /dev/null differ diff --git a/resources/images/whats_new/2.png b/resources/images/whats_new/2.png deleted file mode 100644 index 9be5228efb..0000000000 Binary files a/resources/images/whats_new/2.png and /dev/null differ diff --git a/resources/images/whats_new/3.PNG b/resources/images/whats_new/3.PNG deleted file mode 100644 index b37e50d72b..0000000000 Binary files a/resources/images/whats_new/3.PNG and /dev/null differ diff --git a/resources/images/whats_new/4.PNG b/resources/images/whats_new/4.PNG deleted file mode 100644 index a78b128aff..0000000000 Binary files a/resources/images/whats_new/4.PNG and /dev/null differ diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg index 74f9f10d26..96e66e0755 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D010 intent_category = engineering diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg index 71c004bc6a..f1cf746e64 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D015 intent_category = engineering diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg index 9f982b1f63..b422861d09 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = engineering diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg index 1bbbd51e7d..04c0eb7fe8 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = quick @@ -19,7 +19,6 @@ speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg index a8a84d437c..8647dfc34b 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D030 intent_category = quick @@ -19,7 +19,6 @@ speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg index 1d6228030a..ffd057452e 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D010 intent_category = engineering diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg index 6adc06ee83..8e6388777d 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D015 intent_category = engineering diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg index 1036154204..22a5c9cb48 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = engineering diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg index 1ecb8d5bfb..bf6e247fd2 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = quick @@ -19,7 +19,6 @@ speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg index 42e4efe351..aad18a70cf 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D030 intent_category = quick @@ -19,7 +19,6 @@ speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg index 1bee0ae204..92e729a5f1 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D010 intent_category = engineering diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg index 3eb2f4b665..b7d3e4dd3b 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D015 intent_category = engineering diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg index 150a0f9d42..6f540a5e8b 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = engineering diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg index 758b696145..4304a5e203 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = quick @@ -19,7 +19,6 @@ speed_wall = =speed_print speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg index 758b696145..4304a5e203 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = quick @@ -19,7 +19,6 @@ speed_wall = =speed_print speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg index dcc7d6b096..6ffc2e6157 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D030 intent_category = quick @@ -19,7 +19,6 @@ speed_wall = =speed_print speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg index ac7f1aaec8..0560e1fdee 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D010 intent_category = engineering diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg index c53272c20b..c7d12a0a88 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D015 intent_category = engineering diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg index d6724f859c..7448ada18b 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = engineering diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg index a2ac0d2621..0a8f46e248 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D015 intent_category = quick @@ -19,7 +19,6 @@ speed_wall = =speed_print speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg index ee2a863771..87ec8ec80b 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = quick @@ -19,7 +19,6 @@ speed_wall = =speed_print speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg index 5ac617a6e9..a02011a518 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D030 intent_category = quick @@ -19,7 +19,6 @@ speed_wall = =speed_print speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg index 9e36ee7056..cb9596f3c9 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D010 intent_category = engineering diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg index b7005254b9..0d646ae92e 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D015 intent_category = engineering diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg index d2810ec7cf..57f0aa1c7e 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = engineering diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg index 85b1e530e8..c02f791ec4 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = quick @@ -19,7 +19,6 @@ speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg index ed19c7b54c..850da180ba 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D030 intent_category = quick @@ -19,7 +19,6 @@ speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg index 2268807503..0f7c9d5f8b 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D010 intent_category = engineering diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg index 122a0a860a..c82f7a9550 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D015 intent_category = engineering diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg index 4c6ce96f1e..192102e5ab 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = engineering diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg index ff0df08e4d..12e29f6524 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D020 intent_category = quick @@ -19,7 +19,6 @@ speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg index 6f2eda9434..e555e01939 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = D030 intent_category = quick @@ -19,7 +19,6 @@ speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 30 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg index 013a104202..48e5aedae9 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,7 +20,6 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 10 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg index 4ad76fdadc..7a6c5ac9f8 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg index e72efa1308..db5db4df48 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg index d241bbef9f..52d5606437 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg index 6ecdae5b1f..7ef9bec777 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg index 853b6e068b..f9b270e31f 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg index 6ec6290733..baa358da99 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg index f024b94f39..a3009b8aea 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg index 21dafb9a0a..3d3997830a 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg index 507efc5f32..78ef709517 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg index 0a4122802a..cae917e503 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg index 3081460d4f..9cf389925d 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg index ee7465d9fd..1e86769f51 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,7 +20,6 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 15 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg index 1868a8c428..b28309dc10 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg index 97cd4da0db..59c4d3f6b6 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg index 181f00ebf3..12a35ba101 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg index 79d3543107..4da3d324b8 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg index 68676d804c..bd8b74e21e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg index b760b5e860..b0bd758b0f 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,7 +20,6 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 infill_line_width = =line_width jerk_print = 15 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg index 54f80967e6..c369eda83a 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg index 5b7dd96df5..15afeb0493 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg index 418caf6d98..d6d7e8a665 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg index dff192d7da..62eb98c6b9 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg index 76f6c2c04a..8b696d1754 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print_Quick.inst.cfg index c549a14367..5028a193e1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,9 +20,8 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -30,5 +29,5 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size -wall_line_width_x = =line_width + + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print_Accurate.inst.cfg index d5b8978c77..39d3455341 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,6 +29,6 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Visual.inst.cfg index 4880fd0962..03b3974996 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_High_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_High_Visual.inst.cfg index 9122587c5b..7d2fe3435c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg index ab56c8d836..0d2b0df40b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,6 +29,6 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Visual.inst.cfg index 35b15a9445..12c05d6a9a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg index 5c65e1d42e..36bd136f11 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_cpe_plus variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg index 54b6df9384..92b83b0daa 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_cpe_plus variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print_Accurate.inst.cfg index c67d55aa5f..0dd1d9e6cb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_cpe variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg index 86215150f8..adf9744b20 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_cpe variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg index 36bde0e555..3b56baa68b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_nylon variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg index 74bd8a2252..8a453f1423 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_nylon variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print_Accurate.inst.cfg index cdb21d818c..be3b0e768f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_pc variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality_Accurate.inst.cfg index 9e9a235a41..2088491e1e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_pc variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print_Accurate.inst.cfg index 1c06b7869e..9396ad1ab1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_petg variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg index a4eb071f00..a8f85b6da3 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_petg variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print_Quick.inst.cfg index f42ea3ab7d..5d869888c5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,9 +20,8 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -30,5 +29,5 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size -wall_line_width_x = =line_width + + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print_Accurate.inst.cfg index c5ff496c27..406b45f226 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_pla variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,6 +29,6 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Visual.inst.cfg index 7d6bc15f88..7b455965b6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_High_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_High_Visual.inst.cfg index 824efaf1d9..20eef0666e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg index 61d6d979b6..3edfa90da5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_pla variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,6 +29,6 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Visual.inst.cfg index 259a88b5cc..7826c9b0b2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg new file mode 100644 index 0000000000..fdaf5f32ed --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Quick +definition = ultimaker_s3 + +[metadata] +setting_version = 19 +type = intent +intent_category = quick +quality_type = verydraft +material = generic_pla +variant = AA 0.4 +is_experimental = True + +[values] +infill_sparse_density = 10 + +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 + +acceleration_print = 4000 +acceleration_wall = 2000 +acceleration_wall_0 = 2000 + +speed_print = 50 +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +speed_layer_0 = 20 + +wall_thickness = =line_width * 2 +top_bottom_thickness = =wall_thickness \ No newline at end of file diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print_Quick.inst.cfg index 98536cc552..3dbb03b38c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,9 +20,8 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -30,5 +29,5 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size -wall_line_width_x = =line_width + + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg index 21a44e5eda..513e8b63d9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_tough_pla variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,6 +29,6 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Visual.inst.cfg index e57d0191ac..c80e665041 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_High_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_High_Visual.inst.cfg index 433c10c9f9..5a0fdccf3c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg index 76bee3c415..3d80753d3f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_tough_pla variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,6 +29,6 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Visual.inst.cfg index 61c799708a..610fa16fcc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg new file mode 100644 index 0000000000..4ca187133e --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Quick +definition = ultimaker_s3 + +[metadata] +setting_version = 19 +type = intent +intent_category = quick +quality_type = verydraft +material = generic_tough_pla +variant = AA 0.4 +is_experimental = True + +[values] +infill_sparse_density = 10 + +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 + +acceleration_print = 4000 +acceleration_wall = 2000 +acceleration_wall_0 = 2000 + +speed_print = 50 +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +speed_layer_0 = 20 + +wall_thickness = =line_width * 2 +top_bottom_thickness = =wall_thickness \ No newline at end of file diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print_Quick.inst.cfg index dce6a872df..374cb1bca4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,9 +20,8 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -30,5 +29,5 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size -wall_line_width_x = =line_width + + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print_Accurate.inst.cfg index b06217bb98..ab2e9bc6f6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Visual.inst.cfg index b45744e730..45cba2271e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_High_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_High_Visual.inst.cfg index 9dd1faa72e..3658a72539 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg index d1532558c3..a58642f073 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Visual.inst.cfg index d5630038b4..9633a2d6e8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg index 3afb11c7cd..916b80c811 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_cpe_plus variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg index c26d5aae4d..a3d99c2ed0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_cpe_plus variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print_Accurate.inst.cfg index bd8f0a4a92..d9929fc35c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_cpe variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg index 805437b49e..45df698f7e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_cpe variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg index caf7c384b4..fcd58dd33e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_nylon variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg index 14e5bb1e83..cadc30da58 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_nylon variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print_Accurate.inst.cfg index cee4376aec..d23ff28b91 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_pc variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality_Accurate.inst.cfg index 9e9901816c..950f420016 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_pc variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print_Accurate.inst.cfg index d61b0226f6..fba5e369ee 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_petg variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg index 7f7b93a24c..29d052675d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_petg variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print_Quick.inst.cfg index 43daff2c8e..25dcb1a793 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,9 +20,8 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -30,5 +29,5 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size -wall_line_width_x = =line_width + + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print_Accurate.inst.cfg index 026f917f73..cc76a5706a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_pla variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Visual.inst.cfg index d176240085..ff6adc5257 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_High_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_High_Visual.inst.cfg index 957825b204..09c67fb20e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg index 12457541b7..28353777bf 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_pla variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Visual.inst.cfg index a7d4c127f9..8934e3fd80 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg new file mode 100644 index 0000000000..a3f5b02ec2 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Quick +definition = ultimaker_s5 + +[metadata] +setting_version = 19 +type = intent +intent_category = quick +quality_type = verydraft +material = generic_pla +variant = AA 0.4 +is_experimental = True + +[values] +infill_sparse_density = 10 + +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 + +acceleration_print = 4000 +acceleration_wall = 2000 +acceleration_wall_0 = 2000 + +speed_print = 50 +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +speed_layer_0 = 20 + +wall_thickness = =line_width * 2 +top_bottom_thickness = =wall_thickness \ No newline at end of file diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print_Quick.inst.cfg index 5e42c4de75..a811b9d673 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print_Quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = draft @@ -20,9 +20,8 @@ speed_wall_x = =speed_wall speed_layer_0 = 20 top_bottom_thickness = =wall_thickness wall_thickness = =line_width * 2 -fill_perimeter_gaps = nowhere infill_sparse_density = 15 -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -30,5 +29,5 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size -wall_line_width_x = =line_width + + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg index c799d72a38..5db4117aa1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = fast @@ -12,7 +12,7 @@ material = generic_tough_pla variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Visual.inst.cfg index 44bf269bcf..39292b0306 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = fast intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_High_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_High_Visual.inst.cfg index d52d9bcfdf..53eb8d16fd 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_High_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = high intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg index 99d9689181..22485e8777 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = normal @@ -12,7 +12,7 @@ material = generic_tough_pla variant = AA 0.4 [values] -infill_line_width = =line_width + jerk_print = 30 jerk_infill = =jerk_print jerk_topbottom = =jerk_print @@ -20,7 +20,7 @@ jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall jerk_layer_0 = 5 -line_width = =machine_nozzle_size + speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 @@ -29,7 +29,7 @@ speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Visual.inst.cfg index d133656d5e..155f6177cc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Visual.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = normal intent_category = visual diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg new file mode 100644 index 0000000000..5d22b722af --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Quick +definition = ultimaker_s5 + +[metadata] +setting_version = 19 +type = intent +intent_category = quick +quality_type = verydraft +material = generic_tough_pla +variant = AA 0.4 +is_experimental = True + +[values] +infill_sparse_density = 10 + +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 + +acceleration_print = 4000 +acceleration_wall = 2000 +acceleration_wall_0 = 2000 + +speed_print = 50 +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +speed_layer_0 = 20 + +wall_thickness = =line_width * 2 +top_bottom_thickness = =wall_thickness \ No newline at end of file diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index ec5cc5c4ab..38ce417176 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q010 intent_category = visual diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index ae1e02bac8..a6ddaab7bf 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = q015 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index f346daca24..1415ad78f4 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q015 intent_category = visual diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 0f722c5956..937a649ca1 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = q020 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg index ade59c4c39..f0f77dcbc5 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q020 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index f9453ee1e2..6591ed6939 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q020 intent_category = visual diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg index 932826fc74..067ca4a616 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q025 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg index abba5709d2..feea81a27b 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q030 diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 21cf681494..f5c1b57cc6 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q010 intent_category = visual diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 260a67a5c6..b0c482bcab 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = q015 diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 018a7b3d4c..3cad552ceb 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q015 intent_category = visual diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index d35c627e75..8b85ff3bbb 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = q020 diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg index b9dbd73909..c6e4233fc1 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q020 diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 3cf66f21db..68faeb2b47 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q020 intent_category = visual diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg index 1ecaced844..872faaeb95 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q025 diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg index ec05701754..f834674085 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q030 diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index f934fdeef2..4874cae04b 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q010 intent_category = visual diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index a71356b93e..59602e5060 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = q015 diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 0086501820..1123c86526 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q015 intent_category = visual diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index db5d125416..32204dd4e6 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = q020 diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg index ca0c21329c..569cf5080a 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q020 diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index d6fb6a8641..db181225a4 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = q020 intent_category = visual diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg index f74ab929b5..76ae812b55 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q025 diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg index 947a6d31d3..e1f2620c7b 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = q030 diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 16e2aec5de..73c97ea028 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_010 intent_category = visual diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index d4d42cc158..7643edbf95 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = ZAV_layer_015 diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index b00e540a2b..91fcaf144a 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_015 intent_category = visual diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index b7d44dcc2f..397cb0ca90 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = ZAV_layer_020 diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg index 8c09428987..021b578afe 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_020 diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 73d3503575..6d22385d69 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_020 intent_category = visual diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg index df4d3b40b0..ffc2882424 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_025 diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 098f40cb57..6aa5a3fc2a 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_030 diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index da9b60f6cd..20070c8273 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_010 intent_category = visual diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 8be4196a98..037c723524 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = ZAV_layer_015 diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 5fd39e0e88..7332cdb016 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_015 intent_category = visual diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index e3cbbb8d1b..2815efa87d 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = ZAV_layer_020 diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 350bc999d7..6ce7c404f0 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_020 diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 0727df494c..45664c019e 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_020 intent_category = visual diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg index fd510e3b41..6a041edc19 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_025 diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg index d44ee0dde7..c099eebfa7 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_030 diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index bf9437cf2e..ad9cc5aa5c 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_010 intent_category = visual diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 7d022b1d32..46ad782c9b 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = ZAV_layer_015 diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 3ff155f4ed..674a14346d 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_015 intent_category = visual diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 45f5f44b85..803f50c498 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -4,7 +4,7 @@ name = Accurate definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = engineering quality_type = ZAV_layer_020 diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg index fa4aca0aba..78c9ad9a7f 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_020 diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index b47d9d36bd..a88cc20a60 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -4,7 +4,7 @@ name = Visual definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent quality_type = ZAV_layer_020 intent_category = visual diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 98842cbd19..9f369106b1 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_025 diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg index 0d4c89e2ad..43e0ab9a96 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -4,7 +4,7 @@ name = Quick definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = intent intent_category = quick quality_type = ZAV_layer_030 diff --git a/resources/meshes/3di_d300_platform.STL b/resources/meshes/3di_d300_platform.STL new file mode 100644 index 0000000000..6615bfb523 Binary files /dev/null and b/resources/meshes/3di_d300_platform.STL differ diff --git a/resources/meshes/Hellbot_Magna_2_230.obj b/resources/meshes/Hellbot_Magna_2_230.obj index 0a23384817..d30c80e5ac 100644 --- a/resources/meshes/Hellbot_Magna_2_230.obj +++ b/resources/meshes/Hellbot_Magna_2_230.obj @@ -1,6 +1,3 @@ -# Exported from 3D Builder -mtllib Hellbot_Magna_2_230.mtl - o Object.1 v 112.500000 117.499786 0.999789 188 188 188 v -112.500008 117.499786 0.999789 188 188 188 diff --git a/resources/meshes/Hellbot_Magna_2_300.obj b/resources/meshes/Hellbot_Magna_2_300.obj index 4f80fea99d..28c859d96e 100644 --- a/resources/meshes/Hellbot_Magna_2_300.obj +++ b/resources/meshes/Hellbot_Magna_2_300.obj @@ -1,6 +1,3 @@ -# Exported from 3D Builder -mtllib Hellbot_Magna_2_300.mtl - o Object.1 v 150.000000 154.999985 0.999812 188 188 188 v -150.782166 154.938431 -1.000188 188 188 188 diff --git a/resources/meshes/Hellbot_Magna_2_400.obj b/resources/meshes/Hellbot_Magna_2_400.obj new file mode 100644 index 0000000000..8b8fc6f018 --- /dev/null +++ b/resources/meshes/Hellbot_Magna_2_400.obj @@ -0,0 +1,949 @@ +o Object.1 +v 200.000031 204.999557 1.000034 188 188 188 +v -200.782135 204.938004 -0.999961 188 188 188 +v -204.999969 199.999573 -0.999962 188 188 188 +v -204.999969 -199.999588 -1.000031 188 188 188 +v -160.315567 -205.146408 -1.000032 188 188 188 +v -159.121292 -205.878250 -1.000032 188 188 188 +v 159.880707 -205.326553 -1.000032 188 188 188 +v 159.479309 -205.572525 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v 160.773376 -205.036514 0.999964 188 188 188 +v 161.242676 -204.999588 0.999964 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 200.000031 -204.999588 -1.000032 188 188 188 +v 202.938965 -204.044662 -1.000032 188 188 188 +v 202.269989 -204.454605 -1.000032 188 188 188 +v 204.938477 -200.781754 0.999965 188 188 188 +v 205.000031 199.999573 1.000033 188 188 188 +v 205.000031 -199.999588 0.999965 188 188 188 +v 205.000031 199.999573 -0.999962 188 188 188 +v 204.938477 200.781754 -0.999962 188 188 188 +v 204.755310 201.544662 1.000033 188 188 188 +v 204.938477 200.781754 1.000033 188 188 188 +v 204.455048 202.269516 1.000033 188 188 188 +v 204.455048 202.269516 -0.999962 188 188 188 +v 204.045105 202.938492 -0.999962 188 188 188 +v 204.045105 202.938492 1.000033 188 188 188 +v 203.535553 203.535110 1.000033 188 188 188 +v 203.535553 203.535110 -0.999961 188 188 188 +v 202.938965 204.044647 1.000034 188 188 188 +v 202.938965 204.044647 -0.999961 188 188 188 +v 202.269989 204.454590 -0.999961 188 188 188 +v 201.545105 204.754852 1.000034 188 188 188 +v 202.269989 204.454590 1.000034 188 188 188 +v 201.545105 204.754852 -0.999961 188 188 188 +v 200.782196 204.938004 1.000034 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 200.782196 204.938004 -0.999961 188 188 188 +v 204.755310 201.544662 -0.999962 188 188 188 +v 161.242676 -204.999588 -1.000032 188 188 188 +v 204.755310 -201.544662 0.999965 188 188 188 +v 204.455048 -202.269516 0.999964 188 188 188 +v 204.755310 -201.544662 -1.000031 188 188 188 +v 203.535553 -203.535110 -1.000032 188 188 188 +v 203.535553 -203.535110 0.999964 188 188 188 +v 204.045105 -202.938492 -1.000031 188 188 188 +v 204.045105 -202.938492 0.999964 188 188 188 +v 202.938965 -204.044662 0.999964 188 188 188 +v 202.269989 -204.454605 0.999964 188 188 188 +v 201.545105 -204.754868 0.999964 188 188 188 +v 200.782196 -204.938034 0.999964 188 188 188 +v 201.545105 -204.754868 -1.000032 188 188 188 +v 200.000031 -204.999588 0.999964 188 188 188 +v 204.455048 -202.269516 -1.000031 188 188 188 +v 204.938477 -200.781754 -1.000031 188 188 188 +v 200.782196 -204.938034 -1.000032 188 188 188 +v 160.773376 -205.036514 -1.000032 188 188 188 +v -160.315567 -205.146408 0.999964 188 188 188 +v -160.773300 -205.036514 0.999964 188 188 188 +v -159.880630 -205.326553 0.999964 188 188 188 +v -159.479263 -205.572525 0.999964 188 188 188 +v -159.479263 -205.572525 -1.000032 188 188 188 +v -150.520676 -214.426590 -1.000034 188 188 188 +v -149.226639 -214.962631 -1.000034 188 188 188 +v -149.684387 -214.852737 -1.000034 188 188 188 +v -148.757324 -214.999557 -1.000034 188 188 188 +v 148.757385 -214.999557 -1.000034 188 188 188 +v 150.119354 -214.672562 -1.000034 188 188 188 +v 149.684448 -214.852737 -1.000034 188 188 188 +v 150.878723 -214.120865 0.999961 188 188 188 +v 150.878723 -214.120865 -1.000033 188 188 188 +v 150.520752 -214.426590 0.999961 188 188 188 +v 150.119354 -214.672562 0.999961 188 188 188 +v 149.684448 -214.852737 0.999961 188 188 188 +v 150.520752 -214.426590 -1.000034 188 188 188 +v 149.226685 -214.962631 0.999961 188 188 188 +v 149.226685 -214.962631 -1.000034 188 188 188 +v -148.757324 -214.999557 0.999961 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v 159.479309 -205.572525 0.999964 188 188 188 +v -149.684387 -214.852737 0.999961 188 188 188 +v -150.119308 -214.672562 -1.000034 188 188 188 +v -150.520676 -214.426590 0.999961 188 188 188 +v -150.878647 -214.120865 0.999961 188 188 188 +v -159.121292 -205.878250 0.999964 188 188 188 +v -150.119308 -214.672562 0.999961 188 188 188 +v -149.226639 -214.962631 0.999961 188 188 188 +v 148.757385 -214.999557 0.999961 188 188 188 +v 159.121338 -205.878250 0.999964 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 159.880707 -205.326553 0.999964 188 188 188 +v 160.315613 -205.146408 0.999964 188 188 188 +v 160.315613 -205.146408 -1.000032 188 188 188 +v -159.880630 -205.326553 -1.000032 188 188 188 +v -160.773300 -205.036514 -1.000032 188 188 188 +v -161.242599 -204.999588 0.999964 188 188 188 +v -199.999969 -204.999588 0.999964 188 188 188 +v -202.938904 -204.044662 -1.000032 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -203.535492 -203.535110 -1.000032 188 188 188 +v -204.045059 -202.938492 -1.000031 188 188 188 +v -204.755249 -201.544662 -1.000031 188 188 188 +v -204.938416 -200.781754 0.999965 188 188 188 +v -204.938416 -200.781754 -1.000031 188 188 188 +v -204.999969 -199.999588 0.999965 188 188 188 +v -204.999969 199.999573 1.000033 188 188 188 +v -201.545059 204.754852 1.000034 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -204.045059 202.938492 -0.999962 188 188 188 +v -204.455002 202.269516 -0.999962 188 188 188 +v -204.938416 200.781754 1.000033 188 188 188 +v -204.755249 201.544662 1.000033 188 188 188 +v -202.269928 204.454590 1.000034 188 188 188 +v -203.535492 203.535110 1.000033 188 188 188 +v -203.535492 203.535110 -0.999961 188 188 188 +v -204.045059 202.938492 1.000033 188 188 188 +v -204.455002 202.269516 1.000033 188 188 188 +v -204.755249 201.544662 -0.999962 188 188 188 +v -204.938416 200.781754 -0.999962 188 188 188 +v -202.938904 204.044647 1.000034 188 188 188 +v -202.938904 204.044647 -0.999961 188 188 188 +v -202.269928 204.454590 -0.999961 188 188 188 +v -200.782135 204.938004 1.000034 188 188 188 +v -201.545059 -204.754868 0.999964 188 188 188 +v -199.999969 -204.999588 -1.000032 188 188 188 +v -200.782135 -204.938034 0.999964 188 188 188 +v -200.782135 -204.938034 -1.000032 188 188 188 +v -202.269928 -204.454605 -1.000032 188 188 188 +v -203.535492 -203.535110 0.999964 188 188 188 +v -204.455002 -202.269516 0.999964 188 188 188 +v -204.755249 -201.544662 0.999965 188 188 188 +v -204.045059 -202.938492 0.999964 188 188 188 +v -204.455002 -202.269516 -1.000031 188 188 188 +v -202.938904 -204.044662 0.999964 188 188 188 +v -201.545059 -204.754868 -1.000032 188 188 188 +v -202.269928 -204.454605 0.999964 188 188 188 +v -199.999969 204.999557 1.000034 188 188 188 + +v 200.000031 204.999557 1.000034 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -199.999969 204.999557 1.000034 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -200.782135 204.938004 -0.999961 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -204.999969 199.999573 -0.999962 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -204.999969 -199.999588 -1.000031 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -160.773300 -205.036514 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -160.315567 -205.146408 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -159.880630 -205.326553 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -159.479263 -205.572525 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v -159.121292 -205.878250 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v 159.479309 -205.572525 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v 159.880707 -205.326553 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v 160.315613 -205.146408 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v 160.315613 -205.146408 -1.000032 188 188 188 +v 160.773376 -205.036514 -1.000032 188 188 188 +v 160.773376 -205.036514 0.999964 188 188 188 +v 160.773376 -205.036514 -1.000032 188 188 188 +v 161.242676 -204.999588 0.999964 188 188 188 +v 160.773376 -205.036514 -1.000032 188 188 188 +v 161.242676 -204.999588 0.999964 188 188 188 +v 161.242676 -204.999588 -1.000032 188 188 188 +v 200.000031 -204.999588 -1.000032 188 188 188 +v 161.242676 -204.999588 -1.000032 188 188 188 +v 200.000031 -204.999588 -1.000032 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 200.782196 -204.938034 -1.000032 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 201.545105 -204.754868 -1.000032 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 202.269989 -204.454605 -1.000032 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 202.938965 -204.044662 -1.000032 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 203.535553 -203.535110 -1.000032 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 204.938477 -200.781754 -1.000031 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 204.938477 -200.781754 0.999965 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 205.000031 -199.999588 0.999965 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 205.000031 -199.999588 0.999965 188 188 188 +v 205.000031 199.999573 -0.999962 188 188 188 +v 205.000031 199.999573 1.000033 188 188 188 +v 205.000031 199.999573 -0.999962 188 188 188 +v 205.000031 199.999573 1.000033 188 188 188 +v 204.938477 200.781754 -0.999962 188 188 188 +v 204.938477 200.781754 1.000033 188 188 188 +v 204.938477 200.781754 -0.999962 188 188 188 +v 204.938477 200.781754 1.000033 188 188 188 +v 204.755310 201.544662 -0.999962 188 188 188 +v 204.755310 201.544662 1.000033 188 188 188 +v 204.755310 201.544662 -0.999962 188 188 188 +v 204.755310 201.544662 1.000033 188 188 188 +v 204.455048 202.269516 -0.999962 188 188 188 +v 204.455048 202.269516 1.000033 188 188 188 +v 204.455048 202.269516 -0.999962 188 188 188 +v 204.455048 202.269516 1.000033 188 188 188 +v 204.045105 202.938492 -0.999962 188 188 188 +v 204.045105 202.938492 1.000033 188 188 188 +v 204.045105 202.938492 -0.999962 188 188 188 +v 204.045105 202.938492 1.000033 188 188 188 +v 203.535553 203.535110 -0.999961 188 188 188 +v 203.535553 203.535110 1.000033 188 188 188 +v 203.535553 203.535110 -0.999961 188 188 188 +v 203.535553 203.535110 1.000033 188 188 188 +v 202.938965 204.044647 -0.999961 188 188 188 +v 202.938965 204.044647 1.000034 188 188 188 +v 202.938965 204.044647 -0.999961 188 188 188 +v 202.938965 204.044647 1.000034 188 188 188 +v 202.269989 204.454590 -0.999961 188 188 188 +v 202.269989 204.454590 1.000034 188 188 188 +v 202.269989 204.454590 -0.999961 188 188 188 +v 202.269989 204.454590 1.000034 188 188 188 +v 201.545105 204.754852 -0.999961 188 188 188 +v 201.545105 204.754852 1.000034 188 188 188 +v 201.545105 204.754852 -0.999961 188 188 188 +v 201.545105 204.754852 1.000034 188 188 188 +v 200.782196 204.938004 -0.999961 188 188 188 +v 200.782196 204.938004 1.000034 188 188 188 +v 200.782196 204.938004 -0.999961 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 200.782196 204.938004 -0.999961 188 188 188 +v 203.535553 203.535110 -0.999961 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 201.545105 204.754852 -0.999961 188 188 188 +v 203.535553 203.535110 -0.999961 188 188 188 +v 200.782196 204.938004 -0.999961 188 188 188 +v 202.269989 204.454590 -0.999961 188 188 188 +v 202.938965 204.044647 -0.999961 188 188 188 +v 201.545105 204.754852 -0.999961 188 188 188 +v 202.938965 204.044647 -0.999961 188 188 188 +v 203.535553 203.535110 -0.999961 188 188 188 +v 201.545105 204.754852 -0.999961 188 188 188 +v 203.535553 203.535110 -0.999961 188 188 188 +v 204.045105 202.938492 -0.999962 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 204.045105 202.938492 -0.999962 188 188 188 +v 204.455048 202.269516 -0.999962 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 204.455048 202.269516 -0.999962 188 188 188 +v 204.755310 201.544662 -0.999962 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 204.755310 201.544662 -0.999962 188 188 188 +v 204.938477 200.781754 -0.999962 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 204.938477 200.781754 -0.999962 188 188 188 +v 205.000031 199.999573 -0.999962 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 205.000031 199.999573 -0.999962 188 188 188 +v 161.242676 -204.999588 -1.000032 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 204.755310 -201.544662 0.999965 188 188 188 +v 204.755310 -201.544662 -1.000031 188 188 188 +v 204.938477 -200.781754 -1.000031 188 188 188 +v 204.455048 -202.269516 0.999964 188 188 188 +v 204.755310 -201.544662 -1.000031 188 188 188 +v 204.455048 -202.269516 -1.000031 188 188 188 +v 204.755310 -201.544662 -1.000031 188 188 188 +v 204.045105 -202.938492 -1.000031 188 188 188 +v 203.535553 -203.535110 -1.000032 188 188 188 +v 204.755310 -201.544662 -1.000031 188 188 188 +v 203.535553 -203.535110 -1.000032 188 188 188 +v 204.045105 -202.938492 -1.000031 188 188 188 +v 203.535553 -203.535110 0.999964 188 188 188 +v 204.045105 -202.938492 -1.000031 188 188 188 +v 202.938965 -204.044662 -1.000032 188 188 188 +v 202.269989 -204.454605 0.999964 188 188 188 +v 202.269989 -204.454605 -1.000032 188 188 188 +v 201.545105 -204.754868 0.999964 188 188 188 +v 201.545105 -204.754868 -1.000032 188 188 188 +v 200.782196 -204.938034 0.999964 188 188 188 +v 200.782196 -204.938034 -1.000032 188 188 188 +v 203.535553 -203.535110 0.999964 188 188 188 +v 202.938965 -204.044662 0.999964 188 188 188 +v 203.535553 -203.535110 -1.000032 188 188 188 +v 204.045105 -202.938492 0.999964 188 188 188 +v 204.045105 -202.938492 -1.000031 188 188 188 +v 204.455048 -202.269516 -1.000031 188 188 188 +v 204.455048 -202.269516 0.999964 188 188 188 +v 204.045105 -202.938492 0.999964 188 188 188 +v 204.455048 -202.269516 -1.000031 188 188 188 +v 204.938477 -200.781754 0.999965 188 188 188 +v 204.755310 -201.544662 0.999965 188 188 188 +v 204.938477 -200.781754 -1.000031 188 188 188 +v 204.755310 -201.544662 -1.000031 188 188 188 +v 203.535553 -203.535110 -1.000032 188 188 188 +v 204.938477 -200.781754 -1.000031 188 188 188 +v 202.938965 -204.044662 0.999964 188 188 188 +v 202.938965 -204.044662 -1.000032 188 188 188 +v 203.535553 -203.535110 -1.000032 188 188 188 +v 202.269989 -204.454605 0.999964 188 188 188 +v 202.269989 -204.454605 -1.000032 188 188 188 +v 202.938965 -204.044662 -1.000032 188 188 188 +v 201.545105 -204.754868 0.999964 188 188 188 +v 201.545105 -204.754868 -1.000032 188 188 188 +v 202.269989 -204.454605 -1.000032 188 188 188 +v 200.782196 -204.938034 0.999964 188 188 188 +v 200.782196 -204.938034 -1.000032 188 188 188 +v 201.545105 -204.754868 -1.000032 188 188 188 +v 200.000031 -204.999588 0.999964 188 188 188 +v 200.000031 -204.999588 -1.000032 188 188 188 +v 200.782196 -204.938034 -1.000032 188 188 188 +v 205.000031 -199.999588 -1.000031 188 188 188 +v 161.242676 -204.999588 -1.000032 188 188 188 +v 205.000031 199.999573 -0.999962 188 188 188 +v 200.000031 -204.999588 0.999964 188 188 188 +v 161.242676 -204.999588 0.999964 188 188 188 +v 200.000031 -204.999588 -1.000032 188 188 188 +v 161.242676 -204.999588 -1.000032 188 188 188 +v 160.773376 -205.036514 -1.000032 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v -160.773300 -205.036514 -1.000032 188 188 188 +v -160.315567 -205.146408 0.999964 188 188 188 +v -160.315567 -205.146408 -1.000032 188 188 188 +v -159.880630 -205.326553 0.999964 188 188 188 +v -159.880630 -205.326553 -1.000032 188 188 188 +v -159.479263 -205.572525 0.999964 188 188 188 +v -159.479263 -205.572525 -1.000032 188 188 188 +v -159.121292 -205.878250 0.999964 188 188 188 +v -150.878647 -214.120865 0.999961 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v -150.520676 -214.426590 -1.000034 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v -150.119308 -214.672562 -1.000034 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v -149.684387 -214.852737 -1.000034 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v -149.226639 -214.962631 -1.000034 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v -148.757324 -214.999557 -1.000034 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v -148.757324 -214.999557 -1.000034 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 148.757385 -214.999557 -1.000034 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 149.226685 -214.962631 -1.000034 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 149.684448 -214.852737 -1.000034 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 150.119354 -214.672562 -1.000034 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 150.878723 -214.120865 -1.000033 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 150.878723 -214.120865 0.999961 188 188 188 +v 150.878723 -214.120865 -1.000033 188 188 188 +v 150.520752 -214.426590 0.999961 188 188 188 +v 150.878723 -214.120865 -1.000033 188 188 188 +v 150.520752 -214.426590 0.999961 188 188 188 +v 150.520752 -214.426590 -1.000034 188 188 188 +v 150.119354 -214.672562 0.999961 188 188 188 +v 150.119354 -214.672562 -1.000034 188 188 188 +v 150.520752 -214.426590 -1.000034 188 188 188 +v 150.119354 -214.672562 0.999961 188 188 188 +v 150.119354 -214.672562 -1.000034 188 188 188 +v 149.684448 -214.852737 0.999961 188 188 188 +v 149.684448 -214.852737 -1.000034 188 188 188 +v 150.520752 -214.426590 -1.000034 188 188 188 +v 150.119354 -214.672562 -1.000034 188 188 188 +v 150.878723 -214.120865 -1.000033 188 188 188 +v 149.684448 -214.852737 0.999961 188 188 188 +v 149.684448 -214.852737 -1.000034 188 188 188 +v 150.119354 -214.672562 -1.000034 188 188 188 +v 149.226685 -214.962631 0.999961 188 188 188 +v 149.226685 -214.962631 -1.000034 188 188 188 +v 149.684448 -214.852737 -1.000034 188 188 188 +v 149.226685 -214.962631 0.999961 188 188 188 +v 149.226685 -214.962631 -1.000034 188 188 188 +v 148.757385 -214.999557 0.999961 188 188 188 +v 148.757385 -214.999557 -1.000034 188 188 188 +v 149.226685 -214.962631 -1.000034 188 188 188 +v 148.757385 -214.999557 -1.000034 188 188 188 +v -148.757324 -214.999557 -1.000034 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v 159.479309 -205.572525 -1.000032 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 159.479309 -205.572525 -1.000032 188 188 188 +v -148.757324 -214.999557 -1.000034 188 188 188 +v -149.226639 -214.962631 -1.000034 188 188 188 +v -149.226639 -214.962631 -1.000034 188 188 188 +v -149.684387 -214.852737 -1.000034 188 188 188 +v -149.684387 -214.852737 -1.000034 188 188 188 +v -150.119308 -214.672562 -1.000034 188 188 188 +v -150.119308 -214.672562 0.999961 188 188 188 +v -150.119308 -214.672562 -1.000034 188 188 188 +v -150.119308 -214.672562 -1.000034 188 188 188 +v -150.520676 -214.426590 0.999961 188 188 188 +v -150.520676 -214.426590 -1.000034 188 188 188 +v -150.520676 -214.426590 0.999961 188 188 188 +v -150.878647 -214.120865 0.999961 188 188 188 +v -150.520676 -214.426590 -1.000034 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v -159.121292 -205.878250 0.999964 188 188 188 +v -159.121292 -205.878250 -1.000032 188 188 188 +v -149.684387 -214.852737 0.999961 188 188 188 +v -150.119308 -214.672562 0.999961 188 188 188 +v -149.684387 -214.852737 -1.000034 188 188 188 +v -149.226639 -214.962631 0.999961 188 188 188 +v -149.684387 -214.852737 0.999961 188 188 188 +v -149.226639 -214.962631 -1.000034 188 188 188 +v -148.757324 -214.999557 0.999961 188 188 188 +v -149.226639 -214.962631 0.999961 188 188 188 +v -148.757324 -214.999557 -1.000034 188 188 188 +v 148.757385 -214.999557 0.999961 188 188 188 +v -148.757324 -214.999557 0.999961 188 188 188 +v 148.757385 -214.999557 -1.000034 188 188 188 +v 150.878723 -214.120865 0.999961 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 159.479309 -205.572525 0.999964 188 188 188 +v 159.121338 -205.878250 0.999964 188 188 188 +v 159.121338 -205.878250 -1.000032 188 188 188 +v 159.479309 -205.572525 0.999964 188 188 188 +v 159.479309 -205.572525 -1.000032 188 188 188 +v 159.880707 -205.326553 0.999964 188 188 188 +v 159.880707 -205.326553 -1.000032 188 188 188 +v 160.773376 -205.036514 0.999964 188 188 188 +v 160.315613 -205.146408 0.999964 188 188 188 +v 160.315613 -205.146408 -1.000032 188 188 188 +v 160.315613 -205.146408 0.999964 188 188 188 +v 159.880707 -205.326553 -1.000032 188 188 188 +v 160.315613 -205.146408 -1.000032 188 188 188 +v 159.880707 -205.326553 0.999964 188 188 188 +v 159.479309 -205.572525 -1.000032 188 188 188 +v 159.880707 -205.326553 -1.000032 188 188 188 +v -150.878647 -214.120865 -1.000033 188 188 188 +v -159.121292 -205.878250 -1.000032 188 188 188 +v 159.479309 -205.572525 -1.000032 188 188 188 +v -159.121292 -205.878250 -1.000032 188 188 188 +v -159.121292 -205.878250 0.999964 188 188 188 +v -159.479263 -205.572525 -1.000032 188 188 188 +v -159.479263 -205.572525 -1.000032 188 188 188 +v -159.479263 -205.572525 0.999964 188 188 188 +v -159.880630 -205.326553 -1.000032 188 188 188 +v -159.880630 -205.326553 -1.000032 188 188 188 +v -159.880630 -205.326553 0.999964 188 188 188 +v -160.315567 -205.146408 -1.000032 188 188 188 +v -160.315567 -205.146408 -1.000032 188 188 188 +v -160.315567 -205.146408 0.999964 188 188 188 +v -160.773300 -205.036514 -1.000032 188 188 188 +v -160.773300 -205.036514 -1.000032 188 188 188 +v -160.773300 -205.036514 0.999964 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -160.773300 -205.036514 0.999964 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -161.242599 -204.999588 0.999964 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -199.999969 -204.999588 0.999964 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -199.999969 -204.999588 -1.000032 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -201.545059 -204.754868 -1.000032 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -202.269928 -204.454605 -1.000032 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -202.938904 -204.044662 -1.000032 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -203.535492 -203.535110 -1.000032 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -204.045059 -202.938492 -1.000031 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -204.455002 -202.269516 -1.000031 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -204.755249 -201.544662 -1.000031 188 188 188 +v -204.755249 -201.544662 -1.000031 188 188 188 +v -204.938416 -200.781754 -1.000031 188 188 188 +v -204.938416 -200.781754 0.999965 188 188 188 +v -204.938416 -200.781754 -1.000031 188 188 188 +v -204.938416 -200.781754 -1.000031 188 188 188 +v -204.999969 -199.999588 0.999965 188 188 188 +v -204.999969 -199.999588 -1.000031 188 188 188 +v -204.999969 -199.999588 0.999965 188 188 188 +v -204.999969 -199.999588 -1.000031 188 188 188 +v -201.545059 204.754852 1.000034 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -202.269928 204.454590 -0.999961 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -202.938904 204.044647 -0.999961 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -203.535492 203.535110 -0.999961 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -204.045059 202.938492 -0.999962 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -204.455002 202.269516 -0.999962 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -204.755249 201.544662 -0.999962 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -204.999969 199.999573 -0.999962 188 188 188 +v -204.938416 200.781754 -0.999962 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -204.999969 199.999573 -0.999962 188 188 188 +v -204.938416 200.781754 -0.999962 188 188 188 +v -204.938416 200.781754 1.000033 188 188 188 +v -204.938416 200.781754 -0.999962 188 188 188 +v -202.938904 204.044647 -0.999961 188 188 188 +v -202.938904 204.044647 1.000034 188 188 188 +v -203.535492 203.535110 -0.999961 188 188 188 +v -203.535492 203.535110 1.000033 188 188 188 +v -204.045059 202.938492 -0.999962 188 188 188 +v -204.045059 202.938492 1.000033 188 188 188 +v -204.455002 202.269516 -0.999962 188 188 188 +v -204.755249 201.544662 1.000033 188 188 188 +v -204.455002 202.269516 1.000033 188 188 188 +v -204.755249 201.544662 -0.999962 188 188 188 +v -204.999969 199.999573 1.000033 188 188 188 +v -204.938416 200.781754 1.000033 188 188 188 +v -204.999969 199.999573 -0.999962 188 188 188 +v -204.938416 200.781754 -0.999962 188 188 188 +v -204.755249 201.544662 1.000033 188 188 188 +v -204.755249 201.544662 -0.999962 188 188 188 +v -204.755249 201.544662 -0.999962 188 188 188 +v -204.455002 202.269516 1.000033 188 188 188 +v -204.455002 202.269516 -0.999962 188 188 188 +v -204.455002 202.269516 -0.999962 188 188 188 +v -204.045059 202.938492 1.000033 188 188 188 +v -204.045059 202.938492 -0.999962 188 188 188 +v -204.045059 202.938492 -0.999962 188 188 188 +v -203.535492 203.535110 1.000033 188 188 188 +v -203.535492 203.535110 -0.999961 188 188 188 +v -203.535492 203.535110 -0.999961 188 188 188 +v -202.938904 204.044647 1.000034 188 188 188 +v -202.938904 204.044647 -0.999961 188 188 188 +v -202.938904 204.044647 -0.999961 188 188 188 +v -202.269928 204.454590 1.000034 188 188 188 +v -202.269928 204.454590 -0.999961 188 188 188 +v -202.269928 204.454590 1.000034 188 188 188 +v -201.545059 204.754852 1.000034 188 188 188 +v -202.269928 204.454590 -0.999961 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -200.782135 204.938004 1.000034 188 188 188 +v -200.782135 204.938004 -0.999961 188 188 188 +v -199.999969 -204.999588 -1.000032 188 188 188 +v -200.782135 -204.938034 0.999964 188 188 188 +v -200.782135 -204.938034 -1.000032 188 188 188 +v -200.782135 -204.938034 -1.000032 188 188 188 +v -201.545059 -204.754868 0.999964 188 188 188 +v -201.545059 -204.754868 -1.000032 188 188 188 +v -201.545059 -204.754868 0.999964 188 188 188 +v -201.545059 -204.754868 -1.000032 188 188 188 +v -202.269928 -204.454605 0.999964 188 188 188 +v -202.269928 -204.454605 -1.000032 188 188 188 +v -202.938904 -204.044662 0.999964 188 188 188 +v -202.938904 -204.044662 -1.000032 188 188 188 +v -204.455002 -202.269516 -1.000031 188 188 188 +v -204.455002 -202.269516 0.999964 188 188 188 +v -204.045059 -202.938492 -1.000031 188 188 188 +v -203.535492 -203.535110 0.999964 188 188 188 +v -204.045059 -202.938492 0.999964 188 188 188 +v -203.535492 -203.535110 -1.000032 188 188 188 +v -204.755249 -201.544662 0.999965 188 188 188 +v -204.938416 -200.781754 0.999965 188 188 188 +v -204.755249 -201.544662 -1.000031 188 188 188 +v -204.455002 -202.269516 -1.000031 188 188 188 +v -204.755249 -201.544662 0.999965 188 188 188 +v -204.755249 -201.544662 -1.000031 188 188 188 +v -204.045059 -202.938492 -1.000031 188 188 188 +v -204.455002 -202.269516 0.999964 188 188 188 +v -204.455002 -202.269516 -1.000031 188 188 188 +v -203.535492 -203.535110 -1.000032 188 188 188 +v -204.045059 -202.938492 0.999964 188 188 188 +v -204.045059 -202.938492 -1.000031 188 188 188 +v -202.938904 -204.044662 -1.000032 188 188 188 +v -203.535492 -203.535110 0.999964 188 188 188 +v -203.535492 -203.535110 -1.000032 188 188 188 +v -202.269928 -204.454605 -1.000032 188 188 188 +v -202.938904 -204.044662 0.999964 188 188 188 +v -202.938904 -204.044662 -1.000032 188 188 188 +v -201.545059 -204.754868 -1.000032 188 188 188 +v -202.269928 -204.454605 0.999964 188 188 188 +v -202.269928 -204.454605 -1.000032 188 188 188 +v -199.999969 -204.999588 -1.000032 188 188 188 +v -200.782135 -204.938034 -1.000032 188 188 188 +v -201.545059 -204.754868 -1.000032 188 188 188 +v -199.999969 -204.999588 0.999964 188 188 188 +v -200.782135 -204.938034 0.999964 188 188 188 +v -199.999969 -204.999588 -1.000032 188 188 188 +v -161.242599 -204.999588 -1.000032 188 188 188 +v -204.938416 -200.781754 -1.000031 188 188 188 +v -204.999969 -199.999588 -1.000031 188 188 188 +v -204.999969 -199.999588 -1.000031 188 188 188 +v -204.999969 199.999573 1.000033 188 188 188 +v -204.999969 199.999573 -0.999962 188 188 188 +v -204.999969 199.999573 -0.999962 188 188 188 +v -201.545059 204.754852 -0.999961 188 188 188 +v -200.782135 204.938004 -0.999961 188 188 188 +v -200.782135 204.938004 1.000034 188 188 188 +v -199.999969 204.999557 1.000034 188 188 188 +v -200.782135 204.938004 -0.999961 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 +v 160.773376 -205.036514 -1.000032 188 188 188 +v -199.999969 204.999557 -0.999961 188 188 188 +v 200.000031 204.999557 1.000034 188 188 188 +v 200.782196 204.938004 1.000034 188 188 188 +v 200.000031 204.999557 -0.999961 188 188 188 + +f 1 36 9 +f 136 137 138 +f 2 139 140 +f 3 141 142 +f 4 143 144 +f 98 145 146 +f 94 147 148 +f 5 149 150 +f 93 151 152 +f 61 153 154 +f 6 155 156 +f 8 157 158 +f 7 159 160 +f 92 161 162 +f 56 163 164 +f 10 165 166 +f 11 167 168 +f 169 170 39 +f 13 171 172 +f 173 174 12 +f 55 175 176 +f 51 177 178 +f 15 179 180 +f 14 181 182 +f 43 183 184 +f 54 185 186 +f 16 187 188 +f 18 189 190 +f 191 192 19 +f 17 193 194 +f 195 196 20 +f 22 197 198 +f 199 200 38 +f 21 201 202 +f 203 204 24 +f 23 205 206 +f 207 208 25 +f 26 209 210 +f 211 212 28 +f 27 213 214 +f 215 216 30 +f 29 217 218 +f 219 220 31 +f 33 221 222 +f 223 224 34 +f 32 225 226 +f 227 228 37 +f 35 229 230 +f 231 232 233 +f 234 235 236 +f 237 238 239 +f 240 241 242 +f 243 244 245 +f 246 247 248 +f 249 250 251 +f 252 253 254 +f 255 256 257 +f 258 259 260 +f 261 262 263 +f 40 41 42 +f 264 265 266 +f 267 53 268 +f 269 45 270 +f 271 272 273 +f 44 274 275 +f 46 276 277 +f 47 48 278 +f 279 49 280 +f 281 50 282 +f 283 52 284 +f 285 286 287 +f 288 289 290 +f 291 292 293 +f 294 295 296 +f 297 298 299 +f 300 301 302 +f 303 304 305 +f 306 307 308 +f 309 310 311 +f 312 313 314 +f 315 316 317 +f 318 319 320 +f 321 322 323 +f 57 58 324 +f 59 325 326 +f 60 327 328 +f 84 329 330 +f 83 331 78 +f 62 332 333 +f 81 334 335 +f 64 336 337 +f 63 338 339 +f 65 340 341 +f 342 343 89 +f 66 344 345 +f 76 346 347 +f 68 348 349 +f 67 350 351 +f 70 352 353 +f 69 354 355 +f 356 71 357 +f 358 74 359 +f 360 72 361 +f 362 363 364 +f 365 73 366 +f 367 75 368 +f 369 370 371 +f 372 373 374 +f 375 376 377 +f 378 87 379 +f 380 381 382 +f 383 77 384 +f 385 386 387 +f 79 388 389 +f 390 86 391 +f 392 80 393 +f 394 85 395 +f 396 82 397 +f 398 399 400 +f 401 402 403 +f 404 405 406 +f 407 408 409 +f 410 411 412 +f 413 414 415 +f 416 417 418 +f 88 419 420 +f 421 422 423 +f 90 424 425 +f 91 426 427 +f 428 429 430 +f 431 432 433 +f 434 435 436 +f 437 438 439 +f 440 441 442 +f 443 444 445 +f 446 447 448 +f 449 450 451 +f 452 453 454 +f 455 95 456 +f 457 96 458 +f 459 460 124 +f 461 462 134 +f 463 464 127 +f 465 466 97 +f 467 468 99 +f 469 470 100 +f 471 472 132 +f 473 474 101 +f 475 476 103 +f 477 102 478 +f 479 104 480 +f 481 482 483 +f 484 105 485 +f 106 122 107 +f 121 486 487 +f 120 488 489 +f 114 490 491 +f 108 492 493 +f 109 494 495 +f 117 496 497 +f 118 498 499 +f 500 501 502 +f 503 110 504 +f 505 111 506 +f 119 112 507 +f 113 508 509 +f 115 510 511 +f 116 512 513 +f 514 515 516 +f 517 518 519 +f 520 521 522 +f 523 524 525 +f 526 527 528 +f 529 530 531 +f 532 533 534 +f 535 536 537 +f 538 539 540 +f 541 542 543 +f 125 123 126 +f 544 545 546 +f 547 548 549 +f 550 135 551 +f 552 133 553 +f 554 128 555 +f 129 130 556 +f 131 557 558 +f 559 560 561 +f 562 563 564 +f 565 566 567 +f 568 569 570 +f 571 572 573 +f 574 575 576 +f 577 578 579 +f 580 581 582 +f 583 584 585 +f 586 587 588 +f 589 590 591 +f 592 593 594 +f 595 596 597 +f 598 599 600 +f 601 602 603 +f 604 605 606 + +vt 0.106310 0.023379 +vt 0.973522 0.985541 +vt 0.012019 0.985541 +vt 0.107410 0.023121 +vt 0.108456 0.022698 +vt 0.109421 0.022121 +vt 0.875260 0.021403 +vt 0.876120 0.022121 +vt 0.877085 0.022698 +vt 0.878130 0.023121 +vt 0.879231 0.023379 +vt 0.880359 0.023465 +vt 0.985541 0.035198 +vt 0.985541 0.973808 +vt 0.985393 0.975644 +vt 0.984953 0.977434 +vt 0.984231 0.979135 +vt 0.983246 0.980705 +vt 0.982021 0.982105 +vt 0.975402 0.985397 +vt 0.977236 0.984967 +vt 0.980587 0.983300 +vt 0.978979 0.984262 +vt 0.985393 0.033363 +vt 0.984953 0.031572 +vt 0.984231 0.029871 +vt 0.983246 0.028302 +vt 0.982021 0.026902 +vt 0.980587 0.025706 +vt 0.978979 0.024744 +vt 0.977236 0.024040 +vt 0.973522 0.023465 +vt 0.975402 0.023610 +vt 0.855446 0.002062 +vt 0.110281 0.021403 +vt 0.850347 0.000000 +vt 0.851475 0.000087 +vt 0.852576 0.000345 +vt 0.853621 0.000767 +vt 0.854586 0.001345 +vt 0.135194 0.000000 +vt 0.134066 0.000087 +vt 0.132965 0.000345 +vt 0.131920 0.000767 +vt 0.130095 0.002062 +vt 0.130955 0.001345 +vt 0.105182 0.023465 +vt -0.000000 0.973808 +vt -0.000000 0.035198 +vt 0.012019 0.023465 +vt 0.010139 0.023610 +vt 0.008305 0.024040 +vt 0.006562 0.024744 +vt 0.004954 0.025706 +vt 0.003520 0.026902 +vt 0.000148 0.033363 +vt 0.000588 0.031572 +vt 0.001310 0.029871 +vt 0.002295 0.028302 +vt 0.010139 0.985397 +vt 0.008305 0.984967 +vt 0.000148 0.975644 +vt 0.000588 0.977434 +vt 0.006562 0.984262 +vt 0.004954 0.983300 +vt 0.003520 0.982105 +vt 0.002295 0.980705 +vt 0.001310 0.979135 + +usemtl Mat_0 +f 27/19 32/21 35/20 +f 27/19 35/20 1/2 +f 29/22 33/23 32/21 +f 27/19 29/22 32/21 +f 26/18 27/19 1/2 +f 23/17 26/18 1/2 +f 21/16 23/17 1/2 +f 22/15 21/16 1/2 +f 17/14 22/15 1/2 +f 18/13 17/14 1/2 +f 11/12 18/13 1/2 +f 11/12 16/24 18/13 +f 11/12 40/25 16/24 +f 11/12 41/26 40/25 +f 11/12 44/28 46/27 +f 11/12 47/29 44/28 +f 11/12 48/30 47/29 +f 11/12 49/31 48/30 +f 11/12 52/32 49/31 +f 52/32 50/33 49/31 +f 11/12 46/27 41/26 +f 10/11 11/12 1/2 +f 91/10 10/11 1/2 +f 90/9 91/10 1/2 +f 79/8 90/9 1/2 +f 88/7 79/8 1/2 +f 60/6 88/7 1/2 +f 59/5 60/6 1/2 +f 57/4 59/5 1/2 +f 58/1 57/4 1/2 +f 69/34 88/7 60/6 +f 84/35 69/34 60/6 +f 87/36 69/34 84/35 +f 77/41 87/36 84/35 +f 86/42 77/41 84/35 +f 80/43 86/42 84/35 +f 85/44 80/43 84/35 +f 83/45 85/44 84/35 +f 73/38 72/39 69/34 +f 75/37 73/38 69/34 +f 72/39 71/40 69/34 +f 82/46 85/44 83/45 +f 87/36 75/37 69/34 +f 104/49 95/47 105/48 +f 105/48 95/47 136/3 +f 122/60 105/48 136/3 +f 106/61 105/48 122/60 +f 111/63 110/62 106/61 +f 112/64 111/63 106/61 +f 119/65 111/63 112/64 +f 113/66 111/63 119/65 +f 115/67 111/63 113/66 +f 116/68 111/63 115/67 +f 110/62 105/48 106/61 +f 102/56 128/55 104/49 +f 128/55 133/54 104/49 +f 133/54 135/53 104/49 +f 135/53 123/52 104/49 +f 123/52 125/51 104/49 +f 125/51 96/50 104/49 +f 130/57 128/55 102/56 +f 129/58 128/55 130/57 +f 131/59 128/55 129/58 +f 96/50 95/47 104/49 +f 95/47 58/1 136/3 +f 58/1 1/2 136/3 + diff --git a/resources/meshes/Hellbot_Magna_2_500.obj b/resources/meshes/Hellbot_Magna_2_500.obj new file mode 100644 index 0000000000..7ff0e017f1 --- /dev/null +++ b/resources/meshes/Hellbot_Magna_2_500.obj @@ -0,0 +1,949 @@ +o Object.1 +v 250.000000 254.999847 0.999835 188 188 188 +v -250.000000 254.999847 0.999835 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v -209.121323 -255.878632 -0.999841 188 188 188 +v 210.315582 -255.146759 1.000158 188 188 188 +v 210.773315 -255.036865 1.000158 188 188 188 +v 211.242645 -254.999939 1.000158 188 188 188 +v 210.773315 -255.036865 -0.999841 188 188 188 +v 211.242645 -254.999939 -0.999841 188 188 188 +v 250.782166 254.938293 0.999835 188 188 188 +v 250.782166 254.938293 -1.000164 188 188 188 +v 251.545074 254.755127 0.999835 188 188 188 +v 252.269958 254.454895 0.999836 188 188 188 +v 251.545074 254.755127 -1.000164 188 188 188 +v 252.269958 254.454895 -1.000164 188 188 188 +v 254.755280 251.544952 -1.000162 188 188 188 +v 252.938934 254.044952 0.999836 188 188 188 +v 252.938934 254.044952 -1.000163 188 188 188 +v 253.535522 253.535400 0.999836 188 188 188 +v 253.535522 253.535400 -1.000163 188 188 188 +v 254.045105 252.938782 0.999836 188 188 188 +v 254.455017 252.269806 0.999837 188 188 188 +v 254.045105 252.938782 -1.000163 188 188 188 +v 254.755280 251.544952 0.999837 188 188 188 +v 254.455017 252.269806 -1.000162 188 188 188 +v 254.938446 250.782043 0.999838 188 188 188 +v 254.938446 250.782043 -1.000161 188 188 188 +v 255.000000 249.999847 0.999838 188 188 188 +v 255.000000 -249.999939 1.000155 188 188 188 +v 254.938446 -250.782104 1.000155 188 188 188 +v 254.938446 -250.782104 -0.999844 188 188 188 +v 254.455017 -252.269897 -0.999843 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 250.000000 -254.999939 -0.999841 188 188 188 +v 250.000000 -254.999939 1.000158 188 188 188 +v 254.455017 -252.269897 1.000156 188 188 188 +v 254.755280 -251.545013 1.000155 188 188 188 +v 254.045105 -252.938873 1.000156 188 188 188 +v 253.535522 -253.535461 1.000157 188 188 188 +v 252.938934 -254.045013 1.000157 188 188 188 +v 252.269958 -254.454956 1.000157 188 188 188 +v 251.545074 -254.755219 1.000158 188 188 188 +v 252.269958 -254.454956 -0.999842 188 188 188 +v 250.782166 -254.938385 1.000158 188 188 188 +v 251.545074 -254.755219 -0.999842 188 188 188 +v 250.782166 -254.938385 -0.999841 188 188 188 +v 252.938934 -254.045013 -0.999842 188 188 188 +v 253.535522 -253.535461 -0.999842 188 188 188 +v 254.045105 -252.938873 -0.999843 188 188 188 +v 254.755280 -251.545013 -0.999844 188 188 188 +v -210.315598 -255.146759 1.000158 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -254.938477 250.782043 -1.000161 188 188 188 +v -254.755310 251.544952 -1.000162 188 188 188 +v -254.045105 252.938782 -1.000163 188 188 188 +v -253.535522 253.535400 -1.000163 188 188 188 +v -252.269958 254.454895 -1.000164 188 188 188 +v -251.545074 254.755127 0.999835 188 188 188 +v -250.782166 254.938293 0.999835 188 188 188 +v -250.782166 254.938293 -1.000164 188 188 188 +v -210.773331 -255.036865 1.000158 188 188 188 +v -211.242645 -254.999939 1.000158 188 188 188 +v -254.938477 -250.782104 -0.999844 188 188 188 +v -255.000000 -249.999939 1.000155 188 188 188 +v -255.000000 249.999847 0.999838 188 188 188 +v -254.938477 250.782043 0.999838 188 188 188 +v -255.000000 249.999847 -1.000161 188 188 188 +v -252.938934 254.044952 0.999836 188 188 188 +v -252.269958 254.454895 0.999836 188 188 188 +v -253.535522 253.535400 0.999836 188 188 188 +v -254.045105 252.938782 0.999836 188 188 188 +v -254.455017 252.269806 0.999837 188 188 188 +v -254.755310 251.544952 0.999837 188 188 188 +v -254.938477 -250.782104 1.000155 188 188 188 +v -254.755310 -251.545013 1.000155 188 188 188 +v -254.455017 -252.269897 1.000156 188 188 188 +v -254.455017 -252.269897 -0.999843 188 188 188 +v -254.045105 -252.938873 1.000156 188 188 188 +v -252.938934 -254.045013 -0.999842 188 188 188 +v -252.269958 -254.454956 -0.999842 188 188 188 +v -251.545074 -254.755219 -0.999842 188 188 188 +v -252.269958 -254.454956 1.000157 188 188 188 +v -250.782166 -254.938385 -0.999841 188 188 188 +v -250.000000 -254.999939 -0.999841 188 188 188 +v -250.000000 -254.999939 1.000158 188 188 188 +v -250.782166 -254.938385 1.000158 188 188 188 +v -251.545074 -254.755219 1.000158 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -252.938934 -254.045013 1.000157 188 188 188 +v -253.535522 -253.535461 1.000157 188 188 188 +v -253.535522 -253.535461 -0.999842 188 188 188 +v -254.045105 -252.938873 -0.999843 188 188 188 +v -254.755310 -251.545013 -0.999844 188 188 188 +v -252.938934 254.044952 -1.000163 188 188 188 +v -254.455017 252.269806 -1.000162 188 188 188 +v -210.773331 -255.036865 -0.999841 188 188 188 +v -255.000000 -249.999939 -0.999845 188 188 188 +v -209.479294 -255.572876 1.000158 188 188 188 +v -209.121323 -255.878632 1.000158 188 188 188 +v -200.878677 -264.121246 1.000164 188 188 188 +v -198.757370 -264.999908 -0.999835 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 200.878662 -264.121246 -0.999836 188 188 188 +v 200.520691 -264.426910 1.000164 188 188 188 +v 200.520691 -264.426910 -0.999835 188 188 188 +v 200.119324 -264.672943 1.000164 188 188 188 +v 200.119324 -264.672943 -0.999835 188 188 188 +v 199.684418 -264.853058 1.000164 188 188 188 +v 199.684418 -264.853058 -0.999835 188 188 188 +v 199.226654 -264.962982 1.000164 188 188 188 +v 199.226654 -264.962982 -0.999835 188 188 188 +v 198.757355 -264.999908 1.000164 188 188 188 +v -198.757370 -264.999908 1.000164 188 188 188 +v 209.479279 -255.572876 1.000158 188 188 188 +v -200.119339 -264.672943 -0.999835 188 188 188 +v -200.520706 -264.426910 1.000164 188 188 188 +v -200.520706 -264.426910 -0.999835 188 188 188 +v -200.119339 -264.672943 1.000164 188 188 188 +v -199.684418 -264.853058 -0.999835 188 188 188 +v -199.226669 -264.962982 -0.999835 188 188 188 +v -199.684418 -264.853058 1.000164 188 188 188 +v -200.878677 -264.121246 -0.999836 188 188 188 +v -199.226669 -264.962982 1.000164 188 188 188 +v 198.757355 -264.999908 -0.999835 188 188 188 +v 200.878662 -264.121246 1.000164 188 188 188 +v 209.121307 -255.878632 1.000158 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 209.880646 -255.326935 1.000158 188 188 188 +v 209.479279 -255.572876 -0.999841 188 188 188 +v 209.880646 -255.326935 -0.999841 188 188 188 +v -209.479294 -255.572876 -0.999841 188 188 188 +v -209.880661 -255.326935 -0.999841 188 188 188 +v -209.880661 -255.326935 1.000158 188 188 188 +v -251.545074 254.755127 -1.000164 188 188 188 +v 210.315582 -255.146759 -0.999841 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 + +v 250.000000 254.999847 0.999835 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v -250.000000 254.999847 0.999835 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v -250.782166 254.938293 -1.000164 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v -209.880661 -255.326935 -0.999841 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v -209.479294 -255.572876 -0.999841 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v -209.121323 -255.878632 -0.999841 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v 209.479279 -255.572876 -0.999841 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v 209.880646 -255.326935 -0.999841 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v 209.880646 -255.326935 -0.999841 188 188 188 +v 210.315582 -255.146759 -0.999841 188 188 188 +v 210.315582 -255.146759 1.000158 188 188 188 +v 210.315582 -255.146759 -0.999841 188 188 188 +v 210.773315 -255.036865 1.000158 188 188 188 +v 210.315582 -255.146759 -0.999841 188 188 188 +v 210.773315 -255.036865 1.000158 188 188 188 +v 210.773315 -255.036865 -0.999841 188 188 188 +v 211.242645 -254.999939 1.000158 188 188 188 +v 210.773315 -255.036865 -0.999841 188 188 188 +v 211.242645 -254.999939 1.000158 188 188 188 +v 211.242645 -254.999939 -0.999841 188 188 188 +v 250.000000 -254.999939 -0.999841 188 188 188 +v 211.242645 -254.999939 -0.999841 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 +v 250.000000 -254.999939 -0.999841 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 +v 250.782166 254.938293 -1.000164 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 +v 250.782166 254.938293 0.999835 188 188 188 +v 250.782166 254.938293 -1.000164 188 188 188 +v 251.545074 254.755127 0.999835 188 188 188 +v 250.782166 254.938293 -1.000164 188 188 188 +v 251.545074 254.755127 0.999835 188 188 188 +v 251.545074 254.755127 -1.000164 188 188 188 +v 252.269958 254.454895 0.999836 188 188 188 +v 251.545074 254.755127 -1.000164 188 188 188 +v 252.269958 254.454895 -1.000164 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 251.545074 254.755127 -1.000164 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 252.269958 254.454895 -1.000164 188 188 188 +v 254.938446 250.782043 -1.000161 188 188 188 +v 252.269958 254.454895 -1.000164 188 188 188 +v 254.755280 251.544952 -1.000162 188 188 188 +v 252.269958 254.454895 -1.000164 188 188 188 +v 254.455017 252.269806 -1.000162 188 188 188 +v 252.269958 254.454895 -1.000164 188 188 188 +v 252.938934 254.044952 -1.000163 188 188 188 +v 252.269958 254.454895 -1.000164 188 188 188 +v 252.938934 254.044952 0.999836 188 188 188 +v 252.938934 254.044952 -1.000163 188 188 188 +v 253.535522 253.535400 0.999836 188 188 188 +v 252.938934 254.044952 -1.000163 188 188 188 +v 253.535522 253.535400 -1.000163 188 188 188 +v 252.938934 254.044952 -1.000163 188 188 188 +v 254.045105 252.938782 -1.000163 188 188 188 +v 253.535522 253.535400 -1.000163 188 188 188 +v 254.045105 252.938782 0.999836 188 188 188 +v 254.045105 252.938782 -1.000163 188 188 188 +v 254.455017 252.269806 0.999837 188 188 188 +v 254.455017 252.269806 -1.000162 188 188 188 +v 254.045105 252.938782 -1.000163 188 188 188 +v 254.455017 252.269806 0.999837 188 188 188 +v 254.455017 252.269806 -1.000162 188 188 188 +v 254.755280 251.544952 0.999837 188 188 188 +v 254.755280 251.544952 -1.000162 188 188 188 +v 254.938446 250.782043 0.999838 188 188 188 +v 254.938446 250.782043 -1.000161 188 188 188 +v 253.535522 253.535400 0.999836 188 188 188 +v 254.045105 252.938782 0.999836 188 188 188 +v 253.535522 253.535400 -1.000163 188 188 188 +v 254.045105 252.938782 -1.000163 188 188 188 +v 254.455017 252.269806 -1.000162 188 188 188 +v 252.938934 254.044952 -1.000163 188 188 188 +v 254.755280 251.544952 0.999837 188 188 188 +v 254.755280 251.544952 -1.000162 188 188 188 +v 254.455017 252.269806 -1.000162 188 188 188 +v 254.938446 250.782043 0.999838 188 188 188 +v 254.938446 250.782043 -1.000161 188 188 188 +v 254.755280 251.544952 -1.000162 188 188 188 +v 255.000000 249.999847 0.999838 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 254.938446 250.782043 -1.000161 188 188 188 +v 255.000000 249.999847 0.999838 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 255.000000 -249.999939 1.000155 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 255.000000 -249.999939 1.000155 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 254.938446 -250.782104 1.000155 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 254.938446 -250.782104 -0.999844 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 254.455017 -252.269897 -0.999843 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 254.045105 -252.938873 -0.999843 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 253.535522 -253.535461 -0.999842 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 252.938934 -254.045013 -0.999842 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 252.269958 -254.454956 -0.999842 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 251.545074 -254.755219 -0.999842 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 250.782166 -254.938385 -0.999841 188 188 188 +v 250.000000 -254.999939 -0.999841 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 250.000000 -254.999939 -0.999841 188 188 188 +v 250.782166 -254.938385 -0.999841 188 188 188 +v 250.000000 -254.999939 1.000158 188 188 188 +v 250.782166 -254.938385 -0.999841 188 188 188 +v 254.755280 -251.545013 1.000155 188 188 188 +v 254.755280 -251.545013 -0.999844 188 188 188 +v 254.938446 -250.782104 -0.999844 188 188 188 +v 254.455017 -252.269897 1.000156 188 188 188 +v 254.455017 -252.269897 -0.999843 188 188 188 +v 254.755280 -251.545013 -0.999844 188 188 188 +v 254.455017 -252.269897 1.000156 188 188 188 +v 254.455017 -252.269897 -0.999843 188 188 188 +v 254.045105 -252.938873 1.000156 188 188 188 +v 254.045105 -252.938873 -0.999843 188 188 188 +v 253.535522 -253.535461 1.000157 188 188 188 +v 253.535522 -253.535461 -0.999842 188 188 188 +v 252.938934 -254.045013 1.000157 188 188 188 +v 252.938934 -254.045013 -0.999842 188 188 188 +v 252.269958 -254.454956 1.000157 188 188 188 +v 252.269958 -254.454956 -0.999842 188 188 188 +v 251.545074 -254.755219 1.000158 188 188 188 +v 250.782166 -254.938385 1.000158 188 188 188 +v 251.545074 -254.755219 -0.999842 188 188 188 +v 250.782166 -254.938385 1.000158 188 188 188 +v 250.782166 -254.938385 -0.999841 188 188 188 +v 251.545074 -254.755219 -0.999842 188 188 188 +v 251.545074 -254.755219 1.000158 188 188 188 +v 251.545074 -254.755219 -0.999842 188 188 188 +v 252.269958 -254.454956 -0.999842 188 188 188 +v 252.269958 -254.454956 1.000157 188 188 188 +v 252.269958 -254.454956 -0.999842 188 188 188 +v 252.938934 -254.045013 -0.999842 188 188 188 +v 252.938934 -254.045013 1.000157 188 188 188 +v 252.938934 -254.045013 -0.999842 188 188 188 +v 253.535522 -253.535461 -0.999842 188 188 188 +v 253.535522 -253.535461 1.000157 188 188 188 +v 253.535522 -253.535461 -0.999842 188 188 188 +v 254.045105 -252.938873 -0.999843 188 188 188 +v 254.045105 -252.938873 1.000156 188 188 188 +v 254.045105 -252.938873 -0.999843 188 188 188 +v 254.455017 -252.269897 -0.999843 188 188 188 +v 254.755280 -251.545013 -0.999844 188 188 188 +v 254.455017 -252.269897 -0.999843 188 188 188 +v 254.938446 -250.782104 -0.999844 188 188 188 +v 254.938446 -250.782104 1.000155 188 188 188 +v 254.755280 -251.545013 1.000155 188 188 188 +v 254.938446 -250.782104 -0.999844 188 188 188 +v 252.269958 254.454895 0.999836 188 188 188 +v 252.938934 254.044952 0.999836 188 188 188 +v 252.269958 254.454895 -1.000164 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -210.315598 -255.146759 1.000158 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -210.773331 -255.036865 -0.999841 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -255.000000 249.999847 -1.000161 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -254.938477 250.782043 -1.000161 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -254.755310 251.544952 -1.000162 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -254.455017 252.269806 -1.000162 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -254.045105 252.938782 -1.000163 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -253.535522 253.535400 -1.000163 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -252.938934 254.044952 -1.000163 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -252.269958 254.454895 -1.000164 188 188 188 +v -252.269958 254.454895 -1.000164 188 188 188 +v -251.545074 254.755127 -1.000164 188 188 188 +v -251.545074 254.755127 0.999835 188 188 188 +v -251.545074 254.755127 -1.000164 188 188 188 +v -251.545074 254.755127 -1.000164 188 188 188 +v -250.782166 254.938293 0.999835 188 188 188 +v -250.782166 254.938293 -1.000164 188 188 188 +v -210.773331 -255.036865 -0.999841 188 188 188 +v -210.773331 -255.036865 1.000158 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -210.773331 -255.036865 -0.999841 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -210.773331 -255.036865 -0.999841 188 188 188 +v -254.938477 -250.782104 -0.999844 188 188 188 +v -254.938477 -250.782104 -0.999844 188 188 188 +v -255.000000 -249.999939 -0.999845 188 188 188 +v -255.000000 -249.999939 1.000155 188 188 188 +v -255.000000 -249.999939 -0.999845 188 188 188 +v -255.000000 -249.999939 -0.999845 188 188 188 +v -255.000000 249.999847 0.999838 188 188 188 +v -255.000000 249.999847 -1.000161 188 188 188 +v -255.000000 249.999847 0.999838 188 188 188 +v -255.000000 249.999847 -1.000161 188 188 188 +v -252.938934 254.044952 -1.000163 188 188 188 +v -252.938934 254.044952 0.999836 188 188 188 +v -253.535522 253.535400 -1.000163 188 188 188 +v -253.535522 253.535400 0.999836 188 188 188 +v -254.045105 252.938782 -1.000163 188 188 188 +v -254.045105 252.938782 0.999836 188 188 188 +v -254.455017 252.269806 -1.000162 188 188 188 +v -254.455017 252.269806 0.999837 188 188 188 +v -254.755310 251.544952 -1.000162 188 188 188 +v -254.938477 250.782043 0.999838 188 188 188 +v -254.755310 251.544952 0.999837 188 188 188 +v -254.938477 250.782043 -1.000161 188 188 188 +v -255.000000 -249.999939 1.000155 188 188 188 +v -254.938477 -250.782104 -0.999844 188 188 188 +v -254.938477 -250.782104 1.000155 188 188 188 +v -254.938477 -250.782104 -0.999844 188 188 188 +v -254.938477 -250.782104 1.000155 188 188 188 +v -254.755310 -251.545013 -0.999844 188 188 188 +v -254.755310 -251.545013 1.000155 188 188 188 +v -254.755310 -251.545013 -0.999844 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -254.455017 -252.269897 -0.999843 188 188 188 +v -254.755310 -251.545013 -0.999844 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -254.455017 -252.269897 -0.999843 188 188 188 +v -254.045105 -252.938873 -0.999843 188 188 188 +v -254.455017 -252.269897 -0.999843 188 188 188 +v -254.455017 -252.269897 1.000156 188 188 188 +v -254.045105 -252.938873 -0.999843 188 188 188 +v -254.045105 -252.938873 1.000156 188 188 188 +v -254.045105 -252.938873 -0.999843 188 188 188 +v -254.045105 -252.938873 1.000156 188 188 188 +v -253.535522 -253.535461 -0.999842 188 188 188 +v -253.535522 -253.535461 1.000157 188 188 188 +v -253.535522 -253.535461 -0.999842 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -252.938934 -254.045013 -0.999842 188 188 188 +v -253.535522 -253.535461 -0.999842 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -252.938934 -254.045013 -0.999842 188 188 188 +v -252.269958 -254.454956 -0.999842 188 188 188 +v -252.938934 -254.045013 -0.999842 188 188 188 +v -252.938934 -254.045013 1.000157 188 188 188 +v -252.269958 -254.454956 -0.999842 188 188 188 +v -252.269958 -254.454956 1.000157 188 188 188 +v -252.269958 -254.454956 -0.999842 188 188 188 +v -252.269958 -254.454956 1.000157 188 188 188 +v -251.545074 -254.755219 -0.999842 188 188 188 +v -251.545074 -254.755219 1.000158 188 188 188 +v -251.545074 -254.755219 -0.999842 188 188 188 +v -250.782166 -254.938385 -0.999841 188 188 188 +v -251.545074 -254.755219 -0.999842 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -250.000000 -254.999939 -0.999841 188 188 188 +v -251.545074 -254.755219 -0.999842 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -250.000000 -254.999939 -0.999841 188 188 188 +v -250.000000 -254.999939 1.000158 188 188 188 +v -250.000000 -254.999939 -0.999841 188 188 188 +v -250.000000 -254.999939 -0.999841 188 188 188 +v -250.782166 -254.938385 1.000158 188 188 188 +v -250.782166 -254.938385 -0.999841 188 188 188 +v -250.782166 -254.938385 1.000158 188 188 188 +v -251.545074 -254.755219 1.000158 188 188 188 +v -250.782166 -254.938385 -0.999841 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -251.545074 -254.755219 -0.999842 188 188 188 +v -252.269958 -254.454956 -0.999842 188 188 188 +v -252.938934 -254.045013 1.000157 188 188 188 +v -253.535522 -253.535461 1.000157 188 188 188 +v -252.938934 -254.045013 -0.999842 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -253.535522 -253.535461 -0.999842 188 188 188 +v -254.045105 -252.938873 -0.999843 188 188 188 +v -254.455017 -252.269897 1.000156 188 188 188 +v -254.755310 -251.545013 1.000155 188 188 188 +v -254.455017 -252.269897 -0.999843 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -254.755310 -251.545013 -0.999844 188 188 188 +v -254.938477 -250.782104 -0.999844 188 188 188 +v -211.242645 -254.999939 1.000158 188 188 188 +v -250.000000 -254.999939 1.000158 188 188 188 +v -211.242645 -254.999939 -0.999841 188 188 188 +v -252.269958 254.454895 0.999836 188 188 188 +v -251.545074 254.755127 0.999835 188 188 188 +v -252.269958 254.454895 -1.000164 188 188 188 +v -252.938934 254.044952 -1.000163 188 188 188 +v -252.269958 254.454895 0.999836 188 188 188 +v -252.269958 254.454895 -1.000164 188 188 188 +v -253.535522 253.535400 -1.000163 188 188 188 +v -252.938934 254.044952 0.999836 188 188 188 +v -252.938934 254.044952 -1.000163 188 188 188 +v -254.045105 252.938782 -1.000163 188 188 188 +v -253.535522 253.535400 0.999836 188 188 188 +v -253.535522 253.535400 -1.000163 188 188 188 +v -254.455017 252.269806 -1.000162 188 188 188 +v -254.045105 252.938782 0.999836 188 188 188 +v -254.045105 252.938782 -1.000163 188 188 188 +v -254.755310 251.544952 -1.000162 188 188 188 +v -254.455017 252.269806 0.999837 188 188 188 +v -254.455017 252.269806 -1.000162 188 188 188 +v -254.938477 250.782043 -1.000161 188 188 188 +v -254.755310 251.544952 0.999837 188 188 188 +v -254.755310 251.544952 -1.000162 188 188 188 +v -255.000000 249.999847 -1.000161 188 188 188 +v -254.938477 250.782043 0.999838 188 188 188 +v -254.938477 250.782043 -1.000161 188 188 188 +v -210.773331 -255.036865 -0.999841 188 188 188 +v -255.000000 -249.999939 -0.999845 188 188 188 +v -255.000000 249.999847 -1.000161 188 188 188 +v -210.315598 -255.146759 1.000158 188 188 188 +v -210.773331 -255.036865 1.000158 188 188 188 +v -210.773331 -255.036865 -0.999841 188 188 188 +v -209.880661 -255.326935 1.000158 188 188 188 +v -209.880661 -255.326935 -0.999841 188 188 188 +v -209.479294 -255.572876 1.000158 188 188 188 +v -209.479294 -255.572876 -0.999841 188 188 188 +v -209.121323 -255.878632 1.000158 188 188 188 +v -200.878677 -264.121246 1.000164 188 188 188 +v -200.878677 -264.121246 -0.999836 188 188 188 +v -200.520706 -264.426910 -0.999835 188 188 188 +v -200.878677 -264.121246 -0.999836 188 188 188 +v -199.226669 -264.962982 -0.999835 188 188 188 +v -200.878677 -264.121246 -0.999836 188 188 188 +v -198.757370 -264.999908 -0.999835 188 188 188 +v -200.878677 -264.121246 -0.999836 188 188 188 +v -198.757370 -264.999908 -0.999835 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 198.757355 -264.999908 -0.999835 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 199.226654 -264.962982 -0.999835 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 199.684418 -264.853058 -0.999835 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 200.119324 -264.672943 -0.999835 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 200.878662 -264.121246 -0.999836 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 200.878662 -264.121246 1.000164 188 188 188 +v 200.878662 -264.121246 -0.999836 188 188 188 +v 200.520691 -264.426910 1.000164 188 188 188 +v 200.878662 -264.121246 -0.999836 188 188 188 +v 200.520691 -264.426910 1.000164 188 188 188 +v 200.520691 -264.426910 -0.999835 188 188 188 +v 200.119324 -264.672943 1.000164 188 188 188 +v 200.119324 -264.672943 -0.999835 188 188 188 +v 200.520691 -264.426910 -0.999835 188 188 188 +v 200.119324 -264.672943 1.000164 188 188 188 +v 200.119324 -264.672943 -0.999835 188 188 188 +v 199.684418 -264.853058 1.000164 188 188 188 +v 199.684418 -264.853058 -0.999835 188 188 188 +v 200.520691 -264.426910 -0.999835 188 188 188 +v 200.119324 -264.672943 -0.999835 188 188 188 +v 200.878662 -264.121246 -0.999836 188 188 188 +v 199.684418 -264.853058 1.000164 188 188 188 +v 199.684418 -264.853058 -0.999835 188 188 188 +v 200.119324 -264.672943 -0.999835 188 188 188 +v 199.226654 -264.962982 1.000164 188 188 188 +v 199.226654 -264.962982 -0.999835 188 188 188 +v 199.684418 -264.853058 -0.999835 188 188 188 +v 199.226654 -264.962982 1.000164 188 188 188 +v 199.226654 -264.962982 -0.999835 188 188 188 +v 198.757355 -264.999908 1.000164 188 188 188 +v 198.757355 -264.999908 -0.999835 188 188 188 +v 199.226654 -264.962982 -0.999835 188 188 188 +v 198.757355 -264.999908 -0.999835 188 188 188 +v -198.757370 -264.999908 -0.999835 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v -200.878677 -264.121246 -0.999836 188 188 188 +v 209.479279 -255.572876 -0.999841 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 209.479279 -255.572876 -0.999841 188 188 188 +v -198.757370 -264.999908 -0.999835 188 188 188 +v -199.226669 -264.962982 -0.999835 188 188 188 +v -199.226669 -264.962982 -0.999835 188 188 188 +v -200.520706 -264.426910 -0.999835 188 188 188 +v -200.119339 -264.672943 -0.999835 188 188 188 +v -200.520706 -264.426910 -0.999835 188 188 188 +v -200.520706 -264.426910 1.000164 188 188 188 +v -200.119339 -264.672943 -0.999835 188 188 188 +v -200.119339 -264.672943 1.000164 188 188 188 +v -200.119339 -264.672943 -0.999835 188 188 188 +v -199.226669 -264.962982 -0.999835 188 188 188 +v -199.684418 -264.853058 -0.999835 188 188 188 +v -200.119339 -264.672943 -0.999835 188 188 188 +v -199.226669 -264.962982 -0.999835 188 188 188 +v -199.684418 -264.853058 -0.999835 188 188 188 +v -200.520706 -264.426910 1.000164 188 188 188 +v -200.878677 -264.121246 1.000164 188 188 188 +v -200.520706 -264.426910 -0.999835 188 188 188 +v -200.878677 -264.121246 -0.999836 188 188 188 +v -209.121323 -255.878632 1.000158 188 188 188 +v -209.121323 -255.878632 -0.999841 188 188 188 +v -199.684418 -264.853058 1.000164 188 188 188 +v -200.119339 -264.672943 1.000164 188 188 188 +v -199.684418 -264.853058 -0.999835 188 188 188 +v -199.226669 -264.962982 1.000164 188 188 188 +v -199.684418 -264.853058 1.000164 188 188 188 +v -199.226669 -264.962982 -0.999835 188 188 188 +v -198.757370 -264.999908 1.000164 188 188 188 +v -199.226669 -264.962982 1.000164 188 188 188 +v -198.757370 -264.999908 -0.999835 188 188 188 +v 198.757355 -264.999908 1.000164 188 188 188 +v -198.757370 -264.999908 1.000164 188 188 188 +v 198.757355 -264.999908 -0.999835 188 188 188 +v 200.878662 -264.121246 1.000164 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 209.479279 -255.572876 1.000158 188 188 188 +v 209.121307 -255.878632 1.000158 188 188 188 +v 209.121307 -255.878632 -0.999841 188 188 188 +v 209.479279 -255.572876 1.000158 188 188 188 +v 209.479279 -255.572876 -0.999841 188 188 188 +v 251.545074 254.755127 -1.000164 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 250.782166 254.938293 -1.000164 188 188 188 +v 255.000000 -249.999939 -0.999845 188 188 188 +v 250.000000 -254.999939 -0.999841 188 188 188 +v 255.000000 249.999847 -1.000161 188 188 188 +v 250.000000 -254.999939 1.000158 188 188 188 +v 211.242645 -254.999939 1.000158 188 188 188 +v 250.000000 -254.999939 -0.999841 188 188 188 +v 211.242645 -254.999939 -0.999841 188 188 188 +v 210.773315 -255.036865 -0.999841 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 +v 210.773315 -255.036865 -0.999841 188 188 188 +v 210.315582 -255.146759 -0.999841 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 +v 210.315582 -255.146759 1.000158 188 188 188 +v 209.880646 -255.326935 1.000158 188 188 188 +v 209.880646 -255.326935 -0.999841 188 188 188 +v 209.880646 -255.326935 1.000158 188 188 188 +v 209.479279 -255.572876 -0.999841 188 188 188 +v 209.880646 -255.326935 -0.999841 188 188 188 +v -200.878677 -264.121246 -0.999836 188 188 188 +v -209.121323 -255.878632 -0.999841 188 188 188 +v 209.479279 -255.572876 -0.999841 188 188 188 +v -209.121323 -255.878632 -0.999841 188 188 188 +v -209.121323 -255.878632 1.000158 188 188 188 +v -209.479294 -255.572876 -0.999841 188 188 188 +v -209.479294 -255.572876 -0.999841 188 188 188 +v -209.479294 -255.572876 1.000158 188 188 188 +v -209.880661 -255.326935 -0.999841 188 188 188 +v -209.880661 -255.326935 -0.999841 188 188 188 +v -209.880661 -255.326935 1.000158 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -210.315598 -255.146759 -0.999841 188 188 188 +v -251.545074 254.755127 -1.000164 188 188 188 +v -250.782166 254.938293 -1.000164 188 188 188 +v -250.782166 254.938293 0.999835 188 188 188 +v -250.000000 254.999847 0.999835 188 188 188 +v -250.782166 254.938293 -1.000164 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 +v 210.315582 -255.146759 -0.999841 188 188 188 +v -250.000000 254.999847 -1.000164 188 188 188 +v 250.000000 254.999847 0.999835 188 188 188 +v 250.782166 254.938293 0.999835 188 188 188 +v 250.000000 254.999847 -1.000164 188 188 188 + +f 1 136 3 +f 2 137 138 +f 60 139 140 +f 52 141 142 +f 132 143 144 +f 131 145 146 +f 4 147 148 +f 129 149 150 +f 130 151 152 +f 135 153 154 +f 5 155 156 +f 6 157 158 +f 159 160 8 +f 7 161 162 +f 163 164 9 +f 34 165 166 +f 167 168 169 +f 127 170 171 +f 11 172 173 +f 10 174 175 +f 176 12 177 +f 178 14 179 +f 180 13 181 +f 182 15 183 +f 184 185 186 +f 27 187 188 +f 16 189 190 +f 25 191 192 +f 18 193 194 +f 17 195 196 +f 197 19 198 +f 199 20 200 +f 201 23 202 +f 21 203 204 +f 205 22 206 +f 207 208 209 +f 210 24 211 +f 212 26 213 +f 214 28 215 +f 216 217 218 +f 219 220 221 +f 222 223 224 +f 225 226 227 +f 228 229 230 +f 231 29 232 +f 233 33 234 +f 235 30 236 +f 237 31 238 +f 239 32 240 +f 241 49 242 +f 243 48 244 +f 245 47 246 +f 247 43 248 +f 249 45 250 +f 251 46 252 +f 253 254 255 +f 35 256 257 +f 44 258 259 +f 37 36 50 +f 260 261 262 +f 263 264 265 +f 266 38 267 +f 268 39 269 +f 270 40 271 +f 272 41 273 +f 274 42 275 +f 276 277 278 +f 279 280 281 +f 282 283 284 +f 285 286 287 +f 288 289 290 +f 291 292 293 +f 294 295 296 +f 297 298 299 +f 300 301 302 +f 303 304 305 +f 133 51 306 +f 307 308 96 +f 309 310 67 +f 311 312 53 +f 313 314 54 +f 315 316 95 +f 317 318 55 +f 319 320 56 +f 321 322 94 +f 323 324 57 +f 325 326 134 +f 327 58 328 +f 329 59 330 +f 331 332 333 +f 61 62 88 +f 334 335 336 +f 337 338 63 +f 339 340 97 +f 341 64 342 +f 343 65 344 +f 345 346 347 +f 348 66 349 +f 68 69 350 +f 70 351 352 +f 71 353 354 +f 72 355 356 +f 73 357 358 +f 359 360 361 +f 74 362 363 +f 93 364 365 +f 75 366 367 +f 77 368 369 +f 370 371 372 +f 373 92 374 +f 375 76 376 +f 78 377 378 +f 91 379 380 +f 90 381 382 +f 79 383 384 +f 385 386 387 +f 388 80 389 +f 390 89 391 +f 82 392 393 +f 81 394 395 +f 87 396 397 +f 83 398 399 +f 84 400 401 +f 402 403 404 +f 405 85 406 +f 407 86 408 +f 409 410 411 +f 412 413 414 +f 415 416 417 +f 418 419 420 +f 421 422 423 +f 424 425 426 +f 427 428 429 +f 430 431 432 +f 433 434 435 +f 436 437 438 +f 439 440 441 +f 442 443 444 +f 445 446 447 +f 448 449 450 +f 451 452 453 +f 454 455 456 +f 457 458 459 +f 460 461 462 +f 98 463 464 +f 99 465 466 +f 100 467 122 +f 117 468 469 +f 120 470 471 +f 101 472 473 +f 474 475 102 +f 124 476 477 +f 111 478 479 +f 109 480 481 +f 107 482 483 +f 103 484 485 +f 125 486 487 +f 488 104 489 +f 490 105 491 +f 492 106 493 +f 494 495 496 +f 497 108 498 +f 499 110 500 +f 501 502 503 +f 504 505 506 +f 507 508 509 +f 510 112 511 +f 512 513 514 +f 515 113 516 +f 517 518 519 +f 114 520 521 +f 522 123 523 +f 524 115 525 +f 526 116 527 +f 118 528 529 +f 119 530 531 +f 532 533 534 +f 535 121 536 +f 537 538 539 +f 540 541 542 +f 543 544 545 +f 546 547 548 +f 549 550 551 +f 552 553 554 +f 126 555 556 +f 557 558 559 +f 128 560 561 +f 562 563 564 +f 565 566 567 +f 568 569 570 +f 571 572 573 +f 574 575 576 +f 577 578 579 +f 580 581 582 +f 583 584 585 +f 586 587 588 +f 589 590 591 +f 592 593 594 +f 595 596 597 +f 598 599 600 +f 601 602 603 +f 604 605 606 + +vt 0.088207 0.017916 +vt 0.901653 0.018726 +vt 0.987765 0.981673 +vt 0.987183 0.983051 +vt 0.988120 0.980224 +vt 0.988239 0.978737 +vt 0.986389 0.984322 +vt 0.985402 0.985456 +vt 0.984246 0.986425 +vt 0.982949 0.987204 +vt 0.978551 0.019005 +vt 0.980066 0.019122 +vt 0.981545 0.019470 +vt 0.903450 0.019005 +vt 0.982949 0.020040 +vt 0.984246 0.020819 +vt 0.985402 0.021788 +vt 0.986389 0.022922 +vt 0.987183 0.024193 +vt 0.987765 0.025571 +vt 0.988120 0.027020 +vt 0.902540 0.018934 +vt 0.988239 0.028507 +vt 0.981545 0.987774 +vt 0.980066 0.988122 +vt 0.978551 0.988239 +vt 0.900810 0.018383 +vt 0.900033 0.017916 +vt 0.899339 0.017335 +vt 0.087429 0.018383 +vt 0.086586 0.018726 +vt 0.006695 0.987774 +vt 0.000000 0.978737 +vt 0.008173 0.988122 +vt 0.009689 0.988239 +vt 0.084790 0.019005 +vt 0.085699 0.018934 +vt 0.000119 0.980224 +vt 0.005290 0.987204 +vt 0.000474 0.981673 +vt 0.001056 0.983051 +vt 0.003994 0.986425 +vt 0.001850 0.984322 +vt 0.002838 0.985456 +vt 0.008173 0.019122 +vt 0.009689 0.019005 +vt 0.000000 0.028507 +vt 0.006695 0.019470 +vt 0.005290 0.020040 +vt 0.003994 0.020819 +vt 0.002838 0.021788 +vt 0.001850 0.022922 +vt 0.001056 0.024193 +vt 0.000474 0.025571 +vt 0.000119 0.027020 +vt 0.883367 0.001670 +vt 0.088900 0.017335 +vt 0.879257 0.000000 +vt 0.108983 0.000000 +vt 0.108073 0.000070 +vt 0.107186 0.000279 +vt 0.106344 0.000621 +vt 0.104872 0.001670 +vt 0.880166 0.000070 +vt 0.881053 0.000279 +vt 0.881896 0.000621 +vt 0.882674 0.001089 +vt 0.105566 0.001089 + +usemtl Mat_0 +f 5/2 24/3 22/4 +f 5/2 26/5 24/3 +f 5/2 28/6 26/5 +f 5/2 22/4 21/7 +f 5/2 21/7 19/8 +f 5/2 19/8 17/9 +f 5/2 17/9 13/10 +f 35/11 44/12 42/13 +f 7/14 35/11 42/13 +f 7/14 42/13 41/15 +f 7/14 41/15 40/16 +f 7/14 40/16 39/17 +f 7/14 39/17 38/18 +f 7/14 38/18 36/19 +f 7/14 36/19 37/20 +f 7/14 37/20 30/21 +f 6/22 30/21 29/23 +f 6/22 29/23 28/6 +f 5/2 13/10 12/24 +f 5/2 12/24 10/25 +f 5/2 10/25 1/26 +f 128/27 5/2 1/26 +f 114/28 128/27 1/26 +f 126/29 114/28 1/26 +f 98/1 126/29 1/26 +f 133/30 98/1 1/26 +f 51/31 133/30 1/26 +f 58/32 65/33 59/34 +f 59/34 65/33 2/35 +f 65/33 62/36 2/35 +f 62/36 61/37 2/35 +f 61/37 51/31 2/35 +f 66/38 65/33 69/39 +f 73/40 66/38 69/39 +f 72/41 73/40 69/39 +f 68/42 72/41 69/39 +f 71/43 72/41 68/42 +f 70/44 71/43 68/42 +f 86/45 85/46 64/47 +f 87/48 86/45 64/47 +f 85/46 62/36 64/47 +f 82/49 87/48 64/47 +f 89/50 82/49 64/47 +f 90/51 89/50 64/47 +f 78/52 90/51 64/47 +f 76/53 78/52 64/47 +f 75/54 76/53 74/55 +f 74/55 76/53 64/47 +f 64/47 62/36 65/33 +f 69/39 65/33 58/32 +f 125/56 126/29 98/1 +f 99/57 125/56 98/1 +f 112/58 125/56 99/57 +f 113/59 112/58 99/57 +f 123/60 113/59 99/57 +f 121/61 123/60 99/57 +f 118/62 121/61 99/57 +f 100/63 118/62 99/57 +f 110/64 108/65 106/66 +f 110/64 106/66 104/67 +f 110/64 104/67 125/56 +f 116/68 118/62 100/63 +f 112/58 110/64 125/56 +f 6/22 7/14 30/21 +f 5/2 6/22 28/6 +f 51/31 1/26 2/35 + diff --git a/resources/meshes/SH65_platform.STL b/resources/meshes/SH65_platform.STL new file mode 100644 index 0000000000..5cddf2d187 Binary files /dev/null and b/resources/meshes/SH65_platform.STL differ diff --git a/resources/meshes/anycubic_vyper_platform.stl b/resources/meshes/anycubic_vyper_platform.stl new file mode 100644 index 0000000000..be8f586e42 Binary files /dev/null and b/resources/meshes/anycubic_vyper_platform.stl differ diff --git a/resources/meshes/arjunpro300_platform.STL b/resources/meshes/arjunpro300_platform.STL new file mode 100644 index 0000000000..47d7165fee Binary files /dev/null and b/resources/meshes/arjunpro300_platform.STL differ diff --git a/resources/meshes/creality_ender3max.stl b/resources/meshes/creality_ender3max.stl new file mode 100644 index 0000000000..a2eb11378e Binary files /dev/null and b/resources/meshes/creality_ender3max.stl differ diff --git a/resources/meshes/cremaker_platform_200.obj b/resources/meshes/cremaker_platform_200.obj new file mode 100644 index 0000000000..72dd507c04 --- /dev/null +++ b/resources/meshes/cremaker_platform_200.obj @@ -0,0 +1,1870 @@ +# Blender v2.83.4 OBJ File: '' +# www.blender.org +mtllib cremaker_platform_220.mtl +o Cremaker_Bed_For_Cura_200 +v -1.890215 15.706850 0.000001 +v 6.767278 20.737940 0.000001 +v -5.775456 19.937870 0.000001 +v -6.085020 19.717300 0.000001 +v -6.206591 19.597380 0.000001 +v -6.306021 19.472389 0.000001 +v -6.404158 19.299610 0.000001 +v -6.462938 19.122049 0.000001 +v -6.482364 18.942129 0.000001 +v -6.462439 18.762270 0.000001 +v -6.403163 18.584881 0.000001 +v -6.304539 18.412380 0.000001 +v -6.204750 18.287661 0.000001 +v -6.082830 18.168079 0.000001 +v -5.772599 17.948380 0.000001 +v -0.169347 23.195789 0.000001 +v 2.503686 23.199570 0.000001 +v 0.015533 23.290100 0.000001 +v 2.318549 23.293369 0.000001 +v 0.215548 23.368071 0.000001 +v 2.118320 23.370770 0.000001 +v 0.445728 23.434031 0.000001 +v 1.887968 23.436081 0.000001 +v 0.686610 23.480829 0.000001 +v 1.646967 23.482201 0.000001 +v 1.166741 23.516991 0.000001 +v 8.977601 -31.682760 -0.000001 +v 15.463810 -27.894529 -0.000001 +v 9.126501 -31.581169 -0.000001 +v 9.251994 -31.471161 -0.000001 +v 9.354342 -31.353979 -0.000001 +v 9.435792 -31.228849 -0.000001 +v 9.497616 -31.095310 -0.000001 +v 9.540466 -30.954081 -0.000001 +v -2.474875 -23.004829 -0.000001 +v -3.486624 -14.063000 -0.000001 +v -2.653391 -22.608061 -0.000001 +v -2.900688 -22.237030 -0.000001 +v -3.052730 -22.062059 -0.000001 +v -3.221965 -21.899099 -0.000001 +v -3.400519 -21.755520 -0.000001 +v 27.762609 18.434891 0.000001 +v 1.302336 3.393586 0.000000 +v 3.475899 -0.694668 -0.000000 +v 29.570330 14.423920 0.000001 +v 29.843470 14.553590 0.000001 +v 30.123699 14.616530 0.000001 +v 30.402599 14.617650 0.000001 +v 30.671749 14.561850 0.000001 +v 30.922720 14.454050 0.000001 +v 31.147100 14.299160 0.000001 +v -26.719641 17.714270 0.000001 +v -30.969570 14.542240 0.000001 +v -30.693640 14.614890 0.000001 +v -30.396780 14.615500 0.000001 +v -30.088209 14.539130 0.000001 +v -3.517677 -0.801377 -0.000000 +v -1.435565 3.392086 0.000000 +v 2.106637 -33.573120 -0.000001 +v 2.133908 -3.020771 -0.000000 +v -2.272171 -2.965736 -0.000000 +v -2.298659 -12.744290 -0.000001 +v -2.325924 -13.082530 -0.000001 +v -2.402435 -13.372600 -0.000001 +v -2.523336 -13.613500 -0.000001 +v -2.683776 -13.804260 -0.000001 +v -2.878902 -13.943900 -0.000001 +v -3.064503 -14.020530 -0.000001 +v -3.268013 -14.060420 -0.000001 +v -2.366918 -23.413799 -0.000001 +v -2.331298 -23.821421 -0.000001 +v -2.538111 -33.729561 -0.000001 +v 2.114818 -33.739540 -0.000001 +v -100.000000 100.000000 0.000004 +v -100.000000 -100.000000 -0.000004 +v -31.579510 13.941270 0.000001 +v -31.421730 14.200490 0.000001 +v -27.414490 20.492630 0.000001 +v -27.228689 20.743530 0.000001 +v -26.998230 20.967470 0.000001 +v -26.723070 21.158649 0.000001 +v -3.097852 34.888088 0.000002 +v -3.058702 34.910809 0.000002 +v -2.760384 35.064079 0.000002 +v -2.510572 35.174419 0.000002 +v -2.024714 35.353069 0.000002 +v -1.582107 35.478981 0.000002 +v -1.080716 35.581661 0.000002 +v -0.754755 35.626011 0.000002 +v -0.411912 35.653530 0.000002 +v 0.068701 35.658569 0.000002 +v 0.572670 35.620548 0.000002 +v 1.096192 35.531940 0.000002 +v 1.635463 35.385231 0.000002 +v 2.186679 35.172890 0.000002 +v 2.746035 34.887402 0.000002 +v 100.000000 -100.000000 -0.000004 +v 20.371010 -25.084841 -0.000001 +v 15.581860 -27.858259 -0.000001 +v 3.623141 -34.783489 -0.000002 +v 3.518881 -34.835880 -0.000002 +v 3.407471 -34.868351 -0.000002 +v 3.280597 -34.881981 -0.000002 +v -3.206139 -34.884621 -0.000002 +v -3.407758 -34.910000 -0.000002 +v -3.633279 -34.894100 -0.000002 +v -3.809279 -34.856091 -0.000002 +v -3.996799 -34.794971 -0.000002 +v -4.214165 -34.700981 -0.000002 +v -4.444436 -34.577541 -0.000002 +v -31.037670 -19.223930 -0.000001 +v -31.293150 -19.038361 -0.000001 +v -31.520281 -18.799589 -0.000001 +v -31.710920 -18.522110 -0.000001 +v -31.856939 -18.220461 -0.000001 +v -31.950171 -17.909149 -0.000001 +v -31.982500 -17.602690 -0.000001 +v -31.712339 13.270770 0.000001 +v -31.679449 13.629710 0.000001 +v 100.000000 100.000000 0.000004 +v 2.771456 34.872719 0.000002 +v 7.464162 32.163349 0.000001 +v 15.253320 27.666241 0.000001 +v 27.735189 20.459780 0.000001 +v 27.760611 20.445101 0.000001 +v 27.895399 20.354771 0.000001 +v 28.012421 20.250940 0.000001 +v 28.113310 20.133301 0.000001 +v 28.195770 20.005659 0.000001 +v -31.215340 14.402460 0.000001 +v -26.995159 17.904921 0.000001 +v -27.226070 18.128401 0.000001 +v -27.412350 18.378941 0.000001 +v -27.554010 18.650749 0.000001 +v -27.623430 18.840151 0.000001 +v -27.673161 19.034679 0.000001 +v -27.703360 19.234209 0.000001 +v -27.713560 19.435499 0.000001 +v -27.703770 19.636801 0.000001 +v -27.673969 19.836390 0.000001 +v -27.624630 20.031019 0.000001 +v -27.555599 20.220551 0.000001 +v 0.976425 3.232473 0.000000 +v 0.636600 3.117338 0.000000 +v 0.287486 3.048182 0.000000 +v -0.066293 3.025005 0.000000 +v -3.345686 -0.911826 -0.000000 +v 3.139616 -0.917790 -0.000000 +v -0.420113 3.047807 0.000000 +v -0.769347 3.116588 0.000000 +v -1.109373 3.231348 0.000000 +v -3.594514 -21.626280 -0.000001 +v -12.938980 -15.140140 -0.000001 +v -12.905790 -15.448240 -0.000001 +v -12.810930 -15.763330 -0.000001 +v -12.664030 -16.069201 -0.000001 +v -12.474700 -16.349609 -0.000001 +v -12.252560 -16.588350 -0.000001 +v -12.007230 -16.769199 -0.000001 +v -2.563875 -34.102112 -0.000001 +v -2.601945 -34.265640 -0.000001 +v 2.260306 -34.209869 -0.000001 +v 2.192190 -34.059601 -0.000001 +v 2.142445 -33.897968 -0.000001 +v -3.658804 -14.040120 -0.000001 +v -3.836713 -13.995700 -0.000001 +v -4.204983 -13.841300 -0.000001 +v -12.922880 -9.899136 -0.000000 +v -11.984960 -9.349529 -0.000000 +v -12.721910 -9.347394 -0.000000 +v -12.789020 -9.421888 -0.000000 +v -12.845920 -9.517392 -0.000000 +v -12.888060 -9.630308 -0.000000 +v 9.573477 -21.213511 -0.000001 +v 9.573477 -30.649120 -0.000001 +v 15.034420 -27.542681 -0.000001 +v 15.034420 -18.158489 -0.000001 +v 10.169160 -20.177891 -0.000001 +v 9.977448 -20.309700 -0.000001 +v 9.825815 -20.460020 -0.000001 +v 9.711927 -20.627211 -0.000001 +v 9.649883 -20.762680 -0.000001 +v 9.606781 -20.906019 -0.000001 +v 15.003990 -18.001150 -0.000001 +v 14.921680 -17.866699 -0.000001 +v 14.800500 -17.765039 -0.000001 +v 14.333690 -17.755440 -0.000001 +v 15.340730 -27.890249 -0.000001 +v 15.224440 -27.849171 -0.000001 +v 15.126750 -27.775049 -0.000001 +v 15.059470 -27.671631 -0.000001 +v 28.304729 19.730980 0.000001 +v 28.341249 19.440559 0.000001 +v 31.482401 13.867730 0.000001 +v 31.576481 13.601010 0.000001 +v 31.610291 13.306840 0.000001 +v 31.698460 -17.754620 -0.000001 +v 31.678040 -18.025631 -0.000001 +v 31.618450 -18.258989 -0.000001 +v 31.522221 -18.459169 -0.000001 +v 31.427509 -18.590231 -0.000001 +v 31.314671 -18.707041 -0.000001 +v 31.184740 -18.811489 -0.000001 +v 31.038811 -18.905470 -0.000001 +v 26.822330 -21.359131 -0.000001 +v 26.698940 -21.396070 -0.000001 +v 20.966869 -24.051201 -0.000001 +v 20.956520 -24.269871 -0.000001 +v 20.904810 -24.472601 -0.000001 +v 20.816071 -24.657419 -0.000001 +v 20.727819 -24.783110 -0.000001 +v 20.623011 -24.896790 -0.000001 +v 31.336460 14.102080 0.000001 +v 28.305321 19.150070 0.000001 +v 28.196911 18.875179 0.000001 +v 28.114700 18.747379 0.000001 +v 28.014050 18.629551 0.000001 +v 27.897230 18.525490 0.000001 +v 20.966869 -14.603510 -0.000001 +v 26.274229 -21.043930 -0.000001 +v 26.274229 -11.652350 -0.000001 +v 21.562111 -13.571100 -0.000001 +v 21.370380 -13.705390 -0.000001 +v 21.218809 -13.856010 -0.000001 +v 21.105040 -14.022040 -0.000001 +v 21.043091 -14.156130 -0.000001 +v 21.000080 -14.298000 -0.000001 +v 26.574249 -21.392080 -0.000001 +v 26.458860 -21.351021 -0.000001 +v 26.363340 -21.276751 -0.000001 +v 26.298269 -21.173100 -0.000001 +v 2.856881 -1.162039 -0.000000 +v -3.183302 -1.040252 -0.000000 +v -3.017757 -1.198799 -0.000000 +v 2.624997 -1.426512 -0.000000 +v -2.865824 -1.373666 -0.000000 +v 2.441266 -1.710312 -0.000000 +v -2.616956 -1.744172 -0.000000 +v 2.344197 -1.909804 -0.000000 +v -2.429858 -2.145653 -0.000000 +v 2.266531 -2.117218 -0.000000 +v 2.207469 -2.332289 -0.000000 +v -2.312331 -2.559157 -0.000000 +v 2.166210 -2.554749 -0.000000 +v -2.282093 -2.764497 -0.000000 +v 2.434501 -34.463181 -0.000002 +v -2.656312 -34.412819 -0.000002 +v 2.651738 -34.663250 -0.000002 +v -2.753508 -34.582069 -0.000002 +v -2.878132 -34.718540 -0.000002 +v 2.895620 -34.802711 -0.000002 +v -3.029303 -34.820099 -0.000002 +v 3.149746 -34.874161 -0.000002 +v -12.348020 -9.227452 -0.000000 +v -12.458250 -9.229397 -0.000000 +v -12.230520 -9.246961 -0.000000 +v -12.555370 -9.250595 -0.000000 +v -12.643580 -9.290076 -0.000000 +v 14.493510 -17.699530 -0.000001 +v 14.653450 -17.706020 -0.000001 +v 25.891661 -11.178740 -0.000000 +v 25.733061 -11.186380 -0.000000 +v 26.037319 -11.223560 -0.000000 +v 25.573780 -11.248510 -0.000000 +v 26.157789 -11.318790 -0.000000 +v 26.240850 -11.462400 -0.000001 +v -30.088209 14.539130 -0.999999 +v -3.517677 -0.801377 -1.000000 +v -2.429858 -2.145653 -1.000000 +v -2.312331 -2.559157 -1.000000 +v -2.282093 -2.764497 -1.000000 +v -2.272171 -2.965736 -1.000000 +v -2.616956 -1.744172 -1.000000 +v -2.865824 -1.373666 -1.000000 +v -3.017757 -1.198799 -1.000000 +v -3.183302 -1.040252 -1.000000 +v -3.345686 -0.911826 -1.000000 +v -2.298659 -12.744290 -1.000001 +v -3.268013 -14.060420 -1.000001 +v -3.486624 -14.063000 -1.000001 +v -3.658804 -14.040120 -1.000001 +v -3.836713 -13.995700 -1.000001 +v -4.204983 -13.841300 -1.000001 +v -3.064503 -14.020530 -1.000001 +v -2.878902 -13.943900 -1.000001 +v -2.683776 -13.804260 -1.000001 +v -2.523336 -13.613500 -1.000001 +v -2.402435 -13.372600 -1.000001 +v -2.325924 -13.082530 -1.000001 +v -11.984960 -9.349529 -1.000000 +v -12.721910 -9.347394 -1.000000 +v -12.789020 -9.421888 -1.000000 +v -12.845920 -9.517392 -1.000000 +v -12.888060 -9.630308 -1.000000 +v -12.922880 -9.899136 -1.000000 +v -12.643580 -9.290076 -1.000000 +v -12.555370 -9.250595 -1.000000 +v -12.458250 -9.229397 -1.000000 +v -12.348020 -9.227452 -1.000000 +v -12.230520 -9.246961 -1.000000 +v -12.938980 -15.140140 -1.000001 +v -12.474700 -16.349609 -1.000001 +v -12.252560 -16.588350 -1.000001 +v -12.007230 -16.769199 -1.000001 +v -12.664030 -16.069201 -1.000001 +v -12.810930 -15.763330 -1.000001 +v -12.905790 -15.448240 -1.000001 +v -3.594514 -21.626280 -1.000001 +v -2.653391 -22.608061 -1.000001 +v -2.474875 -23.004829 -1.000001 +v -2.366918 -23.413799 -1.000001 +v -2.331298 -23.821421 -1.000001 +v -2.900688 -22.237030 -1.000001 +v -3.052730 -22.062059 -1.000001 +v -3.221965 -21.899099 -1.000001 +v -3.400519 -21.755520 -1.000001 +v -2.538111 -33.729561 -1.000001 +v -3.407758 -34.910000 -1.000002 +v -3.633279 -34.894100 -1.000002 +v -3.809279 -34.856091 -1.000002 +v -3.996799 -34.794971 -1.000002 +v -4.214165 -34.700981 -1.000002 +v -4.444436 -34.577541 -1.000002 +v -3.206139 -34.884621 -1.000002 +v -3.029303 -34.820099 -1.000002 +v -2.878132 -34.718540 -1.000002 +v -2.753508 -34.582069 -1.000002 +v -2.656312 -34.412819 -1.000002 +v -2.601945 -34.265640 -1.000002 +v -2.563875 -34.102112 -1.000002 +v -31.037670 -19.223930 -1.000001 +v -31.856939 -18.220461 -1.000001 +v -31.950171 -17.909149 -1.000001 +v -31.982500 -17.602690 -1.000001 +v -31.710920 -18.522110 -1.000001 +v -31.520281 -18.799589 -1.000001 +v -31.293150 -19.038361 -1.000001 +v -31.712339 13.270770 -0.999999 +v -30.969570 14.542240 -0.999999 +v -30.693640 14.614890 -0.999999 +v -30.396780 14.615500 -0.999999 +v -31.215340 14.402460 -0.999999 +v -31.421730 14.200490 -0.999999 +v -31.579510 13.941270 -0.999999 +v -31.679449 13.629710 -0.999999 +v 2.503686 23.199570 -0.999999 +v 6.767278 20.737940 -0.999999 +v 2.318549 23.293369 -0.999999 +v 2.118320 23.370770 -0.999999 +v 1.887968 23.436081 -0.999999 +v 1.646967 23.482201 -0.999999 +v 1.166741 23.516991 -0.999999 +v 0.686610 23.480829 -0.999999 +v 0.445728 23.434031 -0.999999 +v 0.215548 23.368071 -0.999999 +v 0.015533 23.290100 -0.999999 +v -0.169347 23.195789 -0.999999 +v -5.775456 19.937870 -0.999999 +v -6.085020 19.717300 -0.999999 +v -6.206591 19.597380 -0.999999 +v -6.306021 19.472389 -0.999999 +v -6.404158 19.299610 -0.999999 +v -6.462938 19.122049 -0.999999 +v -6.482364 18.942129 -0.999999 +v -6.462439 18.762270 -0.999999 +v -6.403163 18.584881 -0.999999 +v -6.304539 18.412380 -0.999999 +v -6.204750 18.287661 -0.999999 +v -6.082830 18.168079 -0.999999 +v -5.772599 17.948380 -0.999999 +v -1.890215 15.706850 -0.999999 +v 1.302336 3.393586 -1.000000 +v 27.762609 18.434891 -0.999999 +v 0.976425 3.232473 -1.000000 +v 0.636600 3.117338 -1.000000 +v 0.287486 3.048182 -1.000000 +v -0.066293 3.025005 -1.000000 +v -0.420113 3.047807 -1.000000 +v -0.769347 3.116588 -1.000000 +v -1.109373 3.231348 -1.000000 +v -1.435565 3.392086 -1.000000 +v -26.719641 17.714270 -0.999999 +v -26.995159 17.904921 -0.999999 +v -27.226070 18.128401 -0.999999 +v -27.412350 18.378941 -0.999999 +v -27.554010 18.650749 -0.999999 +v -27.623430 18.840151 -0.999999 +v -27.673161 19.034679 -0.999999 +v -27.703360 19.234209 -0.999999 +v -27.713560 19.435499 -0.999999 +v -27.703770 19.636801 -0.999999 +v -27.673969 19.836390 -0.999999 +v -27.624630 20.031019 -0.999999 +v -27.555599 20.220551 -0.999999 +v -27.414490 20.492630 -0.999999 +v -27.228689 20.743530 -0.999999 +v -26.998230 20.967470 -0.999999 +v -26.723070 21.158649 -0.999999 +v -3.097852 34.888088 -0.999998 +v -3.058702 34.910809 -0.999998 +v -2.760384 35.064079 -0.999998 +v -2.510572 35.174419 -0.999998 +v -2.024714 35.353069 -0.999998 +v -1.582107 35.478981 -0.999998 +v -1.080716 35.581661 -0.999998 +v -0.754755 35.626011 -0.999998 +v -0.411912 35.653530 -0.999998 +v 0.068701 35.658569 -0.999998 +v 0.572670 35.620548 -0.999998 +v 1.096192 35.531940 -0.999998 +v 1.635463 35.385231 -0.999998 +v 2.186679 35.172890 -0.999998 +v 2.746035 34.887402 -0.999998 +v 2.771456 34.872719 -0.999998 +v 7.464162 32.163349 -0.999999 +v 15.253320 27.666241 -0.999999 +v 27.735189 20.459780 -0.999999 +v 27.760611 20.445101 -0.999999 +v 27.895399 20.354771 -0.999999 +v 28.012421 20.250940 -0.999999 +v 28.113310 20.133301 -0.999999 +v 28.195770 20.005659 -0.999999 +v 28.304729 19.730980 -0.999999 +v 28.341249 19.440559 -0.999999 +v 28.305321 19.150070 -0.999999 +v 28.196911 18.875179 -0.999999 +v 28.114700 18.747379 -0.999999 +v 28.014050 18.629551 -0.999999 +v 27.897230 18.525490 -0.999999 +v 31.698460 -17.754620 -1.000001 +v 31.678040 -18.025631 -1.000001 +v 31.618450 -18.258989 -1.000001 +v 31.522221 -18.459169 -1.000001 +v 31.427509 -18.590231 -1.000001 +v 31.314671 -18.707041 -1.000001 +v 31.184740 -18.811489 -1.000001 +v 31.038811 -18.905470 -1.000001 +v 26.822330 -21.359131 -1.000001 +v 26.698940 -21.396070 -1.000001 +v 26.574249 -21.392080 -1.000001 +v 26.458860 -21.351021 -1.000001 +v 26.363340 -21.276751 -1.000001 +v 26.298269 -21.173100 -1.000001 +v 26.274229 -21.043930 -1.000001 +v 26.274229 -11.652350 -1.000000 +v 26.240850 -11.462400 -1.000000 +v 26.157789 -11.318790 -1.000000 +v 26.037319 -11.223560 -1.000000 +v 25.891661 -11.178740 -1.000000 +v 25.733061 -11.186380 -1.000000 +v 25.573780 -11.248510 -1.000000 +v 21.562111 -13.571100 -1.000001 +v 21.370380 -13.705390 -1.000001 +v 21.218809 -13.856010 -1.000001 +v 21.105040 -14.022040 -1.000001 +v 21.043091 -14.156130 -1.000001 +v 21.000080 -14.298000 -1.000001 +v 20.966869 -14.603510 -1.000001 +v 20.966869 -24.051201 -1.000001 +v 20.956520 -24.269871 -1.000001 +v 20.904810 -24.472601 -1.000001 +v 20.816071 -24.657419 -1.000001 +v 20.727819 -24.783110 -1.000001 +v 20.623011 -24.896790 -1.000001 +v 20.371010 -25.084841 -1.000001 +v 15.581860 -27.858259 -1.000001 +v 15.463810 -27.894529 -1.000001 +v 15.340730 -27.890249 -1.000001 +v 15.224440 -27.849171 -1.000001 +v 15.126750 -27.775049 -1.000001 +v 15.059470 -27.671631 -1.000001 +v 15.034420 -27.542681 -1.000001 +v 15.034420 -18.158489 -1.000001 +v 15.003990 -18.001150 -1.000001 +v 14.921680 -17.866699 -1.000001 +v 14.800500 -17.765039 -1.000001 +v 14.653450 -17.706020 -1.000001 +v 14.493510 -17.699530 -1.000001 +v 14.333690 -17.755440 -1.000001 +v 10.169160 -20.177891 -1.000001 +v 9.977448 -20.309700 -1.000001 +v 9.825815 -20.460020 -1.000001 +v 9.711927 -20.627211 -1.000001 +v 9.649883 -20.762680 -1.000001 +v 9.606781 -20.906019 -1.000001 +v 9.573477 -21.213511 -1.000001 +v 9.573477 -30.649120 -1.000001 +v 9.540466 -30.954081 -1.000001 +v 9.497616 -31.095310 -1.000001 +v 9.435792 -31.228849 -1.000001 +v 9.354342 -31.353979 -1.000001 +v 9.251994 -31.471161 -1.000001 +v 9.126501 -31.581169 -1.000001 +v 8.977601 -31.682760 -1.000001 +v 3.623141 -34.783489 -1.000002 +v 3.518881 -34.835880 -1.000002 +v 3.407471 -34.868351 -1.000002 +v 3.280597 -34.881981 -1.000002 +v 3.149746 -34.874161 -1.000002 +v 2.895620 -34.802711 -1.000002 +v 2.651738 -34.663250 -1.000002 +v 2.434501 -34.463181 -1.000002 +v 2.260306 -34.209869 -1.000002 +v 2.192190 -34.059601 -1.000001 +v 2.142445 -33.897968 -1.000001 +v 2.114818 -33.739540 -1.000001 +v 2.106637 -33.573120 -1.000001 +v 2.133908 -3.020771 -1.000000 +v 2.166210 -2.554749 -1.000000 +v 2.207469 -2.332289 -1.000000 +v 2.266531 -2.117218 -1.000000 +v 2.344197 -1.909804 -1.000000 +v 2.441266 -1.710312 -1.000000 +v 2.624997 -1.426512 -1.000000 +v 2.856881 -1.162039 -1.000000 +v 3.139616 -0.917790 -1.000000 +v 3.475899 -0.694668 -1.000000 +v 29.570330 14.423920 -0.999999 +v 29.843470 14.553590 -0.999999 +v 30.123699 14.616530 -0.999999 +v 30.402599 14.617650 -0.999999 +v 30.671749 14.561850 -0.999999 +v 30.922720 14.454050 -0.999999 +v 31.147100 14.299160 -0.999999 +v 31.336460 14.102080 -0.999999 +v 31.482401 13.867730 -0.999999 +v 31.576481 13.601010 -0.999999 +v 31.610291 13.306840 -0.999999 +v -100.000000 -100.000000 -3.000004 +v -100.000000 100.000000 -2.999996 +v 100.000000 -100.000000 -3.000004 +v 100.000000 100.000000 -2.999996 +vn 0.0000 -0.0000 1.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.9064 -0.4224 0.0000 +vn -0.9619 -0.2734 0.0000 +vn -0.9893 -0.1457 0.0000 +vn -0.9988 -0.0492 0.0000 +vn -0.8301 -0.5576 0.0000 +vn -0.7549 -0.6559 0.0000 +vn -0.6917 -0.7222 0.0000 +vn -0.6203 -0.7843 0.0000 +vn -0.5404 -0.8414 0.0000 +vn -1.0000 0.0027 0.0000 +vn -0.1924 0.9813 0.0000 +vn -0.0118 0.9999 0.0000 +vn 0.1317 0.9913 0.0000 +vn 0.2422 0.9702 0.0000 +vn 0.3866 0.9222 0.0000 +vn 0.3867 0.9222 0.0000 +vn -0.3816 0.9243 0.0000 +vn -0.5820 0.8132 0.0000 +vn -0.7653 0.6437 0.0000 +vn -0.8938 0.4486 0.0000 +vn -0.9669 0.2550 0.0000 +vn -0.9968 0.0803 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5905 0.8070 0.0000 +vn -0.7430 0.6693 0.0000 +vn -0.8591 0.5118 0.0000 +vn -0.9369 0.3497 0.0000 +vn -0.9369 0.3496 0.0000 +vn -0.9917 0.1285 0.0000 +vn -0.4085 0.9127 0.0000 +vn -0.2132 0.9770 0.0000 +vn -0.0176 0.9998 0.0000 +vn 0.1638 0.9865 0.0000 +vn 0.3854 0.9227 0.0000 +vn -1.0000 0.0031 0.0000 +vn -0.8288 -0.5596 0.0000 +vn -0.7321 -0.6812 0.0000 +vn -0.5934 -0.8049 0.0000 +vn -0.9014 -0.4329 0.0000 +vn -0.9575 -0.2883 0.0000 +vn -0.9942 -0.1071 0.0000 +vn -0.8321 -0.5546 0.0000 +vn -0.9119 -0.4103 0.0000 +vn -0.9669 -0.2552 0.0000 +vn -0.9962 -0.0871 0.0000 +vn -0.7548 -0.6559 0.0000 +vn -0.6936 -0.7203 0.0000 +vn -0.6267 -0.7793 0.0000 +vn -0.5544 -0.8322 0.0000 +vn -0.9998 0.0209 0.0000 +vn -0.1249 0.9922 0.0000 +vn 0.0703 0.9975 0.0000 +vn 0.2111 0.9775 0.0000 +vn 0.3099 0.9508 0.0000 +vn 0.3969 0.9179 0.0000 +vn 0.4725 0.8814 0.0000 +vn -0.3428 0.9394 0.0000 +vn -0.5577 0.8301 0.0000 +vn -0.7384 0.6743 0.0000 +vn -0.8672 0.4980 0.0000 +vn -0.9380 0.3465 0.0000 +vn -0.9740 0.2267 0.0000 +vn -0.9976 0.0690 0.0000 +vn 0.9001 0.4357 0.0000 +vn 0.9580 0.2869 0.0000 +vn 0.9945 0.1049 0.0000 +vn 0.8242 0.5663 0.0000 +vn 0.7245 0.6892 0.0000 +vn 0.5877 0.8091 0.0000 +vn 1.0000 -0.0088 0.0000 +vn 0.4944 -0.8692 0.0000 +vn 0.2546 -0.9670 0.0000 +vn 0.0021 -1.0000 0.0000 +vn -0.2402 -0.9707 0.0000 +vn 0.6994 -0.7147 0.0000 +vn 0.8542 -0.5199 0.0000 +vn 0.9522 -0.3054 0.0000 +vn 0.9958 -0.0913 0.0000 +vn 0.9958 -0.0912 0.0000 +vn 0.4520 0.8920 0.0000 +vn 0.3606 0.9327 0.0000 +vn 0.2728 0.9621 0.0000 +vn 0.1880 0.9822 0.0000 +vn 0.0723 0.9974 0.0000 +vn -0.0751 0.9972 0.0000 +vn -0.1907 0.9816 0.0000 +vn -0.2755 0.9613 0.0000 +vn -0.3632 0.9317 0.0000 +vn -0.4544 0.8908 0.0000 +vn -0.5025 0.8646 0.0000 +vn -0.5803 0.8144 0.0000 +vn -0.7023 0.7119 0.0000 +vn -0.7826 0.6225 0.0000 +vn -0.8695 0.4939 0.0000 +vn -0.9493 0.3143 0.0000 +vn -0.9942 0.1073 0.0000 +vn -0.9939 -0.1101 0.0000 +vn -0.9484 -0.3169 0.0000 +vn -0.8681 -0.4963 0.0000 +vn -0.7808 -0.6248 0.0000 +vn -0.7808 -0.6247 0.0000 +vn -0.7002 -0.7139 0.0000 +vn -0.5779 -0.8161 0.0000 +vn 0.5024 -0.8646 0.0000 +vn -0.4942 0.8694 0.0000 +vn -0.4432 0.8964 0.0000 +vn -0.3209 0.9471 0.0000 +vn -0.1943 0.9809 0.0000 +vn -0.0654 0.9979 0.0000 +vn 0.0643 0.9979 0.0000 +vn 0.1932 0.9812 0.0000 +vn 0.3198 0.9475 0.0000 +vn 0.4420 0.8970 0.0000 +vn 0.4929 0.8701 0.0000 +vn 0.5690 0.8223 0.0000 +vn 0.6954 0.7186 0.0000 +vn 0.8025 0.5967 0.0000 +vn 0.8868 0.4622 0.0000 +vn 0.9389 0.3441 0.0000 +vn 0.9688 0.2477 0.0000 +vn 0.9887 0.1496 0.0000 +vn 0.9887 0.1497 0.0000 +vn 0.9987 0.0506 0.0000 +vn 0.9988 -0.0486 0.0000 +vn 0.9890 -0.1477 0.0000 +vn 0.9693 -0.2457 0.0000 +vn 0.9396 -0.3422 0.0000 +vn 0.8877 -0.4604 0.0000 +vn 0.8036 -0.5951 0.0000 +vn 0.6969 -0.7172 0.0000 +vn 0.5706 -0.8212 0.0000 +vn 0.5025 -0.8646 0.0000 +vn 0.5019 -0.8649 0.0000 +vn 0.4570 -0.8895 0.0000 +vn 0.4040 -0.9147 0.0000 +vn 0.3451 -0.9386 0.0000 +vn 0.2736 -0.9618 0.0000 +vn 0.2006 -0.9797 0.0000 +vn 0.1348 -0.9909 0.0000 +vn 0.0800 -0.9968 0.0000 +vn 0.0105 -0.9999 0.0000 +vn -0.0752 -0.9972 0.0000 +vn -0.1669 -0.9860 0.0000 +vn -0.2625 -0.9649 0.0000 +vn -0.3595 -0.9332 0.0000 +vn -0.4546 -0.8907 0.0000 +vn -0.5001 -0.8659 0.0000 +vn -0.5002 -0.8659 0.0000 +vn -0.5001 -0.8660 0.0000 +vn -0.5567 -0.8307 0.0000 +vn -0.6637 -0.7480 0.0000 +vn -0.7591 -0.6510 0.0000 +vn -0.8400 -0.5427 0.0000 +vn -0.8400 -0.5426 0.0000 +vn -0.9295 -0.3687 0.0000 +vn -0.9922 -0.1248 0.0000 +vn -0.9924 0.1228 0.0000 +vn -0.9924 0.1227 0.0000 +vn -0.9303 0.3669 0.0000 +vn -0.8410 0.5410 0.0000 +vn -0.7604 0.6495 0.0000 +vn -0.6651 0.7467 0.0000 +vn -0.6652 0.7467 0.0000 +vn -0.5583 0.8296 0.0000 +vn -0.9972 0.0751 0.0000 +vn -0.9689 0.2474 0.0000 +vn -0.9013 0.4333 0.0000 +vn -0.8105 0.5857 0.0000 +vn -0.7192 0.6948 0.0000 +vn -0.6265 0.7794 0.0000 +vn -0.5414 0.8407 0.0000 +vn -0.5415 0.8407 0.0000 +vn -0.5030 0.8643 0.0000 +vn -0.2868 0.9580 0.0000 +vn 0.0320 0.9995 0.0000 +vn 0.3352 0.9421 0.0000 +vn 0.6138 0.7894 0.0000 +vn 0.8469 0.5317 0.0000 +vn 0.9831 0.1830 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.9849 0.1731 0.0000 +vn 0.8656 0.5007 0.0000 +vn 0.6201 0.7845 0.0000 +vn 0.2941 0.9558 0.0000 +vn -0.0481 0.9988 0.0000 +vn -0.3634 0.9316 0.0000 +vn -0.5010 0.8654 0.0000 +vn -0.5737 0.8191 0.0000 +vn -0.7049 0.7093 0.0000 +vn -0.8249 0.5653 0.0000 +vn -0.9078 0.4194 0.0000 +vn -0.9570 0.2901 0.0000 +vn -0.9941 0.1081 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.9989 0.0473 0.0000 +vn -0.9690 0.2472 0.0000 +vn -0.9690 0.2471 0.0000 +vn -0.9015 0.4328 0.0000 +vn -0.8184 0.5746 0.0000 +vn -0.7352 0.6778 0.0000 +vn -0.5981 0.8014 0.0000 +vn -0.5011 0.8654 0.0000 +vn -0.2937 0.9559 0.0000 +vn 0.0348 0.9994 0.0000 +vn 0.3331 0.9429 0.0000 +vn 0.6044 0.7966 0.0000 +vn 0.6045 0.7966 0.0000 +vn 0.8382 0.5453 0.0000 +vn 0.9817 0.1907 0.0000 +vn 0.9816 0.1907 0.0000 +vn 0.9818 0.1899 0.0000 +vn 0.8529 0.5221 0.0000 +vn 0.6427 0.7661 0.0000 +vn 0.3725 0.9280 0.0000 +vn 0.0405 0.9992 0.0000 +vn -0.3302 0.9439 0.0000 +vn -0.5028 0.8644 0.0000 +vn -0.5666 0.8240 0.0000 +vn -0.7040 0.7102 0.0000 +vn -0.8265 0.5630 0.0000 +vn -0.9092 0.4164 0.0000 +vn -0.9576 0.2880 0.0000 +vn -0.9942 0.1077 0.0000 +vn -0.9942 0.1076 0.0000 +vn -0.9569 0.2903 0.0000 +vn -0.9075 0.4201 0.0000 +vn -0.8381 0.5455 0.0000 +vn -0.7532 0.6578 0.0000 +vn -0.6592 0.7520 0.0000 +vn -0.5636 0.8260 0.0000 +vn -0.5636 0.8261 0.0000 +vn -0.4490 0.8935 0.0000 +vn -0.2798 0.9601 0.0000 +vn -0.1068 0.9943 0.0000 +vn 0.0597 0.9982 0.0000 +vn 0.2707 0.9627 0.0000 +vn 0.4964 0.8681 0.0000 +vn 0.6774 0.7356 0.0000 +vn 0.8240 0.5666 0.0000 +vn 0.9108 0.4129 0.0000 +vn 0.9558 0.2942 0.0000 +vn 0.9558 0.2941 0.0000 +vn 0.9851 0.1718 0.0000 +vn 0.9988 0.0491 0.0000 +vn 1.0000 -0.0009 0.0000 +vn 0.9976 -0.0691 0.0000 +vn 0.9832 -0.1824 0.0000 +vn 0.9643 -0.2648 0.0000 +vn 0.9365 -0.3507 0.0000 +vn 0.8992 -0.4375 0.0000 +vn 0.8394 -0.5435 0.0000 +vn 0.8394 -0.5434 0.0000 +vn 0.7519 -0.6593 0.0000 +vn 0.6537 -0.7567 0.0000 +vn 0.5529 -0.8333 0.0000 +vn 0.5013 -0.8653 0.0000 +vn 0.4289 -0.9034 0.0000 +vn 0.2191 -0.9757 0.0000 +vn 0.0040 -1.0000 0.0000 +vn -0.2030 -0.9792 0.0000 +vn -0.3947 -0.9188 0.0000 +vn -0.5681 -0.8230 0.0000 +vn -0.7211 -0.6928 0.0000 +vn -0.8489 -0.5286 0.0000 +vn -0.9431 -0.3326 0.0000 +vn -0.9935 -0.1142 0.0000 +vn -1.0000 -0.0028 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +usemtl None +s off +f 1//1 2//1 3//1 +f 1//1 3//1 4//1 +f 1//1 4//1 5//1 +f 1//1 5//1 6//1 +f 1//1 6//1 7//1 +f 1//1 7//1 8//1 +f 1//1 8//1 9//1 +f 1//1 9//1 10//1 +f 1//1 10//1 11//1 +f 1//1 11//1 12//1 +f 1//1 12//1 13//1 +f 1//1 13//1 14//1 +f 1//1 14//1 15//1 +f 3//1 2//1 16//1 +f 16//1 2//1 17//1 +f 16//1 17//1 18//1 +f 18//1 17//1 19//1 +f 18//1 19//1 20//1 +f 20//1 19//1 21//1 +f 20//1 21//1 22//1 +f 22//1 21//1 23//1 +f 22//1 23//1 24//1 +f 24//1 23//1 25//1 +f 24//1 25//1 26//1 +f 27//1 28//1 29//1 +f 29//1 28//1 30//1 +f 30//1 28//1 31//1 +f 31//1 28//1 32//1 +f 32//1 28//1 33//1 +f 33//1 28//1 34//1 +f 35//1 36//1 37//1 +f 37//1 36//1 38//1 +f 38//1 36//1 39//1 +f 39//1 36//1 40//1 +f 40//1 36//1 41//1 +f 42//1 43//1 44//1 +f 42//1 44//1 45//1 +f 42//1 45//1 46//1 +f 42//1 46//1 47//1 +f 42//1 47//1 48//1 +f 42//1 48//1 49//1 +f 42//1 49//1 50//1 +f 42//1 50//1 51//1 +f 52//1 53//1 54//1 +f 52//1 54//1 55//1 +f 52//1 55//1 56//1 +f 52//1 56//1 57//1 +f 52//1 57//1 58//1 +f 59//1 60//1 61//1 +f 59//1 61//1 62//1 +f 59//1 62//1 63//1 +f 59//1 63//1 64//1 +f 59//1 64//1 65//1 +f 59//1 65//1 66//1 +f 59//1 66//1 67//1 +f 59//1 67//1 68//1 +f 59//1 68//1 69//1 +f 59//1 69//1 36//1 +f 59//1 36//1 35//1 +f 59//1 35//1 70//1 +f 59//1 70//1 71//1 +f 59//1 71//1 72//1 +f 59//1 72//1 73//1 +f 74//1 75//1 76//1 +f 74//1 76//1 77//1 +f 74//1 77//1 78//1 +f 74//1 78//1 79//1 +f 74//1 79//1 80//1 +f 74//1 80//1 81//1 +f 74//1 81//1 82//1 +f 74//1 82//1 83//1 +f 74//1 83//1 84//1 +f 74//1 84//1 85//1 +f 74//1 85//1 86//1 +f 74//1 86//1 87//1 +f 74//1 87//1 88//1 +f 74//1 88//1 89//1 +f 74//1 89//1 90//1 +f 74//1 90//1 91//1 +f 74//1 91//1 92//1 +f 74//1 92//1 93//1 +f 74//1 93//1 94//1 +f 74//1 94//1 95//1 +f 74//1 95//1 96//1 +f 75//1 97//1 98//1 +f 75//1 98//1 99//1 +f 75//1 99//1 28//1 +f 75//1 28//1 27//1 +f 75//1 27//1 100//1 +f 75//1 100//1 101//1 +f 75//1 101//1 102//1 +f 75//1 102//1 103//1 +f 75//1 103//1 104//1 +f 75//1 104//1 105//1 +f 75//1 105//1 106//1 +f 75//1 106//1 107//1 +f 75//1 107//1 108//1 +f 75//1 108//1 109//1 +f 75//1 109//1 110//1 +f 75//1 110//1 111//1 +f 75//1 111//1 112//1 +f 75//1 112//1 113//1 +f 75//1 113//1 114//1 +f 75//1 114//1 115//1 +f 75//1 115//1 116//1 +f 75//1 116//1 117//1 +f 75//1 117//1 118//1 +f 75//1 118//1 119//1 +f 75//1 119//1 76//1 +f 120//1 74//1 96//1 +f 120//1 96//1 121//1 +f 120//1 121//1 122//1 +f 120//1 122//1 123//1 +f 120//1 123//1 124//1 +f 120//1 124//1 125//1 +f 120//1 125//1 126//1 +f 120//1 126//1 127//1 +f 120//1 127//1 128//1 +f 120//1 128//1 129//1 +f 120//1 129//1 97//1 +f 130//1 53//1 52//1 +f 130//1 52//1 131//1 +f 130//1 131//1 132//1 +f 130//1 132//1 133//1 +f 130//1 133//1 134//1 +f 77//1 130//1 134//1 +f 77//1 134//1 135//1 +f 77//1 135//1 136//1 +f 77//1 136//1 137//1 +f 77//1 137//1 138//1 +f 77//1 138//1 139//1 +f 77//1 139//1 140//1 +f 77//1 140//1 141//1 +f 77//1 141//1 142//1 +f 77//1 142//1 78//1 +f 44//1 43//1 143//1 +f 44//1 143//1 144//1 +f 44//1 144//1 145//1 +f 44//1 145//1 146//1 +f 57//1 147//1 148//1 +f 57//1 148//1 44//1 +f 57//1 44//1 146//1 +f 57//1 146//1 149//1 +f 57//1 149//1 150//1 +f 57//1 150//1 151//1 +f 57//1 151//1 58//1 +f 152//1 41//1 36//1 +f 152//1 36//1 153//1 +f 152//1 153//1 154//1 +f 152//1 154//1 155//1 +f 152//1 155//1 156//1 +f 152//1 156//1 157//1 +f 152//1 157//1 158//1 +f 152//1 158//1 159//1 +f 160//1 161//1 162//1 +f 160//1 162//1 163//1 +f 160//1 163//1 164//1 +f 160//1 164//1 73//1 +f 160//1 73//1 72//1 +f 153//1 36//1 165//1 +f 153//1 165//1 166//1 +f 153//1 166//1 167//1 +f 153//1 167//1 168//1 +f 167//1 169//1 170//1 +f 167//1 170//1 171//1 +f 167//1 171//1 172//1 +f 167//1 172//1 173//1 +f 167//1 173//1 168//1 +f 174//1 175//1 176//1 +f 174//1 176//1 177//1 +f 174//1 177//1 178//1 +f 174//1 178//1 179//1 +f 174//1 179//1 180//1 +f 174//1 180//1 181//1 +f 174//1 181//1 182//1 +f 174//1 182//1 183//1 +f 178//1 177//1 184//1 +f 178//1 184//1 185//1 +f 178//1 185//1 186//1 +f 178//1 186//1 187//1 +f 175//1 34//1 28//1 +f 175//1 28//1 188//1 +f 175//1 188//1 189//1 +f 175//1 189//1 190//1 +f 175//1 190//1 191//1 +f 175//1 191//1 176//1 +f 97//1 129//1 192//1 +f 97//1 192//1 193//1 +f 97//1 193//1 194//1 +f 97//1 194//1 195//1 +f 97//1 195//1 196//1 +f 97//1 196//1 197//1 +f 97//1 197//1 198//1 +f 97//1 198//1 199//1 +f 97//1 199//1 200//1 +f 97//1 200//1 201//1 +f 97//1 201//1 202//1 +f 97//1 202//1 203//1 +f 97//1 203//1 204//1 +f 97//1 204//1 205//1 +f 97//1 205//1 206//1 +f 97//1 206//1 207//1 +f 97//1 207//1 208//1 +f 97//1 208//1 209//1 +f 97//1 209//1 210//1 +f 97//1 210//1 211//1 +f 97//1 211//1 212//1 +f 97//1 212//1 98//1 +f 213//1 194//1 193//1 +f 213//1 193//1 214//1 +f 213//1 214//1 215//1 +f 213//1 215//1 216//1 +f 213//1 216//1 217//1 +f 213//1 217//1 218//1 +f 213//1 218//1 42//1 +f 213//1 42//1 51//1 +f 219//1 207//1 220//1 +f 219//1 220//1 221//1 +f 219//1 221//1 222//1 +f 219//1 222//1 223//1 +f 219//1 223//1 224//1 +f 219//1 224//1 225//1 +f 219//1 225//1 226//1 +f 219//1 226//1 227//1 +f 207//1 206//1 228//1 +f 207//1 228//1 229//1 +f 207//1 229//1 230//1 +f 207//1 230//1 231//1 +f 207//1 231//1 220//1 +f 148//1 147//1 232//1 +f 232//1 147//1 233//1 +f 232//1 233//1 234//1 +f 232//1 234//1 235//1 +f 235//1 234//1 236//1 +f 235//1 236//1 237//1 +f 237//1 236//1 238//1 +f 237//1 238//1 239//1 +f 239//1 238//1 240//1 +f 239//1 240//1 241//1 +f 241//1 240//1 242//1 +f 242//1 240//1 243//1 +f 242//1 243//1 244//1 +f 244//1 243//1 60//1 +f 60//1 243//1 245//1 +f 60//1 245//1 61//1 +f 162//1 161//1 246//1 +f 246//1 161//1 247//1 +f 246//1 247//1 248//1 +f 248//1 247//1 249//1 +f 248//1 249//1 250//1 +f 248//1 250//1 251//1 +f 251//1 250//1 252//1 +f 251//1 252//1 253//1 +f 253//1 252//1 104//1 +f 253//1 104//1 103//1 +f 254//1 255//1 256//1 +f 256//1 255//1 257//1 +f 256//1 257//1 169//1 +f 169//1 257//1 258//1 +f 169//1 258//1 170//1 +f 187//1 186//1 259//1 +f 259//1 186//1 260//1 +f 261//1 262//1 263//1 +f 263//1 262//1 264//1 +f 263//1 264//1 265//1 +f 265//1 264//1 222//1 +f 265//1 222//1 266//1 +f 266//1 222//1 221//1 +f 267//2 268//2 56//2 +f 56//2 268//2 57//2 +f 238//3 269//3 240//3 +f 240//4 269//4 270//4 +f 240//4 270//4 243//4 +f 243//5 270//5 271//5 +f 243//5 271//5 245//5 +f 245//6 271//6 272//6 +f 245//6 272//6 61//6 +f 269//3 238//3 273//3 +f 273//7 238//7 236//7 +f 273//7 236//7 274//7 +f 274//8 236//8 234//8 +f 274//8 234//8 275//8 +f 275//9 234//9 233//9 +f 275//9 233//9 276//9 +f 276//10 233//10 147//10 +f 276//10 147//10 277//10 +f 277//11 147//11 57//11 +f 277//11 57//11 268//11 +f 272//12 278//12 61//12 +f 61//12 278//12 62//12 +f 68//13 279//13 69//13 +f 69//14 279//14 280//14 +f 69//14 280//14 36//14 +f 36//15 280//15 281//15 +f 36//15 281//15 165//15 +f 165//16 281//16 282//16 +f 165//16 282//16 166//16 +f 166//17 282//17 283//17 +f 166//18 283//18 167//18 +f 279//13 68//13 284//13 +f 284//19 68//19 67//19 +f 284//19 67//19 285//19 +f 285//20 67//20 66//20 +f 285//20 66//20 286//20 +f 286//21 66//21 65//21 +f 286//21 65//21 287//21 +f 287//22 65//22 64//22 +f 287//22 64//22 288//22 +f 288//23 64//23 63//23 +f 288//23 63//23 289//23 +f 289//24 63//24 62//24 +f 289//24 62//24 278//24 +f 283//25 290//25 167//25 +f 167//25 290//25 169//25 +f 258//26 291//26 170//26 +f 170//27 291//27 292//27 +f 170//27 292//27 171//27 +f 171//28 292//28 293//28 +f 171//28 293//28 172//28 +f 172//29 293//29 294//29 +f 172//30 294//30 173//30 +f 173//31 294//31 295//31 +f 173//31 295//31 168//31 +f 291//26 258//26 296//26 +f 296//32 258//32 257//32 +f 296//32 257//32 297//32 +f 297//33 257//33 255//33 +f 297//33 255//33 298//33 +f 298//34 255//34 254//34 +f 298//34 254//34 299//34 +f 299//35 254//35 256//35 +f 299//35 256//35 300//35 +f 300//36 256//36 169//36 +f 300//36 169//36 290//36 +f 295//37 301//37 168//37 +f 168//37 301//37 153//37 +f 156//38 302//38 157//38 +f 157//39 302//39 303//39 +f 157//39 303//39 158//39 +f 158//40 303//40 304//40 +f 158//40 304//40 159//40 +f 302//38 156//38 305//38 +f 305//41 156//41 155//41 +f 305//41 155//41 306//41 +f 306//42 155//42 154//42 +f 306//42 154//42 307//42 +f 307//43 154//43 153//43 +f 307//43 153//43 301//43 +f 304//2 308//2 159//2 +f 159//2 308//2 152//2 +f 38//44 309//44 37//44 +f 37//45 309//45 310//45 +f 37//45 310//45 35//45 +f 35//46 310//46 311//46 +f 35//46 311//46 70//46 +f 70//47 311//47 312//47 +f 70//47 312//47 71//47 +f 309//44 38//44 313//44 +f 313//48 38//48 39//48 +f 313//48 39//48 314//48 +f 314//49 39//49 40//49 +f 314//49 40//49 315//49 +f 315//50 40//50 41//50 +f 315//50 41//50 316//50 +f 316//51 41//51 152//51 +f 316//51 152//51 308//51 +f 312//52 317//52 71//52 +f 71//52 317//52 72//52 +f 104//53 318//53 105//53 +f 105//54 318//54 319//54 +f 105//54 319//54 106//54 +f 106//55 319//55 320//55 +f 106//55 320//55 107//55 +f 107//56 320//56 321//56 +f 107//56 321//56 108//56 +f 108//57 321//57 322//57 +f 108//57 322//57 109//57 +f 109//58 322//58 323//58 +f 109//58 323//58 110//58 +f 318//53 104//53 324//53 +f 324//59 104//59 252//59 +f 324//59 252//59 325//59 +f 325//60 252//60 250//60 +f 325//60 250//60 326//60 +f 326//61 250//61 249//61 +f 326//61 249//61 327//61 +f 327//62 249//62 247//62 +f 327//62 247//62 328//62 +f 328//63 247//63 161//63 +f 328//63 161//63 329//63 +f 329//64 161//64 160//64 +f 329//64 160//64 330//64 +f 330//65 160//65 72//65 +f 330//65 72//65 317//65 +f 323//25 331//25 110//25 +f 110//25 331//25 111//25 +f 114//66 332//66 115//66 +f 115//67 332//67 333//67 +f 115//67 333//67 116//67 +f 116//68 333//68 334//68 +f 116//68 334//68 117//68 +f 332//66 114//66 335//66 +f 335//69 114//69 113//69 +f 335//69 113//69 336//69 +f 336//70 113//70 112//70 +f 336//70 112//70 337//70 +f 337//71 112//71 111//71 +f 337//71 111//71 331//71 +f 334//72 338//72 117//72 +f 117//72 338//72 118//72 +f 130//73 339//73 53//73 +f 53//74 339//74 340//74 +f 53//74 340//74 54//74 +f 54//75 340//75 341//75 +f 54//75 341//75 55//75 +f 55//76 341//76 267//76 +f 55//76 267//76 56//76 +f 339//73 130//73 342//73 +f 342//77 130//77 77//77 +f 342//77 77//77 343//77 +f 343//78 77//78 76//78 +f 343//78 76//78 344//78 +f 344//79 76//79 119//79 +f 344//79 119//79 345//79 +f 345//80 119//80 118//80 +f 345//81 118//81 338//81 +f 346//25 17//25 347//25 +f 347//25 17//25 2//25 +f 17//82 346//82 19//82 +f 19//82 346//82 348//82 +f 19//83 348//83 21//83 +f 21//83 348//83 349//83 +f 21//84 349//84 23//84 +f 23//84 349//84 350//84 +f 23//85 350//85 25//85 +f 25//85 350//85 351//85 +f 25//86 351//86 26//86 +f 26//86 351//86 352//86 +f 26//87 352//87 24//87 +f 24//87 352//87 353//87 +f 24//88 353//88 22//88 +f 22//88 353//88 354//88 +f 22//89 354//89 20//89 +f 20//89 354//89 355//89 +f 20//90 355//90 18//90 +f 18//90 355//90 356//90 +f 18//91 356//91 16//91 +f 16//91 356//91 357//91 +f 358//92 3//92 357//92 +f 357//92 3//92 16//92 +f 3//93 358//93 4//93 +f 4//93 358//93 359//93 +f 4//94 359//94 5//94 +f 5//94 359//94 360//94 +f 5//95 360//95 6//95 +f 6//95 360//95 361//95 +f 6//96 361//96 7//96 +f 7//96 361//96 362//96 +f 7//97 362//97 8//97 +f 8//97 362//97 363//97 +f 8//98 363//98 9//98 +f 9//98 363//98 364//98 +f 9//99 364//99 10//99 +f 10//99 364//99 365//99 +f 10//100 365//100 11//100 +f 11//100 365//100 366//100 +f 11//101 366//101 12//101 +f 12//101 366//101 367//101 +f 12//102 367//102 13//102 +f 13//103 367//103 368//103 +f 13//104 368//104 14//104 +f 14//104 368//104 369//104 +f 14//105 369//105 15//105 +f 15//105 369//105 370//105 +f 371//2 1//2 370//2 +f 370//2 1//2 15//2 +f 347//106 2//106 371//106 +f 371//106 2//106 1//106 +f 372//107 43//107 373//107 +f 373//107 43//107 42//107 +f 43//108 372//108 143//108 +f 143//108 372//108 374//108 +f 143//109 374//109 144//109 +f 144//109 374//109 375//109 +f 144//110 375//110 145//110 +f 145//110 375//110 376//110 +f 145//111 376//111 146//111 +f 146//111 376//111 377//111 +f 146//112 377//112 149//112 +f 149//112 377//112 378//112 +f 149//113 378//113 150//113 +f 150//113 378//113 379//113 +f 150//114 379//114 151//114 +f 151//114 379//114 380//114 +f 151//115 380//115 58//115 +f 58//115 380//115 381//115 +f 382//116 52//116 381//116 +f 381//116 52//116 58//116 +f 52//117 382//117 131//117 +f 131//117 382//117 383//117 +f 131//118 383//118 132//118 +f 132//118 383//118 384//118 +f 132//119 384//119 133//119 +f 133//119 384//119 385//119 +f 133//120 385//120 134//120 +f 134//120 385//120 386//120 +f 134//121 386//121 135//121 +f 135//121 386//121 387//121 +f 135//122 387//122 136//122 +f 136//122 387//122 388//122 +f 136//123 388//123 137//123 +f 137//124 388//124 389//124 +f 137//125 389//125 138//125 +f 138//125 389//125 390//125 +f 138//126 390//126 139//126 +f 139//126 390//126 391//126 +f 139//127 391//127 140//127 +f 140//127 391//127 392//127 +f 140//128 392//128 141//128 +f 141//128 392//128 393//128 +f 141//129 393//129 142//129 +f 142//129 393//129 394//129 +f 142//130 394//130 78//130 +f 78//130 394//130 395//130 +f 78//131 395//131 79//131 +f 79//131 395//131 396//131 +f 79//132 396//132 80//132 +f 80//132 396//132 397//132 +f 80//133 397//133 81//133 +f 81//133 397//133 398//133 +f 399//134 82//134 398//134 +f 398//134 82//134 81//134 +f 83//135 82//135 400//135 +f 400//135 82//135 399//135 +f 83//136 400//136 84//136 +f 84//136 400//136 401//136 +f 84//137 401//137 85//137 +f 85//137 401//137 402//137 +f 85//138 402//138 86//138 +f 86//138 402//138 403//138 +f 86//139 403//139 87//139 +f 87//139 403//139 404//139 +f 87//140 404//140 88//140 +f 88//140 404//140 405//140 +f 88//141 405//141 89//141 +f 89//141 405//141 406//141 +f 89//142 406//142 90//142 +f 90//142 406//142 407//142 +f 90//143 407//143 91//143 +f 91//143 407//143 408//143 +f 91//144 408//144 92//144 +f 92//144 408//144 409//144 +f 92//145 409//145 93//145 +f 93//145 409//145 410//145 +f 93//146 410//146 94//146 +f 94//146 410//146 411//146 +f 94//147 411//147 95//147 +f 95//147 411//147 412//147 +f 95//148 412//148 96//148 +f 96//148 412//148 413//148 +f 96//149 413//149 121//149 +f 121//150 413//150 414//150 +f 121//2 414//2 122//2 +f 122//2 414//2 415//2 +f 122//2 415//2 123//2 +f 123//2 415//2 416//2 +f 123//2 416//2 124//2 +f 124//2 416//2 417//2 +f 124//151 417//151 125//151 +f 125//151 417//151 418//151 +f 125//152 418//152 126//152 +f 126//152 418//152 419//152 +f 126//153 419//153 127//153 +f 127//153 419//153 420//153 +f 127//154 420//154 128//154 +f 128//154 420//154 421//154 +f 128//155 421//155 129//155 +f 129//156 421//156 422//156 +f 129//157 422//157 192//157 +f 192//157 422//157 423//157 +f 192//158 423//158 193//158 +f 193//158 423//158 424//158 +f 193//159 424//159 214//159 +f 214//160 424//160 425//160 +f 214//161 425//161 215//161 +f 215//161 425//161 426//161 +f 215//162 426//162 216//162 +f 216//162 426//162 427//162 +f 216//163 427//163 217//163 +f 217//163 427//163 428//163 +f 217//164 428//164 218//164 +f 218//165 428//165 429//165 +f 218//166 429//166 42//166 +f 42//166 429//166 373//166 +f 197//167 430//167 198//167 +f 198//167 430//167 431//167 +f 198//168 431//168 199//168 +f 199//168 431//168 432//168 +f 199//169 432//169 200//169 +f 200//169 432//169 433//169 +f 200//170 433//170 201//170 +f 201//170 433//170 434//170 +f 201//171 434//171 202//171 +f 202//171 434//171 435//171 +f 202//172 435//172 203//172 +f 203//172 435//172 436//172 +f 203//173 436//173 204//173 +f 204//174 436//174 437//174 +f 438//175 205//175 437//175 +f 437//175 205//175 204//175 +f 205//176 438//176 206//176 +f 206//176 438//176 439//176 +f 206//177 439//177 228//177 +f 228//177 439//177 440//177 +f 228//178 440//178 229//178 +f 229//178 440//178 441//178 +f 229//179 441//179 230//179 +f 230//179 441//179 442//179 +f 230//180 442//180 231//180 +f 231//180 442//180 443//180 +f 231//181 443//181 220//181 +f 220//181 443//181 444//181 +f 445//182 221//182 444//182 +f 444//182 221//182 220//182 +f 221//183 445//183 266//183 +f 266//183 445//183 446//183 +f 266//184 446//184 265//184 +f 265//184 446//184 447//184 +f 265//185 447//185 263//185 +f 263//185 447//185 448//185 +f 263//186 448//186 261//186 +f 261//186 448//186 449//186 +f 261//187 449//187 262//187 +f 262//187 449//187 450//187 +f 262//188 450//188 264//188 +f 264//188 450//188 451//188 +f 452//189 222//189 451//189 +f 451//189 222//189 264//189 +f 222//190 452//190 223//190 +f 223//190 452//190 453//190 +f 223//191 453//191 224//191 +f 224//191 453//191 454//191 +f 224//192 454//192 225//192 +f 225//192 454//192 455//192 +f 225//193 455//193 226//193 +f 226//193 455//193 456//193 +f 226//194 456//194 227//194 +f 227//194 456//194 457//194 +f 227//195 457//195 219//195 +f 219//195 457//195 458//195 +f 459//196 207//196 458//196 +f 458//196 207//196 219//196 +f 207//197 459//197 208//197 +f 208//197 459//197 460//197 +f 208//198 460//198 209//198 +f 209//199 460//199 461//199 +f 209//200 461//200 210//200 +f 210//200 461//200 462//200 +f 210//201 462//201 211//201 +f 211//201 462//201 463//201 +f 211//202 463//202 212//202 +f 212//202 463//202 464//202 +f 212//203 464//203 98//203 +f 98//203 464//203 465//203 +f 466//204 99//204 465//204 +f 465//204 99//204 98//204 +f 99//205 466//205 28//205 +f 28//205 466//205 467//205 +f 28//206 467//206 188//206 +f 188//206 467//206 468//206 +f 188//207 468//207 189//207 +f 189//207 468//207 469//207 +f 189//208 469//208 190//208 +f 190//209 469//209 470//209 +f 190//210 470//210 191//210 +f 191//210 470//210 471//210 +f 191//211 471//211 176//211 +f 176//212 471//212 472//212 +f 473//182 177//182 472//182 +f 472//182 177//182 176//182 +f 177//213 473//213 184//213 +f 184//213 473//213 474//213 +f 184//214 474//214 185//214 +f 185//214 474//214 475//214 +f 185//215 475//215 186//215 +f 186//215 475//215 476//215 +f 186//216 476//216 260//216 +f 260//216 476//216 477//216 +f 260//217 477//217 259//217 +f 259//217 477//217 478//217 +f 259//218 478//218 187//218 +f 187//218 478//218 479//218 +f 480//219 178//219 479//219 +f 479//219 178//219 187//219 +f 178//220 480//220 179//220 +f 179//220 480//220 481//220 +f 179//221 481//221 180//221 +f 180//221 481//221 482//221 +f 180//222 482//222 181//222 +f 181//222 482//222 483//222 +f 181//223 483//223 182//223 +f 182//223 483//223 484//223 +f 182//224 484//224 183//224 +f 183//224 484//224 485//224 +f 183//225 485//225 174//225 +f 174//225 485//225 486//225 +f 487//196 175//196 486//196 +f 486//196 175//196 174//196 +f 175//226 487//226 34//226 +f 34//226 487//226 488//226 +f 34//227 488//227 33//227 +f 33//227 488//227 489//227 +f 33//228 489//228 32//228 +f 32//228 489//228 490//228 +f 32//229 490//229 31//229 +f 31//229 490//229 491//229 +f 31//230 491//230 30//230 +f 30//230 491//230 492//230 +f 30//231 492//231 29//231 +f 29//231 492//231 493//231 +f 29//232 493//232 27//232 +f 27//233 493//233 494//233 +f 495//204 100//204 494//204 +f 494//204 100//204 27//204 +f 100//234 495//234 101//234 +f 101//234 495//234 496//234 +f 101//235 496//235 102//235 +f 102//235 496//235 497//235 +f 102//236 497//236 103//236 +f 103//236 497//236 498//236 +f 103//237 498//237 253//237 +f 253//237 498//237 499//237 +f 253//238 499//238 251//238 +f 251//238 499//238 500//238 +f 251//239 500//239 248//239 +f 248//239 500//239 501//239 +f 248//240 501//240 246//240 +f 246//240 501//240 502//240 +f 246//241 502//241 162//241 +f 162//241 502//241 503//241 +f 162//242 503//242 163//242 +f 163//242 503//242 504//242 +f 163//243 504//243 164//243 +f 164//244 504//244 505//244 +f 164//245 505//245 73//245 +f 73//245 505//245 506//245 +f 73//246 506//246 59//246 +f 59//246 506//246 507//246 +f 508//247 60//247 507//247 +f 507//247 60//247 59//247 +f 60//248 508//248 244//248 +f 244//248 508//248 509//248 +f 244//249 509//249 242//249 +f 242//249 509//249 510//249 +f 242//250 510//250 241//250 +f 241//250 510//250 511//250 +f 241//251 511//251 239//251 +f 239//251 511//251 512//251 +f 239//252 512//252 237//252 +f 237//252 512//252 513//252 +f 237//253 513//253 235//253 +f 235//254 513//254 514//254 +f 235//255 514//255 232//255 +f 232//255 514//255 515//255 +f 232//256 515//256 148//256 +f 148//256 515//256 516//256 +f 148//257 516//257 44//257 +f 44//257 516//257 517//257 +f 518//258 45//258 517//258 +f 517//258 45//258 44//258 +f 45//259 518//259 46//259 +f 46//259 518//259 519//259 +f 46//260 519//260 47//260 +f 47//260 519//260 520//260 +f 47//261 520//261 48//261 +f 48//261 520//261 521//261 +f 48//262 521//262 49//262 +f 49//262 521//262 522//262 +f 49//263 522//263 50//263 +f 50//263 522//263 523//263 +f 50//264 523//264 51//264 +f 51//264 523//264 524//264 +f 51//265 524//265 213//265 +f 213//265 524//265 525//265 +f 213//266 525//266 194//266 +f 194//266 525//266 526//266 +f 194//267 526//267 195//267 +f 195//267 526//267 527//267 +f 195//268 527//268 196//268 +f 196//268 527//268 528//268 +f 430//269 197//269 528//269 +f 528//269 197//269 196//269 +f 324//1 319//1 318//1 +f 272//1 296//1 297//1 +f 272//1 297//1 298//1 +f 272//1 298//1 299//1 +f 272//1 299//1 300//1 +f 272//1 300//1 290//1 +f 272//1 290//1 278//1 +f 334//1 308//1 304//1 +f 334//1 304//1 303//1 +f 334//1 303//1 302//1 +f 334//1 302//1 305//1 +f 334//1 305//1 306//1 +f 334//1 306//1 307//1 +f 334//1 307//1 301//1 +f 334//1 301//1 295//1 +f 334//1 295//1 294//1 +f 334//1 294//1 293//1 +f 334//1 293//1 292//1 +f 334//1 292//1 291//1 +f 334//1 291//1 296//1 +f 334//1 296//1 272//1 +f 334//1 272//1 271//1 +f 334//1 271//1 270//1 +f 334//1 270//1 269//1 +f 334//1 269//1 273//1 +f 334//1 273//1 274//1 +f 334//1 274//1 275//1 +f 334//1 275//1 276//1 +f 334//1 276//1 277//1 +f 334//1 277//1 268//1 +f 334//1 268//1 338//1 +f 268//1 267//1 339//1 +f 268//1 339//1 342//1 +f 268//1 342//1 343//1 +f 268//1 343//1 344//1 +f 268//1 344//1 345//1 +f 268//1 345//1 338//1 +f 308//1 334//1 333//1 +f 308//1 333//1 332//1 +f 308//1 332//1 335//1 +f 308//1 335//1 336//1 +f 308//1 336//1 337//1 +f 308//1 337//1 331//1 +f 323//1 322//1 326//1 +f 323//1 326//1 327//1 +f 323//1 327//1 328//1 +f 323//1 328//1 329//1 +f 323//1 329//1 330//1 +f 323//1 330//1 317//1 +f 323//1 317//1 312//1 +f 323//1 312//1 311//1 +f 323//1 311//1 310//1 +f 323//1 310//1 309//1 +f 323//1 309//1 313//1 +f 323//1 313//1 314//1 +f 323//1 314//1 315//1 +f 323//1 315//1 316//1 +f 323//1 316//1 308//1 +f 323//1 308//1 331//1 +f 283//1 282//1 285//1 +f 283//1 285//1 286//1 +f 283//1 286//1 287//1 +f 283//1 287//1 288//1 +f 283//1 288//1 289//1 +f 283//1 289//1 278//1 +f 283//1 278//1 290//1 +f 339//1 267//1 340//1 +f 340//1 267//1 341//1 +f 326//1 322//1 325//1 +f 325//1 322//1 321//1 +f 325//1 321//1 324//1 +f 324//1 321//1 320//1 +f 324//1 320//1 319//1 +f 285//1 282//1 284//1 +f 284//1 282//1 281//1 +f 284//1 281//1 279//1 +f 279//1 281//1 280//1 +f 401//1 403//1 402//1 +f 406//1 408//1 407//1 +f 371//1 370//1 382//1 +f 371//1 382//1 381//1 +f 371//1 381//1 380//1 +f 371//1 380//1 379//1 +f 371//1 379//1 378//1 +f 371//1 378//1 377//1 +f 371//1 377//1 376//1 +f 371//1 376//1 375//1 +f 371//1 375//1 374//1 +f 371//1 374//1 372//1 +f 400//1 406//1 405//1 +f 400//1 405//1 404//1 +f 400//1 404//1 403//1 +f 400//1 403//1 401//1 +f 356//1 355//1 408//1 +f 356//1 408//1 406//1 +f 356//1 406//1 400//1 +f 356//1 400//1 399//1 +f 356//1 399//1 398//1 +f 356//1 398//1 357//1 +f 358//1 357//1 398//1 +f 358//1 398//1 397//1 +f 358//1 397//1 396//1 +f 358//1 396//1 395//1 +f 358//1 395//1 394//1 +f 358//1 394//1 393//1 +f 352//1 351//1 416//1 +f 352//1 416//1 415//1 +f 352//1 415//1 414//1 +f 352//1 414//1 413//1 +f 352//1 413//1 412//1 +f 352//1 412//1 411//1 +f 352//1 411//1 410//1 +f 352//1 410//1 409//1 +f 352//1 409//1 353//1 +f 417//1 416//1 351//1 +f 417//1 351//1 350//1 +f 417//1 350//1 349//1 +f 417//1 349//1 348//1 +f 417//1 348//1 346//1 +f 417//1 346//1 347//1 +f 347//1 371//1 417//1 +f 417//1 371//1 372//1 +f 417//1 372//1 418//1 +f 418//1 372//1 373//1 +f 418//1 373//1 419//1 +f 419//1 373//1 429//1 +f 419//1 429//1 420//1 +f 420//1 429//1 428//1 +f 420//1 428//1 421//1 +f 421//1 428//1 427//1 +f 421//1 427//1 422//1 +f 422//1 427//1 426//1 +f 422//1 426//1 423//1 +f 423//1 426//1 425//1 +f 423//1 425//1 424//1 +f 353//1 409//1 354//1 +f 354//1 409//1 408//1 +f 354//1 408//1 355//1 +f 358//1 393//1 359//1 +f 359//1 393//1 392//1 +f 359//1 392//1 360//1 +f 360//1 392//1 391//1 +f 360//1 391//1 361//1 +f 361//1 391//1 390//1 +f 361//1 390//1 362//1 +f 362//1 390//1 389//1 +f 362//1 389//1 363//1 +f 363//1 389//1 388//1 +f 363//1 388//1 364//1 +f 364//1 388//1 387//1 +f 364//1 387//1 365//1 +f 365//1 387//1 366//1 +f 366//1 387//1 386//1 +f 366//1 386//1 367//1 +f 367//1 386//1 385//1 +f 367//1 385//1 368//1 +f 368//1 385//1 384//1 +f 368//1 384//1 369//1 +f 369//1 384//1 370//1 +f 370//1 384//1 383//1 +f 370//1 383//1 382//1 +f 430//1 446//1 445//1 +f 430//1 447//1 446//1 +f 499//1 497//1 496//1 +f 497//1 499//1 498//1 +f 507//1 495//1 494//1 +f 507//1 494//1 493//1 +f 507//1 493//1 492//1 +f 507//1 492//1 491//1 +f 507//1 491//1 490//1 +f 507//1 490//1 489//1 +f 507//1 489//1 488//1 +f 507//1 488//1 487//1 +f 507//1 487//1 486//1 +f 507//1 486//1 485//1 +f 507//1 485//1 484//1 +f 507//1 484//1 483//1 +f 479//1 478//1 458//1 +f 479//1 458//1 457//1 +f 479//1 457//1 456//1 +f 479//1 456//1 455//1 +f 479//1 455//1 454//1 +f 479//1 454//1 453//1 +f 479//1 453//1 452//1 +f 508//1 507//1 483//1 +f 508//1 483//1 482//1 +f 508//1 482//1 481//1 +f 508//1 481//1 480//1 +f 508//1 480//1 479//1 +f 508//1 479//1 452//1 +f 508//1 452//1 451//1 +f 508//1 451//1 450//1 +f 508//1 450//1 449//1 +f 495//1 507//1 506//1 +f 495//1 506//1 505//1 +f 495//1 505//1 504//1 +f 495//1 504//1 503//1 +f 495//1 503//1 502//1 +f 495//1 502//1 501//1 +f 495//1 501//1 500//1 +f 495//1 500//1 499//1 +f 495//1 499//1 496//1 +f 449//1 511//1 510//1 +f 449//1 510//1 509//1 +f 449//1 509//1 508//1 +f 448//1 517//1 516//1 +f 448//1 516//1 515//1 +f 448//1 515//1 514//1 +f 448//1 514//1 513//1 +f 448//1 513//1 512//1 +f 448//1 512//1 511//1 +f 448//1 511//1 449//1 +f 528//1 517//1 448//1 +f 528//1 448//1 447//1 +f 528//1 447//1 430//1 +f 517//1 528//1 527//1 +f 517//1 527//1 526//1 +f 517//1 526//1 525//1 +f 517//1 525//1 524//1 +f 517//1 524//1 523//1 +f 517//1 523//1 518//1 +f 444//1 438//1 437//1 +f 444//1 437//1 436//1 +f 444//1 436//1 435//1 +f 444//1 435//1 434//1 +f 444//1 434//1 433//1 +f 444//1 433//1 432//1 +f 444//1 432//1 431//1 +f 444//1 431//1 430//1 +f 444//1 430//1 445//1 +f 438//1 444//1 443//1 +f 438//1 443//1 442//1 +f 438//1 442//1 441//1 +f 438//1 441//1 440//1 +f 438//1 440//1 439//1 +f 458//1 478//1 477//1 +f 458//1 477//1 476//1 +f 458//1 476//1 475//1 +f 458//1 475//1 474//1 +f 458//1 474//1 473//1 +f 458//1 473//1 472//1 +f 458//1 472//1 459//1 +f 466//1 465//1 472//1 +f 466//1 472//1 471//1 +f 466//1 471//1 470//1 +f 466//1 470//1 469//1 +f 466//1 469//1 468//1 +f 466//1 468//1 467//1 +f 472//1 465//1 464//1 +f 472//1 464//1 463//1 +f 472//1 463//1 462//1 +f 472//1 462//1 461//1 +f 472//1 461//1 460//1 +f 472//1 460//1 459//1 +f 521//1 520//1 522//1 +f 522//1 520//1 519//1 +f 522//1 519//1 523//1 +f 523//1 519//1 518//1 +f 529//270 530//270 531//270 +f 531//270 530//270 532//270 +f 532//182 120//182 531//182 +f 531//182 120//182 97//182 +f 531//271 97//271 529//271 +f 529//271 97//271 75//271 +f 529//196 75//196 530//196 +f 530//196 75//196 74//196 +f 530//272 74//272 532//272 +f 532//272 74//272 120//272 diff --git a/resources/meshes/cremaker_platform_220.obj b/resources/meshes/cremaker_platform_220.obj new file mode 100644 index 0000000000..07f270912c --- /dev/null +++ b/resources/meshes/cremaker_platform_220.obj @@ -0,0 +1,1870 @@ +# Blender v2.83.4 OBJ File: '' +# www.blender.org +mtllib cremaker_platform_220.mtl +o Cremaker_Bed_For_Cura_220 +v -1.890215 15.706850 0.000001 +v 6.767278 20.737940 0.000001 +v -5.775456 19.937870 0.000001 +v -6.085020 19.717300 0.000001 +v -6.206591 19.597380 0.000001 +v -6.306021 19.472389 0.000001 +v -6.404158 19.299610 0.000001 +v -6.462938 19.122049 0.000001 +v -6.482364 18.942129 0.000001 +v -6.462439 18.762270 0.000001 +v -6.403163 18.584881 0.000001 +v -6.304539 18.412380 0.000001 +v -6.204750 18.287661 0.000001 +v -6.082830 18.168079 0.000001 +v -5.772599 17.948380 0.000001 +v -0.169347 23.195789 0.000001 +v 2.503686 23.199570 0.000001 +v 0.015533 23.290100 0.000001 +v 2.318549 23.293369 0.000001 +v 0.215548 23.368071 0.000001 +v 2.118320 23.370770 0.000001 +v 0.445728 23.434031 0.000001 +v 1.887968 23.436081 0.000001 +v 0.686610 23.480829 0.000001 +v 1.646967 23.482201 0.000001 +v 1.166741 23.516991 0.000001 +v 8.977601 -31.682760 -0.000001 +v 15.463810 -27.894529 -0.000001 +v 9.126501 -31.581169 -0.000001 +v 9.251994 -31.471161 -0.000001 +v 9.354342 -31.353979 -0.000001 +v 9.435792 -31.228849 -0.000001 +v 9.497616 -31.095310 -0.000001 +v 9.540466 -30.954081 -0.000001 +v -2.474875 -23.004829 -0.000001 +v -3.486624 -14.063000 -0.000001 +v -2.653391 -22.608061 -0.000001 +v -2.900688 -22.237030 -0.000001 +v -3.052730 -22.062059 -0.000001 +v -3.221965 -21.899099 -0.000001 +v -3.400519 -21.755520 -0.000001 +v 27.762609 18.434891 0.000001 +v 1.302336 3.393586 0.000000 +v 3.475899 -0.694668 -0.000000 +v 29.570330 14.423920 0.000001 +v 29.843470 14.553590 0.000001 +v 30.123699 14.616530 0.000001 +v 30.402599 14.617650 0.000001 +v 30.671749 14.561850 0.000001 +v 30.922720 14.454050 0.000001 +v 31.147100 14.299160 0.000001 +v -26.719641 17.714270 0.000001 +v -30.969570 14.542240 0.000001 +v -30.693640 14.614890 0.000001 +v -30.396780 14.615500 0.000001 +v -30.088209 14.539130 0.000001 +v -3.517677 -0.801377 -0.000000 +v -1.435565 3.392086 0.000000 +v 2.106637 -33.573120 -0.000001 +v 2.133908 -3.020771 -0.000000 +v -2.272171 -2.965736 -0.000000 +v -2.298659 -12.744290 -0.000001 +v -2.325924 -13.082530 -0.000001 +v -2.402435 -13.372600 -0.000001 +v -2.523336 -13.613500 -0.000001 +v -2.683776 -13.804260 -0.000001 +v -2.878902 -13.943900 -0.000001 +v -3.064503 -14.020530 -0.000001 +v -3.268013 -14.060420 -0.000001 +v -2.366918 -23.413799 -0.000001 +v -2.331298 -23.821421 -0.000001 +v -2.538111 -33.729561 -0.000001 +v 2.114818 -33.739540 -0.000001 +v -110.000000 110.000000 0.000005 +v -110.000000 -110.000000 -0.000005 +v -31.579510 13.941270 0.000001 +v -31.421730 14.200490 0.000001 +v -27.414490 20.492630 0.000001 +v -27.228689 20.743530 0.000001 +v -26.998230 20.967470 0.000001 +v -26.723070 21.158649 0.000001 +v -3.097852 34.888088 0.000002 +v -3.058702 34.910809 0.000002 +v -2.760384 35.064079 0.000002 +v -2.510572 35.174419 0.000002 +v -2.024714 35.353069 0.000002 +v -1.582107 35.478981 0.000002 +v -1.080716 35.581661 0.000002 +v -0.754755 35.626011 0.000002 +v -0.411912 35.653530 0.000002 +v 0.068701 35.658569 0.000002 +v 0.572670 35.620548 0.000002 +v 1.096192 35.531940 0.000002 +v 1.635463 35.385231 0.000002 +v 2.186679 35.172890 0.000002 +v 2.746035 34.887402 0.000002 +v 110.000000 -110.000000 -0.000005 +v 20.371010 -25.084841 -0.000001 +v 15.581860 -27.858259 -0.000001 +v 3.623141 -34.783489 -0.000002 +v 3.518881 -34.835880 -0.000002 +v 3.407471 -34.868351 -0.000002 +v 3.280597 -34.881981 -0.000002 +v -3.206139 -34.884621 -0.000002 +v -3.407758 -34.910000 -0.000002 +v -3.633279 -34.894100 -0.000002 +v -3.809279 -34.856091 -0.000002 +v -3.996799 -34.794971 -0.000002 +v -4.214165 -34.700981 -0.000002 +v -4.444436 -34.577541 -0.000002 +v -31.037670 -19.223930 -0.000001 +v -31.293150 -19.038361 -0.000001 +v -31.520281 -18.799589 -0.000001 +v -31.710920 -18.522110 -0.000001 +v -31.856939 -18.220461 -0.000001 +v -31.950171 -17.909149 -0.000001 +v -31.982500 -17.602690 -0.000001 +v -31.712339 13.270770 0.000001 +v -31.679449 13.629710 0.000001 +v 110.000000 110.000000 0.000005 +v 2.771456 34.872719 0.000002 +v 7.464162 32.163349 0.000001 +v 15.253320 27.666241 0.000001 +v 27.735189 20.459780 0.000001 +v 27.760611 20.445101 0.000001 +v 27.895399 20.354771 0.000001 +v 28.012421 20.250940 0.000001 +v 28.113310 20.133301 0.000001 +v 28.195770 20.005659 0.000001 +v -31.215340 14.402460 0.000001 +v -26.995159 17.904921 0.000001 +v -27.226070 18.128401 0.000001 +v -27.412350 18.378941 0.000001 +v -27.554010 18.650749 0.000001 +v -27.623430 18.840151 0.000001 +v -27.673161 19.034679 0.000001 +v -27.703360 19.234209 0.000001 +v -27.713560 19.435499 0.000001 +v -27.703770 19.636801 0.000001 +v -27.673969 19.836390 0.000001 +v -27.624630 20.031019 0.000001 +v -27.555599 20.220551 0.000001 +v 0.976425 3.232473 0.000000 +v 0.636600 3.117338 0.000000 +v 0.287486 3.048182 0.000000 +v -0.066293 3.025005 0.000000 +v -3.345686 -0.911826 -0.000000 +v 3.139616 -0.917790 -0.000000 +v -0.420113 3.047807 0.000000 +v -0.769347 3.116588 0.000000 +v -1.109373 3.231348 0.000000 +v -3.594514 -21.626280 -0.000001 +v -12.938980 -15.140140 -0.000001 +v -12.905790 -15.448240 -0.000001 +v -12.810930 -15.763330 -0.000001 +v -12.664030 -16.069201 -0.000001 +v -12.474700 -16.349609 -0.000001 +v -12.252560 -16.588350 -0.000001 +v -12.007230 -16.769199 -0.000001 +v -2.563875 -34.102112 -0.000001 +v -2.601945 -34.265640 -0.000001 +v 2.260306 -34.209869 -0.000001 +v 2.192190 -34.059601 -0.000001 +v 2.142445 -33.897968 -0.000001 +v -3.658804 -14.040120 -0.000001 +v -3.836713 -13.995700 -0.000001 +v -4.204983 -13.841300 -0.000001 +v -12.922880 -9.899136 -0.000000 +v -11.984960 -9.349529 -0.000000 +v -12.721910 -9.347394 -0.000000 +v -12.789020 -9.421888 -0.000000 +v -12.845920 -9.517392 -0.000000 +v -12.888060 -9.630308 -0.000000 +v 9.573477 -21.213511 -0.000001 +v 9.573477 -30.649120 -0.000001 +v 15.034420 -27.542681 -0.000001 +v 15.034420 -18.158489 -0.000001 +v 10.169160 -20.177891 -0.000001 +v 9.977448 -20.309700 -0.000001 +v 9.825815 -20.460020 -0.000001 +v 9.711927 -20.627211 -0.000001 +v 9.649883 -20.762680 -0.000001 +v 9.606781 -20.906019 -0.000001 +v 15.003990 -18.001150 -0.000001 +v 14.921680 -17.866699 -0.000001 +v 14.800500 -17.765039 -0.000001 +v 14.333690 -17.755440 -0.000001 +v 15.340730 -27.890249 -0.000001 +v 15.224440 -27.849171 -0.000001 +v 15.126750 -27.775049 -0.000001 +v 15.059470 -27.671631 -0.000001 +v 28.304729 19.730980 0.000001 +v 28.341249 19.440559 0.000001 +v 31.482401 13.867730 0.000001 +v 31.576481 13.601010 0.000001 +v 31.610291 13.306840 0.000001 +v 31.698460 -17.754620 -0.000001 +v 31.678040 -18.025631 -0.000001 +v 31.618450 -18.258989 -0.000001 +v 31.522221 -18.459169 -0.000001 +v 31.427509 -18.590231 -0.000001 +v 31.314671 -18.707041 -0.000001 +v 31.184740 -18.811489 -0.000001 +v 31.038811 -18.905470 -0.000001 +v 26.822330 -21.359131 -0.000001 +v 26.698940 -21.396070 -0.000001 +v 20.966869 -24.051201 -0.000001 +v 20.956520 -24.269871 -0.000001 +v 20.904810 -24.472601 -0.000001 +v 20.816071 -24.657419 -0.000001 +v 20.727819 -24.783110 -0.000001 +v 20.623011 -24.896790 -0.000001 +v 31.336460 14.102080 0.000001 +v 28.305321 19.150070 0.000001 +v 28.196911 18.875179 0.000001 +v 28.114700 18.747379 0.000001 +v 28.014050 18.629551 0.000001 +v 27.897230 18.525490 0.000001 +v 20.966869 -14.603510 -0.000001 +v 26.274229 -21.043930 -0.000001 +v 26.274229 -11.652350 -0.000001 +v 21.562111 -13.571100 -0.000001 +v 21.370380 -13.705390 -0.000001 +v 21.218809 -13.856010 -0.000001 +v 21.105040 -14.022040 -0.000001 +v 21.043091 -14.156130 -0.000001 +v 21.000080 -14.298000 -0.000001 +v 26.574249 -21.392080 -0.000001 +v 26.458860 -21.351021 -0.000001 +v 26.363340 -21.276751 -0.000001 +v 26.298269 -21.173100 -0.000001 +v 2.856881 -1.162039 -0.000000 +v -3.183302 -1.040252 -0.000000 +v -3.017757 -1.198799 -0.000000 +v 2.624997 -1.426512 -0.000000 +v -2.865824 -1.373666 -0.000000 +v 2.441266 -1.710312 -0.000000 +v -2.616956 -1.744172 -0.000000 +v 2.344197 -1.909804 -0.000000 +v -2.429858 -2.145653 -0.000000 +v 2.266531 -2.117218 -0.000000 +v 2.207469 -2.332289 -0.000000 +v -2.312331 -2.559157 -0.000000 +v 2.166210 -2.554749 -0.000000 +v -2.282093 -2.764497 -0.000000 +v 2.434501 -34.463181 -0.000002 +v -2.656312 -34.412819 -0.000002 +v 2.651738 -34.663250 -0.000002 +v -2.753508 -34.582069 -0.000002 +v -2.878132 -34.718540 -0.000002 +v 2.895620 -34.802711 -0.000002 +v -3.029303 -34.820099 -0.000002 +v 3.149746 -34.874161 -0.000002 +v -12.348020 -9.227452 -0.000000 +v -12.458250 -9.229397 -0.000000 +v -12.230520 -9.246961 -0.000000 +v -12.555370 -9.250595 -0.000000 +v -12.643580 -9.290076 -0.000000 +v 14.493510 -17.699530 -0.000001 +v 14.653450 -17.706020 -0.000001 +v 25.891661 -11.178740 -0.000000 +v 25.733061 -11.186380 -0.000000 +v 26.037319 -11.223560 -0.000000 +v 25.573780 -11.248510 -0.000000 +v 26.157789 -11.318790 -0.000000 +v 26.240850 -11.462400 -0.000001 +v -30.088209 14.539130 -0.999999 +v -3.517677 -0.801377 -1.000000 +v -2.429858 -2.145653 -1.000000 +v -2.312331 -2.559157 -1.000000 +v -2.282093 -2.764497 -1.000000 +v -2.272171 -2.965736 -1.000000 +v -2.616956 -1.744172 -1.000000 +v -2.865824 -1.373666 -1.000000 +v -3.017757 -1.198799 -1.000000 +v -3.183302 -1.040252 -1.000000 +v -3.345686 -0.911826 -1.000000 +v -2.298659 -12.744290 -1.000001 +v -3.268013 -14.060420 -1.000001 +v -3.486624 -14.063000 -1.000001 +v -3.658804 -14.040120 -1.000001 +v -3.836713 -13.995700 -1.000001 +v -4.204983 -13.841300 -1.000001 +v -3.064503 -14.020530 -1.000001 +v -2.878902 -13.943900 -1.000001 +v -2.683776 -13.804260 -1.000001 +v -2.523336 -13.613500 -1.000001 +v -2.402435 -13.372600 -1.000001 +v -2.325924 -13.082530 -1.000001 +v -11.984960 -9.349529 -1.000000 +v -12.721910 -9.347394 -1.000000 +v -12.789020 -9.421888 -1.000000 +v -12.845920 -9.517392 -1.000000 +v -12.888060 -9.630308 -1.000000 +v -12.922880 -9.899136 -1.000000 +v -12.643580 -9.290076 -1.000000 +v -12.555370 -9.250595 -1.000000 +v -12.458250 -9.229397 -1.000000 +v -12.348020 -9.227452 -1.000000 +v -12.230520 -9.246961 -1.000000 +v -12.938980 -15.140140 -1.000001 +v -12.474700 -16.349609 -1.000001 +v -12.252560 -16.588350 -1.000001 +v -12.007230 -16.769199 -1.000001 +v -12.664030 -16.069201 -1.000001 +v -12.810930 -15.763330 -1.000001 +v -12.905790 -15.448240 -1.000001 +v -3.594514 -21.626280 -1.000001 +v -2.653391 -22.608061 -1.000001 +v -2.474875 -23.004829 -1.000001 +v -2.366918 -23.413799 -1.000001 +v -2.331298 -23.821421 -1.000001 +v -2.900688 -22.237030 -1.000001 +v -3.052730 -22.062059 -1.000001 +v -3.221965 -21.899099 -1.000001 +v -3.400519 -21.755520 -1.000001 +v -2.538111 -33.729561 -1.000001 +v -3.407758 -34.910000 -1.000002 +v -3.633279 -34.894100 -1.000002 +v -3.809279 -34.856091 -1.000002 +v -3.996799 -34.794971 -1.000002 +v -4.214165 -34.700981 -1.000002 +v -4.444436 -34.577541 -1.000002 +v -3.206139 -34.884621 -1.000002 +v -3.029303 -34.820099 -1.000002 +v -2.878132 -34.718540 -1.000002 +v -2.753508 -34.582069 -1.000002 +v -2.656312 -34.412819 -1.000002 +v -2.601945 -34.265640 -1.000002 +v -2.563875 -34.102112 -1.000002 +v -31.037670 -19.223930 -1.000001 +v -31.856939 -18.220461 -1.000001 +v -31.950171 -17.909149 -1.000001 +v -31.982500 -17.602690 -1.000001 +v -31.710920 -18.522110 -1.000001 +v -31.520281 -18.799589 -1.000001 +v -31.293150 -19.038361 -1.000001 +v -31.712339 13.270770 -0.999999 +v -30.969570 14.542240 -0.999999 +v -30.693640 14.614890 -0.999999 +v -30.396780 14.615500 -0.999999 +v -31.215340 14.402460 -0.999999 +v -31.421730 14.200490 -0.999999 +v -31.579510 13.941270 -0.999999 +v -31.679449 13.629710 -0.999999 +v 2.503686 23.199570 -0.999999 +v 6.767278 20.737940 -0.999999 +v 2.318549 23.293369 -0.999999 +v 2.118320 23.370770 -0.999999 +v 1.887968 23.436081 -0.999999 +v 1.646967 23.482201 -0.999999 +v 1.166741 23.516991 -0.999999 +v 0.686610 23.480829 -0.999999 +v 0.445728 23.434031 -0.999999 +v 0.215548 23.368071 -0.999999 +v 0.015533 23.290100 -0.999999 +v -0.169347 23.195789 -0.999999 +v -5.775456 19.937870 -0.999999 +v -6.085020 19.717300 -0.999999 +v -6.206591 19.597380 -0.999999 +v -6.306021 19.472389 -0.999999 +v -6.404158 19.299610 -0.999999 +v -6.462938 19.122049 -0.999999 +v -6.482364 18.942129 -0.999999 +v -6.462439 18.762270 -0.999999 +v -6.403163 18.584881 -0.999999 +v -6.304539 18.412380 -0.999999 +v -6.204750 18.287661 -0.999999 +v -6.082830 18.168079 -0.999999 +v -5.772599 17.948380 -0.999999 +v -1.890215 15.706850 -0.999999 +v 1.302336 3.393586 -1.000000 +v 27.762609 18.434891 -0.999999 +v 0.976425 3.232473 -1.000000 +v 0.636600 3.117338 -1.000000 +v 0.287486 3.048182 -1.000000 +v -0.066293 3.025005 -1.000000 +v -0.420113 3.047807 -1.000000 +v -0.769347 3.116588 -1.000000 +v -1.109373 3.231348 -1.000000 +v -1.435565 3.392086 -1.000000 +v -26.719641 17.714270 -0.999999 +v -26.995159 17.904921 -0.999999 +v -27.226070 18.128401 -0.999999 +v -27.412350 18.378941 -0.999999 +v -27.554010 18.650749 -0.999999 +v -27.623430 18.840151 -0.999999 +v -27.673161 19.034679 -0.999999 +v -27.703360 19.234209 -0.999999 +v -27.713560 19.435499 -0.999999 +v -27.703770 19.636801 -0.999999 +v -27.673969 19.836390 -0.999999 +v -27.624630 20.031019 -0.999999 +v -27.555599 20.220551 -0.999999 +v -27.414490 20.492630 -0.999999 +v -27.228689 20.743530 -0.999999 +v -26.998230 20.967470 -0.999999 +v -26.723070 21.158649 -0.999999 +v -3.097852 34.888088 -0.999998 +v -3.058702 34.910809 -0.999998 +v -2.760384 35.064079 -0.999998 +v -2.510572 35.174419 -0.999998 +v -2.024714 35.353069 -0.999998 +v -1.582107 35.478981 -0.999998 +v -1.080716 35.581661 -0.999998 +v -0.754755 35.626011 -0.999998 +v -0.411912 35.653530 -0.999998 +v 0.068701 35.658569 -0.999998 +v 0.572670 35.620548 -0.999998 +v 1.096192 35.531940 -0.999998 +v 1.635463 35.385231 -0.999998 +v 2.186679 35.172890 -0.999998 +v 2.746035 34.887402 -0.999998 +v 2.771456 34.872719 -0.999998 +v 7.464162 32.163349 -0.999999 +v 15.253320 27.666241 -0.999999 +v 27.735189 20.459780 -0.999999 +v 27.760611 20.445101 -0.999999 +v 27.895399 20.354771 -0.999999 +v 28.012421 20.250940 -0.999999 +v 28.113310 20.133301 -0.999999 +v 28.195770 20.005659 -0.999999 +v 28.304729 19.730980 -0.999999 +v 28.341249 19.440559 -0.999999 +v 28.305321 19.150070 -0.999999 +v 28.196911 18.875179 -0.999999 +v 28.114700 18.747379 -0.999999 +v 28.014050 18.629551 -0.999999 +v 27.897230 18.525490 -0.999999 +v 31.698460 -17.754620 -1.000001 +v 31.678040 -18.025631 -1.000001 +v 31.618450 -18.258989 -1.000001 +v 31.522221 -18.459169 -1.000001 +v 31.427509 -18.590231 -1.000001 +v 31.314671 -18.707041 -1.000001 +v 31.184740 -18.811489 -1.000001 +v 31.038811 -18.905470 -1.000001 +v 26.822330 -21.359131 -1.000001 +v 26.698940 -21.396070 -1.000001 +v 26.574249 -21.392080 -1.000001 +v 26.458860 -21.351021 -1.000001 +v 26.363340 -21.276751 -1.000001 +v 26.298269 -21.173100 -1.000001 +v 26.274229 -21.043930 -1.000001 +v 26.274229 -11.652350 -1.000000 +v 26.240850 -11.462400 -1.000000 +v 26.157789 -11.318790 -1.000000 +v 26.037319 -11.223560 -1.000000 +v 25.891661 -11.178740 -1.000000 +v 25.733061 -11.186380 -1.000000 +v 25.573780 -11.248510 -1.000000 +v 21.562111 -13.571100 -1.000001 +v 21.370380 -13.705390 -1.000001 +v 21.218809 -13.856010 -1.000001 +v 21.105040 -14.022040 -1.000001 +v 21.043091 -14.156130 -1.000001 +v 21.000080 -14.298000 -1.000001 +v 20.966869 -14.603510 -1.000001 +v 20.966869 -24.051201 -1.000001 +v 20.956520 -24.269871 -1.000001 +v 20.904810 -24.472601 -1.000001 +v 20.816071 -24.657419 -1.000001 +v 20.727819 -24.783110 -1.000001 +v 20.623011 -24.896790 -1.000001 +v 20.371010 -25.084841 -1.000001 +v 15.581860 -27.858259 -1.000001 +v 15.463810 -27.894529 -1.000001 +v 15.340730 -27.890249 -1.000001 +v 15.224440 -27.849171 -1.000001 +v 15.126750 -27.775049 -1.000001 +v 15.059470 -27.671631 -1.000001 +v 15.034420 -27.542681 -1.000001 +v 15.034420 -18.158489 -1.000001 +v 15.003990 -18.001150 -1.000001 +v 14.921680 -17.866699 -1.000001 +v 14.800500 -17.765039 -1.000001 +v 14.653450 -17.706020 -1.000001 +v 14.493510 -17.699530 -1.000001 +v 14.333690 -17.755440 -1.000001 +v 10.169160 -20.177891 -1.000001 +v 9.977448 -20.309700 -1.000001 +v 9.825815 -20.460020 -1.000001 +v 9.711927 -20.627211 -1.000001 +v 9.649883 -20.762680 -1.000001 +v 9.606781 -20.906019 -1.000001 +v 9.573477 -21.213511 -1.000001 +v 9.573477 -30.649120 -1.000001 +v 9.540466 -30.954081 -1.000001 +v 9.497616 -31.095310 -1.000001 +v 9.435792 -31.228849 -1.000001 +v 9.354342 -31.353979 -1.000001 +v 9.251994 -31.471161 -1.000001 +v 9.126501 -31.581169 -1.000001 +v 8.977601 -31.682760 -1.000001 +v 3.623141 -34.783489 -1.000002 +v 3.518881 -34.835880 -1.000002 +v 3.407471 -34.868351 -1.000002 +v 3.280597 -34.881981 -1.000002 +v 3.149746 -34.874161 -1.000002 +v 2.895620 -34.802711 -1.000002 +v 2.651738 -34.663250 -1.000002 +v 2.434501 -34.463181 -1.000002 +v 2.260306 -34.209869 -1.000002 +v 2.192190 -34.059601 -1.000001 +v 2.142445 -33.897968 -1.000001 +v 2.114818 -33.739540 -1.000001 +v 2.106637 -33.573120 -1.000001 +v 2.133908 -3.020771 -1.000000 +v 2.166210 -2.554749 -1.000000 +v 2.207469 -2.332289 -1.000000 +v 2.266531 -2.117218 -1.000000 +v 2.344197 -1.909804 -1.000000 +v 2.441266 -1.710312 -1.000000 +v 2.624997 -1.426512 -1.000000 +v 2.856881 -1.162039 -1.000000 +v 3.139616 -0.917790 -1.000000 +v 3.475899 -0.694668 -1.000000 +v 29.570330 14.423920 -0.999999 +v 29.843470 14.553590 -0.999999 +v 30.123699 14.616530 -0.999999 +v 30.402599 14.617650 -0.999999 +v 30.671749 14.561850 -0.999999 +v 30.922720 14.454050 -0.999999 +v 31.147100 14.299160 -0.999999 +v 31.336460 14.102080 -0.999999 +v 31.482401 13.867730 -0.999999 +v 31.576481 13.601010 -0.999999 +v 31.610291 13.306840 -0.999999 +v -110.000000 -110.000000 -3.000005 +v -110.000000 110.000000 -2.999995 +v 110.000000 -110.000000 -3.000005 +v 110.000000 110.000000 -2.999995 +vn 0.0000 -0.0000 1.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.9064 -0.4224 0.0000 +vn -0.9619 -0.2734 0.0000 +vn -0.9893 -0.1457 0.0000 +vn -0.9988 -0.0492 0.0000 +vn -0.8301 -0.5576 0.0000 +vn -0.7549 -0.6559 0.0000 +vn -0.6917 -0.7222 0.0000 +vn -0.6203 -0.7843 0.0000 +vn -0.5404 -0.8414 0.0000 +vn -1.0000 0.0027 0.0000 +vn -0.1924 0.9813 0.0000 +vn -0.0118 0.9999 0.0000 +vn 0.1317 0.9913 0.0000 +vn 0.2422 0.9702 0.0000 +vn 0.3866 0.9222 0.0000 +vn 0.3867 0.9222 0.0000 +vn -0.3816 0.9243 0.0000 +vn -0.5820 0.8132 0.0000 +vn -0.7653 0.6437 0.0000 +vn -0.8938 0.4486 0.0000 +vn -0.9669 0.2550 0.0000 +vn -0.9968 0.0803 0.0000 +vn 0.5000 0.8660 0.0000 +vn -0.5905 0.8070 0.0000 +vn -0.7430 0.6693 0.0000 +vn -0.8591 0.5118 0.0000 +vn -0.9369 0.3497 0.0000 +vn -0.9369 0.3496 0.0000 +vn -0.9917 0.1285 0.0000 +vn -0.4085 0.9127 0.0000 +vn -0.2132 0.9770 0.0000 +vn -0.0176 0.9998 0.0000 +vn 0.1638 0.9865 0.0000 +vn 0.3854 0.9227 0.0000 +vn -1.0000 0.0031 0.0000 +vn -0.8288 -0.5596 0.0000 +vn -0.7321 -0.6812 0.0000 +vn -0.5934 -0.8049 0.0000 +vn -0.9014 -0.4329 0.0000 +vn -0.9575 -0.2883 0.0000 +vn -0.9942 -0.1071 0.0000 +vn -0.8321 -0.5546 0.0000 +vn -0.9119 -0.4103 0.0000 +vn -0.9669 -0.2552 0.0000 +vn -0.9962 -0.0871 0.0000 +vn -0.7548 -0.6559 0.0000 +vn -0.6936 -0.7203 0.0000 +vn -0.6267 -0.7793 0.0000 +vn -0.5544 -0.8322 0.0000 +vn -0.9998 0.0209 0.0000 +vn -0.1249 0.9922 0.0000 +vn 0.0703 0.9975 0.0000 +vn 0.2111 0.9775 0.0000 +vn 0.3099 0.9508 0.0000 +vn 0.3969 0.9179 0.0000 +vn 0.4725 0.8814 0.0000 +vn -0.3428 0.9394 0.0000 +vn -0.5577 0.8301 0.0000 +vn -0.7384 0.6743 0.0000 +vn -0.8672 0.4980 0.0000 +vn -0.9380 0.3465 0.0000 +vn -0.9740 0.2267 0.0000 +vn -0.9976 0.0690 0.0000 +vn 0.9001 0.4357 0.0000 +vn 0.9580 0.2869 0.0000 +vn 0.9945 0.1049 0.0000 +vn 0.8242 0.5663 0.0000 +vn 0.7245 0.6892 0.0000 +vn 0.5877 0.8091 0.0000 +vn 1.0000 -0.0088 0.0000 +vn 0.4944 -0.8692 0.0000 +vn 0.2546 -0.9670 0.0000 +vn 0.0021 -1.0000 0.0000 +vn -0.2402 -0.9707 0.0000 +vn 0.6994 -0.7147 0.0000 +vn 0.8542 -0.5199 0.0000 +vn 0.9522 -0.3054 0.0000 +vn 0.9958 -0.0913 0.0000 +vn 0.9958 -0.0912 0.0000 +vn 0.4520 0.8920 0.0000 +vn 0.3606 0.9327 0.0000 +vn 0.2728 0.9621 0.0000 +vn 0.1880 0.9822 0.0000 +vn 0.0723 0.9974 0.0000 +vn -0.0751 0.9972 0.0000 +vn -0.1907 0.9816 0.0000 +vn -0.2755 0.9613 0.0000 +vn -0.3632 0.9317 0.0000 +vn -0.4544 0.8908 0.0000 +vn -0.5025 0.8646 0.0000 +vn -0.5803 0.8144 0.0000 +vn -0.7023 0.7119 0.0000 +vn -0.7826 0.6225 0.0000 +vn -0.8695 0.4939 0.0000 +vn -0.9493 0.3143 0.0000 +vn -0.9942 0.1073 0.0000 +vn -0.9939 -0.1101 0.0000 +vn -0.9484 -0.3169 0.0000 +vn -0.8681 -0.4963 0.0000 +vn -0.7808 -0.6248 0.0000 +vn -0.7808 -0.6247 0.0000 +vn -0.7002 -0.7139 0.0000 +vn -0.5779 -0.8161 0.0000 +vn 0.5024 -0.8646 0.0000 +vn -0.4942 0.8694 0.0000 +vn -0.4432 0.8964 0.0000 +vn -0.3209 0.9471 0.0000 +vn -0.1943 0.9809 0.0000 +vn -0.0654 0.9979 0.0000 +vn 0.0643 0.9979 0.0000 +vn 0.1932 0.9812 0.0000 +vn 0.3198 0.9475 0.0000 +vn 0.4420 0.8970 0.0000 +vn 0.4929 0.8701 0.0000 +vn 0.5690 0.8223 0.0000 +vn 0.6954 0.7186 0.0000 +vn 0.8025 0.5967 0.0000 +vn 0.8868 0.4622 0.0000 +vn 0.9389 0.3441 0.0000 +vn 0.9688 0.2477 0.0000 +vn 0.9887 0.1496 0.0000 +vn 0.9887 0.1497 0.0000 +vn 0.9987 0.0506 0.0000 +vn 0.9988 -0.0486 0.0000 +vn 0.9890 -0.1477 0.0000 +vn 0.9693 -0.2457 0.0000 +vn 0.9396 -0.3422 0.0000 +vn 0.8877 -0.4604 0.0000 +vn 0.8036 -0.5951 0.0000 +vn 0.6969 -0.7172 0.0000 +vn 0.5706 -0.8212 0.0000 +vn 0.5025 -0.8646 0.0000 +vn 0.5019 -0.8649 0.0000 +vn 0.4570 -0.8895 0.0000 +vn 0.4040 -0.9147 0.0000 +vn 0.3451 -0.9386 0.0000 +vn 0.2736 -0.9618 0.0000 +vn 0.2006 -0.9797 0.0000 +vn 0.1348 -0.9909 0.0000 +vn 0.0800 -0.9968 0.0000 +vn 0.0105 -0.9999 0.0000 +vn -0.0752 -0.9972 0.0000 +vn -0.1669 -0.9860 0.0000 +vn -0.2625 -0.9649 0.0000 +vn -0.3595 -0.9332 0.0000 +vn -0.4546 -0.8907 0.0000 +vn -0.5001 -0.8659 0.0000 +vn -0.5002 -0.8659 0.0000 +vn -0.5001 -0.8660 0.0000 +vn -0.5567 -0.8307 0.0000 +vn -0.6637 -0.7480 0.0000 +vn -0.7591 -0.6510 0.0000 +vn -0.8400 -0.5427 0.0000 +vn -0.8400 -0.5426 0.0000 +vn -0.9295 -0.3687 0.0000 +vn -0.9922 -0.1248 0.0000 +vn -0.9924 0.1228 0.0000 +vn -0.9924 0.1227 0.0000 +vn -0.9303 0.3669 0.0000 +vn -0.8410 0.5410 0.0000 +vn -0.7604 0.6495 0.0000 +vn -0.6651 0.7467 0.0000 +vn -0.6652 0.7467 0.0000 +vn -0.5583 0.8296 0.0000 +vn -0.9972 0.0751 0.0000 +vn -0.9689 0.2474 0.0000 +vn -0.9013 0.4333 0.0000 +vn -0.8105 0.5857 0.0000 +vn -0.7192 0.6948 0.0000 +vn -0.6265 0.7794 0.0000 +vn -0.5414 0.8407 0.0000 +vn -0.5415 0.8407 0.0000 +vn -0.5030 0.8643 0.0000 +vn -0.2868 0.9580 0.0000 +vn 0.0320 0.9995 0.0000 +vn 0.3352 0.9421 0.0000 +vn 0.6138 0.7894 0.0000 +vn 0.8469 0.5317 0.0000 +vn 0.9831 0.1830 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.9849 0.1731 0.0000 +vn 0.8656 0.5007 0.0000 +vn 0.6201 0.7845 0.0000 +vn 0.2941 0.9558 0.0000 +vn -0.0481 0.9988 0.0000 +vn -0.3634 0.9316 0.0000 +vn -0.5010 0.8654 0.0000 +vn -0.5737 0.8191 0.0000 +vn -0.7049 0.7093 0.0000 +vn -0.8249 0.5653 0.0000 +vn -0.9078 0.4194 0.0000 +vn -0.9570 0.2901 0.0000 +vn -0.9941 0.1081 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.9989 0.0473 0.0000 +vn -0.9690 0.2472 0.0000 +vn -0.9690 0.2471 0.0000 +vn -0.9015 0.4328 0.0000 +vn -0.8184 0.5746 0.0000 +vn -0.7352 0.6778 0.0000 +vn -0.5981 0.8014 0.0000 +vn -0.5011 0.8654 0.0000 +vn -0.2937 0.9559 0.0000 +vn 0.0348 0.9994 0.0000 +vn 0.3331 0.9429 0.0000 +vn 0.6044 0.7966 0.0000 +vn 0.6045 0.7966 0.0000 +vn 0.8382 0.5453 0.0000 +vn 0.9817 0.1907 0.0000 +vn 0.9816 0.1907 0.0000 +vn 0.9818 0.1899 0.0000 +vn 0.8529 0.5221 0.0000 +vn 0.6427 0.7661 0.0000 +vn 0.3725 0.9280 0.0000 +vn 0.0405 0.9992 0.0000 +vn -0.3302 0.9439 0.0000 +vn -0.5028 0.8644 0.0000 +vn -0.5666 0.8240 0.0000 +vn -0.7040 0.7102 0.0000 +vn -0.8265 0.5630 0.0000 +vn -0.9092 0.4164 0.0000 +vn -0.9576 0.2880 0.0000 +vn -0.9942 0.1077 0.0000 +vn -0.9942 0.1076 0.0000 +vn -0.9569 0.2903 0.0000 +vn -0.9075 0.4201 0.0000 +vn -0.8381 0.5455 0.0000 +vn -0.7532 0.6578 0.0000 +vn -0.6592 0.7520 0.0000 +vn -0.5636 0.8260 0.0000 +vn -0.5636 0.8261 0.0000 +vn -0.4490 0.8935 0.0000 +vn -0.2798 0.9601 0.0000 +vn -0.1068 0.9943 0.0000 +vn 0.0597 0.9982 0.0000 +vn 0.2707 0.9627 0.0000 +vn 0.4964 0.8681 0.0000 +vn 0.6774 0.7356 0.0000 +vn 0.8240 0.5666 0.0000 +vn 0.9108 0.4129 0.0000 +vn 0.9558 0.2942 0.0000 +vn 0.9558 0.2941 0.0000 +vn 0.9851 0.1718 0.0000 +vn 0.9988 0.0491 0.0000 +vn 1.0000 -0.0009 0.0000 +vn 0.9976 -0.0691 0.0000 +vn 0.9832 -0.1824 0.0000 +vn 0.9643 -0.2648 0.0000 +vn 0.9365 -0.3507 0.0000 +vn 0.8992 -0.4375 0.0000 +vn 0.8394 -0.5435 0.0000 +vn 0.8394 -0.5434 0.0000 +vn 0.7519 -0.6593 0.0000 +vn 0.6537 -0.7567 0.0000 +vn 0.5529 -0.8333 0.0000 +vn 0.5013 -0.8653 0.0000 +vn 0.4289 -0.9034 0.0000 +vn 0.2191 -0.9757 0.0000 +vn 0.0040 -1.0000 0.0000 +vn -0.2030 -0.9792 0.0000 +vn -0.3947 -0.9188 0.0000 +vn -0.5681 -0.8230 0.0000 +vn -0.7211 -0.6928 0.0000 +vn -0.8489 -0.5286 0.0000 +vn -0.9431 -0.3326 0.0000 +vn -0.9935 -0.1142 0.0000 +vn -1.0000 -0.0028 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +usemtl None +s off +f 1//1 2//1 3//1 +f 1//1 3//1 4//1 +f 1//1 4//1 5//1 +f 1//1 5//1 6//1 +f 1//1 6//1 7//1 +f 1//1 7//1 8//1 +f 1//1 8//1 9//1 +f 1//1 9//1 10//1 +f 1//1 10//1 11//1 +f 1//1 11//1 12//1 +f 1//1 12//1 13//1 +f 1//1 13//1 14//1 +f 1//1 14//1 15//1 +f 3//1 2//1 16//1 +f 16//1 2//1 17//1 +f 16//1 17//1 18//1 +f 18//1 17//1 19//1 +f 18//1 19//1 20//1 +f 20//1 19//1 21//1 +f 20//1 21//1 22//1 +f 22//1 21//1 23//1 +f 22//1 23//1 24//1 +f 24//1 23//1 25//1 +f 24//1 25//1 26//1 +f 27//1 28//1 29//1 +f 29//1 28//1 30//1 +f 30//1 28//1 31//1 +f 31//1 28//1 32//1 +f 32//1 28//1 33//1 +f 33//1 28//1 34//1 +f 35//1 36//1 37//1 +f 37//1 36//1 38//1 +f 38//1 36//1 39//1 +f 39//1 36//1 40//1 +f 40//1 36//1 41//1 +f 42//1 43//1 44//1 +f 42//1 44//1 45//1 +f 42//1 45//1 46//1 +f 42//1 46//1 47//1 +f 42//1 47//1 48//1 +f 42//1 48//1 49//1 +f 42//1 49//1 50//1 +f 42//1 50//1 51//1 +f 52//1 53//1 54//1 +f 52//1 54//1 55//1 +f 52//1 55//1 56//1 +f 52//1 56//1 57//1 +f 52//1 57//1 58//1 +f 59//1 60//1 61//1 +f 59//1 61//1 62//1 +f 59//1 62//1 63//1 +f 59//1 63//1 64//1 +f 59//1 64//1 65//1 +f 59//1 65//1 66//1 +f 59//1 66//1 67//1 +f 59//1 67//1 68//1 +f 59//1 68//1 69//1 +f 59//1 69//1 36//1 +f 59//1 36//1 35//1 +f 59//1 35//1 70//1 +f 59//1 70//1 71//1 +f 59//1 71//1 72//1 +f 59//1 72//1 73//1 +f 74//1 75//1 76//1 +f 74//1 76//1 77//1 +f 74//1 77//1 78//1 +f 74//1 78//1 79//1 +f 74//1 79//1 80//1 +f 74//1 80//1 81//1 +f 74//1 81//1 82//1 +f 74//1 82//1 83//1 +f 74//1 83//1 84//1 +f 74//1 84//1 85//1 +f 74//1 85//1 86//1 +f 74//1 86//1 87//1 +f 74//1 87//1 88//1 +f 74//1 88//1 89//1 +f 74//1 89//1 90//1 +f 74//1 90//1 91//1 +f 74//1 91//1 92//1 +f 74//1 92//1 93//1 +f 74//1 93//1 94//1 +f 74//1 94//1 95//1 +f 74//1 95//1 96//1 +f 75//1 97//1 98//1 +f 75//1 98//1 99//1 +f 75//1 99//1 28//1 +f 75//1 28//1 27//1 +f 75//1 27//1 100//1 +f 75//1 100//1 101//1 +f 75//1 101//1 102//1 +f 75//1 102//1 103//1 +f 75//1 103//1 104//1 +f 75//1 104//1 105//1 +f 75//1 105//1 106//1 +f 75//1 106//1 107//1 +f 75//1 107//1 108//1 +f 75//1 108//1 109//1 +f 75//1 109//1 110//1 +f 75//1 110//1 111//1 +f 75//1 111//1 112//1 +f 75//1 112//1 113//1 +f 75//1 113//1 114//1 +f 75//1 114//1 115//1 +f 75//1 115//1 116//1 +f 75//1 116//1 117//1 +f 75//1 117//1 118//1 +f 75//1 118//1 119//1 +f 75//1 119//1 76//1 +f 120//1 74//1 96//1 +f 120//1 96//1 121//1 +f 120//1 121//1 122//1 +f 120//1 122//1 123//1 +f 120//1 123//1 124//1 +f 120//1 124//1 125//1 +f 120//1 125//1 126//1 +f 120//1 126//1 127//1 +f 120//1 127//1 128//1 +f 120//1 128//1 129//1 +f 120//1 129//1 97//1 +f 130//1 53//1 52//1 +f 130//1 52//1 131//1 +f 130//1 131//1 132//1 +f 130//1 132//1 133//1 +f 130//1 133//1 134//1 +f 77//1 130//1 134//1 +f 77//1 134//1 135//1 +f 77//1 135//1 136//1 +f 77//1 136//1 137//1 +f 77//1 137//1 138//1 +f 77//1 138//1 139//1 +f 77//1 139//1 140//1 +f 77//1 140//1 141//1 +f 77//1 141//1 142//1 +f 77//1 142//1 78//1 +f 44//1 43//1 143//1 +f 44//1 143//1 144//1 +f 44//1 144//1 145//1 +f 44//1 145//1 146//1 +f 57//1 147//1 148//1 +f 57//1 148//1 44//1 +f 57//1 44//1 146//1 +f 57//1 146//1 149//1 +f 57//1 149//1 150//1 +f 57//1 150//1 151//1 +f 57//1 151//1 58//1 +f 152//1 41//1 36//1 +f 152//1 36//1 153//1 +f 152//1 153//1 154//1 +f 152//1 154//1 155//1 +f 152//1 155//1 156//1 +f 152//1 156//1 157//1 +f 152//1 157//1 158//1 +f 152//1 158//1 159//1 +f 160//1 161//1 162//1 +f 160//1 162//1 163//1 +f 160//1 163//1 164//1 +f 160//1 164//1 73//1 +f 160//1 73//1 72//1 +f 153//1 36//1 165//1 +f 153//1 165//1 166//1 +f 153//1 166//1 167//1 +f 153//1 167//1 168//1 +f 167//1 169//1 170//1 +f 167//1 170//1 171//1 +f 167//1 171//1 172//1 +f 167//1 172//1 173//1 +f 167//1 173//1 168//1 +f 174//1 175//1 176//1 +f 174//1 176//1 177//1 +f 174//1 177//1 178//1 +f 174//1 178//1 179//1 +f 174//1 179//1 180//1 +f 174//1 180//1 181//1 +f 174//1 181//1 182//1 +f 174//1 182//1 183//1 +f 178//1 177//1 184//1 +f 178//1 184//1 185//1 +f 178//1 185//1 186//1 +f 178//1 186//1 187//1 +f 175//1 34//1 28//1 +f 175//1 28//1 188//1 +f 175//1 188//1 189//1 +f 175//1 189//1 190//1 +f 175//1 190//1 191//1 +f 175//1 191//1 176//1 +f 97//1 129//1 192//1 +f 97//1 192//1 193//1 +f 97//1 193//1 194//1 +f 97//1 194//1 195//1 +f 97//1 195//1 196//1 +f 97//1 196//1 197//1 +f 97//1 197//1 198//1 +f 97//1 198//1 199//1 +f 97//1 199//1 200//1 +f 97//1 200//1 201//1 +f 97//1 201//1 202//1 +f 97//1 202//1 203//1 +f 97//1 203//1 204//1 +f 97//1 204//1 205//1 +f 97//1 205//1 206//1 +f 97//1 206//1 207//1 +f 97//1 207//1 208//1 +f 97//1 208//1 209//1 +f 97//1 209//1 210//1 +f 97//1 210//1 211//1 +f 97//1 211//1 212//1 +f 97//1 212//1 98//1 +f 213//1 194//1 193//1 +f 213//1 193//1 214//1 +f 213//1 214//1 215//1 +f 213//1 215//1 216//1 +f 213//1 216//1 217//1 +f 213//1 217//1 218//1 +f 213//1 218//1 42//1 +f 213//1 42//1 51//1 +f 219//1 207//1 220//1 +f 219//1 220//1 221//1 +f 219//1 221//1 222//1 +f 219//1 222//1 223//1 +f 219//1 223//1 224//1 +f 219//1 224//1 225//1 +f 219//1 225//1 226//1 +f 219//1 226//1 227//1 +f 207//1 206//1 228//1 +f 207//1 228//1 229//1 +f 207//1 229//1 230//1 +f 207//1 230//1 231//1 +f 207//1 231//1 220//1 +f 148//1 147//1 232//1 +f 232//1 147//1 233//1 +f 232//1 233//1 234//1 +f 232//1 234//1 235//1 +f 235//1 234//1 236//1 +f 235//1 236//1 237//1 +f 237//1 236//1 238//1 +f 237//1 238//1 239//1 +f 239//1 238//1 240//1 +f 239//1 240//1 241//1 +f 241//1 240//1 242//1 +f 242//1 240//1 243//1 +f 242//1 243//1 244//1 +f 244//1 243//1 60//1 +f 60//1 243//1 245//1 +f 60//1 245//1 61//1 +f 162//1 161//1 246//1 +f 246//1 161//1 247//1 +f 246//1 247//1 248//1 +f 248//1 247//1 249//1 +f 248//1 249//1 250//1 +f 248//1 250//1 251//1 +f 251//1 250//1 252//1 +f 251//1 252//1 253//1 +f 253//1 252//1 104//1 +f 253//1 104//1 103//1 +f 254//1 255//1 256//1 +f 256//1 255//1 257//1 +f 256//1 257//1 169//1 +f 169//1 257//1 258//1 +f 169//1 258//1 170//1 +f 187//1 186//1 259//1 +f 259//1 186//1 260//1 +f 261//1 262//1 263//1 +f 263//1 262//1 264//1 +f 263//1 264//1 265//1 +f 265//1 264//1 222//1 +f 265//1 222//1 266//1 +f 266//1 222//1 221//1 +f 267//2 268//2 56//2 +f 56//2 268//2 57//2 +f 238//3 269//3 240//3 +f 240//4 269//4 270//4 +f 240//4 270//4 243//4 +f 243//5 270//5 271//5 +f 243//5 271//5 245//5 +f 245//6 271//6 272//6 +f 245//6 272//6 61//6 +f 269//3 238//3 273//3 +f 273//7 238//7 236//7 +f 273//7 236//7 274//7 +f 274//8 236//8 234//8 +f 274//8 234//8 275//8 +f 275//9 234//9 233//9 +f 275//9 233//9 276//9 +f 276//10 233//10 147//10 +f 276//10 147//10 277//10 +f 277//11 147//11 57//11 +f 277//11 57//11 268//11 +f 272//12 278//12 61//12 +f 61//12 278//12 62//12 +f 68//13 279//13 69//13 +f 69//14 279//14 280//14 +f 69//14 280//14 36//14 +f 36//15 280//15 281//15 +f 36//15 281//15 165//15 +f 165//16 281//16 282//16 +f 165//16 282//16 166//16 +f 166//17 282//17 283//17 +f 166//18 283//18 167//18 +f 279//13 68//13 284//13 +f 284//19 68//19 67//19 +f 284//19 67//19 285//19 +f 285//20 67//20 66//20 +f 285//20 66//20 286//20 +f 286//21 66//21 65//21 +f 286//21 65//21 287//21 +f 287//22 65//22 64//22 +f 287//22 64//22 288//22 +f 288//23 64//23 63//23 +f 288//23 63//23 289//23 +f 289//24 63//24 62//24 +f 289//24 62//24 278//24 +f 283//25 290//25 167//25 +f 167//25 290//25 169//25 +f 258//26 291//26 170//26 +f 170//27 291//27 292//27 +f 170//27 292//27 171//27 +f 171//28 292//28 293//28 +f 171//28 293//28 172//28 +f 172//29 293//29 294//29 +f 172//30 294//30 173//30 +f 173//31 294//31 295//31 +f 173//31 295//31 168//31 +f 291//26 258//26 296//26 +f 296//32 258//32 257//32 +f 296//32 257//32 297//32 +f 297//33 257//33 255//33 +f 297//33 255//33 298//33 +f 298//34 255//34 254//34 +f 298//34 254//34 299//34 +f 299//35 254//35 256//35 +f 299//35 256//35 300//35 +f 300//36 256//36 169//36 +f 300//36 169//36 290//36 +f 295//37 301//37 168//37 +f 168//37 301//37 153//37 +f 156//38 302//38 157//38 +f 157//39 302//39 303//39 +f 157//39 303//39 158//39 +f 158//40 303//40 304//40 +f 158//40 304//40 159//40 +f 302//38 156//38 305//38 +f 305//41 156//41 155//41 +f 305//41 155//41 306//41 +f 306//42 155//42 154//42 +f 306//42 154//42 307//42 +f 307//43 154//43 153//43 +f 307//43 153//43 301//43 +f 304//2 308//2 159//2 +f 159//2 308//2 152//2 +f 38//44 309//44 37//44 +f 37//45 309//45 310//45 +f 37//45 310//45 35//45 +f 35//46 310//46 311//46 +f 35//46 311//46 70//46 +f 70//47 311//47 312//47 +f 70//47 312//47 71//47 +f 309//44 38//44 313//44 +f 313//48 38//48 39//48 +f 313//48 39//48 314//48 +f 314//49 39//49 40//49 +f 314//49 40//49 315//49 +f 315//50 40//50 41//50 +f 315//50 41//50 316//50 +f 316//51 41//51 152//51 +f 316//51 152//51 308//51 +f 312//52 317//52 71//52 +f 71//52 317//52 72//52 +f 104//53 318//53 105//53 +f 105//54 318//54 319//54 +f 105//54 319//54 106//54 +f 106//55 319//55 320//55 +f 106//55 320//55 107//55 +f 107//56 320//56 321//56 +f 107//56 321//56 108//56 +f 108//57 321//57 322//57 +f 108//57 322//57 109//57 +f 109//58 322//58 323//58 +f 109//58 323//58 110//58 +f 318//53 104//53 324//53 +f 324//59 104//59 252//59 +f 324//59 252//59 325//59 +f 325//60 252//60 250//60 +f 325//60 250//60 326//60 +f 326//61 250//61 249//61 +f 326//61 249//61 327//61 +f 327//62 249//62 247//62 +f 327//62 247//62 328//62 +f 328//63 247//63 161//63 +f 328//63 161//63 329//63 +f 329//64 161//64 160//64 +f 329//64 160//64 330//64 +f 330//65 160//65 72//65 +f 330//65 72//65 317//65 +f 323//25 331//25 110//25 +f 110//25 331//25 111//25 +f 114//66 332//66 115//66 +f 115//67 332//67 333//67 +f 115//67 333//67 116//67 +f 116//68 333//68 334//68 +f 116//68 334//68 117//68 +f 332//66 114//66 335//66 +f 335//69 114//69 113//69 +f 335//69 113//69 336//69 +f 336//70 113//70 112//70 +f 336//70 112//70 337//70 +f 337//71 112//71 111//71 +f 337//71 111//71 331//71 +f 334//72 338//72 117//72 +f 117//72 338//72 118//72 +f 130//73 339//73 53//73 +f 53//74 339//74 340//74 +f 53//74 340//74 54//74 +f 54//75 340//75 341//75 +f 54//75 341//75 55//75 +f 55//76 341//76 267//76 +f 55//76 267//76 56//76 +f 339//73 130//73 342//73 +f 342//77 130//77 77//77 +f 342//77 77//77 343//77 +f 343//78 77//78 76//78 +f 343//78 76//78 344//78 +f 344//79 76//79 119//79 +f 344//79 119//79 345//79 +f 345//80 119//80 118//80 +f 345//81 118//81 338//81 +f 346//25 17//25 347//25 +f 347//25 17//25 2//25 +f 17//82 346//82 19//82 +f 19//82 346//82 348//82 +f 19//83 348//83 21//83 +f 21//83 348//83 349//83 +f 21//84 349//84 23//84 +f 23//84 349//84 350//84 +f 23//85 350//85 25//85 +f 25//85 350//85 351//85 +f 25//86 351//86 26//86 +f 26//86 351//86 352//86 +f 26//87 352//87 24//87 +f 24//87 352//87 353//87 +f 24//88 353//88 22//88 +f 22//88 353//88 354//88 +f 22//89 354//89 20//89 +f 20//89 354//89 355//89 +f 20//90 355//90 18//90 +f 18//90 355//90 356//90 +f 18//91 356//91 16//91 +f 16//91 356//91 357//91 +f 358//92 3//92 357//92 +f 357//92 3//92 16//92 +f 3//93 358//93 4//93 +f 4//93 358//93 359//93 +f 4//94 359//94 5//94 +f 5//94 359//94 360//94 +f 5//95 360//95 6//95 +f 6//95 360//95 361//95 +f 6//96 361//96 7//96 +f 7//96 361//96 362//96 +f 7//97 362//97 8//97 +f 8//97 362//97 363//97 +f 8//98 363//98 9//98 +f 9//98 363//98 364//98 +f 9//99 364//99 10//99 +f 10//99 364//99 365//99 +f 10//100 365//100 11//100 +f 11//100 365//100 366//100 +f 11//101 366//101 12//101 +f 12//101 366//101 367//101 +f 12//102 367//102 13//102 +f 13//103 367//103 368//103 +f 13//104 368//104 14//104 +f 14//104 368//104 369//104 +f 14//105 369//105 15//105 +f 15//105 369//105 370//105 +f 371//2 1//2 370//2 +f 370//2 1//2 15//2 +f 347//106 2//106 371//106 +f 371//106 2//106 1//106 +f 372//107 43//107 373//107 +f 373//107 43//107 42//107 +f 43//108 372//108 143//108 +f 143//108 372//108 374//108 +f 143//109 374//109 144//109 +f 144//109 374//109 375//109 +f 144//110 375//110 145//110 +f 145//110 375//110 376//110 +f 145//111 376//111 146//111 +f 146//111 376//111 377//111 +f 146//112 377//112 149//112 +f 149//112 377//112 378//112 +f 149//113 378//113 150//113 +f 150//113 378//113 379//113 +f 150//114 379//114 151//114 +f 151//114 379//114 380//114 +f 151//115 380//115 58//115 +f 58//115 380//115 381//115 +f 382//116 52//116 381//116 +f 381//116 52//116 58//116 +f 52//117 382//117 131//117 +f 131//117 382//117 383//117 +f 131//118 383//118 132//118 +f 132//118 383//118 384//118 +f 132//119 384//119 133//119 +f 133//119 384//119 385//119 +f 133//120 385//120 134//120 +f 134//120 385//120 386//120 +f 134//121 386//121 135//121 +f 135//121 386//121 387//121 +f 135//122 387//122 136//122 +f 136//122 387//122 388//122 +f 136//123 388//123 137//123 +f 137//124 388//124 389//124 +f 137//125 389//125 138//125 +f 138//125 389//125 390//125 +f 138//126 390//126 139//126 +f 139//126 390//126 391//126 +f 139//127 391//127 140//127 +f 140//127 391//127 392//127 +f 140//128 392//128 141//128 +f 141//128 392//128 393//128 +f 141//129 393//129 142//129 +f 142//129 393//129 394//129 +f 142//130 394//130 78//130 +f 78//130 394//130 395//130 +f 78//131 395//131 79//131 +f 79//131 395//131 396//131 +f 79//132 396//132 80//132 +f 80//132 396//132 397//132 +f 80//133 397//133 81//133 +f 81//133 397//133 398//133 +f 399//134 82//134 398//134 +f 398//134 82//134 81//134 +f 83//135 82//135 400//135 +f 400//135 82//135 399//135 +f 83//136 400//136 84//136 +f 84//136 400//136 401//136 +f 84//137 401//137 85//137 +f 85//137 401//137 402//137 +f 85//138 402//138 86//138 +f 86//138 402//138 403//138 +f 86//139 403//139 87//139 +f 87//139 403//139 404//139 +f 87//140 404//140 88//140 +f 88//140 404//140 405//140 +f 88//141 405//141 89//141 +f 89//141 405//141 406//141 +f 89//142 406//142 90//142 +f 90//142 406//142 407//142 +f 90//143 407//143 91//143 +f 91//143 407//143 408//143 +f 91//144 408//144 92//144 +f 92//144 408//144 409//144 +f 92//145 409//145 93//145 +f 93//145 409//145 410//145 +f 93//146 410//146 94//146 +f 94//146 410//146 411//146 +f 94//147 411//147 95//147 +f 95//147 411//147 412//147 +f 95//148 412//148 96//148 +f 96//148 412//148 413//148 +f 96//149 413//149 121//149 +f 121//150 413//150 414//150 +f 121//2 414//2 122//2 +f 122//2 414//2 415//2 +f 122//2 415//2 123//2 +f 123//2 415//2 416//2 +f 123//2 416//2 124//2 +f 124//2 416//2 417//2 +f 124//151 417//151 125//151 +f 125//151 417//151 418//151 +f 125//152 418//152 126//152 +f 126//152 418//152 419//152 +f 126//153 419//153 127//153 +f 127//153 419//153 420//153 +f 127//154 420//154 128//154 +f 128//154 420//154 421//154 +f 128//155 421//155 129//155 +f 129//156 421//156 422//156 +f 129//157 422//157 192//157 +f 192//157 422//157 423//157 +f 192//158 423//158 193//158 +f 193//158 423//158 424//158 +f 193//159 424//159 214//159 +f 214//160 424//160 425//160 +f 214//161 425//161 215//161 +f 215//161 425//161 426//161 +f 215//162 426//162 216//162 +f 216//162 426//162 427//162 +f 216//163 427//163 217//163 +f 217//163 427//163 428//163 +f 217//164 428//164 218//164 +f 218//165 428//165 429//165 +f 218//166 429//166 42//166 +f 42//166 429//166 373//166 +f 197//167 430//167 198//167 +f 198//167 430//167 431//167 +f 198//168 431//168 199//168 +f 199//168 431//168 432//168 +f 199//169 432//169 200//169 +f 200//169 432//169 433//169 +f 200//170 433//170 201//170 +f 201//170 433//170 434//170 +f 201//171 434//171 202//171 +f 202//171 434//171 435//171 +f 202//172 435//172 203//172 +f 203//172 435//172 436//172 +f 203//173 436//173 204//173 +f 204//174 436//174 437//174 +f 438//175 205//175 437//175 +f 437//175 205//175 204//175 +f 205//176 438//176 206//176 +f 206//176 438//176 439//176 +f 206//177 439//177 228//177 +f 228//177 439//177 440//177 +f 228//178 440//178 229//178 +f 229//178 440//178 441//178 +f 229//179 441//179 230//179 +f 230//179 441//179 442//179 +f 230//180 442//180 231//180 +f 231//180 442//180 443//180 +f 231//181 443//181 220//181 +f 220//181 443//181 444//181 +f 445//182 221//182 444//182 +f 444//182 221//182 220//182 +f 221//183 445//183 266//183 +f 266//183 445//183 446//183 +f 266//184 446//184 265//184 +f 265//184 446//184 447//184 +f 265//185 447//185 263//185 +f 263//185 447//185 448//185 +f 263//186 448//186 261//186 +f 261//186 448//186 449//186 +f 261//187 449//187 262//187 +f 262//187 449//187 450//187 +f 262//188 450//188 264//188 +f 264//188 450//188 451//188 +f 452//189 222//189 451//189 +f 451//189 222//189 264//189 +f 222//190 452//190 223//190 +f 223//190 452//190 453//190 +f 223//191 453//191 224//191 +f 224//191 453//191 454//191 +f 224//192 454//192 225//192 +f 225//192 454//192 455//192 +f 225//193 455//193 226//193 +f 226//193 455//193 456//193 +f 226//194 456//194 227//194 +f 227//194 456//194 457//194 +f 227//195 457//195 219//195 +f 219//195 457//195 458//195 +f 459//196 207//196 458//196 +f 458//196 207//196 219//196 +f 207//197 459//197 208//197 +f 208//197 459//197 460//197 +f 208//198 460//198 209//198 +f 209//199 460//199 461//199 +f 209//200 461//200 210//200 +f 210//200 461//200 462//200 +f 210//201 462//201 211//201 +f 211//201 462//201 463//201 +f 211//202 463//202 212//202 +f 212//202 463//202 464//202 +f 212//203 464//203 98//203 +f 98//203 464//203 465//203 +f 466//204 99//204 465//204 +f 465//204 99//204 98//204 +f 99//205 466//205 28//205 +f 28//205 466//205 467//205 +f 28//206 467//206 188//206 +f 188//206 467//206 468//206 +f 188//207 468//207 189//207 +f 189//207 468//207 469//207 +f 189//208 469//208 190//208 +f 190//209 469//209 470//209 +f 190//210 470//210 191//210 +f 191//210 470//210 471//210 +f 191//211 471//211 176//211 +f 176//212 471//212 472//212 +f 473//182 177//182 472//182 +f 472//182 177//182 176//182 +f 177//213 473//213 184//213 +f 184//213 473//213 474//213 +f 184//214 474//214 185//214 +f 185//214 474//214 475//214 +f 185//215 475//215 186//215 +f 186//215 475//215 476//215 +f 186//216 476//216 260//216 +f 260//216 476//216 477//216 +f 260//217 477//217 259//217 +f 259//217 477//217 478//217 +f 259//218 478//218 187//218 +f 187//218 478//218 479//218 +f 480//219 178//219 479//219 +f 479//219 178//219 187//219 +f 178//220 480//220 179//220 +f 179//220 480//220 481//220 +f 179//221 481//221 180//221 +f 180//221 481//221 482//221 +f 180//222 482//222 181//222 +f 181//222 482//222 483//222 +f 181//223 483//223 182//223 +f 182//223 483//223 484//223 +f 182//224 484//224 183//224 +f 183//224 484//224 485//224 +f 183//225 485//225 174//225 +f 174//225 485//225 486//225 +f 487//196 175//196 486//196 +f 486//196 175//196 174//196 +f 175//226 487//226 34//226 +f 34//226 487//226 488//226 +f 34//227 488//227 33//227 +f 33//227 488//227 489//227 +f 33//228 489//228 32//228 +f 32//228 489//228 490//228 +f 32//229 490//229 31//229 +f 31//229 490//229 491//229 +f 31//230 491//230 30//230 +f 30//230 491//230 492//230 +f 30//231 492//231 29//231 +f 29//231 492//231 493//231 +f 29//232 493//232 27//232 +f 27//233 493//233 494//233 +f 495//204 100//204 494//204 +f 494//204 100//204 27//204 +f 100//234 495//234 101//234 +f 101//234 495//234 496//234 +f 101//235 496//235 102//235 +f 102//235 496//235 497//235 +f 102//236 497//236 103//236 +f 103//236 497//236 498//236 +f 103//237 498//237 253//237 +f 253//237 498//237 499//237 +f 253//238 499//238 251//238 +f 251//238 499//238 500//238 +f 251//239 500//239 248//239 +f 248//239 500//239 501//239 +f 248//240 501//240 246//240 +f 246//240 501//240 502//240 +f 246//241 502//241 162//241 +f 162//241 502//241 503//241 +f 162//242 503//242 163//242 +f 163//242 503//242 504//242 +f 163//243 504//243 164//243 +f 164//244 504//244 505//244 +f 164//245 505//245 73//245 +f 73//245 505//245 506//245 +f 73//246 506//246 59//246 +f 59//246 506//246 507//246 +f 508//247 60//247 507//247 +f 507//247 60//247 59//247 +f 60//248 508//248 244//248 +f 244//248 508//248 509//248 +f 244//249 509//249 242//249 +f 242//249 509//249 510//249 +f 242//250 510//250 241//250 +f 241//250 510//250 511//250 +f 241//251 511//251 239//251 +f 239//251 511//251 512//251 +f 239//252 512//252 237//252 +f 237//252 512//252 513//252 +f 237//253 513//253 235//253 +f 235//254 513//254 514//254 +f 235//255 514//255 232//255 +f 232//255 514//255 515//255 +f 232//256 515//256 148//256 +f 148//256 515//256 516//256 +f 148//257 516//257 44//257 +f 44//257 516//257 517//257 +f 518//258 45//258 517//258 +f 517//258 45//258 44//258 +f 45//259 518//259 46//259 +f 46//259 518//259 519//259 +f 46//260 519//260 47//260 +f 47//260 519//260 520//260 +f 47//261 520//261 48//261 +f 48//261 520//261 521//261 +f 48//262 521//262 49//262 +f 49//262 521//262 522//262 +f 49//263 522//263 50//263 +f 50//263 522//263 523//263 +f 50//264 523//264 51//264 +f 51//264 523//264 524//264 +f 51//265 524//265 213//265 +f 213//265 524//265 525//265 +f 213//266 525//266 194//266 +f 194//266 525//266 526//266 +f 194//267 526//267 195//267 +f 195//267 526//267 527//267 +f 195//268 527//268 196//268 +f 196//268 527//268 528//268 +f 430//269 197//269 528//269 +f 528//269 197//269 196//269 +f 324//1 319//1 318//1 +f 272//1 296//1 297//1 +f 272//1 297//1 298//1 +f 272//1 298//1 299//1 +f 272//1 299//1 300//1 +f 272//1 300//1 290//1 +f 272//1 290//1 278//1 +f 334//1 308//1 304//1 +f 334//1 304//1 303//1 +f 334//1 303//1 302//1 +f 334//1 302//1 305//1 +f 334//1 305//1 306//1 +f 334//1 306//1 307//1 +f 334//1 307//1 301//1 +f 334//1 301//1 295//1 +f 334//1 295//1 294//1 +f 334//1 294//1 293//1 +f 334//1 293//1 292//1 +f 334//1 292//1 291//1 +f 334//1 291//1 296//1 +f 334//1 296//1 272//1 +f 334//1 272//1 271//1 +f 334//1 271//1 270//1 +f 334//1 270//1 269//1 +f 334//1 269//1 273//1 +f 334//1 273//1 274//1 +f 334//1 274//1 275//1 +f 334//1 275//1 276//1 +f 334//1 276//1 277//1 +f 334//1 277//1 268//1 +f 334//1 268//1 338//1 +f 268//1 267//1 339//1 +f 268//1 339//1 342//1 +f 268//1 342//1 343//1 +f 268//1 343//1 344//1 +f 268//1 344//1 345//1 +f 268//1 345//1 338//1 +f 308//1 334//1 333//1 +f 308//1 333//1 332//1 +f 308//1 332//1 335//1 +f 308//1 335//1 336//1 +f 308//1 336//1 337//1 +f 308//1 337//1 331//1 +f 323//1 322//1 326//1 +f 323//1 326//1 327//1 +f 323//1 327//1 328//1 +f 323//1 328//1 329//1 +f 323//1 329//1 330//1 +f 323//1 330//1 317//1 +f 323//1 317//1 312//1 +f 323//1 312//1 311//1 +f 323//1 311//1 310//1 +f 323//1 310//1 309//1 +f 323//1 309//1 313//1 +f 323//1 313//1 314//1 +f 323//1 314//1 315//1 +f 323//1 315//1 316//1 +f 323//1 316//1 308//1 +f 323//1 308//1 331//1 +f 283//1 282//1 285//1 +f 283//1 285//1 286//1 +f 283//1 286//1 287//1 +f 283//1 287//1 288//1 +f 283//1 288//1 289//1 +f 283//1 289//1 278//1 +f 283//1 278//1 290//1 +f 339//1 267//1 340//1 +f 340//1 267//1 341//1 +f 326//1 322//1 325//1 +f 325//1 322//1 321//1 +f 325//1 321//1 324//1 +f 324//1 321//1 320//1 +f 324//1 320//1 319//1 +f 285//1 282//1 284//1 +f 284//1 282//1 281//1 +f 284//1 281//1 279//1 +f 279//1 281//1 280//1 +f 401//1 403//1 402//1 +f 406//1 408//1 407//1 +f 371//1 370//1 382//1 +f 371//1 382//1 381//1 +f 371//1 381//1 380//1 +f 371//1 380//1 379//1 +f 371//1 379//1 378//1 +f 371//1 378//1 377//1 +f 371//1 377//1 376//1 +f 371//1 376//1 375//1 +f 371//1 375//1 374//1 +f 371//1 374//1 372//1 +f 400//1 406//1 405//1 +f 400//1 405//1 404//1 +f 400//1 404//1 403//1 +f 400//1 403//1 401//1 +f 356//1 355//1 408//1 +f 356//1 408//1 406//1 +f 356//1 406//1 400//1 +f 356//1 400//1 399//1 +f 356//1 399//1 398//1 +f 356//1 398//1 357//1 +f 358//1 357//1 398//1 +f 358//1 398//1 397//1 +f 358//1 397//1 396//1 +f 358//1 396//1 395//1 +f 358//1 395//1 394//1 +f 358//1 394//1 393//1 +f 352//1 351//1 416//1 +f 352//1 416//1 415//1 +f 352//1 415//1 414//1 +f 352//1 414//1 413//1 +f 352//1 413//1 412//1 +f 352//1 412//1 411//1 +f 352//1 411//1 410//1 +f 352//1 410//1 409//1 +f 352//1 409//1 353//1 +f 417//1 416//1 351//1 +f 417//1 351//1 350//1 +f 417//1 350//1 349//1 +f 417//1 349//1 348//1 +f 417//1 348//1 346//1 +f 417//1 346//1 347//1 +f 347//1 371//1 417//1 +f 417//1 371//1 372//1 +f 417//1 372//1 418//1 +f 418//1 372//1 373//1 +f 418//1 373//1 419//1 +f 419//1 373//1 429//1 +f 419//1 429//1 420//1 +f 420//1 429//1 428//1 +f 420//1 428//1 421//1 +f 421//1 428//1 427//1 +f 421//1 427//1 422//1 +f 422//1 427//1 426//1 +f 422//1 426//1 423//1 +f 423//1 426//1 425//1 +f 423//1 425//1 424//1 +f 353//1 409//1 354//1 +f 354//1 409//1 408//1 +f 354//1 408//1 355//1 +f 358//1 393//1 359//1 +f 359//1 393//1 392//1 +f 359//1 392//1 360//1 +f 360//1 392//1 391//1 +f 360//1 391//1 361//1 +f 361//1 391//1 390//1 +f 361//1 390//1 362//1 +f 362//1 390//1 389//1 +f 362//1 389//1 363//1 +f 363//1 389//1 388//1 +f 363//1 388//1 364//1 +f 364//1 388//1 387//1 +f 364//1 387//1 365//1 +f 365//1 387//1 366//1 +f 366//1 387//1 386//1 +f 366//1 386//1 367//1 +f 367//1 386//1 385//1 +f 367//1 385//1 368//1 +f 368//1 385//1 384//1 +f 368//1 384//1 369//1 +f 369//1 384//1 370//1 +f 370//1 384//1 383//1 +f 370//1 383//1 382//1 +f 430//1 446//1 445//1 +f 430//1 447//1 446//1 +f 499//1 497//1 496//1 +f 497//1 499//1 498//1 +f 507//1 495//1 494//1 +f 507//1 494//1 493//1 +f 507//1 493//1 492//1 +f 507//1 492//1 491//1 +f 507//1 491//1 490//1 +f 507//1 490//1 489//1 +f 507//1 489//1 488//1 +f 507//1 488//1 487//1 +f 507//1 487//1 486//1 +f 507//1 486//1 485//1 +f 507//1 485//1 484//1 +f 507//1 484//1 483//1 +f 479//1 478//1 458//1 +f 479//1 458//1 457//1 +f 479//1 457//1 456//1 +f 479//1 456//1 455//1 +f 479//1 455//1 454//1 +f 479//1 454//1 453//1 +f 479//1 453//1 452//1 +f 508//1 507//1 483//1 +f 508//1 483//1 482//1 +f 508//1 482//1 481//1 +f 508//1 481//1 480//1 +f 508//1 480//1 479//1 +f 508//1 479//1 452//1 +f 508//1 452//1 451//1 +f 508//1 451//1 450//1 +f 508//1 450//1 449//1 +f 495//1 507//1 506//1 +f 495//1 506//1 505//1 +f 495//1 505//1 504//1 +f 495//1 504//1 503//1 +f 495//1 503//1 502//1 +f 495//1 502//1 501//1 +f 495//1 501//1 500//1 +f 495//1 500//1 499//1 +f 495//1 499//1 496//1 +f 449//1 511//1 510//1 +f 449//1 510//1 509//1 +f 449//1 509//1 508//1 +f 448//1 517//1 516//1 +f 448//1 516//1 515//1 +f 448//1 515//1 514//1 +f 448//1 514//1 513//1 +f 448//1 513//1 512//1 +f 448//1 512//1 511//1 +f 448//1 511//1 449//1 +f 528//1 517//1 448//1 +f 528//1 448//1 447//1 +f 528//1 447//1 430//1 +f 517//1 528//1 527//1 +f 517//1 527//1 526//1 +f 517//1 526//1 525//1 +f 517//1 525//1 524//1 +f 517//1 524//1 523//1 +f 517//1 523//1 518//1 +f 444//1 438//1 437//1 +f 444//1 437//1 436//1 +f 444//1 436//1 435//1 +f 444//1 435//1 434//1 +f 444//1 434//1 433//1 +f 444//1 433//1 432//1 +f 444//1 432//1 431//1 +f 444//1 431//1 430//1 +f 444//1 430//1 445//1 +f 438//1 444//1 443//1 +f 438//1 443//1 442//1 +f 438//1 442//1 441//1 +f 438//1 441//1 440//1 +f 438//1 440//1 439//1 +f 458//1 478//1 477//1 +f 458//1 477//1 476//1 +f 458//1 476//1 475//1 +f 458//1 475//1 474//1 +f 458//1 474//1 473//1 +f 458//1 473//1 472//1 +f 458//1 472//1 459//1 +f 466//1 465//1 472//1 +f 466//1 472//1 471//1 +f 466//1 471//1 470//1 +f 466//1 470//1 469//1 +f 466//1 469//1 468//1 +f 466//1 468//1 467//1 +f 472//1 465//1 464//1 +f 472//1 464//1 463//1 +f 472//1 463//1 462//1 +f 472//1 462//1 461//1 +f 472//1 461//1 460//1 +f 472//1 460//1 459//1 +f 521//1 520//1 522//1 +f 522//1 520//1 519//1 +f 522//1 519//1 523//1 +f 523//1 519//1 518//1 +f 529//270 530//270 531//270 +f 531//270 530//270 532//270 +f 532//182 120//182 531//182 +f 531//182 120//182 97//182 +f 531//271 97//271 529//271 +f 529//271 97//271 75//271 +f 529//196 75//196 530//196 +f 530//196 75//196 74//196 +f 530//272 74//272 532//272 +f 532//272 74//272 120//272 diff --git a/resources/meshes/dagoma_pro_430_base.3mf b/resources/meshes/dagoma_pro_430_base.3mf new file mode 100644 index 0000000000..2ada69fa94 Binary files /dev/null and b/resources/meshes/dagoma_pro_430_base.3mf differ diff --git a/resources/meshes/flsun_sr.3mf b/resources/meshes/flsun_sr.3mf deleted file mode 100644 index 7eba390a66..0000000000 Binary files a/resources/meshes/flsun_sr.3mf and /dev/null differ diff --git a/resources/meshes/flsun_sr.stl b/resources/meshes/flsun_sr.stl new file mode 100644 index 0000000000..42ebf23e76 Binary files /dev/null and b/resources/meshes/flsun_sr.stl differ diff --git a/resources/meshes/hardprint_hozo_ix_platform.stl b/resources/meshes/hardprint_hozo_ix_platform.stl new file mode 100644 index 0000000000..d67b500325 Binary files /dev/null and b/resources/meshes/hardprint_hozo_ix_platform.stl differ diff --git a/resources/meshes/hardprint_hozo_platform.stl b/resources/meshes/hardprint_hozo_platform.stl new file mode 100644 index 0000000000..d67b500325 Binary files /dev/null and b/resources/meshes/hardprint_hozo_platform.stl differ diff --git a/resources/meshes/hellbot_hidra.obj b/resources/meshes/hellbot_hidra.obj index 8f5a11b3e9..992a5bdd20 100644 --- a/resources/meshes/hellbot_hidra.obj +++ b/resources/meshes/hellbot_hidra.obj @@ -1,6 +1,3 @@ -# Exported from 3D Builder -mtllib hellbot_hidra.mtl - o Object.1 v -48.976158 -116.868103 -0.999955 188 188 188 v -63.523849 -108.540039 1.000040 188 188 188 diff --git a/resources/meshes/hellbot_hidra_plus.obj b/resources/meshes/hellbot_hidra_plus.obj index 725c577fc3..4b39269b9b 100644 --- a/resources/meshes/hellbot_hidra_plus.obj +++ b/resources/meshes/hellbot_hidra_plus.obj @@ -1,6 +1,3 @@ -# Exported from 3D Builder -mtllib hellbot_hidra_plus.mtl - o Object.1 v -150.000000 160.000168 -1.000108 188 188 188 v -91.259621 -159.160385 -0.999880 188 188 188 diff --git a/resources/meshes/hellbot_magna_SE.obj b/resources/meshes/hellbot_magna_SE.obj new file mode 100644 index 0000000000..e877b555d9 --- /dev/null +++ b/resources/meshes/hellbot_magna_SE.obj @@ -0,0 +1,770 @@ +o Object.1 +v -55.084007 114.999969 0.966387 +v -55.084007 114.999969 0.414166 +v -110.122032 114.999969 0.966387 +v 0.046021 114.999969 0.966387 +v 0.046021 114.999969 -0.046018 +v -110.122032 114.999969 -0.966387 +v 55.084045 114.999969 0.966387 +v 55.084045 114.999969 0.414166 +v 55.084045 114.999969 -0.966387 +v 55.084045 114.999969 -0.506202 +v 110.122047 114.999969 -0.966387 +v -55.084007 114.999969 -0.966387 +v -55.084007 114.999969 -0.506202 +v 0.046021 114.999969 -0.966387 +v 110.122047 114.999969 0.966387 +v 110.674294 114.999969 0.966387 +v 110.674294 114.999969 -0.966387 +v 111.134460 114.907990 0.966387 +v 111.134460 114.907990 -0.966387 +v 111.686676 114.815979 0.966387 +v 111.686676 114.815979 -0.966387 +v 112.146866 114.631836 0.966387 +v 112.146866 114.631836 -0.966387 +v 112.607048 114.355743 0.966387 +v 112.607048 114.355743 -0.966387 +v 113.067238 114.079620 0.966387 +v 113.067238 114.079620 -0.966387 +v 113.435387 113.803528 0.966387 +v 113.435387 113.803528 -0.966387 +v 113.803520 113.435394 -0.966387 +v 113.803520 113.435394 0.966387 +v 114.079643 113.067200 -0.966387 +v 114.079643 113.067200 0.966387 +v 114.355743 112.607025 -0.966387 +v 114.355743 112.607025 0.966387 +v 114.631866 112.146820 -0.966387 +v 114.631866 112.146820 0.966387 +v 114.815948 111.686676 -0.966387 +v 114.815948 111.686676 0.966387 +v 114.907982 111.134430 -0.966387 +v 114.907982 111.134430 0.966387 +v 115.000000 110.674286 -0.966387 +v 115.000000 110.674286 0.966387 +v 115.000000 110.122040 -0.966387 +v 115.000000 110.122040 0.966387 +v 115.000000 55.084015 0.414166 +v 115.000000 55.084015 0.966387 +v 115.000000 55.084015 -0.506202 +v 115.000000 0.046021 -0.966387 +v 115.000000 55.084015 -0.966387 +v 115.000000 -55.084030 0.966387 +v 115.000000 -110.122032 0.966387 +v 115.000000 -55.084030 0.414166 +v 115.000000 0.046021 0.966387 +v 115.000000 -55.084030 -0.506202 +v 115.000000 -110.122032 -0.966387 +v 115.000000 -55.084030 -0.966387 +v 115.000000 0.046021 -0.046018 +v 110.674294 -114.999992 0.966387 +v 110.122047 -114.999992 0.966387 +v 110.674294 -114.999992 -0.966387 +v 110.122047 -114.999992 -0.966387 +v 111.134460 -114.907959 0.966387 +v 111.134460 -114.907959 -0.966387 +v 111.686676 -114.815918 0.966387 +v 111.686676 -114.815918 -0.966387 +v 112.146866 -114.631844 0.966387 +v 112.146866 -114.631844 -0.966387 +v 112.607048 -114.355736 0.966387 +v 112.607048 -114.355736 -0.966387 +v 113.067238 -114.079620 0.966387 +v 113.067238 -114.079620 -0.966387 +v 113.435387 -113.803513 0.966387 +v 113.435387 -113.803513 -0.966387 +v 113.803520 -113.435364 0.966387 +v 113.803520 -113.435364 -0.966387 +v 114.079643 -113.067223 0.966387 +v 114.079643 -113.067223 -0.966387 +v 114.355743 -112.607033 0.966387 +v 114.355743 -112.607033 -0.966387 +v 114.631866 -112.146843 0.966387 +v 114.631866 -112.146843 -0.966387 +v 114.815948 -111.686668 0.966387 +v 114.815948 -111.686668 -0.966387 +v 114.907982 -111.134445 0.966387 +v 114.907982 -111.134445 -0.966387 +v 115.000000 -110.674271 0.966387 +v 115.000000 -110.674271 -0.966387 +v 0.046021 -114.999992 -0.966387 +v 55.084045 -114.999992 -0.966387 +v 55.084045 -114.999992 -0.506202 +v 55.084045 -114.999992 0.966387 +v 55.084045 -114.999992 0.414166 +v 0.046021 -114.999992 0.966387 +v -55.084007 -114.999992 0.966387 +v -110.122032 -114.999992 0.966387 +v -55.084007 -114.999992 0.414166 +v 0.046021 -114.999992 -0.046018 +v -110.122032 -114.999992 -0.966387 +v -55.084007 -114.999992 -0.966387 +v -55.084007 -114.999992 -0.506202 +v -58.765495 111.410553 0.966387 +v -2.438972 112.607025 0.966387 +v -56.280479 113.803528 0.966387 +v 110.122047 0.046021 0.966387 +v 112.607048 2.438995 0.966387 +v 110.122047 57.476990 0.966387 +v 113.803520 56.280518 0.966387 +v 111.410561 58.765503 0.966387 +v -114.999992 110.122040 0.966387 +v -112.607033 114.355743 0.966387 +v -114.999992 110.674286 0.966387 +v -58.765495 -111.410553 0.966387 +v -2.438972 -112.607033 0.966387 +v -58.765495 -53.887558 0.966387 +v 110.122047 -57.569016 0.966387 +v 112.607048 -55.084030 0.966387 +v -56.280479 -113.803513 0.966387 +v -114.999992 -110.122032 0.966387 +v -2.438972 2.438995 0.966387 +v 53.887554 58.765503 0.966387 +v -2.438972 57.476990 0.966387 +v 113.803520 -53.887558 0.966387 +v 53.887554 113.803528 0.966387 +v 53.887554 -113.803513 0.966387 +v -58.765495 56.280518 0.966387 +v 53.887554 -56.280518 0.966387 +v 53.887554 1.242477 0.966387 +v -114.999992 -55.084030 0.966387 +v -114.999992 0.046021 0.966387 +v -58.765495 1.242477 0.966387 +v -114.999992 55.084015 0.966387 +v -2.438972 -55.084030 0.966387 +v -110.674248 -114.999992 0.966387 +v -114.631844 112.146820 0.966387 +v -114.907951 111.134430 0.966387 +v -110.674248 114.999969 0.966387 +v -112.146843 114.631836 0.966387 +v -111.686684 -114.815918 0.966387 +v -114.999992 -110.674271 0.966387 +v -111.686684 114.815979 0.966387 +v -114.355736 -112.607033 0.966387 +v -112.146843 -114.631844 0.966387 +v -111.134438 -114.907959 0.966387 +v -111.134438 114.907990 0.966387 +v -113.067223 114.079620 0.966387 +v -113.435326 113.803528 0.966387 +v -114.355736 112.607025 0.966387 +v -114.631844 -112.146843 0.966387 +v -114.079628 113.067200 0.966387 +v -113.803520 113.435394 0.966387 +v -114.907951 -111.134445 0.966387 +v -114.815910 -111.686668 0.966387 +v -112.607033 -114.355736 0.966387 +v -113.067223 -114.079620 0.966387 +v -113.803520 -113.435364 0.966387 +v -113.435326 -113.803513 0.966387 +v -114.079628 -113.067223 0.966387 +v -114.815910 111.686676 0.966387 +v -111.410545 58.765503 -0.966387 +v -112.607033 2.438995 -0.966387 +v -113.803520 56.280518 -0.966387 +v 56.280518 -113.803513 -0.966387 +v 2.438988 -112.607033 -0.966387 +v 58.765518 -111.410553 -0.966387 +v -114.999992 110.122040 -0.966387 +v -114.999992 55.084015 -0.966387 +v 113.803520 56.280518 -0.966387 +v 112.607048 2.438995 -0.966387 +v 111.410561 58.765503 -0.966387 +v -55.084007 57.476990 -0.966387 +v -55.084007 0.046021 -0.966387 +v -55.084007 -57.569016 -0.966387 +v -110.122032 0.046021 -0.966387 +v 0.046021 0.046021 -0.966387 +v 55.084045 57.476990 -0.966387 +v 57.476994 -55.084030 -0.966387 +v 113.803520 -53.887558 -0.966387 +v 1.242508 -56.280518 -0.966387 +v -113.803520 -53.887558 -0.966387 +v 0.046021 57.476990 -0.966387 +v -110.122032 -57.569016 -0.966387 +v 56.280518 1.242477 -0.966387 +v -53.887550 -113.803513 -0.966387 +v -114.999992 -110.122032 -0.966387 +v -114.999992 -55.084030 -0.966387 +v -110.122032 57.476990 -0.966387 +v -114.999992 0.046021 -0.966387 +v -112.607033 -55.084030 -0.966387 +v -110.674248 114.999969 -0.966387 +v -111.686684 -114.815918 -0.966387 +v -114.999992 -110.674271 -0.966387 +v -111.134438 -114.907959 -0.966387 +v -110.674248 -114.999992 -0.966387 +v -114.907951 -111.134445 -0.966387 +v -114.999992 110.674286 -0.966387 +v -113.067223 114.079620 -0.966387 +v -112.607033 114.355743 -0.966387 +v -112.146843 114.631836 -0.966387 +v -113.067223 -114.079620 -0.966387 +v -114.079628 -113.067223 -0.966387 +v -114.355736 -112.607033 -0.966387 +v -112.607033 -114.355736 -0.966387 +v -112.146843 -114.631844 -0.966387 +v -114.631844 -112.146843 -0.966387 +v -113.803520 113.435394 -0.966387 +v -113.435326 113.803528 -0.966387 +v -111.686684 114.815979 -0.966387 +v -111.134438 114.907990 -0.966387 +v -114.815910 -111.686668 -0.966387 +v -113.803520 -113.435364 -0.966387 +v -113.435326 -113.803513 -0.966387 +v -114.631844 112.146820 -0.966387 +v -114.355736 112.607025 -0.966387 +v -114.079628 113.067200 -0.966387 +v -114.907951 111.134430 -0.966387 +v -114.815910 111.686676 -0.966387 +v -114.999992 0.046021 -0.046018 +v -114.999992 55.084015 -0.506202 +v -114.999992 55.084015 0.414166 +v -114.999992 -55.084030 -0.506202 +v -114.999992 -55.084030 0.414166 + +usemtl Default_0 +f 1 2 3 +f 15 8 7 +f 15 11 8 +f 8 11 10 +f 8 10 5 +f 5 4 8 +f 4 5 2 +f 13 2 5 +f 5 14 13 +f 12 13 14 +f 171 12 14 +f 14 181 171 +f 181 175 171 +f 172 171 175 +f 173 172 175 +f 173 175 179 +f 173 179 164 +f 164 184 173 +f 99 173 184 +f 184 100 99 +f 99 100 101 +f 99 101 97 +f 99 97 96 +f 96 134 99 +f 194 99 134 +f 134 144 194 +f 193 194 144 +f 144 139 193 +f 191 193 139 +f 139 143 191 +f 204 191 143 +f 143 154 204 +f 203 204 154 +f 154 155 203 +f 200 203 155 +f 155 157 200 +f 212 200 157 +f 157 156 212 +f 211 212 156 +f 211 156 158 +f 158 201 211 +f 200 211 201 +f 200 201 202 +f 142 202 201 +f 202 142 149 +f 149 205 202 +f 191 202 205 +f 191 205 210 +f 191 210 195 +f 191 195 192 +f 191 192 185 +f 119 185 192 +f 192 140 119 +f 210 153 152 +f 195 152 140 +f 185 119 221 +f 221 186 185 +f 185 186 180 +f 185 180 189 +f 185 189 182 +f 182 99 185 +f 174 182 189 +f 182 174 173 +f 174 189 180 +f 180 161 174 +f 187 174 161 +f 161 160 187 +f 6 187 160 +f 6 160 166 +f 166 190 6 +f 190 3 6 +f 3 190 137 +f 166 110 112 +f 112 196 166 +f 166 196 198 +f 166 198 199 +f 166 199 208 +f 166 208 209 +f 208 145 209 +f 199 141 208 +f 198 138 199 +f 196 197 198 +f 197 111 198 +f 111 197 146 +f 207 146 197 +f 146 207 147 +f 216 136 159 +f 159 217 216 +f 216 217 213 +f 196 216 213 +f 196 213 214 +f 196 214 215 +f 196 215 206 +f 196 206 207 +f 151 206 215 +f 150 215 214 +f 148 214 213 +f 135 213 217 +f 136 216 196 +f 217 159 135 +f 213 135 148 +f 214 148 150 +f 215 150 151 +f 147 206 151 +f 206 147 207 +f 196 207 197 +f 196 112 136 +f 110 166 219 +f 219 220 110 +f 220 132 110 +f 46 45 47 +f 47 54 46 +f 58 46 54 +f 54 53 58 +f 55 58 53 +f 53 56 55 +f 55 56 57 +f 57 49 55 +f 49 57 178 +f 49 178 169 +f 50 49 169 +f 169 168 50 +f 44 50 168 +f 44 168 170 +f 44 170 11 +f 11 17 44 +f 17 42 44 +f 44 42 45 +f 43 45 42 +f 42 40 43 +f 41 43 40 +f 40 38 41 +f 39 41 38 +f 38 36 39 +f 37 39 36 +f 36 34 37 +f 35 37 34 +f 34 32 35 +f 33 35 32 +f 32 30 33 +f 31 33 30 +f 30 29 31 +f 28 31 29 +f 27 28 29 +f 27 29 38 +f 25 27 38 +f 25 26 27 +f 26 25 24 +f 23 24 25 +f 23 25 42 +f 21 23 42 +f 19 21 42 +f 19 20 21 +f 22 21 20 +f 18 17 16 +f 17 18 19 +f 20 19 18 +f 21 22 23 +f 24 23 22 +f 28 27 26 +f 29 30 38 +f 30 32 38 +f 32 34 38 +f 34 36 38 +f 25 38 40 +f 25 40 42 +f 17 19 42 +f 11 16 17 +f 176 11 170 +f 176 170 169 +f 169 183 176 +f 175 176 183 +f 175 183 177 +f 169 177 183 +f 176 9 11 +f 9 176 14 +f 14 10 9 +f 50 44 48 +f 48 44 46 +f 168 169 170 +f 48 49 50 +f 49 48 58 +f 177 169 178 +f 177 178 56 +f 56 165 177 +f 164 177 165 +f 165 163 164 +f 163 90 164 +f 89 164 90 +f 89 90 91 +f 89 91 98 +f 98 101 89 +f 93 98 91 +f 60 93 91 +f 60 91 62 +f 62 61 60 +f 59 60 61 +f 61 64 59 +f 63 59 64 +f 64 66 63 +f 65 63 66 +f 66 68 65 +f 67 65 68 +f 68 70 67 +f 69 67 70 +f 70 72 69 +f 71 69 72 +f 72 74 71 +f 73 71 74 +f 74 76 73 +f 75 73 76 +f 76 78 75 +f 77 75 78 +f 78 80 77 +f 79 77 80 +f 80 82 79 +f 81 79 82 +f 82 84 81 +f 83 81 84 +f 84 86 83 +f 85 83 86 +f 86 88 85 +f 87 85 88 +f 88 56 87 +f 52 87 56 +f 92 94 93 +f 222 129 130 +f 130 218 222 +f 221 222 218 +f 218 188 221 +f 188 218 219 +f 219 167 188 +f 188 167 161 +f 167 162 161 +f 167 166 162 +f 218 130 220 +f 129 222 119 +f 94 95 97 +f 94 97 98 +f 51 52 53 +f 56 88 62 +f 88 86 62 +f 86 84 62 +f 84 82 62 +f 82 80 74 +f 80 78 74 +f 78 76 74 +f 82 74 72 +f 82 72 70 +f 82 70 68 +f 82 68 66 +f 82 66 64 +f 82 64 61 +f 82 61 62 +f 60 92 93 +f 98 93 94 +f 90 62 91 +f 90 163 62 +f 163 165 62 +f 56 62 165 +f 57 56 178 +f 56 53 52 +f 58 55 49 +f 53 54 51 +f 46 58 48 +f 45 46 44 +f 132 220 130 +f 220 219 218 +f 167 219 166 +f 138 198 111 +f 141 199 138 +f 145 208 141 +f 137 209 145 +f 209 137 190 +f 166 209 190 +f 160 162 166 +f 187 6 171 +f 160 161 162 +f 174 187 171 +f 161 180 188 +f 186 188 180 +f 186 221 188 +f 222 221 119 +f 140 192 195 +f 152 195 210 +f 153 210 205 +f 205 149 153 +f 201 158 142 +f 200 212 211 +f 203 200 202 +f 204 203 202 +f 191 204 202 +f 193 191 185 +f 194 193 185 +f 99 194 185 +f 95 96 97 +f 101 98 97 +f 100 89 101 +f 100 184 89 +f 99 182 173 +f 164 89 184 +f 177 164 179 +f 177 179 175 +f 172 173 174 +f 171 172 174 +f 175 181 176 +f 181 14 176 +f 12 171 6 +f 6 13 12 +f 6 2 13 +f 14 5 10 +f 9 10 11 +f 16 11 15 +f 7 8 4 +f 6 3 2 +f 4 2 1 + +vt 0.490063 0.010300 +vt 0.732512 0.252749 +vt 0.490063 0.257899 +vt 0.732512 0.005150 +vt 0.974564 -0.000000 +vt 0.974564 0.247203 +vt 0.995561 0.020996 +vt 0.995561 0.018619 +vt 0.995165 0.016639 +vt 0.994769 0.014262 +vt 0.993976 0.012281 +vt 0.976942 -0.000000 +vt 0.978922 0.000396 +vt 0.981299 0.000792 +vt 0.983280 0.001585 +vt 0.985261 0.002773 +vt 0.987242 0.003962 +vt 0.988826 0.005150 +vt 0.992788 0.010300 +vt 0.991599 0.008319 +vt 0.990411 0.006735 +vt 0.985261 0.257899 +vt 0.974564 0.495198 +vt 0.732512 0.500348 +vt 0.732512 0.747947 +vt 0.490063 0.505498 +vt 0.490063 0.742401 +vt 0.490063 0.979700 +vt 0.247614 0.737251 +vt 0.247614 0.974550 +vt 0.005561 0.969004 +vt 0.005561 0.732101 +vt 0.005561 0.495198 +vt 0.247614 0.500348 +vt 0.247614 0.263049 +vt 0.247614 0.015450 +vt 0.005561 0.020996 +vt 0.026557 -0.000000 +vt 0.258310 0.005150 +vt 0.263460 -0.000000 +vt 0.500759 -0.000000 +vt 0.737662 -0.000000 +vt 0.024180 -0.000000 +vt 0.022200 0.000396 +vt 0.019823 0.000792 +vt 0.005561 0.018619 +vt 0.005957 0.016639 +vt 0.006353 0.014262 +vt 0.007146 0.012281 +vt 0.008334 0.010300 +vt 0.017842 0.001585 +vt 0.015861 0.002773 +vt 0.013880 0.003962 +vt 0.009523 0.008319 +vt 0.010711 0.006735 +vt 0.012296 0.005150 +vt 0.005561 0.257899 +vt 0.026557 0.990000 +vt 0.024180 0.990000 +vt 0.022200 0.989604 +vt 0.019823 0.989208 +vt 0.017842 0.988415 +vt 0.015861 0.987227 +vt 0.005561 0.971381 +vt 0.013880 0.986038 +vt 0.012296 0.984850 +vt 0.010711 0.983266 +vt 0.009523 0.981681 +vt 0.008334 0.979700 +vt 0.007146 0.977719 +vt 0.005957 0.973361 +vt 0.006353 0.975738 +vt 0.258310 0.984850 +vt 0.263460 0.990000 +vt 0.500759 0.990000 +vt 0.732512 0.984850 +vt 0.974564 0.990000 +vt 0.737662 0.990000 +vt 0.974564 0.742401 +vt 0.985261 0.505498 +vt 0.990411 0.263049 +vt 0.995561 0.257899 +vt 0.995561 0.495198 +vt 0.995561 0.732101 +vt 0.990411 0.737251 +vt 0.995561 0.969004 +vt 0.980111 0.747947 +vt 0.976942 0.990000 +vt 0.978922 0.989604 +vt 0.981299 0.989208 +vt 0.983280 0.988415 +vt 0.985261 0.987227 +vt 0.995561 0.971381 +vt 0.995165 0.973361 +vt 0.994769 0.975738 +vt 0.987242 0.986038 +vt 0.993976 0.977719 +vt 0.992788 0.979700 +vt 0.991599 0.981681 +vt 0.990411 0.983266 +vt 0.988826 0.984850 + +usemtl Mat_0 +f 1/74 3/58 104/73 +f 104/73 103/28 1/74 +f 4/75 1/74 103/28 +f 103/28 124/76 4/75 +f 7/78 4/75 124/76 +f 124/76 15/77 7/78 +f 139/45 119/37 140/46 +f 139/45 140/46 152/47 +f 139/45 152/47 153/48 +f 139/45 153/48 149/49 +f 110/31 3/58 137/59 +f 110/31 137/59 145/60 +f 110/31 145/60 141/61 +f 110/31 141/61 138/62 +f 110/31 138/62 111/63 +f 110/31 111/63 112/64 +f 112/64 146/65 147/66 +f 112/64 147/66 151/67 +f 112/64 151/67 150/68 +f 112/64 150/68 148/69 +f 112/64 148/69 135/70 +f 112/64 135/70 136/71 +f 136/71 135/70 159/72 +f 132/32 126/29 110/31 +f 102/30 110/31 126/29 +f 126/29 103/28 102/30 +f 103/28 126/29 122/27 +f 122/27 121/25 103/28 +f 120/26 121/25 122/27 +f 121/25 120/26 128/24 +f 128/24 105/23 121/25 +f 107/79 121/25 105/23 +f 105/23 106/80 107/79 +f 107/79 106/80 109/87 +f 107/79 109/87 15/77 +f 45/86 15/77 109/87 +f 45/86 109/87 108/85 +f 45/86 108/85 47/84 +f 24/92 39/95 26/96 +f 20/90 45/86 22/91 +f 22/91 45/86 24/92 +f 18/89 45/86 20/90 +f 16/88 45/86 18/89 +f 26/96 31/100 28/101 +f 26/96 33/99 31/100 +f 26/96 35/98 33/99 +f 26/96 37/97 35/98 +f 26/96 39/95 37/97 +f 24/92 41/94 39/95 +f 24/92 43/93 41/94 +f 24/92 45/86 43/93 +f 52/7 60/5 87/8 +f 60/5 52/7 116/6 +f 116/6 127/2 60/5 +f 125/4 60/5 127/2 +f 127/2 114/1 125/4 +f 125/4 114/1 94/41 +f 94/41 92/42 125/4 +f 95/40 94/41 114/1 +f 114/1 118/39 95/40 +f 96/38 95/40 118/39 +f 96/38 118/39 113/36 +f 113/36 119/37 96/38 +f 115/35 119/37 113/36 +f 113/36 114/1 115/35 +f 133/3 115/35 114/1 +f 120/26 115/35 133/3 +f 133/3 127/2 120/26 +f 115/35 120/26 131/34 +f 131/34 130/33 115/35 +f 129/57 115/35 130/33 +f 126/29 130/33 131/34 +f 131/34 120/26 126/29 +f 119/37 115/35 129/57 +f 114/1 113/36 118/39 +f 114/1 127/2 133/3 +f 60/5 125/4 92/42 +f 105/23 127/2 116/6 +f 116/6 117/22 105/23 +f 123/81 105/23 117/22 +f 117/22 52/7 123/81 +f 51/82 123/81 52/7 +f 54/83 123/81 51/82 +f 54/83 106/80 123/81 +f 116/6 52/7 117/22 +f 87/8 60/5 85/9 +f 85/9 60/5 83/10 +f 83/10 60/5 81/11 +f 81/11 73/18 79/19 +f 79/19 73/18 77/20 +f 77/20 73/18 75/21 +f 81/11 71/17 73/18 +f 81/11 69/16 71/17 +f 81/11 67/15 69/16 +f 81/11 65/14 67/15 +f 81/11 63/13 65/14 +f 81/11 59/12 63/13 +f 81/11 60/5 59/12 +f 47/84 106/80 54/83 +f 106/80 47/84 108/85 +f 15/77 45/86 16/88 +f 108/85 109/87 106/80 +f 105/23 123/81 106/80 +f 15/77 121/25 107/79 +f 127/2 105/23 128/24 +f 128/24 120/26 127/2 +f 122/27 126/29 120/26 +f 130/33 126/29 132/32 +f 112/64 111/63 146/65 +f 110/31 102/30 3/58 +f 139/45 149/49 142/50 +f 155/53 142/50 158/54 +f 155/53 158/54 156/55 +f 155/53 156/55 157/56 +f 154/52 142/50 155/53 +f 143/51 142/50 154/52 +f 139/45 142/50 143/51 +f 144/44 119/37 139/45 +f 134/43 119/37 144/44 +f 96/38 119/37 134/43 +f 121/25 15/77 124/76 +f 124/76 103/28 121/25 +f 102/30 103/28 104/73 +f 104/73 3/58 102/30 + diff --git a/resources/meshes/mixware_hyper_s_platform.stl b/resources/meshes/mixware_hyper_s_platform.stl new file mode 100644 index 0000000000..a1cff2b92e Binary files /dev/null and b/resources/meshes/mixware_hyper_s_platform.stl differ diff --git a/resources/meshes/ultimaker2_plus_connect_platform.obj b/resources/meshes/ultimaker2_plus_connect_platform.obj new file mode 100644 index 0000000000..3492ad1401 --- /dev/null +++ b/resources/meshes/ultimaker2_plus_connect_platform.obj @@ -0,0 +1,14925 @@ +v 125.437004 -114.209 5.226972 +v 124.488998 -114.299995 5.226972 +v 126.337006 -113.934006 5.226972 +v 128.490005 -112.166 5.226972 +v 127.166 -113.491997 5.226972 +v 50.25 114.222 2.675029 +v 50.25 -114.220001 2.674971 +v 129.220001 -0.0 2.675 +v 124.499001 114.500999 4.904028 +v 124.499001 114.500999 3.127029 +v 125.281006 114.440002 3.127029 +v -127.25499 111.046997 4.904028 +v -127.25499 111.046997 3.127028 +v -126.954002 111.772003 3.127028 +v -124.413994 -114.119003 4.903971 +v -124.413994 -114.119003 3.126971 +v -125.277 -113.659004 3.126971 +v 129.207001 -110.437996 5.226972 +v 128.93399 -111.336998 5.226972 +v 105.25 114.500999 4.904028 +v 105.25 114.500999 3.127029 +v 118.75 114.500999 3.127029 +v 118.75 114.500999 4.904028 +v -122.498001 114.500999 4.904028 +v -122.498001 114.500999 3.127029 +v -116.75 114.500999 3.127029 +v 105.25 -114.299995 5.226972 +v 129.300003 -109.490997 5.226973 +v 119.179001 -114.299995 5.226972 +v -125.438004 113.546997 4.904028 +v -125.438004 113.546997 3.127029 +v -124.769005 113.957001 3.127029 +v -117.179001 -114.299995 5.226972 +v -122.488998 -114.299995 5.226972 +v -127.299995 -109.490997 5.226973 +v 129.283997 109.718002 5.227026 +v 124.490997 114.302002 5.227028 +v 129.240997 110.252998 5.227027 +v -122.485001 -114.220001 2.674971 +v -124.306 -113.860001 2.674971 +v -123.421997 -114.129997 2.674971 +v 126.642006 113.707001 2.675029 +v 125.957993 113.990997 2.675029 +v 127.272995 113.32 2.675028 +v -126.489998 -112.166 5.226972 +v 128.955002 111.772003 4.904028 +v 128.955002 111.772003 3.127028 +v 129.25499 111.046997 3.127028 +v -125.32 113.385002 5.227028 +v -124.678001 113.778999 5.227028 +v -123.182999 114.257996 5.227028 +v 129.300003 -1e-06 5.227 +v 127.837006 112.839996 2.675028 +v 125.982002 114.067001 5.227028 +v 127.892998 112.896004 5.227028 +v 50.25 -114.299995 5.226972 +v -125.273003 113.32 2.675028 +v -127.220001 109.490997 2.675028 +v -123.143005 114.184998 2.675029 +v -48.25 114.222 2.675029 +v -48.25 -114.220001 2.674971 +v -127.119003 -111.414001 4.903973 +v -127.119003 -111.414001 3.126972 +v -127.403008 -110.476997 3.126972 +v 129.220001 -109.487 2.674973 +v 105.25 -114.220001 2.674971 +v 128.544998 112.441002 4.904028 +v 128.544998 112.441002 3.127028 +v -126.035004 113.038002 4.904028 +v -126.035004 113.038002 3.127028 +v -103.25 -114.220001 2.674971 +v -127.220001 -109.487 2.674973 +v -117.351006 -114.220001 2.674971 +v 119.085999 114.302002 5.227028 +v 129.283997 108.125 5.227026 +v 129.5 108.125 4.904027 +v 129.5 108.125 3.127028 +v 129.5 -1e-06 3.127 +v -103.25 -114.299995 5.226972 +v -116.75 114.500999 4.904028 +v -103.25 114.500999 3.127029 +v 128.776001 111.681 5.227027 +v 129.093002 110.917 5.227027 +v 119.350998 -114.220001 2.674971 +v 126.414001 -114.119003 4.903971 +v 126.414001 -114.119003 3.126971 +v 125.476997 -114.405998 3.126971 +v -48.25 -114.5 4.903971 +v -48.25 -114.5 3.126971 +v -103.25 -114.5 3.126971 +v -126.317993 112.277 2.675028 +v -125.835999 112.839996 2.675028 +v -126.655998 -112.278 4.903972 +v -126.655998 -112.278 3.126972 +v -103.25 114.500999 4.904028 +v -48.25 114.500999 3.127029 +v 125.25 114.242004 5.227028 +v -123.475998 -114.405998 4.903971 +v -123.475998 -114.405998 3.126971 +v -127.5 -109.500999 4.903974 +v -127.5 -109.500999 3.126973 +v -127.5 109.501999 3.127028 +v -126.381996 112.323997 5.227028 +v -125.892998 112.896004 5.227028 +v 50.25 114.500999 4.904028 +v 50.25 114.500999 3.127029 +v 129.5 -109.500999 4.903974 +v 129.5 -109.500999 3.126973 +v 129.403 -110.476997 3.126972 +v -48.25 -114.299995 5.226972 +v -48.25 114.302002 5.227028 +v -126.034004 -113.036995 4.903971 +v -126.034004 -113.036995 3.126972 +v -124.337006 -113.934006 5.226972 +v -125.166 -113.491997 5.226972 +v -125.891998 -112.894997 5.226972 +v 124.488007 114.222 2.675029 +v 127.437996 113.546997 4.904028 +v 127.437996 113.546997 3.127029 +v 128.034988 113.038002 3.127028 +v 119.221001 114.222 2.675029 +v 129.220001 108.125 2.675028 +v 126.044006 114.257004 4.904028 +v 126.044006 114.257004 3.127029 +v 126.769005 113.957001 3.127029 +v -127.437996 110.284004 4.904028 +v -127.437996 110.284004 3.127028 +v -126.775993 111.681 5.227027 +v 128.037003 -113.036995 4.903971 +v 128.037003 -113.036995 3.126972 +v 127.278 -113.659004 3.126971 +v 105.25 114.222 2.675029 +v -126.423004 -112.121002 2.674972 +v 128.987991 110.960999 2.675028 +v 126.769005 113.957001 4.904028 +v -126.543999 112.441002 4.904028 +v -126.543999 112.441002 3.127028 +v -103.25 114.215004 2.675029 +v -117.365997 114.215004 2.675029 +v -126.987991 110.960999 2.675028 +v -127.160995 110.241005 2.675028 +v -124.043999 114.257004 4.904028 +v -124.043999 114.257004 3.127029 +v -123.280006 114.440002 3.127029 +v 128.034988 113.038002 4.904028 +v -126.705009 111.644997 2.675028 +v 129.5 109.501999 4.904027 +v 129.5 109.501999 3.127028 +v -126.954002 111.772003 4.904028 +v 129.220001 109.490997 2.675028 +v -122.785004 114.214005 2.675029 +v -125.834999 -112.837997 2.674972 +v -125.120995 -113.426003 2.674971 +v 50.25 -114.5 4.903971 +v 50.25 -114.5 3.126971 +v 105.25 -114.5 4.903971 +v 105.25 -114.5 3.126971 +v 124.485001 -114.220001 2.674971 +v 126.306 -113.860001 2.674971 +v 128.423004 -112.122002 2.674972 +v -103.25 -114.5 4.903971 +v -116.75 -114.5 3.126971 +v 127.278 -113.659004 4.903971 +v 118.75 -114.5 4.903971 +v 118.75 -114.5 3.126971 +v 125.476997 -114.405998 4.903971 +v 124.498001 -114.5 3.126971 +v 129.118988 -111.414001 4.903973 +v 129.118988 -111.414001 3.126972 +v 128.656998 -112.278 3.126972 +v -127.5 109.501999 4.904027 +v 129.438004 110.284996 4.904028 +v 129.438004 110.284996 3.127028 +v 129.127991 -110.421997 2.674973 +v 128.860001 -111.306 2.674972 +v 125.281006 114.440002 4.904028 +v -116.75 -114.5 4.903971 +v -122.498993 -114.5 3.126971 +v -127.128006 -110.421997 2.674973 +v -122.498993 -114.5 4.903971 +v -125.277 -113.659004 4.903971 +v -123.280006 114.440002 4.904028 +v 105.25 114.302002 5.227028 +v -123.981995 114.067001 5.227028 +v -124.640999 113.707001 2.675029 +v -123.957001 113.990997 2.675029 +v -127.299995 109.494003 5.227026 +v 128.382996 112.323997 5.227028 +v 127.122002 -113.426003 2.674971 +v 127.837997 -112.837997 2.674972 +v 127.321007 113.385002 5.227028 +v -103.25 114.297005 5.227028 +v -117.190002 114.297005 5.227028 +v -127.240005 110.252998 5.227027 +v -127.065002 110.986 5.227027 +v 129.160995 110.241005 2.675028 +v -122.703003 114.295998 5.227028 +v -124.769005 113.957001 4.904028 +v 128.317993 112.277 2.675028 +v 128.705002 111.644997 2.675028 +v 128.656998 -112.278 4.903972 +v -127.403008 -110.476997 4.903973 +v -126.934006 -111.336998 5.226972 +v -127.206993 -110.436996 5.226972 +v 125.237 114.162994 2.675029 +v 129.403 -110.476997 4.903973 +v 50.25 114.302002 5.227028 +v 126.678001 113.778999 5.227028 +v -126.858994 -111.306 2.674972 +v -123.437004 -114.209 5.226972 +v 127.894997 -112.894997 5.226972 +v 129.5 -1e-06 4.904 +v 125.421997 -114.129997 2.674971 +v 124.498001 -114.5 4.903971 +v 129.25499 111.046997 4.904028 +v -48.25 114.500999 4.904028 +v 4.224 112.878998 -20.942972 +v 3.326 111.943001 -20.984972 +v 3.496 112.144997 -20.513971 +v 3.902 112.574005 -20.36297 +v -3.205 107.616997 -20.739973 +v -2.799 107.455002 -20.995974 +v -3.517 110.119995 -20.974972 +v -2.553 110.085007 -20.997972 +v -2.255 108.003998 -20.913973 +v -2.341 109.030998 -20.655973 +v -2.293 110.371002 -20.669973 +v -1.551 111.934998 -20.999971 +v -0.864 112.329994 -20.579971 +v -1.604 111.642006 -20.46397 +v 0.439 112.824997 -20.927971 +v -1.468 113.436996 -20.979971 +v 0.893 114.161003 -20.944971 +v -0.881 113.757996 -20.534971 +v -1.517 105.919998 -20.865973 +v -1.404 106.372993 -20.961973 +v 2.591 112.599998 -20.60297 +v 1.98 112.764 -20.985971 +v -1.097 106.807999 -20.575974 +v 0.491 105.821999 -20.750973 +v 0.913 105.473999 -20.840975 +v 2.923 113.808998 -20.992971 +v 2.179 113.93 -20.510971 +v -2.948 111.984001 -20.678972 +v -2.515 112.439995 -20.995972 +v 0.737 104.952995 -20.586973 +v 0.256 106.18 -20.440973 +v -2.074 106.009003 -20.529974 +v 1.337 113.068001 -20.384972 +v 3.396 106.124001 -20.724974 +v 2.611 105.272003 -20.554974 +v -3.605 110.124001 -20.348972 +v 2.507 106.448997 -20.372972 +v -1.104 105.350006 -20.445974 +v 3.049 113.439003 -20.461971 +v -3.589 108.678001 -20.481974 +v 3.603 107.161003 -20.391973 +v 4.352 107.017998 -20.652973 +v -2.041 107.949005 -20.177973 +v 1.663 106.178001 -20.256973 +v -3.302 111.051003 -20.260975 +v -2.937 107.045998 -20.211973 +v -2.254 112.581001 -20.196972 +v 4.329 108.433998 -20.297974 +v 5.215 110.256996 -20.435974 +v 5.474 108.928001 -20.354973 +v 4.502 110.106995 -20.265974 +v -0.025 113.664001 -20.17897 +v 4.502 106.446999 -20.196974 +v -0.703 112.883003 -20.177971 +v -2.269 110.748001 -20.234974 +v 4.272 112.332001 -20.314972 +v 4.165 111.348 -20.275972 +v -0.474 106.431 -20.126974 +v 5.386 107.872002 -20.056974 +v 0.472 104.869003 -20.079973 +v -2.493 109.298996 -20.151974 +v -3.312 108.241997 -19.982973 +v -1.865 111.932999 -20.097973 +v 3.084 112.957001 -20.234972 +v 2.011 104.970001 -19.931973 +v 5.516 110.725998 -19.918974 +v 3.424 105.529999 -20.010973 +v -2.06 106.253998 -19.874973 +v -1.407 106.807999 -19.893974 +v 3.131 106.839005 -19.904974 +v -0.927 105.354004 -19.949974 +v 4.3 112.777 -19.881971 +v -3.029 111.025993 -19.991972 +v 3.732 111.488998 -19.754972 +v 4.087 107.997002 -19.694975 +v -2.83 109.422997 -19.938972 +v 0.782 105.919998 -19.737972 +v 4.376 109.139 -19.750973 +v 5.582 108.736 -19.722973 +v 1.833 106.090004 -19.780973 +v 4.316 110.317001 -19.595972 +v -2.481 107.633003 -19.771975 +v 4.111 106.329002 -19.521973 +v 4.875 112.014 -19.424971 +v 4.888 107.201004 -19.554974 +v -0.525 105.654999 -19.618973 +v 2.989 105.667 -19.519974 +v 3.202 106.471001 -19.500975 +v 5.48 109.908997 -19.406973 +v 1.249 105.352997 -19.547974 +v 4.236 111.013 -19.317972 +v 4.749 109.521004 -19.289974 +v 4.618 107.960999 -19.306974 +v 5.22 109.694 -19.234974 +v 3.006 113.600998 -19.12397 +v 3.172 112.251999 -19.305971 +v 3.631 112.483002 -19.012972 +v 4.235 112.884995 0.992028 +v 3.492 112.112999 0.472028 +v 3.949 112.585999 0.414028 +v 3.382 111.917 0.962028 +v 2.997 113.425003 -0.755972 +v 3.407 112.778 -0.910972 +v 4.96 111.637001 -0.938972 +v 3.622 111.886002 -0.777972 +v 2.952 112.317001 -0.523972 +v 1.148 113.865005 -0.699971 +v 1.016 113.098 -0.651972 +v 3.84 113.238998 -0.305972 +v -0.785 113.424004 -0.658972 +v -0.422 112.678001 -0.428972 +v 2.292 112.631004 -0.340972 +v 2.136 113.992996 -0.372971 +v -2.276 111.567001 -0.561972 +v -2.884 111.818001 -0.344972 +v 0.334 114.142998 -0.130971 +v -1.442 113.343002 -0.385972 +v -2.807 109.708 -0.453972 +v -3.362 110.096001 -0.358972 +v -3.135 108.433998 -0.373973 +v -1.685 113.362 -0.055972 +v -2.243 108.050003 -0.174973 +v -1.376 111.924004 -0.107972 +v -2.178 110.698997 -0.050972 +v 1.3 112.875 0.020028 +v -1.446 106.775002 -0.167974 +v 2.261 113.964996 0.032029 +v -3.508 110.746002 0.244028 +v -2.404 109.279999 -0.009972 +v -1.038 105.737 -0.213974 +v -2.631 106.717995 -0.082974 +v -3.671 109.57 0.129028 +v 0.504 105.688995 -0.107974 +v -0.828 112.388 0.192028 +v -3.523 108.319 0.222027 +v 3.773 111.671997 -0.020972 +v 2.307 112.841003 0.268028 +v 0.609 105.043999 0.003026 +v 0.356 106.145004 0.191026 +v -2.903 112.042999 0.207028 +v 3.444 106.009003 0.008026 +v 1.94 105.980003 0.057026 +v -1.129 105.332001 0.356026 +v 1.871 104.956001 0.273026 +v -1.589 107.309998 0.235026 +v 0.494 113.015999 0.337028 +v 2.994 106.579994 0.194026 +v -0.464 106.476997 0.521026 +v 4.628 107.472 0.072027 +v 3.666 112.924004 0.292028 +v -2.287 108.569 0.476027 +v 4.272 107.931 0.270027 +v -2.571 106.518997 0.474026 +v 5.087 110.518997 0.261028 +v 5.374 108.616997 0.310028 +v -2.093 111.295998 0.540028 +v 1.152 113.825996 0.444029 +v 4.388 106.392006 0.393026 +v 2.858 105.206001 0.591026 +v 1.658 106.173996 0.457026 +v 4.619 109.903999 0.335028 +v 3.344 107.050003 0.498026 +v -0.91 113.385994 0.524028 +v -2.445 110.003998 0.483028 +v -0.942 112.625 0.509028 +v 3.998 112.141998 0.295028 +v 5.592 109.917 0.552028 +v 4.114 111.431 0.423028 +v -2.473 112.171997 0.605028 +v 0.128 104.934998 0.581026 +v 5.262 107.607002 0.919026 +v -3.273 108.222 0.741027 +v 4.946 111.823997 0.605028 +v 4.281 108.498001 0.701027 +v -1.647 107.233002 0.667026 +v 2.04 106.219002 0.751026 +v -3.225 110.056999 0.782028 +v 4.07 106.043007 0.971026 +v 4.389 109.749001 0.956028 +v 1.452 105.021996 0.980026 +v 4.093 110.818001 0.978028 +v 0.372 105.961998 0.960026 +v -2.147 106.585999 0.958026 +v -2.725 108.668999 0.801027 +v 5.653 109.141998 0.988028 +v -0.7 105.417999 0.959026 +v 3.932 107.635994 0.992027 +v 5.348 111.120003 0.999028 +v 2.461 106.238998 0.998026 +v -1.472 106.582001 0.964026 +v 2.667 112.475998 -19.797972 +v 3.136 113.597 -19.798971 +v 1.939 114.008003 -19.62697 +v 0.729 113.246002 -19.736971 +v 0.768 113.848 -19.754972 +v 1.733 112.806999 -19.516972 +v -2.024 112.659996 -19.353971 +v 0.382 112.850006 -19.234972 +v -1.066 113.629997 -19.260973 +v 0.358 114.113007 -19.244972 +v -1.571 112.021996 -19.180971 +v 2.12 112.914001 -18.939972 +v -2.448 110.805 -19.015972 +v -2.911 111.413002 -19.100971 +v 0.981 114.038994 -18.791971 +v -0.935 112.292999 -18.949972 +v -2.012 113.073997 -18.723972 +v 0.482 112.946007 -18.795973 +v -3.022 108.612 -18.772974 +v -3.448 109.597 -18.770973 +v -0.421 113.803001 -18.65097 +v -3.051 111.809998 -18.515972 +v -3.642 110.026001 -18.484974 +v -1.847 111.344002 -18.497971 +v -0.805 112.524002 -18.504971 +v 0.889 113.407997 -18.558971 +v -2.246 110.298996 -18.320972 +v -2.386 108.567001 -18.445974 +v -3.457 108.271004 -18.286972 +v -1.583 112.860001 -18.187971 +v -2.69 106.945999 -18.323975 +v -1.34 105.706001 -18.121973 +v -2.144 111.612999 -18.01597 +v -2.441 109.419006 -17.934973 +v -1.333 106.661003 -18.227974 +v -3.184 111.088997 -17.968973 +v -0.754 105.913994 -18.212973 +v -3.083 107.221001 -17.880974 +v -3.588 109.254005 -17.936974 +v -1.997 107.944 -17.911974 +v -1.807 105.779999 -17.777973 +v -1.068 106.833 -17.734974 +v 0.484 105.066002 -17.832973 +v 1.006 105.685005 -17.869972 +v 2.807 105.384995 -17.544973 +v -0.016 104.948997 -17.506973 +v 0.222 106.198997 -17.526972 +v -3.096 109.350006 -17.601974 +v -2.29 108.057999 -17.538973 +v -3.033 108.209999 -17.446974 +v -2.373 106.590004 -17.290974 +v 3.792 106.551994 -17.467974 +v 1.576 106.136002 -17.423973 +v -1.407 106.93 -17.353973 +v -0.87 105.355003 -17.141973 +v 2.92 106.68 -17.154972 +v 2.09 104.931999 -17.230974 +v 4.653 106.905998 -17.150972 +v -0.119 106.170998 -17.103973 +v 0.717 104.974998 -16.925974 +v 4.156 107.894005 -16.982973 +v 3.747 105.734001 -16.989973 +v 1.307 106.000999 -16.836975 +v -0.739 105.981995 -16.948973 +v 5.247 108.687996 -17.051973 +v 4.732 109.118996 -16.948973 +v 5.017 107.115997 -16.558973 +v 2.694 105.254997 -16.715973 +v 5.454 108.129005 -16.584972 +v 2.73 106.434998 -16.575974 +v 3.823 107.522003 -16.371975 +v 3.865 105.988007 -16.475973 +v 4.532 111.489998 -16.638971 +v 2.643 105.756996 -16.362974 +v 4.408 109.571999 -16.470974 +v 5.049 111.437004 -16.483971 +v 5.603 109.636002 -16.625973 +v 4.191 110.93 -16.442972 +v 3.104 112.997002 -16.344971 +v 5.144 111.691994 -15.983973 +v 3.999 113.022003 -16.073971 +v 3.547 111.785004 -16.120972 +v 4.79 107.258003 -16.105974 +v 5.614 109.431 -15.994972 +v 4.415 108.758003 -16.086973 +v 4.295 110.331001 -16.041973 +v 2.435 112.636002 -15.921973 +v 4.566 107.834999 -15.952973 +v 2.402 113.935997 -15.713973 +v 0.669 113.576004 -15.943973 +v 1.38 113.978996 -15.840972 +v 4.642 110.085007 -15.687973 +v 5.202 110.373001 -15.592972 +v 0.602 113.029007 -15.662972 +v 4.13 111.265999 -15.494973 +v 1.95 112.740005 -15.367971 +v 4.223 112.577995 -15.318973 +v -2.024 112.659996 -15.473972 +v -1.066 113.629997 -15.380972 +v 3.248 112.163002 -15.446973 +v 0.358 114.113007 -15.364972 +v -1.571 112.021996 -15.300973 +v 2.547 113.776001 -15.139972 +v 0.337 112.833 -15.316973 +v -2.448 110.805 -15.135972 +v -2.911 111.413002 -15.220972 +v 0.82 114.055 -14.931973 +v -0.935 112.292999 -15.069972 +v 2.877 112.929001 -15.035973 +v -2.012 113.073997 -14.843972 +v 0.482 112.946007 -14.915973 +v -3.022 108.612 -14.892972 +v -3.448 109.597 -14.890973 +v -0.421 113.803001 -14.770972 +v -3.331 111.270004 -14.758973 +v -1.847 111.344002 -14.617971 +v -0.805 112.524002 -14.624972 +v 0.877 113.406006 -14.677972 +v -2.246 110.298996 -14.440972 +v -2.386 108.567001 -14.565972 +v -3.665 109.514999 -14.359973 +v -3.455 108.245003 -14.393974 +v -1.583 112.860001 -14.307972 +v -2.912 111.803001 -14.313972 +v -2.69 106.945999 -14.443974 +v -1.34 105.706001 -14.241973 +v -2.144 111.612999 -14.135972 +v -2.39 109.292999 -14.226973 +v -1.333 106.661003 -14.347974 +v -3.259 110.715004 -14.015972 +v -0.836 105.967003 -14.351974 +v -2.983 107.069 -13.999973 +v -1.997 107.944 -14.031973 +v -1.849 105.789993 -13.792974 +v -3.359 108.526001 -13.751973 +v -1.068 106.833 -13.854974 +v 0.478 105.065002 -13.950974 +v 0.928 105.800003 -13.955974 +v -2.697 109.528 -13.838972 +v 2.734 105.499001 -13.739974 +v -0.131 104.959007 -13.563973 +v 2.515 106.121002 -13.700974 +v 0.222 106.198997 -13.646974 +v -2.285 107.937996 -13.593973 +v 1.945 104.942001 -13.414973 +v -2.408 106.729004 -13.390973 +v -1.407 106.93 -13.473973 +v 4.626 107.059006 -13.377974 +v 1.663 106.175995 -13.377974 +v 4.243 107.766998 -13.264973 +v -0.119 106.170998 -13.223973 +v 4.15 106.009003 -13.076974 +v 2.974 106.743004 -13.121973 +v -0.452 105.339996 -13.111974 +v 0.919 104.884995 -13.175973 +v 1.307 106.000999 -12.956973 +v -0.739 105.981995 -13.068974 +v 5.283 110.077003 -12.953973 +v 1.915 105.146996 -12.743974 +v 4.527 109.754005 -12.824972 +v 5.488 108.360001 -12.886972 +v 3.709 105.821999 -12.648973 +v 2.73 106.434998 -12.695973 +v 4.351 108.827003 -12.712973 +v 3.713 107.384003 -12.516973 +v 4.413 111.029999 -12.749972 +v 2.604 105.869003 -12.516973 +v 3.95 112.299004 -12.618972 +v 4.106 108.098999 -12.482973 +v 4.998 107.193001 -12.517973 +v 5.05 111.438995 -12.601972 +v 5.65 109.931 -12.247972 +v 5.144 111.691994 -12.103972 +v 3.912 111.489998 -12.415972 +v 3.88 112.946999 -12.338972 +v 5.274 108.163994 -12.123974 +v 4.295 110.331001 -12.161972 +v 1.812 113.932999 -12.057972 +v 4.506 109.270996 -12.078972 +v 4.118 106.838005 -12.229974 +v 2.435 112.636002 -12.041972 +v 3.898 113.179001 -11.869972 +v 3.587 111.704002 -12.092973 +v 0.669 113.576004 -12.063972 +v 5.086 109.575005 -11.788972 +v 1.825 114.142998 -11.632973 +v 0.602 113.029007 -11.782972 +v 4.327 110.949997 -11.680972 +v 1.932 112.760002 -11.707973 +v 4.809 111.645996 -11.547973 +v 3.221 112.308998 -11.404973 +v -0.734 113.502998 -11.815972 +v -1.571 112.021996 -11.420972 +v -0.597 113.874001 -11.363973 +v 2.282 113.835999 -11.228972 +v 3.698 112.901001 -11.319972 +v 1.914 112.945 -11.173972 +v 0.337 112.833 -11.436972 +v -2.448 110.805 -11.255972 +v -2.911 111.413002 -11.340972 +v -2.261 112.834999 -11.176973 +v -0.935 112.292999 -11.189972 +v 0.482 112.946007 -11.035973 +v 0.039 113.944 -10.923973 +v -3.022 108.612 -11.012973 +v -3.448 109.597 -11.010972 +v -3.034 111.841995 -10.758972 +v -1.702 113.135002 -10.663973 +v -3.642 110.026001 -10.724973 +v 1.31 113.635002 -10.868973 +v -1.847 111.344002 -10.737972 +v -1.023 112.398994 -10.692972 +v -2.417 109.941002 -10.806973 +v -0.415 113.154999 -10.602973 +v -2.247 108.203003 -10.635973 +v -3.457 108.271004 -10.526973 +v -2.69 106.945999 -10.563973 +v -1.34 105.706001 -10.361974 +v -1.333 106.661003 -10.467973 +v -3.196 111.036003 -10.199973 +v -0.754 105.913994 -10.452973 +v -3.083 107.221001 -10.120974 +v -2.441 109.419006 -10.174973 +v -2.247 111.005997 -10.316972 +v -3.588 109.254005 -10.176973 +v -2.305 111.766998 -10.231972 +v -1.997 107.944 -10.151974 +v -1.807 105.779999 -10.017974 +v -1.068 106.833 -9.974974 +v 0.47 105.069 -10.074973 +v 1.006 105.685005 -10.109974 +v 2.807 105.384995 -9.784973 +v -0.94 105.245003 -9.738974 +v 0.222 106.198997 -9.766973 +v -3.096 109.350006 -9.841972 +v -2.29 108.057999 -9.778973 +v -2.892 107.546997 -9.624973 +v -2.074 106.170998 -9.604973 +v 0.96 104.813004 -9.426974 +v 3.792 106.551994 -9.707973 +v 1.576 106.136002 -9.663973 +v -1.411 106.935005 -9.595974 +v 2.92 106.68 -9.394973 +v 3.171 105.336006 -9.290973 +v 4.653 106.905998 -9.390973 +v -1.395 106.335999 -9.294973 +v -0.144 106.160004 -9.317973 +v 4.156 107.894005 -9.222974 +v -0.233 105.226997 -9.215974 +v 1.309 106.007004 -9.084972 +v 4.412 106.338997 -8.914973 +v 5.247 108.687996 -9.291972 +v 4.732 109.118996 -9.188972 +v 2.107 105.224998 -8.819973 +v 5.171 107.407005 -8.798973 +v 2.74 106.431999 -8.800974 +v 1.153 105.529999 -8.864973 +v 3.821 107.514999 -8.604973 +v 5.627 109.310997 -8.885972 +v 4.532 111.489998 -8.878973 +v 4.4 110.409996 -8.750973 +v 5.049 111.437004 -8.723972 +v 3.852 106.321999 -8.464973 +v 4.395 108.935997 -8.364972 +v 3.104 112.997002 -8.584973 +v 5.389 111.166 -8.286972 +v 3.88 112.946999 -8.458972 +v 3.547 111.785004 -8.360972 +v 5.553 109.116005 -8.247972 +v 4.989 107.764999 -8.241973 +v 4.295 110.331001 -8.281973 +v 2.435 112.636002 -8.161973 +v 3.913 113.166 -7.989972 +v 2.455 113.950996 -7.857971 +v 0.669 113.576004 -8.183971 +v 1.38 113.978996 -8.080973 +v 5.094 109.796997 -7.873973 +v 0.602 113.029007 -7.902971 +v 4.328 110.926003 -7.818972 +v 4.754 111.888 -7.668972 +v 1.932 112.760002 -7.827971 +v -2.024 112.659996 -7.713972 +v -1.062 113.631004 -7.621972 +v 3.221 112.308998 -7.524972 +v 0.594 114.167 -7.503972 +v -1.268 112.329994 -7.670972 +v 3.694 112.905998 -7.439971 +v 1.914 112.945 -7.293972 +v 0.337 112.833 -7.556972 +v -2.078 111.305 -7.434972 +v -2.911 111.413002 -7.460972 +v -0.935 112.292999 -7.309972 +v 2.116 113.752998 -7.221972 +v -2.811 112.217003 -7.081972 +v 0.482 112.946007 -7.155972 +v -3.357 109.460999 -7.202973 +v -2.584 110.241005 -7.266973 +v -0.194 113.751999 -6.861971 +v -1.777 113.125999 -6.816971 +v -3.491 110.616997 -6.944973 +v -1.847 111.344002 -6.857973 +v -1.023 112.398994 -6.812972 +v -2.287 110.311996 -6.865973 +v -2.243 107.442001 -6.836973 +v -2.437 108.915001 -6.874972 +v -0.417 113.155998 -6.721972 +v -3.649 108.990997 -6.663972 +v -2.001 106.279999 -6.658974 +v -3.125 107.793007 -6.847973 +v -3.223 111.294998 -6.482972 +v -1.604 106.927002 -6.579972 +v -2.441 109.419006 -6.294973 +v -0.595 105.748001 -6.570974 +v -2.721 106.659004 -6.306973 +v -2.258 111.189003 -6.369972 +v -3.588 109.254005 -6.296973 +v -2.583 111.919998 -6.385972 +v -1.997 107.944 -6.271972 +v -1.201 105.424004 -6.141974 +v -1.068 106.833 -6.093972 +v -3.077 107.334 -6.073973 +v 1.033 105.820999 -6.159974 +v 2.382 105.377998 -6.045974 +v 0.47 105.043999 -6.163974 +v -3.096 109.350006 -5.961973 +v 0.222 106.198997 -5.886974 +v 0.017 104.938004 -5.857974 +v -2.29 108.057999 -5.898973 +v -2.892 107.547997 -5.744973 +v -1.522 105.632996 -5.679974 +v 2.775 106.345001 -5.832974 +v -1.407 106.93 -5.713974 +v 1.959 104.939995 -5.600974 +v 1.663 106.175995 -5.617974 +v 4.234 107.768997 -5.496974 +v -1.398 106.453003 -5.464974 +v 3.831 106.210999 -5.810974 +v -0.119 106.170998 -5.463974 +v 0.844 104.865997 -5.469974 +v 3.748 105.733002 -5.348974 +v 2.974 106.743004 -5.361973 +v -0.582 105.683998 -5.252974 +v 0.795 105.112 -5.112974 +v 1.307 106.000999 -5.196974 +v 4.659 106.891998 -5.495972 +v 5.272 108.765999 -5.401972 +v 2.412 105.194 -5.070974 +v 5.016 107.113998 -4.923972 +v 4.527 109.754005 -5.064973 +v 3.709 105.821999 -4.888974 +v 5.454 108.129005 -4.944973 +v 2.73 106.434998 -4.935973 +v 4.351 108.827003 -4.952973 +v 3.713 107.384003 -4.756972 +v 3.972 112.727005 -4.738971 +v 5.05 111.438995 -4.841972 +v 5.486 109.571999 -5.122973 +v 2.605 105.869003 -4.757974 +v 4.106 108.098999 -4.722973 +v 5.65 109.931 -4.487973 +v 4.191 110.93 -4.802972 +v 3.104 112.997002 -4.704971 +v 5.144 111.691994 -4.343972 +v 3.547 111.785004 -4.480972 +v 5.274 108.163994 -4.363973 +v 4.295 110.331001 -4.401972 +v 4.506 109.270996 -4.318974 +v 4.118 106.838005 -4.469974 +v 2.435 112.636002 -4.281972 +v 3.913 113.166 -4.109972 +v 2.455 113.950996 -3.977971 +v 0.669 113.576004 -4.303971 +v 1.38 113.978996 -4.200972 +v 5.086 109.575005 -4.028974 +v 0.602 113.029007 -4.022972 +v 4.327 110.949997 -3.920972 +v 1.932 112.760002 -3.947972 +v 4.809 111.645996 -3.787972 +v -2.024 112.659996 -3.833972 +v -1.062 113.631004 -3.741971 +v 3.221 112.308998 -3.644972 +v 0.594 114.167 -3.623971 +v -1.268 112.329994 -3.790972 +v 3.699 112.901001 -3.559972 +v 1.914 112.945 -3.413972 +v 0.337 112.833 -3.676972 +v -2.078 111.305 -3.554972 +v -2.911 111.413002 -3.580972 +v -0.935 112.292999 -3.429972 +v 2.116 113.752998 -3.341971 +v -2.811 112.217003 -3.201972 +v 0.482 112.946007 -3.275972 +v -3.357 109.460999 -3.322972 +v -2.584 110.241005 -3.386972 +v -0.193 113.751999 -2.981972 +v -1.777 113.125999 -2.936972 +v -3.49 110.616997 -3.064972 +v -1.847 111.344002 -2.977972 +v -1.023 112.398994 -2.932972 +v -2.287 110.311996 -2.985972 +v -2.243 107.442001 -2.956974 +v -2.437 108.915001 -2.994972 +v -0.417 113.155998 -2.841972 +v -3.649 108.990997 -2.783972 +v -2.001 106.279999 -2.778974 +v -3.125 107.793007 -2.967972 +v -3.223 111.294998 -2.602972 +v -1.604 106.927002 -2.699974 +v -2.441 109.419006 -2.414972 +v -0.595 105.748001 -2.690974 +v -3.083 107.221001 -2.360974 +v -2.258 111.189003 -2.489972 +v -3.588 109.254005 -2.416973 +v -2.583 111.919998 -2.505972 +v -1.997 107.944 -2.391972 +v -1.688 105.645004 -2.211974 +v -1.068 106.833 -2.213974 +v 1.033 105.820999 -2.279974 +v 3.121 105.700005 -2.063974 +v 0.486 105.042 -2.282974 +v -3.096 109.350006 -2.081972 +v 0.155 106.248001 -1.833974 +v -0.131 104.959007 -1.923974 +v 2.187 105.022995 -1.896974 +v -2.29 108.057999 -2.018973 +v -2.916 107.849998 -1.850973 +v 2.775 106.345001 -1.952974 +v -1.411 106.935005 -1.835974 +v 1.663 106.175995 -1.737974 +v -1.963 106.271996 -1.701974 +v 4.234 107.768997 -1.616974 +v 4.556 106.940002 -1.746974 +v 2.974 106.743004 -1.481974 +v -0.397 105.410004 -1.398974 +v 3.72 105.692001 -1.362974 +v 0.919 104.884995 -1.535974 +v 1.309 106.007004 -1.324974 +v -0.355 105.943001 -1.423974 +v 5.343 109.705002 -1.375973 +v 5.429 108.189003 -1.289973 +v 1.911 105.136002 -1.114974 +v 5.016 107.113998 -1.043974 +v 4.696 110.167 -1.231972 +v 2.74 106.431999 -1.040974 +v 4.341 108.787003 -1.082972 +v 3.864 107.658997 -1.035973 +v 5.66 109.131996 -0.799972 +v 2.802 105.935997 -0.852974 +v 4.489 106.791 -0.639974 +v 4.185 110.703995 -0.733972 +v 5.319 111.280998 -0.660972 +v 4.127 107.459 -0.577973 +v 4.4 108.898003 -0.635973 +v 5.497 110.338005 -0.352972 +v 5.326 108.788002 -0.371973 +v 4.512 109.752998 -0.368972 +v 4.92 111.787994 -0.053972 +v 5.005 109.720001 -0.135972 +v 128.506012 -103.674004 -17.584026 +v 127.983002 -103.084 -17.600027 +v 128.334 -103.027 -17.823027 +v 127.569008 -103.131004 -17.584026 +v 126.963005 -102.627998 -17.600027 +v 127.300995 -102.516998 -17.823027 +v 126.561005 -102.737999 -17.581028 +v 125.884995 -102.333 -17.600027 +v 126.202003 -102.172005 -17.823027 +v 125.504997 -102.502007 -17.584026 +v 124.774002 -102.205002 -17.600027 +v 125.063004 -101.998001 -17.823027 +v 124.424004 -102.43 -17.584026 +v 123.658005 -102.248993 -17.600027 +v 123.912003 -102.0 -17.823027 +v 123.875999 -102.002998 -20.377028 +v 123.658005 -102.248993 -20.600027 +v 124.167 -102.208 -20.600027 +v 123.346001 -102.525002 -17.584026 +v 122.560997 -102.461998 -17.600027 +v 122.773994 -102.178001 -17.823027 +v 122.738998 -102.186005 -20.377028 +v 122.560997 -102.461998 -20.600027 +v 123.056999 -102.344002 -20.600027 +v 122.294998 -102.783005 -17.584026 +v 121.509003 -102.840996 -17.600027 +v 121.675995 -102.527 -17.823027 +v 121.642998 -102.540001 -20.377028 +v 121.509003 -102.840996 -20.600027 +v 121.982002 -102.647995 -20.600027 +v 121.294998 -103.197998 -17.584026 +v 120.528 -103.375999 -17.600027 +v 120.645004 -103.040001 -17.823027 +v 120.613998 -103.058006 -20.377028 +v 120.528 -103.375999 -20.600027 +v 120.966003 -103.113007 -20.600027 +v 120.371002 -103.761002 -17.584026 +v 119.639 -104.053993 -17.600027 +v 119.704002 -103.703995 -17.823027 +v 119.542999 -104.458 -17.584026 +v 118.864998 -104.860001 -17.600027 +v 118.875 -104.503998 -17.823027 +v 118.832001 -105.274002 -17.584026 +v 118.222 -105.774002 -17.600027 +v 118.178001 -105.420998 -17.823027 +v 118.159004 -105.451004 -20.377028 +v 118.222 -105.774002 -20.600027 +v 118.498001 -105.343994 -20.600027 +v 118.252998 -106.188995 -17.584026 +v 117.726997 -106.776001 -17.600027 +v 117.629997 -106.434006 -17.823027 +v 117.614998 -106.467003 -20.377028 +v 117.726997 -106.776001 -20.600027 +v 117.934006 -106.308998 -20.600027 +v 117.523994 -107.348999 -17.600027 +v 117.390999 -107.841995 -17.600027 +v 117.242004 -107.518997 -17.823027 +v 117.233002 -107.553001 -20.377028 +v 117.390999 -107.841995 -20.600027 +v 117.523994 -107.348999 -20.600027 +v 117.278 -108.438995 -17.600027 +v 117.221001 -108.946007 -17.600027 +v 117.025002 -108.650002 -17.823027 +v 117.021004 -108.685005 -20.377028 +v 117.221001 -108.946007 -20.600027 +v 117.278 -108.438995 -20.600027 +v 117.432999 -109.305 -17.584026 +v 117.222 -110.064003 -17.600027 +v 116.982994 -109.801003 -17.823027 +v 117.200005 -109.554001 -20.600027 +v 116.984001 -109.835999 -20.377028 +v 117.222 -110.064003 -20.600027 +v 117.486 -110.386002 -17.584026 +v 117.393005 -111.167999 -17.600027 +v 117.117004 -110.945 -17.823027 +v 117.730995 -112.233994 -17.600029 +v 117.423996 -112.055 -17.823029 +v 117.702995 -111.445999 -17.584028 +v 117.556999 -111.753998 -20.600029 +v 117.435997 -112.088005 -20.377029 +v 117.730995 -112.233994 -20.600029 +v 118.228004 -113.235001 -17.600029 +v 117.896996 -113.104996 -17.823029 +v 118.079994 -112.460999 -17.584028 +v 117.982002 -112.787003 -20.600029 +v 117.914001 -113.136002 -20.377029 +v 118.556 -113.328003 -20.61603 +v 118.872002 -114.148994 -17.600029 +v 118.525002 -114.070999 -17.823029 +v 118.559998 -113.743996 -17.600029 +v 119.647003 -114.952995 -17.600029 +v 119.292 -114.929001 -17.823029 +v 119.272003 -114.260002 -17.584028 +v 119.278 -114.600998 -20.600029 +v 119.318001 -114.954002 -20.377029 +v 119.987999 -114.943001 -20.61603 +v 120.536003 -115.629997 -17.600029 +v 120.181999 -115.661003 -17.823029 +v 120.059998 -115.001999 -17.584028 +v 120.117004 -115.337997 -20.600029 +v 120.210999 -115.681 -20.377029 +v 120.536003 -115.629997 -20.600029 +v 121.518997 -116.163002 -17.600029 +v 121.173004 -116.247993 -17.823029 +v 120.952003 -115.616005 -17.584028 +v 121.059998 -115.938995 -20.600029 +v 121.205002 -116.263 -20.377029 +v 121.518997 -116.163002 -20.600029 +v 122.570999 -116.540001 -17.600029 +v 122.242004 -116.676003 -17.823029 +v 122.083 -116.388 -17.600029 +v 123.667999 -116.751999 -17.600029 +v 123.363998 -116.936996 -17.823029 +v 122.961998 -116.400002 -17.58103 +v 123.939995 -116.548004 -20.61603 +v 123.163002 -116.677002 -20.600029 +v 123.398994 -116.942001 -20.377029 +v 124.784996 -116.793999 -17.600029 +v 124.513 -117.022995 -17.823029 +v 124.034004 -116.555 -17.584028 +v 125.661003 -116.933006 -17.823029 +v 125.116005 -116.542999 -17.584028 +v 125.894997 -116.665001 -17.600029 +v 125.894997 -116.665001 -20.600029 +v 125.391006 -116.745003 -20.600029 +v 125.696007 -116.927994 -20.377029 +v 126.781998 -116.668999 -17.823029 +v 126.486 -116.525002 -17.600029 +v 126.973 -116.369003 -17.600029 +v 126.973 -116.369003 -20.600029 +v 126.486 -116.525002 -20.600029 +v 126.816002 -116.658005 -20.377029 +v 127.849998 -116.236 -17.823029 +v 127.212997 -116.028999 -17.584028 +v 127.992004 -115.911003 -17.600029 +v 128.839005 -115.645996 -17.823029 +v 128.177994 -115.538002 -17.584028 +v 128.930008 -115.301994 -17.600029 +v 129.725998 -114.912003 -17.823029 +v 129.056 -114.905998 -17.584028 +v 129.763 -114.557999 -17.600029 +v 130.490997 -114.051003 -17.823029 +v 129.828003 -114.147003 -17.584028 +v 130.473999 -113.695 -17.600029 +v 131.115005 -113.083 -17.823029 +v 130.475006 -113.278999 -17.584028 +v 131.044006 -112.734001 -17.600029 +v 131.585007 -112.030998 -17.823029 +v 130.981995 -112.322998 -17.584028 +v 131.460999 -111.697998 -17.600029 +v 131.888 -110.919998 -17.823027 +v 131.335999 -111.300995 -17.58103 +v 131.714996 -110.609001 -17.600027 +v 132.018005 -109.776001 -17.823027 +v 131.531998 -110.236 -17.584026 +v 131.800003 -109.495003 -17.600027 +v 131.972 -108.625 -17.823027 +v 131.561996 -109.153999 -17.584026 +v 131.714005 -108.379997 -17.600027 +v 131.714005 -108.379997 -20.600027 +v 131.773987 -108.888 -20.600027 +v 131.968002 -108.589005 -20.377028 +v 131.751007 -107.493996 -17.823027 +v 131.42601 -108.080002 -17.584026 +v 131.457993 -107.292 -17.600027 +v 131.457993 -107.292 -20.600027 +v 131.595993 -107.784004 -20.600027 +v 131.740997 -107.459999 -20.377028 +v 131.360001 -106.411003 -17.823027 +v 131.127991 -107.038994 -17.584026 +v 131.040009 -106.256004 -17.600027 +v 130.807999 -105.400002 -17.823027 +v 130.675003 -106.056 -17.584026 +v 130.468002 -105.295998 -17.600027 +v 130.108002 -104.485001 -17.823027 +v 130.077011 -105.153999 -17.584026 +v 129.755997 -104.433998 -17.600027 +v 123.369003 -111.640999 -1.100028 +v 122.874001 -111.809998 -1.100028 +v 122.484001 -110.847 -1.100028 +v 121.953003 -110.723999 -1.100028 +v 124.454002 -112.348 -1.099028 +v 124.557007 -111.920998 -1.100028 +v 122.084 -109.659004 -1.100028 +v 121.681 -109.093002 -1.099028 +v 125.806999 -111.986 -1.100028 +v 125.529007 -111.677002 -1.100028 +v 122.399002 -108.248001 -1.100027 +v 122.562996 -107.412003 -1.099027 +v 126.738998 -111.223 -1.100028 +v 126.499992 -110.900002 -1.101028 +v 123.626999 -107.220001 -1.101027 +v 127.230003 -110.160995 -1.100028 +v 126.920998 -109.545998 -1.100028 +v 124.076004 -106.707001 -1.100026 +v 127.235992 -108.709999 -1.099028 +v 125.055 -107.142998 -1.100026 +v 126.718002 -108.563995 -1.100028 +v 125.277 -106.799995 -1.100026 +v 126.133995 -107.712997 -1.100026 +v 126.315994 -107.335999 -1.100026 +v 122.334 -111.615005 -1.298028 +v 122.482002 -111.732994 -17.600029 +v 121.717995 -110.693001 -17.600027 +v 123.341003 -112.278 -17.600029 +v 123.397003 -112.301003 -1.299028 +v 121.577003 -110.290001 -1.298028 +v 124.333 -112.504997 -17.600029 +v 124.392998 -112.507996 -1.299028 +v 121.490997 -109.460007 -17.600027 +v 121.529999 -109.012001 -1.299028 +v 125.342995 -112.389 -17.600029 +v 125.402 -112.372002 -1.299028 +v 121.675995 -108.459999 -17.600027 +v 121.976006 -107.827995 -1.298027 +v 126.258003 -111.943001 -17.600029 +v 126.521004 -111.753998 -1.298028 +v 122.355995 -107.362999 -17.600027 +v 127.113998 -111.028 -17.600027 +v 123.112 -106.808998 -1.298026 +v 127.251999 -110.721001 -1.299028 +v 123.415001 -106.693001 -17.600027 +v 127.495003 -109.794998 -17.600027 +v 127.500999 -109.734001 -1.299028 +v 124.351006 -106.493004 -1.299026 +v 124.412003 -106.491997 -17.600027 +v 127.373993 -108.547005 -17.600027 +v 127.344994 -108.465004 -1.298028 +v 125.603004 -106.68 -1.298026 +v 125.682991 -106.712997 -17.600027 +v 126.699997 -107.445999 -17.600027 +v 126.65799 -107.402 -1.299026 +v 118.639999 -113.329002 -17.600029 +v 121.909996 -116.002998 -17.600029 +v 126.122993 -116.309006 -17.600029 +v 117.623001 -108.195 -17.600027 +v 117.903 -107.161003 -17.600027 +v 129.347992 -104.354004 -17.584026 +v 128.921005 -103.690994 -17.600027 +v 119.292999 -114.178001 -20.600029 +v 120.947006 -115.530998 -20.600029 +v 118.559998 -113.743996 -20.600029 +v 118.584 -114.105003 -20.468029 +v 121.909996 -116.002998 -20.600029 +v 123.598 -110.382996 -20.600027 +v 124.246002 -110.747002 -20.600027 +v 118.124001 -112.389 -20.600029 +v 122.932999 -116.322006 -20.600029 +v 122.083 -116.388 -20.600029 +v 122.311005 -116.669998 -20.468029 +v 117.757996 -111.382004 -20.600029 +v 123.249001 -109.728996 -20.600027 +v 117.293999 -110.667 -20.600027 +v 117.154999 -111.001999 -20.468027 +v 117.549004 -110.331001 -20.600027 +v 125.064003 -116.476997 -20.600029 +v 124.274002 -116.796997 -20.600029 +v 124.576004 -116.997002 -20.468029 +v 117.503998 -109.260002 -20.600027 +v 126.122993 -116.309006 -20.600029 +v 124.876999 -110.695999 -20.600027 +v 117.623001 -108.195 -20.600027 +v 127.142998 -115.982002 -20.600029 +v 117.903 -107.161003 -20.600027 +v 123.382004 -108.891998 -20.600027 +v 128.101013 -115.501999 -20.600029 +v 127.535004 -116.139 -20.600029 +v 125.429001 -110.370003 -20.600027 +v 118.336998 -106.181 -20.600027 +v 127.894997 -116.184006 -20.468029 +v 128.975998 -114.881996 -20.600029 +v 128.513 -115.598 -20.600029 +v 118.916 -105.278999 -20.600027 +v 128.875 -115.588005 -20.468029 +v 129.74501 -114.136002 -20.600029 +v 129.397003 -114.914001 -20.600029 +v 118.853004 -104.569 -20.468027 +v 119.203003 -104.477005 -20.600027 +v 129.752991 -114.848999 -20.468029 +v 119.625999 -104.475998 -20.600027 +v 120.449997 -103.791 -20.600027 +v 124.109001 -108.274994 -20.600027 +v 121.368996 -103.238998 -20.600027 +v 130.391006 -113.280998 -20.600029 +v 130.166 -114.102997 -20.600029 +v 119.671005 -103.765007 -20.468027 +v 120.031998 -103.726997 -20.600027 +v 125.769005 -109.592995 -20.600027 +v 122.361 -102.834999 -20.600027 +v 131.257004 -111.327995 -20.600029 +v 130.899002 -112.337997 -20.600029 +v 130.508011 -113.984001 -20.468029 +v 123.403 -102.585999 -20.600027 +v 131.457001 -110.275002 -20.600027 +v 124.472 -102.5 -20.600027 +v 131.494003 -109.204002 -20.600027 +v 125.541 -102.578003 -20.600027 +v 125.060005 -108.356995 -20.600027 +v 125.595001 -108.873001 -20.600027 +v 131.367004 -108.139 -20.600027 +v 126.585007 -102.818001 -20.600027 +v 131.078003 -107.107002 -20.600027 +v 127.581001 -103.214005 -20.600027 +v 128.503998 -103.758003 -20.600027 +v 130.636002 -106.131004 -20.600027 +v 129.334 -104.437004 -20.600027 +v 130.050003 -105.233994 -20.600027 +v 130.802002 -113.183998 -20.600029 +v 131.121994 -113.014 -20.468029 +v 131.291 -112.179001 -20.600029 +v 131.580994 -111.961998 -20.468029 +v 131.62001 -111.111 -20.600027 +v 131.873993 -110.852005 -20.468027 +v 131.78299 -110.004997 -20.600027 +v 131.993988 -109.710999 -20.468027 +v 124.998001 -102.018997 -20.468027 +v 125.284004 -102.241997 -20.600027 +v 126.133995 -102.182999 -20.468027 +v 126.381996 -102.447006 -20.600027 +v 131.251007 -106.721001 -20.600027 +v 127.232002 -102.517998 -20.468027 +v 127.436996 -102.817001 -20.600027 +v 131.309998 -106.363998 -20.468027 +v 130.747009 -105.723 -20.600027 +v 128.264999 -103.017006 -20.468027 +v 128.423004 -103.344002 -20.600027 +v 130.098007 -104.814003 -20.600027 +v 130.750992 -105.361 -20.468027 +v 129.210999 -103.667999 -20.468027 +v 129.317001 -104.014999 -20.600027 +v 130.04599 -104.455002 -20.468027 +v 123.627998 -110.428001 -10.149028 +v 123.267998 -109.778999 -10.149028 +v 124.199005 -110.719002 -10.149028 +v 124.727005 -110.742004 -10.149028 +v 123.269997 -109.250999 -10.149028 +v 123.535995 -108.667999 -10.149028 +v 125.389992 -110.409996 -10.149028 +v 124.271996 -108.246994 -10.149027 +v 125.705002 -109.851997 -10.149028 +v 125.742004 -109.220001 -10.149028 +v 124.903 -108.310997 -10.149028 +v 125.364006 -108.579002 -10.149028 +v 123.415001 -111.436005 -9.602028 +v 122.608002 -110.667 -9.599029 +v 124.668999 -111.732002 -9.602028 +v 122.265007 -109.384003 -9.602028 +v 125.881004 -111.238998 -9.601027 +v 122.725998 -108.165001 -9.601027 +v 123.775002 -107.382996 -9.602027 +v 126.634003 -110.175995 -9.602028 +v 125.265999 -107.396996 -9.602027 +v 126.660004 -109.045998 -9.601027 +v 126.295998 -108.194 -9.601027 +v 122.980995 -111.103996 -1.300028 +v 123.604996 -111.518005 -1.301028 +v 122.536003 -110.508003 -1.301028 +v 124.328003 -111.700996 -1.301028 +v 122.312004 -109.796005 -1.301028 +v 125.071007 -111.631996 -1.301028 +v 122.339005 -109.049995 -1.301028 +v 125.910995 -111.215004 -1.302028 +v 122.610001 -108.360001 -1.300027 +v 123.099998 -107.793007 -1.301027 +v 126.478004 -110.480003 -1.301028 +v 123.920998 -107.357002 -1.302027 +v 126.691994 -109.764999 -1.301028 +v 126.654999 -109.020004 -1.301028 +v 124.858002 -107.321999 -1.301027 +v 126.371994 -108.328995 -1.301027 +v 125.725998 -107.649002 -1.302027 +v 129.277008 -103.688004 -17.823027 +v 2.126 102.519997 -17.583973 +v 2.911 102.454994 -17.599974 +v 2.697 102.170998 -17.822973 +v 3.178 102.774002 -17.583973 +v 3.964 102.829002 -17.599974 +v 3.796 102.516006 -17.822973 +v 4.179 103.184998 -17.580975 +v 4.948 103.360001 -17.599974 +v 4.829 103.024002 -17.822973 +v 5.106 103.744003 -17.583973 +v 5.839 104.033997 -17.599974 +v 5.773 103.684998 -17.822973 +v 5.936 104.437996 -17.583973 +v 6.616 104.836998 -17.599974 +v 6.605 104.480995 -17.822973 +v 6.628 104.507996 -20.376974 +v 6.616 104.836998 -20.599974 +v 6.277 104.455002 -20.599974 +v 6.651 105.250999 -17.583973 +v 7.262 105.749001 -17.599974 +v 7.305 105.396004 -17.822973 +v 7.324 105.425995 -20.376974 +v 7.262 105.749001 -20.599974 +v 6.985 105.32 -20.599974 +v 7.233 106.164001 -17.583973 +v 7.762 106.749001 -17.599974 +v 7.858 106.406006 -17.822973 +v 7.872 106.439003 -20.376974 +v 7.762 106.749001 -20.599974 +v 7.553 106.283005 -20.599974 +v 7.67 107.153999 -17.583973 +v 8.101999 107.813004 -17.599974 +v 8.25 107.488998 -17.822973 +v 8.259 107.524002 -20.376974 +v 8.101999 107.813004 -20.599974 +v 7.967 107.320999 -20.599974 +v 7.95 108.199997 -17.583973 +v 8.276999 108.917 -17.599974 +v 8.472 108.620003 -17.822973 +v 8.066999 109.275993 -17.583973 +v 8.28 110.035004 -17.599974 +v 8.518001 109.769997 -17.822973 +v 8.018 110.357002 -17.583973 +v 8.113 111.139999 -17.599974 +v 8.389 110.915001 -17.822973 +v 8.382 110.949997 -20.376974 +v 8.113 111.139999 -20.599974 +v 8.210999 110.638 -20.599974 +v 7.805 111.418999 -17.583971 +v 7.78 112.205994 -17.599972 +v 8.085999 112.026001 -17.822971 +v 8.073999 112.060005 -20.376972 +v 7.78 112.205994 -20.599972 +v 7.952 111.725998 -20.599972 +v 7.531 112.761002 -17.599972 +v 7.287 113.209999 -17.599972 +v 7.618 113.077995 -17.822971 +v 7.601 113.110001 -20.376972 +v 7.287 113.209999 -20.599972 +v 7.531 112.761002 -20.599972 +v 6.957 113.720001 -17.599972 +v 6.647 114.125999 -17.599972 +v 6.994 114.046997 -17.822971 +v 6.972 114.074997 -20.376972 +v 6.647 114.125999 -20.599972 +v 6.957 113.720001 -20.599972 +v 6.247 114.238998 -17.583971 +v 5.875 114.933998 -17.599972 +v 6.23 114.908005 -17.822971 +v 6.243 114.579002 -20.599972 +v 6.204 114.932999 -20.376972 +v 5.875 114.933998 -20.599972 +v 5.462 114.984001 -17.583971 +v 4.988 115.613998 -17.599972 +v 5.343 115.643005 -17.822971 +v 4.008 116.151001 -17.599972 +v 4.354 116.233994 -17.822971 +v 4.573 115.601006 -17.583971 +v 4.466 115.924995 -20.599972 +v 4.322 116.25 -20.376972 +v 4.008 116.151001 -20.599972 +v 2.958 116.532997 -17.599972 +v 3.287 116.667 -17.822971 +v 3.599 116.075005 -17.583971 +v 3.445 116.377998 -20.599972 +v 3.253 116.678001 -20.376972 +v 2.657 116.373001 -20.615973 +v 1.861 116.749001 -17.599972 +v 2.166 116.931999 -17.822971 +v 2.366 116.671005 -17.599972 +v 0.745 116.796005 -17.599972 +v 1.018 117.022995 -17.822971 +v 1.494 116.553001 -17.583971 +v 1.255 116.796005 -20.599972 +v 0.982 117.022995 -20.376972 +v 0.506 116.553001 -20.615973 +v -0.366 116.671005 -17.599972 +v -0.131 116.938004 -17.822971 +v 0.412 116.545998 -17.583971 +v 0.139 116.749001 -20.599972 +v -0.166 116.931999 -20.376972 +v -0.366 116.671005 -20.599972 +v -1.445 116.377998 -17.599972 +v -1.253 116.678001 -17.822971 +v -0.657 116.373001 -17.583971 +v -0.958 116.532997 -20.599972 +v -1.287 116.667 -20.376972 +v -1.445 116.377998 -20.599972 +v -2.466 115.924995 -17.599972 +v -2.322 116.25 -17.822971 +v -2.008 116.151001 -17.599972 +v -3.406 115.32 -17.599972 +v -3.314 115.664001 -17.822971 +v -2.653 115.553001 -17.580973 +v -3.462 114.984001 -20.615973 +v -2.988 115.613998 -20.599972 +v -3.343 115.643005 -20.376972 +v -4.243 114.579002 -17.599972 +v -4.204 114.932999 -17.822971 +v -3.534 114.924995 -17.583971 +v -4.972 114.074997 -17.822971 +v -4.309 114.168999 -17.583971 +v -4.957 113.720001 -17.599972 +v -4.957 113.720001 -20.599972 +v -4.647 114.125999 -20.599972 +v -4.994 114.046997 -20.376972 +v -5.601 113.110001 -17.822971 +v -5.287 113.209999 -17.599972 +v -5.531 112.761002 -17.599972 +v -5.531 112.761002 -20.599972 +v -5.287 113.209999 -20.599972 +v -5.618 113.077995 -20.376972 +v -6.074 112.060005 -17.822971 +v -5.471 112.349007 -17.583971 +v -5.952 111.725998 -17.599972 +v -6.382 110.949997 -17.822973 +v -5.83 111.327995 -17.583971 +v -6.211 110.638 -17.599974 +v -6.517 109.806 -17.822973 +v -6.029 110.264 -17.583973 +v -6.3 109.523994 -17.599974 +v -6.476 108.654999 -17.822973 +v -6.063 109.181999 -17.583973 +v -6.218 108.410004 -17.599974 +v -6.259 107.524002 -17.822973 +v -5.932 108.108002 -17.583973 +v -5.967 107.320999 -17.599974 +v -5.872 106.439003 -17.822973 +v -5.638 107.065994 -17.583973 +v -5.553 106.283005 -17.599974 +v -5.324 105.425995 -17.822973 +v -5.188 106.082001 -17.580975 +v -4.985 105.32 -17.599974 +v -4.628 104.507996 -17.822973 +v -4.594 105.177002 -17.583973 +v -4.277 104.455002 -17.599974 +v -3.8 103.707001 -17.822973 +v -3.869 104.373001 -17.583973 +v -3.445 103.709 -17.599974 +v -3.445 103.709 -20.599974 +v -3.839 104.033997 -20.599974 +v -3.773 103.684998 -20.376974 +v -2.86 103.042 -17.822973 +v -3.029 103.689995 -17.583973 +v -2.509 103.098 -17.599974 +v -2.509 103.098 -20.599974 +v -2.948 103.360001 -20.599974 +v -2.829 103.024002 -20.376974 +v -1.829 102.528999 -17.822973 +v -2.095 103.142998 -17.583973 +v -1.49 102.638 -17.599974 +v -0.732 102.179001 -17.822973 +v -1.088 102.744995 -17.583973 +v -0.414 102.337997 -17.599974 +v 0.406 102.0 -17.822973 +v -0.033 102.505997 -17.583973 +v 0.696 102.206001 -17.599974 +v 0.34 111.830002 -1.099972 +v 0.581 112.294006 -1.099972 +v 1.528 111.867004 -1.099972 +v 1.997 112.143997 -1.099972 +v -0.933 111.592003 -1.098972 +v -0.713 111.211998 -1.099972 +v 2.638 111.284004 -1.099972 +v 3.32 111.152 -1.098972 +v -1.662 110.395996 -1.099972 +v -1.247 110.363998 -1.099972 +v 3.384 110.045998 -1.099972 +v 3.843 109.327003 -1.098972 +v -1.809 109.199997 -1.099972 +v -1.413 109.131004 -1.100972 +v 3.206 108.453995 -1.100972 +v -1.431 108.093002 -1.099973 +v -0.783 107.861 -1.099973 +v 3.236 107.772995 -1.099973 +v -0.434 107.038994 -1.098974 +v 2.226 107.412003 -1.099973 +v 0.042 107.291 -1.099973 +v 2.302 107.011002 -1.099974 +v 1.052 107.079002 -1.099974 +v 1.18 106.68 -1.099974 +v 1.107 112.526001 -1.297972 +v 0.918 112.508995 -17.599972 +v 2.189 112.283997 -17.599972 +v -0.08 112.308998 -17.599972 +v -0.137 112.287003 -1.298972 +v 2.569 112.089996 -1.297972 +v -0.954 111.789001 -17.599972 +v -1.0 111.75 -1.298972 +v 3.204 111.548996 -17.599972 +v 3.485 111.197998 -1.298972 +v -1.605 111.006996 -17.599974 +v -1.635 110.955002 -1.298972 +v 3.761 110.697998 -17.599974 +v 3.98 110.032997 -1.297972 +v -1.958 110.053001 -17.599974 +v -2.019 109.735001 -1.297972 +v 4.027 109.434998 -17.599974 +v -1.945 108.800003 -17.599974 +v 3.862 108.512001 -1.297972 +v -1.833 108.483002 -1.298972 +v 3.724 108.218994 -17.599974 +v -1.37 107.644997 -17.599974 +v -1.332 107.597 -1.298973 +v 3.184 107.428001 -1.298973 +v 3.141 107.385002 -17.599974 +v -0.421 106.826996 -17.599974 +v -0.343 106.787003 -1.297974 +v 2.149 106.698997 -1.297974 +v 2.068 106.667 -17.599974 +v 0.827 106.495003 -17.599974 +v 0.888 106.491997 -1.298974 +v 2.595 116.316002 -17.599972 +v -1.617 115.993004 -17.599972 +v -4.876 113.305 -17.599972 +v 6.876 113.305 -17.599972 +v 7.388 112.363007 -17.599972 +v 1.047 102.43 -17.583973 +v 1.813 102.245003 -17.599974 +v 1.536 116.479004 -20.599972 +v -0.595 116.316002 -20.599972 +v 2.366 116.671005 -20.599972 +v 2.099 116.916 -20.467972 +v -1.617 115.993004 -20.599972 +v 1.043 110.761002 -20.599974 +v 0.323 110.577003 -20.599974 +v 3.617 115.993004 -20.599972 +v -2.577 115.516998 -20.599972 +v -2.008 116.151001 -20.599972 +v -2.368 116.198006 -20.467972 +v 4.577 115.516998 -20.599972 +v 1.747 110.529999 -20.599974 +v 5.406 115.32 -20.599972 +v 5.276 115.657997 -20.467972 +v 5.454 114.900002 -20.599972 +v -4.226 114.156998 -20.599972 +v -3.875 114.933998 -20.599972 +v -4.232 114.869995 -20.467972 +v 6.226 114.156998 -20.599972 +v -4.876 113.305 -20.599972 +v -0.099 110.105003 -20.599974 +v 6.876 113.305 -20.599972 +v -5.388 112.363007 -20.599972 +v 7.388 112.363007 -20.599972 +v 2.228 109.832001 -20.599974 +v -5.75 111.354996 -20.599972 +v -5.78 112.205994 -20.599972 +v -0.272 109.488007 -20.599974 +v 7.75 111.354996 -20.599972 +v -6.071 111.991005 -20.467972 +v -5.954 110.303001 -20.599974 +v -6.113 111.139999 -20.599974 +v 7.954 110.303001 -20.599974 +v -6.369 110.881996 -20.467974 +v -5.995 109.232002 -20.599974 +v -6.28 110.035004 -20.599974 +v 8.49 109.833 -20.467974 +v 8.3 109.523994 -20.599974 +v -6.493 109.741005 -20.467974 +v 7.995 109.232002 -20.599974 +v 7.872 108.167 -20.599974 +v 2.128 108.884003 -20.599974 +v 7.588 107.134003 -20.599974 +v -5.872 108.167 -20.599974 +v -6.277 108.917 -20.599974 +v 8.453 108.685997 -20.467974 +v 8.217999 108.410004 -20.599974 +v 0.018 108.691002 -20.599974 +v 7.15 106.155998 -20.599974 +v -5.15 106.155998 -20.599974 +v -5.588 107.134003 -20.599974 +v -6.442 108.595001 -20.467974 +v 6.567 105.255997 -20.599974 +v -4.567 105.255997 -20.599974 +v 5.854 104.456001 -20.599974 +v -3.854 104.456001 -20.599974 +v 5.027 103.775002 -20.599974 +v 1.384 108.287003 -20.599974 +v 0.641 108.290001 -20.599974 +v -3.027 103.775002 -20.599974 +v 4.106 103.226997 -20.599974 +v -2.106 103.226997 -20.599974 +v 3.112 102.825996 -20.599974 +v 2.069 102.582001 -20.599974 +v -1.112 102.825996 -20.599974 +v 1.0 102.5 -20.599974 +v -0.069 102.582001 -20.599974 +v -6.102 107.813004 -20.599974 +v -6.217 107.469002 -20.467974 +v -5.762 106.749001 -20.599974 +v -5.822 106.390999 -20.467974 +v -5.262 105.749001 -20.599974 +v -5.268 105.385994 -20.467974 +v -4.616 104.836998 -20.599974 +v -4.566 104.478004 -20.467974 +v 5.805 103.744995 -20.467974 +v 5.445 103.709 -20.599974 +v 4.871 103.079002 -20.467974 +v 4.509 103.098 -20.599974 +v -1.964 102.829002 -20.599974 +v 3.845 102.564003 -20.467974 +v 3.49 102.638 -20.599974 +v -1.76 102.528999 -20.467974 +v -0.911 102.454994 -20.599974 +v 2.753 102.210999 -20.467974 +v 2.414 102.337997 -20.599974 +v 0.187 102.245003 -20.599974 +v -0.663 102.190002 -20.467974 +v 1.62 102.029007 -20.467974 +v 1.304 102.206001 -20.599974 +v 0.472 102.022003 -20.467974 +v 0.99 110.772995 -10.148973 +v 1.698 110.551994 -10.148973 +v 0.376 110.588997 -10.148973 +v -0.022 110.242004 -10.148973 +v 2.062 110.169998 -10.148973 +v 2.272 109.563995 -10.148973 +v -0.272 109.543999 -10.148973 +v 2.03 108.750999 -10.148973 +v -0.115 108.923004 -10.148973 +v 0.295 108.439995 -10.148973 +v 1.53 108.362 -10.148973 +v 1.011 108.237 -10.148973 +v 0.448 111.649002 -9.601973 +v 1.563 111.651001 -9.598972 +v -0.663 110.997993 -9.601973 +v 2.697 110.959 -9.601973 +v -1.199 109.803993 -9.600972 +v 3.205 109.760002 -9.600972 +v 2.987 108.469002 -9.601973 +v -1.01 108.514999 -9.601973 +v 1.898 107.450005 -9.601974 +v -0.249 107.68 -9.600973 +v 0.603 107.316002 -9.600973 +v 0.991 111.709 -1.299972 +v 0.254 111.578003 -1.300972 +v 1.725 111.584999 -1.300972 +v -0.396 111.210007 -1.300972 +v 2.378 111.224998 -1.300972 +v -0.886 110.647995 -1.300972 +v 2.874 110.667 -1.300972 +v -1.204 109.765999 -1.301973 +v 3.154 109.980003 -1.299972 +v 3.191 109.232002 -1.300972 +v -1.107 108.843002 -1.300972 +v 2.899 108.349998 -1.301973 +v -0.768 108.177994 -1.300973 +v -0.227 107.665001 -1.300974 +v 2.245 107.676994 -1.300974 +v 0.455 107.361 -1.300974 +v 1.391 107.313995 -1.301973 +v 1.558 101.998001 -17.822973 +v 129.169006 -109.387001 -21.343027 +v 127.872002 -109.415001 -21.385025 +v 128.136002 -109.392006 -20.915026 +v 128.725006 -109.375 -20.763027 +v 120.193001 -107.861 -21.140026 +v 120.366997 -108.262001 -21.396027 +v 121.742004 -105.870003 -21.375027 +v 122.399002 -106.576004 -21.398027 +v 121.139999 -108.259003 -21.314028 +v 121.804001 -107.470993 -21.056026 +v 122.785004 -106.556999 -21.070026 +v 124.415001 -105.974007 -21.400028 +v 125.180008 -106.18 -20.980026 +v 124.171005 -106.145004 -20.864027 +v 126.451996 -106.750999 -21.328028 +v 125.534996 -104.971001 -21.380026 +v 127.718002 -106.125999 -21.345028 +v 126.176994 -105.158005 -20.935028 +v 120.189003 -110.255005 -21.266027 +v 120.589005 -110.014 -21.362026 +v 127.81601 -108.431 -21.003027 +v 127.499001 -107.882996 -21.386026 +v 121.113998 -109.924004 -20.976027 +v 121.541 -111.743004 -21.15103 +v 121.593994 -112.287003 -21.241028 +v 128.904999 -107.808998 -21.393026 +v 128.464005 -107.197998 -20.911028 +v 123.460999 -104.952995 -21.079027 +v 124.090004 -104.936005 -21.396027 +v 121.100998 -112.531998 -20.987028 +v 121.627007 -111.323997 -20.84103 +v 119.857994 -109.798996 -20.930027 +v 127.259003 -107.212997 -20.785027 +v 123.809998 -113.582001 -21.125029 +v 122.652 -113.629997 -20.955029 +v 121.682007 -105.805 -20.749027 +v 123.411003 -112.723999 -20.773027 +v 120.079002 -110.949997 -20.846027 +v 128.733002 -108.159996 -20.862026 +v 120.670998 -106.839005 -20.882027 +v 124.688995 -112.994003 -20.792028 +v 125.118004 -113.625 -21.053028 +v 121.251999 -108.448997 -20.578028 +v 122.622002 -112.319 -20.657028 +v 122.551003 -105.362 -20.661026 +v 119.980003 -108.455002 -20.612026 +v 124.374001 -105.020004 -20.597027 +v 126.102997 -112.607002 -20.698029 +v 128.018005 -111.942001 -20.836027 +v 127.261993 -113.066002 -20.75503 +v 127.406998 -111.544998 -20.666029 +v 126.716003 -105.829002 -20.579025 +v 124.820999 -114.134995 -20.597029 +v 125.685005 -105.903 -20.578028 +v 123.068001 -106.306999 -20.635027 +v 128.815994 -109.807999 -20.715027 +v 128.046005 -110.428993 -20.676027 +v 121.289001 -110.629997 -20.527027 +v 126.452995 -113.750999 -20.457027 +v 120.853996 -112.403999 -20.480028 +v 121.886002 -107.174004 -20.552027 +v 120.558998 -107.343002 -20.383026 +v 124.192001 -105.754005 -20.498026 +v 128.417007 -108.526001 -20.635027 +v 122.014999 -113.420006 -20.332027 +v 128.561996 -111.822998 -20.319029 +v 123.411003 -114.022003 -20.411028 +v 120.041 -109.635002 -20.275026 +v 120.894997 -109.704002 -20.294025 +v 124.127998 -112.889 -20.305029 +v 120.206993 -111.071999 -20.350027 +v 129.151001 -109.513 -20.282026 +v 122.727997 -105.572998 -20.392027 +v 127.838997 -110.022003 -20.155025 +v 125.622002 -112.745003 -20.095028 +v 121.735001 -106.848 -20.339025 +v 121.816002 -111.878998 -20.138027 +v 126.634003 -112.140999 -20.15103 +v 127.203003 -113.278 -20.123028 +v 122.68 -112.501999 -20.181028 +v 127.424004 -111.264 -19.996029 +v 120.718002 -108.362 -20.172028 +v 124.461006 -113.941994 -19.922028 +v 129.019012 -110.459 -19.825027 +v 125.626999 -113.874001 -19.955029 +v 120.704002 -111.143997 -20.019028 +v 123.199997 -113.618004 -19.920029 +v 123.919006 -113.199005 -19.901028 +v 127.959 -112.375999 -19.807028 +v 121.746002 -112.610001 -19.948029 +v 127.858994 -110.716003 -19.718027 +v 127.167999 -112.134003 -19.690027 +v 125.973 -113.145004 -19.707029 +v 127.623009 -112.345001 -19.635029 +v 128.817001 -108.015999 -19.524027 +v 127.98101 -109.088005 -19.706026 +v 128.470001 -109.249001 -19.413027 +v 129.181 -109.390999 0.591972 +v 128.110001 -109.412003 0.071972 +v 128.76799 -109.399994 0.013972 +v 127.892998 -109.473 0.561972 +v 128.686996 -108.134003 -1.156027 +v 128.520004 -108.880997 -1.311028 +v 128.811996 -110.785004 -1.339028 +v 128.041 -109.664001 -1.178028 +v 127.872002 -108.884995 -0.924028 +v 127.689003 -106.514999 -1.100026 +v 127.054008 -106.964996 -1.052026 +v 129.151001 -108.860001 -0.706028 +v 126.009003 -105.461998 -1.059026 +v 125.738991 -106.246002 -0.829026 +v 127.625999 -108.197006 -0.741027 +v 128.478012 -107.123001 -0.773026 +v 123.641998 -105.723 -0.962026 +v 123.389999 -105.114998 -0.745026 +v 127.308998 -105.743996 -0.531026 +v 125.487 -105.055 -0.786026 +v 121.953003 -106.663002 -0.854026 +v 121.834999 -105.997002 -0.759026 +v 120.820999 -107.332001 -0.774026 +v 125.329002 -104.870003 -0.456026 +v 121.181 -108.235001 -0.575027 +v 124.531998 -106.105995 -0.508026 +v 123.098 -106.406006 -0.451026 +v 127.096992 -107.322998 -0.380026 +v 120.843002 -109.700005 -0.568028 +v 128.546997 -107.231995 -0.368026 +v 122.190002 -105.431999 -0.156026 +v 121.936005 -107.251007 -0.410026 +v 120.399002 -110.723 -0.614028 +v 119.965004 -108.903 -0.483028 +v 121.243996 -106.150002 -0.271026 +v 121.457001 -111.846001 -0.508028 +v 125.247002 -106.165001 -0.208026 +v 120.465004 -107.139999 -0.178026 +v 127.996994 -109.921997 -0.421028 +v 127.784996 -108.058998 -0.132027 +v 121.074997 -112.377998 -0.397028 +v 121.674004 -111.418999 -0.209028 +v 123.534996 -104.943001 -0.193026 +v 123.763 -113.696999 -0.392029 +v 122.677994 -112.654999 -0.343028 +v 120.048004 -110.945 -0.044028 +v 121.905998 -113.331001 -0.127028 +v 121.120995 -109.220001 -0.165028 +v 126.625999 -106.654007 -0.063026 +v 123.848 -112.974998 -0.206028 +v 121.328003 -110.605003 0.120972 +v 125.634003 -113.498001 -0.328028 +v 128.806 -108.960999 -0.108028 +v 121.515999 -107.836998 0.075973 +v 125.707001 -112.921997 -0.130028 +v 119.866997 -109.085999 0.073972 +v 128.112 -111.667 -0.139028 +v 126.971008 -113.215996 -0.090028 +v 123.580002 -106.043999 0.139974 +v 127.664001 -106.545998 0.043974 +v 124.701004 -114.092995 -0.007029 +v 122.780998 -113.852005 0.190971 +v 122.615005 -112.318001 0.056972 +v 127.345993 -111.771004 -0.065028 +v 124.427002 -112.889999 0.097972 +v 125.893997 -105.401001 0.123974 +v 122.417999 -106.709 0.082974 +v 125.333992 -105.917 0.108974 +v 128.488998 -109.749001 -0.105028 +v 128.043991 -112.448997 0.151972 +v 128.067993 -110.333 0.022972 +v 123.93 -105.154999 0.204974 +v 120.656998 -112.115005 0.180972 +v 126.178993 -113.851006 0.518971 +v 120.572998 -107.385002 0.340973 +v 128.93399 -110.643997 0.204972 +v 126.113998 -112.527 0.300972 +v 121.025002 -109.234001 0.266972 +v 122.917999 -112.556999 0.350972 +v 121.903999 -106.119995 0.381974 +v 124.228996 -114.115997 0.570971 +v 127.074005 -111.718994 0.555972 +v 121.655998 -112.987999 0.579972 +v 127.619995 -110.752998 0.577972 +v 121.556 -111.560005 0.559972 +v 120.213997 -109.337997 0.557972 +v 121.277 -107.456001 0.400973 +v 127.540009 -113.041 0.587972 +v 120.412994 -111.187004 0.558972 +v 125.257996 -112.891006 0.591972 +v 128.720993 -111.426003 0.598972 +v 123.230003 -112.839996 0.597972 +v 120.688995 -109.819 0.563972 +v 127.782997 -108.571999 -20.198027 +v 128.905991 -108.110001 -20.199028 +v 128.350006 -106.973 -20.027027 +v 126.955002 -106.657997 -20.137028 +v 127.408997 -106.259003 -20.155025 +v 127.355995 -107.678001 -19.917027 +v 124.592995 -105.126999 -19.754026 +v 126.430008 -106.693001 -19.635027 +v 125.956001 -105.117004 -19.661026 +v 127.305 -105.782997 -19.645027 +v 124.462997 -105.899002 -19.581026 +v 127.704994 -107.875 -19.340025 +v 122.982002 -106.139999 -19.416027 +v 123.084 -105.383003 -19.501028 +v 127.693993 -106.275002 -19.192028 +v 125.103996 -106.155998 -19.350027 +v 124.893997 -104.842995 -19.124025 +v 126.568001 -106.695 -19.196026 +v 121.026001 -107.285995 -19.173027 +v 121.421005 -106.289001 -19.171026 +v 126.534996 -105.451004 -19.051027 +v 123.265999 -105.002998 -18.916027 +v 121.586998 -105.848 -18.885027 +v 123.788002 -106.182999 -18.898026 +v 125.359001 -106.084999 -18.905027 +v 127.183006 -106.656998 -18.959028 +v 122.767998 -106.640999 -18.721025 +v 121.445 -107.767998 -18.846025 +v 120.477997 -107.220001 -18.687027 +v 125.046997 -105.297997 -18.588028 +v 120.084 -108.699997 -18.724028 +v 120.164001 -110.531998 -18.522026 +v 123.768005 -105.782997 -18.416027 +v 122.008003 -107.127007 -18.335026 +v 120.844002 -109.861 -18.628027 +v 122.662003 -105.418999 -18.369026 +v 120.725998 -110.798004 -18.613026 +v 120.000999 -108.227997 -18.281027 +v 121.080002 -106.432999 -18.337027 +v 121.279999 -108.484001 -18.312027 +v 119.884995 -110.150002 -18.178026 +v 121.152 -109.926003 -18.135027 +v 121.002007 -112.273003 -18.233028 +v 121.807999 -112.204002 -18.270029 +v 122.870995 -113.687996 -17.94503 +v 120.566002 -112.002998 -17.907028 +v 121.616997 -111.286003 -17.927029 +v 121.495003 -106.711998 -18.002026 +v 121.153 -108.195999 -17.939026 +v 120.735001 -107.562996 -17.847027 +v 120.056999 -109.176003 -17.691027 +v 124.392998 -113.558998 -17.868029 +v 122.530998 -112.287994 -17.824028 +v 120.981003 -109.618004 -17.754026 +v 120.248001 -111.112 -17.542028 +v 123.865997 -112.852997 -17.555029 +v 122.042999 -113.502998 -17.631029 +v 125.251991 -113.917 -17.551027 +v 121.356003 -111.065002 -17.504026 +v 121.103004 -112.501999 -17.326027 +v 125.598999 -112.865997 -17.383028 +v 123.782997 -114.106003 -17.390028 +v 122.244995 -112.193001 -17.237028 +v 120.783997 -110.761002 -17.349026 +v 126.931 -113.075005 -17.452028 +v 126.872002 -112.405998 -17.349028 +v 125.658005 -114.024994 -16.959028 +v 122.698997 -113.701004 -17.11603 +v 126.682999 -113.617004 -16.985027 +v 123.558998 -112.891998 -16.976028 +v 125.099998 -112.893997 -16.772028 +v 124.045998 -114.010002 -16.87603 +v 128.404999 -110.587997 -17.039026 +v 123.017998 -113.310005 -16.763029 +v 126.963005 -111.858002 -16.871029 +v 128.733994 -110.990005 -16.884026 +v 127.853004 -112.655998 -17.026028 +v 127.768997 -110.743004 -16.843027 +v 128.460007 -108.512001 -16.745026 +v 128.981995 -110.876999 -16.384027 +v 129.111008 -109.125999 -16.474026 +v 127.915993 -109.681999 -16.521027 +v 125.598 -113.764 -16.506027 +v 127.716003 -112.809006 -16.395029 +v 126.393005 -112.438004 -16.48703 +v 127.418991 -111.239998 -16.44203 +v 127.730995 -108.294006 -16.322027 +v 125.847 -113.197998 -16.353029 +v 128.626007 -107.350998 -16.114027 +v 127.146004 -106.381996 -16.344027 +v 127.93399 -106.599007 -16.241026 +v 127.489998 -111.660004 -16.088028 +v 128.090988 -111.850998 -15.993027 +v 126.711998 -106.722 -16.063026 +v 127.963005 -110.462006 -15.895027 +v 127.461998 -107.877998 -15.768027 +v 128.956009 -109.598999 -15.719028 +v 124.592995 -105.126999 -15.874027 +v 125.956001 -105.117004 -15.781027 +v 127.972008 -109.204002 -15.847027 +v 127.305 -105.782997 -15.765027 +v 124.462997 -105.899002 -15.701026 +v 128.616013 -107.566994 -15.540026 +v 126.386002 -106.673004 -15.717027 +v 122.982002 -106.139999 -15.536027 +v 123.084 -105.383003 -15.621027 +v 127.590996 -106.149002 -15.332027 +v 125.103996 -106.155998 -15.470027 +v 128.251999 -108.400002 -15.436028 +v 124.893997 -104.842995 -15.244026 +v 126.568001 -106.695 -15.316028 +v 121.026001 -107.285995 -15.293027 +v 121.421005 -106.289001 -15.291026 +v 126.534996 -105.451004 -15.171026 +v 122.685997 -105.186996 -15.159026 +v 123.788002 -106.182999 -15.018027 +v 125.359001 -106.084999 -15.025026 +v 127.173004 -106.648994 -15.078027 +v 122.767998 -106.640999 -14.841026 +v 121.445 -107.767998 -14.966026 +v 121.209 -106.193001 -14.760026 +v 120.460999 -107.239998 -14.794027 +v 125.046997 -105.297997 -14.708027 +v 123.357994 -105.106003 -14.714026 +v 120.084 -108.699997 -14.844028 +v 120.164001 -110.531998 -14.642028 +v 123.768005 -105.782997 -14.536027 +v 121.955002 -107.251999 -14.627027 +v 120.844002 -109.861 -14.748027 +v 122.345001 -105.631004 -14.416026 +v 120.705002 -110.702003 -14.752028 +v 119.964005 -108.404999 -14.400027 +v 121.279999 -108.484001 -14.432028 +v 119.862 -110.112 -14.193027 +v 120.727005 -107.109001 -14.152026 +v 121.152 -109.926003 -14.255028 +v 120.996994 -112.269997 -14.351027 +v 121.834999 -112.067001 -14.356027 +v 121.903999 -106.867996 -14.239027 +v 122.901001 -113.556 -14.140027 +v 120.490997 -111.915001 -13.964027 +v 123.184998 -112.961998 -14.101027 +v 121.616997 -111.286003 -14.047028 +v 121.071999 -108.283997 -13.994026 +v 121.947998 -113.392998 -13.815027 +v 120.131004 -109.053001 -13.791027 +v 120.981003 -109.618004 -13.874027 +v 125.341995 -113.789001 -13.778028 +v 122.620003 -112.320999 -13.778028 +v 125.57 -113.016998 -13.665027 +v 121.356003 -111.065002 -13.624028 +v 124.262001 -114.195999 -13.477029 +v 123.948997 -112.846001 -13.522028 +v 120.532997 -111.417999 -13.512028 +v 121.181999 -112.709 -13.576028 +v 122.244995 -112.193001 -13.357028 +v 120.783997 -110.761002 -13.469028 +v 127.939003 -112.117996 -13.354028 +v 122.071999 -113.227005 -13.144028 +v 127.176003 -111.812004 -13.225028 +v 126.870003 -113.477997 -13.287028 +v 123.818001 -114.017006 -13.049027 +v 123.558998 -112.891998 -13.096027 +v 126.396004 -112.343994 -13.113029 +v 124.925003 -112.915001 -12.917027 +v 127.995995 -110.829002 -13.150027 +v 123.07 -113.202995 -12.917027 +v 128.565994 -109.604004 -13.019028 +v 125.708 -112.685997 -12.883028 +v 125.698997 -113.957001 -12.918028 +v 128.736008 -110.988998 -13.002028 +v 128.095001 -112.480003 -12.648028 +v 128.981995 -110.876999 -12.504028 +v 127.967003 -110.149002 -12.816029 +v 128.973999 -109.096001 -12.739028 +v 126.580002 -113.465004 -12.524028 +v 127.418991 -111.239998 -12.562028 +v 128.207001 -106.936996 -12.458027 +v 126.819 -112.139 -12.479028 +v 124.825996 -113.586998 -12.630028 +v 127.730995 -108.294006 -12.442028 +v 129.150009 -108.944 -12.270027 +v 127.887993 -109.768005 -12.493028 +v 127.146004 -106.381996 -12.464026 +v 127.444 -112.333 -12.189028 +v 128.363998 -106.798004 -12.033027 +v 126.711998 -106.722 -12.183027 +v 127.87899 -110.825005 -12.081028 +v 127.462997 -107.850998 -12.108027 +v 128.712006 -110.673004 -11.948027 +v 128.056 -109.081001 -11.805027 +v 126.101997 -105.442001 -12.216026 +v 124.462997 -105.899002 -11.821027 +v 126.460999 -105.277 -11.764027 +v 128.471008 -107.337997 -11.629027 +v 128.813004 -109.0 -11.720028 +v 127.581001 -107.708 -11.574027 +v 126.386002 -106.673004 -11.837027 +v 122.982002 -106.139999 -11.656027 +v 123.084 -105.383003 -11.741027 +v 124.549004 -104.835999 -11.577026 +v 125.103996 -106.155998 -11.590027 +v 126.568001 -106.695 -11.436027 +v 126.959991 -105.676003 -11.324026 +v 121.026001 -107.285995 -11.413026 +v 121.421005 -106.289001 -11.411027 +v 123.300003 -104.992004 -11.159027 +v 125.155998 -105.019005 -11.064027 +v 121.586998 -105.848 -11.125027 +v 127.641006 -106.792999 -11.269027 +v 123.788002 -106.182999 -11.138026 +v 125.117004 -106.020004 -11.093027 +v 122.394005 -106.774002 -11.207027 +v 126.081001 -105.913994 -11.003026 +v 121.285995 -108.124001 -11.036027 +v 120.477997 -107.220001 -10.927027 +v 120.084 -108.699997 -10.964027 +v 120.164001 -110.531998 -10.762028 +v 120.844002 -109.861 -10.868028 +v 122.615997 -105.447998 -10.600026 +v 120.725998 -110.798004 -10.853027 +v 120.000999 -108.227997 -10.521027 +v 122.008003 -107.127007 -10.575027 +v 123.267006 -106.139999 -10.717027 +v 121.080002 -106.432999 -10.577026 +v 123.763 -105.561005 -10.632028 +v 121.279999 -108.484001 -10.552028 +v 119.884995 -110.150002 -10.418027 +v 121.152 -109.926003 -10.375028 +v 120.994003 -112.260994 -10.475028 +v 121.807999 -112.204002 -10.510028 +v 122.870995 -113.687996 -10.185027 +v 120.121002 -111.139999 -10.139028 +v 121.616997 -111.286003 -10.167027 +v 121.495003 -106.711998 -10.242027 +v 121.153 -108.195999 -10.179027 +v 120.364998 -108.131996 -10.025027 +v 119.972 -109.683998 -10.005028 +v 121.160004 -112.788994 -9.827027 +v 124.392998 -113.558998 -10.108027 +v 122.530998 -112.287994 -10.064028 +v 120.981003 -109.612 -9.996027 +v 123.865997 -112.852997 -9.795028 +v 123.094002 -113.980003 -9.691029 +v 125.251991 -113.917 -9.791027 +v 120.57 -110.046997 -9.695027 +v 121.330002 -111.055 -9.718028 +v 125.598999 -112.865997 -9.623028 +v 120.609001 -111.653 -9.616027 +v 122.250999 -112.191002 -9.485027 +v 124.681 -114.147003 -9.315028 +v 126.931 -113.075005 -9.692028 +v 126.872002 -112.405998 -9.589027 +v 122.263 -113.306999 -9.220028 +v 125.972 -113.928001 -9.199028 +v 123.562996 -112.901001 -9.201028 +v 121.803001 -112.417 -9.265028 +v 125.093994 -112.898003 -9.005028 +v 127.639992 -112.903 -9.286028 +v 128.404999 -110.587997 -9.279027 +v 127.548996 -111.258003 -9.151028 +v 128.733994 -110.990005 -9.124027 +v 124.273003 -113.764 -8.865027 +v 126.504005 -112.297997 -8.765028 +v 128.460007 -108.512001 -8.985027 +v 128.783005 -111.422005 -8.687027 +v 128.973999 -109.096001 -8.859028 +v 127.915993 -109.681999 -8.761027 +v 127.450005 -112.988998 -8.648027 +v 126.096992 -113.545998 -8.642028 +v 127.418991 -111.239998 -8.682028 +v 127.730995 -108.294006 -8.562027 +v 129.151993 -108.964005 -8.390028 +v 128.673996 -107.377998 -8.258027 +v 127.146004 -106.381996 -8.584027 +v 127.93399 -106.599007 -8.481026 +v 127.607002 -112.181999 -8.274028 +v 126.711998 -106.722 -8.303026 +v 127.863007 -110.841995 -8.219028 +v 128.843994 -110.462997 -8.069028 +v 127.462997 -107.850998 -8.228027 +v 124.592995 -105.126999 -8.114027 +v 125.960007 -105.118996 -8.022027 +v 128.056 -109.081001 -7.925028 +v 127.509995 -105.911003 -7.904026 +v 124.893997 -105.894997 -8.071027 +v 128.813004 -108.994003 -7.840028 +v 127.581001 -107.708 -7.694026 +v 126.386002 -106.673004 -7.957027 +v 123.597 -106.048004 -7.835026 +v 123.084 -105.383003 -7.861026 +v 125.103996 -106.155998 -7.710026 +v 128.294998 -107.278999 -7.622026 +v 123.723 -104.883995 -7.482026 +v 126.568001 -106.695 -7.556026 +v 121.389 -106.448997 -7.603026 +v 122.487 -106.444 -7.667026 +v 126.660004 -105.648003 -7.262026 +v 125.097008 -104.972 -7.217026 +v 122.112 -105.535995 -7.345026 +v 123.788002 -106.182999 -7.258026 +v 125.117004 -106.020004 -7.213026 +v 122.748001 -106.602997 -7.266026 +v 120.750999 -108.664993 -7.237028 +v 121.654999 -107.484993 -7.275028 +v 126.080009 -105.912003 -7.122026 +v 120.851006 -106.574997 -7.064026 +v 120.100998 -109.658005 -7.059028 +v 120.375 -107.793007 -7.248027 +v 122.780006 -105.246002 -6.883026 +v 120.838997 -109.481003 -6.980028 +v 122.008003 -107.127007 -6.695028 +v 120.720001 -111.027 -6.971028 +v 119.859001 -108.880997 -6.707027 +v 123.388 -106.002998 -6.770026 +v 121.080002 -106.432999 -6.697027 +v 123.675003 -105.255997 -6.786026 +v 121.279999 -108.484001 -6.672027 +v 120.062996 -110.829002 -6.542027 +v 121.152 -109.926003 -6.495027 +v 120.084999 -108.152 -6.474028 +v 121.923996 -112.126999 -6.560028 +v 122.565002 -113.393997 -6.446029 +v 120.976997 -112.278 -6.564028 +v 121.495003 -106.711998 -6.362027 +v 121.616997 -111.286003 -6.287028 +v 120.581001 -112.034004 -6.258028 +v 121.153 -108.195999 -6.299026 +v 120.365997 -108.131996 -6.145028 +v 119.983002 -110.455002 -6.080028 +v 123.527 -112.987 -6.233028 +v 120.981003 -109.618004 -6.114027 +v 121.956001 -113.404999 -6.001029 +v 122.620003 -112.320999 -6.018028 +v 125.56501 -113.009995 -5.897028 +v 120.650002 -109.961998 -5.865028 +v 124.18 -113.828003 -6.211029 +v 121.356003 -111.065002 -5.864027 +v 121.114998 -112.668999 -5.870028 +v 123.782997 -114.106995 -5.749029 +v 123.948997 -112.846001 -5.762029 +v 120.683998 -111.082001 -5.653027 +v 121.253998 -112.459999 -5.513028 +v 122.244995 -112.193001 -5.597028 +v 125.247002 -113.931 -5.896029 +v 127.004997 -113.038002 -5.802029 +v 122.457001 -113.544998 -5.471029 +v 125.655991 -114.026001 -5.324028 +v 127.176003 -111.812004 -5.465028 +v 123.818001 -114.017006 -5.289029 +v 126.682999 -113.617004 -5.345028 +v 123.558998 -112.891998 -5.336029 +v 126.396004 -112.343994 -5.353028 +v 124.925003 -112.915001 -5.157029 +v 128.883011 -109.316994 -5.139027 +v 128.736008 -110.988998 -5.242028 +v 127.725006 -112.618996 -5.523028 +v 123.07 -113.202995 -5.158029 +v 125.708 -112.685997 -5.123029 +v 128.095001 -112.480003 -4.888028 +v 127.768997 -110.743004 -5.203027 +v 128.460007 -108.512001 -5.105028 +v 128.981995 -110.876999 -4.744027 +v 127.915993 -109.681999 -4.881028 +v 126.580002 -113.465004 -4.764029 +v 127.418991 -111.239998 -4.802027 +v 126.819 -112.139 -4.719028 +v 124.824997 -113.586998 -4.870028 +v 127.730995 -108.294006 -4.682027 +v 129.151993 -108.964005 -4.510026 +v 128.673996 -107.377998 -4.378026 +v 127.146004 -106.381996 -4.704027 +v 127.93399 -106.599007 -4.601026 +v 127.444 -112.333 -4.429028 +v 126.711998 -106.722 -4.423026 +v 127.87899 -110.825005 -4.321028 +v 127.462997 -107.850998 -4.348028 +v 128.712006 -110.673004 -4.188028 +v 124.592995 -105.126999 -4.234026 +v 125.960007 -105.118996 -4.142026 +v 128.056 -109.081001 -4.045027 +v 127.509995 -105.911003 -4.024026 +v 124.893997 -105.894997 -4.191026 +v 128.813004 -109.0 -3.960027 +v 127.581001 -107.708 -3.814027 +v 126.386002 -106.673004 -4.077027 +v 123.597 -106.048004 -3.955026 +v 123.084 -105.383003 -3.981026 +v 125.103996 -106.155998 -3.830026 +v 128.294998 -107.278999 -3.742026 +v 123.723 -104.883995 -3.602026 +v 126.568001 -106.695 -3.676026 +v 121.389 -106.448997 -3.723027 +v 122.487 -106.444 -3.787026 +v 126.660004 -105.648003 -3.382026 +v 125.097008 -104.972 -3.337026 +v 122.112 -105.535995 -3.465026 +v 123.788002 -106.182999 -3.378026 +v 125.117004 -106.020004 -3.333026 +v 122.748001 -106.602997 -3.386026 +v 120.750999 -108.664993 -3.357027 +v 121.654999 -107.484993 -3.395026 +v 126.080009 -105.912003 -3.242026 +v 120.851006 -106.574997 -3.184026 +v 120.100998 -109.658005 -3.179027 +v 120.375 -107.793007 -3.368028 +v 122.780006 -105.246002 -3.003026 +v 120.838997 -109.481003 -3.100028 +v 122.008003 -107.127007 -2.815027 +v 120.720001 -111.027 -3.091028 +v 120.000999 -108.227997 -2.761028 +v 123.388 -106.002998 -2.890026 +v 121.080002 -106.432999 -2.817026 +v 123.675003 -105.255997 -2.906026 +v 121.279999 -108.484001 -2.792028 +v 119.874001 -110.329002 -2.612028 +v 121.152 -109.926003 -2.615027 +v 121.923996 -112.126999 -2.680028 +v 123.315002 -113.687996 -2.464029 +v 120.986 -112.291 -2.683028 +v 121.495003 -106.711998 -2.482026 +v 121.604004 -111.203995 -2.234028 +v 120.490997 -111.915001 -2.324028 +v 122.176994 -113.507004 -2.297029 +v 121.153 -108.195999 -2.419027 +v 120.563004 -107.901001 -2.251027 +v 123.527 -112.987 -2.353028 +v 120.981003 -109.612 -2.236028 +v 122.620003 -112.320999 -2.138028 +v 120.122002 -109.691002 -2.102028 +v 125.56501 -113.009995 -2.017028 +v 125.207008 -113.824005 -2.147029 +v 123.948997 -112.846001 -1.882028 +v 120.621002 -111.406998 -1.799028 +v 123.733994 -114.116997 -1.763029 +v 121.181999 -112.709 -1.936028 +v 122.250999 -112.191002 -1.725028 +v 121.027 -111.059998 -1.824028 +v 127.718002 -112.423004 -1.776028 +v 126.707001 -113.557007 -1.690028 +v 122.060997 -113.232002 -1.515028 +v 125.655991 -114.026001 -1.444029 +v 127.586006 -111.639999 -1.632028 +v 123.562996 -112.901001 -1.441028 +v 126.361 -112.364998 -1.483028 +v 125.226006 -112.825996 -1.436028 +v 127.537994 -113.053001 -1.200028 +v 123.257004 -113.294998 -1.253029 +v 125.055 -113.881996 -1.040029 +v 127.605003 -110.898003 -1.134028 +v 128.815002 -111.292 -1.061028 +v 125.271004 -113.153999 -0.978028 +v 126.480995 -112.328003 -1.036028 +v 128.275009 -112.084999 -0.753028 +v 127.058998 -113.059998 -0.772028 +v 127.164009 -111.801994 -0.769028 +v 128.889999 -110.651001 -0.454028 +v 127.489998 -112.173996 -0.536028 +v -117.830002 -109.501999 -21.343027 +v -119.126999 -109.497002 -21.385025 +v -118.862999 -109.481003 -20.915026 +v -118.272995 -109.479004 -20.763027 +v -126.764999 -107.755997 -21.140026 +v -126.601997 -108.161003 -21.396027 +v -125.168991 -105.803993 -21.375027 +v -124.528999 -106.524994 -21.398027 +v -125.828995 -108.177002 -21.314028 +v -125.145004 -107.405998 -21.056026 +v -124.141998 -106.516006 -21.070026 +v -122.498001 -105.973 -21.400028 +v -121.737999 -106.197998 -20.980026 +v -122.746994 -106.138 -20.864027 +v -120.481003 -106.799995 -21.328028 +v -121.353996 -104.997002 -21.380026 +v -119.200996 -106.206001 -21.345028 +v -120.716995 -105.199997 -20.935028 +v -126.828003 -110.149002 -21.266027 +v -126.422005 -109.917999 -21.362026 +v -119.157997 -108.512001 -21.003027 +v -119.461998 -107.957001 -21.386026 +v -125.894997 -109.839996 -20.976027 +v -125.513 -111.670006 -21.15103 +v -125.474007 -112.214996 -21.241028 +v -118.055 -107.917999 -21.393026 +v -118.479996 -107.295998 -20.911028 +v -123.427002 -104.929001 -21.079027 +v -122.798004 -104.927002 -21.396027 +v -125.973 -112.447998 -20.987028 +v -125.416992 -111.252998 -20.84103 +v -127.148003 -109.684998 -20.930027 +v -119.685005 -107.281998 -20.785027 +v -123.290001 -113.564003 -21.125029 +v -124.447998 -113.584 -20.955029 +v -125.227005 -105.737 -20.749027 +v -123.667999 -112.695999 -20.773027 +v -126.956001 -110.840996 -20.846027 +v -118.236 -108.264999 -20.862026 +v -126.261993 -106.746002 -20.882027 +v -122.396996 -112.998001 -20.792028 +v -121.983002 -113.639 -21.053028 +v -125.720993 -108.369003 -20.578028 +v -124.445999 -112.272003 -20.657028 +v -124.346001 -105.316002 -20.661026 +v -126.993004 -108.344002 -20.612026 +v -122.515999 -105.017998 -20.597027 +v -120.973999 -112.644997 -20.698029 +v -119.042999 -112.028 -20.836027 +v -119.827003 -113.132996 -20.75503 +v -119.644005 -111.615005 -20.666029 +v -120.194 -105.885002 -20.579025 +v -122.292999 -114.141998 -20.597029 +v -121.227005 -105.933006 -20.578028 +v -123.852997 -106.273003 -20.635027 +v -118.193001 -109.913002 -20.715027 +v -118.978004 -110.515999 -20.676027 +v -125.737991 -110.551003 -20.527027 +v -120.651001 -113.797005 -20.457027 +v -126.215996 -112.314003 -20.480028 +v -125.056 -107.110001 -20.552027 +v -126.386002 -107.247002 -20.383026 +v -122.716003 -105.748001 -20.498026 +v -118.559998 -108.623001 -20.635027 +v -125.081001 -113.358002 -20.332027 +v -118.497002 -111.922005 -20.319029 +v -123.699997 -113.994003 -20.411028 +v -126.960991 -109.525002 -20.275026 +v -126.109001 -109.614998 -20.294025 +v -122.955002 -112.878998 -20.305029 +v -126.829994 -110.965996 -20.350027 +v -117.850998 -109.626999 -20.282026 +v -124.174995 -105.530998 -20.392027 +v -119.175003 -110.104004 -20.155025 +v -121.457001 -112.770996 -20.095028 +v -125.199005 -106.780998 -20.339025 +v -125.240997 -111.812004 -20.138027 +v -120.431 -112.191994 -20.15103 +v -119.891006 -113.343002 -20.123028 +v -124.392998 -112.456001 -20.181028 +v -119.620003 -111.334999 -19.996029 +v -126.252991 -108.268997 -20.172028 +v -122.648003 -113.940002 -19.922028 +v -118.005997 -110.569 -19.825027 +v -121.480003 -113.900993 -19.955029 +v -126.334991 -111.050003 -20.019028 +v -123.901001 -113.584999 -19.920029 +v -123.171997 -113.183998 -19.901028 +v -119.112999 -112.459999 -19.807028 +v -125.330002 -112.542 -19.948029 +v -119.170998 -110.798004 -19.718027 +v -119.897003 -112.198006 -19.690027 +v -121.117004 -113.18 -19.707029 +v -119.446999 -112.419998 -19.635029 +v -118.148003 -108.122002 -19.524027 +v -119.010002 -109.172997 -19.706026 +v -118.525002 -109.346001 -19.413027 +v -117.818001 -109.506004 0.591972 +v -118.889 -109.5 0.071972 +v -118.230995 -109.504997 0.013972 +v -119.107002 -109.556 0.561972 +v -118.280998 -108.237 -1.156027 +v -118.465996 -108.980003 -1.311028 +v -118.221001 -110.890999 -1.339028 +v -118.964005 -109.750999 -1.178028 +v -119.113998 -108.967995 -0.924028 +v -119.239006 -106.595001 -1.100026 +v -119.884995 -107.028999 -1.052026 +v -117.834999 -108.974998 -0.706028 +v -120.892006 -105.5 -1.059026 +v -121.181999 -106.278 -0.829026 +v -119.342003 -108.273994 -0.741027 +v -118.463997 -107.221001 -0.773026 +v -123.264999 -105.703003 -0.962026 +v -123.501999 -105.089005 -0.745026 +v -119.598999 -105.814003 -0.531026 +v -121.404999 -105.081001 -0.786026 +v -124.975998 -106.601997 -0.854026 +v -125.079002 -105.931999 -0.759026 +v -126.124992 -107.243004 -0.774026 +v -121.558006 -104.891998 -0.456026 +v -125.787003 -108.153999 -0.575027 +v -122.385002 -106.108002 -0.508026 +v -123.824997 -106.372993 -0.451026 +v -119.849998 -107.388 -0.380026 +v -126.159996 -109.610001 -0.568028 +v -118.399002 -107.332001 -0.368026 +v -124.709 -105.377007 -0.156026 +v -125.008003 -107.189003 -0.410026 +v -126.62999 -110.622002 -0.614028 +v -127.019005 -108.792 -0.483028 +v -125.672997 -106.070999 -0.271026 +v -125.599998 -111.771004 -0.508028 +v -121.671997 -106.183998 -0.208026 +v -126.476006 -107.042 -0.178026 +v -119.014 -110.008003 -0.421028 +v -119.181 -108.139999 -0.132027 +v -125.994995 -112.292999 -0.397028 +v -125.373009 -111.348999 -0.209028 +v -123.352997 -104.920998 -0.193026 +v -123.340004 -113.678001 -0.392029 +v -124.399002 -112.610001 -0.343028 +v -126.986 -110.835999 -0.044028 +v -125.187996 -113.266998 -0.127028 +v -125.871002 -109.137001 -0.165028 +v -120.305 -106.707001 -0.063026 +v -123.237 -112.958 -0.206028 +v -125.697998 -110.527 0.120972 +v -121.463997 -113.525002 -0.328029 +v -118.182007 -109.067001 -0.108028 +v -125.442001 -107.764 0.075973 +v -121.376999 -112.951004 -0.130028 +v -127.122002 -108.972 0.073972 +v -118.942001 -111.754997 -0.139028 +v -120.119995 -113.275002 -0.090028 +v -123.334999 -106.022003 0.139974 +v -119.264 -106.624001 0.043974 +v -122.412003 -114.097 -0.007029 +v -124.324997 -113.807999 0.190971 +v -124.453003 -112.271004 0.056972 +v -119.709999 -111.840004 -0.065028 +v -122.656006 -112.887001 0.097972 +v -121.005997 -105.435997 0.123974 +v -124.513 -106.659004 0.082974 +v -121.579002 -105.939003 0.108974 +v -118.518997 -109.847 -0.105028 +v -119.028999 -112.535004 0.151972 +v -118.954002 -110.421005 0.022972 +v -122.962997 -105.143005 0.204974 +v -126.405998 -112.020004 0.180972 +v -120.927994 -113.890999 0.518971 +v -126.374008 -107.289001 0.340973 +v -118.095001 -110.751999 0.204972 +v -120.961006 -112.566002 0.300972 +v -125.966995 -109.149002 0.266972 +v -124.156998 -112.516998 0.350972 +v -125.012993 -106.057999 0.381974 +v -122.883995 -114.108002 0.570971 +v -119.980995 -111.780998 0.555972 +v -125.429001 -112.917 0.579972 +v -119.411995 -110.829002 0.577972 +v -125.494003 -111.487 0.559972 +v -126.780998 -109.233002 0.557972 +v -125.671997 -107.377998 0.400973 +v -119.548004 -113.114998 0.587972 +v -126.626999 -111.087006 0.558972 +v -121.826004 -112.907997 0.591972 +v -118.326996 -111.528999 0.598972 +v -123.850998 -112.806999 0.597972 +v -126.317993 -109.724998 0.563972 +v -119.195 -108.653 -20.198027 +v -118.060997 -108.218994 -20.199028 +v -118.588997 -107.068001 -20.027027 +v -119.975998 -106.719002 -20.137028 +v -119.513 -106.331993 -20.155025 +v -119.600998 -107.748001 -19.917027 +v -122.299995 -105.130997 -19.754026 +v -120.501999 -106.741005 -19.635027 +v -120.936996 -105.153999 -19.661026 +v -119.603996 -105.851997 -19.645027 +v -122.449005 -105.899002 -19.581026 +v -119.257004 -107.954002 -19.340025 +v -123.934998 -106.103004 -19.416027 +v -123.815002 -105.348999 -19.501028 +v -119.227997 -106.353996 -19.192028 +v -121.813995 -106.172005 -19.350027 +v -121.991997 -104.854004 -19.124025 +v -120.364006 -106.747002 -19.196026 +v -125.918999 -107.202003 -19.173027 +v -125.498993 -106.214005 -19.171026 +v -120.365997 -105.501999 -19.051027 +v -123.623001 -104.973999 -18.916027 +v -125.322998 -105.778 -18.885027 +v -123.130005 -106.167 -18.898026 +v -121.558006 -106.106995 -18.905027 +v -119.747993 -106.723 -18.959028 +v -124.162003 -106.599998 -18.721025 +v -125.512001 -107.693001 -18.846025 +v -126.464996 -107.121994 -18.687027 +v -121.850998 -105.311996 -18.588028 +v -126.894997 -108.592003 -18.724028 +v -126.859993 -110.425003 -18.522026 +v -123.140999 -105.765999 -18.416027 +v -124.932999 -107.065994 -18.335026 +v -126.164001 -109.770996 -18.628027 +v -124.237 -105.375 -18.369026 +v -126.305 -110.705002 -18.613026 +v -126.966995 -108.117996 -18.281027 +v -125.844002 -106.349998 -18.337027 +v -125.694008 -108.404999 -18.312027 +v -127.129005 -110.036003 -18.178026 +v -125.856995 -109.844002 -18.135027 +v -126.065002 -112.186996 -18.233028 +v -125.257004 -112.137001 -18.270029 +v -124.231003 -113.646996 -17.94503 +v -126.495003 -111.905998 -17.907028 +v -125.425995 -111.215004 -17.927027 +v -125.434998 -106.640007 -18.002026 +v -125.814003 -108.113998 -17.939026 +v -126.215996 -107.472 -17.847027 +v -126.934006 -109.067001 -17.691027 +v -122.707001 -113.555 -17.868029 +v -124.536995 -112.239006 -17.824028 +v -126.020996 -109.530998 -17.754026 +v -126.790001 -111.008003 -17.542028 +v -123.216003 -112.836006 -17.555029 +v -125.054001 -113.440994 -17.631029 +v -121.857002 -113.934006 -17.551027 +v -125.681999 -110.987999 -17.504026 +v -125.970009 -112.418007 -17.326027 +v -121.483994 -112.891998 -17.383028 +v -123.329994 -114.086998 -17.390028 +v -124.82 -112.136002 -17.237028 +v -126.246002 -110.669998 -17.349026 +v -120.157005 -113.133995 -17.452028 +v -120.199997 -112.462997 -17.349028 +v -121.454002 -114.051994 -16.959028 +v -124.403 -113.655998 -17.11603 +v -120.419006 -113.669998 -16.985027 +v -123.524002 -112.868004 -16.976028 +v -121.984001 -112.907997 -16.772028 +v -123.065002 -113.996994 -16.87603 +v -118.623001 -110.682999 -17.039026 +v -124.075005 -113.271996 -16.763029 +v -120.096001 -111.917 -16.871029 +v -118.304001 -111.093994 -16.884026 +v -119.225006 -112.737 -17.026028 +v -119.263 -110.822998 -16.843027 +v -118.516998 -108.609993 -16.745026 +v -118.052994 -110.987 -16.384027 +v -117.880997 -109.238998 -16.474026 +v -119.088997 -109.765999 -16.521027 +v -121.506996 -113.790001 -16.506027 +v -119.365997 -112.887001 -16.395029 +v -120.68 -112.484001 -16.48703 +v -119.625 -111.311005 -16.44203 +v -119.239998 -108.374001 -16.322027 +v -121.243996 -113.229996 -16.353029 +v -118.321999 -107.453003 -16.114027 +v -119.778 -106.448006 -16.344027 +v -118.996002 -106.683998 -16.241026 +v -119.563995 -111.732994 -16.088028 +v -118.968002 -111.938004 -15.993027 +v -120.220993 -106.777 -16.063026 +v -119.061996 -110.546997 -15.895027 +v -119.499001 -107.951996 -15.768027 +v -118.047997 -109.709 -15.719028 +v -122.299995 -105.130997 -15.874027 +v -120.936996 -105.153999 -15.781027 +v -119.020996 -109.289001 -15.847027 +v -119.603996 -105.851997 -15.765027 +v -122.449005 -105.899002 -15.701026 +v -118.337997 -107.669006 -15.540026 +v -120.544998 -106.720001 -15.717027 +v -123.934998 -106.103004 -15.536027 +v -123.815002 -105.348999 -15.621027 +v -119.328003 -106.225998 -15.332027 +v -121.813995 -106.172005 -15.470027 +v -118.723 -108.492004 -15.436028 +v -121.991997 -104.854004 -15.244026 +v -120.364006 -106.747002 -15.316028 +v -125.918999 -107.202003 -15.293027 +v -125.498993 -106.214005 -15.291026 +v -120.365997 -105.501999 -15.171026 +v -124.207001 -105.144005 -15.159026 +v -123.130005 -106.167 -15.018027 +v -121.558006 -106.106995 -15.025026 +v -119.758003 -106.715004 -15.078027 +v -124.162003 -106.599998 -14.841026 +v -125.512001 -107.693001 -14.966026 +v -125.709 -106.112999 -14.760026 +v -126.481995 -107.141998 -14.794027 +v -121.850998 -105.311996 -14.708027 +v -123.534004 -105.080002 -14.714026 +v -126.894997 -108.592003 -14.844028 +v -126.861008 -110.425003 -14.642028 +v -123.140999 -105.765999 -14.536027 +v -124.989006 -107.189995 -14.627027 +v -126.164001 -109.770996 -14.748027 +v -124.558998 -105.579002 -14.416026 +v -126.323997 -110.609001 -14.752028 +v -127.008003 -108.294006 -14.400027 +v -125.694008 -108.404999 -14.432028 +v -127.151001 -109.999001 -14.193027 +v -126.213997 -107.017006 -14.152026 +v -125.856995 -109.844002 -14.255028 +v -126.069992 -112.182999 -14.351027 +v -125.228004 -112.000999 -14.356027 +v -125.030991 -106.805 -14.239027 +v -124.199005 -113.516006 -14.140027 +v -126.567009 -111.814995 -13.964027 +v -123.899994 -112.928001 -14.101027 +v -125.425995 -111.215004 -14.047028 +v -125.897003 -108.200996 -13.994026 +v -125.147003 -113.329002 -13.815027 +v -126.856995 -108.946007 -13.791027 +v -126.020996 -109.530998 -13.874027 +v -121.764 -113.808998 -13.778028 +v -124.447998 -112.274002 -13.778028 +v -121.515999 -113.042999 -13.665027 +v -125.681999 -110.987999 -13.624028 +v -122.853004 -114.188995 -13.477029 +v -123.133003 -112.830994 -13.522028 +v -126.513 -111.32 -13.512028 +v -125.896004 -112.626999 -13.576028 +v -124.82 -112.136002 -13.357028 +v -126.246002 -110.669998 -13.469028 +v -119.125999 -112.202003 -13.354028 +v -125.018997 -113.167 -13.144028 +v -119.882004 -111.876999 -13.225028 +v -120.227997 -113.535004 -13.287028 +v -123.292 -113.999001 -13.049027 +v -123.524002 -112.868004 -13.096027 +v -120.673996 -112.389999 -13.113029 +v -122.158997 -112.924004 -12.917027 +v -119.037003 -110.915001 -13.150027 +v -124.021004 -113.166 -12.917027 +v -118.437996 -109.704002 -13.019028 +v -121.370003 -112.714996 -12.883028 +v -121.409996 -113.985001 -12.918028 +v -118.302002 -111.093002 -13.002028 +v -118.978996 -112.567001 -12.648028 +v -118.052994 -110.987 -12.504028 +v -119.050003 -110.234001 -12.816029 +v -118.017998 -109.205002 -12.739028 +v -120.517998 -113.514999 -12.524028 +v -119.625 -111.311005 -12.562028 +v -118.731003 -107.028999 -12.458027 +v -120.247002 -112.195 -12.479028 +v -122.275002 -113.594002 -12.630028 +v -119.239998 -108.374001 -12.442028 +v -117.838005 -109.057999 -12.270027 +v -119.120003 -109.851006 -12.493028 +v -119.778 -106.448006 -12.464026 +v -119.625999 -112.404999 -12.189028 +v -118.57 -106.893005 -12.033027 +v -120.220993 -106.777 -12.183027 +v -119.154999 -110.907005 -12.081028 +v -119.498001 -107.923996 -12.108027 +v -118.318001 -110.776001 -11.948027 +v -118.934998 -109.167999 -11.805027 +v -120.798996 -105.483002 -12.216026 +v -122.449005 -105.899002 -11.821027 +v -120.435997 -105.325996 -11.764027 +v -118.477005 -107.436005 -11.629027 +v -118.175995 -109.105995 -11.720028 +v -119.375999 -107.784004 -11.574027 +v -120.544998 -106.720001 -11.837027 +v -123.934998 -106.103004 -11.656027 +v -123.815002 -105.348999 -11.741027 +v -122.336998 -104.837997 -11.577026 +v -121.813995 -106.172005 -11.590027 +v -120.362999 -106.747002 -11.436027 +v -119.946999 -105.737999 -11.324026 +v -125.918999 -107.202003 -11.413026 +v -125.498993 -106.214005 -11.411027 +v -123.589005 -104.964005 -11.159027 +v -121.735001 -105.035995 -11.064027 +v -125.322998 -105.778 -11.125027 +v -119.292999 -106.871002 -11.269027 +v -123.130005 -106.167 -11.138026 +v -121.798004 -106.036003 -11.093027 +v -124.537994 -106.723 -11.207027 +v -120.831001 -105.954002 -11.003026 +v -125.679001 -108.044998 -11.036027 +v -126.464996 -107.121994 -10.927027 +v -126.894997 -108.592003 -10.964027 +v -126.859993 -110.425003 -10.762028 +v -126.164001 -109.770996 -10.868028 +v -124.283997 -105.403 -10.600026 +v -126.305 -110.705002 -10.853027 +v -126.966995 -108.117996 -10.521027 +v -124.932999 -107.065994 -10.575027 +v -123.651001 -106.111 -10.717027 +v -125.844002 -106.349998 -10.577026 +v -123.139999 -105.543999 -10.632028 +v -125.694008 -108.404999 -10.552028 +v -127.129005 -110.036003 -10.418027 +v -125.856995 -109.844002 -10.375028 +v -126.072006 -112.173996 -10.475028 +v -125.257004 -112.137001 -10.510028 +v -124.231003 -113.646996 -10.185027 +v -126.917999 -111.032005 -10.139028 +v -125.425995 -111.215004 -10.167027 +v -125.434998 -106.639 -10.242027 +v -125.814003 -108.113998 -10.179027 +v -126.599998 -108.030998 -10.025027 +v -127.030998 -109.572998 -10.005028 +v -125.919998 -112.706001 -9.827027 +v -122.707001 -113.555 -10.108027 +v -124.536995 -112.239006 -10.064028 +v -126.020996 -109.525002 -9.996027 +v -123.216003 -112.836006 -9.795028 +v -124.015007 -113.945 -9.691029 +v -121.857002 -113.934006 -9.791027 +v -126.443001 -109.949997 -9.695027 +v -125.707001 -110.977005 -9.718028 +v -121.483994 -112.891998 -9.623028 +v -126.443001 -111.556999 -9.616027 +v -124.815002 -112.135002 -9.485027 +v -122.432999 -114.150002 -9.315028 +v -120.157005 -113.133995 -9.692028 +v -120.199997 -112.462997 -9.589027 +v -124.830002 -113.250999 -9.220028 +v -121.137001 -113.962997 -9.199028 +v -123.520004 -112.876999 -9.201028 +v -125.267998 -112.349998 -9.265028 +v -121.990005 -112.912003 -9.005028 +v -119.444 -112.979004 -9.286028 +v -118.623001 -110.682999 -9.279027 +v -119.494995 -111.333 -9.151028 +v -118.304001 -111.093994 -9.124027 +v -122.832001 -113.756996 -8.865027 +v -120.564995 -112.347 -8.765028 +v -118.516998 -108.609993 -8.985027 +v -118.265999 -111.527 -8.687027 +v -118.017998 -109.205002 -8.859028 +v -119.088997 -109.765999 -8.761027 +v -119.636002 -113.059998 -8.648027 +v -121.002998 -113.584 -8.642028 +v -119.625 -111.311005 -8.682028 +v -119.239998 -108.374001 -8.562027 +v -117.836998 -109.077995 -8.390028 +v -118.275002 -107.481003 -8.258027 +v -119.778 -106.448006 -8.584027 +v -118.996002 -106.683998 -8.481026 +v -119.459999 -112.258003 -8.274028 +v -120.220993 -106.777 -8.303026 +v -119.170998 -110.923996 -8.219028 +v -118.181 -110.569 -8.069028 +v -119.498001 -107.923996 -8.228027 +v -122.299995 -105.130997 -8.114027 +v -120.933006 -105.155998 -8.022027 +v -118.934998 -109.168999 -7.925028 +v -119.403 -105.986 -7.904026 +v -122.017006 -105.906006 -8.071027 +v -118.175995 -109.099998 -7.840028 +v -119.375999 -107.784004 -7.694026 +v -120.544998 -106.720001 -7.957027 +v -123.318001 -106.027 -7.835026 +v -123.815002 -105.348999 -7.861026 +v -121.813995 -106.172005 -7.710026 +v -118.652 -107.372002 -7.622026 +v -123.164001 -104.866997 -7.482026 +v -120.362999 -106.747002 -7.556026 +v -125.534996 -106.374001 -7.603026 +v -124.436996 -106.394997 -7.667026 +v -120.246002 -105.701996 -7.262026 +v -121.792999 -104.987999 -7.217026 +v -124.790001 -105.479004 -7.345026 +v -123.130005 -106.167 -7.258026 +v -121.798004 -106.036003 -7.213026 +v -124.18 -106.560997 -7.266026 +v -126.228004 -108.572998 -7.237028 +v -125.294998 -107.415993 -7.275028 +v -120.832001 -105.950996 -7.122026 +v -126.076996 -106.487 -7.064026 +v -126.901001 -109.550003 -7.059028 +v -126.581993 -107.693001 -7.248027 +v -124.114998 -105.205002 -6.883026 +v -126.158997 -109.392006 -6.980028 +v -124.932999 -107.065994 -6.695028 +v -126.315994 -110.933998 -6.971028 +v -127.124992 -108.767006 -6.707027 +v -123.526001 -105.976997 -6.770026 +v -125.844002 -106.349998 -6.697026 +v -123.221001 -105.237 -6.786026 +v -125.694008 -108.404999 -6.672027 +v -126.968994 -110.720001 -6.542027 +v -125.856995 -109.844002 -6.495027 +v -126.880005 -108.043999 -6.474028 +v -125.139999 -112.062996 -6.560028 +v -124.528999 -113.344994 -6.446029 +v -126.091003 -112.191002 -6.564028 +v -125.434998 -106.639 -6.362027 +v -125.425995 -111.215004 -6.287028 +v -126.479996 -111.937004 -6.258028 +v -125.814003 -108.113998 -6.299026 +v -126.598999 -108.030998 -6.145028 +v -127.039001 -110.344002 -6.080028 +v -123.557999 -112.961998 -6.233028 +v -126.020996 -109.530998 -6.114027 +v -125.139 -113.341003 -6.001029 +v -124.447998 -112.274002 -6.018028 +v -121.521004 -113.035004 -5.897028 +v -126.360001 -109.867996 -5.865028 +v -122.925995 -113.819 -6.211029 +v -125.681999 -110.987999 -5.864027 +v -125.962006 -112.584999 -5.870028 +v -123.329994 -114.087997 -5.749029 +v -123.133003 -112.830994 -5.762029 +v -126.353996 -110.987999 -5.653027 +v -125.817001 -112.378998 -5.513028 +v -124.82 -112.136002 -5.597028 +v -121.862 -113.948006 -5.896029 +v -120.083 -113.098 -5.802029 +v -124.641998 -113.494003 -5.471029 +v -121.455994 -114.053001 -5.324028 +v -119.882004 -111.876999 -5.465028 +v -123.292 -113.999001 -5.289029 +v -120.419006 -113.669998 -5.345028 +v -123.524002 -112.868004 -5.336029 +v -120.673996 -112.389999 -5.353028 +v -122.158997 -112.924004 -5.157029 +v -118.113007 -109.424004 -5.139027 +v -118.302002 -111.093002 -5.242028 +v -119.352997 -112.696999 -5.523028 +v -124.020004 -113.167 -5.158029 +v -121.370003 -112.714996 -5.123029 +v -118.978996 -112.567001 -4.888028 +v -119.263 -110.822998 -5.203027 +v -118.516998 -108.609993 -5.105028 +v -118.052994 -110.987 -4.744027 +v -119.088997 -109.765999 -4.881028 +v -120.517998 -113.514999 -4.764029 +v -119.625 -111.311005 -4.802027 +v -120.247002 -112.195 -4.719028 +v -122.275002 -113.594002 -4.870028 +v -119.239998 -108.374001 -4.682027 +v -117.836998 -109.077995 -4.510026 +v -118.275002 -107.481003 -4.378026 +v -119.778999 -106.448006 -4.704027 +v -118.996002 -106.683998 -4.601026 +v -119.625999 -112.404999 -4.429028 +v -120.220993 -106.777 -4.423026 +v -119.154999 -110.907005 -4.321028 +v -119.498001 -107.923996 -4.348028 +v -118.318001 -110.776001 -4.188028 +v -122.299995 -105.130997 -4.234026 +v -120.933006 -105.155998 -4.142026 +v -118.934998 -109.168999 -4.045027 +v -119.403 -105.986 -4.024026 +v -122.017006 -105.906006 -4.191026 +v -118.175995 -109.105995 -3.960027 +v -119.375999 -107.784004 -3.814027 +v -120.544998 -106.720001 -4.077027 +v -123.318001 -106.027 -3.955026 +v -123.815002 -105.348999 -3.981026 +v -121.813995 -106.172005 -3.830026 +v -118.652 -107.372002 -3.742026 +v -123.164001 -104.866997 -3.602026 +v -120.362999 -106.747002 -3.676026 +v -125.534996 -106.374001 -3.723027 +v -124.436996 -106.394997 -3.787026 +v -120.246002 -105.701996 -3.382026 +v -121.792999 -104.987999 -3.337026 +v -124.790001 -105.479004 -3.465026 +v -123.130005 -106.167 -3.378026 +v -121.798004 -106.036003 -3.333026 +v -124.18 -106.560997 -3.386026 +v -126.228004 -108.572998 -3.357027 +v -125.294998 -107.415993 -3.395026 +v -120.832001 -105.950996 -3.242026 +v -126.076996 -106.487 -3.184026 +v -126.901001 -109.550003 -3.179027 +v -126.581993 -107.693001 -3.368027 +v -124.114998 -105.205002 -3.003026 +v -126.158997 -109.392006 -3.100028 +v -124.932999 -107.065994 -2.815027 +v -126.315994 -110.933998 -3.091028 +v -126.966995 -108.117996 -2.761028 +v -123.526001 -105.976997 -2.890026 +v -125.844002 -106.349998 -2.817026 +v -123.221001 -105.237 -2.906026 +v -125.694008 -108.404999 -2.792028 +v -127.145004 -110.215004 -2.612028 +v -125.856995 -109.844002 -2.615027 +v -125.139999 -112.062996 -2.680028 +v -123.787003 -113.656998 -2.464029 +v -126.081001 -112.204002 -2.683028 +v -125.434998 -106.640007 -2.482026 +v -125.437004 -111.133003 -2.234028 +v -126.567009 -111.814995 -2.324028 +v -124.921005 -113.447998 -2.297029 +v -125.814003 -108.113998 -2.419027 +v -126.396996 -107.804001 -2.251027 +v -123.557999 -112.961998 -2.353028 +v -126.020996 -109.525002 -2.236028 +v -124.447998 -112.274002 -2.138028 +v -126.881004 -109.583 -2.102028 +v -121.521004 -113.035004 -2.017028 +v -121.899002 -113.839996 -2.147029 +v -123.133003 -112.830994 -1.882028 +v -126.423996 -111.312004 -1.799028 +v -123.378998 -114.096001 -1.763029 +v -125.896004 -112.626999 -1.936028 +v -124.815002 -112.135002 -1.725028 +v -126.010002 -110.973999 -1.824028 +v -119.354004 -112.500999 -1.776028 +v -120.392998 -113.610001 -1.690028 +v -125.029999 -113.170998 -1.515028 +v -121.455994 -114.053001 -1.444029 +v -119.466995 -111.714996 -1.632028 +v -123.520004 -112.876999 -1.441028 +v -120.709999 -112.410004 -1.483028 +v -121.855995 -112.843002 -1.436028 +v -119.549995 -113.126999 -1.200028 +v -123.836006 -113.263 -1.253029 +v -122.052994 -113.894997 -1.040029 +v -119.431 -110.973999 -1.134028 +v -118.230003 -111.396996 -1.061028 +v -121.819 -113.170998 -0.978028 +v -120.589005 -112.375999 -1.036028 +v -118.790001 -112.177002 -0.753028 +v -120.028999 -113.122002 -0.772028 +v -119.892998 -111.867004 -0.769028 +v -118.139 -110.757996 -0.454028 +v -119.576996 -112.246994 -0.536028 +v -125.375 -115.959007 -17.584028 +v -124.753998 -116.443001 -17.600029 +v -125.088005 -116.563995 -17.823029 +v -124.356003 -116.322006 -17.584028 +v -123.667 -116.706001 -17.600029 +v -123.980003 -116.875999 -17.823029 +v -123.292999 -116.525002 -17.58103 +v -122.553993 -116.800003 -17.600029 +v -122.835999 -117.015999 -17.823029 +v -122.210999 -116.563995 -17.584028 +v -121.439003 -116.722 -17.600029 +v -121.684998 -116.979004 -17.823029 +v -121.136002 -116.437004 -17.584028 +v -120.348999 -116.475998 -17.600029 +v -120.553001 -116.766998 -17.823029 +v -120.518997 -116.757996 -20.377029 +v -120.348999 -116.475998 -20.600029 +v -120.842003 -116.609001 -20.600029 +v -120.093002 -116.148003 -17.584028 +v -119.308998 -116.066002 -17.600029 +v -119.465996 -116.384995 -17.823029 +v -119.433998 -116.370003 -20.377029 +v -119.308998 -116.066002 -20.600029 +v -119.776001 -116.273003 -20.600029 +v -119.106003 -115.702003 -17.584028 +v -118.344002 -115.501999 -17.600029 +v -118.450996 -115.841003 -17.823029 +v -118.421005 -115.821999 -20.377029 +v -118.344002 -115.501999 -20.600029 +v -118.773994 -115.778 -20.600029 +v -118.198997 -115.112 -17.584028 +v -117.476997 -114.797005 -17.600029 +v -117.530998 -115.148003 -17.823029 +v -117.503998 -115.125 -20.377029 +v -117.476997 -114.797005 -20.600029 +v -117.859001 -115.135002 -20.600029 +v -117.393005 -114.389 -17.584028 +v -116.727005 -113.968002 -17.600029 +v -116.727005 -114.324005 -17.823029 +v -116.707001 -113.551994 -17.584028 +v -116.112999 -113.034004 -17.600029 +v -116.057999 -113.385994 -17.823029 +v -116.155998 -112.621002 -17.584028 +v -115.648003 -112.017998 -17.600029 +v -115.540001 -112.356995 -17.823029 +v -115.526993 -112.323997 -20.377029 +v -115.648003 -112.017998 -20.600029 +v -115.841003 -112.490997 -20.600029 +v -115.753998 -111.615997 -17.584028 +v -115.344002 -110.942001 -17.600027 +v -115.185997 -111.261002 -17.823029 +v -115.177994 -111.225998 -20.377029 +v -115.344002 -110.942001 -20.600027 +v -115.461998 -111.438995 -20.600029 +v -115.249001 -110.342003 -17.600027 +v -115.208 -109.833 -17.600027 +v -115.002998 -110.124001 -17.823027 +v -115.0 -110.087997 -20.377028 +v -115.208 -109.833 -20.600027 +v -115.249001 -110.342003 -20.600027 +v -115.204994 -109.226006 -17.600027 +v -115.241997 -108.716003 -17.600027 +v -114.995003 -108.972 -17.823027 +v -114.998001 -108.937004 -20.377028 +v -115.241997 -108.716003 -20.600027 +v -115.204994 -109.226006 -20.600027 +v -115.515999 -108.403 -17.584026 +v -115.446999 -107.616997 -17.600027 +v -115.163994 -107.833 -17.823027 +v -115.333 -108.115005 -20.600027 +v -115.171997 -107.798004 -20.377028 +v -115.446999 -107.616997 -20.600027 +v -115.764999 -107.348999 -17.584026 +v -115.817001 -106.563004 -17.600027 +v -115.503998 -106.732002 -17.823027 +v -116.343994 -105.576996 -17.600027 +v -116.008995 -105.696999 -17.823027 +v -116.171997 -106.346001 -17.584026 +v -116.084 -106.016998 -20.600027 +v -116.027 -105.666 -20.377028 +v -116.343994 -105.576996 -20.600027 +v -117.014999 -104.682999 -17.600027 +v -116.665001 -104.750999 -17.823027 +v -116.727997 -105.417 -17.584026 +v -116.691002 -105.079002 -20.600027 +v -116.687996 -104.723 -20.377028 +v -117.353996 -104.652 -20.616028 +v -117.813995 -103.902 -17.600027 +v -117.459 -103.916 -17.823027 +v -117.434006 -104.244003 -17.600027 +v -118.724007 -103.252998 -17.600027 +v -118.369995 -103.211998 -17.823027 +v -118.229004 -103.866005 -17.584026 +v -118.295998 -103.531998 -20.600027 +v -118.400002 -103.192001 -20.377028 +v -119.056 -103.325005 -20.616028 +v -119.721001 -102.749001 -17.600027 +v -119.378998 -102.654999 -17.823027 +v -119.139 -103.279999 -17.584026 +v -119.255997 -102.959999 -20.600027 +v -119.410995 -102.639999 -20.377028 +v -119.721001 -102.749001 -20.600027 +v -120.784996 -102.403999 -17.600027 +v -120.460007 -102.259003 -17.823027 +v -120.127998 -102.839996 -17.584026 +v -120.292999 -102.542 -20.600027 +v -120.494003 -102.248993 -20.377028 +v -120.784996 -102.403999 -20.600027 +v -121.888 -102.225998 -17.600027 +v -121.588997 -102.031998 -17.823027 +v -121.380997 -102.286003 -17.600027 +v -123.005005 -102.218002 -17.600027 +v -122.739998 -101.981003 -17.823027 +v -122.247002 -102.434998 -17.581028 +v -123.236 -102.468002 -20.616028 +v -122.495003 -102.200005 -20.600027 +v -122.776001 -101.981995 -20.377028 +v -124.111 -102.379997 -17.600027 +v -123.884995 -102.104996 -17.823027 +v -123.329002 -102.479004 -17.584026 +v -124.998001 -102.403 -17.823027 +v -124.390999 -102.687996 -17.584026 +v -125.178993 -102.709 -17.600027 +v -125.178993 -102.709 -20.600027 +v -124.697998 -102.539001 -20.600027 +v -125.030991 -102.415001 -20.377028 +v -126.05201 -102.867996 -17.823027 +v -125.735001 -102.955994 -17.600027 +v -126.183998 -103.197998 -17.600027 +v -126.183998 -103.197998 -20.600027 +v -125.735001 -102.955994 -20.600027 +v -126.083 -102.885002 -20.377028 +v -127.021996 -103.487999 -17.823027 +v -126.359001 -103.575996 -17.584026 +v -127.103004 -103.834 -17.600027 +v -127.886993 -104.249001 -17.823027 +v -127.217995 -104.234001 -17.584026 +v -127.913994 -104.602997 -17.600027 +v -128.626007 -105.132996 -17.823027 +v -127.966003 -105.015999 -17.584026 +v -128.598007 -105.487 -17.600027 +v -129.221008 -106.118996 -17.823027 +v -128.58699 -105.903 -17.584026 +v -129.139008 -106.464996 -17.600027 +v -129.658005 -107.183998 -17.823027 +v -129.063995 -106.873993 -17.584026 +v -129.525009 -107.514 -17.600027 +v -129.927994 -108.304001 -17.823027 +v -129.388 -107.906998 -17.584026 +v -129.74501 -108.609993 -17.600027 +v -130.02301 -109.452003 -17.823027 +v -129.549988 -108.976997 -17.581028 +v -129.796997 -109.725998 -17.600027 +v -129.942001 -110.600998 -17.823027 +v -129.548004 -110.059998 -17.584026 +v -129.675995 -110.836998 -17.600027 +v -129.686996 -111.723999 -17.823029 +v -129.380005 -111.128998 -17.584026 +v -129.388 -111.917 -17.600029 +v -129.388 -111.917 -20.600029 +v -129.539993 -111.429001 -20.600029 +v -129.675995 -111.758003 -20.377029 +v -129.263 -112.795006 -17.823029 +v -129.050995 -112.159996 -17.584028 +v -128.938995 -112.939995 -17.600029 +v -128.938995 -112.939995 -20.600029 +v -129.162994 -112.480995 -20.600029 +v -129.247986 -112.827003 -20.377029 +v -128.681 -113.789001 -17.823029 +v -128.567993 -113.128998 -17.584028 +v -128.337997 -113.883003 -17.600029 +v -127.95401 -114.681999 -17.823029 +v -127.942993 -114.013 -17.584028 +v -127.600998 -114.722 -17.600029 +v -127.099007 -115.454002 -17.823029 +v -127.189995 -114.790001 -17.584028 +v -126.744003 -115.440002 -17.600029 +v -121.778 -107.188004 -1.100026 +v -121.321999 -106.931999 -1.100026 +v -120.762993 -107.807999 -1.100026 +v -120.219002 -107.832001 -1.100026 +v -122.973999 -106.692001 -1.099026 +v -122.998001 -107.129997 -1.100026 +v -120.153 -108.902 -1.100028 +v -119.653999 -109.385994 -1.099028 +v -124.238998 -107.293999 -1.100026 +v -123.908997 -107.547997 -1.100026 +v -120.206001 -110.347 -1.100028 +v -120.213997 -111.198997 -1.099028 +v -125.016006 -108.214996 -1.100027 +v -124.722 -108.488998 -1.101027 +v -121.224998 -111.582001 -1.101028 +v -125.305 -109.348 -1.100028 +v -124.889 -109.895996 -1.100028 +v -121.572998 -112.168999 -1.100028 +v -125.045998 -110.776001 -1.099028 +v -122.615997 -111.918999 -1.100028 +v -124.509995 -110.825005 -1.100028 +v -122.771004 -112.295998 -1.100028 +v -123.781006 -111.555 -1.100028 +v -123.891006 -111.959 -1.100028 +v -120.755997 -107.024994 -1.298026 +v -120.922997 -106.935997 -17.600027 +v -119.981995 -107.819 -17.600027 +v -121.867004 -106.556999 -17.600027 +v -121.927002 -106.544998 -1.299026 +v -119.769997 -108.190002 -1.298027 +v -122.883995 -106.514999 -17.600027 +v -122.944 -106.523003 -1.299026 +v -119.534004 -108.989998 -17.600027 +v -119.489998 -109.438004 -1.299028 +v -123.856003 -106.812996 -17.600027 +v -123.911003 -106.840996 -1.299026 +v -119.533005 -110.007004 -17.600027 +v -119.712997 -110.683998 -1.298028 +v -124.674004 -107.418999 -17.600027 +v -124.899002 -107.652 -1.298027 +v -120.001999 -111.210007 -17.600027 +v -125.348999 -108.474998 -17.600027 +v -120.644005 -111.891998 -1.298028 +v -125.428009 -108.802002 -1.299028 +v -120.920998 -112.061996 -17.600029 +v -125.498993 -109.756996 -17.600027 +v -125.493004 -109.817001 -1.299028 +v -121.805 -112.429001 -1.299028 +v -121.863998 -112.442001 -17.600029 +v -125.150993 -110.960999 -17.600027 +v -125.109001 -111.037003 -1.298028 +v -123.07 -112.473999 -1.298028 +v -123.154999 -112.456001 -17.600029 +v -124.288002 -111.920998 -17.600029 +v -124.238998 -111.957001 -1.299028 +v -117.436996 -104.666 -17.600027 +v -121.139999 -102.632996 -17.600027 +v -125.338005 -103.100998 -17.600027 +v -115.5 -109.528 -17.600027 +v -115.585999 -110.596001 -17.600027 +v -126.328003 -115.444 -17.584028 +v -125.787003 -116.017998 -17.600029 +v -118.234001 -103.950005 -20.600027 +v -120.107002 -102.921997 -20.600027 +v -117.434006 -104.244003 -20.600027 +v -117.523994 -103.892998 -20.468027 +v -121.139999 -102.632996 -20.600027 +v -121.775002 -108.468002 -20.600027 +v -122.478004 -108.227997 -20.600027 +v -116.757996 -105.495995 -20.600027 +v -122.203995 -102.505997 -20.600027 +v -121.380997 -102.286003 -20.600027 +v -121.655998 -102.050995 -20.468027 +v -116.213997 -106.418999 -20.600027 +v -121.311005 -109.045998 -20.600027 +v -115.627998 -107.037003 -20.600027 +v -115.552002 -106.682999 -20.468027 +v -115.818001 -107.415001 -20.600027 +v -124.328003 -102.742996 -20.600027 +v -123.609001 -102.284996 -20.600027 +v -123.943001 -102.142998 -20.468027 +v -115.578003 -108.459 -20.600027 +v -125.338005 -103.100998 -20.600027 +v -123.088997 -108.392998 -20.600027 +v -115.5 -109.528 -20.600027 +v -126.280991 -103.609001 -20.600027 +v -115.585999 -110.596001 -20.600027 +v -121.290001 -109.893997 -20.600027 +v -127.136009 -104.254997 -20.600027 +v -126.696007 -103.526001 -20.600027 +v -123.571999 -108.814003 -20.600027 +v -115.835007 -111.639 -20.600029 +v -127.057999 -103.546997 -20.468027 +v -127.882004 -105.025002 -20.600027 +v -127.557991 -104.237 -20.600027 +v -116.238998 -112.631004 -20.600029 +v -127.912994 -104.313004 -20.468027 +v -128.502991 -105.899002 -20.600027 +v -128.301987 -105.07 -20.600027 +v -116.048004 -113.318001 -20.468029 +v -116.375 -113.472 -20.600029 +v -128.640991 -105.199997 -20.468027 +v -116.791 -113.550003 -20.600029 +v -117.475998 -114.374001 -20.600029 +v -121.891998 -110.633003 -20.600027 +v -118.278999 -115.084 -20.600029 +v -128.981995 -106.857002 -20.600027 +v -128.911011 -106.008003 -20.600027 +v -116.706001 -114.257996 -20.468029 +v -117.054001 -114.361 -20.600029 +v -123.764999 -109.639999 -20.600027 +v -119.181 -115.663002 -20.600029 +v -129.47699 -108.935997 -20.600027 +v -129.309006 -107.877998 -20.600027 +v -129.225998 -106.187996 -20.468027 +v -120.159996 -116.097 -20.600029 +v -129.481995 -110.008003 -20.600027 +v -121.195 -116.377007 -20.600029 +v -129.322006 -111.068001 -20.600027 +v -122.259995 -116.495995 -20.600029 +v -122.841995 -110.724998 -20.600027 +v -123.461998 -110.316002 -20.600027 +v -129.003006 -112.090996 -20.600029 +v -123.331001 -116.451004 -20.600029 +v -128.530991 -113.053001 -20.600029 +v -124.381996 -116.241997 -20.600029 +v -125.388992 -115.875999 -20.600029 +v -127.918007 -113.931999 -20.600029 +v -126.329002 -115.360001 -20.600029 +v -127.178001 -114.707001 -20.600029 +v -129.369003 -107.028 -20.600027 +v -129.651993 -107.252998 -20.468027 +v -129.665009 -108.104996 -20.600027 +v -129.912003 -108.370995 -20.468027 +v -129.794006 -109.214996 -20.600027 +v -129.996994 -109.515999 -20.468027 +v -129.751999 -110.332001 -20.600027 +v -129.906998 -110.660004 -20.468027 +v -121.625 -116.945999 -20.468029 +v -121.945999 -116.778999 -20.600029 +v -122.771004 -116.991997 -20.468029 +v -123.063995 -116.778 -20.600029 +v -128.630005 -113.463997 -20.600029 +v -123.912003 -116.862999 -20.468029 +v -124.167999 -116.607002 -20.600029 +v -128.623001 -113.825996 -20.468029 +v -127.952995 -114.353004 -20.600029 +v -125.018997 -116.561005 -20.468029 +v -125.233994 -116.268997 -20.600029 +v -127.149002 -115.128998 -20.600029 +v -127.891006 -114.710007 -20.468029 +v -126.067993 -116.094002 -20.468029 +v -126.234993 -115.772003 -20.600029 +v -127.031998 -115.472 -20.468029 +v -121.812004 -108.429001 -10.149028 +v -121.339996 -109.000999 -10.149028 +v -122.427002 -108.246994 -10.149027 +v -122.950005 -108.32 -10.149028 +v -121.244995 -109.520004 -10.149028 +v -121.400002 -110.141998 -10.149028 +v -123.541 -108.767006 -10.149028 +v -122.047997 -110.689995 -10.149028 +v -123.749001 -109.374001 -10.149028 +v -123.669998 -110.002007 -10.149028 +v -122.679001 -110.742004 -10.149028 +v -123.181 -110.563004 -10.149028 +v -121.786995 -107.399002 -9.602027 +v -120.851997 -108.006996 -9.599028 +v -123.072998 -107.335999 -9.602027 +v -120.281006 -109.206993 -9.602028 +v -124.174995 -108.042 -9.601027 +v -120.512001 -110.489006 -9.601027 +v -121.400002 -111.449005 -9.602028 +v -124.721001 -109.224998 -9.602028 +v -122.869003 -111.708 -9.602028 +v -124.541 -110.339996 -9.601027 +v -124.027 -111.111 -9.601027 +v -121.298996 -107.646004 -1.300027 +v -121.987999 -107.353004 -1.301027 +v -120.752998 -108.151001 -1.301027 +v -122.732994 -107.305 -1.301027 +v -120.403 -108.809998 -1.301028 +v -123.451004 -107.508003 -1.301027 +v -120.292999 -109.548004 -1.301028 +v -124.200005 -108.071999 -1.302027 +v -120.433998 -110.276001 -1.300028 +v -120.812996 -110.922997 -1.301028 +v -124.624001 -108.898003 -1.301028 +v -121.538994 -111.501999 -1.302028 +v -124.702995 -109.639 -1.301028 +v -124.530998 -110.365005 -1.301028 +v -122.454002 -111.707001 -1.301028 +v -124.126999 -110.991997 -1.301028 +v -123.368004 -111.543999 -1.302028 +v -126.136002 -116.085999 -17.823029 +v -99.895004 149.287003 37.431034 +v -99.895004 148.947006 36.126034 +v 0.0 148.947006 36.126034 +v 99.895004 147.526001 -3.372963 +v 99.895004 148.947006 36.126034 +v -100.215004 151.763 37.637032 +v -100.215004 152.694 38.550037 +v 0.0 152.694 38.550037 +v -99.895004 151.345993 40.312035 +v -99.895004 150.165009 39.138035 +v 0.0 150.165009 39.138035 +v -99.895004 153.166 41.055042 +v 0.0 151.345993 40.312035 +v -98.568001 149.05899 -14.205962 +v 0.0 149.05899 -14.205962 +v 0.0 147.061005 -14.132963 +v 0.0 149.287003 37.431034 +v -100.215004 149.504013 -3.372963 +v -100.169998 147.512009 -3.689963 +v -100.215004 147.847 -3.372963 +v -100.215004 154.046997 39.11404 +v -100.215004 155.600998 39.396042 +v 0.0 155.600998 39.396042 +v 0.0 149.504013 -3.372963 +v -100.215004 151.17601 36.420033 +v 0.0 151.763 37.637032 +v -100.215004 155.580994 41.180042 +v 0.0 155.580994 41.180042 +v -99.895004 155.263 41.445042 +v 0.0 153.166 41.055042 +v -100.215004 149.589005 37.316032 +v -100.215004 150.977005 35.067036 +v 0.0 151.17601 36.420033 +v 0.0 147.43399 -3.372963 +v -99.895004 147.526001 -3.372963 +v -98.668999 147.061005 -14.132963 +v 0.0 154.046997 39.11404 +v 0.0 150.977005 35.067036 +v 99.895004 149.287003 37.431034 +v 100.215004 152.694 38.550037 +v 100.215004 151.763 37.637032 +v 99.895004 150.165009 39.138035 +v 99.895004 151.345993 40.312035 +v 99.895004 153.166 41.055042 +v 98.568001 149.05899 -14.205962 +v 98.668999 147.061005 -14.132963 +v 100.169998 147.512009 -3.689963 +v 100.215004 149.504013 -3.372963 +v 100.215004 155.600998 39.396042 +v 100.215004 154.046997 39.11404 +v 100.215004 151.17601 36.420033 +v 100.215004 155.580994 41.180042 +v 99.895004 155.263 41.445042 +v 100.215004 149.589005 37.316032 +v 100.215004 150.977005 35.067036 +v 100.215004 147.847 -3.372963 +v -100.215004 150.427002 38.946033 +v -100.215004 151.526001 40.040035 +v -100.215004 149.266006 36.080032 +v -100.215004 153.26799 40.751041 +v 100.215004 150.427002 38.946033 +v 100.215004 151.526001 40.040035 +v 100.215004 149.266006 36.080032 +v 100.215004 153.26799 40.751041 +v -97.431999 107.901001 1.000026 +v -97.5 105.400002 1.000026 +v -98.18 105.457001 1.000026 +v -97.163002 107.936005 1.000027 +v -96.82 105.457001 1.000026 +v -122.567993 107.901001 1.000026 +v -122.5 105.400002 1.000026 +v -123.18 105.457001 1.000026 +v -122.296997 107.913002 1.000026 +v -121.82 105.457001 1.000026 +v -96.903 108.014999 1.000027 +v -96.159004 105.625 1.000026 +v -97.703003 107.913002 1.000026 +v -98.840996 105.625 1.000026 +v -122.031006 107.970001 1.000027 +v -121.159004 105.625 1.000026 +v -122.836998 107.936005 1.000027 +v -123.841003 105.625 1.000026 +v -96.661003 108.138 1.000027 +v -95.535004 105.901001 1.000026 +v -99.464996 105.901001 1.000026 +v -121.779999 108.070999 1.000027 +v -120.535004 105.901001 1.000026 +v -123.097 108.014999 1.000027 +v -124.465004 105.901001 1.000026 +v -96.443001 108.299004 1.000027 +v -94.966003 106.276993 1.000026 +v -100.033997 106.276993 1.000026 +v -121.549004 108.213997 1.000027 +v -119.966003 106.276993 1.000026 +v -123.338997 108.138 1.000027 +v -125.034004 106.276993 1.000026 +v -94.375 106.826996 1.000026 +v -100.625 106.826996 1.000026 +v -121.345001 108.392998 1.000027 +v -119.375 106.826996 1.000026 +v -123.556999 108.299004 1.000027 +v -125.625 106.826996 1.000026 +v -96.254997 108.494995 1.000028 +v -121.174004 108.603996 1.000028 +v -123.745003 108.494995 1.000028 +v -94.226006 106.921005 1.000026 +v -100.794998 106.93 1.000026 +v -119.225998 106.921005 1.000026 +v -125.795006 106.93 1.000026 +v -96.102997 108.719994 1.000028 +v -94.001999 106.983994 1.000026 +v -119.001999 106.983994 1.000026 +v -123.897003 108.719994 1.000028 +v -125.994995 106.982002 1.000026 +v -93.529999 106.999001 1.000026 +v -120.952003 109.097 1.000028 +v -102.5 106.987999 1.000026 +v -117.5 106.987999 1.000026 +v -121.042 108.841003 1.000028 +v -126.394005 106.990997 1.000026 +v -126.599998 107.042 1.000026 +v -93.273003 107.110001 1.000026 +v -126.807007 107.170998 1.000026 +v -95.990997 108.966995 1.000028 +v -93.094994 107.275002 1.000026 +v -124.008995 108.966995 1.000028 +v -126.962006 107.358002 1.000026 +v -93.006996 107.422997 1.000026 +v -92.725998 108.193001 1.000027 +v -127.27401 108.193001 1.000027 +v -95.922997 109.229996 1.000028 +v -92.574997 109.0 1.000028 +v -127.425003 109.0 1.000028 +v -124.077003 109.229996 1.000028 +v -92.662994 109.192001 1.000028 +v -127.32901 109.217003 1.000028 +v -95.900002 109.5 1.000028 +v -124.099998 109.5 1.000028 +v -127.288002 109.513 1.000028 +v -92.711998 109.487 1.000028 +v -95.922997 109.769997 1.000028 +v -124.077003 109.769997 1.000028 +v -92.670998 109.783005 1.000028 +v -127.33699 109.807999 1.000028 +v -120.906006 109.636002 0.650028 +v -117.5 106.987999 0.650026 +v -120.952003 109.903 0.650028 +v -92.574997 110.0 1.000028 +v -95.990997 110.032997 1.000028 +v -127.425003 110.0 1.000028 +v -127.278 110.793999 1.000028 +v -124.008995 110.032997 1.000028 +v -98.958 110.159004 1.000028 +v -99.048004 109.903 1.000028 +v -117.5 114.449997 1.000029 +v -100.994995 106.982002 1.000026 +v -99.094002 109.636002 1.000028 +v -99.094002 109.364006 1.000028 +v -92.722 110.793999 1.000028 +v -92.996002 111.553001 1.000028 +v -96.102997 110.279999 1.000028 +v -127.003998 111.553001 1.000028 +v -123.897003 110.279999 1.000028 +v -98.825996 110.395996 1.000028 +v -102.5 114.449997 1.000029 +v -93.389999 112.258003 1.000028 +v -96.254997 110.504997 1.000028 +v -126.609993 112.258003 1.000028 +v -126.10701 112.889999 1.000028 +v -123.745003 110.504997 1.000028 +v -98.654999 110.606995 1.000028 +v -93.892998 112.889999 1.000028 +v -96.443001 110.701004 1.000028 +v -125.507996 113.431 1.000028 +v -123.556999 110.701004 1.000028 +v -98.451004 110.785995 1.000028 +v -94.492004 113.431 1.000028 +v -96.661003 110.862 1.000028 +v -123.338997 110.862 1.000028 +v -98.220001 110.929001 1.000028 +v -95.170998 113.867996 1.000029 +v -96.903 110.985001 1.000028 +v -123.097 110.985001 1.000028 +v -97.969002 111.029999 1.000028 +v -97.5 114.449997 1.000029 +v -95.912003 114.188004 1.000029 +v -97.163002 111.064003 1.000028 +v -122.836998 111.064003 1.000028 +v -97.703003 111.087006 1.000028 +v -122.031006 111.029999 1.000028 +v -122.296997 111.087006 1.000028 +v -96.695 114.384003 1.000029 +v -97.431999 111.098999 1.000028 +v -122.567993 111.098999 1.000028 +v -92.722 110.793999 0.650028 +v -92.574997 110.0 0.650028 +v -92.996002 111.553001 0.650028 +v -93.389999 112.258003 0.650028 +v -93.892998 112.889999 0.650028 +v -94.492004 113.431 0.650028 +v -95.170998 113.867996 0.650029 +v -95.912003 114.188004 0.650029 +v -96.695 114.384003 0.650029 +v -97.5 114.449997 0.650029 +v -92.725998 108.193001 0.650027 +v -93.006996 107.422997 0.650027 +v -92.574997 109.0 0.650028 +v -102.5 109.385994 5.603028 +v -102.5 109.112999 5.301028 +v -102.5 109.236 5.629026 +v -102.5 109.315002 5.256028 +v -102.5 109.499001 5.269028 +v -102.504997 107.381996 6.197028 +v -102.502998 107.556999 6.501027 +v -102.5 114.543999 6.844028 +v -102.5 114.405998 6.855029 +v -102.5 114.638 7.182029 +v -102.5 114.373001 7.205029 +v -102.5 114.652 6.793029 +v -102.5 114.811005 7.105029 +v -102.5 114.945999 7.002028 +v -102.5 114.737 6.708029 +v -102.5 115.084 6.807029 +v -102.5 114.788002 6.600029 +v -102.5 115.139999 6.625029 +v -102.5 114.799995 6.505029 +v -102.5 115.149994 6.505029 +v -102.5 114.449997 0.650029 +v -102.5 114.566002 1.017029 +v -102.5 114.623001 0.670029 +v -102.5 114.875999 0.788029 +v -102.5 114.681999 1.086029 +v -102.5 114.780998 1.221029 +v -102.5 115.053993 0.992029 +v -102.5 115.135002 1.196029 +v -102.5 114.799995 1.350029 +v -102.5 115.149994 1.350029 +v -102.5 106.876999 0.635026 +v -102.5 106.688004 0.934026 +v -102.5 106.843002 0.986026 +v -102.5 106.987999 0.650026 +v -116.844002 105.579002 -0.108974 +v -103.171997 105.577995 -0.109974 +v -117.5 106.880005 0.637026 +v -102.504997 106.142998 0.217026 +v -102.558998 105.967003 0.115026 +v -102.684998 105.795006 0.015026 +v -117.329002 105.807999 0.023026 +v -117.448997 105.984001 0.125026 +v -117.496994 106.156998 0.224026 +v -117.191002 105.699005 -0.039974 +v -102.972 105.618996 -0.085974 +v -117.048004 105.625999 -0.081974 +v -102.808998 105.699005 -0.039974 +v -97.431999 107.901001 0.650027 +v -97.5 105.400002 0.650026 +v -96.82 105.457001 0.650026 +v -97.703003 107.913002 0.650027 +v -98.18 105.457001 0.650026 +v -122.567993 107.901001 0.650027 +v -122.5 105.400002 0.650026 +v -121.82 105.457001 0.650026 +v -122.836998 107.936005 0.650027 +v -123.18 105.457001 0.650026 +v -97.163002 107.936005 0.650027 +v -96.159004 105.625 0.650026 +v -97.969002 107.970001 0.650027 +v -98.840996 105.625 0.650026 +v -122.296997 107.913002 0.650027 +v -121.159004 105.625 0.650026 +v -123.097 108.014999 0.650027 +v -123.841003 105.625 0.650026 +v -96.903 108.014999 0.650027 +v -95.535004 105.901001 0.650026 +v -98.220001 108.070999 0.650027 +v -99.464996 105.901001 0.650026 +v -120.535004 105.901001 0.650026 +v -123.338997 108.138 0.650027 +v -124.465004 105.901001 0.650026 +v -96.661003 108.138 0.650027 +v -94.966003 106.276993 0.650026 +v -98.451004 108.213997 0.650027 +v -100.033997 106.276993 0.650026 +v -119.966003 106.276993 0.650026 +v -123.556999 108.299004 0.650027 +v -125.034004 106.276993 0.650026 +v -96.443001 108.299004 0.650027 +v -94.375 106.826996 0.650026 +v -98.654999 108.392998 0.650027 +v -100.658997 106.856003 0.650026 +v -119.375 106.826996 0.650026 +v -125.625 106.826996 0.650026 +v -96.254997 108.494995 0.650027 +v -98.825996 108.603996 0.650027 +v -123.745003 108.494995 0.650027 +v -94.205002 106.93 0.650026 +v -119.205002 106.93 0.650026 +v -125.773994 106.921005 0.650026 +v -100.937004 106.977997 0.650026 +v -123.897003 108.719994 0.650027 +v -96.102997 108.719994 0.650027 +v -94.005005 106.982002 0.650026 +v -99.048004 109.097 0.650028 +v -98.958 108.841003 0.650028 +v -119.005005 106.982002 0.650026 +v -125.998009 106.983994 0.650026 +v -93.553001 106.995003 0.650026 +v -126.409996 106.992996 0.650026 +v -126.619995 107.051003 0.650026 +v -93.292 107.098 0.650026 +v -126.765999 107.141006 0.650026 +v -93.108002 107.258003 0.650026 +v -126.905991 107.275002 0.650026 +v -95.990997 108.966995 0.650028 +v -124.008995 108.966995 0.650028 +v -126.993004 107.422997 0.650027 +v -127.27401 108.193001 0.650027 +v -124.077003 109.229996 0.650028 +v -127.425003 109.0 0.650028 +v -95.922997 109.229996 0.650028 +v -92.670998 109.217003 0.650028 +v -127.33699 109.192001 0.650028 +v -95.900002 109.5 0.650028 +v -92.711998 109.513 0.650028 +v -127.294006 109.425003 0.650028 +v -124.099998 109.5 0.650028 +v -127.296997 109.636002 0.650028 +v -95.922997 109.769997 0.650028 +v -124.077003 109.769997 0.650028 +v -92.662994 109.807999 0.650028 +v -127.360001 109.865005 0.650028 +v -95.990997 110.032997 0.650028 +v -127.425003 110.0 0.650028 +v -124.008995 110.032997 0.650028 +v -117.5 114.449997 0.650029 +v -99.048004 109.903 0.650028 +v -98.958 110.159004 0.650028 +v -127.278 110.793999 0.650028 +v -96.102997 110.279999 0.650028 +v -127.003998 111.553001 0.650028 +v -123.897003 110.279999 0.650028 +v -98.825996 110.395996 0.650028 +v -96.254997 110.504997 0.650028 +v -126.609993 112.258003 0.650028 +v -123.745003 110.504997 0.650028 +v -98.654999 110.606995 0.650028 +v -96.443001 110.701004 0.650028 +v -126.10701 112.889999 0.650028 +v -123.556999 110.701004 0.650028 +v -98.451004 110.785995 0.650028 +v -96.661003 110.862 0.650028 +v -125.507996 113.431 0.650028 +v -123.338997 110.862 0.650028 +v -98.220001 110.929001 0.650028 +v -96.903 110.985001 0.650028 +v -123.097 110.985001 0.650028 +v -97.969002 111.029999 0.650028 +v -97.163002 111.064003 0.650028 +v -122.836998 111.064003 0.650028 +v -97.703003 111.087006 0.650028 +v -122.296997 111.087006 0.650028 +v -122.031006 111.029999 0.650028 +v -97.431999 111.098999 0.650028 +v -122.567993 111.098999 0.650028 +v -117.5 114.603996 0.665029 +v -117.5 114.807999 0.746029 +v -117.5 114.945 0.855029 +v -117.5 115.042999 0.975029 +v -117.5 115.129997 1.177029 +v -117.5 115.149994 1.350029 +v -117.5 115.149994 6.505029 +v -117.5 114.318001 7.194028 +v -117.5 114.541 7.202029 +v -117.5 114.768997 7.131029 +v -117.5 114.960999 6.987029 +v -117.5 115.060005 6.850029 +v -117.5 115.131996 6.673028 +v -117.5 109.428001 5.612028 +v -117.5 109.281006 5.611028 +v -103.155998 106.965996 6.808028 +v -116.828003 106.963997 6.809028 +v -102.550995 107.380005 6.593027 +v -117.495003 107.542999 6.508028 +v -117.441002 107.362999 6.602026 +v -117.191002 107.088997 6.744027 +v -117.028 107.006996 6.787028 +v -117.315002 107.185997 6.694027 +v -102.953003 107.014 6.783028 +v -102.808998 107.088997 6.744027 +v -102.670998 107.201004 6.686028 +v -103.171997 106.803001 6.499027 +v -116.844002 106.804001 6.498027 +v -117.5 109.102005 5.305027 +v -117.496994 107.395996 6.190028 +v -102.972 106.845001 6.476027 +v -117.046997 106.853004 6.473028 +v -102.808998 106.927002 6.434028 +v -117.191002 106.927002 6.434028 +v -102.558998 107.201004 6.291028 +v -102.684998 107.024994 6.383027 +v -117.329002 107.038994 6.376027 +v -117.448997 107.219002 6.282028 +v -117.5 109.295006 5.258027 +v -117.5 109.500999 5.269028 +v -117.5 114.417999 6.856029 +v -117.5 114.554001 6.841029 +v -117.5 114.661003 6.786028 +v -117.5 114.743004 6.699028 +v -117.5 114.791 6.589028 +v -117.5 114.799995 6.505029 +v -117.5 114.799995 1.350029 +v -117.5 114.579002 1.019029 +v -117.5 114.730995 1.137029 +v -117.5 114.790001 1.263029 +v -117.5 106.695999 0.938026 +v -117.5 106.859001 0.989026 +v -103.155998 105.403999 0.194026 +v -116.828003 105.403 0.193026 +v -102.603004 105.717003 0.375026 +v -102.507004 105.936996 0.502026 +v -102.753998 105.559998 0.284026 +v -117.495003 105.968002 0.520026 +v -117.441002 105.792 0.418026 +v -117.357002 105.667999 0.346026 +v -117.229996 105.548004 0.277026 +v -102.953003 105.451004 0.221026 +v -117.028 105.444 0.217026 +v -97.969002 107.970001 1.000027 +v -98.220001 108.070999 1.000027 +v -98.451004 108.213997 1.000027 +v -98.654999 108.392998 1.000027 +v -98.825996 108.603996 1.000028 +v -98.958 108.841003 1.000028 +v -99.048004 109.097 1.000028 +v -99.094002 109.364006 0.650028 +v -99.094002 109.636002 0.650028 +v -102.389 115.165001 6.505029 +v -102.286003 114.827995 6.505029 +v -102.371002 114.811005 1.350029 +v -102.392006 115.163002 1.350029 +v -102.206001 114.863998 1.350029 +v -101.081001 115.511002 6.502028 +v -101.241997 115.821999 6.500029 +v -101.255997 115.814003 1.353029 +v -101.067001 115.519005 1.355029 +v -100.501999 115.845001 2.021029 +v -100.502998 115.843994 5.850029 +v -100.907997 115.611 6.454029 +v -100.890999 115.621002 1.409029 +v -100.732994 115.712006 6.334029 +v -100.718994 115.719994 1.535029 +v -100.622993 115.774994 6.196029 +v -100.622993 115.774994 1.659029 +v -100.550003 115.817001 6.053029 +v -100.543999 115.820999 1.822029 +v -100.677002 116.148003 5.834029 +v -100.677994 116.148003 2.006029 +v -101.066002 115.924004 6.446029 +v -101.083 115.914001 1.401029 +v -100.893997 116.022995 6.320029 +v -100.907997 116.014999 1.521029 +v -100.798004 116.077995 6.196029 +v -100.798004 116.077995 1.659029 +v -100.718994 116.123993 6.033029 +v -100.725006 116.120003 1.802029 +v -124.829002 113.867996 1.000029 +v -124.829002 113.867996 0.650029 +v -124.087997 114.188004 1.000029 +v -124.087997 114.188004 0.650029 +v -123.305 114.384003 1.000029 +v -123.305 114.384003 0.650029 +v -122.5 114.449997 1.000029 +v -122.5 114.449997 0.650029 +v -122.031006 107.970001 0.650027 +v -121.779999 108.070999 0.650027 +v -121.549004 108.213997 0.650027 +v -121.345001 108.392998 0.650027 +v -121.174004 108.603996 0.650027 +v -121.042 108.841003 0.650028 +v -120.952003 109.097 0.650028 +v -120.906006 109.364006 0.650028 +v -120.906006 109.364006 1.000028 +v -120.906006 109.636002 1.000028 +v -120.952003 109.903 1.000028 +v -121.042 110.159004 0.650028 +v -121.042 110.159004 1.000028 +v -121.174004 110.395996 0.650028 +v -121.174004 110.395996 1.000028 +v -121.345001 110.606995 0.650028 +v -121.345001 110.606995 1.000028 +v -121.549004 110.785995 0.650028 +v -121.549004 110.785995 1.000028 +v -121.779999 110.929001 0.650028 +v -121.779999 110.929001 1.000028 +v -117.628998 114.811005 6.505029 +v -117.600998 115.162003 6.505029 +v -117.791 114.862 6.505029 +v -117.611 115.165001 1.350029 +v -117.645004 114.813995 1.350029 +v -117.799995 114.866005 1.350029 +v -118.744003 115.814003 6.502029 +v -118.932999 115.519005 6.500029 +v -118.918999 115.511002 1.353029 +v -118.758003 115.821999 1.355029 +v -119.498001 115.845001 5.834029 +v -119.497002 115.843994 2.006029 +v -119.456001 115.820999 6.033029 +v -119.376999 115.774994 6.196029 +v -119.450005 115.817001 1.803029 +v -119.341003 115.753998 1.604029 +v -119.232994 115.691994 1.493029 +v -119.108994 115.621002 6.446029 +v -119.092003 115.611 1.401029 +v -119.280998 115.719994 6.320029 +v -119.322998 116.148003 2.022029 +v -119.321999 116.148003 5.849029 +v -119.275002 116.120003 6.053029 +v -119.202003 116.077995 6.196029 +v -119.057999 115.994995 1.493029 +v -119.177002 116.063995 1.620029 +v -119.280998 116.123993 1.822029 +v -118.917 115.914001 6.454029 +v -118.933998 115.924004 1.409029 +v -119.092003 116.014999 6.334029 +v 124.568001 107.901001 1.000026 +v 124.5 105.400002 1.000026 +v 123.82 105.457001 1.000026 +v 124.837006 107.936005 1.000027 +v 125.180008 105.457001 1.000026 +v 99.431999 107.901001 1.000026 +v 99.5 105.400002 1.000026 +v 98.82 105.457001 1.000026 +v 99.702995 107.913002 1.000026 +v 100.18 105.457001 1.000026 +v 125.097008 108.014999 1.000027 +v 125.841003 105.625 1.000026 +v 124.296997 107.913002 1.000026 +v 123.158997 105.625 1.000026 +v 99.969002 107.970001 1.000027 +v 100.841003 105.625 1.000026 +v 99.163002 107.936005 1.000027 +v 98.158997 105.625 1.000026 +v 125.339005 108.138 1.000027 +v 126.464996 105.901001 1.000026 +v 122.534996 105.901001 1.000026 +v 100.220001 108.070999 1.000027 +v 101.465004 105.901001 1.000026 +v 98.903 108.014999 1.000027 +v 97.534996 105.901001 1.000026 +v 125.557007 108.299004 1.000027 +v 127.033997 106.276993 1.000026 +v 121.965996 106.276993 1.000026 +v 100.450996 108.213997 1.000027 +v 102.034004 106.276993 1.000026 +v 98.660995 108.138 1.000027 +v 96.965996 106.276993 1.000026 +v 127.625 106.826996 1.000026 +v 121.375 106.826996 1.000026 +v 100.654999 108.392998 1.000027 +v 102.625 106.826996 1.000026 +v 98.443001 108.299004 1.000027 +v 96.375 106.826996 1.000026 +v 125.744995 108.494995 1.000028 +v 100.826004 108.603996 1.000028 +v 98.254997 108.494995 1.000028 +v 127.774002 106.921005 1.000026 +v 121.205002 106.93 1.000026 +v 102.774002 106.921005 1.000026 +v 96.205002 106.93 1.000026 +v 125.897003 108.719994 1.000028 +v 127.997993 106.983994 1.000026 +v 102.998001 106.983994 1.000026 +v 98.103004 108.719994 1.000028 +v 96.004997 106.982002 1.000026 +v 128.470001 106.999001 1.000026 +v 101.047997 109.097 1.000028 +v 119.5 106.987999 1.000026 +v 104.5 106.987999 1.000026 +v 100.958 108.841003 1.000028 +v 95.606995 106.990997 1.000026 +v 95.400002 107.042 1.000026 +v 128.727005 107.110001 1.000026 +v 95.193001 107.170998 1.000026 +v 126.009003 108.966995 1.000028 +v 128.905991 107.275002 1.000026 +v 97.990997 108.966995 1.000028 +v 95.037994 107.358002 1.000026 +v 128.993011 107.422997 1.000026 +v 129.274002 108.193001 1.000027 +v 94.726006 108.193001 1.000027 +v 126.076996 109.229996 1.000028 +v 129.425003 109.0 1.000028 +v 94.575005 109.0 1.000028 +v 97.923004 109.229996 1.000028 +v 129.33699 109.192001 1.000028 +v 94.671005 109.217003 1.000028 +v 126.100006 109.5 1.000028 +v 97.900002 109.5 1.000028 +v 94.711998 109.513 1.000028 +v 129.28801 109.487 1.000028 +v 126.076996 109.769997 1.000028 +v 97.923004 109.769997 1.000028 +v 129.328995 109.783005 1.000028 +v 94.663002 109.807999 1.000028 +v 101.094002 109.636002 0.650028 +v 104.5 106.987999 0.650026 +v 101.047997 109.903 0.650028 +v 129.425003 110.0 1.000028 +v 126.009003 110.032997 1.000028 +v 94.575005 110.0 1.000028 +v 94.722 110.793999 1.000028 +v 97.990997 110.032997 1.000028 +v 123.042 110.159004 1.000028 +v 122.951996 109.903 1.000028 +v 104.5 114.449997 1.000029 +v 121.004997 106.982002 1.000026 +v 122.905998 109.636002 1.000028 +v 122.905998 109.364006 1.000028 +v 129.278 110.793999 1.000028 +v 129.003998 111.553001 1.000028 +v 125.897003 110.279999 1.000028 +v 94.995995 111.553001 1.000028 +v 98.103004 110.279999 1.000028 +v 123.173996 110.395996 1.000028 +v 119.5 114.449997 1.000029 +v 128.610001 112.258003 1.000028 +v 125.744995 110.504997 1.000028 +v 95.389999 112.258003 1.000028 +v 95.893005 112.889999 1.000028 +v 98.254997 110.504997 1.000028 +v 123.345001 110.606995 1.000028 +v 128.106995 112.889999 1.000028 +v 125.557007 110.701004 1.000028 +v 96.491997 113.431 1.000028 +v 98.443001 110.701004 1.000028 +v 123.548996 110.785995 1.000028 +v 127.508003 113.431 1.000028 +v 125.339005 110.862 1.000028 +v 98.660995 110.862 1.000028 +v 123.779999 110.929001 1.000028 +v 126.828995 113.867996 1.000029 +v 125.097008 110.985001 1.000028 +v 98.903 110.985001 1.000028 +v 124.030998 111.029999 1.000028 +v 124.5 114.449997 1.000029 +v 126.08799 114.188004 1.000029 +v 124.837006 111.064003 1.000028 +v 99.163002 111.064003 1.000028 +v 124.296997 111.087006 1.000028 +v 99.969002 111.029999 1.000028 +v 99.702995 111.087006 1.000028 +v 125.305 114.384003 1.000029 +v 124.568001 111.098999 1.000028 +v 99.431999 111.098999 1.000028 +v 129.278 110.793999 0.650028 +v 129.425003 110.0 0.650028 +v 129.003998 111.553001 0.650028 +v 128.610001 112.258003 0.650028 +v 128.106995 112.889999 0.650028 +v 127.508003 113.431 0.650028 +v 126.828995 113.867996 0.650029 +v 126.08799 114.188004 0.650029 +v 125.305 114.384003 0.650029 +v 124.5 114.449997 0.650029 +v 129.274002 108.193001 0.650027 +v 128.993011 107.422997 0.650027 +v 129.425003 109.0 0.650028 +v 119.5 109.385994 5.603028 +v 119.5 109.112999 5.301028 +v 119.5 109.236 5.629026 +v 119.5 109.315002 5.256028 +v 119.5 109.499001 5.269028 +v 119.494995 107.381996 6.197028 +v 119.497002 107.556999 6.501027 +v 119.5 114.543999 6.844028 +v 119.5 114.405998 6.855029 +v 119.5 114.638 7.182029 +v 119.5 114.373001 7.205029 +v 119.5 114.652 6.793029 +v 119.5 114.811005 7.105029 +v 119.5 114.945999 7.002028 +v 119.5 114.737 6.708029 +v 119.5 115.084 6.807029 +v 119.5 114.788002 6.600029 +v 119.5 115.139999 6.625029 +v 119.5 114.799995 6.505029 +v 119.5 115.149994 6.505029 +v 119.5 114.449997 0.650029 +v 119.5 114.566002 1.017029 +v 119.5 114.623001 0.670029 +v 119.5 114.875999 0.788029 +v 119.5 114.681999 1.086029 +v 119.5 114.780998 1.221029 +v 119.5 115.053993 0.992029 +v 119.5 115.135002 1.196029 +v 119.5 114.799995 1.350029 +v 119.5 115.149994 1.350029 +v 119.5 106.876999 0.635026 +v 119.5 106.688004 0.934026 +v 119.5 106.843002 0.986026 +v 119.5 106.987999 0.650026 +v 105.155998 105.579002 -0.108974 +v 118.827995 105.577995 -0.109974 +v 104.5 106.880005 0.637026 +v 119.494995 106.142998 0.217026 +v 119.441002 105.967003 0.115026 +v 119.314995 105.795006 0.015026 +v 104.671005 105.807999 0.023026 +v 104.551003 105.984001 0.125026 +v 104.502998 106.156998 0.224026 +v 104.808998 105.699005 -0.039974 +v 119.028 105.618996 -0.085974 +v 104.952995 105.625999 -0.081974 +v 119.191002 105.699005 -0.039974 +v 124.568001 107.901001 0.650027 +v 124.5 105.400002 0.650026 +v 125.180008 105.457001 0.650026 +v 124.296997 107.913002 0.650027 +v 123.82 105.457001 0.650026 +v 99.431999 107.901001 0.650027 +v 99.5 105.400002 0.650026 +v 100.18 105.457001 0.650026 +v 99.163002 107.936005 0.650027 +v 98.82 105.457001 0.650026 +v 124.837006 107.936005 0.650027 +v 125.841003 105.625 0.650026 +v 124.030998 107.970001 0.650027 +v 123.158997 105.625 0.650026 +v 99.702995 107.913002 0.650027 +v 100.841003 105.625 0.650026 +v 98.903 108.014999 0.650027 +v 98.158997 105.625 0.650026 +v 125.097008 108.014999 0.650027 +v 126.464996 105.901001 0.650026 +v 123.779999 108.070999 0.650027 +v 122.534996 105.901001 0.650026 +v 101.465004 105.901001 0.650026 +v 98.660995 108.138 0.650027 +v 97.534996 105.901001 0.650026 +v 125.339005 108.138 0.650027 +v 127.033997 106.276993 0.650026 +v 123.548996 108.213997 0.650027 +v 121.965996 106.276993 0.650026 +v 102.034004 106.276993 0.650026 +v 98.443001 108.299004 0.650027 +v 96.965996 106.276993 0.650026 +v 125.557007 108.299004 0.650027 +v 127.625 106.826996 0.650026 +v 123.345001 108.392998 0.650027 +v 121.340996 106.856003 0.650026 +v 102.625 106.826996 0.650026 +v 96.375 106.826996 0.650026 +v 125.744995 108.494995 0.650027 +v 123.173996 108.603996 0.650027 +v 98.254997 108.494995 0.650027 +v 127.794998 106.93 0.650026 +v 102.794998 106.93 0.650026 +v 96.225998 106.921005 0.650026 +v 121.063004 106.977997 0.650026 +v 98.103004 108.719994 0.650027 +v 125.897003 108.719994 0.650027 +v 127.995003 106.982002 0.650026 +v 122.951996 109.097 0.650028 +v 123.042 108.841003 0.650028 +v 102.995003 106.982002 0.650026 +v 96.001999 106.983994 0.650026 +v 128.446991 106.995003 0.650026 +v 95.590004 106.992996 0.650026 +v 95.379997 107.051003 0.650026 +v 128.708008 107.098 0.650026 +v 95.234001 107.141006 0.650026 +v 128.891998 107.258003 0.650026 +v 95.095001 107.275002 0.650026 +v 126.009003 108.966995 0.650028 +v 97.990997 108.966995 0.650028 +v 95.007004 107.422997 0.650027 +v 94.726006 108.193001 0.650027 +v 97.923004 109.229996 0.650028 +v 94.575005 109.0 0.650028 +v 126.076996 109.229996 0.650028 +v 129.328995 109.217003 0.650028 +v 94.663002 109.192001 0.650028 +v 126.100006 109.5 0.650028 +v 129.28801 109.513 0.650028 +v 94.707001 109.425003 0.650028 +v 97.900002 109.5 0.650028 +v 94.702995 109.636002 0.650028 +v 126.076996 109.769997 0.650028 +v 97.923004 109.769997 0.650028 +v 129.33699 109.807999 0.650028 +v 94.639999 109.865005 0.650028 +v 126.009003 110.032997 0.650028 +v 94.575005 110.0 0.650028 +v 97.990997 110.032997 0.650028 +v 104.5 114.449997 0.650029 +v 122.951996 109.903 0.650028 +v 123.042 110.159004 0.650028 +v 94.722 110.793999 0.650028 +v 125.897003 110.279999 0.650028 +v 94.995995 111.553001 0.650028 +v 98.103004 110.279999 0.650028 +v 123.173996 110.395996 0.650028 +v 125.744995 110.504997 0.650028 +v 95.389999 112.258003 0.650028 +v 98.254997 110.504997 0.650028 +v 123.345001 110.606995 0.650028 +v 125.557007 110.701004 0.650028 +v 95.893005 112.889999 0.650028 +v 98.443001 110.701004 0.650028 +v 123.548996 110.785995 0.650028 +v 125.339005 110.862 0.650028 +v 96.491997 113.431 0.650028 +v 98.660995 110.862 0.650028 +v 123.779999 110.929001 0.650028 +v 125.097008 110.985001 0.650028 +v 98.903 110.985001 0.650028 +v 124.030998 111.029999 0.650028 +v 124.837006 111.064003 0.650028 +v 99.163002 111.064003 0.650028 +v 124.296997 111.087006 0.650028 +v 99.702995 111.087006 0.650028 +v 99.969002 111.029999 0.650028 +v 124.568001 111.098999 0.650028 +v 99.431999 111.098999 0.650028 +v 104.5 114.603996 0.665029 +v 104.5 114.807999 0.746029 +v 104.5 114.945 0.855029 +v 104.5 115.042999 0.975029 +v 104.5 115.129997 1.177029 +v 104.5 115.149994 1.350029 +v 104.5 115.149994 6.505029 +v 104.5 114.318001 7.194028 +v 104.5 114.541 7.202029 +v 104.5 114.768997 7.131029 +v 104.5 114.960999 6.987029 +v 104.5 115.060005 6.850029 +v 104.5 115.131996 6.673028 +v 104.5 109.428001 5.612028 +v 104.5 109.281006 5.611028 +v 118.844002 106.965996 6.808028 +v 105.171997 106.963997 6.809028 +v 119.448997 107.380005 6.593027 +v 104.505005 107.542999 6.508028 +v 104.558998 107.362999 6.602026 +v 104.808998 107.088997 6.744027 +v 104.972 107.006996 6.787028 +v 104.684998 107.185997 6.694027 +v 119.047997 107.014 6.783028 +v 119.191002 107.088997 6.744027 +v 119.328995 107.201004 6.686028 +v 118.827995 106.803001 6.499027 +v 105.155998 106.804001 6.498027 +v 104.5 109.102005 5.305027 +v 104.502998 107.395996 6.190028 +v 119.028 106.845001 6.476027 +v 104.952995 106.853004 6.473028 +v 119.191002 106.927002 6.434028 +v 104.808998 106.927002 6.434028 +v 119.441002 107.201004 6.291028 +v 119.314995 107.024994 6.383027 +v 104.671005 107.038994 6.376027 +v 104.551003 107.219002 6.282028 +v 104.5 109.295006 5.258027 +v 104.5 109.500999 5.269028 +v 104.5 114.417999 6.856029 +v 104.5 114.554001 6.841029 +v 104.5 114.661003 6.786028 +v 104.5 114.743004 6.699028 +v 104.5 114.791 6.589028 +v 104.5 114.799995 6.505029 +v 104.5 114.799995 1.350029 +v 104.5 114.579002 1.019029 +v 104.5 114.730995 1.137029 +v 104.5 114.790001 1.263029 +v 104.5 106.695999 0.938026 +v 104.5 106.859001 0.989026 +v 118.844002 105.403999 0.194026 +v 105.171997 105.403 0.193026 +v 119.397003 105.717003 0.375026 +v 119.493004 105.936996 0.502026 +v 119.246002 105.559998 0.284026 +v 104.505005 105.968002 0.520026 +v 104.558998 105.792 0.418026 +v 104.643005 105.667999 0.346026 +v 104.769997 105.548004 0.277026 +v 119.047997 105.451004 0.221026 +v 104.972 105.444 0.217026 +v 124.030998 107.970001 1.000027 +v 123.779999 108.070999 1.000027 +v 123.548996 108.213997 1.000027 +v 123.345001 108.392998 1.000027 +v 123.173996 108.603996 1.000028 +v 123.042 108.841003 1.000028 +v 122.951996 109.097 1.000028 +v 122.905998 109.364006 0.650028 +v 122.905998 109.636002 0.650028 +v 119.611 115.165001 6.505029 +v 119.713997 114.827995 6.505029 +v 119.629005 114.811005 1.350029 +v 119.608002 115.163002 1.350029 +v 119.794006 114.863998 1.350029 +v 120.918999 115.511002 6.502028 +v 120.757996 115.821999 6.500029 +v 120.743996 115.814003 1.353029 +v 120.933006 115.519005 1.355029 +v 121.498001 115.845001 2.021029 +v 121.496994 115.843994 5.850029 +v 121.092003 115.611 6.454029 +v 121.109001 115.621002 1.409029 +v 121.266998 115.712006 6.334029 +v 121.280998 115.719994 1.535029 +v 121.376999 115.774994 6.196029 +v 121.376999 115.774994 1.659029 +v 121.449997 115.817001 6.053029 +v 121.455994 115.820999 1.822029 +v 121.322998 116.148003 5.834029 +v 121.321999 116.148003 2.006029 +v 120.934006 115.924004 6.446029 +v 120.917 115.914001 1.401029 +v 121.105995 116.022995 6.320029 +v 121.092003 116.014999 1.521029 +v 121.201996 116.077995 6.196029 +v 121.201996 116.077995 1.659029 +v 121.280998 116.123993 6.033029 +v 121.275002 116.120003 1.802029 +v 97.170998 113.867996 1.000029 +v 97.170998 113.867996 0.650029 +v 97.911995 114.188004 1.000029 +v 97.911995 114.188004 0.650029 +v 98.695 114.384003 1.000029 +v 98.695 114.384003 0.650029 +v 99.5 114.449997 1.000029 +v 99.5 114.449997 0.650029 +v 99.969002 107.970001 0.650027 +v 100.220001 108.070999 0.650027 +v 100.450996 108.213997 0.650027 +v 100.654999 108.392998 0.650027 +v 100.826004 108.603996 0.650027 +v 100.958 108.841003 0.650028 +v 101.047997 109.097 0.650028 +v 101.094002 109.364006 0.650028 +v 101.094002 109.364006 1.000028 +v 101.094002 109.636002 1.000028 +v 101.047997 109.903 1.000028 +v 100.958 110.159004 0.650028 +v 100.958 110.159004 1.000028 +v 100.826004 110.395996 0.650028 +v 100.826004 110.395996 1.000028 +v 100.654999 110.606995 0.650028 +v 100.654999 110.606995 1.000028 +v 100.450996 110.785995 0.650028 +v 100.450996 110.785995 1.000028 +v 100.220001 110.929001 0.650028 +v 100.220001 110.929001 1.000028 +v 104.370995 114.811005 6.505029 +v 104.399002 115.162003 6.505029 +v 104.209 114.862 6.505029 +v 104.389 115.165001 1.350029 +v 104.355003 114.813995 1.350029 +v 104.199997 114.866005 1.350029 +v 103.256004 115.814003 6.502029 +v 103.067001 115.519005 6.500029 +v 103.081001 115.511002 1.353029 +v 103.242004 115.821999 1.355029 +v 102.502007 115.845001 5.834029 +v 102.502998 115.843994 2.006029 +v 102.543999 115.820999 6.033029 +v 102.623001 115.774994 6.196029 +v 102.550003 115.817001 1.803029 +v 102.659004 115.753998 1.604029 +v 102.766998 115.691994 1.493029 +v 102.890999 115.621002 6.446029 +v 102.907997 115.611 1.401029 +v 102.719002 115.719994 6.320029 +v 102.677002 116.148003 2.022029 +v 102.678001 116.148003 5.849029 +v 102.724998 116.120003 6.053029 +v 102.797997 116.077995 6.196029 +v 102.941994 115.994995 1.493029 +v 102.822998 116.063995 1.620029 +v 102.719002 116.123993 1.822029 +v 103.083 115.914001 6.454029 +v 103.065994 115.924004 1.409029 +v 102.907997 116.014999 6.334029 +v -112.5 -106.950996 0.999974 +v -112.5 -106.919998 0.606974 +v -112.5 -106.722 0.969974 +v -97.539001 -105.433998 0.239974 +v -97.514 -105.772003 -0.027026 +v -97.5 -106.760002 0.987974 +v -97.5 -106.863998 0.594974 +v -112.5 -114.855995 0.746971 +v -112.5 -114.416 0.590971 +v -112.5 -114.433998 0.994971 +v -112.5 -114.723 1.179971 +v -112.5 -115.128006 1.110971 +v -112.5 -115.137001 6.684971 +v -112.5 -114.744995 6.590971 +v -97.5 -114.508003 1.008971 +v -97.5 -114.632004 0.618971 +v -97.5 -115.002998 0.893971 +v -97.5 -114.715004 1.179971 +v -97.5 -115.161003 1.324971 +v -97.494995 -114.745995 1.349971 +v -112.5 -114.628998 6.795971 +v -112.5 -114.933998 7.062972 +v -112.5 -114.425003 7.286972 +v -112.5 -114.389 6.872972 +v -112.5 -109.370003 5.265974 +v -112.5 -109.289993 5.665972 +v -97.5 -114.727997 6.657971 +v -97.499001 -114.747002 6.517972 +v -97.497002 -115.154999 6.522972 +v -97.5 -114.959999 7.036972 +v -97.5 -114.482002 6.879972 +v -97.5 -114.456993 7.285972 +v -112.5 -109.048004 5.323972 +v -112.493996 -108.151001 6.249972 +v -112.489998 -107.936005 5.911973 +v -97.5 -109.289001 5.663972 +v -97.5 -109.254005 5.255973 +v -97.514 -107.872002 5.945973 +v -111.368004 -106.801003 6.514973 +v -98.581001 -106.811996 6.508973 +v -112.333 -107.473 6.157972 +v -97.820999 -107.251999 6.274973 +v -111.960999 -107.079994 6.366972 +v -123.069 -114.375 0.999971 +v -121.581001 -110.816002 0.999972 +v -122.193001 -111.084999 0.999972 +v -120.958 -109.947006 0.999972 +v -121.195 -110.435005 0.999972 +v -120.897003 -109.407997 0.999972 +v -122.881004 -111.059006 0.999972 +v -124.176003 -114.105003 0.999971 +v -125.257004 -113.571007 0.999972 +v -123.487 -110.778 0.999972 +v -126.252991 -112.650002 0.999972 +v -126.922997 -111.648003 0.999972 +v -123.921997 -110.243996 0.999972 +v -127.390999 -110.004997 0.999972 +v -124.111 -109.603004 0.999972 +v -127.268997 -108.301994 0.999973 +v -123.998001 -108.924004 0.999972 +v -121.073997 -108.741997 0.999973 +v -126.682999 -106.972 0.999974 +v -123.721001 -108.458 0.999973 +v -125.723999 -106.941002 0.999974 +v -119.280998 -106.939003 0.999974 +v -121.625 -108.143005 0.999973 +v -123.195999 -108.042999 0.999973 +v -124.995003 -106.232002 0.999974 +v -120.098 -106.163002 0.999974 +v -124.091995 -105.722 0.999974 +v -123.210999 -105.449997 0.999974 +v -120.907997 -105.722 0.999974 +v -122.397995 -107.889 0.999973 +v -121.904999 -105.431999 0.999974 +v -112.493996 -105.660995 0.371974 +v -111.418999 -104.532005 -0.281026 +v -98.632004 -104.520996 -0.287026 +v -111.992996 -104.819 -0.115026 +v -112.360001 -105.226006 0.119974 +v -97.952003 -104.852997 -0.095026 +v -111.368004 -104.721001 -0.633026 +v -98.581001 -104.732002 -0.627026 +v -112.489998 -105.834 0.008974 +v -112.333 -105.379997 -0.253026 +v -111.960999 -104.994995 -0.475026 +v -97.820999 -105.164001 -0.378026 +v -121.789001 -105.449997 0.599974 +v -123.095001 -105.431999 0.599974 +v -122.328995 -107.895004 0.599973 +v -123.012001 -107.978996 0.599973 +v -124.091995 -105.722 0.599974 +v -121.567001 -108.181999 0.599973 +v -120.907997 -105.722 0.599974 +v -124.902 -106.163002 0.599974 +v -120.004997 -106.232002 0.599974 +v -123.488998 -108.236 0.599973 +v -125.718994 -106.939003 0.599974 +v -119.277 -106.941002 0.599974 +v -123.853996 -108.638 0.599973 +v -121.042999 -108.804001 0.599972 +v -126.675995 -106.968002 0.599974 +v -120.889 -109.603004 0.599972 +v -127.229004 -108.154999 0.599973 +v -124.097 -109.261002 0.599972 +v -127.404007 -109.852997 0.599972 +v -124.042 -109.947006 0.599972 +v -126.987991 -111.509003 0.599972 +v -121.143997 -110.375999 0.599972 +v -123.735001 -110.540001 0.599972 +v -126.252991 -112.650002 0.599972 +v -125.382004 -113.482994 0.599972 +v -121.620995 -110.843002 0.599972 +v -123.182999 -110.953003 0.599972 +v -124.176003 -114.105003 0.599971 +v -122.119003 -111.059006 0.599972 +v -122.660004 -111.097 0.599972 +v -123.182999 -114.360001 0.599971 +v -97.539001 -107.919998 6.372972 +v -98.632004 -106.989006 6.867972 +v -111.418999 -107.0 6.861972 +v -112.360001 -107.708 6.485973 +v -97.952003 -107.327995 6.687973 +v -111.992996 -107.292 6.706974 +v -97.338997 -115.181 1.349971 +v -97.119003 -114.844002 1.349971 +v -97.122002 -114.839005 6.517972 +v -97.306 -115.206001 6.517972 +v -93.322998 -119.181999 6.491971 +v -93.004005 -118.936005 6.478971 +v -93.039993 -118.899002 1.376971 +v -93.286995 -119.218002 1.388971 +v -92.257996 -119.681 5.385971 +v -92.266998 -119.671997 2.43097 +v -92.559998 -119.379997 1.759971 +v -92.529999 -119.410004 6.065969 +v -92.531998 -119.973 2.588969 +v -92.749001 -119.755997 1.88697 +v -92.550003 -119.955002 5.43797 +v -92.841995 -119.663002 6.107969 +v 114.495003 -114.75 1.691971 +v 114.5 -114.727997 1.197971 +v 114.5 -115.139 1.196971 +v 114.494003 -115.149994 1.693971 +v 114.442001 -114.75 5.769971 +v 114.499001 -114.75 2.160971 +v 114.460999 -115.149994 5.740972 +v 114.442001 -115.149994 2.097971 +v 114.5 -106.720001 0.971974 +v 114.5 -106.925003 0.609974 +v 114.5 -106.950996 0.999974 +v 99.5 -106.862 0.593974 +v 99.510002 -105.834 0.008974 +v 99.505997 -105.660995 0.371974 +v 99.5 -106.772995 0.989974 +v 114.5 -114.435005 0.991971 +v 114.5 -114.400002 0.599971 +v 114.5 -114.675003 0.639971 +v 114.5 -115.002998 0.893971 +v 114.5 -114.735001 6.644971 +v 114.494003 -114.75 6.174972 +v 114.495003 -115.149994 6.175972 +v 114.5 -115.139 6.670971 +v 99.5 -114.855995 0.746971 +v 99.5 -114.538002 0.606971 +v 99.5 -114.490005 1.005971 +v 99.5 -114.712997 1.167971 +v 99.5 -115.110001 1.074971 +v 99.487 -114.747002 1.349971 +v 99.490005 -115.148003 1.349971 +v 114.5 -114.959999 7.036972 +v 114.5 -114.482002 6.879972 +v 114.5 -114.456993 7.285972 +v 114.5 -109.284996 5.662973 +v 114.5 -109.343002 5.263972 +v 99.5 -115.153999 6.558971 +v 99.499001 -114.751999 6.523972 +v 99.5 -114.628998 6.795971 +v 99.5 -114.933998 7.062972 +v 99.5 -114.425003 7.286972 +v 99.5 -114.389 6.872972 +v 114.5 -109.035995 5.328972 +v 114.486 -107.872002 5.945973 +v 114.460999 -107.919998 6.372972 +v 99.5 -109.289993 5.665972 +v 99.5 -109.370003 5.265974 +v 99.5 -109.048004 5.323972 +v 100.631996 -106.801003 6.514973 +v 99.510002 -107.936005 5.911973 +v 113.418999 -106.811996 6.508973 +v 99.667 -107.473 6.157972 +v 114.179001 -107.251999 6.274973 +v 100.039001 -107.079994 6.366972 +v 114.382996 -114.75 1.947971 +v 114.403 -114.75 6.011971 +v 123.143997 -110.375999 0.999972 +v 122.889 -109.603004 0.999972 +v 123.621002 -110.843002 0.999972 +v 125.182999 -114.360001 0.999971 +v 124.261002 -111.097 0.999972 +v 124.927994 -111.046997 0.999972 +v 126.176003 -114.105003 0.999971 +v 125.419006 -110.816002 0.999972 +v 127.381996 -113.482994 0.999972 +v 125.892998 -110.317001 0.999972 +v 128.252991 -112.650002 0.999972 +v 128.987991 -111.509003 0.999972 +v 126.094994 -109.68 0.999972 +v 129.403992 -109.852997 0.999972 +v 126.064003 -109.138 0.999972 +v 129.228989 -108.154999 0.999973 +v 123.042999 -108.804001 0.999972 +v 125.854004 -108.638 0.999973 +v 121.276001 -106.941002 0.999974 +v 128.675995 -106.968002 0.999974 +v 123.473007 -108.266006 0.999973 +v 127.719002 -106.939003 0.999974 +v 125.488998 -108.236 0.999973 +v 122.004997 -106.232002 0.999974 +v 126.902 -106.163002 0.999974 +v 123.942001 -107.995003 0.999973 +v 123.154999 -105.613998 0.999974 +v 125.011993 -107.978996 0.999973 +v 126.092003 -105.722 0.999974 +v 124.475998 -107.895004 0.999973 +v 124.173004 -105.412994 0.999974 +v 125.094994 -105.431999 0.999974 +v 100.581001 -104.532005 -0.281026 +v 113.367996 -104.520996 -0.287026 +v 114.460999 -105.433998 0.239974 +v 114.047997 -104.852997 -0.095026 +v 100.006996 -104.819 -0.115026 +v 99.639999 -105.226006 0.119974 +v 100.631996 -104.721001 -0.633026 +v 113.418999 -104.732002 -0.627026 +v 114.486 -105.772003 -0.027026 +v 114.179001 -105.164001 -0.378026 +v 100.039001 -104.994995 -0.475026 +v 99.667 -105.379997 -0.253026 +v 124.794998 -107.922005 0.599973 +v 123.905006 -105.431999 0.599974 +v 124.126999 -107.929001 0.599973 +v 124.826996 -105.412994 0.599974 +v 125.845001 -105.613998 0.599974 +v 122.908005 -105.722 0.599974 +v 125.432999 -108.181999 0.599973 +v 122.098 -106.163002 0.599974 +v 126.994995 -106.232002 0.599974 +v 123.511002 -108.236 0.599973 +v 121.280998 -106.939003 0.599974 +v 127.724007 -106.941002 0.599974 +v 123.074005 -108.741997 0.599973 +v 125.879005 -108.678993 0.599973 +v 122.886002 -109.534004 0.599972 +v 128.682999 -106.972 0.599974 +v 126.073997 -109.186005 0.599972 +v 129.268997 -108.301994 0.599973 +v 126.089005 -109.728004 0.599972 +v 129.391006 -110.004997 0.599972 +v 123.107002 -110.317001 0.599972 +v 125.855995 -110.375999 0.599972 +v 129.104004 -111.176994 0.599972 +v 128.483002 -112.383003 0.599972 +v 123.581001 -110.816002 0.599972 +v 125.378998 -110.843002 0.599972 +v 127.257004 -113.571007 0.599972 +v 125.069008 -114.375 0.599971 +v 124.071999 -111.046997 0.599972 +v 124.738998 -111.097 0.599972 +v 126.176003 -114.105003 0.599971 +v 114.403 -115.149994 1.856971 +v 114.400002 -115.149994 5.996972 +v 99.505997 -108.151001 6.249972 +v 113.367996 -106.989006 6.867972 +v 100.581001 -107.0 6.861972 +v 100.006996 -107.292 6.706974 +v 99.639999 -107.708 6.485973 +v 114.047997 -107.327995 6.687973 +v 99.071999 -114.876999 1.349971 +v 99.306 -115.206001 1.349971 +v 99.339005 -115.181 6.517972 +v 99.119003 -114.844002 6.517972 +v 95.040001 -118.899002 6.491971 +v 95.287003 -119.218002 6.478971 +v 95.322998 -119.181999 1.376971 +v 95.084 -118.854996 1.371971 +v 94.258003 -119.681 2.481971 +v 94.583 -119.355995 1.714971 +v 94.254997 -119.684006 5.323969 +v 94.498001 -119.442001 6.03297 +v 94.527 -119.978004 5.174971 +v 94.528999 -119.975998 2.661969 +v 94.639999 -119.864998 2.136971 +v 94.903999 -119.600998 1.69297 +v 94.880997 -119.623993 6.147969 +v 94.621002 -119.884003 5.677969 +v 128.656998 -112.278 0.999972 +v 128.037003 -113.036995 2.599972 +v 128.656998 -112.278 2.599972 +v 128.037003 -113.036995 0.999972 +v 129.118988 -111.414001 0.999972 +v 129.118988 -111.414001 2.599972 +v 129.403 -110.476997 0.999972 +v 129.403 -110.476997 2.599972 +v 129.5 -109.500999 0.999972 +v 129.5 -109.500999 2.599972 +v 129.5 -0.0 2.6 +v 129.5 -0.0 1.0 +v 129.5 108.125 2.600027 +v 129.5 108.125 1.000027 +v 129.438004 110.284996 2.600027 +v 129.5 109.501999 1.000028 +v 128.955002 111.772003 1.000028 +v 128.544998 112.441002 2.600028 +v 128.034988 113.038002 1.000028 +v 127.437996 113.546997 2.600029 +v 126.769005 113.957001 1.000029 +v 126.044006 114.257004 2.600029 +v 125.281006 114.440002 1.000029 +v 124.499001 114.500999 2.600029 +v 118.75 114.500999 2.600029 +v 118.75 114.500999 1.000029 +v 105.25 114.500999 2.600029 +v 105.25 114.500999 1.000029 +v 50.25 114.500999 2.600029 +v 50.25 114.500999 1.000029 +v -48.25 114.500999 2.600029 +v -48.25 114.500999 1.000029 +v -103.25 114.500999 2.600029 +v -103.25 114.500999 1.000029 +v -116.75 114.500999 2.600029 +v -116.75 114.500999 1.000029 +v -123.280006 114.440002 2.600029 +v -123.280006 114.440002 1.000029 +v -127.25499 111.046997 2.600028 +v -127.5 109.501999 2.600027 +v -127.5 109.501999 1.000028 +v -126.954002 111.772003 1.000028 +v -126.035004 113.038002 2.600028 +v -126.035004 113.038002 1.000028 +v -124.769005 113.957001 2.600029 +v -124.769005 113.957001 1.000029 +v 127.278 -113.659004 0.999971 +v -127.5 -109.500999 2.599972 +v -123.475998 -114.405998 2.599971 +v -126.655998 -112.278 2.599972 +v -127.5 -109.500999 0.999972 +v -127.403008 -110.476997 2.599972 +v -127.403008 -110.476997 0.999972 +v -127.119003 -111.414001 2.599972 +v -127.119003 -111.414001 0.999972 +v -126.655998 -112.278 0.999972 +v -126.034004 -113.036995 2.599972 +v -126.034004 -113.036995 0.999972 +v -125.277 -113.659004 2.599971 +v -125.277 -113.659004 0.999971 +v -124.413994 -114.119003 2.599971 +v -124.413994 -114.119003 0.999971 +v -123.475998 -114.405998 0.999971 +v -122.498993 -114.5 2.599971 +v -122.498993 -114.5 0.999971 +v 118.75 -114.5 0.999971 +v 124.498001 -114.5 2.599971 +v 124.498001 -114.5 0.999971 +v 118.75 -114.5 2.599971 +v 105.25 -114.5 0.999971 +v 105.25 -114.5 2.599971 +v 50.25 -114.5 0.999971 +v 50.25 -114.5 2.599971 +v -48.25 -114.5 0.999971 +v -48.25 -114.5 2.599971 +v -103.25 -114.5 0.999971 +v -103.25 -114.5 2.599971 +v -116.75 -114.5 0.999971 +v -116.75 -114.5 2.599971 +v 125.476997 -114.405998 0.999971 +v 125.476997 -114.405998 2.599971 +v 126.414001 -114.119003 0.999971 +v 126.414001 -114.119003 2.599971 +v 127.278 -113.659004 2.599971 +v 95.987 132.826004 -12.999967 +v 91.022003 137.946991 -12.999965 +v 96.624001 134.582993 -12.999967 +v 97.815002 136.022995 -12.999967 +v 99.421005 136.977005 -12.999966 +v 99.532997 155.597 -12.99896 +v 95.940002 131.424988 -12.999968 +v 101.013 137.310989 -12.998965 +v 119.979004 -94.714996 -13.000024 +v 96.264 129.925995 -13.000967 +v 97.216003 128.317993 -13.000967 +v 98.654999 127.124992 -12.999968 +v 100.409996 126.486 -12.999968 +v 102.128998 126.452995 -12.980968 +v -117.732002 -94.853996 -13.001023 +v -97.539001 155.597 -12.999961 +v -116.549004 -95.846001 -13.000024 +v 61.441002 155.597 -12.999961 +v -129.593994 -107.065994 -13.000027 +v -128.858994 -105.480003 -13.000027 +v -130.0 -114.802002 -12.99203 +v -129.949005 -108.571999 -13.000028 +v 119.672997 -94.875999 -16.002022 +v 119.239006 -95.184998 -13.000024 +v 118.548996 -95.846001 -16.000023 +v 118.474998 -95.942001 -13.000024 +v 118.009003 -96.773994 -16.000023 +v 117.858002 -97.143997 -13.000025 +v 117.728004 -97.685005 -16.000023 +v 117.674995 -98.484001 -13.000025 +v 117.732002 -99.037003 -16.000025 +v 117.833 -99.423996 -13.000025 +v 118.184998 -100.311005 -16.000027 +v 118.244995 -100.416 -13.000025 +v 119.034996 -101.362 -16.000027 +v 119.125999 -101.441002 -13.000025 +v 120.185005 -102.071999 -16.000027 +v 119.935997 -101.946999 -13.000025 +v 120.952003 -102.294998 -13.000025 +v 121.229004 -102.324005 -16.000027 +v 122.128006 -102.334 -16.000027 +v 122.184998 -102.324997 -13.000025 +v 99.729004 155.597 -15.998961 +v 91.099998 137.884003 -15.999965 +v 99.550003 137.022995 -15.999966 +v 97.920998 136.108002 -15.999967 +v 96.695 134.697006 -15.999967 +v 94.602005 131.868011 -15.999967 +v 101.259003 137.333008 -15.992965 +v 96.015999 132.955994 -15.998967 +v 95.940002 131.424988 -15.999968 +v 96.213997 130.049011 -15.999968 +v 97.126999 128.418991 -15.999968 +v 98.536003 127.192009 -15.999968 +v 100.276001 126.509995 -15.999968 +v 102.125 126.456009 -15.992967 +v -116.474998 -95.942001 -16.000023 +v -97.678001 155.597 -15.998961 +v -117.619995 -94.897003 -16.003023 +v 132.0 -114.5 -16.000029 +v -130.0 -114.5 -16.000029 +v -128.738007 -105.295006 -16.000027 +v -129.593994 -107.065994 -16.000027 +v -129.962997 -108.598999 -16.000027 +v 124.615997 -101.977997 -16.000027 +v 124.393997 -101.977997 -13.000025 +v 126.344994 -102.231003 -13.000025 +v 126.344994 -102.231003 -16.000027 +v 127.986 -102.833 -13.000026 +v 128.181 -102.939003 -16.000027 +v 129.960999 -104.324997 -13.000027 +v 129.582001 -103.984001 -16.000027 +v 130.859009 -105.480003 -16.000027 +v 131.097 -105.931999 -13.000027 +v 131.594009 -107.065994 -13.000027 +v 131.594009 -107.065994 -16.000027 +v 131.962997 -108.598999 -13.000028 +v 131.94899 -108.571999 -16.000027 +v 132.0 -114.766998 -12.99103 +v -121.886002 -102.025002 -13.000025 +v -122.394005 -101.977997 -16.000027 +v -120.127998 -102.334 -13.000025 +v -120.185005 -102.324997 -16.000027 +v -124.344994 -102.231003 -16.000027 +v -123.851997 -102.098999 -13.000025 +v -125.985992 -102.833 -16.000027 +v -126.181007 -102.939003 -13.000026 +v -127.582001 -103.984001 -16.000027 +v -127.582001 -103.984001 -13.000027 +v -116.008995 -96.773994 -13.000025 +v -115.858002 -97.143997 -16.000023 +v -115.727997 -97.685005 -13.000025 +v -115.675003 -98.484001 -16.000025 +v -115.732002 -99.037003 -13.000025 +v -115.946999 -99.806999 -16.000027 +v -116.185005 -100.311005 -13.000025 +v -116.407997 -100.642998 -16.000027 +v -117.035004 -101.362 -13.000025 +v -117.126999 -101.441002 -16.000027 +v -117.935997 -101.946999 -13.000025 +v -117.935997 -101.946999 -16.000027 +v -118.833 -102.270996 -13.000025 +v -118.951996 -102.294998 -16.000027 +v 101.092003 137.06601 -13.248965 +v 100.382004 136.990997 -15.756966 +v 100.039001 136.897003 -13.250966 +v 98.825996 136.427002 -15.747966 +v 98.796005 136.410004 -13.250966 +v 97.457001 135.324005 -15.746966 +v 97.432999 135.296997 -13.250967 +v 96.726997 134.214996 -15.747967 +v 96.518005 133.794998 -13.250967 +v 96.398003 133.399994 -15.746966 +v 96.210999 132.539001 -15.746966 +v 96.208 132.520004 -13.250967 +v 96.174004 131.48201 -15.747968 +v 96.18 131.405991 -13.251967 +v 96.382996 130.386993 -15.748967 +v 96.388 130.367996 -13.252967 +v 96.895004 129.179993 -15.748967 +v 96.711998 129.549988 -13.252967 +v 97.168999 128.797989 -13.251967 +v 98.042 127.846001 -15.748967 +v 97.747002 128.134995 -13.251967 +v 98.797997 127.324997 -13.251967 +v 99.567001 126.968994 -15.748967 +v 100.451996 126.728996 -13.251967 +v 101.196999 126.653999 -15.756968 +v 102.004997 126.699997 -13.250968 +v 132.0 -115.595001 -15.91403 +v 132.0 -117.096001 -15.52203 +v 132.0 -115.983002 -12.72703 +v 132.0 -118.984001 -14.401031 +v 132.0 -117.063004 -12.08603 +v 132.0 -120.433006 -12.751031 +v 132.0 -117.737 -11.351029 +v 132.0 -118.183998 -10.58603 +v 132.0 -121.302002 -10.734031 +v 132.003998 -118.496002 -9.36703 +v 131.990997 -121.506996 -8.430031 +v -130.0 -115.595001 -15.91403 +v -130.0 -116.086998 -12.684031 +v -130.0 -117.276993 -15.44703 +v -130.0 -117.147995 -12.01303 +v -130.0 -119.133003 -14.27403 +v -130.0 -117.737 -11.351029 +v -130.0 -120.164001 -13.11503 +v -130.0 -118.226997 -10.48303 +v -130.0 -121.023003 -11.59503 +v -130.005005 -118.497002 -9.29303 +v -130.0 -121.414001 -10.095031 +v -129.988998 -121.504997 -8.469031 +v -10.846 -114.5 -16.000029 +v 34.728001 -114.5 -13.000029 +v -129.925995 -118.5 -8.03103 +v -129.590012 -121.5 -6.74503 +v -129.526001 -118.5 -6.590029 +v -128.628998 -121.5 -5.127031 +v -128.854004 -118.5 -5.443029 +v -127.84301 -118.5 -4.34003 +v -127.527 -121.5 -4.116031 +v -126.379997 -121.5 -3.444031 +v -126.224991 -118.5 -3.379029 +v -124.684998 -121.5 -2.997031 +v -124.706001 -118.5 -3.007029 +v -86.75 -118.5 -2.930029 +v -86.719002 -121.5 -2.918031 +v -80.424004 -121.5 -0.602031 +v -80.424004 -118.5 -0.602029 +v -74.770004 -121.5 0.619969 +v -74.770004 -118.5 0.619971 +v -69.0 -121.5 1.029969 +v -69.0 -118.5 1.029971 +v 71.0 -118.5 1.029971 +v 71.0 -121.5 1.029969 +v 82.424004 -118.5 -0.602029 +v 88.719002 -118.5 -2.918029 +v 88.75 -121.5 -2.930031 +v 82.424004 -121.5 -0.602031 +v 76.769997 -118.5 0.619971 +v 76.769997 -121.5 0.619969 +v 126.68499 -118.5 -2.997029 +v 126.706001 -121.5 -3.007031 +v 131.925995 -118.5 -8.03103 +v 131.589996 -118.5 -6.745029 +v 131.526001 -121.5 -6.59003 +v 130.628998 -118.5 -5.12703 +v 130.853989 -121.5 -5.44303 +v 129.843002 -121.5 -4.340031 +v 129.527008 -118.5 -4.11603 +v 128.380005 -118.5 -3.444029 +v 128.225006 -121.5 -3.379031 +v -118.609001 -94.443001 -12.809024 +v -120.172005 -94.297997 -15.378024 +v -121.362999 -94.199005 -14.336024 +v -119.012001 -94.391006 -12.470024 +v -122.107994 -94.137993 -13.000024 +v -119.341003 -94.366997 -11.825024 +v -122.347 -94.124001 -11.723023 +v -118.133003 -94.659004 -13.729024 +v -118.828995 -94.536995 -15.912024 +v -118.183998 -94.587997 -12.973024 +v -122.331001 -93.892998 -9.518024 +v -121.775002 -87.083 -3.549022 +v -122.279007 -93.25 -7.868024 +v -122.189003 -92.152 -6.205023 +v -122.032005 -90.226997 -4.602023 +v -121.900002 -88.609001 -3.892023 +v -119.351997 -94.264999 -10.249023 +v -119.314995 -93.818001 -8.533024 +v -119.235001 -92.840004 -6.798023 +v -119.139999 -91.667 -5.473023 +v -118.966995 -89.552002 -4.132023 +v -118.779007 -87.254005 -3.527022 +v 123.751999 -94.167999 -13.765023 +v 122.743004 -94.247993 -14.981024 +v 120.931 -94.394997 -12.576024 +v 121.339996 -94.369003 -11.825024 +v 124.191002 -94.131996 -12.687024 +v 124.347 -94.124001 -11.826024 +v 120.718002 -94.542999 -15.934024 +v 120.209 -94.568001 -12.966023 +v 120.412003 -94.480995 -12.901024 +v 121.738998 -94.352997 -15.589024 +v 102.535004 126.746002 -15.691967 +v 103.784004 126.848 -15.273968 +v 102.715004 126.761002 -12.995968 +v 104.842003 126.934006 -14.467968 +v 103.347 126.808998 -12.351968 +v 105.493004 126.985001 -13.608967 +v 105.927994 127.040001 -12.469968 +v 103.528999 126.879005 -11.706968 +v 106.016998 127.136009 -11.531968 +v 102.999001 126.533005 -15.840967 +v 103.724998 126.591995 -15.571968 +v 104.753006 126.686005 -14.912968 +v 105.724998 126.751007 -13.750968 +v 106.214005 126.819 -12.426968 +v 106.292999 126.910004 -11.464968 +v 102.757996 126.512009 -12.670968 +v 103.174004 126.541 -12.156967 +v 103.302002 126.615005 -11.659967 +v 105.159996 137.354004 -12.102965 +v 104.525002 137.347 -13.852965 +v 102.546997 137.185013 -12.246965 +v 102.695999 137.132004 -11.677966 +v 105.194 137.274002 -11.414966 +v 101.980003 137.134995 -15.632966 +v 101.873001 137.126999 -13.002966 +v 103.193001 137.234009 -15.125966 +v 105.114998 137.647995 -13.158965 +v 105.377998 137.619003 -12.120965 +v 105.435997 137.466995 -10.983966 +v 102.525002 137.429993 -15.719966 +v 103.506996 137.511002 -15.181965 +v 104.099998 137.55899 -14.681965 +v 104.598 137.600006 -14.087965 +v 102.341003 137.412994 -12.004966 +v 102.426003 137.362 -11.651966 +v 101.480003 137.345993 -12.899966 +v 102.027 137.391006 -12.537966 +v 123.957001 -89.307999 -4.132023 +v 124.081001 -90.832001 -5.028023 +v 124.200996 -92.297005 -6.375023 +v 124.335999 -93.945 -9.736024 +v 123.773003 -87.056 -3.536022 +v 106.256996 127.33699 -10.149968 +v 106.168999 128.414001 -8.649968 +v 124.278999 -93.25 -7.868024 +v 106.044998 129.927994 -7.595968 +v 105.901001 131.694 -7.109968 +v 120.777 -87.223999 -3.533022 +v 121.340996 -94.137001 -9.519024 +v 103.278999 126.943008 -10.534967 +v 103.222 127.649994 -9.243967 +v 121.091003 -91.076004 -5.028023 +v 120.949997 -89.346001 -4.046023 +v 121.289001 -93.493996 -7.868024 +v 121.198997 -92.395996 -6.205023 +v 103.112 128.996002 -7.981967 +v 102.973999 130.682999 -7.241968 +v 102.822998 132.531006 -7.109968 +v 102.467003 136.888 -10.149966 +v 103.509003 127.215996 -10.569967 +v 102.737999 136.649002 -10.183966 +v 103.456993 127.856003 -9.407968 +v 102.555 135.811005 -8.649967 +v 102.824005 135.606003 -8.776967 +v 103.353004 129.127991 -8.205967 +v 102.679001 134.296997 -7.594966 +v 102.941994 134.156998 -7.795966 +v 103.222 130.723999 -7.493968 +v 103.079994 132.473007 -7.352966 +v 105.214996 137.008987 -10.569965 +v 105.985001 127.575996 -10.184967 +v 105.267006 136.369003 -9.407966 +v 105.899994 128.619003 -8.776968 +v 105.371002 135.097992 -8.205966 +v 105.782005 130.068008 -7.795968 +v 105.501999 133.500992 -7.493967 +v 105.644005 131.751999 -7.352966 +v 105.501999 136.574997 -9.243965 +v 105.612 135.229004 -7.981966 +v 105.75 133.542007 -7.241967 +v -98.941002 155.597 -15.753961 +v -99.973 155.597 -15.226961 +v -100.814003 155.597 -14.50096 +v -101.513 155.597 -13.447961 +v -101.892998 155.597 -12.328961 +v -97.999001 155.597 -12.89696 +v -98.422997 155.597 -12.63796 +v -98.752998 155.597 -12.232961 +v -98.925003 155.597 -11.759961 +v -101.947998 155.597 -3.499961 +v -98.938004 155.597 -3.499961 +v 101.617004 155.597 -15.452961 +v 103.947998 155.597 -3.499961 +v 103.929001 155.597 -11.987961 +v 100.914001 155.597 -11.84696 +v 100.938004 155.597 -3.499961 +v 100.629997 155.597 -15.83996 +v 102.752998 155.597 -14.575961 +v 103.625999 155.597 -13.218962 +v 99.979996 155.597 -12.904961 +v 100.528 155.597 -12.551961 +v 0.0 155.263 41.445042 +v -33.298 155.597 -12.999961 +v -55.571999 155.597 -15.999961 +v 4.673 155.597 -15.999961 +v 60.070999 155.597 -15.999961 +v 129.25499 111.046997 4.904028 +v 129.25499 111.046997 4.904028 +v 129.438004 110.284996 4.904028 +v 129.438004 110.284996 4.904028 +v 129.25499 111.046997 4.904028 +v 129.438004 110.284996 4.904028 +vt -0.000447 1.001452 +vt -0.110547 0.953141 +vt -0.110555 0.91074 +vt 0.49753 0.91371 +vt 0.725892 0.050021 +vt 0.725892 0.829568 +vt 0.499712 0.829566 +vt 1.105615 0.91074 +vt 1.105607 0.953141 +vt 0.273532 0.050022 +vt 0.499712 0.049952 +vt 0.49753 0.956165 +vt 0.273532 0.829569 +f 1/1 2/1 3/1 +f 4/1 5/1 3/1 +f 6/1 7/1 8/1 +f 9/1 10/1 11/1 +f 12/1 13/1 14/1 +f 15/1 16/1 17/1 +f 18/1 19/1 4/1 +f 20/1 21/1 22/1 +f 23/1 22/1 10/1 +f 24/1 25/1 26/1 +f 27/1 28/1 29/1 +f 30/1 31/1 32/1 +f 33/1 34/1 35/1 +f 36/1 37/1 38/1 +f 39/1 40/1 41/1 +f 42/1 43/1 44/1 +f 2/1 4/1 3/1 +f 34/1 45/1 35/1 +f 46/1 47/1 48/1 +f 49/1 50/1 51/1 +f 28/1 27/1 52/1 +f 43/1 53/1 44/1 +f 37/1 54/1 55/1 +f 27/1 56/1 52/1 +f 57/1 58/1 59/1 +f 60/1 61/1 7/1 +f 62/1 63/1 64/1 +f 65/1 8/1 66/1 +f 67/1 68/1 47/1 +f 69/1 70/1 31/1 +f 71/1 72/1 73/1 +f 74/1 37/1 75/1 +f 76/1 77/1 78/1 +f 79/1 33/1 35/1 +f 80/1 26/1 81/1 +f 82/1 83/1 55/1 +f 66/1 84/1 65/1 +f 85/1 86/1 87/1 +f 88/1 89/1 90/1 +f 91/1 57/1 92/1 +f 93/1 94/1 63/1 +f 37/1 36/1 75/1 +f 95/1 81/1 96/1 +f 37/1 97/1 54/1 +f 98/1 99/1 16/1 +f 100/1 101/1 102/1 +f 103/1 104/1 49/1 +f 105/1 106/1 21/1 +f 107/1 108/1 109/1 +f 56/1 110/1 111/1 +f 112/1 113/1 94/1 +f 114/1 115/1 116/1 +f 117/1 53/1 43/1 +f 118/1 119/1 120/1 +f 121/1 122/1 117/1 +f 123/1 124/1 125/1 +f 126/1 127/1 13/1 +f 128/1 103/1 49/1 +f 129/1 130/1 131/1 +f 132/1 122/1 121/1 +f 39/1 72/1 133/1 +f 134/1 53/1 117/1 +f 135/1 125/1 119/1 +f 136/1 137/1 70/1 +f 138/1 139/1 58/1 +f 58/1 140/1 141/1 +f 142/1 143/1 144/1 +f 6/1 8/1 132/1 +f 145/1 120/1 68/1 +f 133/1 40/1 39/1 +f 146/1 58/1 57/1 +f 146/1 57/1 91/1 +f 58/1 146/1 140/1 +f 147/1 148/1 77/1 +f 149/1 14/1 137/1 +f 150/1 134/1 117/1 +f 73/1 72/1 39/1 +f 59/1 58/1 151/1 +f 40/1 152/1 153/1 +f 154/1 155/1 89/1 +f 156/1 157/1 155/1 +f 66/1 8/1 7/1 +f 158/1 159/1 160/1 +f 161/1 90/1 162/1 +f 151/1 58/1 139/1 +f 163/1 131/1 86/1 +f 164/1 165/1 157/1 +f 166/1 87/1 167/1 +f 168/1 169/1 170/1 +f 160/1 65/1 158/1 +f 171/1 102/1 127/1 +f 172/1 173/1 148/1 +f 174/1 160/1 175/1 +f 176/1 11/1 124/1 +f 177/1 162/1 178/1 +f 133/1 72/1 179/1 +f 180/1 178/1 99/1 +f 158/1 65/1 84/1 +f 174/1 65/1 160/1 +f 181/1 17/1 113/1 +f 182/1 144/1 25/1 +f 61/1 60/1 138/1 +f 183/1 74/1 75/1 +f 50/1 184/1 51/1 +f 2/1 29/1 28/1 +f 18/1 4/1 28/1 +f 185/1 59/1 186/1 +f 45/1 114/1 116/1 +f 132/1 8/1 122/1 +f 128/1 49/1 187/1 +f 183/1 75/1 52/1 +f 57/1 59/1 185/1 +f 83/1 37/1 55/1 +f 188/1 82/1 55/1 +f 133/1 152/1 40/1 +f 160/1 189/1 190/1 +f 54/1 191/1 55/1 +f 192/1 187/1 193/1 +f 187/1 194/1 195/1 +f 196/1 134/1 150/1 +f 51/1 197/1 187/1 +f 198/1 32/1 143/1 +f 199/1 53/1 200/1 +f 201/1 170/1 130/1 +f 49/1 51/1 187/1 +f 202/1 64/1 101/1 +f 203/1 204/1 45/1 +f 117/1 43/1 205/1 +f 192/1 79/1 35/1 +f 206/1 109/1 169/1 +f 197/1 193/1 187/1 +f 207/1 52/1 56/1 +f 200/1 53/1 134/1 +f 45/1 34/1 114/1 +f 45/1 204/1 35/1 +f 160/1 159/1 189/1 +f 110/1 79/1 192/1 +f 207/1 183/1 52/1 +f 208/1 191/1 54/1 +f 117/1 122/1 150/1 +f 72/1 71/1 138/1 +f 209/1 133/1 179/1 +f 34/1 210/1 114/1 +f 4/1 2/1 28/1 +f 187/1 195/1 128/1 +f 4/1 211/1 5/1 +f 212/1 78/1 108/1 +f 213/1 159/1 158/1 +f 188/1 55/1 145/1 +f 56/1 154/1 88/1 +f 128/1 149/1 136/1 +f 204/1 202/1 100/1 +f 85/1 3/1 5/1 +f 104/1 69/1 30/1 +f 115/1 181/1 112/1 +f 23/1 74/1 183/1 +f 9/1 37/1 74/1 +f 49/1 30/1 198/1 +f 184/1 142/1 182/1 +f 116/1 112/1 93/1 +f 214/1 2/1 1/1 +f 4/1 19/1 168/1 +f 50/1 198/1 142/1 +f 211/1 4/1 201/1 +f 180/1 98/1 210/1 +f 27/1 156/1 154/1 +f 195/1 12/1 149/1 +f 118/1 191/1 208/1 +f 18/1 28/1 107/1 +f 215/1 83/1 82/1 +f 203/1 62/1 202/1 +f 182/1 24/1 197/1 +f 103/1 136/1 69/1 +f 208/1 54/1 123/1 +f 20/1 183/1 207/1 +f 214/1 164/1 29/1 +f 52/1 75/1 76/1 +f 28/1 52/1 212/1 +f 193/1 197/1 24/1 +f 79/1 161/1 177/1 +f 75/1 36/1 147/1 +f 164/1 156/1 27/1 +f 166/1 1/1 3/1 +f 19/1 18/1 206/1 +f 171/1 126/1 194/1 +f 45/1 93/1 62/1 +f 15/1 181/1 115/1 +f 105/1 207/1 111/1 +f 194/1 126/1 12/1 +f 192/1 193/1 80/1 +f 33/1 177/1 180/1 +f 97/1 37/1 9/1 +f 82/1 188/1 67/1 +f 111/1 192/1 95/1 +f 210/1 98/1 15/1 +f 163/1 5/1 211/1 +f 161/1 79/1 110/1 +f 54/1 97/1 176/1 +f 145/1 55/1 191/1 +f 35/1 100/1 171/1 +f 216/1 96/1 106/1 +f 92/1 57/1 31/1 +f 71/1 90/1 89/1 +f 71/1 73/1 162/1 +f 144/1 59/1 151/1 +f 153/1 152/1 113/1 +f 175/1 169/1 109/1 +f 91/1 92/1 70/1 +f 186/1 59/1 144/1 +f 6/1 106/1 96/1 +f 196/1 173/1 48/1 +f 200/1 47/1 68/1 +f 185/1 186/1 143/1 +f 41/1 40/1 16/1 +f 134/1 48/1 47/1 +f 165/1 84/1 66/1 +f 57/1 185/1 32/1 +f 16/1 40/1 153/1 +f 148/1 173/1 196/1 +f 167/1 158/1 84/1 +f 167/1 87/1 213/1 +f 60/1 96/1 81/1 +f 174/1 109/1 108/1 +f 77/1 148/1 150/1 +f 10/1 22/1 121/1 +f 133/1 209/1 63/1 +f 157/1 66/1 7/1 +f 73/1 39/1 178/1 +f 140/1 146/1 14/1 +f 119/1 125/1 42/1 +f 72/1 58/1 102/1 +f 53/1 120/1 119/1 +f 205/1 11/1 10/1 +f 138/1 81/1 26/1 +f 152/1 133/1 94/1 +f 179/1 72/1 101/1 +f 102/1 58/1 141/1 +f 43/1 124/1 11/1 +f 22/1 21/1 132/1 +f 65/1 108/1 78/1 +f 141/1 140/1 13/1 +f 14/1 146/1 91/1 +f 125/1 124/1 43/1 +f 131/1 130/1 190/1 +f 209/1 179/1 64/1 +f 8/1 78/1 77/1 +f 190/1 130/1 170/1 +f 155/1 7/1 61/1 +f 213/1 87/1 86/1 +f 139/1 26/1 25/1 +f 199/1 68/1 120/1 +f 86/1 131/1 189/1 +f 132/1 21/1 106/1 +f 160/1 170/1 169/1 +f 178/1 39/1 41/1 +f 214/1 167/1 165/1 +f 172/1 147/1 36/1 +f 83/1 215/1 172/1 +f 38/1 37/1 83/1 +f 48/1 173/1 172/1 +f 217/1 218/1 219/1 +f 220/1 217/1 219/1 +f 221/1 222/1 223/1 +f 224/1 225/1 226/1 +f 227/1 228/1 224/1 +f 227/1 224/1 226/1 +f 229/1 228/1 230/1 +f 231/1 228/1 229/1 +f 232/1 233/1 234/1 +f 230/1 228/1 227/1 +f 235/1 236/1 222/1 +f 237/1 218/1 238/1 +f 225/1 236/1 239/1 +f 240/1 236/1 241/1 +f 241/1 236/1 235/1 +f 233/1 242/1 243/1 +f 244/1 223/1 245/1 +f 246/1 241/1 235/1 +f 239/1 236/1 240/1 +f 235/1 222/1 221/1 +f 244/1 245/1 232/1 +f 239/1 240/1 247/1 +f 248/1 235/1 221/1 +f 237/1 238/1 249/1 +f 250/1 241/1 251/1 +f 251/1 241/1 246/1 +f 252/1 223/1 244/1 +f 240/1 241/1 253/1 +f 254/1 235/1 248/1 +f 246/1 235/1 254/1 +f 253/1 241/1 250/1 +f 249/1 238/1 231/1 +f 242/1 217/1 255/1 +f 256/1 223/1 252/1 +f 219/1 218/1 237/1 +f 243/1 242/1 255/1 +f 221/1 223/1 256/1 +f 253/1 250/1 257/1 +f 257/1 250/1 258/1 +f 259/1 226/1 225/1 +f 247/1 240/1 260/1 +f 252/1 244/1 261/1 +f 262/1 221/1 256/1 +f 263/1 232/1 234/1 +f 244/1 232/1 263/1 +f 260/1 240/1 253/1 +f 257/1 258/1 264/1 +f 265/1 258/1 266/1 +f 255/1 217/1 220/1 +f 248/1 221/1 262/1 +f 258/1 265/1 267/1 +f 234/1 233/1 268/1 +f 268/1 233/1 243/1 +f 259/1 225/1 239/1 +f 261/1 244/1 263/1 +f 269/1 250/1 251/1 +f 258/1 250/1 269/1 +f 264/1 258/1 267/1 +f 270/1 249/1 231/1 +f 271/1 230/1 227/1 +f 267/1 265/1 272/1 +f 219/1 237/1 249/1 +f 270/1 231/1 229/1 +f 267/1 272/1 273/1 +f 274/1 239/1 247/1 +f 275/1 258/1 269/1 +f 266/1 258/1 275/1 +f 246/1 254/1 276/1 +f 271/1 227/1 277/1 +f 277/1 227/1 226/1 +f 278/1 256/1 252/1 +f 279/1 229/1 230/1 +f 273/1 272/1 280/1 +f 220/1 219/1 249/1 +f 243/1 255/1 220/1 +f 262/1 256/1 278/1 +f 251/1 246/1 281/1 +f 281/1 246/1 276/1 +f 277/1 226/1 259/1 +f 268/1 243/1 220/1 +f 220/1 249/1 268/1 +f 282/1 265/1 266/1 +f 263/1 234/1 268/1 +f 270/1 229/1 279/1 +f 283/1 251/1 281/1 +f 284/1 248/1 262/1 +f 272/1 265/1 282/1 +f 269/1 251/1 283/1 +f 254/1 248/1 284/1 +f 285/1 259/1 239/1 +f 286/1 253/1 257/1 +f 287/1 254/1 284/1 +f 288/1 272/1 282/1 +f 261/1 263/1 289/1 +f 290/1 267/1 273/1 +f 285/1 239/1 274/1 +f 268/1 249/1 270/1 +f 286/1 257/1 291/1 +f 279/1 230/1 271/1 +f 276/1 254/1 287/1 +f 279/1 271/1 292/1 +f 291/1 257/1 264/1 +f 252/1 261/1 289/1 +f 268/1 270/1 289/1 +f 293/1 274/1 247/1 +f 263/1 268/1 289/1 +f 292/1 271/1 277/1 +f 291/1 264/1 294/1 +f 278/1 252/1 289/1 +f 266/1 275/1 295/1 +f 289/1 270/1 279/1 +f 293/1 247/1 296/1 +f 296/1 247/1 260/1 +f 294/1 264/1 267/1 +f 282/1 266/1 295/1 +f 294/1 267/1 297/1 +f 292/1 277/1 259/1 +f 292/1 259/1 298/1 +f 296/1 260/1 286/1 +f 286/1 260/1 253/1 +f 289/1 279/1 292/1 +f 285/1 274/1 293/1 +f 297/1 267/1 290/1 +f 298/1 259/1 285/1 +f 269/1 283/1 299/1 +f 284/1 262/1 278/1 +f 288/1 282/1 300/1 +f 301/1 269/1 299/1 +f 289/1 292/1 298/1 +f 275/1 269/1 301/1 +f 278/1 289/1 298/1 +f 302/1 287/1 284/1 +f 284/1 278/1 298/1 +f 303/1 283/1 281/1 +f 276/1 287/1 302/1 +f 299/1 283/1 303/1 +f 296/1 286/1 304/1 +f 282/1 295/1 305/1 +f 302/1 284/1 298/1 +f 281/1 276/1 306/1 +f 306/1 276/1 302/1 +f 302/1 298/1 285/1 +f 302/1 285/1 293/1 +f 303/1 281/1 306/1 +f 304/1 286/1 291/1 +f 293/1 296/1 304/1 +f 295/1 275/1 301/1 +f 307/1 297/1 290/1 +f 306/1 302/1 293/1 +f 308/1 291/1 294/1 +f 308/1 294/1 297/1 +f 309/1 304/1 291/1 +f 306/1 293/1 304/1 +f 300/1 282/1 305/1 +f 303/1 306/1 304/1 +f 310/1 295/1 301/1 +f 311/1 288/1 300/1 +f 305/1 295/1 310/1 +f 309/1 291/1 308/1 +f 299/1 303/1 304/1 +f 312/1 307/1 290/1 +f 301/1 299/1 309/1 +f 309/1 299/1 304/1 +f 310/1 301/1 309/1 +f 308/1 297/1 307/1 +f 310/1 309/1 308/1 +f 313/1 307/1 312/1 +f 310/1 308/1 307/1 +f 300/1 305/1 310/1 +f 313/1 300/1 310/1 +f 310/1 307/1 313/1 +f 314/1 315/1 316/1 +f 317/1 315/1 314/1 +f 318/1 319/1 320/1 +f 321/1 319/1 322/1 +f 323/1 319/1 318/1 +f 322/1 319/1 324/1 +f 318/1 320/1 325/1 +f 324/1 319/1 323/1 +f 326/1 324/1 323/1 +f 327/1 324/1 326/1 +f 322/1 324/1 328/1 +f 329/1 318/1 325/1 +f 327/1 326/1 330/1 +f 323/1 318/1 329/1 +f 330/1 326/1 331/1 +f 332/1 323/1 329/1 +f 326/1 323/1 332/1 +f 331/1 326/1 333/1 +f 334/1 330/1 335/1 +f 333/1 326/1 332/1 +f 335/1 330/1 331/1 +f 336/1 334/1 335/1 +f 331/1 333/1 337/1 +f 338/1 334/1 336/1 +f 339/1 330/1 340/1 +f 341/1 328/1 324/1 +f 339/1 327/1 330/1 +f 340/1 330/1 334/1 +f 342/1 338/1 336/1 +f 332/1 329/1 343/1 +f 335/1 331/1 344/1 +f 340/1 334/1 345/1 +f 341/1 324/1 327/1 +f 342/1 336/1 346/1 +f 346/1 336/1 347/1 +f 348/1 335/1 344/1 +f 345/1 334/1 338/1 +f 342/1 346/1 349/1 +f 336/1 335/1 348/1 +f 333/1 332/1 337/1 +f 350/1 327/1 339/1 +f 351/1 336/1 348/1 +f 329/1 325/1 343/1 +f 347/1 336/1 351/1 +f 352/1 322/1 328/1 +f 352/1 328/1 353/1 +f 349/1 346/1 354/1 +f 342/1 349/1 355/1 +f 331/1 337/1 356/1 +f 353/1 328/1 341/1 +f 357/1 349/1 354/1 +f 355/1 349/1 358/1 +f 344/1 331/1 356/1 +f 358/1 349/1 357/1 +f 346/1 347/1 359/1 +f 357/1 354/1 360/1 +f 361/1 338/1 342/1 +f 362/1 341/1 327/1 +f 354/1 346/1 359/1 +f 358/1 357/1 363/1 +f 362/1 327/1 350/1 +f 361/1 342/1 364/1 +f 363/1 357/1 365/1 +f 343/1 325/1 366/1 +f 367/1 345/1 338/1 +f 364/1 342/1 355/1 +f 368/1 363/1 365/1 +f 367/1 338/1 361/1 +f 369/1 347/1 351/1 +f 370/1 365/1 371/1 +f 350/1 339/1 372/1 +f 332/1 343/1 373/1 +f 365/1 357/1 374/1 +f 372/1 339/1 340/1 +f 357/1 360/1 375/1 +f 355/1 358/1 376/1 +f 377/1 365/1 370/1 +f 378/1 363/1 368/1 +f 374/1 357/1 375/1 +f 359/1 347/1 369/1 +f 379/1 332/1 373/1 +f 372/1 340/1 380/1 +f 362/1 350/1 381/1 +f 382/1 352/1 353/1 +f 368/1 365/1 377/1 +f 337/1 332/1 379/1 +f 376/1 358/1 363/1 +f 380/1 340/1 345/1 +f 373/1 343/1 366/1 +f 353/1 341/1 362/1 +f 370/1 371/1 383/1 +f 380/1 345/1 367/1 +f 384/1 377/1 370/1 +f 385/1 337/1 379/1 +f 354/1 359/1 386/1 +f 387/1 365/1 374/1 +f 356/1 337/1 385/1 +f 369/1 351/1 388/1 +f 371/1 365/1 387/1 +f 360/1 354/1 386/1 +f 316/1 370/1 389/1 +f 315/1 370/1 316/1 +f 389/1 370/1 383/1 +f 384/1 370/1 315/1 +f 366/1 382/1 353/1 +f 378/1 368/1 390/1 +f 367/1 361/1 391/1 +f 373/1 366/1 353/1 +f 344/1 356/1 385/1 +f 376/1 363/1 392/1 +f 373/1 353/1 362/1 +f 381/1 350/1 372/1 +f 392/1 363/1 378/1 +f 348/1 344/1 393/1 +f 390/1 368/1 377/1 +f 391/1 361/1 364/1 +f 374/1 375/1 394/1 +f 388/1 348/1 393/1 +f 351/1 348/1 388/1 +f 316/1 389/1 314/1 +f 317/1 384/1 315/1 +f 381/1 373/1 362/1 +f 379/1 373/1 381/1 +f 390/1 377/1 395/1 +f 387/1 374/1 394/1 +f 395/1 377/1 384/1 +f 360/1 386/1 396/1 +f 344/1 385/1 393/1 +f 395/1 384/1 397/1 +f 364/1 355/1 398/1 +f 393/1 385/1 379/1 +f 369/1 388/1 399/1 +f 375/1 360/1 396/1 +f 397/1 384/1 317/1 +f 398/1 355/1 376/1 +f 379/1 381/1 372/1 +f 393/1 379/1 372/1 +f 372/1 380/1 400/1 +f 371/1 387/1 401/1 +f 398/1 376/1 392/1 +f 400/1 380/1 367/1 +f 383/1 371/1 401/1 +f 386/1 359/1 402/1 +f 402/1 369/1 399/1 +f 359/1 369/1 402/1 +f 403/1 378/1 390/1 +f 393/1 372/1 400/1 +f 400/1 367/1 391/1 +f 404/1 383/1 401/1 +f 389/1 383/1 404/1 +f 405/1 378/1 403/1 +f 392/1 378/1 405/1 +f 400/1 391/1 406/1 +f 396/1 386/1 402/1 +f 406/1 391/1 364/1 +f 406/1 364/1 398/1 +f 399/1 393/1 400/1 +f 388/1 393/1 399/1 +f 403/1 390/1 395/1 +f 314/1 389/1 404/1 +f 398/1 392/1 405/1 +f 394/1 375/1 396/1 +f 399/1 400/1 406/1 +f 407/1 273/1 280/1 +f 280/1 272/1 408/1 +f 408/1 272/1 288/1 +f 409/1 280/1 408/1 +f 407/1 280/1 410/1 +f 410/1 280/1 411/1 +f 411/1 280/1 409/1 +f 290/1 273/1 407/1 +f 407/1 410/1 412/1 +f 410/1 411/1 413/1 +f 412/1 410/1 414/1 +f 413/1 411/1 415/1 +f 411/1 409/1 416/1 +f 417/1 410/1 413/1 +f 408/1 288/1 311/1 +f 312/1 290/1 407/1 +f 415/1 411/1 416/1 +f 312/1 407/1 412/1 +f 409/1 408/1 311/1 +f 312/1 412/1 418/1 +f 417/1 413/1 419/1 +f 419/1 413/1 420/1 +f 414/1 410/1 417/1 +f 421/1 409/1 311/1 +f 414/1 417/1 422/1 +f 416/1 409/1 421/1 +f 418/1 412/1 414/1 +f 423/1 413/1 415/1 +f 311/1 300/1 313/1 +f 418/1 313/1 312/1 +f 418/1 414/1 424/1 +f 419/1 420/1 425/1 +f 425/1 420/1 426/1 +f 427/1 416/1 421/1 +f 428/1 413/1 423/1 +f 415/1 416/1 427/1 +f 420/1 413/1 428/1 +f 424/1 414/1 422/1 +f 423/1 415/1 427/1 +f 426/1 420/1 429/1 +f 430/1 422/1 417/1 +f 424/1 422/1 431/1 +f 432/1 311/1 313/1 +f 421/1 311/1 432/1 +f 432/1 418/1 424/1 +f 417/1 419/1 433/1 +f 434/1 419/1 425/1 +f 429/1 420/1 428/1 +f 432/1 313/1 418/1 +f 430/1 417/1 433/1 +f 431/1 422/1 430/1 +f 425/1 426/1 435/1 +f 433/1 419/1 434/1 +f 423/1 427/1 436/1 +f 432/1 424/1 431/1 +f 427/1 421/1 436/1 +f 437/1 425/1 435/1 +f 436/1 421/1 432/1 +f 435/1 426/1 429/1 +f 436/1 432/1 431/1 +f 438/1 425/1 437/1 +f 439/1 431/1 430/1 +f 440/1 433/1 434/1 +f 434/1 425/1 441/1 +f 429/1 428/1 442/1 +f 441/1 425/1 443/1 +f 443/1 425/1 438/1 +f 428/1 423/1 442/1 +f 442/1 423/1 436/1 +f 437/1 435/1 444/1 +f 445/1 429/1 442/1 +f 436/1 431/1 439/1 +f 446/1 434/1 441/1 +f 440/1 434/1 446/1 +f 439/1 430/1 433/1 +f 447/1 437/1 444/1 +f 435/1 429/1 445/1 +f 442/1 436/1 439/1 +f 446/1 441/1 448/1 +f 449/1 443/1 438/1 +f 438/1 437/1 447/1 +f 441/1 443/1 450/1 +f 444/1 435/1 445/1 +f 450/1 443/1 451/1 +f 451/1 443/1 449/1 +f 439/1 433/1 440/1 +f 452/1 438/1 447/1 +f 448/1 441/1 453/1 +f 453/1 441/1 450/1 +f 449/1 438/1 452/1 +f 445/1 442/1 454/1 +f 454/1 439/1 440/1 +f 455/1 440/1 446/1 +f 442/1 439/1 454/1 +f 444/1 445/1 456/1 +f 447/1 444/1 457/1 +f 458/1 450/1 451/1 +f 455/1 446/1 448/1 +f 453/1 450/1 459/1 +f 457/1 444/1 456/1 +f 456/1 445/1 454/1 +f 459/1 450/1 458/1 +f 455/1 448/1 460/1 +f 461/1 447/1 457/1 +f 462/1 459/1 458/1 +f 463/1 449/1 452/1 +f 454/1 440/1 455/1 +f 451/1 449/1 463/1 +f 452/1 447/1 461/1 +f 464/1 458/1 451/1 +f 456/1 454/1 455/1 +f 448/1 453/1 465/1 +f 466/1 452/1 461/1 +f 456/1 455/1 460/1 +f 467/1 462/1 458/1 +f 451/1 463/1 468/1 +f 460/1 448/1 465/1 +f 463/1 452/1 466/1 +f 465/1 453/1 469/1 +f 469/1 453/1 459/1 +f 464/1 451/1 468/1 +f 470/1 456/1 460/1 +f 471/1 458/1 464/1 +f 467/1 458/1 472/1 +f 457/1 456/1 470/1 +f 472/1 458/1 471/1 +f 470/1 460/1 465/1 +f 473/1 464/1 468/1 +f 461/1 457/1 470/1 +f 468/1 463/1 474/1 +f 475/1 464/1 473/1 +f 476/1 459/1 462/1 +f 469/1 459/1 476/1 +f 471/1 464/1 475/1 +f 462/1 467/1 477/1 +f 478/1 468/1 474/1 +f 474/1 463/1 466/1 +f 472/1 471/1 479/1 +f 470/1 465/1 469/1 +f 466/1 461/1 480/1 +f 480/1 461/1 470/1 +f 467/1 472/1 481/1 +f 482/1 471/1 483/1 +f 483/1 471/1 475/1 +f 480/1 470/1 469/1 +f 473/1 468/1 478/1 +f 484/1 472/1 479/1 +f 479/1 471/1 482/1 +f 474/1 466/1 480/1 +f 476/1 462/1 477/1 +f 480/1 469/1 476/1 +f 481/1 472/1 484/1 +f 477/1 467/1 481/1 +f 484/1 479/1 485/1 +f 482/1 483/1 486/1 +f 487/1 479/1 482/1 +f 488/1 484/1 485/1 +f 473/1 478/1 489/1 +f 478/1 474/1 480/1 +f 490/1 475/1 473/1 +f 485/1 479/1 487/1 +f 491/1 477/1 481/1 +f 483/1 475/1 490/1 +f 489/1 478/1 480/1 +f 492/1 481/1 484/1 +f 480/1 476/1 477/1 +f 493/1 488/1 485/1 +f 494/1 480/1 477/1 +f 487/1 482/1 486/1 +f 490/1 473/1 489/1 +f 491/1 481/1 492/1 +f 492/1 484/1 488/1 +f 485/1 487/1 495/1 +f 486/1 483/1 490/1 +f 494/1 489/1 480/1 +f 493/1 485/1 496/1 +f 497/1 485/1 495/1 +f 494/1 477/1 491/1 +f 496/1 485/1 497/1 +f 498/1 491/1 492/1 +f 499/1 489/1 494/1 +f 500/1 493/1 496/1 +f 490/1 489/1 499/1 +f 494/1 491/1 498/1 +f 492/1 488/1 501/1 +f 502/1 493/1 500/1 +f 486/1 490/1 499/1 +f 503/1 487/1 486/1 +f 504/1 496/1 505/1 +f 499/1 494/1 498/1 +f 498/1 492/1 501/1 +f 501/1 488/1 506/1 +f 505/1 496/1 497/1 +f 503/1 486/1 499/1 +f 507/1 497/1 495/1 +f 506/1 488/1 493/1 +f 508/1 496/1 504/1 +f 509/1 487/1 503/1 +f 500/1 496/1 508/1 +f 495/1 487/1 509/1 +f 505/1 497/1 507/1 +f 506/1 493/1 502/1 +f 499/1 498/1 501/1 +f 502/1 500/1 510/1 +f 503/1 499/1 501/1 +f 508/1 504/1 511/1 +f 511/1 504/1 512/1 +f 510/1 500/1 508/1 +f 513/1 495/1 509/1 +f 510/1 508/1 514/1 +f 501/1 506/1 515/1 +f 507/1 495/1 513/1 +f 516/1 504/1 505/1 +f 503/1 501/1 515/1 +f 515/1 506/1 502/1 +f 502/1 510/1 517/1 +f 511/1 512/1 518/1 +f 518/1 512/1 519/1 +f 520/1 507/1 513/1 +f 509/1 503/1 515/1 +f 521/1 504/1 516/1 +f 505/1 507/1 520/1 +f 512/1 504/1 521/1 +f 517/1 510/1 514/1 +f 516/1 505/1 520/1 +f 519/1 512/1 521/1 +f 522/1 514/1 508/1 +f 517/1 514/1 523/1 +f 524/1 509/1 515/1 +f 524/1 515/1 502/1 +f 524/1 502/1 517/1 +f 508/1 511/1 525/1 +f 526/1 511/1 518/1 +f 522/1 508/1 525/1 +f 519/1 521/1 527/1 +f 523/1 514/1 522/1 +f 518/1 519/1 528/1 +f 525/1 511/1 526/1 +f 516/1 520/1 529/1 +f 521/1 516/1 530/1 +f 513/1 509/1 524/1 +f 524/1 517/1 523/1 +f 520/1 513/1 529/1 +f 531/1 518/1 528/1 +f 529/1 513/1 524/1 +f 528/1 519/1 527/1 +f 529/1 524/1 523/1 +f 532/1 518/1 531/1 +f 533/1 523/1 522/1 +f 534/1 525/1 526/1 +f 526/1 518/1 535/1 +f 536/1 521/1 530/1 +f 535/1 518/1 537/1 +f 537/1 518/1 532/1 +f 530/1 516/1 529/1 +f 531/1 528/1 538/1 +f 527/1 521/1 536/1 +f 529/1 523/1 533/1 +f 539/1 526/1 535/1 +f 534/1 526/1 539/1 +f 533/1 522/1 525/1 +f 540/1 531/1 538/1 +f 528/1 527/1 541/1 +f 530/1 529/1 533/1 +f 539/1 535/1 542/1 +f 543/1 537/1 532/1 +f 532/1 531/1 540/1 +f 535/1 537/1 544/1 +f 545/1 525/1 534/1 +f 544/1 537/1 546/1 +f 546/1 537/1 543/1 +f 541/1 527/1 536/1 +f 538/1 528/1 541/1 +f 533/1 525/1 545/1 +f 536/1 530/1 533/1 +f 547/1 532/1 540/1 +f 548/1 544/1 546/1 +f 542/1 535/1 549/1 +f 549/1 535/1 544/1 +f 543/1 532/1 547/1 +f 545/1 534/1 550/1 +f 550/1 534/1 539/1 +f 536/1 533/1 545/1 +f 550/1 539/1 542/1 +f 546/1 543/1 551/1 +f 538/1 541/1 552/1 +f 550/1 542/1 553/1 +f 551/1 543/1 547/1 +f 554/1 548/1 546/1 +f 549/1 544/1 555/1 +f 540/1 538/1 552/1 +f 541/1 536/1 545/1 +f 548/1 554/1 556/1 +f 555/1 544/1 548/1 +f 541/1 545/1 550/1 +f 542/1 549/1 557/1 +f 558/1 546/1 551/1 +f 552/1 541/1 550/1 +f 554/1 546/1 558/1 +f 555/1 548/1 559/1 +f 560/1 540/1 552/1 +f 553/1 542/1 557/1 +f 547/1 540/1 560/1 +f 551/1 547/1 561/1 +f 557/1 549/1 562/1 +f 562/1 549/1 555/1 +f 559/1 548/1 556/1 +f 563/1 550/1 553/1 +f 552/1 550/1 563/1 +f 556/1 554/1 564/1 +f 563/1 553/1 557/1 +f 561/1 547/1 560/1 +f 565/1 551/1 561/1 +f 560/1 552/1 563/1 +f 566/1 556/1 564/1 +f 565/1 561/1 560/1 +f 564/1 554/1 567/1 +f 558/1 551/1 568/1 +f 568/1 551/1 565/1 +f 567/1 554/1 558/1 +f 562/1 555/1 569/1 +f 569/1 555/1 559/1 +f 570/1 556/1 566/1 +f 559/1 556/1 571/1 +f 566/1 564/1 572/1 +f 571/1 556/1 570/1 +f 563/1 557/1 562/1 +f 565/1 560/1 563/1 +f 573/1 563/1 562/1 +f 572/1 564/1 574/1 +f 565/1 563/1 573/1 +f 571/1 570/1 575/1 +f 576/1 558/1 568/1 +f 574/1 564/1 577/1 +f 569/1 559/1 571/1 +f 573/1 562/1 569/1 +f 564/1 567/1 578/1 +f 567/1 558/1 576/1 +f 577/1 564/1 579/1 +f 579/1 564/1 578/1 +f 566/1 572/1 580/1 +f 581/1 574/1 577/1 +f 580/1 572/1 574/1 +f 568/1 565/1 573/1 +f 582/1 567/1 576/1 +f 582/1 576/1 568/1 +f 570/1 566/1 583/1 +f 578/1 567/1 582/1 +f 584/1 574/1 581/1 +f 583/1 566/1 580/1 +f 573/1 569/1 571/1 +f 575/1 570/1 585/1 +f 586/1 568/1 573/1 +f 587/1 580/1 574/1 +f 586/1 573/1 571/1 +f 581/1 577/1 588/1 +f 588/1 577/1 579/1 +f 582/1 568/1 586/1 +f 585/1 570/1 583/1 +f 583/1 580/1 589/1 +f 587/1 574/1 590/1 +f 590/1 574/1 584/1 +f 589/1 580/1 587/1 +f 591/1 571/1 575/1 +f 586/1 571/1 591/1 +f 591/1 575/1 585/1 +f 584/1 581/1 592/1 +f 592/1 581/1 588/1 +f 593/1 587/1 590/1 +f 582/1 586/1 591/1 +f 585/1 583/1 594/1 +f 583/1 589/1 594/1 +f 578/1 582/1 591/1 +f 595/1 587/1 593/1 +f 579/1 578/1 596/1 +f 594/1 589/1 597/1 +f 598/1 590/1 584/1 +f 596/1 578/1 591/1 +f 591/1 585/1 594/1 +f 597/1 589/1 587/1 +f 599/1 590/1 598/1 +f 593/1 590/1 599/1 +f 598/1 584/1 600/1 +f 600/1 584/1 592/1 +f 597/1 587/1 595/1 +f 601/1 592/1 588/1 +f 588/1 579/1 602/1 +f 602/1 579/1 596/1 +f 597/1 595/1 603/1 +f 595/1 593/1 604/1 +f 596/1 591/1 594/1 +f 599/1 598/1 605/1 +f 605/1 598/1 606/1 +f 604/1 593/1 599/1 +f 606/1 598/1 607/1 +f 604/1 599/1 608/1 +f 601/1 588/1 602/1 +f 607/1 598/1 600/1 +f 603/1 595/1 604/1 +f 596/1 594/1 597/1 +f 603/1 604/1 609/1 +f 600/1 592/1 610/1 +f 602/1 596/1 597/1 +f 605/1 606/1 611/1 +f 611/1 606/1 612/1 +f 592/1 601/1 610/1 +f 606/1 607/1 613/1 +f 609/1 604/1 608/1 +f 614/1 600/1 610/1 +f 612/1 606/1 615/1 +f 610/1 601/1 616/1 +f 602/1 597/1 603/1 +f 617/1 608/1 599/1 +f 609/1 608/1 618/1 +f 616/1 601/1 602/1 +f 607/1 600/1 614/1 +f 599/1 605/1 619/1 +f 619/1 605/1 611/1 +f 615/1 606/1 613/1 +f 616/1 602/1 603/1 +f 617/1 599/1 619/1 +f 620/1 603/1 609/1 +f 621/1 619/1 611/1 +f 618/1 608/1 617/1 +f 611/1 612/1 622/1 +f 616/1 603/1 620/1 +f 620/1 609/1 618/1 +f 623/1 611/1 622/1 +f 620/1 610/1 616/1 +f 622/1 612/1 615/1 +f 624/1 611/1 623/1 +f 621/1 611/1 625/1 +f 613/1 607/1 614/1 +f 614/1 610/1 620/1 +f 615/1 613/1 626/1 +f 625/1 611/1 627/1 +f 627/1 611/1 624/1 +f 613/1 614/1 626/1 +f 623/1 622/1 628/1 +f 629/1 619/1 621/1 +f 618/1 617/1 630/1 +f 617/1 619/1 630/1 +f 631/1 615/1 626/1 +f 630/1 619/1 629/1 +f 632/1 614/1 620/1 +f 633/1 621/1 625/1 +f 632/1 620/1 618/1 +f 629/1 621/1 633/1 +f 626/1 614/1 632/1 +f 634/1 623/1 628/1 +f 632/1 618/1 630/1 +f 622/1 615/1 631/1 +f 633/1 625/1 635/1 +f 636/1 627/1 624/1 +f 624/1 623/1 634/1 +f 625/1 627/1 637/1 +f 628/1 622/1 631/1 +f 637/1 627/1 638/1 +f 638/1 627/1 636/1 +f 632/1 630/1 629/1 +f 639/1 624/1 634/1 +f 635/1 625/1 640/1 +f 640/1 625/1 637/1 +f 636/1 624/1 639/1 +f 631/1 626/1 641/1 +f 641/1 632/1 629/1 +f 642/1 629/1 633/1 +f 626/1 632/1 641/1 +f 628/1 631/1 643/1 +f 634/1 628/1 644/1 +f 645/1 636/1 639/1 +f 646/1 637/1 638/1 +f 642/1 633/1 635/1 +f 640/1 637/1 647/1 +f 643/1 631/1 641/1 +f 647/1 637/1 646/1 +f 642/1 635/1 648/1 +f 639/1 634/1 644/1 +f 649/1 647/1 646/1 +f 641/1 629/1 642/1 +f 638/1 636/1 645/1 +f 644/1 628/1 643/1 +f 650/1 638/1 645/1 +f 651/1 646/1 638/1 +f 652/1 641/1 642/1 +f 643/1 641/1 652/1 +f 635/1 640/1 653/1 +f 652/1 642/1 648/1 +f 654/1 649/1 646/1 +f 655/1 639/1 644/1 +f 648/1 635/1 653/1 +f 644/1 643/1 652/1 +f 645/1 639/1 655/1 +f 653/1 640/1 656/1 +f 656/1 640/1 647/1 +f 651/1 638/1 657/1 +f 657/1 638/1 650/1 +f 658/1 646/1 651/1 +f 654/1 646/1 659/1 +f 659/1 646/1 658/1 +f 655/1 644/1 652/1 +f 650/1 645/1 660/1 +f 652/1 648/1 653/1 +f 661/1 651/1 657/1 +f 656/1 647/1 662/1 +f 662/1 647/1 649/1 +f 663/1 655/1 652/1 +f 663/1 652/1 653/1 +f 658/1 651/1 661/1 +f 649/1 654/1 664/1 +f 665/1 658/1 661/1 +f 645/1 655/1 660/1 +f 659/1 658/1 666/1 +f 663/1 653/1 656/1 +f 654/1 659/1 667/1 +f 668/1 658/1 665/1 +f 660/1 655/1 663/1 +f 667/1 659/1 666/1 +f 666/1 658/1 668/1 +f 662/1 649/1 664/1 +f 669/1 650/1 660/1 +f 663/1 656/1 662/1 +f 664/1 654/1 670/1 +f 670/1 654/1 667/1 +f 657/1 650/1 669/1 +f 667/1 666/1 671/1 +f 668/1 665/1 672/1 +f 673/1 666/1 668/1 +f 674/1 667/1 671/1 +f 665/1 661/1 675/1 +f 671/1 666/1 673/1 +f 661/1 657/1 676/1 +f 660/1 663/1 662/1 +f 670/1 667/1 677/1 +f 676/1 657/1 669/1 +f 660/1 662/1 664/1 +f 678/1 674/1 671/1 +f 669/1 660/1 664/1 +f 673/1 668/1 679/1 +f 679/1 668/1 672/1 +f 672/1 665/1 675/1 +f 675/1 661/1 676/1 +f 677/1 667/1 674/1 +f 671/1 673/1 680/1 +f 678/1 671/1 681/1 +f 682/1 671/1 680/1 +f 681/1 671/1 682/1 +f 669/1 664/1 683/1 +f 683/1 664/1 670/1 +f 680/1 673/1 679/1 +f 684/1 678/1 681/1 +f 670/1 677/1 685/1 +f 676/1 669/1 683/1 +f 677/1 674/1 685/1 +f 679/1 672/1 686/1 +f 687/1 678/1 684/1 +f 683/1 675/1 676/1 +f 672/1 675/1 686/1 +f 688/1 681/1 689/1 +f 685/1 674/1 690/1 +f 689/1 681/1 682/1 +f 686/1 675/1 683/1 +f 691/1 682/1 680/1 +f 683/1 670/1 685/1 +f 690/1 674/1 678/1 +f 692/1 681/1 688/1 +f 684/1 681/1 692/1 +f 689/1 682/1 691/1 +f 690/1 678/1 687/1 +f 679/1 686/1 693/1 +f 690/1 687/1 694/1 +f 687/1 684/1 695/1 +f 686/1 683/1 685/1 +f 692/1 688/1 696/1 +f 696/1 688/1 697/1 +f 695/1 684/1 692/1 +f 695/1 692/1 698/1 +f 699/1 679/1 693/1 +f 694/1 687/1 695/1 +f 680/1 679/1 699/1 +f 700/1 688/1 689/1 +f 686/1 685/1 690/1 +f 694/1 695/1 701/1 +f 693/1 686/1 690/1 +f 696/1 697/1 702/1 +f 698/1 692/1 696/1 +f 691/1 680/1 699/1 +f 703/1 696/1 702/1 +f 689/1 691/1 704/1 +f 704/1 691/1 699/1 +f 697/1 688/1 700/1 +f 701/1 695/1 698/1 +f 705/1 689/1 704/1 +f 702/1 697/1 706/1 +f 693/1 690/1 694/1 +f 707/1 698/1 696/1 +f 701/1 698/1 708/1 +f 696/1 703/1 709/1 +f 699/1 693/1 704/1 +f 706/1 697/1 700/1 +f 704/1 693/1 694/1 +f 710/1 703/1 702/1 +f 700/1 689/1 705/1 +f 711/1 703/1 710/1 +f 707/1 696/1 709/1 +f 712/1 694/1 701/1 +f 702/1 706/1 713/1 +f 710/1 702/1 714/1 +f 714/1 702/1 715/1 +f 708/1 698/1 707/1 +f 709/1 703/1 711/1 +f 716/1 700/1 705/1 +f 704/1 694/1 712/1 +f 712/1 701/1 708/1 +f 717/1 711/1 710/1 +f 715/1 702/1 713/1 +f 718/1 709/1 711/1 +f 705/1 704/1 712/1 +f 706/1 700/1 716/1 +f 710/1 714/1 719/1 +f 720/1 715/1 713/1 +f 708/1 707/1 721/1 +f 707/1 709/1 721/1 +f 713/1 706/1 722/1 +f 722/1 706/1 716/1 +f 716/1 705/1 723/1 +f 721/1 709/1 718/1 +f 723/1 705/1 712/1 +f 721/1 712/1 708/1 +f 714/1 715/1 720/1 +f 717/1 710/1 719/1 +f 724/1 711/1 717/1 +f 718/1 711/1 724/1 +f 723/1 712/1 721/1 +f 719/1 714/1 725/1 +f 724/1 717/1 726/1 +f 727/1 713/1 722/1 +f 728/1 717/1 719/1 +f 725/1 714/1 720/1 +f 728/1 719/1 729/1 +f 730/1 719/1 725/1 +f 720/1 713/1 727/1 +f 729/1 719/1 730/1 +f 716/1 723/1 731/1 +f 732/1 717/1 728/1 +f 726/1 717/1 732/1 +f 730/1 725/1 733/1 +f 722/1 716/1 731/1 +f 731/1 721/1 718/1 +f 734/1 718/1 724/1 +f 723/1 721/1 731/1 +f 727/1 722/1 735/1 +f 736/1 720/1 727/1 +f 734/1 724/1 726/1 +f 737/1 728/1 729/1 +f 735/1 722/1 731/1 +f 734/1 726/1 738/1 +f 725/1 720/1 736/1 +f 739/1 730/1 733/1 +f 731/1 718/1 734/1 +f 732/1 728/1 740/1 +f 729/1 730/1 739/1 +f 733/1 725/1 736/1 +f 736/1 727/1 735/1 +f 737/1 729/1 741/1 +f 740/1 728/1 737/1 +f 742/1 731/1 734/1 +f 741/1 729/1 743/1 +f 735/1 731/1 742/1 +f 726/1 732/1 744/1 +f 745/1 733/1 736/1 +f 742/1 734/1 738/1 +f 746/1 729/1 739/1 +f 740/1 737/1 747/1 +f 743/1 729/1 746/1 +f 738/1 726/1 744/1 +f 739/1 733/1 745/1 +f 736/1 735/1 748/1 +f 745/1 736/1 749/1 +f 750/1 732/1 740/1 +f 744/1 732/1 750/1 +f 747/1 737/1 741/1 +f 751/1 743/1 746/1 +f 752/1 743/1 751/1 +f 741/1 743/1 752/1 +f 742/1 738/1 744/1 +f 753/1 739/1 745/1 +f 754/1 751/1 746/1 +f 748/1 735/1 742/1 +f 755/1 741/1 752/1 +f 749/1 736/1 748/1 +f 746/1 739/1 756/1 +f 756/1 739/1 753/1 +f 757/1 751/1 754/1 +f 748/1 742/1 744/1 +f 758/1 740/1 747/1 +f 750/1 740/1 758/1 +f 759/1 741/1 755/1 +f 752/1 751/1 757/1 +f 747/1 741/1 760/1 +f 753/1 745/1 749/1 +f 755/1 752/1 761/1 +f 760/1 741/1 759/1 +f 748/1 744/1 750/1 +f 762/1 752/1 763/1 +f 763/1 752/1 757/1 +f 764/1 748/1 750/1 +f 760/1 759/1 765/1 +f 754/1 746/1 756/1 +f 766/1 763/1 757/1 +f 767/1 755/1 761/1 +f 761/1 752/1 762/1 +f 758/1 747/1 760/1 +f 764/1 750/1 758/1 +f 749/1 748/1 764/1 +f 753/1 749/1 764/1 +f 767/1 761/1 768/1 +f 762/1 763/1 769/1 +f 769/1 763/1 766/1 +f 770/1 767/1 768/1 +f 756/1 753/1 764/1 +f 771/1 757/1 754/1 +f 771/1 754/1 756/1 +f 759/1 755/1 772/1 +f 766/1 757/1 771/1 +f 772/1 755/1 767/1 +f 764/1 758/1 760/1 +f 765/1 759/1 773/1 +f 774/1 756/1 764/1 +f 775/1 770/1 768/1 +f 774/1 764/1 760/1 +f 761/1 762/1 776/1 +f 776/1 762/1 769/1 +f 771/1 756/1 774/1 +f 773/1 759/1 772/1 +f 772/1 767/1 770/1 +f 768/1 761/1 777/1 +f 775/1 768/1 778/1 +f 779/1 768/1 777/1 +f 780/1 760/1 765/1 +f 778/1 768/1 779/1 +f 774/1 760/1 780/1 +f 780/1 765/1 773/1 +f 777/1 761/1 776/1 +f 781/1 775/1 778/1 +f 771/1 774/1 780/1 +f 773/1 772/1 782/1 +f 772/1 770/1 782/1 +f 766/1 771/1 780/1 +f 783/1 775/1 781/1 +f 769/1 766/1 784/1 +f 785/1 778/1 786/1 +f 782/1 770/1 787/1 +f 786/1 778/1 779/1 +f 784/1 766/1 780/1 +f 788/1 779/1 777/1 +f 780/1 773/1 782/1 +f 787/1 770/1 775/1 +f 789/1 778/1 785/1 +f 781/1 778/1 789/1 +f 786/1 779/1 788/1 +f 787/1 775/1 783/1 +f 776/1 769/1 790/1 +f 790/1 769/1 784/1 +f 787/1 783/1 791/1 +f 783/1 781/1 792/1 +f 784/1 780/1 782/1 +f 789/1 785/1 793/1 +f 793/1 785/1 794/1 +f 792/1 781/1 789/1 +f 792/1 789/1 795/1 +f 796/1 776/1 790/1 +f 791/1 783/1 792/1 +f 777/1 776/1 796/1 +f 797/1 785/1 786/1 +f 784/1 782/1 787/1 +f 791/1 792/1 798/1 +f 790/1 784/1 787/1 +f 793/1 794/1 799/1 +f 795/1 789/1 793/1 +f 788/1 777/1 796/1 +f 800/1 793/1 799/1 +f 786/1 788/1 801/1 +f 801/1 788/1 796/1 +f 794/1 785/1 797/1 +f 798/1 792/1 795/1 +f 802/1 786/1 801/1 +f 799/1 794/1 803/1 +f 790/1 787/1 791/1 +f 804/1 795/1 793/1 +f 798/1 795/1 805/1 +f 793/1 800/1 806/1 +f 796/1 790/1 801/1 +f 803/1 794/1 797/1 +f 801/1 790/1 791/1 +f 807/1 800/1 799/1 +f 797/1 786/1 802/1 +f 808/1 800/1 807/1 +f 804/1 793/1 806/1 +f 809/1 791/1 798/1 +f 799/1 803/1 810/1 +f 807/1 799/1 811/1 +f 811/1 799/1 812/1 +f 805/1 795/1 804/1 +f 806/1 800/1 808/1 +f 813/1 797/1 802/1 +f 801/1 791/1 809/1 +f 809/1 798/1 805/1 +f 814/1 808/1 807/1 +f 812/1 799/1 810/1 +f 815/1 806/1 808/1 +f 802/1 801/1 809/1 +f 803/1 797/1 813/1 +f 807/1 811/1 816/1 +f 817/1 812/1 810/1 +f 805/1 804/1 818/1 +f 804/1 806/1 818/1 +f 810/1 803/1 819/1 +f 819/1 803/1 813/1 +f 813/1 802/1 820/1 +f 818/1 806/1 815/1 +f 820/1 802/1 809/1 +f 818/1 809/1 805/1 +f 811/1 812/1 817/1 +f 814/1 807/1 816/1 +f 815/1 808/1 821/1 +f 821/1 808/1 814/1 +f 822/1 811/1 817/1 +f 820/1 809/1 818/1 +f 816/1 811/1 822/1 +f 821/1 814/1 823/1 +f 817/1 810/1 819/1 +f 824/1 814/1 816/1 +f 824/1 816/1 825/1 +f 826/1 816/1 822/1 +f 825/1 816/1 826/1 +f 813/1 820/1 827/1 +f 823/1 814/1 828/1 +f 828/1 814/1 824/1 +f 826/1 822/1 829/1 +f 819/1 813/1 827/1 +f 827/1 818/1 815/1 +f 830/1 825/1 826/1 +f 831/1 815/1 821/1 +f 820/1 818/1 827/1 +f 817/1 819/1 832/1 +f 831/1 821/1 823/1 +f 833/1 824/1 825/1 +f 832/1 819/1 827/1 +f 831/1 823/1 834/1 +f 830/1 826/1 829/1 +f 827/1 815/1 831/1 +f 828/1 824/1 835/1 +f 822/1 817/1 836/1 +f 836/1 817/1 832/1 +f 833/1 825/1 837/1 +f 835/1 824/1 833/1 +f 832/1 827/1 831/1 +f 837/1 825/1 838/1 +f 832/1 831/1 834/1 +f 835/1 833/1 839/1 +f 840/1 822/1 836/1 +f 825/1 830/1 841/1 +f 834/1 823/1 828/1 +f 829/1 822/1 840/1 +f 830/1 829/1 842/1 +f 843/1 828/1 835/1 +f 839/1 833/1 837/1 +f 838/1 825/1 841/1 +f 844/1 832/1 834/1 +f 837/1 838/1 845/1 +f 845/1 838/1 846/1 +f 844/1 834/1 828/1 +f 842/1 829/1 840/1 +f 847/1 830/1 842/1 +f 848/1 838/1 841/1 +f 840/1 836/1 832/1 +f 840/1 832/1 844/1 +f 849/1 837/1 845/1 +f 847/1 842/1 840/1 +f 841/1 830/1 847/1 +f 846/1 838/1 848/1 +f 850/1 835/1 839/1 +f 843/1 835/1 850/1 +f 844/1 828/1 843/1 +f 851/1 837/1 849/1 +f 839/1 837/1 852/1 +f 847/1 840/1 844/1 +f 852/1 837/1 851/1 +f 853/1 845/1 846/1 +f 850/1 839/1 852/1 +f 844/1 843/1 854/1 +f 855/1 841/1 847/1 +f 854/1 843/1 850/1 +f 851/1 849/1 856/1 +f 847/1 844/1 854/1 +f 857/1 845/1 853/1 +f 319/1 845/1 320/1 +f 319/1 849/1 845/1 +f 321/1 849/1 319/1 +f 320/1 845/1 857/1 +f 850/1 852/1 858/1 +f 848/1 841/1 855/1 +f 855/1 847/1 854/1 +f 853/1 846/1 848/1 +f 856/1 849/1 321/1 +f 859/1 851/1 856/1 +f 857/1 853/1 860/1 +f 859/1 852/1 851/1 +f 854/1 850/1 858/1 +f 858/1 852/1 859/1 +f 325/1 320/1 857/1 +f 853/1 848/1 861/1 +f 861/1 848/1 855/1 +f 855/1 854/1 858/1 +f 862/1 859/1 856/1 +f 863/1 857/1 860/1 +f 856/1 321/1 322/1 +f 864/1 858/1 859/1 +f 860/1 853/1 861/1 +f 862/1 856/1 352/1 +f 864/1 859/1 862/1 +f 855/1 858/1 864/1 +f 325/1 857/1 863/1 +f 861/1 855/1 864/1 +f 864/1 862/1 352/1 +f 352/1 856/1 322/1 +f 860/1 861/1 864/1 +f 863/1 860/1 864/1 +f 325/1 863/1 366/1 +f 382/1 863/1 864/1 +f 382/1 864/1 352/1 +f 366/1 863/1 382/1 +f 397/1 317/1 314/1 +f 404/1 397/1 314/1 +f 399/1 406/1 398/1 +f 399/1 398/1 402/1 +f 395/1 397/1 401/1 +f 401/1 397/1 404/1 +f 402/1 398/1 396/1 +f 396/1 398/1 405/1 +f 403/1 395/1 401/1 +f 387/1 403/1 401/1 +f 396/1 405/1 394/1 +f 394/1 403/1 387/1 +f 394/1 405/1 403/1 +f 218/1 242/1 238/1 +f 232/1 245/1 228/1 +f 231/1 232/1 228/1 +f 245/1 223/1 228/1 +f 228/1 223/1 224/1 +f 233/1 232/1 231/1 +f 238/1 233/1 231/1 +f 242/1 233/1 238/1 +f 224/1 222/1 225/1 +f 223/1 222/1 224/1 +f 236/1 225/1 222/1 +f 217/1 242/1 218/1 +f 865/1 866/1 867/1 +f 868/1 869/1 870/1 +f 871/1 872/1 873/1 +f 874/1 875/1 876/1 +f 877/1 878/1 879/1 +f 880/1 881/1 882/1 +f 883/1 884/1 885/1 +f 886/1 887/1 888/1 +f 889/1 890/1 891/1 +f 892/1 893/1 894/1 +f 895/1 896/1 897/1 +f 898/1 899/1 900/1 +f 901/1 902/1 903/1 +f 904/1 905/1 906/1 +f 907/1 908/1 909/1 +f 910/1 911/1 912/1 +f 913/1 914/1 915/1 +f 916/1 917/1 918/1 +f 919/1 920/1 921/1 +f 922/1 923/1 924/1 +f 925/1 926/1 927/1 +f 928/1 929/1 930/1 +f 931/1 932/1 933/1 +f 934/1 935/1 936/1 +f 937/1 938/1 939/1 +f 940/1 941/1 942/1 +f 943/1 944/1 945/1 +f 946/1 947/1 948/1 +f 949/1 950/1 951/1 +f 952/1 953/1 954/1 +f 955/1 956/1 957/1 +f 958/1 959/1 960/1 +f 961/1 962/1 963/1 +f 964/1 965/1 966/1 +f 967/1 968/1 969/1 +f 970/1 971/1 972/1 +f 973/1 974/1 975/1 +f 976/1 977/1 978/1 +f 979/1 980/1 981/1 +f 982/1 983/1 984/1 +f 985/1 986/1 987/1 +f 988/1 989/1 990/1 +f 991/1 992/1 993/1 +f 994/1 995/1 996/1 +f 997/1 998/1 999/1 +f 1000/1 1001/1 1002/1 +f 1003/1 1004/1 1005/1 +f 1006/1 1007/1 1008/1 +f 1009/1 1010/1 1011/1 +f 1012/1 1013/1 1014/1 +f 1015/1 1016/1 1017/1 +f 1018/1 1019/1 1020/1 +f 1021/1 1022/1 1023/1 +f 1024/1 1025/1 1026/1 +f 1027/1 1028/1 1029/1 +f 1030/1 1031/1 1032/1 +f 1033/1 1034/1 1035/1 +f 1036/1 1037/1 1038/1 +f 1039/1 1040/1 1041/1 +f 1042/1 1043/1 1044/1 +f 1044/1 1043/1 1045/1 +f 1046/1 1043/1 1042/1 +f 1047/1 1046/1 1042/1 +f 1044/1 1045/1 1048/1 +f 1048/1 1045/1 1049/1 +f 1050/1 1046/1 1051/1 +f 1051/1 1046/1 1047/1 +f 1052/1 1048/1 1049/1 +f 1052/1 1049/1 1053/1 +f 1054/1 1050/1 1055/1 +f 1055/1 1050/1 1051/1 +f 1056/1 1052/1 1053/1 +f 1057/1 1054/1 1055/1 +f 1057/1 1055/1 1058/1 +f 1059/1 1056/1 1053/1 +f 1060/1 1057/1 1058/1 +f 1061/1 1056/1 1059/1 +f 1060/1 1058/1 1062/1 +f 1063/1 1061/1 1059/1 +f 1060/1 1062/1 1064/1 +f 1065/1 1061/1 1063/1 +f 1064/1 1061/1 1065/1 +f 1060/1 1064/1 1065/1 +f 1066/1 1067/1 1068/1 +f 1069/1 1067/1 1066/1 +f 1069/1 1066/1 1070/1 +f 1066/1 1068/1 1071/1 +f 1072/1 1069/1 1070/1 +f 1072/1 1070/1 1073/1 +f 1071/1 1068/1 1074/1 +f 1071/1 1074/1 1075/1 +f 1076/1 1072/1 1073/1 +f 1076/1 1073/1 1077/1 +f 1075/1 1074/1 1078/1 +f 1075/1 1078/1 1079/1 +f 1080/1 1076/1 1077/1 +f 1080/1 1077/1 1081/1 +f 1079/1 1078/1 1082/1 +f 1083/1 1080/1 1081/1 +f 1079/1 1082/1 1084/1 +f 1083/1 1081/1 1085/1 +f 1084/1 1082/1 1086/1 +f 1087/1 1083/1 1085/1 +f 1087/1 1085/1 1088/1 +f 1084/1 1086/1 1089/1 +f 1089/1 1086/1 1090/1 +f 1091/1 1087/1 1088/1 +f 1091/1 1088/1 1092/1 +f 1089/1 1090/1 1093/1 +f 1093/1 1090/1 1094/1 +f 1095/1 1091/1 1092/1 +f 1095/1 1092/1 1096/1 +f 1093/1 1094/1 1096/1 +f 1096/1 1094/1 1095/1 +f 963/1 955/1 957/1 +f 1097/1 952/1 954/1 +f 957/1 952/1 1097/1 +f 969/1 961/1 963/1 +f 1097/1 946/1 948/1 +f 969/1 963/1 1067/1 +f 1067/1 963/1 957/1 +f 1067/1 957/1 1068/1 +f 1068/1 957/1 1097/1 +f 1098/1 967/1 969/1 +f 1098/1 969/1 1069/1 +f 1069/1 969/1 1067/1 +f 1068/1 1097/1 948/1 +f 973/1 975/1 978/1 +f 978/1 975/1 1069/1 +f 1069/1 975/1 1098/1 +f 948/1 940/1 942/1 +f 1068/1 948/1 942/1 +f 942/1 938/1 937/1 +f 976/1 978/1 984/1 +f 984/1 978/1 1069/1 +f 1068/1 942/1 1074/1 +f 1074/1 942/1 937/1 +f 937/1 932/1 931/1 +f 1072/1 984/1 1069/1 +f 982/1 984/1 986/1 +f 986/1 984/1 1072/1 +f 1074/1 937/1 931/1 +f 987/1 986/1 1099/1 +f 1099/1 986/1 1072/1 +f 1100/1 931/1 926/1 +f 1074/1 931/1 1078/1 +f 1078/1 931/1 1100/1 +f 1100/1 926/1 925/1 +f 992/1 1099/1 993/1 +f 993/1 1099/1 998/1 +f 998/1 1099/1 1076/1 +f 1076/1 1099/1 1072/1 +f 1101/1 1100/1 920/1 +f 1078/1 1100/1 1101/1 +f 1101/1 920/1 919/1 +f 999/1 998/1 1001/1 +f 1001/1 998/1 1076/1 +f 1078/1 1101/1 913/1 +f 913/1 1101/1 914/1 +f 1002/1 1001/1 1004/1 +f 1004/1 1001/1 1080/1 +f 1080/1 1001/1 1076/1 +f 907/1 913/1 908/1 +f 1078/1 913/1 1082/1 +f 1082/1 913/1 907/1 +f 1005/1 1004/1 1007/1 +f 1007/1 1004/1 1080/1 +f 904/1 907/1 905/1 +f 1082/1 907/1 904/1 +f 1007/1 1080/1 1083/1 +f 1007/1 1083/1 1010/1 +f 901/1 904/1 902/1 +f 1082/1 904/1 901/1 +f 1086/1 1082/1 901/1 +f 1008/1 1007/1 1010/1 +f 1010/1 1083/1 1013/1 +f 895/1 1086/1 901/1 +f 1019/1 1083/1 1087/1 +f 1016/1 1083/1 1019/1 +f 1013/1 1083/1 1016/1 +f 1011/1 1010/1 1013/1 +f 895/1 901/1 896/1 +f 889/1 1086/1 895/1 +f 1090/1 1086/1 889/1 +f 1019/1 1087/1 1022/1 +f 883/1 1090/1 889/1 +f 1028/1 1087/1 1091/1 +f 1022/1 1087/1 1028/1 +f 1094/1 1090/1 877/1 +f 877/1 1090/1 883/1 +f 889/1 895/1 890/1 +f 1028/1 1091/1 1034/1 +f 874/1 1094/1 877/1 +f 1034/1 1091/1 1037/1 +f 1014/1 1013/1 1016/1 +f 868/1 1094/1 871/1 +f 871/1 1094/1 874/1 +f 1040/1 1091/1 1095/1 +f 1037/1 1091/1 1040/1 +f 865/1 1094/1 868/1 +f 1095/1 1094/1 865/1 +f 1040/1 1095/1 1102/1 +f 1102/1 1095/1 865/1 +f 1017/1 1016/1 1019/1 +f 883/1 889/1 884/1 +f 1020/1 1019/1 1022/1 +f 877/1 883/1 878/1 +f 1023/1 1022/1 1028/1 +f 874/1 877/1 875/1 +f 1029/1 1028/1 1034/1 +f 871/1 874/1 872/1 +f 1035/1 1034/1 1037/1 +f 868/1 871/1 869/1 +f 1038/1 1037/1 1040/1 +f 865/1 868/1 866/1 +f 1041/1 1040/1 1102/1 +f 1102/1 865/1 1103/1 +f 1104/1 958/1 960/1 +f 1105/1 964/1 966/1 +f 960/1 964/1 1105/1 +f 1106/1 1107/1 1104/1 +f 951/1 1106/1 1104/1 +f 1108/1 970/1 972/1 +f 1105/1 970/1 1108/1 +f 1104/1 960/1 1109/1 +f 1110/1 960/1 1105/1 +f 1109/1 960/1 1110/1 +f 951/1 1104/1 1109/1 +f 1111/1 949/1 951/1 +f 1110/1 1105/1 1108/1 +f 1111/1 951/1 1109/1 +f 1112/1 1113/1 1114/1 +f 1108/1 1113/1 1112/1 +f 943/1 945/1 1111/1 +f 1110/1 1108/1 1112/1 +f 943/1 1111/1 1115/1 +f 1115/1 1111/1 1116/1 +f 1116/1 1111/1 1109/1 +f 1112/1 980/1 979/1 +f 1117/1 1118/1 1115/1 +f 1110/1 1112/1 979/1 +f 1117/1 1115/1 1119/1 +f 1119/1 1115/1 1116/1 +f 1120/1 1121/1 1122/1 +f 979/1 1121/1 1120/1 +f 934/1 936/1 1119/1 +f 1110/1 979/1 1120/1 +f 934/1 1119/1 1123/1 +f 1123/1 1119/1 1116/1 +f 1124/1 1120/1 989/1 +f 1125/1 1120/1 1124/1 +f 1110/1 1120/1 1125/1 +f 929/1 1123/1 930/1 +f 930/1 1123/1 1126/1 +f 1126/1 1123/1 1116/1 +f 1124/1 989/1 988/1 +f 1127/1 1124/1 995/1 +f 1125/1 1124/1 1127/1 +f 923/1 1126/1 924/1 +f 924/1 1126/1 1128/1 +f 1128/1 1126/1 1129/1 +f 1129/1 1126/1 1116/1 +f 1127/1 995/1 994/1 +f 1130/1 1127/1 1131/1 +f 1132/1 1127/1 1130/1 +f 1125/1 1127/1 1132/1 +f 917/1 1128/1 918/1 +f 918/1 1128/1 1133/1 +f 1133/1 1128/1 1129/1 +f 1130/1 1131/1 1134/1 +f 1135/1 1130/1 1136/1 +f 1132/1 1130/1 1135/1 +f 911/1 1133/1 912/1 +f 912/1 1133/1 1137/1 +f 1137/1 1133/1 1129/1 +f 1135/1 1136/1 1138/1 +f 1139/1 1135/1 1140/1 +f 1132/1 1135/1 1139/1 +f 1141/1 1137/1 1142/1 +f 1142/1 1137/1 1129/1 +f 1139/1 1140/1 1143/1 +f 1144/1 1142/1 1129/1 +f 1144/1 1129/1 1145/1 +f 1145/1 1129/1 1146/1 +f 1145/1 1146/1 1147/1 +f 1148/1 1139/1 1149/1 +f 1132/1 1139/1 1148/1 +f 1150/1 1144/1 1151/1 +f 1151/1 1144/1 1145/1 +f 1152/1 1132/1 1148/1 +f 1147/1 1146/1 1153/1 +f 1154/1 1152/1 1155/1 +f 1155/1 1152/1 1148/1 +f 1148/1 1149/1 1156/1 +f 1153/1 1146/1 1157/1 +f 1158/1 1152/1 1154/1 +f 1157/1 1146/1 1159/1 +f 1160/1 1152/1 1158/1 +f 1159/1 1146/1 1161/1 +f 1161/1 1146/1 1162/1 +f 1163/1 1152/1 1164/1 +f 1164/1 1152/1 1160/1 +f 1161/1 1162/1 1165/1 +f 1166/1 1163/1 1164/1 +f 1165/1 1162/1 1167/1 +f 1167/1 1162/1 1168/1 +f 1169/1 1163/1 1166/1 +f 1168/1 1162/1 1170/1 +f 1162/1 1163/1 1171/1 +f 1171/1 1163/1 1169/1 +f 1170/1 1162/1 1171/1 +f 1155/1 1148/1 1172/1 +f 899/1 1145/1 900/1 +f 900/1 1145/1 1147/1 +f 1155/1 1172/1 1173/1 +f 1154/1 1155/1 1174/1 +f 893/1 1147/1 894/1 +f 894/1 1147/1 1153/1 +f 1154/1 1174/1 1175/1 +f 1158/1 1154/1 1176/1 +f 887/1 1153/1 888/1 +f 888/1 1153/1 1157/1 +f 1158/1 1176/1 1177/1 +f 1160/1 1158/1 1178/1 +f 881/1 1157/1 882/1 +f 882/1 1157/1 1159/1 +f 1160/1 1178/1 1179/1 +f 1164/1 1160/1 1025/1 +f 1180/1 1159/1 1181/1 +f 1181/1 1159/1 1161/1 +f 1164/1 1025/1 1024/1 +f 1166/1 1164/1 1031/1 +f 1182/1 1161/1 1183/1 +f 1183/1 1161/1 1165/1 +f 1166/1 1031/1 1030/1 +f 1169/1 1166/1 1184/1 +f 1185/1 1165/1 1186/1 +f 1186/1 1165/1 1167/1 +f 1169/1 1184/1 1187/1 +f 1171/1 1169/1 1188/1 +f 1189/1 1167/1 1190/1 +f 1190/1 1167/1 1168/1 +f 1170/1 1171/1 1191/1 +f 1192/1 1171/1 1188/1 +f 1193/1 1168/1 1194/1 +f 1194/1 1168/1 1170/1 +f 1195/1 1170/1 1191/1 +f 1196/1 1109/1 1110/1 +f 1116/1 1109/1 1196/1 +f 1116/1 1196/1 1197/1 +f 1196/1 1110/1 1198/1 +f 1198/1 1110/1 1199/1 +f 1116/1 1197/1 1200/1 +f 1199/1 1110/1 1125/1 +f 1129/1 1116/1 1200/1 +f 1129/1 1200/1 1201/1 +f 1202/1 1125/1 1132/1 +f 1199/1 1125/1 1202/1 +f 1146/1 1129/1 1201/1 +f 1146/1 1201/1 1203/1 +f 1204/1 1132/1 1152/1 +f 1202/1 1132/1 1204/1 +f 1204/1 1152/1 1205/1 +f 1162/1 1146/1 1203/1 +f 1162/1 1203/1 1206/1 +f 1205/1 1152/1 1163/1 +f 1162/1 1206/1 1207/1 +f 1205/1 1163/1 1207/1 +f 1207/1 1163/1 1162/1 +f 1196/1 1208/1 1209/1 +f 1198/1 1208/1 1196/1 +f 1210/1 1208/1 1198/1 +f 1196/1 1209/1 1197/1 +f 1197/1 1209/1 1211/1 +f 1199/1 1210/1 1198/1 +f 1197/1 1211/1 1200/1 +f 1212/1 1210/1 1202/1 +f 1202/1 1210/1 1199/1 +f 1200/1 1211/1 1213/1 +f 1200/1 1213/1 1201/1 +f 1214/1 1201/1 1213/1 +f 1215/1 1212/1 1202/1 +f 1203/1 1201/1 1214/1 +f 1215/1 1202/1 1204/1 +f 1215/1 1204/1 1205/1 +f 1216/1 1203/1 1214/1 +f 1215/1 1205/1 1217/1 +f 1206/1 1203/1 1216/1 +f 1217/1 1205/1 1218/1 +f 1207/1 1206/1 1216/1 +f 1218/1 1205/1 1207/1 +f 1218/1 1207/1 1216/1 +f 1208/1 1219/1 1209/1 +f 1220/1 1219/1 1208/1 +f 1221/1 1209/1 1219/1 +f 1220/1 1208/1 1210/1 +f 1222/1 1220/1 1210/1 +f 1211/1 1209/1 1223/1 +f 1223/1 1209/1 1221/1 +f 1224/1 1222/1 1210/1 +f 1225/1 1211/1 1223/1 +f 1224/1 1210/1 1212/1 +f 1226/1 1224/1 1212/1 +f 1213/1 1211/1 1227/1 +f 1227/1 1211/1 1225/1 +f 1228/1 1213/1 1227/1 +f 1226/1 1212/1 1215/1 +f 1229/1 1226/1 1215/1 +f 1214/1 1213/1 1228/1 +f 1230/1 1214/1 1228/1 +f 1231/1 1229/1 1215/1 +f 1231/1 1215/1 1217/1 +f 1232/1 1231/1 1217/1 +f 1216/1 1214/1 1233/1 +f 1233/1 1214/1 1230/1 +f 1232/1 1217/1 1218/1 +f 1234/1 1232/1 1218/1 +f 1235/1 1216/1 1233/1 +f 1235/1 1234/1 1218/1 +f 1218/1 1216/1 1235/1 +f 1219/1 1042/1 1044/1 +f 1220/1 1042/1 1219/1 +f 1219/1 1044/1 1221/1 +f 1222/1 1042/1 1220/1 +f 1047/1 1042/1 1222/1 +f 1221/1 1044/1 1048/1 +f 1223/1 1221/1 1048/1 +f 1224/1 1047/1 1222/1 +f 1225/1 1223/1 1048/1 +f 1051/1 1047/1 1224/1 +f 1225/1 1048/1 1052/1 +f 1226/1 1051/1 1224/1 +f 1227/1 1225/1 1052/1 +f 1055/1 1051/1 1226/1 +f 1228/1 1227/1 1052/1 +f 1055/1 1226/1 1229/1 +f 1056/1 1228/1 1052/1 +f 1230/1 1228/1 1056/1 +f 1055/1 1229/1 1231/1 +f 1058/1 1055/1 1231/1 +f 1058/1 1231/1 1232/1 +f 1233/1 1230/1 1061/1 +f 1061/1 1230/1 1056/1 +f 1062/1 1058/1 1232/1 +f 1062/1 1232/1 1234/1 +f 1235/1 1233/1 1061/1 +f 1064/1 1235/1 1061/1 +f 1062/1 1234/1 1064/1 +f 1064/1 1234/1 1235/1 +f 1043/1 1066/1 1045/1 +f 1070/1 1066/1 1043/1 +f 1045/1 1066/1 1071/1 +f 1073/1 1070/1 1046/1 +f 1046/1 1070/1 1043/1 +f 1045/1 1071/1 1049/1 +f 1049/1 1071/1 1075/1 +f 1077/1 1073/1 1046/1 +f 1077/1 1046/1 1050/1 +f 1049/1 1075/1 1079/1 +f 1081/1 1077/1 1050/1 +f 1049/1 1079/1 1053/1 +f 1081/1 1050/1 1054/1 +f 1053/1 1079/1 1084/1 +f 1081/1 1054/1 1085/1 +f 1085/1 1054/1 1057/1 +f 1059/1 1053/1 1084/1 +f 1085/1 1057/1 1088/1 +f 1059/1 1084/1 1089/1 +f 1088/1 1057/1 1060/1 +f 1088/1 1060/1 1092/1 +f 1063/1 1059/1 1089/1 +f 1063/1 1089/1 1093/1 +f 1065/1 1063/1 1093/1 +f 1096/1 1060/1 1065/1 +f 1092/1 1060/1 1096/1 +f 1096/1 1065/1 1093/1 +f 1102/1 1103/1 1236/1 +f 1194/1 1170/1 1102/1 +f 1193/1 1194/1 1236/1 +f 1236/1 1194/1 1102/1 +f 1102/1 1170/1 1041/1 +f 1041/1 1170/1 1195/1 +f 1039/1 1041/1 1195/1 +f 1191/1 1171/1 1040/1 +f 1195/1 1191/1 1039/1 +f 1039/1 1191/1 1040/1 +f 1040/1 1171/1 1038/1 +f 1038/1 1171/1 1192/1 +f 1036/1 1038/1 1192/1 +f 1188/1 1169/1 1037/1 +f 1192/1 1188/1 1036/1 +f 1036/1 1188/1 1037/1 +f 1037/1 1169/1 1035/1 +f 1035/1 1169/1 1187/1 +f 1033/1 1035/1 1187/1 +f 1184/1 1166/1 1034/1 +f 1187/1 1184/1 1033/1 +f 1033/1 1184/1 1034/1 +f 1034/1 1166/1 1029/1 +f 1029/1 1166/1 1030/1 +f 1029/1 1030/1 1032/1 +f 1027/1 1029/1 1032/1 +f 1031/1 1164/1 1028/1 +f 1032/1 1031/1 1027/1 +f 1027/1 1031/1 1028/1 +f 1028/1 1164/1 1023/1 +f 1023/1 1164/1 1024/1 +f 1023/1 1024/1 1026/1 +f 1021/1 1023/1 1026/1 +f 1025/1 1160/1 1022/1 +f 1026/1 1025/1 1021/1 +f 1021/1 1025/1 1022/1 +f 1022/1 1160/1 1020/1 +f 1020/1 1160/1 1179/1 +f 1018/1 1020/1 1179/1 +f 1178/1 1158/1 1019/1 +f 1179/1 1178/1 1018/1 +f 1018/1 1178/1 1019/1 +f 1017/1 1177/1 1015/1 +f 1158/1 1177/1 1017/1 +f 1158/1 1017/1 1019/1 +f 1176/1 1154/1 1016/1 +f 1177/1 1176/1 1015/1 +f 1015/1 1176/1 1016/1 +f 1014/1 1175/1 1012/1 +f 1154/1 1175/1 1014/1 +f 1154/1 1014/1 1016/1 +f 1174/1 1155/1 1013/1 +f 1175/1 1174/1 1012/1 +f 1012/1 1174/1 1013/1 +f 1011/1 1173/1 1009/1 +f 1155/1 1173/1 1011/1 +f 1155/1 1011/1 1013/1 +f 1172/1 1148/1 1010/1 +f 1173/1 1172/1 1009/1 +f 1009/1 1172/1 1010/1 +f 1008/1 1156/1 1006/1 +f 1148/1 1156/1 1008/1 +f 1148/1 1008/1 1010/1 +f 1149/1 1139/1 1007/1 +f 1156/1 1149/1 1006/1 +f 1006/1 1149/1 1007/1 +f 1005/1 1143/1 1003/1 +f 1139/1 1143/1 1005/1 +f 1139/1 1005/1 1007/1 +f 1140/1 1135/1 1004/1 +f 1143/1 1140/1 1003/1 +f 1003/1 1140/1 1004/1 +f 1002/1 1138/1 1000/1 +f 1135/1 1138/1 1002/1 +f 1135/1 1002/1 1004/1 +f 1136/1 1130/1 1001/1 +f 1138/1 1136/1 1000/1 +f 1000/1 1136/1 1001/1 +f 999/1 1134/1 997/1 +f 1130/1 1134/1 999/1 +f 1130/1 999/1 1001/1 +f 1131/1 1127/1 998/1 +f 1134/1 1131/1 997/1 +f 997/1 1131/1 998/1 +f 993/1 996/1 991/1 +f 994/1 996/1 993/1 +f 1127/1 994/1 993/1 +f 1127/1 993/1 998/1 +f 995/1 1124/1 992/1 +f 992/1 1124/1 1099/1 +f 996/1 995/1 991/1 +f 991/1 995/1 992/1 +f 987/1 990/1 985/1 +f 988/1 990/1 987/1 +f 1099/1 988/1 987/1 +f 1124/1 988/1 1099/1 +f 989/1 1120/1 986/1 +f 990/1 989/1 985/1 +f 985/1 989/1 986/1 +f 982/1 1122/1 983/1 +f 1120/1 1122/1 982/1 +f 1120/1 982/1 986/1 +f 983/1 1122/1 1121/1 +f 984/1 983/1 1121/1 +f 984/1 1121/1 979/1 +f 976/1 981/1 977/1 +f 979/1 981/1 976/1 +f 979/1 976/1 984/1 +f 977/1 981/1 980/1 +f 978/1 977/1 980/1 +f 978/1 980/1 1112/1 +f 973/1 1114/1 974/1 +f 1112/1 1114/1 973/1 +f 1112/1 973/1 978/1 +f 974/1 1114/1 1113/1 +f 975/1 974/1 1113/1 +f 975/1 1113/1 1108/1 +f 1098/1 975/1 1108/1 +f 967/1 971/1 968/1 +f 972/1 971/1 967/1 +f 1098/1 972/1 967/1 +f 1108/1 972/1 1098/1 +f 968/1 971/1 970/1 +f 969/1 968/1 970/1 +f 969/1 970/1 1105/1 +f 961/1 965/1 962/1 +f 966/1 965/1 961/1 +f 1105/1 966/1 961/1 +f 1105/1 961/1 969/1 +f 962/1 965/1 964/1 +f 963/1 962/1 964/1 +f 963/1 964/1 960/1 +f 955/1 959/1 956/1 +f 960/1 959/1 955/1 +f 960/1 955/1 963/1 +f 956/1 959/1 958/1 +f 957/1 956/1 958/1 +f 957/1 958/1 1104/1 +f 952/1 1107/1 953/1 +f 1104/1 1107/1 952/1 +f 1104/1 952/1 957/1 +f 953/1 1107/1 1106/1 +f 954/1 953/1 1106/1 +f 1097/1 1106/1 951/1 +f 954/1 1106/1 1097/1 +f 946/1 950/1 947/1 +f 951/1 950/1 946/1 +f 1097/1 951/1 946/1 +f 947/1 950/1 949/1 +f 948/1 947/1 949/1 +f 948/1 949/1 1111/1 +f 940/1 944/1 941/1 +f 945/1 944/1 940/1 +f 1111/1 945/1 940/1 +f 1111/1 940/1 948/1 +f 941/1 944/1 943/1 +f 942/1 941/1 943/1 +f 942/1 943/1 1115/1 +f 938/1 1118/1 939/1 +f 1115/1 1118/1 938/1 +f 1115/1 938/1 942/1 +f 939/1 1118/1 1117/1 +f 937/1 939/1 1117/1 +f 937/1 1117/1 1119/1 +f 932/1 935/1 933/1 +f 936/1 935/1 932/1 +f 1119/1 936/1 932/1 +f 1119/1 932/1 937/1 +f 933/1 935/1 934/1 +f 931/1 933/1 934/1 +f 931/1 934/1 1123/1 +f 931/1 1123/1 926/1 +f 926/1 1123/1 929/1 +f 926/1 929/1 928/1 +f 927/1 926/1 928/1 +f 927/1 928/1 930/1 +f 925/1 927/1 930/1 +f 925/1 930/1 1126/1 +f 1100/1 925/1 1126/1 +f 1100/1 1126/1 923/1 +f 920/1 1100/1 923/1 +f 920/1 923/1 922/1 +f 921/1 920/1 922/1 +f 921/1 922/1 924/1 +f 919/1 921/1 924/1 +f 919/1 924/1 1128/1 +f 1101/1 919/1 1128/1 +f 1101/1 1128/1 917/1 +f 914/1 1101/1 917/1 +f 914/1 917/1 916/1 +f 915/1 914/1 916/1 +f 915/1 916/1 918/1 +f 913/1 915/1 918/1 +f 913/1 918/1 1133/1 +f 913/1 1133/1 908/1 +f 908/1 1133/1 911/1 +f 908/1 911/1 910/1 +f 909/1 908/1 910/1 +f 909/1 910/1 912/1 +f 907/1 909/1 912/1 +f 907/1 912/1 1137/1 +f 907/1 1137/1 905/1 +f 905/1 1137/1 1141/1 +f 906/1 905/1 1141/1 +f 906/1 1141/1 1142/1 +f 904/1 906/1 1142/1 +f 904/1 1142/1 1144/1 +f 904/1 1144/1 902/1 +f 902/1 1144/1 1150/1 +f 903/1 902/1 1150/1 +f 903/1 1150/1 1151/1 +f 901/1 903/1 1151/1 +f 901/1 1151/1 1145/1 +f 901/1 1145/1 896/1 +f 896/1 1145/1 899/1 +f 896/1 899/1 898/1 +f 897/1 896/1 898/1 +f 897/1 898/1 900/1 +f 895/1 897/1 900/1 +f 895/1 900/1 1147/1 +f 895/1 1147/1 890/1 +f 890/1 1147/1 893/1 +f 890/1 893/1 892/1 +f 891/1 890/1 892/1 +f 891/1 892/1 894/1 +f 889/1 891/1 894/1 +f 889/1 894/1 1153/1 +f 889/1 1153/1 884/1 +f 884/1 1153/1 887/1 +f 884/1 887/1 886/1 +f 885/1 884/1 886/1 +f 885/1 886/1 888/1 +f 883/1 885/1 888/1 +f 883/1 888/1 1157/1 +f 883/1 1157/1 878/1 +f 878/1 1157/1 881/1 +f 878/1 881/1 880/1 +f 879/1 878/1 880/1 +f 882/1 1159/1 877/1 +f 880/1 882/1 879/1 +f 879/1 882/1 877/1 +f 877/1 1159/1 875/1 +f 875/1 1159/1 1180/1 +f 876/1 875/1 1180/1 +f 1181/1 1161/1 874/1 +f 1180/1 1181/1 876/1 +f 876/1 1181/1 874/1 +f 874/1 1161/1 872/1 +f 872/1 1161/1 1182/1 +f 873/1 872/1 1182/1 +f 1183/1 1165/1 871/1 +f 1182/1 1183/1 873/1 +f 873/1 1183/1 871/1 +f 871/1 1165/1 869/1 +f 869/1 1165/1 1185/1 +f 870/1 869/1 1185/1 +f 1186/1 1167/1 868/1 +f 1185/1 1186/1 870/1 +f 870/1 1186/1 868/1 +f 868/1 1167/1 866/1 +f 866/1 1167/1 1189/1 +f 867/1 866/1 1189/1 +f 1190/1 1168/1 865/1 +f 1189/1 1190/1 867/1 +f 867/1 1190/1 865/1 +f 865/1 1168/1 1103/1 +f 1103/1 1168/1 1193/1 +f 1236/1 1103/1 1193/1 +f 1237/1 1238/1 1239/1 +f 1240/1 1241/1 1242/1 +f 1243/1 1244/1 1245/1 +f 1246/1 1247/1 1248/1 +f 1249/1 1250/1 1251/1 +f 1252/1 1253/1 1254/1 +f 1255/1 1256/1 1257/1 +f 1258/1 1259/1 1260/1 +f 1261/1 1262/1 1263/1 +f 1264/1 1265/1 1266/1 +f 1267/1 1268/1 1269/1 +f 1270/1 1271/1 1272/1 +f 1273/1 1274/1 1275/1 +f 1276/1 1277/1 1278/1 +f 1279/1 1280/1 1281/1 +f 1282/1 1283/1 1284/1 +f 1285/1 1286/1 1287/1 +f 1288/1 1289/1 1290/1 +f 1291/1 1292/1 1293/1 +f 1294/1 1295/1 1296/1 +f 1297/1 1298/1 1299/1 +f 1300/1 1301/1 1302/1 +f 1303/1 1304/1 1305/1 +f 1306/1 1307/1 1308/1 +f 1309/1 1310/1 1311/1 +f 1312/1 1313/1 1314/1 +f 1315/1 1316/1 1317/1 +f 1318/1 1319/1 1320/1 +f 1321/1 1322/1 1323/1 +f 1324/1 1325/1 1326/1 +f 1327/1 1328/1 1329/1 +f 1330/1 1331/1 1332/1 +f 1333/1 1334/1 1335/1 +f 1336/1 1337/1 1338/1 +f 1339/1 1340/1 1341/1 +f 1342/1 1343/1 1344/1 +f 1345/1 1346/1 1347/1 +f 1348/1 1349/1 1350/1 +f 1351/1 1352/1 1353/1 +f 1354/1 1355/1 1356/1 +f 1357/1 1358/1 1359/1 +f 1360/1 1361/1 1362/1 +f 1363/1 1364/1 1365/1 +f 1366/1 1367/1 1368/1 +f 1369/1 1370/1 1371/1 +f 1372/1 1373/1 1374/1 +f 1375/1 1376/1 1377/1 +f 1378/1 1379/1 1380/1 +f 1381/1 1382/1 1383/1 +f 1384/1 1385/1 1386/1 +f 1387/1 1388/1 1389/1 +f 1390/1 1391/1 1392/1 +f 1393/1 1394/1 1395/1 +f 1396/1 1397/1 1398/1 +f 1399/1 1400/1 1401/1 +f 1402/1 1403/1 1404/1 +f 1405/1 1406/1 1407/1 +f 1408/1 1409/1 1410/1 +f 1411/1 1412/1 1413/1 +f 1414/1 1415/1 1416/1 +f 1416/1 1415/1 1417/1 +f 1418/1 1415/1 1414/1 +f 1419/1 1418/1 1414/1 +f 1416/1 1417/1 1420/1 +f 1420/1 1417/1 1421/1 +f 1422/1 1418/1 1423/1 +f 1423/1 1418/1 1419/1 +f 1424/1 1420/1 1421/1 +f 1424/1 1421/1 1425/1 +f 1426/1 1422/1 1427/1 +f 1427/1 1422/1 1423/1 +f 1428/1 1424/1 1425/1 +f 1429/1 1426/1 1427/1 +f 1429/1 1427/1 1430/1 +f 1431/1 1428/1 1425/1 +f 1432/1 1429/1 1430/1 +f 1433/1 1428/1 1431/1 +f 1432/1 1430/1 1434/1 +f 1435/1 1433/1 1431/1 +f 1432/1 1434/1 1436/1 +f 1437/1 1433/1 1435/1 +f 1436/1 1433/1 1437/1 +f 1432/1 1436/1 1437/1 +f 1438/1 1439/1 1440/1 +f 1441/1 1439/1 1438/1 +f 1441/1 1438/1 1442/1 +f 1438/1 1440/1 1443/1 +f 1444/1 1441/1 1442/1 +f 1444/1 1442/1 1445/1 +f 1443/1 1440/1 1446/1 +f 1443/1 1446/1 1447/1 +f 1448/1 1444/1 1445/1 +f 1448/1 1445/1 1449/1 +f 1447/1 1446/1 1450/1 +f 1447/1 1450/1 1451/1 +f 1452/1 1448/1 1449/1 +f 1452/1 1449/1 1453/1 +f 1451/1 1450/1 1454/1 +f 1455/1 1452/1 1453/1 +f 1451/1 1454/1 1456/1 +f 1455/1 1453/1 1457/1 +f 1456/1 1454/1 1458/1 +f 1459/1 1455/1 1457/1 +f 1459/1 1457/1 1460/1 +f 1456/1 1458/1 1461/1 +f 1461/1 1458/1 1462/1 +f 1463/1 1459/1 1460/1 +f 1463/1 1460/1 1464/1 +f 1461/1 1462/1 1465/1 +f 1465/1 1462/1 1466/1 +f 1467/1 1463/1 1464/1 +f 1467/1 1464/1 1468/1 +f 1465/1 1466/1 1468/1 +f 1468/1 1466/1 1467/1 +f 1335/1 1327/1 1329/1 +f 1469/1 1324/1 1326/1 +f 1329/1 1324/1 1469/1 +f 1341/1 1333/1 1335/1 +f 1469/1 1318/1 1320/1 +f 1341/1 1335/1 1439/1 +f 1439/1 1335/1 1329/1 +f 1439/1 1329/1 1440/1 +f 1440/1 1329/1 1469/1 +f 1470/1 1339/1 1341/1 +f 1470/1 1341/1 1441/1 +f 1441/1 1341/1 1439/1 +f 1440/1 1469/1 1320/1 +f 1345/1 1347/1 1350/1 +f 1350/1 1347/1 1441/1 +f 1441/1 1347/1 1470/1 +f 1320/1 1312/1 1314/1 +f 1440/1 1320/1 1314/1 +f 1314/1 1310/1 1309/1 +f 1348/1 1350/1 1356/1 +f 1356/1 1350/1 1441/1 +f 1440/1 1314/1 1446/1 +f 1446/1 1314/1 1309/1 +f 1309/1 1304/1 1303/1 +f 1444/1 1356/1 1441/1 +f 1354/1 1356/1 1358/1 +f 1358/1 1356/1 1444/1 +f 1446/1 1309/1 1303/1 +f 1359/1 1358/1 1471/1 +f 1471/1 1358/1 1444/1 +f 1472/1 1303/1 1298/1 +f 1446/1 1303/1 1450/1 +f 1450/1 1303/1 1472/1 +f 1472/1 1298/1 1297/1 +f 1364/1 1471/1 1365/1 +f 1365/1 1471/1 1370/1 +f 1370/1 1471/1 1448/1 +f 1448/1 1471/1 1444/1 +f 1473/1 1472/1 1292/1 +f 1450/1 1472/1 1473/1 +f 1473/1 1292/1 1291/1 +f 1371/1 1370/1 1373/1 +f 1373/1 1370/1 1448/1 +f 1450/1 1473/1 1285/1 +f 1285/1 1473/1 1286/1 +f 1374/1 1373/1 1376/1 +f 1376/1 1373/1 1452/1 +f 1452/1 1373/1 1448/1 +f 1279/1 1285/1 1280/1 +f 1450/1 1285/1 1454/1 +f 1454/1 1285/1 1279/1 +f 1377/1 1376/1 1379/1 +f 1379/1 1376/1 1452/1 +f 1276/1 1279/1 1277/1 +f 1454/1 1279/1 1276/1 +f 1379/1 1452/1 1455/1 +f 1379/1 1455/1 1382/1 +f 1273/1 1276/1 1274/1 +f 1454/1 1276/1 1273/1 +f 1458/1 1454/1 1273/1 +f 1380/1 1379/1 1382/1 +f 1382/1 1455/1 1385/1 +f 1267/1 1458/1 1273/1 +f 1391/1 1455/1 1459/1 +f 1388/1 1455/1 1391/1 +f 1385/1 1455/1 1388/1 +f 1383/1 1382/1 1385/1 +f 1267/1 1273/1 1268/1 +f 1261/1 1458/1 1267/1 +f 1462/1 1458/1 1261/1 +f 1391/1 1459/1 1394/1 +f 1255/1 1462/1 1261/1 +f 1400/1 1459/1 1463/1 +f 1394/1 1459/1 1400/1 +f 1466/1 1462/1 1249/1 +f 1249/1 1462/1 1255/1 +f 1261/1 1267/1 1262/1 +f 1400/1 1463/1 1406/1 +f 1246/1 1466/1 1249/1 +f 1406/1 1463/1 1409/1 +f 1386/1 1385/1 1388/1 +f 1240/1 1466/1 1243/1 +f 1243/1 1466/1 1246/1 +f 1412/1 1463/1 1467/1 +f 1409/1 1463/1 1412/1 +f 1237/1 1466/1 1240/1 +f 1467/1 1466/1 1237/1 +f 1412/1 1467/1 1474/1 +f 1474/1 1467/1 1237/1 +f 1389/1 1388/1 1391/1 +f 1255/1 1261/1 1256/1 +f 1392/1 1391/1 1394/1 +f 1249/1 1255/1 1250/1 +f 1395/1 1394/1 1400/1 +f 1246/1 1249/1 1247/1 +f 1401/1 1400/1 1406/1 +f 1243/1 1246/1 1244/1 +f 1407/1 1406/1 1409/1 +f 1240/1 1243/1 1241/1 +f 1410/1 1409/1 1412/1 +f 1237/1 1240/1 1238/1 +f 1413/1 1412/1 1474/1 +f 1474/1 1237/1 1475/1 +f 1476/1 1330/1 1332/1 +f 1477/1 1336/1 1338/1 +f 1332/1 1336/1 1477/1 +f 1478/1 1479/1 1476/1 +f 1323/1 1478/1 1476/1 +f 1480/1 1342/1 1344/1 +f 1477/1 1342/1 1480/1 +f 1476/1 1332/1 1481/1 +f 1482/1 1332/1 1477/1 +f 1481/1 1332/1 1482/1 +f 1323/1 1476/1 1481/1 +f 1483/1 1321/1 1323/1 +f 1482/1 1477/1 1480/1 +f 1483/1 1323/1 1481/1 +f 1484/1 1485/1 1486/1 +f 1480/1 1485/1 1484/1 +f 1315/1 1317/1 1483/1 +f 1482/1 1480/1 1484/1 +f 1315/1 1483/1 1487/1 +f 1487/1 1483/1 1488/1 +f 1488/1 1483/1 1481/1 +f 1484/1 1352/1 1351/1 +f 1489/1 1490/1 1487/1 +f 1482/1 1484/1 1351/1 +f 1489/1 1487/1 1491/1 +f 1491/1 1487/1 1488/1 +f 1492/1 1493/1 1494/1 +f 1351/1 1493/1 1492/1 +f 1306/1 1308/1 1491/1 +f 1482/1 1351/1 1492/1 +f 1306/1 1491/1 1495/1 +f 1495/1 1491/1 1488/1 +f 1496/1 1492/1 1361/1 +f 1497/1 1492/1 1496/1 +f 1482/1 1492/1 1497/1 +f 1301/1 1495/1 1302/1 +f 1302/1 1495/1 1498/1 +f 1498/1 1495/1 1488/1 +f 1496/1 1361/1 1360/1 +f 1499/1 1496/1 1367/1 +f 1497/1 1496/1 1499/1 +f 1295/1 1498/1 1296/1 +f 1296/1 1498/1 1500/1 +f 1500/1 1498/1 1501/1 +f 1501/1 1498/1 1488/1 +f 1499/1 1367/1 1366/1 +f 1502/1 1499/1 1503/1 +f 1504/1 1499/1 1502/1 +f 1497/1 1499/1 1504/1 +f 1289/1 1500/1 1290/1 +f 1290/1 1500/1 1505/1 +f 1505/1 1500/1 1501/1 +f 1502/1 1503/1 1506/1 +f 1507/1 1502/1 1508/1 +f 1504/1 1502/1 1507/1 +f 1283/1 1505/1 1284/1 +f 1284/1 1505/1 1509/1 +f 1509/1 1505/1 1501/1 +f 1507/1 1508/1 1510/1 +f 1511/1 1507/1 1512/1 +f 1504/1 1507/1 1511/1 +f 1513/1 1509/1 1514/1 +f 1514/1 1509/1 1501/1 +f 1511/1 1512/1 1515/1 +f 1516/1 1514/1 1501/1 +f 1516/1 1501/1 1517/1 +f 1517/1 1501/1 1518/1 +f 1517/1 1518/1 1519/1 +f 1520/1 1511/1 1521/1 +f 1504/1 1511/1 1520/1 +f 1522/1 1516/1 1523/1 +f 1523/1 1516/1 1517/1 +f 1524/1 1504/1 1520/1 +f 1519/1 1518/1 1525/1 +f 1526/1 1524/1 1527/1 +f 1527/1 1524/1 1520/1 +f 1520/1 1521/1 1528/1 +f 1525/1 1518/1 1529/1 +f 1530/1 1524/1 1526/1 +f 1529/1 1518/1 1531/1 +f 1532/1 1524/1 1530/1 +f 1531/1 1518/1 1533/1 +f 1533/1 1518/1 1534/1 +f 1535/1 1524/1 1536/1 +f 1536/1 1524/1 1532/1 +f 1533/1 1534/1 1537/1 +f 1538/1 1535/1 1536/1 +f 1537/1 1534/1 1539/1 +f 1539/1 1534/1 1540/1 +f 1541/1 1535/1 1538/1 +f 1540/1 1534/1 1542/1 +f 1534/1 1535/1 1543/1 +f 1543/1 1535/1 1541/1 +f 1542/1 1534/1 1543/1 +f 1527/1 1520/1 1544/1 +f 1271/1 1517/1 1272/1 +f 1272/1 1517/1 1519/1 +f 1527/1 1544/1 1545/1 +f 1526/1 1527/1 1546/1 +f 1265/1 1519/1 1266/1 +f 1266/1 1519/1 1525/1 +f 1526/1 1546/1 1547/1 +f 1530/1 1526/1 1548/1 +f 1259/1 1525/1 1260/1 +f 1260/1 1525/1 1529/1 +f 1530/1 1548/1 1549/1 +f 1532/1 1530/1 1550/1 +f 1253/1 1529/1 1254/1 +f 1254/1 1529/1 1531/1 +f 1532/1 1550/1 1551/1 +f 1536/1 1532/1 1397/1 +f 1552/1 1531/1 1553/1 +f 1553/1 1531/1 1533/1 +f 1536/1 1397/1 1396/1 +f 1538/1 1536/1 1403/1 +f 1554/1 1533/1 1555/1 +f 1555/1 1533/1 1537/1 +f 1538/1 1403/1 1402/1 +f 1541/1 1538/1 1556/1 +f 1557/1 1537/1 1558/1 +f 1558/1 1537/1 1539/1 +f 1541/1 1556/1 1559/1 +f 1543/1 1541/1 1560/1 +f 1561/1 1539/1 1562/1 +f 1562/1 1539/1 1540/1 +f 1542/1 1543/1 1563/1 +f 1564/1 1543/1 1560/1 +f 1565/1 1540/1 1566/1 +f 1566/1 1540/1 1542/1 +f 1567/1 1542/1 1563/1 +f 1568/1 1481/1 1482/1 +f 1488/1 1481/1 1568/1 +f 1488/1 1568/1 1569/1 +f 1568/1 1482/1 1570/1 +f 1570/1 1482/1 1571/1 +f 1488/1 1569/1 1572/1 +f 1571/1 1482/1 1497/1 +f 1501/1 1488/1 1572/1 +f 1501/1 1572/1 1573/1 +f 1574/1 1497/1 1504/1 +f 1571/1 1497/1 1574/1 +f 1518/1 1501/1 1573/1 +f 1518/1 1573/1 1575/1 +f 1576/1 1504/1 1524/1 +f 1574/1 1504/1 1576/1 +f 1576/1 1524/1 1577/1 +f 1534/1 1518/1 1575/1 +f 1534/1 1575/1 1578/1 +f 1577/1 1524/1 1535/1 +f 1534/1 1578/1 1579/1 +f 1577/1 1535/1 1579/1 +f 1579/1 1535/1 1534/1 +f 1568/1 1580/1 1581/1 +f 1570/1 1580/1 1568/1 +f 1582/1 1580/1 1570/1 +f 1568/1 1581/1 1569/1 +f 1569/1 1581/1 1583/1 +f 1571/1 1582/1 1570/1 +f 1569/1 1583/1 1572/1 +f 1584/1 1582/1 1574/1 +f 1574/1 1582/1 1571/1 +f 1572/1 1583/1 1585/1 +f 1572/1 1585/1 1573/1 +f 1586/1 1573/1 1585/1 +f 1587/1 1584/1 1574/1 +f 1575/1 1573/1 1586/1 +f 1587/1 1574/1 1576/1 +f 1587/1 1576/1 1577/1 +f 1588/1 1575/1 1586/1 +f 1587/1 1577/1 1589/1 +f 1578/1 1575/1 1588/1 +f 1589/1 1577/1 1590/1 +f 1579/1 1578/1 1588/1 +f 1590/1 1577/1 1579/1 +f 1590/1 1579/1 1588/1 +f 1580/1 1591/1 1581/1 +f 1592/1 1591/1 1580/1 +f 1593/1 1581/1 1591/1 +f 1592/1 1580/1 1582/1 +f 1594/1 1592/1 1582/1 +f 1583/1 1581/1 1595/1 +f 1595/1 1581/1 1593/1 +f 1596/1 1594/1 1582/1 +f 1597/1 1583/1 1595/1 +f 1596/1 1582/1 1584/1 +f 1598/1 1596/1 1584/1 +f 1585/1 1583/1 1599/1 +f 1599/1 1583/1 1597/1 +f 1600/1 1585/1 1599/1 +f 1598/1 1584/1 1587/1 +f 1601/1 1598/1 1587/1 +f 1586/1 1585/1 1600/1 +f 1602/1 1586/1 1600/1 +f 1603/1 1601/1 1587/1 +f 1603/1 1587/1 1589/1 +f 1604/1 1603/1 1589/1 +f 1588/1 1586/1 1605/1 +f 1605/1 1586/1 1602/1 +f 1604/1 1589/1 1590/1 +f 1606/1 1604/1 1590/1 +f 1607/1 1588/1 1605/1 +f 1607/1 1606/1 1590/1 +f 1590/1 1588/1 1607/1 +f 1591/1 1414/1 1416/1 +f 1592/1 1414/1 1591/1 +f 1591/1 1416/1 1593/1 +f 1594/1 1414/1 1592/1 +f 1419/1 1414/1 1594/1 +f 1593/1 1416/1 1420/1 +f 1595/1 1593/1 1420/1 +f 1596/1 1419/1 1594/1 +f 1597/1 1595/1 1420/1 +f 1423/1 1419/1 1596/1 +f 1597/1 1420/1 1424/1 +f 1598/1 1423/1 1596/1 +f 1599/1 1597/1 1424/1 +f 1427/1 1423/1 1598/1 +f 1600/1 1599/1 1424/1 +f 1427/1 1598/1 1601/1 +f 1428/1 1600/1 1424/1 +f 1602/1 1600/1 1428/1 +f 1427/1 1601/1 1603/1 +f 1430/1 1427/1 1603/1 +f 1430/1 1603/1 1604/1 +f 1605/1 1602/1 1433/1 +f 1433/1 1602/1 1428/1 +f 1434/1 1430/1 1604/1 +f 1434/1 1604/1 1606/1 +f 1607/1 1605/1 1433/1 +f 1436/1 1607/1 1433/1 +f 1434/1 1606/1 1436/1 +f 1436/1 1606/1 1607/1 +f 1415/1 1438/1 1417/1 +f 1442/1 1438/1 1415/1 +f 1417/1 1438/1 1443/1 +f 1445/1 1442/1 1418/1 +f 1418/1 1442/1 1415/1 +f 1417/1 1443/1 1421/1 +f 1421/1 1443/1 1447/1 +f 1449/1 1445/1 1418/1 +f 1449/1 1418/1 1422/1 +f 1421/1 1447/1 1451/1 +f 1453/1 1449/1 1422/1 +f 1421/1 1451/1 1425/1 +f 1453/1 1422/1 1426/1 +f 1425/1 1451/1 1456/1 +f 1453/1 1426/1 1457/1 +f 1457/1 1426/1 1429/1 +f 1431/1 1425/1 1456/1 +f 1457/1 1429/1 1460/1 +f 1431/1 1456/1 1461/1 +f 1460/1 1429/1 1432/1 +f 1460/1 1432/1 1464/1 +f 1435/1 1431/1 1461/1 +f 1435/1 1461/1 1465/1 +f 1437/1 1435/1 1465/1 +f 1468/1 1432/1 1437/1 +f 1464/1 1432/1 1468/1 +f 1468/1 1437/1 1465/1 +f 1474/1 1475/1 1608/1 +f 1566/1 1542/1 1474/1 +f 1565/1 1566/1 1608/1 +f 1608/1 1566/1 1474/1 +f 1474/1 1542/1 1413/1 +f 1413/1 1542/1 1567/1 +f 1411/1 1413/1 1567/1 +f 1563/1 1543/1 1412/1 +f 1567/1 1563/1 1411/1 +f 1411/1 1563/1 1412/1 +f 1412/1 1543/1 1410/1 +f 1410/1 1543/1 1564/1 +f 1408/1 1410/1 1564/1 +f 1560/1 1541/1 1409/1 +f 1564/1 1560/1 1408/1 +f 1408/1 1560/1 1409/1 +f 1409/1 1541/1 1407/1 +f 1407/1 1541/1 1559/1 +f 1405/1 1407/1 1559/1 +f 1556/1 1538/1 1406/1 +f 1559/1 1556/1 1405/1 +f 1405/1 1556/1 1406/1 +f 1406/1 1538/1 1401/1 +f 1401/1 1538/1 1402/1 +f 1401/1 1402/1 1404/1 +f 1399/1 1401/1 1404/1 +f 1403/1 1536/1 1400/1 +f 1404/1 1403/1 1399/1 +f 1399/1 1403/1 1400/1 +f 1400/1 1536/1 1395/1 +f 1395/1 1536/1 1396/1 +f 1395/1 1396/1 1398/1 +f 1393/1 1395/1 1398/1 +f 1397/1 1532/1 1394/1 +f 1398/1 1397/1 1393/1 +f 1393/1 1397/1 1394/1 +f 1394/1 1532/1 1392/1 +f 1392/1 1532/1 1551/1 +f 1390/1 1392/1 1551/1 +f 1550/1 1530/1 1391/1 +f 1551/1 1550/1 1390/1 +f 1390/1 1550/1 1391/1 +f 1389/1 1549/1 1387/1 +f 1530/1 1549/1 1389/1 +f 1530/1 1389/1 1391/1 +f 1548/1 1526/1 1388/1 +f 1549/1 1548/1 1387/1 +f 1387/1 1548/1 1388/1 +f 1386/1 1547/1 1384/1 +f 1526/1 1547/1 1386/1 +f 1526/1 1386/1 1388/1 +f 1546/1 1527/1 1385/1 +f 1547/1 1546/1 1384/1 +f 1384/1 1546/1 1385/1 +f 1383/1 1545/1 1381/1 +f 1527/1 1545/1 1383/1 +f 1527/1 1383/1 1385/1 +f 1544/1 1520/1 1382/1 +f 1545/1 1544/1 1381/1 +f 1381/1 1544/1 1382/1 +f 1380/1 1528/1 1378/1 +f 1520/1 1528/1 1380/1 +f 1520/1 1380/1 1382/1 +f 1521/1 1511/1 1379/1 +f 1528/1 1521/1 1378/1 +f 1378/1 1521/1 1379/1 +f 1377/1 1515/1 1375/1 +f 1511/1 1515/1 1377/1 +f 1511/1 1377/1 1379/1 +f 1512/1 1507/1 1376/1 +f 1515/1 1512/1 1375/1 +f 1375/1 1512/1 1376/1 +f 1374/1 1510/1 1372/1 +f 1507/1 1510/1 1374/1 +f 1507/1 1374/1 1376/1 +f 1508/1 1502/1 1373/1 +f 1510/1 1508/1 1372/1 +f 1372/1 1508/1 1373/1 +f 1371/1 1506/1 1369/1 +f 1502/1 1506/1 1371/1 +f 1502/1 1371/1 1373/1 +f 1503/1 1499/1 1370/1 +f 1506/1 1503/1 1369/1 +f 1369/1 1503/1 1370/1 +f 1365/1 1368/1 1363/1 +f 1366/1 1368/1 1365/1 +f 1499/1 1366/1 1365/1 +f 1499/1 1365/1 1370/1 +f 1367/1 1496/1 1364/1 +f 1364/1 1496/1 1471/1 +f 1368/1 1367/1 1363/1 +f 1363/1 1367/1 1364/1 +f 1359/1 1362/1 1357/1 +f 1360/1 1362/1 1359/1 +f 1471/1 1360/1 1359/1 +f 1496/1 1360/1 1471/1 +f 1361/1 1492/1 1358/1 +f 1362/1 1361/1 1357/1 +f 1357/1 1361/1 1358/1 +f 1354/1 1494/1 1355/1 +f 1492/1 1494/1 1354/1 +f 1492/1 1354/1 1358/1 +f 1355/1 1494/1 1493/1 +f 1356/1 1355/1 1493/1 +f 1356/1 1493/1 1351/1 +f 1348/1 1353/1 1349/1 +f 1351/1 1353/1 1348/1 +f 1351/1 1348/1 1356/1 +f 1349/1 1353/1 1352/1 +f 1350/1 1349/1 1352/1 +f 1350/1 1352/1 1484/1 +f 1345/1 1486/1 1346/1 +f 1484/1 1486/1 1345/1 +f 1484/1 1345/1 1350/1 +f 1346/1 1486/1 1485/1 +f 1347/1 1346/1 1485/1 +f 1347/1 1485/1 1480/1 +f 1470/1 1347/1 1480/1 +f 1339/1 1343/1 1340/1 +f 1344/1 1343/1 1339/1 +f 1470/1 1344/1 1339/1 +f 1480/1 1344/1 1470/1 +f 1340/1 1343/1 1342/1 +f 1341/1 1340/1 1342/1 +f 1341/1 1342/1 1477/1 +f 1333/1 1337/1 1334/1 +f 1338/1 1337/1 1333/1 +f 1477/1 1338/1 1333/1 +f 1477/1 1333/1 1341/1 +f 1334/1 1337/1 1336/1 +f 1335/1 1334/1 1336/1 +f 1335/1 1336/1 1332/1 +f 1327/1 1331/1 1328/1 +f 1332/1 1331/1 1327/1 +f 1332/1 1327/1 1335/1 +f 1328/1 1331/1 1330/1 +f 1329/1 1328/1 1330/1 +f 1329/1 1330/1 1476/1 +f 1324/1 1479/1 1325/1 +f 1476/1 1479/1 1324/1 +f 1476/1 1324/1 1329/1 +f 1325/1 1479/1 1478/1 +f 1326/1 1325/1 1478/1 +f 1469/1 1478/1 1323/1 +f 1326/1 1478/1 1469/1 +f 1318/1 1322/1 1319/1 +f 1323/1 1322/1 1318/1 +f 1469/1 1323/1 1318/1 +f 1319/1 1322/1 1321/1 +f 1320/1 1319/1 1321/1 +f 1320/1 1321/1 1483/1 +f 1312/1 1316/1 1313/1 +f 1317/1 1316/1 1312/1 +f 1483/1 1317/1 1312/1 +f 1483/1 1312/1 1320/1 +f 1313/1 1316/1 1315/1 +f 1314/1 1313/1 1315/1 +f 1314/1 1315/1 1487/1 +f 1310/1 1490/1 1311/1 +f 1487/1 1490/1 1310/1 +f 1487/1 1310/1 1314/1 +f 1311/1 1490/1 1489/1 +f 1309/1 1311/1 1489/1 +f 1309/1 1489/1 1491/1 +f 1304/1 1307/1 1305/1 +f 1308/1 1307/1 1304/1 +f 1491/1 1308/1 1304/1 +f 1491/1 1304/1 1309/1 +f 1305/1 1307/1 1306/1 +f 1303/1 1305/1 1306/1 +f 1303/1 1306/1 1495/1 +f 1303/1 1495/1 1298/1 +f 1298/1 1495/1 1301/1 +f 1298/1 1301/1 1300/1 +f 1299/1 1298/1 1300/1 +f 1299/1 1300/1 1302/1 +f 1297/1 1299/1 1302/1 +f 1297/1 1302/1 1498/1 +f 1472/1 1297/1 1498/1 +f 1472/1 1498/1 1295/1 +f 1292/1 1472/1 1295/1 +f 1292/1 1295/1 1294/1 +f 1293/1 1292/1 1294/1 +f 1293/1 1294/1 1296/1 +f 1291/1 1293/1 1296/1 +f 1291/1 1296/1 1500/1 +f 1473/1 1291/1 1500/1 +f 1473/1 1500/1 1289/1 +f 1286/1 1473/1 1289/1 +f 1286/1 1289/1 1288/1 +f 1287/1 1286/1 1288/1 +f 1287/1 1288/1 1290/1 +f 1285/1 1287/1 1290/1 +f 1285/1 1290/1 1505/1 +f 1285/1 1505/1 1280/1 +f 1280/1 1505/1 1283/1 +f 1280/1 1283/1 1282/1 +f 1281/1 1280/1 1282/1 +f 1281/1 1282/1 1284/1 +f 1279/1 1281/1 1284/1 +f 1279/1 1284/1 1509/1 +f 1279/1 1509/1 1277/1 +f 1277/1 1509/1 1513/1 +f 1278/1 1277/1 1513/1 +f 1278/1 1513/1 1514/1 +f 1276/1 1278/1 1514/1 +f 1276/1 1514/1 1516/1 +f 1276/1 1516/1 1274/1 +f 1274/1 1516/1 1522/1 +f 1275/1 1274/1 1522/1 +f 1275/1 1522/1 1523/1 +f 1273/1 1275/1 1523/1 +f 1273/1 1523/1 1517/1 +f 1273/1 1517/1 1268/1 +f 1268/1 1517/1 1271/1 +f 1268/1 1271/1 1270/1 +f 1269/1 1268/1 1270/1 +f 1269/1 1270/1 1272/1 +f 1267/1 1269/1 1272/1 +f 1267/1 1272/1 1519/1 +f 1267/1 1519/1 1262/1 +f 1262/1 1519/1 1265/1 +f 1262/1 1265/1 1264/1 +f 1263/1 1262/1 1264/1 +f 1263/1 1264/1 1266/1 +f 1261/1 1263/1 1266/1 +f 1261/1 1266/1 1525/1 +f 1261/1 1525/1 1256/1 +f 1256/1 1525/1 1259/1 +f 1256/1 1259/1 1258/1 +f 1257/1 1256/1 1258/1 +f 1257/1 1258/1 1260/1 +f 1255/1 1257/1 1260/1 +f 1255/1 1260/1 1529/1 +f 1255/1 1529/1 1250/1 +f 1250/1 1529/1 1253/1 +f 1250/1 1253/1 1252/1 +f 1251/1 1250/1 1252/1 +f 1254/1 1531/1 1249/1 +f 1252/1 1254/1 1251/1 +f 1251/1 1254/1 1249/1 +f 1249/1 1531/1 1247/1 +f 1247/1 1531/1 1552/1 +f 1248/1 1247/1 1552/1 +f 1553/1 1533/1 1246/1 +f 1552/1 1553/1 1248/1 +f 1248/1 1553/1 1246/1 +f 1246/1 1533/1 1244/1 +f 1244/1 1533/1 1554/1 +f 1245/1 1244/1 1554/1 +f 1555/1 1537/1 1243/1 +f 1554/1 1555/1 1245/1 +f 1245/1 1555/1 1243/1 +f 1243/1 1537/1 1241/1 +f 1241/1 1537/1 1557/1 +f 1242/1 1241/1 1557/1 +f 1558/1 1539/1 1240/1 +f 1557/1 1558/1 1242/1 +f 1242/1 1558/1 1240/1 +f 1240/1 1539/1 1238/1 +f 1238/1 1539/1 1561/1 +f 1239/1 1238/1 1561/1 +f 1562/1 1540/1 1237/1 +f 1561/1 1562/1 1239/1 +f 1239/1 1562/1 1237/1 +f 1237/1 1540/1 1475/1 +f 1475/1 1540/1 1565/1 +f 1608/1 1475/1 1565/1 +f 1609/1 1610/1 1611/1 +f 1612/1 1609/1 1611/1 +f 1613/1 1614/1 1615/1 +f 1616/1 1617/1 1618/1 +f 1619/1 1620/1 1616/1 +f 1619/1 1616/1 1618/1 +f 1621/1 1620/1 1622/1 +f 1623/1 1620/1 1621/1 +f 1624/1 1625/1 1626/1 +f 1622/1 1620/1 1619/1 +f 1627/1 1628/1 1614/1 +f 1629/1 1610/1 1630/1 +f 1617/1 1628/1 1631/1 +f 1632/1 1628/1 1633/1 +f 1633/1 1628/1 1627/1 +f 1625/1 1634/1 1635/1 +f 1636/1 1615/1 1637/1 +f 1638/1 1633/1 1627/1 +f 1631/1 1628/1 1632/1 +f 1627/1 1614/1 1613/1 +f 1636/1 1637/1 1624/1 +f 1631/1 1632/1 1639/1 +f 1640/1 1627/1 1613/1 +f 1629/1 1630/1 1641/1 +f 1642/1 1633/1 1643/1 +f 1643/1 1633/1 1638/1 +f 1644/1 1615/1 1636/1 +f 1632/1 1633/1 1645/1 +f 1646/1 1627/1 1640/1 +f 1638/1 1627/1 1646/1 +f 1645/1 1633/1 1642/1 +f 1641/1 1630/1 1623/1 +f 1634/1 1609/1 1647/1 +f 1648/1 1615/1 1644/1 +f 1611/1 1610/1 1629/1 +f 1635/1 1634/1 1647/1 +f 1613/1 1615/1 1648/1 +f 1645/1 1642/1 1649/1 +f 1649/1 1642/1 1650/1 +f 1651/1 1618/1 1617/1 +f 1639/1 1632/1 1652/1 +f 1644/1 1636/1 1653/1 +f 1654/1 1613/1 1648/1 +f 1655/1 1624/1 1626/1 +f 1636/1 1624/1 1655/1 +f 1652/1 1632/1 1645/1 +f 1649/1 1650/1 1656/1 +f 1657/1 1650/1 1658/1 +f 1647/1 1609/1 1612/1 +f 1640/1 1613/1 1654/1 +f 1650/1 1657/1 1659/1 +f 1626/1 1625/1 1660/1 +f 1660/1 1625/1 1635/1 +f 1651/1 1617/1 1631/1 +f 1653/1 1636/1 1655/1 +f 1661/1 1642/1 1643/1 +f 1650/1 1642/1 1661/1 +f 1656/1 1650/1 1659/1 +f 1662/1 1641/1 1623/1 +f 1663/1 1622/1 1619/1 +f 1659/1 1657/1 1664/1 +f 1611/1 1629/1 1641/1 +f 1662/1 1623/1 1621/1 +f 1659/1 1664/1 1665/1 +f 1666/1 1631/1 1639/1 +f 1667/1 1650/1 1661/1 +f 1658/1 1650/1 1667/1 +f 1638/1 1646/1 1668/1 +f 1663/1 1619/1 1669/1 +f 1669/1 1619/1 1618/1 +f 1670/1 1648/1 1644/1 +f 1671/1 1621/1 1622/1 +f 1665/1 1664/1 1672/1 +f 1612/1 1611/1 1641/1 +f 1635/1 1647/1 1612/1 +f 1654/1 1648/1 1670/1 +f 1643/1 1638/1 1673/1 +f 1673/1 1638/1 1668/1 +f 1669/1 1618/1 1651/1 +f 1660/1 1635/1 1612/1 +f 1612/1 1641/1 1660/1 +f 1674/1 1657/1 1658/1 +f 1655/1 1626/1 1660/1 +f 1662/1 1621/1 1671/1 +f 1675/1 1643/1 1673/1 +f 1676/1 1640/1 1654/1 +f 1664/1 1657/1 1674/1 +f 1661/1 1643/1 1675/1 +f 1646/1 1640/1 1676/1 +f 1677/1 1651/1 1631/1 +f 1678/1 1645/1 1649/1 +f 1679/1 1646/1 1676/1 +f 1680/1 1664/1 1674/1 +f 1653/1 1655/1 1681/1 +f 1682/1 1659/1 1665/1 +f 1677/1 1631/1 1666/1 +f 1660/1 1641/1 1662/1 +f 1678/1 1649/1 1683/1 +f 1671/1 1622/1 1663/1 +f 1668/1 1646/1 1679/1 +f 1671/1 1663/1 1684/1 +f 1683/1 1649/1 1656/1 +f 1644/1 1653/1 1681/1 +f 1660/1 1662/1 1681/1 +f 1685/1 1666/1 1639/1 +f 1655/1 1660/1 1681/1 +f 1684/1 1663/1 1669/1 +f 1683/1 1656/1 1686/1 +f 1670/1 1644/1 1681/1 +f 1658/1 1667/1 1687/1 +f 1681/1 1662/1 1671/1 +f 1685/1 1639/1 1688/1 +f 1688/1 1639/1 1652/1 +f 1686/1 1656/1 1659/1 +f 1674/1 1658/1 1687/1 +f 1686/1 1659/1 1689/1 +f 1684/1 1669/1 1651/1 +f 1684/1 1651/1 1690/1 +f 1688/1 1652/1 1678/1 +f 1678/1 1652/1 1645/1 +f 1681/1 1671/1 1684/1 +f 1677/1 1666/1 1685/1 +f 1689/1 1659/1 1682/1 +f 1690/1 1651/1 1677/1 +f 1661/1 1675/1 1691/1 +f 1676/1 1654/1 1670/1 +f 1680/1 1674/1 1692/1 +f 1693/1 1661/1 1691/1 +f 1681/1 1684/1 1690/1 +f 1667/1 1661/1 1693/1 +f 1670/1 1681/1 1690/1 +f 1694/1 1679/1 1676/1 +f 1676/1 1670/1 1690/1 +f 1695/1 1675/1 1673/1 +f 1668/1 1679/1 1694/1 +f 1691/1 1675/1 1695/1 +f 1688/1 1678/1 1696/1 +f 1674/1 1687/1 1697/1 +f 1694/1 1676/1 1690/1 +f 1673/1 1668/1 1698/1 +f 1698/1 1668/1 1694/1 +f 1694/1 1690/1 1677/1 +f 1694/1 1677/1 1685/1 +f 1695/1 1673/1 1698/1 +f 1696/1 1678/1 1683/1 +f 1685/1 1688/1 1696/1 +f 1687/1 1667/1 1693/1 +f 1699/1 1689/1 1682/1 +f 1698/1 1694/1 1685/1 +f 1700/1 1683/1 1686/1 +f 1700/1 1686/1 1689/1 +f 1701/1 1696/1 1683/1 +f 1698/1 1685/1 1696/1 +f 1692/1 1674/1 1697/1 +f 1695/1 1698/1 1696/1 +f 1702/1 1687/1 1693/1 +f 1703/1 1680/1 1692/1 +f 1697/1 1687/1 1702/1 +f 1701/1 1683/1 1700/1 +f 1691/1 1695/1 1696/1 +f 1704/1 1699/1 1682/1 +f 1693/1 1691/1 1701/1 +f 1701/1 1691/1 1696/1 +f 1702/1 1693/1 1701/1 +f 1700/1 1689/1 1699/1 +f 1702/1 1701/1 1700/1 +f 1705/1 1699/1 1704/1 +f 1702/1 1700/1 1699/1 +f 1692/1 1697/1 1702/1 +f 1705/1 1692/1 1702/1 +f 1702/1 1699/1 1705/1 +f 1706/1 1707/1 1708/1 +f 1709/1 1707/1 1706/1 +f 1710/1 1711/1 1712/1 +f 1713/1 1711/1 1714/1 +f 1715/1 1711/1 1710/1 +f 1714/1 1711/1 1716/1 +f 1710/1 1712/1 1717/1 +f 1716/1 1711/1 1715/1 +f 1718/1 1716/1 1715/1 +f 1719/1 1716/1 1718/1 +f 1714/1 1716/1 1720/1 +f 1721/1 1710/1 1717/1 +f 1719/1 1718/1 1722/1 +f 1715/1 1710/1 1721/1 +f 1722/1 1718/1 1723/1 +f 1724/1 1715/1 1721/1 +f 1718/1 1715/1 1724/1 +f 1723/1 1718/1 1725/1 +f 1726/1 1722/1 1727/1 +f 1725/1 1718/1 1724/1 +f 1727/1 1722/1 1723/1 +f 1728/1 1726/1 1727/1 +f 1723/1 1725/1 1729/1 +f 1730/1 1726/1 1728/1 +f 1731/1 1722/1 1732/1 +f 1733/1 1720/1 1716/1 +f 1731/1 1719/1 1722/1 +f 1732/1 1722/1 1726/1 +f 1734/1 1730/1 1728/1 +f 1724/1 1721/1 1735/1 +f 1727/1 1723/1 1736/1 +f 1732/1 1726/1 1737/1 +f 1733/1 1716/1 1719/1 +f 1734/1 1728/1 1738/1 +f 1738/1 1728/1 1739/1 +f 1740/1 1727/1 1736/1 +f 1737/1 1726/1 1730/1 +f 1734/1 1738/1 1741/1 +f 1728/1 1727/1 1740/1 +f 1725/1 1724/1 1729/1 +f 1742/1 1719/1 1731/1 +f 1743/1 1728/1 1740/1 +f 1721/1 1717/1 1735/1 +f 1739/1 1728/1 1743/1 +f 1744/1 1714/1 1720/1 +f 1744/1 1720/1 1745/1 +f 1741/1 1738/1 1746/1 +f 1734/1 1741/1 1747/1 +f 1723/1 1729/1 1748/1 +f 1745/1 1720/1 1733/1 +f 1749/1 1741/1 1746/1 +f 1747/1 1741/1 1750/1 +f 1736/1 1723/1 1748/1 +f 1750/1 1741/1 1749/1 +f 1738/1 1739/1 1751/1 +f 1749/1 1746/1 1752/1 +f 1753/1 1730/1 1734/1 +f 1754/1 1733/1 1719/1 +f 1746/1 1738/1 1751/1 +f 1750/1 1749/1 1755/1 +f 1754/1 1719/1 1742/1 +f 1753/1 1734/1 1756/1 +f 1755/1 1749/1 1757/1 +f 1735/1 1717/1 1758/1 +f 1759/1 1737/1 1730/1 +f 1756/1 1734/1 1747/1 +f 1760/1 1755/1 1757/1 +f 1759/1 1730/1 1753/1 +f 1761/1 1739/1 1743/1 +f 1762/1 1757/1 1763/1 +f 1742/1 1731/1 1764/1 +f 1724/1 1735/1 1765/1 +f 1757/1 1749/1 1766/1 +f 1764/1 1731/1 1732/1 +f 1749/1 1752/1 1767/1 +f 1747/1 1750/1 1768/1 +f 1769/1 1757/1 1762/1 +f 1770/1 1755/1 1760/1 +f 1766/1 1749/1 1767/1 +f 1751/1 1739/1 1761/1 +f 1771/1 1724/1 1765/1 +f 1764/1 1732/1 1772/1 +f 1754/1 1742/1 1773/1 +f 1774/1 1744/1 1745/1 +f 1760/1 1757/1 1769/1 +f 1729/1 1724/1 1771/1 +f 1768/1 1750/1 1755/1 +f 1772/1 1732/1 1737/1 +f 1765/1 1735/1 1758/1 +f 1745/1 1733/1 1754/1 +f 1762/1 1763/1 1775/1 +f 1772/1 1737/1 1759/1 +f 1776/1 1769/1 1762/1 +f 1777/1 1729/1 1771/1 +f 1746/1 1751/1 1778/1 +f 1779/1 1757/1 1766/1 +f 1748/1 1729/1 1777/1 +f 1761/1 1743/1 1780/1 +f 1763/1 1757/1 1779/1 +f 1752/1 1746/1 1778/1 +f 1708/1 1762/1 1781/1 +f 1707/1 1762/1 1708/1 +f 1781/1 1762/1 1775/1 +f 1776/1 1762/1 1707/1 +f 1758/1 1774/1 1745/1 +f 1770/1 1760/1 1782/1 +f 1759/1 1753/1 1783/1 +f 1765/1 1758/1 1745/1 +f 1736/1 1748/1 1777/1 +f 1768/1 1755/1 1784/1 +f 1765/1 1745/1 1754/1 +f 1773/1 1742/1 1764/1 +f 1784/1 1755/1 1770/1 +f 1740/1 1736/1 1785/1 +f 1782/1 1760/1 1769/1 +f 1783/1 1753/1 1756/1 +f 1766/1 1767/1 1786/1 +f 1780/1 1740/1 1785/1 +f 1743/1 1740/1 1780/1 +f 1708/1 1781/1 1706/1 +f 1709/1 1776/1 1707/1 +f 1773/1 1765/1 1754/1 +f 1771/1 1765/1 1773/1 +f 1782/1 1769/1 1787/1 +f 1779/1 1766/1 1786/1 +f 1787/1 1769/1 1776/1 +f 1752/1 1778/1 1788/1 +f 1736/1 1777/1 1785/1 +f 1787/1 1776/1 1789/1 +f 1756/1 1747/1 1790/1 +f 1785/1 1777/1 1771/1 +f 1761/1 1780/1 1791/1 +f 1767/1 1752/1 1788/1 +f 1789/1 1776/1 1709/1 +f 1790/1 1747/1 1768/1 +f 1771/1 1773/1 1764/1 +f 1785/1 1771/1 1764/1 +f 1764/1 1772/1 1792/1 +f 1763/1 1779/1 1793/1 +f 1790/1 1768/1 1784/1 +f 1792/1 1772/1 1759/1 +f 1775/1 1763/1 1793/1 +f 1778/1 1751/1 1794/1 +f 1794/1 1761/1 1791/1 +f 1751/1 1761/1 1794/1 +f 1795/1 1770/1 1782/1 +f 1785/1 1764/1 1792/1 +f 1792/1 1759/1 1783/1 +f 1796/1 1775/1 1793/1 +f 1781/1 1775/1 1796/1 +f 1797/1 1770/1 1795/1 +f 1784/1 1770/1 1797/1 +f 1792/1 1783/1 1798/1 +f 1788/1 1778/1 1794/1 +f 1798/1 1783/1 1756/1 +f 1798/1 1756/1 1790/1 +f 1791/1 1785/1 1792/1 +f 1780/1 1785/1 1791/1 +f 1795/1 1782/1 1787/1 +f 1706/1 1781/1 1796/1 +f 1790/1 1784/1 1797/1 +f 1786/1 1767/1 1788/1 +f 1791/1 1792/1 1798/1 +f 1799/1 1665/1 1672/1 +f 1672/1 1664/1 1800/1 +f 1800/1 1664/1 1680/1 +f 1801/1 1672/1 1800/1 +f 1799/1 1672/1 1802/1 +f 1802/1 1672/1 1803/1 +f 1803/1 1672/1 1801/1 +f 1682/1 1665/1 1799/1 +f 1799/1 1802/1 1804/1 +f 1802/1 1803/1 1805/1 +f 1804/1 1802/1 1806/1 +f 1805/1 1803/1 1807/1 +f 1803/1 1801/1 1808/1 +f 1809/1 1802/1 1805/1 +f 1800/1 1680/1 1703/1 +f 1704/1 1682/1 1799/1 +f 1807/1 1803/1 1808/1 +f 1704/1 1799/1 1804/1 +f 1801/1 1800/1 1703/1 +f 1704/1 1804/1 1810/1 +f 1809/1 1805/1 1811/1 +f 1811/1 1805/1 1812/1 +f 1806/1 1802/1 1809/1 +f 1813/1 1801/1 1703/1 +f 1806/1 1809/1 1814/1 +f 1808/1 1801/1 1813/1 +f 1810/1 1804/1 1806/1 +f 1815/1 1805/1 1807/1 +f 1703/1 1692/1 1705/1 +f 1810/1 1705/1 1704/1 +f 1810/1 1806/1 1816/1 +f 1811/1 1812/1 1817/1 +f 1817/1 1812/1 1818/1 +f 1819/1 1808/1 1813/1 +f 1820/1 1805/1 1815/1 +f 1807/1 1808/1 1819/1 +f 1812/1 1805/1 1820/1 +f 1816/1 1806/1 1814/1 +f 1815/1 1807/1 1819/1 +f 1818/1 1812/1 1821/1 +f 1822/1 1814/1 1809/1 +f 1816/1 1814/1 1823/1 +f 1824/1 1703/1 1705/1 +f 1813/1 1703/1 1824/1 +f 1824/1 1810/1 1816/1 +f 1809/1 1811/1 1825/1 +f 1826/1 1811/1 1817/1 +f 1821/1 1812/1 1820/1 +f 1824/1 1705/1 1810/1 +f 1822/1 1809/1 1825/1 +f 1823/1 1814/1 1822/1 +f 1817/1 1818/1 1827/1 +f 1825/1 1811/1 1826/1 +f 1815/1 1819/1 1828/1 +f 1824/1 1816/1 1823/1 +f 1819/1 1813/1 1828/1 +f 1829/1 1817/1 1827/1 +f 1828/1 1813/1 1824/1 +f 1827/1 1818/1 1821/1 +f 1828/1 1824/1 1823/1 +f 1830/1 1817/1 1829/1 +f 1831/1 1823/1 1822/1 +f 1832/1 1825/1 1826/1 +f 1826/1 1817/1 1833/1 +f 1821/1 1820/1 1834/1 +f 1833/1 1817/1 1835/1 +f 1835/1 1817/1 1830/1 +f 1820/1 1815/1 1834/1 +f 1834/1 1815/1 1828/1 +f 1829/1 1827/1 1836/1 +f 1837/1 1821/1 1834/1 +f 1828/1 1823/1 1831/1 +f 1838/1 1826/1 1833/1 +f 1832/1 1826/1 1838/1 +f 1831/1 1822/1 1825/1 +f 1839/1 1829/1 1836/1 +f 1827/1 1821/1 1837/1 +f 1834/1 1828/1 1831/1 +f 1838/1 1833/1 1840/1 +f 1841/1 1835/1 1830/1 +f 1830/1 1829/1 1839/1 +f 1833/1 1835/1 1842/1 +f 1836/1 1827/1 1837/1 +f 1842/1 1835/1 1843/1 +f 1843/1 1835/1 1841/1 +f 1831/1 1825/1 1832/1 +f 1844/1 1830/1 1839/1 +f 1840/1 1833/1 1845/1 +f 1845/1 1833/1 1842/1 +f 1841/1 1830/1 1844/1 +f 1837/1 1834/1 1846/1 +f 1846/1 1831/1 1832/1 +f 1847/1 1832/1 1838/1 +f 1834/1 1831/1 1846/1 +f 1836/1 1837/1 1848/1 +f 1839/1 1836/1 1849/1 +f 1850/1 1842/1 1843/1 +f 1847/1 1838/1 1840/1 +f 1845/1 1842/1 1851/1 +f 1849/1 1836/1 1848/1 +f 1848/1 1837/1 1846/1 +f 1851/1 1842/1 1850/1 +f 1847/1 1840/1 1852/1 +f 1853/1 1839/1 1849/1 +f 1854/1 1851/1 1850/1 +f 1855/1 1841/1 1844/1 +f 1846/1 1832/1 1847/1 +f 1843/1 1841/1 1855/1 +f 1844/1 1839/1 1853/1 +f 1856/1 1850/1 1843/1 +f 1848/1 1846/1 1847/1 +f 1840/1 1845/1 1857/1 +f 1858/1 1844/1 1853/1 +f 1848/1 1847/1 1852/1 +f 1859/1 1854/1 1850/1 +f 1843/1 1855/1 1860/1 +f 1852/1 1840/1 1857/1 +f 1855/1 1844/1 1858/1 +f 1857/1 1845/1 1861/1 +f 1861/1 1845/1 1851/1 +f 1856/1 1843/1 1860/1 +f 1862/1 1848/1 1852/1 +f 1863/1 1850/1 1856/1 +f 1859/1 1850/1 1864/1 +f 1849/1 1848/1 1862/1 +f 1864/1 1850/1 1863/1 +f 1862/1 1852/1 1857/1 +f 1865/1 1856/1 1860/1 +f 1853/1 1849/1 1862/1 +f 1860/1 1855/1 1866/1 +f 1867/1 1856/1 1865/1 +f 1868/1 1851/1 1854/1 +f 1861/1 1851/1 1868/1 +f 1863/1 1856/1 1867/1 +f 1854/1 1859/1 1869/1 +f 1870/1 1860/1 1866/1 +f 1866/1 1855/1 1858/1 +f 1864/1 1863/1 1871/1 +f 1862/1 1857/1 1861/1 +f 1858/1 1853/1 1872/1 +f 1872/1 1853/1 1862/1 +f 1859/1 1864/1 1873/1 +f 1874/1 1863/1 1875/1 +f 1875/1 1863/1 1867/1 +f 1872/1 1862/1 1861/1 +f 1865/1 1860/1 1870/1 +f 1876/1 1864/1 1871/1 +f 1871/1 1863/1 1874/1 +f 1866/1 1858/1 1872/1 +f 1868/1 1854/1 1869/1 +f 1872/1 1861/1 1868/1 +f 1873/1 1864/1 1876/1 +f 1869/1 1859/1 1873/1 +f 1876/1 1871/1 1877/1 +f 1874/1 1875/1 1878/1 +f 1879/1 1871/1 1874/1 +f 1880/1 1876/1 1877/1 +f 1865/1 1870/1 1881/1 +f 1870/1 1866/1 1872/1 +f 1882/1 1867/1 1865/1 +f 1877/1 1871/1 1879/1 +f 1883/1 1869/1 1873/1 +f 1875/1 1867/1 1882/1 +f 1881/1 1870/1 1872/1 +f 1884/1 1873/1 1876/1 +f 1872/1 1868/1 1869/1 +f 1885/1 1880/1 1877/1 +f 1886/1 1872/1 1869/1 +f 1879/1 1874/1 1878/1 +f 1882/1 1865/1 1881/1 +f 1883/1 1873/1 1884/1 +f 1884/1 1876/1 1880/1 +f 1877/1 1879/1 1887/1 +f 1878/1 1875/1 1882/1 +f 1886/1 1881/1 1872/1 +f 1885/1 1877/1 1888/1 +f 1889/1 1877/1 1887/1 +f 1886/1 1869/1 1883/1 +f 1888/1 1877/1 1889/1 +f 1890/1 1883/1 1884/1 +f 1891/1 1881/1 1886/1 +f 1892/1 1885/1 1888/1 +f 1882/1 1881/1 1891/1 +f 1886/1 1883/1 1890/1 +f 1884/1 1880/1 1893/1 +f 1894/1 1885/1 1892/1 +f 1878/1 1882/1 1891/1 +f 1895/1 1879/1 1878/1 +f 1896/1 1888/1 1897/1 +f 1891/1 1886/1 1890/1 +f 1890/1 1884/1 1893/1 +f 1893/1 1880/1 1898/1 +f 1897/1 1888/1 1889/1 +f 1895/1 1878/1 1891/1 +f 1899/1 1889/1 1887/1 +f 1898/1 1880/1 1885/1 +f 1900/1 1888/1 1896/1 +f 1901/1 1879/1 1895/1 +f 1892/1 1888/1 1900/1 +f 1887/1 1879/1 1901/1 +f 1897/1 1889/1 1899/1 +f 1898/1 1885/1 1894/1 +f 1891/1 1890/1 1893/1 +f 1894/1 1892/1 1902/1 +f 1895/1 1891/1 1893/1 +f 1900/1 1896/1 1903/1 +f 1903/1 1896/1 1904/1 +f 1902/1 1892/1 1900/1 +f 1905/1 1887/1 1901/1 +f 1902/1 1900/1 1906/1 +f 1893/1 1898/1 1907/1 +f 1899/1 1887/1 1905/1 +f 1908/1 1896/1 1897/1 +f 1895/1 1893/1 1907/1 +f 1907/1 1898/1 1894/1 +f 1894/1 1902/1 1909/1 +f 1903/1 1904/1 1910/1 +f 1910/1 1904/1 1911/1 +f 1912/1 1899/1 1905/1 +f 1901/1 1895/1 1907/1 +f 1913/1 1896/1 1908/1 +f 1897/1 1899/1 1912/1 +f 1904/1 1896/1 1913/1 +f 1909/1 1902/1 1906/1 +f 1908/1 1897/1 1912/1 +f 1911/1 1904/1 1913/1 +f 1914/1 1906/1 1900/1 +f 1909/1 1906/1 1915/1 +f 1916/1 1901/1 1907/1 +f 1916/1 1907/1 1894/1 +f 1916/1 1894/1 1909/1 +f 1900/1 1903/1 1917/1 +f 1918/1 1903/1 1910/1 +f 1914/1 1900/1 1917/1 +f 1911/1 1913/1 1919/1 +f 1915/1 1906/1 1914/1 +f 1910/1 1911/1 1920/1 +f 1917/1 1903/1 1918/1 +f 1908/1 1912/1 1921/1 +f 1913/1 1908/1 1922/1 +f 1905/1 1901/1 1916/1 +f 1916/1 1909/1 1915/1 +f 1912/1 1905/1 1921/1 +f 1923/1 1910/1 1920/1 +f 1921/1 1905/1 1916/1 +f 1920/1 1911/1 1919/1 +f 1921/1 1916/1 1915/1 +f 1924/1 1910/1 1923/1 +f 1925/1 1915/1 1914/1 +f 1926/1 1917/1 1918/1 +f 1918/1 1910/1 1927/1 +f 1928/1 1913/1 1922/1 +f 1927/1 1910/1 1929/1 +f 1929/1 1910/1 1924/1 +f 1922/1 1908/1 1921/1 +f 1923/1 1920/1 1930/1 +f 1919/1 1913/1 1928/1 +f 1921/1 1915/1 1925/1 +f 1931/1 1918/1 1927/1 +f 1926/1 1918/1 1931/1 +f 1925/1 1914/1 1917/1 +f 1932/1 1923/1 1930/1 +f 1920/1 1919/1 1933/1 +f 1922/1 1921/1 1925/1 +f 1931/1 1927/1 1934/1 +f 1935/1 1929/1 1924/1 +f 1924/1 1923/1 1932/1 +f 1927/1 1929/1 1936/1 +f 1937/1 1917/1 1926/1 +f 1936/1 1929/1 1938/1 +f 1938/1 1929/1 1935/1 +f 1933/1 1919/1 1928/1 +f 1930/1 1920/1 1933/1 +f 1925/1 1917/1 1937/1 +f 1928/1 1922/1 1925/1 +f 1939/1 1924/1 1932/1 +f 1940/1 1936/1 1938/1 +f 1934/1 1927/1 1941/1 +f 1941/1 1927/1 1936/1 +f 1935/1 1924/1 1939/1 +f 1937/1 1926/1 1942/1 +f 1942/1 1926/1 1931/1 +f 1928/1 1925/1 1937/1 +f 1942/1 1931/1 1934/1 +f 1938/1 1935/1 1943/1 +f 1930/1 1933/1 1944/1 +f 1942/1 1934/1 1945/1 +f 1943/1 1935/1 1939/1 +f 1946/1 1940/1 1938/1 +f 1941/1 1936/1 1947/1 +f 1932/1 1930/1 1944/1 +f 1933/1 1928/1 1937/1 +f 1940/1 1946/1 1948/1 +f 1947/1 1936/1 1940/1 +f 1933/1 1937/1 1942/1 +f 1934/1 1941/1 1949/1 +f 1950/1 1938/1 1943/1 +f 1944/1 1933/1 1942/1 +f 1946/1 1938/1 1950/1 +f 1947/1 1940/1 1951/1 +f 1952/1 1932/1 1944/1 +f 1945/1 1934/1 1949/1 +f 1939/1 1932/1 1952/1 +f 1943/1 1939/1 1953/1 +f 1949/1 1941/1 1954/1 +f 1954/1 1941/1 1947/1 +f 1951/1 1940/1 1948/1 +f 1955/1 1942/1 1945/1 +f 1944/1 1942/1 1955/1 +f 1948/1 1946/1 1956/1 +f 1955/1 1945/1 1949/1 +f 1953/1 1939/1 1952/1 +f 1957/1 1943/1 1953/1 +f 1952/1 1944/1 1955/1 +f 1958/1 1948/1 1956/1 +f 1957/1 1953/1 1952/1 +f 1956/1 1946/1 1959/1 +f 1950/1 1943/1 1960/1 +f 1960/1 1943/1 1957/1 +f 1959/1 1946/1 1950/1 +f 1954/1 1947/1 1961/1 +f 1961/1 1947/1 1951/1 +f 1962/1 1948/1 1958/1 +f 1951/1 1948/1 1963/1 +f 1958/1 1956/1 1964/1 +f 1963/1 1948/1 1962/1 +f 1955/1 1949/1 1954/1 +f 1957/1 1952/1 1955/1 +f 1965/1 1955/1 1954/1 +f 1964/1 1956/1 1966/1 +f 1957/1 1955/1 1965/1 +f 1963/1 1962/1 1967/1 +f 1968/1 1950/1 1960/1 +f 1966/1 1956/1 1969/1 +f 1961/1 1951/1 1963/1 +f 1965/1 1954/1 1961/1 +f 1956/1 1959/1 1970/1 +f 1959/1 1950/1 1968/1 +f 1969/1 1956/1 1971/1 +f 1971/1 1956/1 1970/1 +f 1958/1 1964/1 1972/1 +f 1973/1 1966/1 1969/1 +f 1972/1 1964/1 1966/1 +f 1960/1 1957/1 1965/1 +f 1974/1 1959/1 1968/1 +f 1974/1 1968/1 1960/1 +f 1962/1 1958/1 1975/1 +f 1970/1 1959/1 1974/1 +f 1976/1 1966/1 1973/1 +f 1975/1 1958/1 1972/1 +f 1965/1 1961/1 1963/1 +f 1967/1 1962/1 1977/1 +f 1978/1 1960/1 1965/1 +f 1979/1 1972/1 1966/1 +f 1978/1 1965/1 1963/1 +f 1973/1 1969/1 1980/1 +f 1980/1 1969/1 1971/1 +f 1974/1 1960/1 1978/1 +f 1977/1 1962/1 1975/1 +f 1975/1 1972/1 1981/1 +f 1979/1 1966/1 1982/1 +f 1982/1 1966/1 1976/1 +f 1981/1 1972/1 1979/1 +f 1983/1 1963/1 1967/1 +f 1978/1 1963/1 1983/1 +f 1983/1 1967/1 1977/1 +f 1976/1 1973/1 1984/1 +f 1984/1 1973/1 1980/1 +f 1985/1 1979/1 1982/1 +f 1974/1 1978/1 1983/1 +f 1977/1 1975/1 1986/1 +f 1975/1 1981/1 1986/1 +f 1970/1 1974/1 1983/1 +f 1987/1 1979/1 1985/1 +f 1971/1 1970/1 1988/1 +f 1986/1 1981/1 1989/1 +f 1990/1 1982/1 1976/1 +f 1988/1 1970/1 1983/1 +f 1983/1 1977/1 1986/1 +f 1989/1 1981/1 1979/1 +f 1991/1 1982/1 1990/1 +f 1985/1 1982/1 1991/1 +f 1990/1 1976/1 1992/1 +f 1992/1 1976/1 1984/1 +f 1989/1 1979/1 1987/1 +f 1993/1 1984/1 1980/1 +f 1980/1 1971/1 1994/1 +f 1994/1 1971/1 1988/1 +f 1989/1 1987/1 1995/1 +f 1987/1 1985/1 1996/1 +f 1988/1 1983/1 1986/1 +f 1991/1 1990/1 1997/1 +f 1997/1 1990/1 1998/1 +f 1996/1 1985/1 1991/1 +f 1998/1 1990/1 1999/1 +f 1996/1 1991/1 2000/1 +f 1993/1 1980/1 1994/1 +f 1999/1 1990/1 1992/1 +f 1995/1 1987/1 1996/1 +f 1988/1 1986/1 1989/1 +f 1995/1 1996/1 2001/1 +f 1992/1 1984/1 2002/1 +f 1994/1 1988/1 1989/1 +f 1997/1 1998/1 2003/1 +f 2003/1 1998/1 2004/1 +f 1984/1 1993/1 2002/1 +f 1998/1 1999/1 2005/1 +f 2001/1 1996/1 2000/1 +f 2006/1 1992/1 2002/1 +f 2004/1 1998/1 2007/1 +f 2002/1 1993/1 2008/1 +f 1994/1 1989/1 1995/1 +f 2009/1 2000/1 1991/1 +f 2001/1 2000/1 2010/1 +f 2008/1 1993/1 1994/1 +f 1999/1 1992/1 2006/1 +f 1991/1 1997/1 2011/1 +f 2011/1 1997/1 2003/1 +f 2007/1 1998/1 2005/1 +f 2008/1 1994/1 1995/1 +f 2009/1 1991/1 2011/1 +f 2012/1 1995/1 2001/1 +f 2013/1 2011/1 2003/1 +f 2010/1 2000/1 2009/1 +f 2003/1 2004/1 2014/1 +f 2008/1 1995/1 2012/1 +f 2012/1 2001/1 2010/1 +f 2015/1 2003/1 2014/1 +f 2012/1 2002/1 2008/1 +f 2014/1 2004/1 2007/1 +f 2016/1 2003/1 2015/1 +f 2013/1 2003/1 2017/1 +f 2005/1 1999/1 2006/1 +f 2006/1 2002/1 2012/1 +f 2007/1 2005/1 2018/1 +f 2017/1 2003/1 2019/1 +f 2019/1 2003/1 2016/1 +f 2005/1 2006/1 2018/1 +f 2015/1 2014/1 2020/1 +f 2021/1 2011/1 2013/1 +f 2010/1 2009/1 2022/1 +f 2009/1 2011/1 2022/1 +f 2023/1 2007/1 2018/1 +f 2022/1 2011/1 2021/1 +f 2024/1 2006/1 2012/1 +f 2025/1 2013/1 2017/1 +f 2024/1 2012/1 2010/1 +f 2021/1 2013/1 2025/1 +f 2018/1 2006/1 2024/1 +f 2026/1 2015/1 2020/1 +f 2024/1 2010/1 2022/1 +f 2014/1 2007/1 2023/1 +f 2025/1 2017/1 2027/1 +f 2028/1 2019/1 2016/1 +f 2016/1 2015/1 2026/1 +f 2017/1 2019/1 2029/1 +f 2020/1 2014/1 2023/1 +f 2029/1 2019/1 2030/1 +f 2030/1 2019/1 2028/1 +f 2024/1 2022/1 2021/1 +f 2031/1 2016/1 2026/1 +f 2027/1 2017/1 2032/1 +f 2032/1 2017/1 2029/1 +f 2028/1 2016/1 2031/1 +f 2023/1 2018/1 2033/1 +f 2033/1 2024/1 2021/1 +f 2034/1 2021/1 2025/1 +f 2018/1 2024/1 2033/1 +f 2020/1 2023/1 2035/1 +f 2026/1 2020/1 2036/1 +f 2037/1 2028/1 2031/1 +f 2038/1 2029/1 2030/1 +f 2034/1 2025/1 2027/1 +f 2032/1 2029/1 2039/1 +f 2035/1 2023/1 2033/1 +f 2039/1 2029/1 2038/1 +f 2034/1 2027/1 2040/1 +f 2031/1 2026/1 2036/1 +f 2041/1 2039/1 2038/1 +f 2033/1 2021/1 2034/1 +f 2030/1 2028/1 2037/1 +f 2036/1 2020/1 2035/1 +f 2042/1 2030/1 2037/1 +f 2043/1 2038/1 2030/1 +f 2044/1 2033/1 2034/1 +f 2035/1 2033/1 2044/1 +f 2027/1 2032/1 2045/1 +f 2044/1 2034/1 2040/1 +f 2046/1 2041/1 2038/1 +f 2047/1 2031/1 2036/1 +f 2040/1 2027/1 2045/1 +f 2036/1 2035/1 2044/1 +f 2037/1 2031/1 2047/1 +f 2045/1 2032/1 2048/1 +f 2048/1 2032/1 2039/1 +f 2043/1 2030/1 2049/1 +f 2049/1 2030/1 2042/1 +f 2050/1 2038/1 2043/1 +f 2046/1 2038/1 2051/1 +f 2051/1 2038/1 2050/1 +f 2047/1 2036/1 2044/1 +f 2042/1 2037/1 2052/1 +f 2044/1 2040/1 2045/1 +f 2053/1 2043/1 2049/1 +f 2048/1 2039/1 2054/1 +f 2054/1 2039/1 2041/1 +f 2055/1 2047/1 2044/1 +f 2055/1 2044/1 2045/1 +f 2050/1 2043/1 2053/1 +f 2041/1 2046/1 2056/1 +f 2057/1 2050/1 2053/1 +f 2037/1 2047/1 2052/1 +f 2051/1 2050/1 2058/1 +f 2055/1 2045/1 2048/1 +f 2046/1 2051/1 2059/1 +f 2060/1 2050/1 2057/1 +f 2052/1 2047/1 2055/1 +f 2059/1 2051/1 2058/1 +f 2058/1 2050/1 2060/1 +f 2054/1 2041/1 2056/1 +f 2061/1 2042/1 2052/1 +f 2055/1 2048/1 2054/1 +f 2056/1 2046/1 2062/1 +f 2062/1 2046/1 2059/1 +f 2049/1 2042/1 2061/1 +f 2059/1 2058/1 2063/1 +f 2060/1 2057/1 2064/1 +f 2065/1 2058/1 2060/1 +f 2066/1 2059/1 2063/1 +f 2057/1 2053/1 2067/1 +f 2063/1 2058/1 2065/1 +f 2053/1 2049/1 2068/1 +f 2052/1 2055/1 2054/1 +f 2062/1 2059/1 2069/1 +f 2068/1 2049/1 2061/1 +f 2052/1 2054/1 2056/1 +f 2070/1 2066/1 2063/1 +f 2061/1 2052/1 2056/1 +f 2065/1 2060/1 2071/1 +f 2071/1 2060/1 2064/1 +f 2064/1 2057/1 2067/1 +f 2067/1 2053/1 2068/1 +f 2069/1 2059/1 2066/1 +f 2063/1 2065/1 2072/1 +f 2070/1 2063/1 2073/1 +f 2074/1 2063/1 2072/1 +f 2073/1 2063/1 2074/1 +f 2061/1 2056/1 2075/1 +f 2075/1 2056/1 2062/1 +f 2072/1 2065/1 2071/1 +f 2076/1 2070/1 2073/1 +f 2062/1 2069/1 2077/1 +f 2068/1 2061/1 2075/1 +f 2069/1 2066/1 2077/1 +f 2071/1 2064/1 2078/1 +f 2079/1 2070/1 2076/1 +f 2075/1 2067/1 2068/1 +f 2064/1 2067/1 2078/1 +f 2080/1 2073/1 2081/1 +f 2077/1 2066/1 2082/1 +f 2081/1 2073/1 2074/1 +f 2078/1 2067/1 2075/1 +f 2083/1 2074/1 2072/1 +f 2075/1 2062/1 2077/1 +f 2082/1 2066/1 2070/1 +f 2084/1 2073/1 2080/1 +f 2076/1 2073/1 2084/1 +f 2081/1 2074/1 2083/1 +f 2082/1 2070/1 2079/1 +f 2071/1 2078/1 2085/1 +f 2082/1 2079/1 2086/1 +f 2079/1 2076/1 2087/1 +f 2078/1 2075/1 2077/1 +f 2084/1 2080/1 2088/1 +f 2088/1 2080/1 2089/1 +f 2087/1 2076/1 2084/1 +f 2087/1 2084/1 2090/1 +f 2091/1 2071/1 2085/1 +f 2086/1 2079/1 2087/1 +f 2072/1 2071/1 2091/1 +f 2092/1 2080/1 2081/1 +f 2078/1 2077/1 2082/1 +f 2086/1 2087/1 2093/1 +f 2085/1 2078/1 2082/1 +f 2088/1 2089/1 2094/1 +f 2090/1 2084/1 2088/1 +f 2083/1 2072/1 2091/1 +f 2095/1 2088/1 2094/1 +f 2081/1 2083/1 2096/1 +f 2096/1 2083/1 2091/1 +f 2089/1 2080/1 2092/1 +f 2093/1 2087/1 2090/1 +f 2097/1 2081/1 2096/1 +f 2094/1 2089/1 2098/1 +f 2085/1 2082/1 2086/1 +f 2099/1 2090/1 2088/1 +f 2093/1 2090/1 2100/1 +f 2088/1 2095/1 2101/1 +f 2091/1 2085/1 2096/1 +f 2098/1 2089/1 2092/1 +f 2096/1 2085/1 2086/1 +f 2102/1 2095/1 2094/1 +f 2092/1 2081/1 2097/1 +f 2103/1 2095/1 2102/1 +f 2099/1 2088/1 2101/1 +f 2104/1 2086/1 2093/1 +f 2094/1 2098/1 2105/1 +f 2102/1 2094/1 2106/1 +f 2106/1 2094/1 2107/1 +f 2100/1 2090/1 2099/1 +f 2101/1 2095/1 2103/1 +f 2108/1 2092/1 2097/1 +f 2096/1 2086/1 2104/1 +f 2104/1 2093/1 2100/1 +f 2109/1 2103/1 2102/1 +f 2107/1 2094/1 2105/1 +f 2110/1 2101/1 2103/1 +f 2097/1 2096/1 2104/1 +f 2098/1 2092/1 2108/1 +f 2102/1 2106/1 2111/1 +f 2112/1 2107/1 2105/1 +f 2100/1 2099/1 2113/1 +f 2099/1 2101/1 2113/1 +f 2105/1 2098/1 2114/1 +f 2114/1 2098/1 2108/1 +f 2108/1 2097/1 2115/1 +f 2113/1 2101/1 2110/1 +f 2115/1 2097/1 2104/1 +f 2113/1 2104/1 2100/1 +f 2106/1 2107/1 2112/1 +f 2109/1 2102/1 2111/1 +f 2116/1 2103/1 2109/1 +f 2110/1 2103/1 2116/1 +f 2115/1 2104/1 2113/1 +f 2111/1 2106/1 2117/1 +f 2116/1 2109/1 2118/1 +f 2119/1 2105/1 2114/1 +f 2120/1 2109/1 2111/1 +f 2117/1 2106/1 2112/1 +f 2120/1 2111/1 2121/1 +f 2122/1 2111/1 2117/1 +f 2112/1 2105/1 2119/1 +f 2121/1 2111/1 2122/1 +f 2108/1 2115/1 2123/1 +f 2124/1 2109/1 2120/1 +f 2118/1 2109/1 2124/1 +f 2122/1 2117/1 2125/1 +f 2114/1 2108/1 2123/1 +f 2123/1 2113/1 2110/1 +f 2126/1 2110/1 2116/1 +f 2115/1 2113/1 2123/1 +f 2119/1 2114/1 2127/1 +f 2128/1 2112/1 2119/1 +f 2126/1 2116/1 2118/1 +f 2129/1 2120/1 2121/1 +f 2127/1 2114/1 2123/1 +f 2126/1 2118/1 2130/1 +f 2117/1 2112/1 2128/1 +f 2131/1 2122/1 2125/1 +f 2123/1 2110/1 2126/1 +f 2124/1 2120/1 2132/1 +f 2121/1 2122/1 2131/1 +f 2125/1 2117/1 2128/1 +f 2128/1 2119/1 2127/1 +f 2129/1 2121/1 2133/1 +f 2132/1 2120/1 2129/1 +f 2134/1 2123/1 2126/1 +f 2133/1 2121/1 2135/1 +f 2127/1 2123/1 2134/1 +f 2118/1 2124/1 2136/1 +f 2137/1 2125/1 2128/1 +f 2134/1 2126/1 2130/1 +f 2138/1 2121/1 2131/1 +f 2132/1 2129/1 2139/1 +f 2135/1 2121/1 2138/1 +f 2130/1 2118/1 2136/1 +f 2131/1 2125/1 2137/1 +f 2128/1 2127/1 2140/1 +f 2137/1 2128/1 2141/1 +f 2142/1 2124/1 2132/1 +f 2136/1 2124/1 2142/1 +f 2139/1 2129/1 2133/1 +f 2143/1 2135/1 2138/1 +f 2144/1 2135/1 2143/1 +f 2133/1 2135/1 2144/1 +f 2134/1 2130/1 2136/1 +f 2145/1 2131/1 2137/1 +f 2146/1 2143/1 2138/1 +f 2140/1 2127/1 2134/1 +f 2147/1 2133/1 2144/1 +f 2141/1 2128/1 2140/1 +f 2138/1 2131/1 2148/1 +f 2148/1 2131/1 2145/1 +f 2149/1 2143/1 2146/1 +f 2140/1 2134/1 2136/1 +f 2150/1 2132/1 2139/1 +f 2142/1 2132/1 2150/1 +f 2151/1 2133/1 2147/1 +f 2144/1 2143/1 2149/1 +f 2139/1 2133/1 2152/1 +f 2145/1 2137/1 2141/1 +f 2147/1 2144/1 2153/1 +f 2152/1 2133/1 2151/1 +f 2140/1 2136/1 2142/1 +f 2154/1 2144/1 2155/1 +f 2155/1 2144/1 2149/1 +f 2156/1 2140/1 2142/1 +f 2152/1 2151/1 2157/1 +f 2146/1 2138/1 2148/1 +f 2158/1 2155/1 2149/1 +f 2159/1 2147/1 2153/1 +f 2153/1 2144/1 2154/1 +f 2150/1 2139/1 2152/1 +f 2156/1 2142/1 2150/1 +f 2141/1 2140/1 2156/1 +f 2145/1 2141/1 2156/1 +f 2159/1 2153/1 2160/1 +f 2154/1 2155/1 2161/1 +f 2161/1 2155/1 2158/1 +f 2162/1 2159/1 2160/1 +f 2148/1 2145/1 2156/1 +f 2163/1 2149/1 2146/1 +f 2163/1 2146/1 2148/1 +f 2151/1 2147/1 2164/1 +f 2158/1 2149/1 2163/1 +f 2164/1 2147/1 2159/1 +f 2156/1 2150/1 2152/1 +f 2157/1 2151/1 2165/1 +f 2166/1 2148/1 2156/1 +f 2167/1 2162/1 2160/1 +f 2166/1 2156/1 2152/1 +f 2153/1 2154/1 2168/1 +f 2168/1 2154/1 2161/1 +f 2163/1 2148/1 2166/1 +f 2165/1 2151/1 2164/1 +f 2164/1 2159/1 2162/1 +f 2160/1 2153/1 2169/1 +f 2167/1 2160/1 2170/1 +f 2171/1 2160/1 2169/1 +f 2172/1 2152/1 2157/1 +f 2170/1 2160/1 2171/1 +f 2166/1 2152/1 2172/1 +f 2172/1 2157/1 2165/1 +f 2169/1 2153/1 2168/1 +f 2173/1 2167/1 2170/1 +f 2163/1 2166/1 2172/1 +f 2165/1 2164/1 2174/1 +f 2164/1 2162/1 2174/1 +f 2158/1 2163/1 2172/1 +f 2175/1 2167/1 2173/1 +f 2161/1 2158/1 2176/1 +f 2177/1 2170/1 2178/1 +f 2174/1 2162/1 2179/1 +f 2178/1 2170/1 2171/1 +f 2176/1 2158/1 2172/1 +f 2180/1 2171/1 2169/1 +f 2172/1 2165/1 2174/1 +f 2179/1 2162/1 2167/1 +f 2181/1 2170/1 2177/1 +f 2173/1 2170/1 2181/1 +f 2178/1 2171/1 2180/1 +f 2179/1 2167/1 2175/1 +f 2168/1 2161/1 2182/1 +f 2182/1 2161/1 2176/1 +f 2179/1 2175/1 2183/1 +f 2175/1 2173/1 2184/1 +f 2176/1 2172/1 2174/1 +f 2181/1 2177/1 2185/1 +f 2185/1 2177/1 2186/1 +f 2184/1 2173/1 2181/1 +f 2184/1 2181/1 2187/1 +f 2188/1 2168/1 2182/1 +f 2183/1 2175/1 2184/1 +f 2169/1 2168/1 2188/1 +f 2189/1 2177/1 2178/1 +f 2176/1 2174/1 2179/1 +f 2183/1 2184/1 2190/1 +f 2182/1 2176/1 2179/1 +f 2185/1 2186/1 2191/1 +f 2187/1 2181/1 2185/1 +f 2180/1 2169/1 2188/1 +f 2192/1 2185/1 2191/1 +f 2178/1 2180/1 2193/1 +f 2193/1 2180/1 2188/1 +f 2186/1 2177/1 2189/1 +f 2190/1 2184/1 2187/1 +f 2194/1 2178/1 2193/1 +f 2191/1 2186/1 2195/1 +f 2182/1 2179/1 2183/1 +f 2196/1 2187/1 2185/1 +f 2190/1 2187/1 2197/1 +f 2185/1 2192/1 2198/1 +f 2188/1 2182/1 2193/1 +f 2195/1 2186/1 2189/1 +f 2193/1 2182/1 2183/1 +f 2199/1 2192/1 2191/1 +f 2189/1 2178/1 2194/1 +f 2200/1 2192/1 2199/1 +f 2196/1 2185/1 2198/1 +f 2201/1 2183/1 2190/1 +f 2191/1 2195/1 2202/1 +f 2199/1 2191/1 2203/1 +f 2203/1 2191/1 2204/1 +f 2197/1 2187/1 2196/1 +f 2198/1 2192/1 2200/1 +f 2205/1 2189/1 2194/1 +f 2193/1 2183/1 2201/1 +f 2201/1 2190/1 2197/1 +f 2206/1 2200/1 2199/1 +f 2204/1 2191/1 2202/1 +f 2207/1 2198/1 2200/1 +f 2194/1 2193/1 2201/1 +f 2195/1 2189/1 2205/1 +f 2199/1 2203/1 2208/1 +f 2209/1 2204/1 2202/1 +f 2197/1 2196/1 2210/1 +f 2196/1 2198/1 2210/1 +f 2202/1 2195/1 2211/1 +f 2211/1 2195/1 2205/1 +f 2205/1 2194/1 2212/1 +f 2210/1 2198/1 2207/1 +f 2212/1 2194/1 2201/1 +f 2210/1 2201/1 2197/1 +f 2203/1 2204/1 2209/1 +f 2206/1 2199/1 2208/1 +f 2207/1 2200/1 2213/1 +f 2213/1 2200/1 2206/1 +f 2214/1 2203/1 2209/1 +f 2212/1 2201/1 2210/1 +f 2208/1 2203/1 2214/1 +f 2213/1 2206/1 2215/1 +f 2209/1 2202/1 2211/1 +f 2216/1 2206/1 2208/1 +f 2216/1 2208/1 2217/1 +f 2218/1 2208/1 2214/1 +f 2217/1 2208/1 2218/1 +f 2205/1 2212/1 2219/1 +f 2215/1 2206/1 2220/1 +f 2220/1 2206/1 2216/1 +f 2218/1 2214/1 2221/1 +f 2211/1 2205/1 2219/1 +f 2219/1 2210/1 2207/1 +f 2222/1 2217/1 2218/1 +f 2223/1 2207/1 2213/1 +f 2212/1 2210/1 2219/1 +f 2209/1 2211/1 2224/1 +f 2223/1 2213/1 2215/1 +f 2225/1 2216/1 2217/1 +f 2224/1 2211/1 2219/1 +f 2223/1 2215/1 2226/1 +f 2222/1 2218/1 2221/1 +f 2219/1 2207/1 2223/1 +f 2220/1 2216/1 2227/1 +f 2214/1 2209/1 2228/1 +f 2228/1 2209/1 2224/1 +f 2225/1 2217/1 2229/1 +f 2227/1 2216/1 2225/1 +f 2224/1 2219/1 2223/1 +f 2229/1 2217/1 2230/1 +f 2224/1 2223/1 2226/1 +f 2227/1 2225/1 2231/1 +f 2232/1 2214/1 2228/1 +f 2217/1 2222/1 2233/1 +f 2226/1 2215/1 2220/1 +f 2221/1 2214/1 2232/1 +f 2222/1 2221/1 2234/1 +f 2235/1 2220/1 2227/1 +f 2231/1 2225/1 2229/1 +f 2230/1 2217/1 2233/1 +f 2236/1 2224/1 2226/1 +f 2229/1 2230/1 2237/1 +f 2237/1 2230/1 2238/1 +f 2236/1 2226/1 2220/1 +f 2234/1 2221/1 2232/1 +f 2239/1 2222/1 2234/1 +f 2240/1 2230/1 2233/1 +f 2232/1 2228/1 2224/1 +f 2232/1 2224/1 2236/1 +f 2241/1 2229/1 2237/1 +f 2239/1 2234/1 2232/1 +f 2233/1 2222/1 2239/1 +f 2238/1 2230/1 2240/1 +f 2242/1 2227/1 2231/1 +f 2235/1 2227/1 2242/1 +f 2236/1 2220/1 2235/1 +f 2243/1 2229/1 2241/1 +f 2231/1 2229/1 2244/1 +f 2239/1 2232/1 2236/1 +f 2244/1 2229/1 2243/1 +f 2245/1 2237/1 2238/1 +f 2242/1 2231/1 2244/1 +f 2236/1 2235/1 2246/1 +f 2247/1 2233/1 2239/1 +f 2246/1 2235/1 2242/1 +f 2243/1 2241/1 2248/1 +f 2239/1 2236/1 2246/1 +f 2249/1 2237/1 2245/1 +f 1711/1 2237/1 1712/1 +f 1711/1 2241/1 2237/1 +f 1713/1 2241/1 1711/1 +f 1712/1 2237/1 2249/1 +f 2242/1 2244/1 2250/1 +f 2240/1 2233/1 2247/1 +f 2247/1 2239/1 2246/1 +f 2245/1 2238/1 2240/1 +f 2248/1 2241/1 1713/1 +f 2251/1 2243/1 2248/1 +f 2249/1 2245/1 2252/1 +f 2251/1 2244/1 2243/1 +f 2246/1 2242/1 2250/1 +f 2250/1 2244/1 2251/1 +f 1717/1 1712/1 2249/1 +f 2245/1 2240/1 2253/1 +f 2253/1 2240/1 2247/1 +f 2247/1 2246/1 2250/1 +f 2254/1 2251/1 2248/1 +f 2255/1 2249/1 2252/1 +f 2248/1 1713/1 1714/1 +f 2256/1 2250/1 2251/1 +f 2252/1 2245/1 2253/1 +f 2254/1 2248/1 1744/1 +f 2256/1 2251/1 2254/1 +f 2247/1 2250/1 2256/1 +f 1717/1 2249/1 2255/1 +f 2253/1 2247/1 2256/1 +f 2256/1 2254/1 1744/1 +f 1744/1 2248/1 1714/1 +f 2252/1 2253/1 2256/1 +f 2255/1 2252/1 2256/1 +f 1717/1 2255/1 1758/1 +f 1774/1 2255/1 2256/1 +f 1774/1 2256/1 1744/1 +f 1758/1 2255/1 1774/1 +f 1789/1 1709/1 1706/1 +f 1796/1 1789/1 1706/1 +f 1791/1 1798/1 1790/1 +f 1791/1 1790/1 1794/1 +f 1787/1 1789/1 1793/1 +f 1793/1 1789/1 1796/1 +f 1794/1 1790/1 1788/1 +f 1788/1 1790/1 1797/1 +f 1795/1 1787/1 1793/1 +f 1779/1 1795/1 1793/1 +f 1788/1 1797/1 1786/1 +f 1786/1 1795/1 1779/1 +f 1786/1 1797/1 1795/1 +f 1610/1 1634/1 1630/1 +f 1624/1 1637/1 1620/1 +f 1623/1 1624/1 1620/1 +f 1637/1 1615/1 1620/1 +f 1620/1 1615/1 1616/1 +f 1625/1 1624/1 1623/1 +f 1630/1 1625/1 1623/1 +f 1634/1 1625/1 1630/1 +f 1616/1 1614/1 1617/1 +f 1615/1 1614/1 1616/1 +f 1628/1 1617/1 1614/1 +f 1609/1 1634/1 1610/1 +f 2257/1 2258/1 2259/1 +f 2260/1 2257/1 2259/1 +f 2261/1 2262/1 2263/1 +f 2264/1 2265/1 2266/1 +f 2267/1 2268/1 2264/1 +f 2267/1 2264/1 2266/1 +f 2269/1 2268/1 2270/1 +f 2271/1 2268/1 2269/1 +f 2272/1 2273/1 2274/1 +f 2270/1 2268/1 2267/1 +f 2275/1 2276/1 2262/1 +f 2277/1 2258/1 2278/1 +f 2265/1 2276/1 2279/1 +f 2280/1 2276/1 2281/1 +f 2281/1 2276/1 2275/1 +f 2273/1 2282/1 2283/1 +f 2284/1 2263/1 2285/1 +f 2286/1 2281/1 2275/1 +f 2279/1 2276/1 2280/1 +f 2275/1 2262/1 2261/1 +f 2284/1 2285/1 2272/1 +f 2279/1 2280/1 2287/1 +f 2288/1 2275/1 2261/1 +f 2277/1 2278/1 2289/1 +f 2290/1 2281/1 2291/1 +f 2291/1 2281/1 2286/1 +f 2292/1 2263/1 2284/1 +f 2280/1 2281/1 2293/1 +f 2294/1 2275/1 2288/1 +f 2286/1 2275/1 2294/1 +f 2293/1 2281/1 2290/1 +f 2289/1 2278/1 2271/1 +f 2282/1 2257/1 2295/1 +f 2296/1 2263/1 2292/1 +f 2259/1 2258/1 2277/1 +f 2283/1 2282/1 2295/1 +f 2261/1 2263/1 2296/1 +f 2293/1 2290/1 2297/1 +f 2297/1 2290/1 2298/1 +f 2299/1 2266/1 2265/1 +f 2287/1 2280/1 2300/1 +f 2292/1 2284/1 2301/1 +f 2302/1 2261/1 2296/1 +f 2303/1 2272/1 2274/1 +f 2284/1 2272/1 2303/1 +f 2300/1 2280/1 2293/1 +f 2297/1 2298/1 2304/1 +f 2305/1 2298/1 2306/1 +f 2295/1 2257/1 2260/1 +f 2288/1 2261/1 2302/1 +f 2298/1 2305/1 2307/1 +f 2274/1 2273/1 2308/1 +f 2308/1 2273/1 2283/1 +f 2299/1 2265/1 2279/1 +f 2301/1 2284/1 2303/1 +f 2309/1 2290/1 2291/1 +f 2298/1 2290/1 2309/1 +f 2304/1 2298/1 2307/1 +f 2310/1 2289/1 2271/1 +f 2311/1 2270/1 2267/1 +f 2307/1 2305/1 2312/1 +f 2259/1 2277/1 2289/1 +f 2310/1 2271/1 2269/1 +f 2307/1 2312/1 2313/1 +f 2314/1 2279/1 2287/1 +f 2315/1 2298/1 2309/1 +f 2306/1 2298/1 2315/1 +f 2286/1 2294/1 2316/1 +f 2311/1 2267/1 2317/1 +f 2317/1 2267/1 2266/1 +f 2318/1 2296/1 2292/1 +f 2319/1 2269/1 2270/1 +f 2313/1 2312/1 2320/1 +f 2260/1 2259/1 2289/1 +f 2283/1 2295/1 2260/1 +f 2302/1 2296/1 2318/1 +f 2291/1 2286/1 2321/1 +f 2321/1 2286/1 2316/1 +f 2317/1 2266/1 2299/1 +f 2308/1 2283/1 2260/1 +f 2260/1 2289/1 2308/1 +f 2322/1 2305/1 2306/1 +f 2303/1 2274/1 2308/1 +f 2310/1 2269/1 2319/1 +f 2323/1 2291/1 2321/1 +f 2324/1 2288/1 2302/1 +f 2312/1 2305/1 2322/1 +f 2309/1 2291/1 2323/1 +f 2294/1 2288/1 2324/1 +f 2325/1 2299/1 2279/1 +f 2326/1 2293/1 2297/1 +f 2327/1 2294/1 2324/1 +f 2328/1 2312/1 2322/1 +f 2301/1 2303/1 2329/1 +f 2330/1 2307/1 2313/1 +f 2325/1 2279/1 2314/1 +f 2308/1 2289/1 2310/1 +f 2326/1 2297/1 2331/1 +f 2319/1 2270/1 2311/1 +f 2316/1 2294/1 2327/1 +f 2319/1 2311/1 2332/1 +f 2331/1 2297/1 2304/1 +f 2292/1 2301/1 2329/1 +f 2308/1 2310/1 2329/1 +f 2333/1 2314/1 2287/1 +f 2303/1 2308/1 2329/1 +f 2332/1 2311/1 2317/1 +f 2331/1 2304/1 2334/1 +f 2318/1 2292/1 2329/1 +f 2306/1 2315/1 2335/1 +f 2329/1 2310/1 2319/1 +f 2333/1 2287/1 2336/1 +f 2336/1 2287/1 2300/1 +f 2334/1 2304/1 2307/1 +f 2322/1 2306/1 2335/1 +f 2334/1 2307/1 2337/1 +f 2332/1 2317/1 2299/1 +f 2332/1 2299/1 2338/1 +f 2336/1 2300/1 2326/1 +f 2326/1 2300/1 2293/1 +f 2329/1 2319/1 2332/1 +f 2325/1 2314/1 2333/1 +f 2337/1 2307/1 2330/1 +f 2338/1 2299/1 2325/1 +f 2309/1 2323/1 2339/1 +f 2324/1 2302/1 2318/1 +f 2328/1 2322/1 2340/1 +f 2341/1 2309/1 2339/1 +f 2329/1 2332/1 2338/1 +f 2315/1 2309/1 2341/1 +f 2318/1 2329/1 2338/1 +f 2342/1 2327/1 2324/1 +f 2324/1 2318/1 2338/1 +f 2343/1 2323/1 2321/1 +f 2316/1 2327/1 2342/1 +f 2339/1 2323/1 2343/1 +f 2336/1 2326/1 2344/1 +f 2322/1 2335/1 2345/1 +f 2342/1 2324/1 2338/1 +f 2321/1 2316/1 2346/1 +f 2346/1 2316/1 2342/1 +f 2342/1 2338/1 2325/1 +f 2342/1 2325/1 2333/1 +f 2343/1 2321/1 2346/1 +f 2344/1 2326/1 2331/1 +f 2333/1 2336/1 2344/1 +f 2335/1 2315/1 2341/1 +f 2347/1 2337/1 2330/1 +f 2346/1 2342/1 2333/1 +f 2348/1 2331/1 2334/1 +f 2348/1 2334/1 2337/1 +f 2349/1 2344/1 2331/1 +f 2346/1 2333/1 2344/1 +f 2340/1 2322/1 2345/1 +f 2343/1 2346/1 2344/1 +f 2350/1 2335/1 2341/1 +f 2351/1 2328/1 2340/1 +f 2345/1 2335/1 2350/1 +f 2349/1 2331/1 2348/1 +f 2339/1 2343/1 2344/1 +f 2352/1 2347/1 2330/1 +f 2341/1 2339/1 2349/1 +f 2349/1 2339/1 2344/1 +f 2350/1 2341/1 2349/1 +f 2348/1 2337/1 2347/1 +f 2350/1 2349/1 2348/1 +f 2353/1 2347/1 2352/1 +f 2350/1 2348/1 2347/1 +f 2340/1 2345/1 2350/1 +f 2353/1 2340/1 2350/1 +f 2350/1 2347/1 2353/1 +f 2354/1 2355/1 2356/1 +f 2357/1 2355/1 2354/1 +f 2358/1 2359/1 2360/1 +f 2361/1 2359/1 2362/1 +f 2363/1 2359/1 2358/1 +f 2362/1 2359/1 2364/1 +f 2358/1 2360/1 2365/1 +f 2364/1 2359/1 2363/1 +f 2366/1 2364/1 2363/1 +f 2367/1 2364/1 2366/1 +f 2362/1 2364/1 2368/1 +f 2369/1 2358/1 2365/1 +f 2367/1 2366/1 2370/1 +f 2363/1 2358/1 2369/1 +f 2370/1 2366/1 2371/1 +f 2372/1 2363/1 2369/1 +f 2366/1 2363/1 2372/1 +f 2371/1 2366/1 2373/1 +f 2374/1 2370/1 2375/1 +f 2373/1 2366/1 2372/1 +f 2375/1 2370/1 2371/1 +f 2376/1 2374/1 2375/1 +f 2371/1 2373/1 2377/1 +f 2378/1 2374/1 2376/1 +f 2379/1 2370/1 2380/1 +f 2381/1 2368/1 2364/1 +f 2379/1 2367/1 2370/1 +f 2380/1 2370/1 2374/1 +f 2382/1 2378/1 2376/1 +f 2372/1 2369/1 2383/1 +f 2375/1 2371/1 2384/1 +f 2380/1 2374/1 2385/1 +f 2381/1 2364/1 2367/1 +f 2382/1 2376/1 2386/1 +f 2386/1 2376/1 2387/1 +f 2388/1 2375/1 2384/1 +f 2385/1 2374/1 2378/1 +f 2382/1 2386/1 2389/1 +f 2376/1 2375/1 2388/1 +f 2373/1 2372/1 2377/1 +f 2390/1 2367/1 2379/1 +f 2391/1 2376/1 2388/1 +f 2369/1 2365/1 2383/1 +f 2387/1 2376/1 2391/1 +f 2392/1 2362/1 2368/1 +f 2392/1 2368/1 2393/1 +f 2389/1 2386/1 2394/1 +f 2382/1 2389/1 2395/1 +f 2371/1 2377/1 2396/1 +f 2393/1 2368/1 2381/1 +f 2397/1 2389/1 2394/1 +f 2395/1 2389/1 2398/1 +f 2384/1 2371/1 2396/1 +f 2398/1 2389/1 2397/1 +f 2386/1 2387/1 2399/1 +f 2397/1 2394/1 2400/1 +f 2401/1 2378/1 2382/1 +f 2402/1 2381/1 2367/1 +f 2394/1 2386/1 2399/1 +f 2398/1 2397/1 2403/1 +f 2402/1 2367/1 2390/1 +f 2401/1 2382/1 2404/1 +f 2403/1 2397/1 2405/1 +f 2383/1 2365/1 2406/1 +f 2407/1 2385/1 2378/1 +f 2404/1 2382/1 2395/1 +f 2408/1 2403/1 2405/1 +f 2407/1 2378/1 2401/1 +f 2409/1 2387/1 2391/1 +f 2410/1 2405/1 2411/1 +f 2390/1 2379/1 2412/1 +f 2372/1 2383/1 2413/1 +f 2405/1 2397/1 2414/1 +f 2412/1 2379/1 2380/1 +f 2397/1 2400/1 2415/1 +f 2395/1 2398/1 2416/1 +f 2417/1 2405/1 2410/1 +f 2418/1 2403/1 2408/1 +f 2414/1 2397/1 2415/1 +f 2399/1 2387/1 2409/1 +f 2419/1 2372/1 2413/1 +f 2412/1 2380/1 2420/1 +f 2402/1 2390/1 2421/1 +f 2422/1 2392/1 2393/1 +f 2408/1 2405/1 2417/1 +f 2377/1 2372/1 2419/1 +f 2416/1 2398/1 2403/1 +f 2420/1 2380/1 2385/1 +f 2413/1 2383/1 2406/1 +f 2393/1 2381/1 2402/1 +f 2410/1 2411/1 2423/1 +f 2420/1 2385/1 2407/1 +f 2424/1 2417/1 2410/1 +f 2425/1 2377/1 2419/1 +f 2394/1 2399/1 2426/1 +f 2427/1 2405/1 2414/1 +f 2396/1 2377/1 2425/1 +f 2409/1 2391/1 2428/1 +f 2411/1 2405/1 2427/1 +f 2400/1 2394/1 2426/1 +f 2356/1 2410/1 2429/1 +f 2355/1 2410/1 2356/1 +f 2429/1 2410/1 2423/1 +f 2424/1 2410/1 2355/1 +f 2406/1 2422/1 2393/1 +f 2418/1 2408/1 2430/1 +f 2407/1 2401/1 2431/1 +f 2413/1 2406/1 2393/1 +f 2384/1 2396/1 2425/1 +f 2416/1 2403/1 2432/1 +f 2413/1 2393/1 2402/1 +f 2421/1 2390/1 2412/1 +f 2432/1 2403/1 2418/1 +f 2388/1 2384/1 2433/1 +f 2430/1 2408/1 2417/1 +f 2431/1 2401/1 2404/1 +f 2414/1 2415/1 2434/1 +f 2428/1 2388/1 2433/1 +f 2391/1 2388/1 2428/1 +f 2356/1 2429/1 2354/1 +f 2357/1 2424/1 2355/1 +f 2421/1 2413/1 2402/1 +f 2419/1 2413/1 2421/1 +f 2430/1 2417/1 2435/1 +f 2427/1 2414/1 2434/1 +f 2435/1 2417/1 2424/1 +f 2400/1 2426/1 2436/1 +f 2384/1 2425/1 2433/1 +f 2435/1 2424/1 2437/1 +f 2404/1 2395/1 2438/1 +f 2433/1 2425/1 2419/1 +f 2409/1 2428/1 2439/1 +f 2415/1 2400/1 2436/1 +f 2437/1 2424/1 2357/1 +f 2438/1 2395/1 2416/1 +f 2419/1 2421/1 2412/1 +f 2433/1 2419/1 2412/1 +f 2412/1 2420/1 2440/1 +f 2411/1 2427/1 2441/1 +f 2438/1 2416/1 2432/1 +f 2440/1 2420/1 2407/1 +f 2423/1 2411/1 2441/1 +f 2426/1 2399/1 2442/1 +f 2442/1 2409/1 2439/1 +f 2399/1 2409/1 2442/1 +f 2443/1 2418/1 2430/1 +f 2433/1 2412/1 2440/1 +f 2440/1 2407/1 2431/1 +f 2444/1 2423/1 2441/1 +f 2429/1 2423/1 2444/1 +f 2445/1 2418/1 2443/1 +f 2432/1 2418/1 2445/1 +f 2440/1 2431/1 2446/1 +f 2436/1 2426/1 2442/1 +f 2446/1 2431/1 2404/1 +f 2446/1 2404/1 2438/1 +f 2439/1 2433/1 2440/1 +f 2428/1 2433/1 2439/1 +f 2443/1 2430/1 2435/1 +f 2354/1 2429/1 2444/1 +f 2438/1 2432/1 2445/1 +f 2434/1 2415/1 2436/1 +f 2439/1 2440/1 2446/1 +f 2447/1 2313/1 2320/1 +f 2320/1 2312/1 2448/1 +f 2448/1 2312/1 2328/1 +f 2449/1 2320/1 2448/1 +f 2447/1 2320/1 2450/1 +f 2450/1 2320/1 2451/1 +f 2451/1 2320/1 2449/1 +f 2330/1 2313/1 2447/1 +f 2447/1 2450/1 2452/1 +f 2450/1 2451/1 2453/1 +f 2452/1 2450/1 2454/1 +f 2453/1 2451/1 2455/1 +f 2451/1 2449/1 2456/1 +f 2457/1 2450/1 2453/1 +f 2448/1 2328/1 2351/1 +f 2352/1 2330/1 2447/1 +f 2455/1 2451/1 2456/1 +f 2352/1 2447/1 2452/1 +f 2449/1 2448/1 2351/1 +f 2352/1 2452/1 2458/1 +f 2457/1 2453/1 2459/1 +f 2459/1 2453/1 2460/1 +f 2454/1 2450/1 2457/1 +f 2461/1 2449/1 2351/1 +f 2454/1 2457/1 2462/1 +f 2456/1 2449/1 2461/1 +f 2458/1 2452/1 2454/1 +f 2463/1 2453/1 2455/1 +f 2351/1 2340/1 2353/1 +f 2458/1 2353/1 2352/1 +f 2458/1 2454/1 2464/1 +f 2459/1 2460/1 2465/1 +f 2465/1 2460/1 2466/1 +f 2467/1 2456/1 2461/1 +f 2468/1 2453/1 2463/1 +f 2455/1 2456/1 2467/1 +f 2460/1 2453/1 2468/1 +f 2464/1 2454/1 2462/1 +f 2463/1 2455/1 2467/1 +f 2466/1 2460/1 2469/1 +f 2470/1 2462/1 2457/1 +f 2464/1 2462/1 2471/1 +f 2472/1 2351/1 2353/1 +f 2461/1 2351/1 2472/1 +f 2472/1 2458/1 2464/1 +f 2457/1 2459/1 2473/1 +f 2474/1 2459/1 2465/1 +f 2469/1 2460/1 2468/1 +f 2472/1 2353/1 2458/1 +f 2470/1 2457/1 2473/1 +f 2471/1 2462/1 2470/1 +f 2465/1 2466/1 2475/1 +f 2473/1 2459/1 2474/1 +f 2463/1 2467/1 2476/1 +f 2472/1 2464/1 2471/1 +f 2467/1 2461/1 2476/1 +f 2477/1 2465/1 2475/1 +f 2476/1 2461/1 2472/1 +f 2475/1 2466/1 2469/1 +f 2476/1 2472/1 2471/1 +f 2478/1 2465/1 2477/1 +f 2479/1 2471/1 2470/1 +f 2480/1 2473/1 2474/1 +f 2474/1 2465/1 2481/1 +f 2469/1 2468/1 2482/1 +f 2481/1 2465/1 2483/1 +f 2483/1 2465/1 2478/1 +f 2468/1 2463/1 2482/1 +f 2482/1 2463/1 2476/1 +f 2477/1 2475/1 2484/1 +f 2485/1 2469/1 2482/1 +f 2476/1 2471/1 2479/1 +f 2486/1 2474/1 2481/1 +f 2480/1 2474/1 2486/1 +f 2479/1 2470/1 2473/1 +f 2487/1 2477/1 2484/1 +f 2475/1 2469/1 2485/1 +f 2482/1 2476/1 2479/1 +f 2486/1 2481/1 2488/1 +f 2489/1 2483/1 2478/1 +f 2478/1 2477/1 2487/1 +f 2481/1 2483/1 2490/1 +f 2484/1 2475/1 2485/1 +f 2490/1 2483/1 2491/1 +f 2491/1 2483/1 2489/1 +f 2479/1 2473/1 2480/1 +f 2492/1 2478/1 2487/1 +f 2488/1 2481/1 2493/1 +f 2493/1 2481/1 2490/1 +f 2489/1 2478/1 2492/1 +f 2485/1 2482/1 2494/1 +f 2494/1 2479/1 2480/1 +f 2495/1 2480/1 2486/1 +f 2482/1 2479/1 2494/1 +f 2484/1 2485/1 2496/1 +f 2487/1 2484/1 2497/1 +f 2498/1 2490/1 2491/1 +f 2495/1 2486/1 2488/1 +f 2493/1 2490/1 2499/1 +f 2497/1 2484/1 2496/1 +f 2496/1 2485/1 2494/1 +f 2499/1 2490/1 2498/1 +f 2495/1 2488/1 2500/1 +f 2501/1 2487/1 2497/1 +f 2502/1 2499/1 2498/1 +f 2503/1 2489/1 2492/1 +f 2494/1 2480/1 2495/1 +f 2491/1 2489/1 2503/1 +f 2492/1 2487/1 2501/1 +f 2504/1 2498/1 2491/1 +f 2496/1 2494/1 2495/1 +f 2488/1 2493/1 2505/1 +f 2506/1 2492/1 2501/1 +f 2496/1 2495/1 2500/1 +f 2507/1 2502/1 2498/1 +f 2491/1 2503/1 2508/1 +f 2500/1 2488/1 2505/1 +f 2503/1 2492/1 2506/1 +f 2505/1 2493/1 2509/1 +f 2509/1 2493/1 2499/1 +f 2504/1 2491/1 2508/1 +f 2510/1 2496/1 2500/1 +f 2511/1 2498/1 2504/1 +f 2507/1 2498/1 2512/1 +f 2497/1 2496/1 2510/1 +f 2512/1 2498/1 2511/1 +f 2510/1 2500/1 2505/1 +f 2513/1 2504/1 2508/1 +f 2501/1 2497/1 2510/1 +f 2508/1 2503/1 2514/1 +f 2515/1 2504/1 2513/1 +f 2516/1 2499/1 2502/1 +f 2509/1 2499/1 2516/1 +f 2511/1 2504/1 2515/1 +f 2502/1 2507/1 2517/1 +f 2518/1 2508/1 2514/1 +f 2514/1 2503/1 2506/1 +f 2512/1 2511/1 2519/1 +f 2510/1 2505/1 2509/1 +f 2506/1 2501/1 2520/1 +f 2520/1 2501/1 2510/1 +f 2507/1 2512/1 2521/1 +f 2522/1 2511/1 2523/1 +f 2523/1 2511/1 2515/1 +f 2520/1 2510/1 2509/1 +f 2513/1 2508/1 2518/1 +f 2524/1 2512/1 2519/1 +f 2519/1 2511/1 2522/1 +f 2514/1 2506/1 2520/1 +f 2516/1 2502/1 2517/1 +f 2520/1 2509/1 2516/1 +f 2521/1 2512/1 2524/1 +f 2517/1 2507/1 2521/1 +f 2524/1 2519/1 2525/1 +f 2522/1 2523/1 2526/1 +f 2527/1 2519/1 2522/1 +f 2528/1 2524/1 2525/1 +f 2513/1 2518/1 2529/1 +f 2518/1 2514/1 2520/1 +f 2530/1 2515/1 2513/1 +f 2525/1 2519/1 2527/1 +f 2531/1 2517/1 2521/1 +f 2523/1 2515/1 2530/1 +f 2529/1 2518/1 2520/1 +f 2532/1 2521/1 2524/1 +f 2520/1 2516/1 2517/1 +f 2533/1 2528/1 2525/1 +f 2534/1 2520/1 2517/1 +f 2527/1 2522/1 2526/1 +f 2530/1 2513/1 2529/1 +f 2531/1 2521/1 2532/1 +f 2532/1 2524/1 2528/1 +f 2525/1 2527/1 2535/1 +f 2526/1 2523/1 2530/1 +f 2534/1 2529/1 2520/1 +f 2533/1 2525/1 2536/1 +f 2537/1 2525/1 2535/1 +f 2534/1 2517/1 2531/1 +f 2536/1 2525/1 2537/1 +f 2538/1 2531/1 2532/1 +f 2539/1 2529/1 2534/1 +f 2540/1 2533/1 2536/1 +f 2530/1 2529/1 2539/1 +f 2534/1 2531/1 2538/1 +f 2532/1 2528/1 2541/1 +f 2542/1 2533/1 2540/1 +f 2526/1 2530/1 2539/1 +f 2543/1 2527/1 2526/1 +f 2544/1 2536/1 2545/1 +f 2539/1 2534/1 2538/1 +f 2538/1 2532/1 2541/1 +f 2541/1 2528/1 2546/1 +f 2545/1 2536/1 2537/1 +f 2543/1 2526/1 2539/1 +f 2547/1 2537/1 2535/1 +f 2546/1 2528/1 2533/1 +f 2548/1 2536/1 2544/1 +f 2549/1 2527/1 2543/1 +f 2540/1 2536/1 2548/1 +f 2535/1 2527/1 2549/1 +f 2545/1 2537/1 2547/1 +f 2546/1 2533/1 2542/1 +f 2539/1 2538/1 2541/1 +f 2542/1 2540/1 2550/1 +f 2543/1 2539/1 2541/1 +f 2548/1 2544/1 2551/1 +f 2551/1 2544/1 2552/1 +f 2550/1 2540/1 2548/1 +f 2553/1 2535/1 2549/1 +f 2550/1 2548/1 2554/1 +f 2541/1 2546/1 2555/1 +f 2547/1 2535/1 2553/1 +f 2556/1 2544/1 2545/1 +f 2543/1 2541/1 2555/1 +f 2555/1 2546/1 2542/1 +f 2542/1 2550/1 2557/1 +f 2551/1 2552/1 2558/1 +f 2558/1 2552/1 2559/1 +f 2560/1 2547/1 2553/1 +f 2549/1 2543/1 2555/1 +f 2561/1 2544/1 2556/1 +f 2545/1 2547/1 2560/1 +f 2552/1 2544/1 2561/1 +f 2557/1 2550/1 2554/1 +f 2556/1 2545/1 2560/1 +f 2559/1 2552/1 2561/1 +f 2562/1 2554/1 2548/1 +f 2557/1 2554/1 2563/1 +f 2564/1 2549/1 2555/1 +f 2564/1 2555/1 2542/1 +f 2564/1 2542/1 2557/1 +f 2548/1 2551/1 2565/1 +f 2566/1 2551/1 2558/1 +f 2562/1 2548/1 2565/1 +f 2559/1 2561/1 2567/1 +f 2563/1 2554/1 2562/1 +f 2558/1 2559/1 2568/1 +f 2565/1 2551/1 2566/1 +f 2556/1 2560/1 2569/1 +f 2561/1 2556/1 2570/1 +f 2553/1 2549/1 2564/1 +f 2564/1 2557/1 2563/1 +f 2560/1 2553/1 2569/1 +f 2571/1 2558/1 2568/1 +f 2569/1 2553/1 2564/1 +f 2568/1 2559/1 2567/1 +f 2569/1 2564/1 2563/1 +f 2572/1 2558/1 2571/1 +f 2573/1 2563/1 2562/1 +f 2574/1 2565/1 2566/1 +f 2566/1 2558/1 2575/1 +f 2576/1 2561/1 2570/1 +f 2575/1 2558/1 2577/1 +f 2577/1 2558/1 2572/1 +f 2570/1 2556/1 2569/1 +f 2571/1 2568/1 2578/1 +f 2567/1 2561/1 2576/1 +f 2569/1 2563/1 2573/1 +f 2579/1 2566/1 2575/1 +f 2574/1 2566/1 2579/1 +f 2573/1 2562/1 2565/1 +f 2580/1 2571/1 2578/1 +f 2568/1 2567/1 2581/1 +f 2570/1 2569/1 2573/1 +f 2579/1 2575/1 2582/1 +f 2583/1 2577/1 2572/1 +f 2572/1 2571/1 2580/1 +f 2575/1 2577/1 2584/1 +f 2585/1 2565/1 2574/1 +f 2584/1 2577/1 2586/1 +f 2586/1 2577/1 2583/1 +f 2581/1 2567/1 2576/1 +f 2578/1 2568/1 2581/1 +f 2573/1 2565/1 2585/1 +f 2576/1 2570/1 2573/1 +f 2587/1 2572/1 2580/1 +f 2588/1 2584/1 2586/1 +f 2582/1 2575/1 2589/1 +f 2589/1 2575/1 2584/1 +f 2583/1 2572/1 2587/1 +f 2585/1 2574/1 2590/1 +f 2590/1 2574/1 2579/1 +f 2576/1 2573/1 2585/1 +f 2590/1 2579/1 2582/1 +f 2586/1 2583/1 2591/1 +f 2578/1 2581/1 2592/1 +f 2590/1 2582/1 2593/1 +f 2591/1 2583/1 2587/1 +f 2594/1 2588/1 2586/1 +f 2589/1 2584/1 2595/1 +f 2580/1 2578/1 2592/1 +f 2581/1 2576/1 2585/1 +f 2588/1 2594/1 2596/1 +f 2595/1 2584/1 2588/1 +f 2581/1 2585/1 2590/1 +f 2582/1 2589/1 2597/1 +f 2598/1 2586/1 2591/1 +f 2592/1 2581/1 2590/1 +f 2594/1 2586/1 2598/1 +f 2595/1 2588/1 2599/1 +f 2600/1 2580/1 2592/1 +f 2593/1 2582/1 2597/1 +f 2587/1 2580/1 2600/1 +f 2591/1 2587/1 2601/1 +f 2597/1 2589/1 2602/1 +f 2602/1 2589/1 2595/1 +f 2599/1 2588/1 2596/1 +f 2603/1 2590/1 2593/1 +f 2592/1 2590/1 2603/1 +f 2596/1 2594/1 2604/1 +f 2603/1 2593/1 2597/1 +f 2601/1 2587/1 2600/1 +f 2605/1 2591/1 2601/1 +f 2600/1 2592/1 2603/1 +f 2606/1 2596/1 2604/1 +f 2605/1 2601/1 2600/1 +f 2604/1 2594/1 2607/1 +f 2598/1 2591/1 2608/1 +f 2608/1 2591/1 2605/1 +f 2607/1 2594/1 2598/1 +f 2602/1 2595/1 2609/1 +f 2609/1 2595/1 2599/1 +f 2610/1 2596/1 2606/1 +f 2599/1 2596/1 2611/1 +f 2606/1 2604/1 2612/1 +f 2611/1 2596/1 2610/1 +f 2603/1 2597/1 2602/1 +f 2605/1 2600/1 2603/1 +f 2613/1 2603/1 2602/1 +f 2612/1 2604/1 2614/1 +f 2605/1 2603/1 2613/1 +f 2611/1 2610/1 2615/1 +f 2616/1 2598/1 2608/1 +f 2614/1 2604/1 2617/1 +f 2609/1 2599/1 2611/1 +f 2613/1 2602/1 2609/1 +f 2604/1 2607/1 2618/1 +f 2607/1 2598/1 2616/1 +f 2617/1 2604/1 2619/1 +f 2619/1 2604/1 2618/1 +f 2606/1 2612/1 2620/1 +f 2621/1 2614/1 2617/1 +f 2620/1 2612/1 2614/1 +f 2608/1 2605/1 2613/1 +f 2622/1 2607/1 2616/1 +f 2622/1 2616/1 2608/1 +f 2610/1 2606/1 2623/1 +f 2618/1 2607/1 2622/1 +f 2624/1 2614/1 2621/1 +f 2623/1 2606/1 2620/1 +f 2613/1 2609/1 2611/1 +f 2615/1 2610/1 2625/1 +f 2626/1 2608/1 2613/1 +f 2627/1 2620/1 2614/1 +f 2626/1 2613/1 2611/1 +f 2621/1 2617/1 2628/1 +f 2628/1 2617/1 2619/1 +f 2622/1 2608/1 2626/1 +f 2625/1 2610/1 2623/1 +f 2623/1 2620/1 2629/1 +f 2627/1 2614/1 2630/1 +f 2630/1 2614/1 2624/1 +f 2629/1 2620/1 2627/1 +f 2631/1 2611/1 2615/1 +f 2626/1 2611/1 2631/1 +f 2631/1 2615/1 2625/1 +f 2624/1 2621/1 2632/1 +f 2632/1 2621/1 2628/1 +f 2633/1 2627/1 2630/1 +f 2622/1 2626/1 2631/1 +f 2625/1 2623/1 2634/1 +f 2623/1 2629/1 2634/1 +f 2618/1 2622/1 2631/1 +f 2635/1 2627/1 2633/1 +f 2619/1 2618/1 2636/1 +f 2634/1 2629/1 2637/1 +f 2638/1 2630/1 2624/1 +f 2636/1 2618/1 2631/1 +f 2631/1 2625/1 2634/1 +f 2637/1 2629/1 2627/1 +f 2639/1 2630/1 2638/1 +f 2633/1 2630/1 2639/1 +f 2638/1 2624/1 2640/1 +f 2640/1 2624/1 2632/1 +f 2637/1 2627/1 2635/1 +f 2641/1 2632/1 2628/1 +f 2628/1 2619/1 2642/1 +f 2642/1 2619/1 2636/1 +f 2637/1 2635/1 2643/1 +f 2635/1 2633/1 2644/1 +f 2636/1 2631/1 2634/1 +f 2639/1 2638/1 2645/1 +f 2645/1 2638/1 2646/1 +f 2644/1 2633/1 2639/1 +f 2646/1 2638/1 2647/1 +f 2644/1 2639/1 2648/1 +f 2641/1 2628/1 2642/1 +f 2647/1 2638/1 2640/1 +f 2643/1 2635/1 2644/1 +f 2636/1 2634/1 2637/1 +f 2643/1 2644/1 2649/1 +f 2640/1 2632/1 2650/1 +f 2642/1 2636/1 2637/1 +f 2645/1 2646/1 2651/1 +f 2651/1 2646/1 2652/1 +f 2632/1 2641/1 2650/1 +f 2646/1 2647/1 2653/1 +f 2649/1 2644/1 2648/1 +f 2654/1 2640/1 2650/1 +f 2652/1 2646/1 2655/1 +f 2650/1 2641/1 2656/1 +f 2642/1 2637/1 2643/1 +f 2657/1 2648/1 2639/1 +f 2649/1 2648/1 2658/1 +f 2656/1 2641/1 2642/1 +f 2647/1 2640/1 2654/1 +f 2639/1 2645/1 2659/1 +f 2659/1 2645/1 2651/1 +f 2655/1 2646/1 2653/1 +f 2656/1 2642/1 2643/1 +f 2657/1 2639/1 2659/1 +f 2660/1 2643/1 2649/1 +f 2661/1 2659/1 2651/1 +f 2658/1 2648/1 2657/1 +f 2651/1 2652/1 2662/1 +f 2656/1 2643/1 2660/1 +f 2660/1 2649/1 2658/1 +f 2663/1 2651/1 2662/1 +f 2660/1 2650/1 2656/1 +f 2662/1 2652/1 2655/1 +f 2664/1 2651/1 2663/1 +f 2661/1 2651/1 2665/1 +f 2653/1 2647/1 2654/1 +f 2654/1 2650/1 2660/1 +f 2655/1 2653/1 2666/1 +f 2665/1 2651/1 2667/1 +f 2667/1 2651/1 2664/1 +f 2653/1 2654/1 2666/1 +f 2663/1 2662/1 2668/1 +f 2669/1 2659/1 2661/1 +f 2658/1 2657/1 2670/1 +f 2657/1 2659/1 2670/1 +f 2671/1 2655/1 2666/1 +f 2670/1 2659/1 2669/1 +f 2672/1 2654/1 2660/1 +f 2673/1 2661/1 2665/1 +f 2672/1 2660/1 2658/1 +f 2669/1 2661/1 2673/1 +f 2666/1 2654/1 2672/1 +f 2674/1 2663/1 2668/1 +f 2672/1 2658/1 2670/1 +f 2662/1 2655/1 2671/1 +f 2673/1 2665/1 2675/1 +f 2676/1 2667/1 2664/1 +f 2664/1 2663/1 2674/1 +f 2665/1 2667/1 2677/1 +f 2668/1 2662/1 2671/1 +f 2677/1 2667/1 2678/1 +f 2678/1 2667/1 2676/1 +f 2672/1 2670/1 2669/1 +f 2679/1 2664/1 2674/1 +f 2675/1 2665/1 2680/1 +f 2680/1 2665/1 2677/1 +f 2676/1 2664/1 2679/1 +f 2671/1 2666/1 2681/1 +f 2681/1 2672/1 2669/1 +f 2682/1 2669/1 2673/1 +f 2666/1 2672/1 2681/1 +f 2668/1 2671/1 2683/1 +f 2674/1 2668/1 2684/1 +f 2685/1 2676/1 2679/1 +f 2686/1 2677/1 2678/1 +f 2682/1 2673/1 2675/1 +f 2680/1 2677/1 2687/1 +f 2683/1 2671/1 2681/1 +f 2687/1 2677/1 2686/1 +f 2682/1 2675/1 2688/1 +f 2679/1 2674/1 2684/1 +f 2689/1 2687/1 2686/1 +f 2681/1 2669/1 2682/1 +f 2678/1 2676/1 2685/1 +f 2684/1 2668/1 2683/1 +f 2690/1 2678/1 2685/1 +f 2691/1 2686/1 2678/1 +f 2692/1 2681/1 2682/1 +f 2683/1 2681/1 2692/1 +f 2675/1 2680/1 2693/1 +f 2692/1 2682/1 2688/1 +f 2694/1 2689/1 2686/1 +f 2695/1 2679/1 2684/1 +f 2688/1 2675/1 2693/1 +f 2684/1 2683/1 2692/1 +f 2685/1 2679/1 2695/1 +f 2693/1 2680/1 2696/1 +f 2696/1 2680/1 2687/1 +f 2691/1 2678/1 2697/1 +f 2697/1 2678/1 2690/1 +f 2698/1 2686/1 2691/1 +f 2694/1 2686/1 2699/1 +f 2699/1 2686/1 2698/1 +f 2695/1 2684/1 2692/1 +f 2690/1 2685/1 2700/1 +f 2692/1 2688/1 2693/1 +f 2701/1 2691/1 2697/1 +f 2696/1 2687/1 2702/1 +f 2702/1 2687/1 2689/1 +f 2703/1 2695/1 2692/1 +f 2703/1 2692/1 2693/1 +f 2698/1 2691/1 2701/1 +f 2689/1 2694/1 2704/1 +f 2705/1 2698/1 2701/1 +f 2685/1 2695/1 2700/1 +f 2699/1 2698/1 2706/1 +f 2703/1 2693/1 2696/1 +f 2694/1 2699/1 2707/1 +f 2708/1 2698/1 2705/1 +f 2700/1 2695/1 2703/1 +f 2707/1 2699/1 2706/1 +f 2706/1 2698/1 2708/1 +f 2702/1 2689/1 2704/1 +f 2709/1 2690/1 2700/1 +f 2703/1 2696/1 2702/1 +f 2704/1 2694/1 2710/1 +f 2710/1 2694/1 2707/1 +f 2697/1 2690/1 2709/1 +f 2707/1 2706/1 2711/1 +f 2708/1 2705/1 2712/1 +f 2713/1 2706/1 2708/1 +f 2714/1 2707/1 2711/1 +f 2705/1 2701/1 2715/1 +f 2711/1 2706/1 2713/1 +f 2701/1 2697/1 2716/1 +f 2700/1 2703/1 2702/1 +f 2710/1 2707/1 2717/1 +f 2716/1 2697/1 2709/1 +f 2700/1 2702/1 2704/1 +f 2718/1 2714/1 2711/1 +f 2709/1 2700/1 2704/1 +f 2713/1 2708/1 2719/1 +f 2719/1 2708/1 2712/1 +f 2712/1 2705/1 2715/1 +f 2715/1 2701/1 2716/1 +f 2717/1 2707/1 2714/1 +f 2711/1 2713/1 2720/1 +f 2718/1 2711/1 2721/1 +f 2722/1 2711/1 2720/1 +f 2721/1 2711/1 2722/1 +f 2709/1 2704/1 2723/1 +f 2723/1 2704/1 2710/1 +f 2720/1 2713/1 2719/1 +f 2724/1 2718/1 2721/1 +f 2710/1 2717/1 2725/1 +f 2716/1 2709/1 2723/1 +f 2717/1 2714/1 2725/1 +f 2719/1 2712/1 2726/1 +f 2727/1 2718/1 2724/1 +f 2723/1 2715/1 2716/1 +f 2712/1 2715/1 2726/1 +f 2728/1 2721/1 2729/1 +f 2725/1 2714/1 2730/1 +f 2729/1 2721/1 2722/1 +f 2726/1 2715/1 2723/1 +f 2731/1 2722/1 2720/1 +f 2723/1 2710/1 2725/1 +f 2730/1 2714/1 2718/1 +f 2732/1 2721/1 2728/1 +f 2724/1 2721/1 2732/1 +f 2729/1 2722/1 2731/1 +f 2730/1 2718/1 2727/1 +f 2719/1 2726/1 2733/1 +f 2730/1 2727/1 2734/1 +f 2727/1 2724/1 2735/1 +f 2726/1 2723/1 2725/1 +f 2732/1 2728/1 2736/1 +f 2736/1 2728/1 2737/1 +f 2735/1 2724/1 2732/1 +f 2735/1 2732/1 2738/1 +f 2739/1 2719/1 2733/1 +f 2734/1 2727/1 2735/1 +f 2720/1 2719/1 2739/1 +f 2740/1 2728/1 2729/1 +f 2726/1 2725/1 2730/1 +f 2734/1 2735/1 2741/1 +f 2733/1 2726/1 2730/1 +f 2736/1 2737/1 2742/1 +f 2738/1 2732/1 2736/1 +f 2731/1 2720/1 2739/1 +f 2743/1 2736/1 2742/1 +f 2729/1 2731/1 2744/1 +f 2744/1 2731/1 2739/1 +f 2737/1 2728/1 2740/1 +f 2741/1 2735/1 2738/1 +f 2745/1 2729/1 2744/1 +f 2742/1 2737/1 2746/1 +f 2733/1 2730/1 2734/1 +f 2747/1 2738/1 2736/1 +f 2741/1 2738/1 2748/1 +f 2736/1 2743/1 2749/1 +f 2739/1 2733/1 2744/1 +f 2746/1 2737/1 2740/1 +f 2744/1 2733/1 2734/1 +f 2750/1 2743/1 2742/1 +f 2740/1 2729/1 2745/1 +f 2751/1 2743/1 2750/1 +f 2747/1 2736/1 2749/1 +f 2752/1 2734/1 2741/1 +f 2742/1 2746/1 2753/1 +f 2750/1 2742/1 2754/1 +f 2754/1 2742/1 2755/1 +f 2748/1 2738/1 2747/1 +f 2749/1 2743/1 2751/1 +f 2756/1 2740/1 2745/1 +f 2744/1 2734/1 2752/1 +f 2752/1 2741/1 2748/1 +f 2757/1 2751/1 2750/1 +f 2755/1 2742/1 2753/1 +f 2758/1 2749/1 2751/1 +f 2745/1 2744/1 2752/1 +f 2746/1 2740/1 2756/1 +f 2750/1 2754/1 2759/1 +f 2760/1 2755/1 2753/1 +f 2748/1 2747/1 2761/1 +f 2747/1 2749/1 2761/1 +f 2753/1 2746/1 2762/1 +f 2762/1 2746/1 2756/1 +f 2756/1 2745/1 2763/1 +f 2761/1 2749/1 2758/1 +f 2763/1 2745/1 2752/1 +f 2761/1 2752/1 2748/1 +f 2754/1 2755/1 2760/1 +f 2757/1 2750/1 2759/1 +f 2764/1 2751/1 2757/1 +f 2758/1 2751/1 2764/1 +f 2763/1 2752/1 2761/1 +f 2759/1 2754/1 2765/1 +f 2764/1 2757/1 2766/1 +f 2767/1 2753/1 2762/1 +f 2768/1 2757/1 2759/1 +f 2765/1 2754/1 2760/1 +f 2768/1 2759/1 2769/1 +f 2770/1 2759/1 2765/1 +f 2760/1 2753/1 2767/1 +f 2769/1 2759/1 2770/1 +f 2756/1 2763/1 2771/1 +f 2772/1 2757/1 2768/1 +f 2766/1 2757/1 2772/1 +f 2770/1 2765/1 2773/1 +f 2762/1 2756/1 2771/1 +f 2771/1 2761/1 2758/1 +f 2774/1 2758/1 2764/1 +f 2763/1 2761/1 2771/1 +f 2767/1 2762/1 2775/1 +f 2776/1 2760/1 2767/1 +f 2774/1 2764/1 2766/1 +f 2777/1 2768/1 2769/1 +f 2775/1 2762/1 2771/1 +f 2774/1 2766/1 2778/1 +f 2765/1 2760/1 2776/1 +f 2779/1 2770/1 2773/1 +f 2771/1 2758/1 2774/1 +f 2772/1 2768/1 2780/1 +f 2769/1 2770/1 2779/1 +f 2773/1 2765/1 2776/1 +f 2776/1 2767/1 2775/1 +f 2777/1 2769/1 2781/1 +f 2780/1 2768/1 2777/1 +f 2782/1 2771/1 2774/1 +f 2781/1 2769/1 2783/1 +f 2775/1 2771/1 2782/1 +f 2766/1 2772/1 2784/1 +f 2785/1 2773/1 2776/1 +f 2782/1 2774/1 2778/1 +f 2786/1 2769/1 2779/1 +f 2780/1 2777/1 2787/1 +f 2783/1 2769/1 2786/1 +f 2778/1 2766/1 2784/1 +f 2779/1 2773/1 2785/1 +f 2776/1 2775/1 2788/1 +f 2785/1 2776/1 2789/1 +f 2790/1 2772/1 2780/1 +f 2784/1 2772/1 2790/1 +f 2787/1 2777/1 2781/1 +f 2791/1 2783/1 2786/1 +f 2792/1 2783/1 2791/1 +f 2781/1 2783/1 2792/1 +f 2782/1 2778/1 2784/1 +f 2793/1 2779/1 2785/1 +f 2794/1 2791/1 2786/1 +f 2788/1 2775/1 2782/1 +f 2795/1 2781/1 2792/1 +f 2789/1 2776/1 2788/1 +f 2786/1 2779/1 2796/1 +f 2796/1 2779/1 2793/1 +f 2797/1 2791/1 2794/1 +f 2788/1 2782/1 2784/1 +f 2798/1 2780/1 2787/1 +f 2790/1 2780/1 2798/1 +f 2799/1 2781/1 2795/1 +f 2792/1 2791/1 2797/1 +f 2787/1 2781/1 2800/1 +f 2793/1 2785/1 2789/1 +f 2795/1 2792/1 2801/1 +f 2800/1 2781/1 2799/1 +f 2788/1 2784/1 2790/1 +f 2802/1 2792/1 2803/1 +f 2803/1 2792/1 2797/1 +f 2804/1 2788/1 2790/1 +f 2800/1 2799/1 2805/1 +f 2794/1 2786/1 2796/1 +f 2806/1 2803/1 2797/1 +f 2807/1 2795/1 2801/1 +f 2801/1 2792/1 2802/1 +f 2798/1 2787/1 2800/1 +f 2804/1 2790/1 2798/1 +f 2789/1 2788/1 2804/1 +f 2793/1 2789/1 2804/1 +f 2807/1 2801/1 2808/1 +f 2802/1 2803/1 2809/1 +f 2809/1 2803/1 2806/1 +f 2810/1 2807/1 2808/1 +f 2796/1 2793/1 2804/1 +f 2811/1 2797/1 2794/1 +f 2811/1 2794/1 2796/1 +f 2799/1 2795/1 2812/1 +f 2806/1 2797/1 2811/1 +f 2812/1 2795/1 2807/1 +f 2804/1 2798/1 2800/1 +f 2805/1 2799/1 2813/1 +f 2814/1 2796/1 2804/1 +f 2815/1 2810/1 2808/1 +f 2814/1 2804/1 2800/1 +f 2801/1 2802/1 2816/1 +f 2816/1 2802/1 2809/1 +f 2811/1 2796/1 2814/1 +f 2813/1 2799/1 2812/1 +f 2812/1 2807/1 2810/1 +f 2808/1 2801/1 2817/1 +f 2815/1 2808/1 2818/1 +f 2819/1 2808/1 2817/1 +f 2820/1 2800/1 2805/1 +f 2818/1 2808/1 2819/1 +f 2814/1 2800/1 2820/1 +f 2820/1 2805/1 2813/1 +f 2817/1 2801/1 2816/1 +f 2821/1 2815/1 2818/1 +f 2811/1 2814/1 2820/1 +f 2813/1 2812/1 2822/1 +f 2812/1 2810/1 2822/1 +f 2806/1 2811/1 2820/1 +f 2823/1 2815/1 2821/1 +f 2809/1 2806/1 2824/1 +f 2825/1 2818/1 2826/1 +f 2822/1 2810/1 2827/1 +f 2826/1 2818/1 2819/1 +f 2824/1 2806/1 2820/1 +f 2828/1 2819/1 2817/1 +f 2820/1 2813/1 2822/1 +f 2827/1 2810/1 2815/1 +f 2829/1 2818/1 2825/1 +f 2821/1 2818/1 2829/1 +f 2826/1 2819/1 2828/1 +f 2827/1 2815/1 2823/1 +f 2816/1 2809/1 2830/1 +f 2830/1 2809/1 2824/1 +f 2827/1 2823/1 2831/1 +f 2823/1 2821/1 2832/1 +f 2824/1 2820/1 2822/1 +f 2829/1 2825/1 2833/1 +f 2833/1 2825/1 2834/1 +f 2832/1 2821/1 2829/1 +f 2832/1 2829/1 2835/1 +f 2836/1 2816/1 2830/1 +f 2831/1 2823/1 2832/1 +f 2817/1 2816/1 2836/1 +f 2837/1 2825/1 2826/1 +f 2824/1 2822/1 2827/1 +f 2831/1 2832/1 2838/1 +f 2830/1 2824/1 2827/1 +f 2833/1 2834/1 2839/1 +f 2835/1 2829/1 2833/1 +f 2828/1 2817/1 2836/1 +f 2840/1 2833/1 2839/1 +f 2826/1 2828/1 2841/1 +f 2841/1 2828/1 2836/1 +f 2834/1 2825/1 2837/1 +f 2838/1 2832/1 2835/1 +f 2842/1 2826/1 2841/1 +f 2839/1 2834/1 2843/1 +f 2830/1 2827/1 2831/1 +f 2844/1 2835/1 2833/1 +f 2838/1 2835/1 2845/1 +f 2833/1 2840/1 2846/1 +f 2836/1 2830/1 2841/1 +f 2843/1 2834/1 2837/1 +f 2841/1 2830/1 2831/1 +f 2847/1 2840/1 2839/1 +f 2837/1 2826/1 2842/1 +f 2848/1 2840/1 2847/1 +f 2844/1 2833/1 2846/1 +f 2849/1 2831/1 2838/1 +f 2839/1 2843/1 2850/1 +f 2847/1 2839/1 2851/1 +f 2851/1 2839/1 2852/1 +f 2845/1 2835/1 2844/1 +f 2846/1 2840/1 2848/1 +f 2853/1 2837/1 2842/1 +f 2841/1 2831/1 2849/1 +f 2849/1 2838/1 2845/1 +f 2854/1 2848/1 2847/1 +f 2852/1 2839/1 2850/1 +f 2855/1 2846/1 2848/1 +f 2842/1 2841/1 2849/1 +f 2843/1 2837/1 2853/1 +f 2847/1 2851/1 2856/1 +f 2857/1 2852/1 2850/1 +f 2845/1 2844/1 2858/1 +f 2844/1 2846/1 2858/1 +f 2850/1 2843/1 2859/1 +f 2859/1 2843/1 2853/1 +f 2853/1 2842/1 2860/1 +f 2858/1 2846/1 2855/1 +f 2860/1 2842/1 2849/1 +f 2858/1 2849/1 2845/1 +f 2851/1 2852/1 2857/1 +f 2854/1 2847/1 2856/1 +f 2855/1 2848/1 2861/1 +f 2861/1 2848/1 2854/1 +f 2862/1 2851/1 2857/1 +f 2860/1 2849/1 2858/1 +f 2856/1 2851/1 2862/1 +f 2861/1 2854/1 2863/1 +f 2857/1 2850/1 2859/1 +f 2864/1 2854/1 2856/1 +f 2864/1 2856/1 2865/1 +f 2866/1 2856/1 2862/1 +f 2865/1 2856/1 2866/1 +f 2853/1 2860/1 2867/1 +f 2863/1 2854/1 2868/1 +f 2868/1 2854/1 2864/1 +f 2866/1 2862/1 2869/1 +f 2859/1 2853/1 2867/1 +f 2867/1 2858/1 2855/1 +f 2870/1 2865/1 2866/1 +f 2871/1 2855/1 2861/1 +f 2860/1 2858/1 2867/1 +f 2857/1 2859/1 2872/1 +f 2871/1 2861/1 2863/1 +f 2873/1 2864/1 2865/1 +f 2872/1 2859/1 2867/1 +f 2871/1 2863/1 2874/1 +f 2870/1 2866/1 2869/1 +f 2867/1 2855/1 2871/1 +f 2868/1 2864/1 2875/1 +f 2862/1 2857/1 2876/1 +f 2876/1 2857/1 2872/1 +f 2873/1 2865/1 2877/1 +f 2875/1 2864/1 2873/1 +f 2872/1 2867/1 2871/1 +f 2877/1 2865/1 2878/1 +f 2872/1 2871/1 2874/1 +f 2875/1 2873/1 2879/1 +f 2880/1 2862/1 2876/1 +f 2865/1 2870/1 2881/1 +f 2874/1 2863/1 2868/1 +f 2869/1 2862/1 2880/1 +f 2870/1 2869/1 2882/1 +f 2883/1 2868/1 2875/1 +f 2879/1 2873/1 2877/1 +f 2878/1 2865/1 2881/1 +f 2884/1 2872/1 2874/1 +f 2877/1 2878/1 2885/1 +f 2885/1 2878/1 2886/1 +f 2884/1 2874/1 2868/1 +f 2882/1 2869/1 2880/1 +f 2887/1 2870/1 2882/1 +f 2888/1 2878/1 2881/1 +f 2880/1 2876/1 2872/1 +f 2880/1 2872/1 2884/1 +f 2889/1 2877/1 2885/1 +f 2887/1 2882/1 2880/1 +f 2881/1 2870/1 2887/1 +f 2886/1 2878/1 2888/1 +f 2890/1 2875/1 2879/1 +f 2883/1 2875/1 2890/1 +f 2884/1 2868/1 2883/1 +f 2891/1 2877/1 2889/1 +f 2879/1 2877/1 2892/1 +f 2887/1 2880/1 2884/1 +f 2892/1 2877/1 2891/1 +f 2893/1 2885/1 2886/1 +f 2890/1 2879/1 2892/1 +f 2884/1 2883/1 2894/1 +f 2895/1 2881/1 2887/1 +f 2894/1 2883/1 2890/1 +f 2891/1 2889/1 2896/1 +f 2887/1 2884/1 2894/1 +f 2897/1 2885/1 2893/1 +f 2359/1 2885/1 2360/1 +f 2359/1 2889/1 2885/1 +f 2361/1 2889/1 2359/1 +f 2360/1 2885/1 2897/1 +f 2890/1 2892/1 2898/1 +f 2888/1 2881/1 2895/1 +f 2895/1 2887/1 2894/1 +f 2893/1 2886/1 2888/1 +f 2896/1 2889/1 2361/1 +f 2899/1 2891/1 2896/1 +f 2897/1 2893/1 2900/1 +f 2899/1 2892/1 2891/1 +f 2894/1 2890/1 2898/1 +f 2898/1 2892/1 2899/1 +f 2365/1 2360/1 2897/1 +f 2893/1 2888/1 2901/1 +f 2901/1 2888/1 2895/1 +f 2895/1 2894/1 2898/1 +f 2902/1 2899/1 2896/1 +f 2903/1 2897/1 2900/1 +f 2896/1 2361/1 2362/1 +f 2904/1 2898/1 2899/1 +f 2900/1 2893/1 2901/1 +f 2902/1 2896/1 2392/1 +f 2904/1 2899/1 2902/1 +f 2895/1 2898/1 2904/1 +f 2365/1 2897/1 2903/1 +f 2901/1 2895/1 2904/1 +f 2904/1 2902/1 2392/1 +f 2392/1 2896/1 2362/1 +f 2900/1 2901/1 2904/1 +f 2903/1 2900/1 2904/1 +f 2365/1 2903/1 2406/1 +f 2422/1 2903/1 2904/1 +f 2422/1 2904/1 2392/1 +f 2406/1 2903/1 2422/1 +f 2437/1 2357/1 2354/1 +f 2444/1 2437/1 2354/1 +f 2439/1 2446/1 2438/1 +f 2439/1 2438/1 2442/1 +f 2435/1 2437/1 2441/1 +f 2441/1 2437/1 2444/1 +f 2442/1 2438/1 2436/1 +f 2436/1 2438/1 2445/1 +f 2443/1 2435/1 2441/1 +f 2427/1 2443/1 2441/1 +f 2436/1 2445/1 2434/1 +f 2434/1 2443/1 2427/1 +f 2434/1 2445/1 2443/1 +f 2258/1 2282/1 2278/1 +f 2272/1 2285/1 2268/1 +f 2271/1 2272/1 2268/1 +f 2285/1 2263/1 2268/1 +f 2268/1 2263/1 2264/1 +f 2273/1 2272/1 2271/1 +f 2278/1 2273/1 2271/1 +f 2282/1 2273/1 2278/1 +f 2264/1 2262/1 2265/1 +f 2263/1 2262/1 2264/1 +f 2276/1 2265/1 2262/1 +f 2257/1 2282/1 2258/1 +f 2905/1 2906/1 2907/1 +f 2908/1 2909/1 2910/1 +f 2911/1 2912/1 2913/1 +f 2914/1 2915/1 2916/1 +f 2917/1 2918/1 2919/1 +f 2920/1 2921/1 2922/1 +f 2923/1 2924/1 2925/1 +f 2926/1 2927/1 2928/1 +f 2929/1 2930/1 2931/1 +f 2932/1 2933/1 2934/1 +f 2935/1 2936/1 2937/1 +f 2938/1 2939/1 2940/1 +f 2941/1 2942/1 2943/1 +f 2944/1 2945/1 2946/1 +f 2947/1 2948/1 2949/1 +f 2950/1 2951/1 2952/1 +f 2953/1 2954/1 2955/1 +f 2956/1 2957/1 2958/1 +f 2959/1 2960/1 2961/1 +f 2962/1 2963/1 2964/1 +f 2965/1 2966/1 2967/1 +f 2968/1 2969/1 2970/1 +f 2971/1 2972/1 2973/1 +f 2974/1 2975/1 2976/1 +f 2977/1 2978/1 2979/1 +f 2980/1 2981/1 2982/1 +f 2983/1 2984/1 2985/1 +f 2986/1 2987/1 2988/1 +f 2989/1 2990/1 2991/1 +f 2992/1 2993/1 2994/1 +f 2995/1 2996/1 2997/1 +f 2998/1 2999/1 3000/1 +f 3001/1 3002/1 3003/1 +f 3004/1 3005/1 3006/1 +f 3007/1 3008/1 3009/1 +f 3010/1 3011/1 3012/1 +f 3013/1 3014/1 3015/1 +f 3016/1 3017/1 3018/1 +f 3019/1 3020/1 3021/1 +f 3022/1 3023/1 3024/1 +f 3025/1 3026/1 3027/1 +f 3028/1 3029/1 3030/1 +f 3031/1 3032/1 3033/1 +f 3034/1 3035/1 3036/1 +f 3037/1 3038/1 3039/1 +f 3040/1 3041/1 3042/1 +f 3043/1 3044/1 3045/1 +f 3046/1 3047/1 3048/1 +f 3049/1 3050/1 3051/1 +f 3052/1 3053/1 3054/1 +f 3055/1 3056/1 3057/1 +f 3058/1 3059/1 3060/1 +f 3061/1 3062/1 3063/1 +f 3064/1 3065/1 3066/1 +f 3067/1 3068/1 3069/1 +f 3070/1 3071/1 3072/1 +f 3073/1 3074/1 3075/1 +f 3076/1 3077/1 3078/1 +f 3079/1 3080/1 3081/1 +f 3082/1 3083/1 3084/1 +f 3084/1 3083/1 3085/1 +f 3086/1 3083/1 3082/1 +f 3087/1 3086/1 3082/1 +f 3084/1 3085/1 3088/1 +f 3088/1 3085/1 3089/1 +f 3090/1 3086/1 3091/1 +f 3091/1 3086/1 3087/1 +f 3092/1 3088/1 3089/1 +f 3092/1 3089/1 3093/1 +f 3094/1 3090/1 3095/1 +f 3095/1 3090/1 3091/1 +f 3096/1 3092/1 3093/1 +f 3097/1 3094/1 3095/1 +f 3097/1 3095/1 3098/1 +f 3099/1 3096/1 3093/1 +f 3100/1 3097/1 3098/1 +f 3101/1 3096/1 3099/1 +f 3100/1 3098/1 3102/1 +f 3103/1 3101/1 3099/1 +f 3100/1 3102/1 3104/1 +f 3105/1 3101/1 3103/1 +f 3104/1 3101/1 3105/1 +f 3100/1 3104/1 3105/1 +f 3106/1 3107/1 3108/1 +f 3109/1 3107/1 3106/1 +f 3109/1 3106/1 3110/1 +f 3106/1 3108/1 3111/1 +f 3112/1 3109/1 3110/1 +f 3112/1 3110/1 3113/1 +f 3111/1 3108/1 3114/1 +f 3111/1 3114/1 3115/1 +f 3116/1 3112/1 3113/1 +f 3116/1 3113/1 3117/1 +f 3115/1 3114/1 3118/1 +f 3115/1 3118/1 3119/1 +f 3120/1 3116/1 3117/1 +f 3120/1 3117/1 3121/1 +f 3119/1 3118/1 3122/1 +f 3123/1 3120/1 3121/1 +f 3119/1 3122/1 3124/1 +f 3123/1 3121/1 3125/1 +f 3124/1 3122/1 3126/1 +f 3127/1 3123/1 3125/1 +f 3127/1 3125/1 3128/1 +f 3124/1 3126/1 3129/1 +f 3129/1 3126/1 3130/1 +f 3131/1 3127/1 3128/1 +f 3131/1 3128/1 3132/1 +f 3129/1 3130/1 3133/1 +f 3133/1 3130/1 3134/1 +f 3135/1 3131/1 3132/1 +f 3135/1 3132/1 3136/1 +f 3133/1 3134/1 3136/1 +f 3136/1 3134/1 3135/1 +f 3003/1 2995/1 2997/1 +f 3137/1 2992/1 2994/1 +f 2997/1 2992/1 3137/1 +f 3009/1 3001/1 3003/1 +f 3137/1 2986/1 2988/1 +f 3009/1 3003/1 3107/1 +f 3107/1 3003/1 2997/1 +f 3107/1 2997/1 3108/1 +f 3108/1 2997/1 3137/1 +f 3138/1 3007/1 3009/1 +f 3138/1 3009/1 3109/1 +f 3109/1 3009/1 3107/1 +f 3108/1 3137/1 2988/1 +f 3013/1 3015/1 3018/1 +f 3018/1 3015/1 3109/1 +f 3109/1 3015/1 3138/1 +f 2988/1 2980/1 2982/1 +f 3108/1 2988/1 2982/1 +f 2982/1 2978/1 2977/1 +f 3016/1 3018/1 3024/1 +f 3024/1 3018/1 3109/1 +f 3108/1 2982/1 3114/1 +f 3114/1 2982/1 2977/1 +f 2977/1 2972/1 2971/1 +f 3112/1 3024/1 3109/1 +f 3022/1 3024/1 3026/1 +f 3026/1 3024/1 3112/1 +f 3114/1 2977/1 2971/1 +f 3027/1 3026/1 3139/1 +f 3139/1 3026/1 3112/1 +f 3140/1 2971/1 2966/1 +f 3114/1 2971/1 3118/1 +f 3118/1 2971/1 3140/1 +f 3140/1 2966/1 2965/1 +f 3032/1 3139/1 3033/1 +f 3033/1 3139/1 3038/1 +f 3038/1 3139/1 3116/1 +f 3116/1 3139/1 3112/1 +f 3141/1 3140/1 2960/1 +f 3118/1 3140/1 3141/1 +f 3141/1 2960/1 2959/1 +f 3039/1 3038/1 3041/1 +f 3041/1 3038/1 3116/1 +f 3118/1 3141/1 2953/1 +f 2953/1 3141/1 2954/1 +f 3042/1 3041/1 3044/1 +f 3044/1 3041/1 3120/1 +f 3120/1 3041/1 3116/1 +f 2947/1 2953/1 2948/1 +f 3118/1 2953/1 3122/1 +f 3122/1 2953/1 2947/1 +f 3045/1 3044/1 3047/1 +f 3047/1 3044/1 3120/1 +f 2944/1 2947/1 2945/1 +f 3122/1 2947/1 2944/1 +f 3047/1 3120/1 3123/1 +f 3047/1 3123/1 3050/1 +f 2941/1 2944/1 2942/1 +f 3122/1 2944/1 2941/1 +f 3126/1 3122/1 2941/1 +f 3048/1 3047/1 3050/1 +f 3050/1 3123/1 3053/1 +f 2935/1 3126/1 2941/1 +f 3059/1 3123/1 3127/1 +f 3056/1 3123/1 3059/1 +f 3053/1 3123/1 3056/1 +f 3051/1 3050/1 3053/1 +f 2935/1 2941/1 2936/1 +f 2929/1 3126/1 2935/1 +f 3130/1 3126/1 2929/1 +f 3059/1 3127/1 3062/1 +f 2923/1 3130/1 2929/1 +f 3068/1 3127/1 3131/1 +f 3062/1 3127/1 3068/1 +f 3134/1 3130/1 2917/1 +f 2917/1 3130/1 2923/1 +f 2929/1 2935/1 2930/1 +f 3068/1 3131/1 3074/1 +f 2914/1 3134/1 2917/1 +f 3074/1 3131/1 3077/1 +f 3054/1 3053/1 3056/1 +f 2908/1 3134/1 2911/1 +f 2911/1 3134/1 2914/1 +f 3080/1 3131/1 3135/1 +f 3077/1 3131/1 3080/1 +f 2905/1 3134/1 2908/1 +f 3135/1 3134/1 2905/1 +f 3080/1 3135/1 3142/1 +f 3142/1 3135/1 2905/1 +f 3057/1 3056/1 3059/1 +f 2923/1 2929/1 2924/1 +f 3060/1 3059/1 3062/1 +f 2917/1 2923/1 2918/1 +f 3063/1 3062/1 3068/1 +f 2914/1 2917/1 2915/1 +f 3069/1 3068/1 3074/1 +f 2911/1 2914/1 2912/1 +f 3075/1 3074/1 3077/1 +f 2908/1 2911/1 2909/1 +f 3078/1 3077/1 3080/1 +f 2905/1 2908/1 2906/1 +f 3081/1 3080/1 3142/1 +f 3142/1 2905/1 3143/1 +f 3144/1 2998/1 3000/1 +f 3145/1 3004/1 3006/1 +f 3000/1 3004/1 3145/1 +f 3146/1 3147/1 3144/1 +f 2991/1 3146/1 3144/1 +f 3148/1 3010/1 3012/1 +f 3145/1 3010/1 3148/1 +f 3144/1 3000/1 3149/1 +f 3150/1 3000/1 3145/1 +f 3149/1 3000/1 3150/1 +f 2991/1 3144/1 3149/1 +f 3151/1 2989/1 2991/1 +f 3150/1 3145/1 3148/1 +f 3151/1 2991/1 3149/1 +f 3152/1 3153/1 3154/1 +f 3148/1 3153/1 3152/1 +f 2983/1 2985/1 3151/1 +f 3150/1 3148/1 3152/1 +f 2983/1 3151/1 3155/1 +f 3155/1 3151/1 3156/1 +f 3156/1 3151/1 3149/1 +f 3152/1 3020/1 3019/1 +f 3157/1 3158/1 3155/1 +f 3150/1 3152/1 3019/1 +f 3157/1 3155/1 3159/1 +f 3159/1 3155/1 3156/1 +f 3160/1 3161/1 3162/1 +f 3019/1 3161/1 3160/1 +f 2974/1 2976/1 3159/1 +f 3150/1 3019/1 3160/1 +f 2974/1 3159/1 3163/1 +f 3163/1 3159/1 3156/1 +f 3164/1 3160/1 3029/1 +f 3165/1 3160/1 3164/1 +f 3150/1 3160/1 3165/1 +f 2969/1 3163/1 2970/1 +f 2970/1 3163/1 3166/1 +f 3166/1 3163/1 3156/1 +f 3164/1 3029/1 3028/1 +f 3167/1 3164/1 3035/1 +f 3165/1 3164/1 3167/1 +f 2963/1 3166/1 2964/1 +f 2964/1 3166/1 3168/1 +f 3168/1 3166/1 3169/1 +f 3169/1 3166/1 3156/1 +f 3167/1 3035/1 3034/1 +f 3170/1 3167/1 3171/1 +f 3172/1 3167/1 3170/1 +f 3165/1 3167/1 3172/1 +f 2957/1 3168/1 2958/1 +f 2958/1 3168/1 3173/1 +f 3173/1 3168/1 3169/1 +f 3170/1 3171/1 3174/1 +f 3175/1 3170/1 3176/1 +f 3172/1 3170/1 3175/1 +f 2951/1 3173/1 2952/1 +f 2952/1 3173/1 3177/1 +f 3177/1 3173/1 3169/1 +f 3175/1 3176/1 3178/1 +f 3179/1 3175/1 3180/1 +f 3172/1 3175/1 3179/1 +f 3181/1 3177/1 3182/1 +f 3182/1 3177/1 3169/1 +f 3179/1 3180/1 3183/1 +f 3184/1 3182/1 3169/1 +f 3184/1 3169/1 3185/1 +f 3185/1 3169/1 3186/1 +f 3185/1 3186/1 3187/1 +f 3188/1 3179/1 3189/1 +f 3172/1 3179/1 3188/1 +f 3190/1 3184/1 3191/1 +f 3191/1 3184/1 3185/1 +f 3192/1 3172/1 3188/1 +f 3187/1 3186/1 3193/1 +f 3194/1 3192/1 3195/1 +f 3195/1 3192/1 3188/1 +f 3188/1 3189/1 3196/1 +f 3193/1 3186/1 3197/1 +f 3198/1 3192/1 3194/1 +f 3197/1 3186/1 3199/1 +f 3200/1 3192/1 3198/1 +f 3199/1 3186/1 3201/1 +f 3201/1 3186/1 3202/1 +f 3203/1 3192/1 3204/1 +f 3204/1 3192/1 3200/1 +f 3201/1 3202/1 3205/1 +f 3206/1 3203/1 3204/1 +f 3205/1 3202/1 3207/1 +f 3207/1 3202/1 3208/1 +f 3209/1 3203/1 3206/1 +f 3208/1 3202/1 3210/1 +f 3202/1 3203/1 3211/1 +f 3211/1 3203/1 3209/1 +f 3210/1 3202/1 3211/1 +f 3195/1 3188/1 3212/1 +f 2939/1 3185/1 2940/1 +f 2940/1 3185/1 3187/1 +f 3195/1 3212/1 3213/1 +f 3194/1 3195/1 3214/1 +f 2933/1 3187/1 2934/1 +f 2934/1 3187/1 3193/1 +f 3194/1 3214/1 3215/1 +f 3198/1 3194/1 3216/1 +f 2927/1 3193/1 2928/1 +f 2928/1 3193/1 3197/1 +f 3198/1 3216/1 3217/1 +f 3200/1 3198/1 3218/1 +f 2921/1 3197/1 2922/1 +f 2922/1 3197/1 3199/1 +f 3200/1 3218/1 3219/1 +f 3204/1 3200/1 3065/1 +f 3220/1 3199/1 3221/1 +f 3221/1 3199/1 3201/1 +f 3204/1 3065/1 3064/1 +f 3206/1 3204/1 3071/1 +f 3222/1 3201/1 3223/1 +f 3223/1 3201/1 3205/1 +f 3206/1 3071/1 3070/1 +f 3209/1 3206/1 3224/1 +f 3225/1 3205/1 3226/1 +f 3226/1 3205/1 3207/1 +f 3209/1 3224/1 3227/1 +f 3211/1 3209/1 3228/1 +f 3229/1 3207/1 3230/1 +f 3230/1 3207/1 3208/1 +f 3210/1 3211/1 3231/1 +f 3232/1 3211/1 3228/1 +f 3233/1 3208/1 3234/1 +f 3234/1 3208/1 3210/1 +f 3235/1 3210/1 3231/1 +f 3236/1 3149/1 3150/1 +f 3156/1 3149/1 3236/1 +f 3156/1 3236/1 3237/1 +f 3236/1 3150/1 3238/1 +f 3238/1 3150/1 3239/1 +f 3156/1 3237/1 3240/1 +f 3239/1 3150/1 3165/1 +f 3169/1 3156/1 3240/1 +f 3169/1 3240/1 3241/1 +f 3242/1 3165/1 3172/1 +f 3239/1 3165/1 3242/1 +f 3186/1 3169/1 3241/1 +f 3186/1 3241/1 3243/1 +f 3244/1 3172/1 3192/1 +f 3242/1 3172/1 3244/1 +f 3244/1 3192/1 3245/1 +f 3202/1 3186/1 3243/1 +f 3202/1 3243/1 3246/1 +f 3245/1 3192/1 3203/1 +f 3202/1 3246/1 3247/1 +f 3245/1 3203/1 3247/1 +f 3247/1 3203/1 3202/1 +f 3236/1 3248/1 3249/1 +f 3238/1 3248/1 3236/1 +f 3250/1 3248/1 3238/1 +f 3236/1 3249/1 3237/1 +f 3237/1 3249/1 3251/1 +f 3239/1 3250/1 3238/1 +f 3237/1 3251/1 3240/1 +f 3252/1 3250/1 3242/1 +f 3242/1 3250/1 3239/1 +f 3240/1 3251/1 3253/1 +f 3240/1 3253/1 3241/1 +f 3254/1 3241/1 3253/1 +f 3255/1 3252/1 3242/1 +f 3243/1 3241/1 3254/1 +f 3255/1 3242/1 3244/1 +f 3255/1 3244/1 3245/1 +f 3256/1 3243/1 3254/1 +f 3255/1 3245/1 3257/1 +f 3246/1 3243/1 3256/1 +f 3257/1 3245/1 3258/1 +f 3247/1 3246/1 3256/1 +f 3258/1 3245/1 3247/1 +f 3258/1 3247/1 3256/1 +f 3248/1 3259/1 3249/1 +f 3260/1 3259/1 3248/1 +f 3261/1 3249/1 3259/1 +f 3260/1 3248/1 3250/1 +f 3262/1 3260/1 3250/1 +f 3251/1 3249/1 3263/1 +f 3263/1 3249/1 3261/1 +f 3264/1 3262/1 3250/1 +f 3265/1 3251/1 3263/1 +f 3264/1 3250/1 3252/1 +f 3266/1 3264/1 3252/1 +f 3253/1 3251/1 3267/1 +f 3267/1 3251/1 3265/1 +f 3268/1 3253/1 3267/1 +f 3266/1 3252/1 3255/1 +f 3269/1 3266/1 3255/1 +f 3254/1 3253/1 3268/1 +f 3270/1 3254/1 3268/1 +f 3271/1 3269/1 3255/1 +f 3271/1 3255/1 3257/1 +f 3272/1 3271/1 3257/1 +f 3256/1 3254/1 3273/1 +f 3273/1 3254/1 3270/1 +f 3272/1 3257/1 3258/1 +f 3274/1 3272/1 3258/1 +f 3275/1 3256/1 3273/1 +f 3275/1 3274/1 3258/1 +f 3258/1 3256/1 3275/1 +f 3259/1 3082/1 3084/1 +f 3260/1 3082/1 3259/1 +f 3259/1 3084/1 3261/1 +f 3262/1 3082/1 3260/1 +f 3087/1 3082/1 3262/1 +f 3261/1 3084/1 3088/1 +f 3263/1 3261/1 3088/1 +f 3264/1 3087/1 3262/1 +f 3265/1 3263/1 3088/1 +f 3091/1 3087/1 3264/1 +f 3265/1 3088/1 3092/1 +f 3266/1 3091/1 3264/1 +f 3267/1 3265/1 3092/1 +f 3095/1 3091/1 3266/1 +f 3268/1 3267/1 3092/1 +f 3095/1 3266/1 3269/1 +f 3096/1 3268/1 3092/1 +f 3270/1 3268/1 3096/1 +f 3095/1 3269/1 3271/1 +f 3098/1 3095/1 3271/1 +f 3098/1 3271/1 3272/1 +f 3273/1 3270/1 3101/1 +f 3101/1 3270/1 3096/1 +f 3102/1 3098/1 3272/1 +f 3102/1 3272/1 3274/1 +f 3275/1 3273/1 3101/1 +f 3104/1 3275/1 3101/1 +f 3102/1 3274/1 3104/1 +f 3104/1 3274/1 3275/1 +f 3083/1 3106/1 3085/1 +f 3110/1 3106/1 3083/1 +f 3085/1 3106/1 3111/1 +f 3113/1 3110/1 3086/1 +f 3086/1 3110/1 3083/1 +f 3085/1 3111/1 3089/1 +f 3089/1 3111/1 3115/1 +f 3117/1 3113/1 3086/1 +f 3117/1 3086/1 3090/1 +f 3089/1 3115/1 3119/1 +f 3121/1 3117/1 3090/1 +f 3089/1 3119/1 3093/1 +f 3121/1 3090/1 3094/1 +f 3093/1 3119/1 3124/1 +f 3121/1 3094/1 3125/1 +f 3125/1 3094/1 3097/1 +f 3099/1 3093/1 3124/1 +f 3125/1 3097/1 3128/1 +f 3099/1 3124/1 3129/1 +f 3128/1 3097/1 3100/1 +f 3128/1 3100/1 3132/1 +f 3103/1 3099/1 3129/1 +f 3103/1 3129/1 3133/1 +f 3105/1 3103/1 3133/1 +f 3136/1 3100/1 3105/1 +f 3132/1 3100/1 3136/1 +f 3136/1 3105/1 3133/1 +f 3142/1 3143/1 3276/1 +f 3234/1 3210/1 3142/1 +f 3233/1 3234/1 3276/1 +f 3276/1 3234/1 3142/1 +f 3142/1 3210/1 3081/1 +f 3081/1 3210/1 3235/1 +f 3079/1 3081/1 3235/1 +f 3231/1 3211/1 3080/1 +f 3235/1 3231/1 3079/1 +f 3079/1 3231/1 3080/1 +f 3080/1 3211/1 3078/1 +f 3078/1 3211/1 3232/1 +f 3076/1 3078/1 3232/1 +f 3228/1 3209/1 3077/1 +f 3232/1 3228/1 3076/1 +f 3076/1 3228/1 3077/1 +f 3077/1 3209/1 3075/1 +f 3075/1 3209/1 3227/1 +f 3073/1 3075/1 3227/1 +f 3224/1 3206/1 3074/1 +f 3227/1 3224/1 3073/1 +f 3073/1 3224/1 3074/1 +f 3074/1 3206/1 3069/1 +f 3069/1 3206/1 3070/1 +f 3069/1 3070/1 3072/1 +f 3067/1 3069/1 3072/1 +f 3071/1 3204/1 3068/1 +f 3072/1 3071/1 3067/1 +f 3067/1 3071/1 3068/1 +f 3068/1 3204/1 3063/1 +f 3063/1 3204/1 3064/1 +f 3063/1 3064/1 3066/1 +f 3061/1 3063/1 3066/1 +f 3065/1 3200/1 3062/1 +f 3066/1 3065/1 3061/1 +f 3061/1 3065/1 3062/1 +f 3062/1 3200/1 3060/1 +f 3060/1 3200/1 3219/1 +f 3058/1 3060/1 3219/1 +f 3218/1 3198/1 3059/1 +f 3219/1 3218/1 3058/1 +f 3058/1 3218/1 3059/1 +f 3057/1 3217/1 3055/1 +f 3198/1 3217/1 3057/1 +f 3198/1 3057/1 3059/1 +f 3216/1 3194/1 3056/1 +f 3217/1 3216/1 3055/1 +f 3055/1 3216/1 3056/1 +f 3054/1 3215/1 3052/1 +f 3194/1 3215/1 3054/1 +f 3194/1 3054/1 3056/1 +f 3214/1 3195/1 3053/1 +f 3215/1 3214/1 3052/1 +f 3052/1 3214/1 3053/1 +f 3051/1 3213/1 3049/1 +f 3195/1 3213/1 3051/1 +f 3195/1 3051/1 3053/1 +f 3212/1 3188/1 3050/1 +f 3213/1 3212/1 3049/1 +f 3049/1 3212/1 3050/1 +f 3048/1 3196/1 3046/1 +f 3188/1 3196/1 3048/1 +f 3188/1 3048/1 3050/1 +f 3189/1 3179/1 3047/1 +f 3196/1 3189/1 3046/1 +f 3046/1 3189/1 3047/1 +f 3045/1 3183/1 3043/1 +f 3179/1 3183/1 3045/1 +f 3179/1 3045/1 3047/1 +f 3180/1 3175/1 3044/1 +f 3183/1 3180/1 3043/1 +f 3043/1 3180/1 3044/1 +f 3042/1 3178/1 3040/1 +f 3175/1 3178/1 3042/1 +f 3175/1 3042/1 3044/1 +f 3176/1 3170/1 3041/1 +f 3178/1 3176/1 3040/1 +f 3040/1 3176/1 3041/1 +f 3039/1 3174/1 3037/1 +f 3170/1 3174/1 3039/1 +f 3170/1 3039/1 3041/1 +f 3171/1 3167/1 3038/1 +f 3174/1 3171/1 3037/1 +f 3037/1 3171/1 3038/1 +f 3033/1 3036/1 3031/1 +f 3034/1 3036/1 3033/1 +f 3167/1 3034/1 3033/1 +f 3167/1 3033/1 3038/1 +f 3035/1 3164/1 3032/1 +f 3032/1 3164/1 3139/1 +f 3036/1 3035/1 3031/1 +f 3031/1 3035/1 3032/1 +f 3027/1 3030/1 3025/1 +f 3028/1 3030/1 3027/1 +f 3139/1 3028/1 3027/1 +f 3164/1 3028/1 3139/1 +f 3029/1 3160/1 3026/1 +f 3030/1 3029/1 3025/1 +f 3025/1 3029/1 3026/1 +f 3022/1 3162/1 3023/1 +f 3160/1 3162/1 3022/1 +f 3160/1 3022/1 3026/1 +f 3023/1 3162/1 3161/1 +f 3024/1 3023/1 3161/1 +f 3024/1 3161/1 3019/1 +f 3016/1 3021/1 3017/1 +f 3019/1 3021/1 3016/1 +f 3019/1 3016/1 3024/1 +f 3017/1 3021/1 3020/1 +f 3018/1 3017/1 3020/1 +f 3018/1 3020/1 3152/1 +f 3013/1 3154/1 3014/1 +f 3152/1 3154/1 3013/1 +f 3152/1 3013/1 3018/1 +f 3014/1 3154/1 3153/1 +f 3015/1 3014/1 3153/1 +f 3015/1 3153/1 3148/1 +f 3138/1 3015/1 3148/1 +f 3007/1 3011/1 3008/1 +f 3012/1 3011/1 3007/1 +f 3138/1 3012/1 3007/1 +f 3148/1 3012/1 3138/1 +f 3008/1 3011/1 3010/1 +f 3009/1 3008/1 3010/1 +f 3009/1 3010/1 3145/1 +f 3001/1 3005/1 3002/1 +f 3006/1 3005/1 3001/1 +f 3145/1 3006/1 3001/1 +f 3145/1 3001/1 3009/1 +f 3002/1 3005/1 3004/1 +f 3003/1 3002/1 3004/1 +f 3003/1 3004/1 3000/1 +f 2995/1 2999/1 2996/1 +f 3000/1 2999/1 2995/1 +f 3000/1 2995/1 3003/1 +f 2996/1 2999/1 2998/1 +f 2997/1 2996/1 2998/1 +f 2997/1 2998/1 3144/1 +f 2992/1 3147/1 2993/1 +f 3144/1 3147/1 2992/1 +f 3144/1 2992/1 2997/1 +f 2993/1 3147/1 3146/1 +f 2994/1 2993/1 3146/1 +f 3137/1 3146/1 2991/1 +f 2994/1 3146/1 3137/1 +f 2986/1 2990/1 2987/1 +f 2991/1 2990/1 2986/1 +f 3137/1 2991/1 2986/1 +f 2987/1 2990/1 2989/1 +f 2988/1 2987/1 2989/1 +f 2988/1 2989/1 3151/1 +f 2980/1 2984/1 2981/1 +f 2985/1 2984/1 2980/1 +f 3151/1 2985/1 2980/1 +f 3151/1 2980/1 2988/1 +f 2981/1 2984/1 2983/1 +f 2982/1 2981/1 2983/1 +f 2982/1 2983/1 3155/1 +f 2978/1 3158/1 2979/1 +f 3155/1 3158/1 2978/1 +f 3155/1 2978/1 2982/1 +f 2979/1 3158/1 3157/1 +f 2977/1 2979/1 3157/1 +f 2977/1 3157/1 3159/1 +f 2972/1 2975/1 2973/1 +f 2976/1 2975/1 2972/1 +f 3159/1 2976/1 2972/1 +f 3159/1 2972/1 2977/1 +f 2973/1 2975/1 2974/1 +f 2971/1 2973/1 2974/1 +f 2971/1 2974/1 3163/1 +f 2971/1 3163/1 2966/1 +f 2966/1 3163/1 2969/1 +f 2966/1 2969/1 2968/1 +f 2967/1 2966/1 2968/1 +f 2967/1 2968/1 2970/1 +f 2965/1 2967/1 2970/1 +f 2965/1 2970/1 3166/1 +f 3140/1 2965/1 3166/1 +f 3140/1 3166/1 2963/1 +f 2960/1 3140/1 2963/1 +f 2960/1 2963/1 2962/1 +f 2961/1 2960/1 2962/1 +f 2961/1 2962/1 2964/1 +f 2959/1 2961/1 2964/1 +f 2959/1 2964/1 3168/1 +f 3141/1 2959/1 3168/1 +f 3141/1 3168/1 2957/1 +f 2954/1 3141/1 2957/1 +f 2954/1 2957/1 2956/1 +f 2955/1 2954/1 2956/1 +f 2955/1 2956/1 2958/1 +f 2953/1 2955/1 2958/1 +f 2953/1 2958/1 3173/1 +f 2953/1 3173/1 2948/1 +f 2948/1 3173/1 2951/1 +f 2948/1 2951/1 2950/1 +f 2949/1 2948/1 2950/1 +f 2949/1 2950/1 2952/1 +f 2947/1 2949/1 2952/1 +f 2947/1 2952/1 3177/1 +f 2947/1 3177/1 2945/1 +f 2945/1 3177/1 3181/1 +f 2946/1 2945/1 3181/1 +f 2946/1 3181/1 3182/1 +f 2944/1 2946/1 3182/1 +f 2944/1 3182/1 3184/1 +f 2944/1 3184/1 2942/1 +f 2942/1 3184/1 3190/1 +f 2943/1 2942/1 3190/1 +f 2943/1 3190/1 3191/1 +f 2941/1 2943/1 3191/1 +f 2941/1 3191/1 3185/1 +f 2941/1 3185/1 2936/1 +f 2936/1 3185/1 2939/1 +f 2936/1 2939/1 2938/1 +f 2937/1 2936/1 2938/1 +f 2937/1 2938/1 2940/1 +f 2935/1 2937/1 2940/1 +f 2935/1 2940/1 3187/1 +f 2935/1 3187/1 2930/1 +f 2930/1 3187/1 2933/1 +f 2930/1 2933/1 2932/1 +f 2931/1 2930/1 2932/1 +f 2931/1 2932/1 2934/1 +f 2929/1 2931/1 2934/1 +f 2929/1 2934/1 3193/1 +f 2929/1 3193/1 2924/1 +f 2924/1 3193/1 2927/1 +f 2924/1 2927/1 2926/1 +f 2925/1 2924/1 2926/1 +f 2925/1 2926/1 2928/1 +f 2923/1 2925/1 2928/1 +f 2923/1 2928/1 3197/1 +f 2923/1 3197/1 2918/1 +f 2918/1 3197/1 2921/1 +f 2918/1 2921/1 2920/1 +f 2919/1 2918/1 2920/1 +f 2922/1 3199/1 2917/1 +f 2920/1 2922/1 2919/1 +f 2919/1 2922/1 2917/1 +f 2917/1 3199/1 2915/1 +f 2915/1 3199/1 3220/1 +f 2916/1 2915/1 3220/1 +f 3221/1 3201/1 2914/1 +f 3220/1 3221/1 2916/1 +f 2916/1 3221/1 2914/1 +f 2914/1 3201/1 2912/1 +f 2912/1 3201/1 3222/1 +f 2913/1 2912/1 3222/1 +f 3223/1 3205/1 2911/1 +f 3222/1 3223/1 2913/1 +f 2913/1 3223/1 2911/1 +f 2911/1 3205/1 2909/1 +f 2909/1 3205/1 3225/1 +f 2910/1 2909/1 3225/1 +f 3226/1 3207/1 2908/1 +f 3225/1 3226/1 2910/1 +f 2910/1 3226/1 2908/1 +f 2908/1 3207/1 2906/1 +f 2906/1 3207/1 3229/1 +f 2907/1 2906/1 3229/1 +f 3230/1 3208/1 2905/1 +f 3229/1 3230/1 2907/1 +f 2907/1 3230/1 2905/1 +f 2905/1 3208/1 3143/1 +f 3143/1 3208/1 3233/1 +f 3276/1 3143/1 3233/1 +f 3277/2 3278/3 3279/4 +f 3280/5 3281/6 3279/7 +f 3282/1 3283/1 3284/1 +f 3285/1 3286/1 3287/1 +f 3288/1 3285/1 3289/1 +f 3290/1 3291/1 3292/1 +f 3286/1 3277/1 3293/1 +f 3294/1 3295/1 3296/1 +f 3297/1 3298/1 3299/1 +f 3290/1 3294/1 3300/1 +f 3301/1 3282/1 3302/1 +f 3298/1 3303/1 3304/1 +f 3305/1 3288/1 3306/1 +f 3282/1 3301/1 3307/1 +f 3308/1 3301/1 3309/1 +f 3310/1 3311/1 3312/1 +f 3283/1 3297/1 3313/1 +f 3294/1 3308/1 3314/1 +f 3279/4 3281/8 3315/9 +f 3279/1 3309/1 3314/1 +f 3291/1 3292/1 3310/1 +f 3284/1 3316/1 3317/1 +f 3287/1 3318/1 3319/1 +f 3289/1 3319/1 3320/1 +f 3321/1 3322/1 3292/1 +f 3293/1 3315/1 3318/1 +f 3323/1 3321/1 3324/1 +f 3299/1 3325/1 3326/1 +f 3300/1 3324/1 3321/1 +f 3302/1 3317/1 3327/1 +f 3304/1 3328/1 3325/1 +f 3306/1 3320/1 3329/1 +f 3317/1 3330/1 3327/1 +f 3309/1 3327/1 3331/1 +f 3280/1 3310/1 3322/1 +f 3313/1 3326/1 3316/1 +f 3314/1 3331/1 3324/1 +f 3296/1 3295/1 3311/1 +f 3280/1 3323/1 3332/1 +f 3277/1 3286/1 3333/1 +f 3334/1 3285/1 3288/1 +f 3286/1 3285/1 3334/1 +f 3335/1 3296/1 3311/1 +f 3335/1 3278/1 3277/1 +f 3305/1 3303/1 3336/1 +f 3304/1 3303/1 3305/1 +f 3337/1 3318/1 3315/1 +f 3320/1 3319/1 3338/1 +f 3338/1 3319/1 3318/1 +f 3280/1 3332/1 3339/1 +f 3315/1 3281/1 3339/1 +f 3340/1 3328/1 3329/1 +f 3329/1 3328/1 3304/1 +f 3311/10 3310/11 3279/7 +f 3341/1 3342/1 3343/1 +f 3344/1 3342/1 3341/1 +f 3345/1 3342/1 3344/1 +f 3346/1 3347/1 3348/1 +f 3349/1 3347/1 3346/1 +f 3350/1 3347/1 3349/1 +f 3351/1 3345/1 3344/1 +f 3352/1 3345/1 3351/1 +f 3341/1 3343/1 3353/1 +f 3353/1 3343/1 3354/1 +f 3355/1 3350/1 3349/1 +f 3356/1 3350/1 3355/1 +f 3357/1 3348/1 3358/1 +f 3346/1 3348/1 3357/1 +f 3359/1 3352/1 3351/1 +f 3360/1 3352/1 3359/1 +f 3353/1 3354/1 3361/1 +f 3362/1 3356/1 3355/1 +f 3363/1 3356/1 3362/1 +f 3364/1 3358/1 3365/1 +f 3357/1 3358/1 3364/1 +f 3366/1 3360/1 3359/1 +f 3367/1 3360/1 3366/1 +f 3353/1 3361/1 3368/1 +f 3369/1 3363/1 3362/1 +f 3370/1 3363/1 3369/1 +f 3371/1 3365/1 3372/1 +f 3364/1 3365/1 3371/1 +f 3373/1 3367/1 3366/1 +f 3353/1 3368/1 3374/1 +f 3375/1 3370/1 3369/1 +f 3376/1 3370/1 3375/1 +f 3377/1 3372/1 3378/1 +f 3371/1 3372/1 3377/1 +f 3379/1 3373/1 3366/1 +f 3380/1 3376/1 3375/1 +f 3377/1 3378/1 3381/1 +f 3382/1 3373/1 3379/1 +f 3353/1 3374/1 3383/1 +f 3384/1 3376/1 3380/1 +f 3381/1 3378/1 3385/1 +f 3386/1 3382/1 3379/1 +f 3387/1 3382/1 3386/1 +f 3388/1 3384/1 3380/1 +f 3381/1 3385/1 3389/1 +f 3389/1 3385/1 3390/1 +f 3386/1 3391/1 3387/1 +f 3392/1 3393/1 3394/1 +f 3395/1 3394/1 3388/1 +f 3392/1 3394/1 3395/1 +f 3395/1 3388/1 3380/1 +f 3389/1 3390/1 3396/1 +f 3389/1 3396/1 3397/1 +f 3398/1 3391/1 3386/1 +f 3389/1 3397/1 3399/1 +f 3400/1 3398/1 3386/1 +f 3401/1 3398/1 3400/1 +f 3402/1 3399/1 3403/1 +f 3389/1 3399/1 3402/1 +f 3404/1 3401/1 3400/1 +f 3405/1 3404/1 3400/1 +f 3402/1 3403/1 3406/1 +f 3407/1 3405/1 3400/1 +f 3408/1 3405/1 3407/1 +f 3402/1 3406/1 3409/1 +f 3410/1 3402/1 3409/1 +f 3411/1 3408/1 3407/1 +f 3410/1 3409/1 3412/1 +f 3411/1 3407/1 3413/1 +f 3414/1 3410/1 3415/1 +f 3415/1 3410/1 3412/1 +f 3416/1 3411/1 3413/1 +f 3417/1 3416/1 3413/1 +f 3418/1 3414/1 3415/1 +f 3419/1 3416/1 3417/1 +f 3418/1 3415/1 3420/1 +f 3421/1 3422/1 3423/1 +f 3419/1 3417/1 3424/1 +f 3424/1 3417/1 3425/1 +f 3426/1 3418/1 3420/1 +f 3427/1 3418/1 3426/1 +f 3428/1 3418/1 3427/1 +f 3429/1 3430/1 3431/1 +f 3432/1 3433/1 3434/1 +f 3435/1 3424/1 3425/1 +f 3435/1 3425/1 3436/1 +f 3436/1 3425/1 3437/1 +f 3438/1 3428/1 3427/1 +f 3439/1 3428/1 3438/1 +f 3440/1 3429/1 3441/1 +f 3441/1 3429/1 3431/1 +f 3436/1 3437/1 3442/1 +f 3442/1 3437/1 3443/1 +f 3444/1 3439/1 3438/1 +f 3445/1 3439/1 3444/1 +f 3446/1 3439/1 3445/1 +f 3447/1 3440/1 3441/1 +f 3442/1 3443/1 3448/1 +f 3448/1 3443/1 3449/1 +f 3450/1 3446/1 3445/1 +f 3451/1 3446/1 3450/1 +f 3452/1 3447/1 3441/1 +f 3448/1 3449/1 3453/1 +f 3453/1 3449/1 3454/1 +f 3455/1 3451/1 3450/1 +f 3456/1 3452/1 3441/1 +f 3453/1 3454/1 3457/1 +f 3457/1 3454/1 3458/1 +f 3459/1 3455/1 3450/1 +f 3460/1 3456/1 3461/1 +f 3461/1 3456/1 3441/1 +f 3457/1 3458/1 3462/1 +f 3462/1 3458/1 3463/1 +f 3464/1 3459/1 3450/1 +f 3465/1 3460/1 3461/1 +f 3450/1 3466/1 3467/1 +f 3462/1 3463/1 3468/1 +f 3468/1 3463/1 3469/1 +f 3470/1 3464/1 3450/1 +f 3469/1 3465/1 3461/1 +f 3450/1 3467/1 3470/1 +f 3468/1 3469/1 3461/1 +f 3471/1 3424/1 3435/1 +f 3472/1 3424/1 3471/1 +f 3473/1 3435/1 3436/1 +f 3471/1 3435/1 3473/1 +f 3474/1 3436/1 3442/1 +f 3473/1 3436/1 3474/1 +f 3475/1 3442/1 3448/1 +f 3474/1 3442/1 3475/1 +f 3476/1 3448/1 3453/1 +f 3475/1 3448/1 3476/1 +f 3477/1 3453/1 3457/1 +f 3476/1 3453/1 3477/1 +f 3478/1 3457/1 3462/1 +f 3477/1 3457/1 3478/1 +f 3479/1 3462/1 3468/1 +f 3478/1 3462/1 3479/1 +f 3480/1 3468/1 3461/1 +f 3479/1 3468/1 3480/1 +f 3481/1 3404/1 3405/1 +f 3482/1 3404/1 3481/1 +f 3483/1 3405/1 3408/1 +f 3481/1 3405/1 3483/1 +f 3484/1 3485/1 3486/1 +f 3487/1 3485/1 3484/1 +f 3488/1 3487/1 3484/1 +f 3485/1 3489/1 3490/1 +f 3485/1 3490/1 3486/1 +f 3491/1 3492/1 3493/1 +f 3493/1 3492/1 3494/1 +f 3495/1 3491/1 3496/1 +f 3496/1 3491/1 3493/1 +f 3497/1 3495/1 3496/1 +f 3498/1 3495/1 3497/1 +f 3499/1 3498/1 3497/1 +f 3500/1 3498/1 3499/1 +f 3501/1 3500/1 3499/1 +f 3502/1 3500/1 3503/1 +f 3503/1 3500/1 3501/1 +f 3492/1 3484/1 3494/1 +f 3488/1 3484/1 3492/1 +f 3504/1 3441/1 3505/1 +f 3506/1 3504/1 3505/1 +f 3506/1 3505/1 3507/1 +f 3507/1 3505/1 3508/1 +f 3507/1 3508/1 3509/1 +f 3507/1 3509/1 3510/1 +f 3510/1 3509/1 3511/1 +f 3511/1 3509/1 3512/1 +f 3511/1 3512/1 3513/1 +f 3514/1 3515/1 3516/1 +f 3514/1 3516/1 3393/1 +f 3517/1 3514/1 3393/1 +f 3518/1 3519/1 3520/1 +f 3520/1 3519/1 3514/1 +f 3514/1 3519/1 3521/1 +f 3521/1 3519/1 3522/1 +f 3522/1 3519/1 3523/1 +f 3524/1 3518/1 3525/1 +f 3525/1 3518/1 3526/1 +f 3526/1 3518/1 3520/1 +f 3527/1 3518/1 3524/1 +f 3523/1 3519/1 3528/1 +f 3529/1 3518/1 3527/1 +f 3523/1 3528/1 3530/1 +f 3520/1 3514/1 3517/1 +f 3422/1 3520/1 3517/1 +f 3531/1 3532/1 3533/1 +f 3534/1 3532/1 3531/1 +f 3535/1 3532/1 3534/1 +f 3536/1 3537/1 3538/1 +f 3539/1 3537/1 3536/1 +f 3540/1 3537/1 3539/1 +f 3541/1 3533/1 3542/1 +f 3531/1 3533/1 3541/1 +f 3543/1 3535/1 3534/1 +f 3544/1 3535/1 3543/1 +f 3545/1 3538/1 3546/1 +f 3536/1 3538/1 3545/1 +f 3547/1 3540/1 3539/1 +f 3548/1 3540/1 3547/1 +f 3549/1 3542/1 3550/1 +f 3541/1 3542/1 3549/1 +f 3551/1 3544/1 3543/1 +f 3552/1 3544/1 3551/1 +f 3545/1 3546/1 3553/1 +f 3554/1 3548/1 3547/1 +f 3555/1 3548/1 3554/1 +f 3556/1 3550/1 3557/1 +f 3549/1 3550/1 3556/1 +f 3558/1 3552/1 3551/1 +f 3559/1 3552/1 3558/1 +f 3545/1 3553/1 3560/1 +f 3561/1 3555/1 3554/1 +f 3562/1 3555/1 3561/1 +f 3563/1 3557/1 3564/1 +f 3556/1 3557/1 3563/1 +f 3565/1 3559/1 3558/1 +f 3566/1 3559/1 3565/1 +f 3545/1 3560/1 3567/1 +f 3568/1 3562/1 3561/1 +f 3563/1 3564/1 3569/1 +f 3570/1 3566/1 3565/1 +f 3571/1 3568/1 3561/1 +f 3569/1 3564/1 3572/1 +f 3545/1 3567/1 3573/1 +f 3574/1 3568/1 3571/1 +f 3575/1 3566/1 3570/1 +f 3576/1 3574/1 3571/1 +f 3569/1 3572/1 3577/1 +f 3577/1 3572/1 3578/1 +f 3579/1 3575/1 3580/1 +f 3580/1 3575/1 3570/1 +f 3545/1 3573/1 3581/1 +f 3582/1 3574/1 3576/1 +f 3578/1 3583/1 3577/1 +f 3584/1 3582/1 3576/1 +f 3585/1 3584/1 3576/1 +f 3577/1 3583/1 3586/1 +f 3587/1 3585/1 3576/1 +f 3577/1 3586/1 3588/1 +f 3589/1 3587/1 3576/1 +f 3577/1 3588/1 3590/1 +f 3591/1 3589/1 3576/1 +f 3590/1 3588/1 3482/1 +f 3592/1 3589/1 3591/1 +f 3590/1 3482/1 3481/1 +f 3593/1 3592/1 3591/1 +f 3590/1 3481/1 3483/1 +f 3594/1 3593/1 3591/1 +f 3595/1 3593/1 3594/1 +f 3596/1 3590/1 3483/1 +f 3596/1 3483/1 3597/1 +f 3598/1 3595/1 3594/1 +f 3599/1 3596/1 3600/1 +f 3600/1 3596/1 3597/1 +f 3598/1 3594/1 3601/1 +f 3601/1 3594/1 3602/1 +f 3603/1 3601/1 3602/1 +f 3604/1 3599/1 3600/1 +f 3603/1 3602/1 3605/1 +f 3604/1 3600/1 3606/1 +f 3607/1 3603/1 3605/1 +f 3472/1 3604/1 3606/1 +f 3471/1 3604/1 3472/1 +f 3608/1 3604/1 3471/1 +f 3607/1 3605/1 3609/1 +f 3609/1 3605/1 3610/1 +f 3611/1 3612/1 3613/1 +f 3614/1 3609/1 3610/1 +f 3473/1 3608/1 3471/1 +f 3615/1 3608/1 3473/1 +f 3614/1 3610/1 3616/1 +f 3616/1 3610/1 3617/1 +f 3611/1 3613/1 3618/1 +f 3474/1 3615/1 3473/1 +f 3475/1 3615/1 3474/1 +f 3619/1 3615/1 3475/1 +f 3616/1 3617/1 3620/1 +f 3620/1 3617/1 3621/1 +f 3504/1 3618/1 3622/1 +f 3611/1 3618/1 3504/1 +f 3476/1 3619/1 3475/1 +f 3623/1 3619/1 3476/1 +f 3620/1 3621/1 3624/1 +f 3624/1 3621/1 3625/1 +f 3504/1 3622/1 3626/1 +f 3477/1 3623/1 3476/1 +f 3627/1 3623/1 3477/1 +f 3624/1 3625/1 3628/1 +f 3628/1 3625/1 3629/1 +f 3504/1 3626/1 3630/1 +f 3478/1 3627/1 3477/1 +f 3631/1 3627/1 3478/1 +f 3628/1 3629/1 3632/1 +f 3504/1 3630/1 3633/1 +f 3479/1 3631/1 3478/1 +f 3634/1 3631/1 3479/1 +f 3628/1 3632/1 3635/1 +f 3480/1 3633/1 3636/1 +f 3504/1 3633/1 3480/1 +f 3637/1 3638/1 3628/1 +f 3480/1 3634/1 3479/1 +f 3639/1 3634/1 3480/1 +f 3628/1 3635/1 3640/1 +f 3480/1 3636/1 3639/1 +f 3640/1 3637/1 3628/1 +f 3611/1 3504/1 3641/1 +f 3641/1 3504/1 3506/1 +f 3641/1 3506/1 3642/1 +f 3642/1 3506/1 3507/1 +f 3642/1 3507/1 3643/1 +f 3643/1 3507/1 3644/1 +f 3644/1 3507/1 3510/1 +f 3644/1 3510/1 3645/1 +f 3645/1 3510/1 3511/1 +f 3645/1 3511/1 3646/1 +f 3646/1 3511/1 3513/1 +f 3646/1 3503/1 3647/1 +f 3513/1 3503/1 3646/1 +f 3494/1 3648/1 3649/1 +f 3493/1 3494/1 3649/1 +f 3493/1 3649/1 3650/1 +f 3496/1 3493/1 3650/1 +f 3497/1 3496/1 3650/1 +f 3497/1 3650/1 3651/1 +f 3499/1 3497/1 3651/1 +f 3499/1 3651/1 3652/1 +f 3499/1 3652/1 3653/1 +f 3501/1 3499/1 3653/1 +f 3503/1 3501/1 3653/1 +f 3503/1 3653/1 3647/1 +f 3648/1 3484/1 3654/1 +f 3494/1 3484/1 3648/1 +f 3484/1 3486/1 3655/1 +f 3654/1 3484/1 3655/1 +f 3490/1 3656/1 3486/1 +f 3486/1 3656/1 3657/1 +f 3658/1 3656/1 3490/1 +f 3486/1 3657/1 3655/1 +f 3655/1 3657/1 3659/1 +f 3659/1 3657/1 3660/1 +f 3661/1 3657/1 3662/1 +f 3660/1 3657/1 3663/1 +f 3663/1 3657/1 3661/1 +f 3664/1 3656/1 3658/1 +f 3665/1 3664/1 3658/1 +f 3666/1 3665/1 3658/1 +f 3657/1 3667/1 3668/1 +f 3656/1 3667/1 3657/1 +f 3485/1 3667/1 3489/1 +f 3669/1 3667/1 3485/1 +f 3668/1 3667/1 3669/1 +f 3670/1 3668/1 3669/1 +f 3489/1 3667/1 3671/1 +f 3672/1 3668/1 3670/1 +f 3489/1 3671/1 3673/1 +f 3674/1 3672/1 3670/1 +f 3489/1 3673/1 3675/1 +f 3675/1 3673/1 3676/1 +f 3677/1 3674/1 3670/1 +f 3678/1 3677/1 3670/1 +f 3669/1 3485/1 3679/1 +f 3679/1 3485/1 3487/1 +f 3679/1 3487/1 3680/1 +f 3680/1 3487/1 3488/1 +f 3680/1 3488/1 3492/1 +f 3681/1 3680/1 3492/1 +f 3681/1 3492/1 3491/1 +f 3682/1 3681/1 3491/1 +f 3682/1 3491/1 3495/1 +f 3683/1 3682/1 3495/1 +f 3683/1 3495/1 3498/1 +f 3684/1 3683/1 3498/1 +f 3684/1 3498/1 3500/1 +f 3685/1 3684/1 3500/1 +f 3685/1 3500/1 3502/1 +f 3686/1 3685/1 3502/1 +f 3686/1 3512/1 3687/1 +f 3502/1 3512/1 3686/1 +f 3505/1 3441/1 3688/1 +f 3688/1 3441/1 3431/1 +f 3508/1 3505/1 3688/1 +f 3689/1 3508/1 3688/1 +f 3509/1 3508/1 3689/1 +f 3690/1 3509/1 3689/1 +f 3512/1 3509/1 3687/1 +f 3687/1 3509/1 3690/1 +f 3516/1 3515/1 3691/1 +f 3516/1 3691/1 3692/1 +f 3393/1 3516/1 3692/1 +f 3393/1 3692/1 3394/1 +f 3515/1 3693/1 3694/1 +f 3695/1 3693/1 3696/1 +f 3696/1 3693/1 3515/1 +f 3697/1 3693/1 3695/1 +f 3515/1 3694/1 3691/1 +f 3691/1 3694/1 3698/1 +f 3698/1 3694/1 3699/1 +f 3699/1 3694/1 3700/1 +f 3700/1 3694/1 3701/1 +f 3702/1 3693/1 3697/1 +f 3701/1 3694/1 3703/1 +f 3694/1 3693/1 3519/1 +f 3518/1 3694/1 3519/1 +f 3521/1 3696/1 3514/1 +f 3514/1 3696/1 3515/1 +f 3480/1 3461/1 3504/1 +f 3504/1 3461/1 3441/1 +f 3387/1 3391/1 3583/1 +f 3578/1 3387/1 3583/1 +f 3533/1 3342/1 3345/1 +f 3532/1 3342/1 3533/1 +f 3343/1 3342/1 3532/1 +f 3343/1 3532/1 3535/1 +f 3542/1 3345/1 3352/1 +f 3533/1 3345/1 3542/1 +f 3354/1 3343/1 3535/1 +f 3354/1 3535/1 3544/1 +f 3550/1 3352/1 3360/1 +f 3542/1 3352/1 3550/1 +f 3361/1 3354/1 3544/1 +f 3361/1 3544/1 3552/1 +f 3557/1 3360/1 3367/1 +f 3550/1 3360/1 3557/1 +f 3368/1 3361/1 3552/1 +f 3368/1 3552/1 3559/1 +f 3564/1 3367/1 3373/1 +f 3557/1 3367/1 3564/1 +f 3374/1 3368/1 3559/1 +f 3374/1 3559/1 3566/1 +f 3393/1 3432/1 3575/1 +f 3517/1 3393/1 3575/1 +f 3531/1 3341/1 3353/1 +f 3541/1 3341/1 3531/1 +f 3344/1 3341/1 3541/1 +f 3534/1 3531/1 3353/1 +f 3534/1 3353/1 3704/1 +f 3543/1 3534/1 3704/1 +f 3549/1 3344/1 3541/1 +f 3351/1 3344/1 3549/1 +f 3543/1 3704/1 3705/1 +f 3551/1 3543/1 3705/1 +f 3556/1 3351/1 3549/1 +f 3359/1 3351/1 3556/1 +f 3551/1 3705/1 3706/1 +f 3558/1 3551/1 3706/1 +f 3563/1 3359/1 3556/1 +f 3366/1 3359/1 3563/1 +f 3558/1 3706/1 3707/1 +f 3565/1 3558/1 3707/1 +f 3569/1 3366/1 3563/1 +f 3379/1 3366/1 3569/1 +f 3565/1 3707/1 3708/1 +f 3570/1 3565/1 3708/1 +f 3577/1 3379/1 3569/1 +f 3386/1 3379/1 3577/1 +f 3570/1 3708/1 3709/1 +f 3580/1 3570/1 3709/1 +f 3590/1 3386/1 3577/1 +f 3400/1 3386/1 3590/1 +f 3580/1 3709/1 3710/1 +f 3579/1 3580/1 3710/1 +f 3596/1 3400/1 3590/1 +f 3407/1 3400/1 3596/1 +f 3579/1 3710/1 3434/1 +f 3711/1 3579/1 3434/1 +f 3599/1 3407/1 3596/1 +f 3413/1 3407/1 3599/1 +f 3711/1 3434/1 3433/1 +f 3712/1 3711/1 3433/1 +f 3604/1 3413/1 3599/1 +f 3417/1 3413/1 3604/1 +f 3712/1 3433/1 3430/1 +f 3612/1 3712/1 3430/1 +f 3608/1 3417/1 3604/1 +f 3425/1 3417/1 3608/1 +f 3612/1 3430/1 3429/1 +f 3613/1 3612/1 3429/1 +f 3615/1 3425/1 3608/1 +f 3437/1 3425/1 3615/1 +f 3613/1 3429/1 3440/1 +f 3618/1 3613/1 3440/1 +f 3619/1 3437/1 3615/1 +f 3443/1 3437/1 3619/1 +f 3618/1 3440/1 3447/1 +f 3622/1 3618/1 3447/1 +f 3623/1 3443/1 3619/1 +f 3449/1 3443/1 3623/1 +f 3622/1 3447/1 3452/1 +f 3626/1 3622/1 3452/1 +f 3627/1 3449/1 3623/1 +f 3454/1 3449/1 3627/1 +f 3626/1 3452/1 3456/1 +f 3630/1 3626/1 3456/1 +f 3631/1 3454/1 3627/1 +f 3458/1 3454/1 3631/1 +f 3630/1 3456/1 3460/1 +f 3633/1 3630/1 3460/1 +f 3634/1 3458/1 3631/1 +f 3463/1 3458/1 3634/1 +f 3633/1 3460/1 3465/1 +f 3636/1 3633/1 3465/1 +f 3639/1 3463/1 3634/1 +f 3469/1 3463/1 3639/1 +f 3636/1 3465/1 3469/1 +f 3639/1 3636/1 3469/1 +f 3713/1 3502/1 3503/1 +f 3714/1 3502/1 3713/1 +f 3513/1 3512/1 3715/1 +f 3513/1 3715/1 3716/1 +f 3716/1 3715/1 3717/1 +f 3715/1 3512/1 3502/1 +f 3715/1 3502/1 3714/1 +f 3715/1 3714/1 3717/1 +f 3713/1 3503/1 3716/1 +f 3716/1 3503/1 3513/1 +f 3718/1 3714/1 3713/1 +f 3718/1 3713/1 3719/1 +f 3720/1 3717/1 3721/1 +f 3716/1 3717/1 3720/1 +f 3717/1 3714/1 3718/1 +f 3722/1 3717/1 3718/1 +f 3721/1 3717/1 3722/1 +f 3722/1 3718/1 3723/1 +f 3723/1 3718/1 3724/1 +f 3725/1 3721/1 3722/1 +f 3723/1 3724/1 3726/1 +f 3727/1 3725/1 3722/1 +f 3723/1 3726/1 3728/1 +f 3729/1 3727/1 3722/1 +f 3723/1 3728/1 3730/1 +f 3731/1 3729/1 3722/1 +f 3732/1 3713/1 3716/1 +f 3719/1 3713/1 3732/1 +f 3732/1 3716/1 3733/1 +f 3733/1 3716/1 3720/1 +f 3734/1 3719/1 3732/1 +f 3733/1 3720/1 3735/1 +f 3736/1 3734/1 3732/1 +f 3733/1 3735/1 3737/1 +f 3738/1 3736/1 3732/1 +f 3733/1 3737/1 3739/1 +f 3740/1 3738/1 3732/1 +f 3733/1 3739/1 3741/1 +f 3722/1 3723/1 3732/1 +f 3733/1 3722/1 3732/1 +f 3383/1 3374/1 3566/1 +f 3575/1 3383/1 3566/1 +f 3432/1 3383/1 3575/1 +f 3564/1 3373/1 3382/1 +f 3572/1 3564/1 3382/1 +f 3572/1 3382/1 3387/1 +f 3578/1 3572/1 3387/1 +f 3586/1 3391/1 3398/1 +f 3583/1 3391/1 3586/1 +f 3588/1 3398/1 3401/1 +f 3586/1 3398/1 3588/1 +f 3482/1 3401/1 3404/1 +f 3588/1 3401/1 3482/1 +f 3519/1 3693/1 3528/1 +f 3528/1 3693/1 3702/1 +f 3528/1 3702/1 3530/1 +f 3530/1 3702/1 3697/1 +f 3530/1 3697/1 3523/1 +f 3523/1 3697/1 3695/1 +f 3523/1 3695/1 3522/1 +f 3522/1 3695/1 3696/1 +f 3522/1 3696/1 3521/1 +f 3671/1 3667/1 3656/1 +f 3664/1 3671/1 3656/1 +f 3673/1 3671/1 3664/1 +f 3676/1 3673/1 3665/1 +f 3665/1 3673/1 3664/1 +f 3666/1 3676/1 3665/1 +f 3675/1 3676/1 3666/1 +f 3658/1 3675/1 3666/1 +f 3489/1 3675/1 3658/1 +f 3490/1 3489/1 3658/1 +f 3720/1 3721/1 3735/1 +f 3735/1 3721/1 3725/1 +f 3735/1 3725/1 3737/1 +f 3737/1 3725/1 3727/1 +f 3737/1 3727/1 3739/1 +f 3739/1 3727/1 3729/1 +f 3739/1 3729/1 3741/1 +f 3741/1 3729/1 3731/1 +f 3741/1 3731/1 3733/1 +f 3733/1 3731/1 3722/1 +f 3724/1 3718/1 3719/1 +f 3734/1 3724/1 3719/1 +f 3726/1 3724/1 3734/1 +f 3736/1 3726/1 3734/1 +f 3728/1 3726/1 3736/1 +f 3730/1 3728/1 3738/1 +f 3738/1 3728/1 3736/1 +f 3740/1 3730/1 3738/1 +f 3723/1 3730/1 3740/1 +f 3732/1 3723/1 3740/1 +f 3483/1 3408/1 3411/1 +f 3597/1 3483/1 3411/1 +f 3597/1 3411/1 3416/1 +f 3600/1 3597/1 3416/1 +f 3600/1 3416/1 3419/1 +f 3606/1 3600/1 3419/1 +f 3606/1 3419/1 3424/1 +f 3472/1 3606/1 3424/1 +f 3427/1 3426/1 3609/1 +f 3427/1 3609/1 3614/1 +f 3438/1 3427/1 3614/1 +f 3438/1 3614/1 3616/1 +f 3444/1 3438/1 3616/1 +f 3444/1 3616/1 3620/1 +f 3445/1 3444/1 3620/1 +f 3445/1 3620/1 3624/1 +f 3450/1 3445/1 3624/1 +f 3450/1 3624/1 3628/1 +f 3742/1 3450/1 3628/1 +f 3742/1 3628/1 3743/1 +f 3744/1 3742/1 3743/1 +f 3744/1 3743/1 3745/1 +f 3746/1 3744/1 3745/1 +f 3746/1 3745/1 3747/1 +f 3748/1 3746/1 3747/1 +f 3748/1 3747/1 3749/1 +f 3406/1 3403/1 3592/1 +f 3406/1 3592/1 3593/1 +f 3409/1 3406/1 3593/1 +f 3409/1 3593/1 3595/1 +f 3655/1 3669/1 3679/1 +f 3655/1 3679/1 3680/1 +f 3654/1 3655/1 3680/1 +f 3655/1 3670/1 3669/1 +f 3659/1 3670/1 3655/1 +f 3649/1 3648/1 3681/1 +f 3649/1 3681/1 3682/1 +f 3649/1 3682/1 3650/1 +f 3650/1 3682/1 3683/1 +f 3650/1 3683/1 3651/1 +f 3651/1 3683/1 3684/1 +f 3651/1 3684/1 3652/1 +f 3652/1 3684/1 3685/1 +f 3652/1 3685/1 3653/1 +f 3653/1 3685/1 3686/1 +f 3653/1 3686/1 3647/1 +f 3648/1 3654/1 3680/1 +f 3648/1 3680/1 3681/1 +f 3688/1 3431/1 3641/1 +f 3641/1 3431/1 3611/1 +f 3642/1 3688/1 3641/1 +f 3689/1 3688/1 3643/1 +f 3643/1 3688/1 3642/1 +f 3644/1 3689/1 3643/1 +f 3690/1 3689/1 3645/1 +f 3645/1 3689/1 3644/1 +f 3687/1 3690/1 3646/1 +f 3646/1 3690/1 3645/1 +f 3692/1 3691/1 3520/1 +f 3422/1 3692/1 3520/1 +f 3394/1 3692/1 3422/1 +f 3691/1 3698/1 3526/1 +f 3691/1 3526/1 3520/1 +f 3611/1 3431/1 3749/1 +f 3749/1 3431/1 3748/1 +f 3396/1 3390/1 3582/1 +f 3584/1 3396/1 3582/1 +f 3538/1 3347/1 3350/1 +f 3537/1 3347/1 3538/1 +f 3348/1 3347/1 3537/1 +f 3348/1 3537/1 3540/1 +f 3546/1 3350/1 3356/1 +f 3538/1 3350/1 3546/1 +f 3358/1 3348/1 3540/1 +f 3358/1 3540/1 3548/1 +f 3553/1 3356/1 3363/1 +f 3546/1 3356/1 3553/1 +f 3365/1 3358/1 3548/1 +f 3365/1 3548/1 3555/1 +f 3560/1 3363/1 3370/1 +f 3553/1 3363/1 3560/1 +f 3372/1 3365/1 3555/1 +f 3372/1 3555/1 3562/1 +f 3567/1 3370/1 3376/1 +f 3560/1 3370/1 3567/1 +f 3378/1 3372/1 3562/1 +f 3378/1 3562/1 3568/1 +f 3388/1 3394/1 3422/1 +f 3581/1 3388/1 3422/1 +f 3536/1 3346/1 3357/1 +f 3545/1 3346/1 3536/1 +f 3349/1 3346/1 3545/1 +f 3539/1 3536/1 3357/1 +f 3750/1 3349/1 3545/1 +f 3355/1 3349/1 3750/1 +f 3539/1 3357/1 3364/1 +f 3547/1 3539/1 3364/1 +f 3751/1 3355/1 3750/1 +f 3362/1 3355/1 3751/1 +f 3547/1 3364/1 3371/1 +f 3554/1 3547/1 3371/1 +f 3752/1 3362/1 3751/1 +f 3369/1 3362/1 3752/1 +f 3554/1 3371/1 3377/1 +f 3561/1 3554/1 3377/1 +f 3753/1 3369/1 3752/1 +f 3375/1 3369/1 3753/1 +f 3561/1 3377/1 3381/1 +f 3571/1 3561/1 3381/1 +f 3754/1 3375/1 3753/1 +f 3380/1 3375/1 3754/1 +f 3571/1 3381/1 3389/1 +f 3576/1 3571/1 3389/1 +f 3755/1 3380/1 3754/1 +f 3395/1 3380/1 3755/1 +f 3576/1 3389/1 3402/1 +f 3591/1 3576/1 3402/1 +f 3756/1 3395/1 3755/1 +f 3392/1 3395/1 3756/1 +f 3591/1 3402/1 3410/1 +f 3594/1 3591/1 3410/1 +f 3757/1 3392/1 3756/1 +f 3758/1 3392/1 3757/1 +f 3594/1 3410/1 3414/1 +f 3602/1 3594/1 3414/1 +f 3421/1 3758/1 3757/1 +f 3759/1 3758/1 3421/1 +f 3602/1 3414/1 3418/1 +f 3605/1 3602/1 3418/1 +f 3423/1 3759/1 3421/1 +f 3760/1 3759/1 3423/1 +f 3605/1 3418/1 3428/1 +f 3610/1 3605/1 3428/1 +f 3761/1 3760/1 3423/1 +f 3762/1 3760/1 3761/1 +f 3610/1 3428/1 3439/1 +f 3617/1 3610/1 3439/1 +f 3763/1 3762/1 3761/1 +f 3764/1 3762/1 3763/1 +f 3617/1 3439/1 3446/1 +f 3621/1 3617/1 3446/1 +f 3765/1 3764/1 3763/1 +f 3766/1 3764/1 3765/1 +f 3621/1 3446/1 3451/1 +f 3625/1 3621/1 3451/1 +f 3767/1 3766/1 3765/1 +f 3768/1 3766/1 3767/1 +f 3625/1 3451/1 3455/1 +f 3629/1 3625/1 3455/1 +f 3769/1 3768/1 3767/1 +f 3770/1 3768/1 3769/1 +f 3629/1 3455/1 3459/1 +f 3632/1 3629/1 3459/1 +f 3638/1 3770/1 3769/1 +f 3466/1 3770/1 3638/1 +f 3632/1 3459/1 3464/1 +f 3635/1 3632/1 3464/1 +f 3637/1 3466/1 3638/1 +f 3467/1 3466/1 3637/1 +f 3635/1 3464/1 3470/1 +f 3640/1 3635/1 3470/1 +f 3640/1 3467/1 3637/1 +f 3470/1 3467/1 3640/1 +f 3647/1 3686/1 3771/1 +f 3647/1 3771/1 3772/1 +f 3772/1 3771/1 3773/1 +f 3774/1 3687/1 3646/1 +f 3775/1 3687/1 3774/1 +f 3776/1 3775/1 3774/1 +f 3771/1 3687/1 3775/1 +f 3686/1 3687/1 3771/1 +f 3773/1 3771/1 3775/1 +f 3773/1 3775/1 3776/1 +f 3646/1 3647/1 3772/1 +f 3774/1 3646/1 3772/1 +f 3772/1 3773/1 3777/1 +f 3777/1 3773/1 3778/1 +f 3779/1 3776/1 3774/1 +f 3779/1 3774/1 3780/1 +f 3781/1 3773/1 3776/1 +f 3778/1 3773/1 3781/1 +f 3782/1 3776/1 3779/1 +f 3781/1 3776/1 3782/1 +f 3783/1 3778/1 3781/1 +f 3784/1 3778/1 3783/1 +f 3782/1 3779/1 3785/1 +f 3785/1 3779/1 3786/1 +f 3786/1 3779/1 3787/1 +f 3788/1 3778/1 3784/1 +f 3787/1 3779/1 3789/1 +f 3790/1 3788/1 3784/1 +f 3774/1 3772/1 3777/1 +f 3780/1 3774/1 3777/1 +f 3780/1 3777/1 3791/1 +f 3791/1 3777/1 3792/1 +f 3792/1 3777/1 3793/1 +f 3793/1 3777/1 3794/1 +f 3795/1 3780/1 3796/1 +f 3796/1 3780/1 3797/1 +f 3797/1 3780/1 3791/1 +f 3794/1 3777/1 3798/1 +f 3799/1 3780/1 3795/1 +f 3794/1 3798/1 3800/1 +f 3792/1 3781/1 3791/1 +f 3791/1 3781/1 3782/1 +f 3567/1 3376/1 3384/1 +f 3573/1 3567/1 3384/1 +f 3573/1 3384/1 3388/1 +f 3581/1 3573/1 3388/1 +f 3574/1 3378/1 3568/1 +f 3385/1 3378/1 3574/1 +f 3582/1 3385/1 3574/1 +f 3390/1 3385/1 3582/1 +f 3397/1 3396/1 3584/1 +f 3397/1 3584/1 3585/1 +f 3399/1 3397/1 3585/1 +f 3399/1 3585/1 3587/1 +f 3399/1 3587/1 3589/1 +f 3403/1 3399/1 3589/1 +f 3403/1 3589/1 3592/1 +f 3703/1 3694/1 3518/1 +f 3529/1 3703/1 3518/1 +f 3701/1 3703/1 3529/1 +f 3527/1 3701/1 3529/1 +f 3700/1 3701/1 3524/1 +f 3524/1 3701/1 3527/1 +f 3699/1 3700/1 3524/1 +f 3525/1 3699/1 3524/1 +f 3698/1 3699/1 3525/1 +f 3526/1 3698/1 3525/1 +f 3657/1 3668/1 3662/1 +f 3662/1 3668/1 3672/1 +f 3662/1 3672/1 3661/1 +f 3661/1 3672/1 3674/1 +f 3661/1 3674/1 3663/1 +f 3663/1 3674/1 3677/1 +f 3663/1 3677/1 3660/1 +f 3660/1 3677/1 3678/1 +f 3660/1 3678/1 3659/1 +f 3659/1 3678/1 3670/1 +f 3789/1 3779/1 3780/1 +f 3799/1 3789/1 3780/1 +f 3787/1 3789/1 3799/1 +f 3786/1 3787/1 3795/1 +f 3795/1 3787/1 3799/1 +f 3796/1 3786/1 3795/1 +f 3785/1 3786/1 3796/1 +f 3797/1 3785/1 3796/1 +f 3782/1 3785/1 3797/1 +f 3791/1 3782/1 3797/1 +f 3777/1 3778/1 3798/1 +f 3798/1 3778/1 3788/1 +f 3798/1 3788/1 3800/1 +f 3800/1 3788/1 3790/1 +f 3800/1 3790/1 3794/1 +f 3794/1 3790/1 3784/1 +f 3794/1 3784/1 3793/1 +f 3793/1 3784/1 3783/1 +f 3793/1 3783/1 3792/1 +f 3792/1 3783/1 3781/1 +f 3598/1 3409/1 3595/1 +f 3412/1 3409/1 3598/1 +f 3601/1 3412/1 3598/1 +f 3415/1 3412/1 3601/1 +f 3603/1 3415/1 3601/1 +f 3420/1 3415/1 3603/1 +f 3607/1 3420/1 3603/1 +f 3609/1 3420/1 3607/1 +f 3426/1 3420/1 3609/1 +f 3801/1 3802/1 3803/1 +f 3804/1 3802/1 3801/1 +f 3805/1 3802/1 3804/1 +f 3806/1 3807/1 3808/1 +f 3809/1 3807/1 3806/1 +f 3810/1 3807/1 3809/1 +f 3811/1 3805/1 3804/1 +f 3812/1 3805/1 3811/1 +f 3801/1 3803/1 3813/1 +f 3813/1 3803/1 3814/1 +f 3815/1 3810/1 3809/1 +f 3816/1 3810/1 3815/1 +f 3817/1 3808/1 3818/1 +f 3806/1 3808/1 3817/1 +f 3819/1 3812/1 3811/1 +f 3820/1 3812/1 3819/1 +f 3813/1 3814/1 3821/1 +f 3822/1 3816/1 3815/1 +f 3823/1 3816/1 3822/1 +f 3824/1 3818/1 3825/1 +f 3817/1 3818/1 3824/1 +f 3826/1 3820/1 3819/1 +f 3827/1 3820/1 3826/1 +f 3813/1 3821/1 3828/1 +f 3829/1 3823/1 3822/1 +f 3830/1 3823/1 3829/1 +f 3831/1 3825/1 3832/1 +f 3824/1 3825/1 3831/1 +f 3833/1 3827/1 3826/1 +f 3813/1 3828/1 3834/1 +f 3835/1 3830/1 3829/1 +f 3836/1 3830/1 3835/1 +f 3837/1 3832/1 3838/1 +f 3831/1 3832/1 3837/1 +f 3839/1 3833/1 3826/1 +f 3840/1 3836/1 3835/1 +f 3837/1 3838/1 3841/1 +f 3842/1 3833/1 3839/1 +f 3813/1 3834/1 3843/1 +f 3844/1 3836/1 3840/1 +f 3841/1 3838/1 3845/1 +f 3846/1 3842/1 3839/1 +f 3847/1 3842/1 3846/1 +f 3848/1 3844/1 3840/1 +f 3841/1 3845/1 3849/1 +f 3849/1 3845/1 3850/1 +f 3846/1 3851/1 3847/1 +f 3852/1 3853/1 3854/1 +f 3855/1 3854/1 3848/1 +f 3852/1 3854/1 3855/1 +f 3855/1 3848/1 3840/1 +f 3849/1 3850/1 3856/1 +f 3849/1 3856/1 3857/1 +f 3858/1 3851/1 3846/1 +f 3849/1 3857/1 3859/1 +f 3860/1 3858/1 3846/1 +f 3861/1 3858/1 3860/1 +f 3862/1 3859/1 3863/1 +f 3849/1 3859/1 3862/1 +f 3864/1 3861/1 3860/1 +f 3865/1 3864/1 3860/1 +f 3862/1 3863/1 3866/1 +f 3867/1 3865/1 3860/1 +f 3868/1 3865/1 3867/1 +f 3862/1 3866/1 3869/1 +f 3870/1 3862/1 3869/1 +f 3871/1 3868/1 3867/1 +f 3870/1 3869/1 3872/1 +f 3871/1 3867/1 3873/1 +f 3874/1 3870/1 3875/1 +f 3875/1 3870/1 3872/1 +f 3876/1 3871/1 3873/1 +f 3877/1 3876/1 3873/1 +f 3878/1 3874/1 3875/1 +f 3879/1 3876/1 3877/1 +f 3878/1 3875/1 3880/1 +f 3881/1 3882/1 3883/1 +f 3879/1 3877/1 3884/1 +f 3884/1 3877/1 3885/1 +f 3886/1 3878/1 3880/1 +f 3887/1 3878/1 3886/1 +f 3888/1 3878/1 3887/1 +f 3889/1 3890/1 3891/1 +f 3892/1 3893/1 3894/1 +f 3895/1 3884/1 3885/1 +f 3895/1 3885/1 3896/1 +f 3896/1 3885/1 3897/1 +f 3898/1 3888/1 3887/1 +f 3899/1 3888/1 3898/1 +f 3900/1 3889/1 3901/1 +f 3901/1 3889/1 3891/1 +f 3896/1 3897/1 3902/1 +f 3902/1 3897/1 3903/1 +f 3904/1 3899/1 3898/1 +f 3905/1 3899/1 3904/1 +f 3906/1 3899/1 3905/1 +f 3907/1 3900/1 3901/1 +f 3902/1 3903/1 3908/1 +f 3908/1 3903/1 3909/1 +f 3910/1 3906/1 3905/1 +f 3911/1 3906/1 3910/1 +f 3912/1 3907/1 3901/1 +f 3908/1 3909/1 3913/1 +f 3913/1 3909/1 3914/1 +f 3915/1 3911/1 3910/1 +f 3916/1 3912/1 3901/1 +f 3913/1 3914/1 3917/1 +f 3917/1 3914/1 3918/1 +f 3919/1 3915/1 3910/1 +f 3920/1 3916/1 3921/1 +f 3921/1 3916/1 3901/1 +f 3917/1 3918/1 3922/1 +f 3922/1 3918/1 3923/1 +f 3924/1 3919/1 3910/1 +f 3925/1 3920/1 3921/1 +f 3910/1 3926/1 3927/1 +f 3922/1 3923/1 3928/1 +f 3928/1 3923/1 3929/1 +f 3930/1 3924/1 3910/1 +f 3929/1 3925/1 3921/1 +f 3910/1 3927/1 3930/1 +f 3928/1 3929/1 3921/1 +f 3931/1 3884/1 3895/1 +f 3932/1 3884/1 3931/1 +f 3933/1 3895/1 3896/1 +f 3931/1 3895/1 3933/1 +f 3934/1 3896/1 3902/1 +f 3933/1 3896/1 3934/1 +f 3935/1 3902/1 3908/1 +f 3934/1 3902/1 3935/1 +f 3936/1 3908/1 3913/1 +f 3935/1 3908/1 3936/1 +f 3937/1 3913/1 3917/1 +f 3936/1 3913/1 3937/1 +f 3938/1 3917/1 3922/1 +f 3937/1 3917/1 3938/1 +f 3939/1 3922/1 3928/1 +f 3938/1 3922/1 3939/1 +f 3940/1 3928/1 3921/1 +f 3939/1 3928/1 3940/1 +f 3941/1 3864/1 3865/1 +f 3942/1 3864/1 3941/1 +f 3943/1 3865/1 3868/1 +f 3941/1 3865/1 3943/1 +f 3944/1 3945/1 3946/1 +f 3947/1 3945/1 3944/1 +f 3948/1 3947/1 3944/1 +f 3945/1 3949/1 3950/1 +f 3945/1 3950/1 3946/1 +f 3951/1 3952/1 3953/1 +f 3953/1 3952/1 3954/1 +f 3955/1 3951/1 3956/1 +f 3956/1 3951/1 3953/1 +f 3957/1 3955/1 3956/1 +f 3958/1 3955/1 3957/1 +f 3959/1 3958/1 3957/1 +f 3960/1 3958/1 3959/1 +f 3961/1 3960/1 3959/1 +f 3962/1 3960/1 3963/1 +f 3963/1 3960/1 3961/1 +f 3952/1 3944/1 3954/1 +f 3948/1 3944/1 3952/1 +f 3964/1 3901/1 3965/1 +f 3966/1 3964/1 3965/1 +f 3966/1 3965/1 3967/1 +f 3967/1 3965/1 3968/1 +f 3967/1 3968/1 3969/1 +f 3967/1 3969/1 3970/1 +f 3970/1 3969/1 3971/1 +f 3971/1 3969/1 3972/1 +f 3971/1 3972/1 3973/1 +f 3974/1 3975/1 3976/1 +f 3974/1 3976/1 3853/1 +f 3977/1 3974/1 3853/1 +f 3978/1 3979/1 3980/1 +f 3980/1 3979/1 3974/1 +f 3974/1 3979/1 3981/1 +f 3981/1 3979/1 3982/1 +f 3982/1 3979/1 3983/1 +f 3984/1 3978/1 3985/1 +f 3985/1 3978/1 3986/1 +f 3986/1 3978/1 3980/1 +f 3987/1 3978/1 3984/1 +f 3983/1 3979/1 3988/1 +f 3989/1 3978/1 3987/1 +f 3983/1 3988/1 3990/1 +f 3980/1 3974/1 3977/1 +f 3882/1 3980/1 3977/1 +f 3991/1 3992/1 3993/1 +f 3994/1 3992/1 3991/1 +f 3995/1 3992/1 3994/1 +f 3996/1 3997/1 3998/1 +f 3999/1 3997/1 3996/1 +f 4000/1 3997/1 3999/1 +f 4001/1 3993/1 4002/1 +f 3991/1 3993/1 4001/1 +f 4003/1 3995/1 3994/1 +f 4004/1 3995/1 4003/1 +f 4005/1 3998/1 4006/1 +f 3996/1 3998/1 4005/1 +f 4007/1 4000/1 3999/1 +f 4008/1 4000/1 4007/1 +f 4009/1 4002/1 4010/1 +f 4001/1 4002/1 4009/1 +f 4011/1 4004/1 4003/1 +f 4012/1 4004/1 4011/1 +f 4005/1 4006/1 4013/1 +f 4014/1 4008/1 4007/1 +f 4015/1 4008/1 4014/1 +f 4016/1 4010/1 4017/1 +f 4009/1 4010/1 4016/1 +f 4018/1 4012/1 4011/1 +f 4019/1 4012/1 4018/1 +f 4005/1 4013/1 4020/1 +f 4021/1 4015/1 4014/1 +f 4022/1 4015/1 4021/1 +f 4023/1 4017/1 4024/1 +f 4016/1 4017/1 4023/1 +f 4025/1 4019/1 4018/1 +f 4026/1 4019/1 4025/1 +f 4005/1 4020/1 4027/1 +f 4028/1 4022/1 4021/1 +f 4023/1 4024/1 4029/1 +f 4030/1 4026/1 4025/1 +f 4031/1 4028/1 4021/1 +f 4029/1 4024/1 4032/1 +f 4005/1 4027/1 4033/1 +f 4034/1 4028/1 4031/1 +f 4035/1 4026/1 4030/1 +f 4036/1 4034/1 4031/1 +f 4029/1 4032/1 4037/1 +f 4037/1 4032/1 4038/1 +f 4039/1 4035/1 4040/1 +f 4040/1 4035/1 4030/1 +f 4005/1 4033/1 4041/1 +f 4042/1 4034/1 4036/1 +f 4038/1 4043/1 4037/1 +f 4044/1 4042/1 4036/1 +f 4045/1 4044/1 4036/1 +f 4037/1 4043/1 4046/1 +f 4047/1 4045/1 4036/1 +f 4037/1 4046/1 4048/1 +f 4049/1 4047/1 4036/1 +f 4037/1 4048/1 4050/1 +f 4051/1 4049/1 4036/1 +f 4050/1 4048/1 3942/1 +f 4052/1 4049/1 4051/1 +f 4050/1 3942/1 3941/1 +f 4053/1 4052/1 4051/1 +f 4050/1 3941/1 3943/1 +f 4054/1 4053/1 4051/1 +f 4055/1 4053/1 4054/1 +f 4056/1 4050/1 3943/1 +f 4056/1 3943/1 4057/1 +f 4058/1 4055/1 4054/1 +f 4059/1 4056/1 4060/1 +f 4060/1 4056/1 4057/1 +f 4058/1 4054/1 4061/1 +f 4061/1 4054/1 4062/1 +f 4063/1 4061/1 4062/1 +f 4064/1 4059/1 4060/1 +f 4063/1 4062/1 4065/1 +f 4064/1 4060/1 4066/1 +f 4067/1 4063/1 4065/1 +f 3932/1 4064/1 4066/1 +f 3931/1 4064/1 3932/1 +f 4068/1 4064/1 3931/1 +f 4067/1 4065/1 4069/1 +f 4069/1 4065/1 4070/1 +f 4071/1 4072/1 4073/1 +f 4074/1 4069/1 4070/1 +f 3933/1 4068/1 3931/1 +f 4075/1 4068/1 3933/1 +f 4074/1 4070/1 4076/1 +f 4076/1 4070/1 4077/1 +f 4071/1 4073/1 4078/1 +f 3934/1 4075/1 3933/1 +f 3935/1 4075/1 3934/1 +f 4079/1 4075/1 3935/1 +f 4076/1 4077/1 4080/1 +f 4080/1 4077/1 4081/1 +f 3964/1 4078/1 4082/1 +f 4071/1 4078/1 3964/1 +f 3936/1 4079/1 3935/1 +f 4083/1 4079/1 3936/1 +f 4080/1 4081/1 4084/1 +f 4084/1 4081/1 4085/1 +f 3964/1 4082/1 4086/1 +f 3937/1 4083/1 3936/1 +f 4087/1 4083/1 3937/1 +f 4084/1 4085/1 4088/1 +f 4088/1 4085/1 4089/1 +f 3964/1 4086/1 4090/1 +f 3938/1 4087/1 3937/1 +f 4091/1 4087/1 3938/1 +f 4088/1 4089/1 4092/1 +f 3964/1 4090/1 4093/1 +f 3939/1 4091/1 3938/1 +f 4094/1 4091/1 3939/1 +f 4088/1 4092/1 4095/1 +f 3940/1 4093/1 4096/1 +f 3964/1 4093/1 3940/1 +f 4097/1 4098/1 4088/1 +f 3940/1 4094/1 3939/1 +f 4099/1 4094/1 3940/1 +f 4088/1 4095/1 4100/1 +f 3940/1 4096/1 4099/1 +f 4100/1 4097/1 4088/1 +f 4071/1 3964/1 4101/1 +f 4101/1 3964/1 3966/1 +f 4101/1 3966/1 4102/1 +f 4102/1 3966/1 3967/1 +f 4102/1 3967/1 4103/1 +f 4103/1 3967/1 4104/1 +f 4104/1 3967/1 3970/1 +f 4104/1 3970/1 4105/1 +f 4105/1 3970/1 3971/1 +f 4105/1 3971/1 4106/1 +f 4106/1 3971/1 3973/1 +f 4106/1 3963/1 4107/1 +f 3973/1 3963/1 4106/1 +f 3954/1 4108/1 4109/1 +f 3953/1 3954/1 4109/1 +f 3953/1 4109/1 4110/1 +f 3956/1 3953/1 4110/1 +f 3957/1 3956/1 4110/1 +f 3957/1 4110/1 4111/1 +f 3959/1 3957/1 4111/1 +f 3959/1 4111/1 4112/1 +f 3959/1 4112/1 4113/1 +f 3961/1 3959/1 4113/1 +f 3963/1 3961/1 4113/1 +f 3963/1 4113/1 4107/1 +f 4108/1 3944/1 4114/1 +f 3954/1 3944/1 4108/1 +f 3944/1 3946/1 4115/1 +f 4114/1 3944/1 4115/1 +f 3950/1 4116/1 3946/1 +f 3946/1 4116/1 4117/1 +f 4118/1 4116/1 3950/1 +f 3946/1 4117/1 4115/1 +f 4115/1 4117/1 4119/1 +f 4119/1 4117/1 4120/1 +f 4121/1 4117/1 4122/1 +f 4120/1 4117/1 4123/1 +f 4123/1 4117/1 4121/1 +f 4124/1 4116/1 4118/1 +f 4125/1 4124/1 4118/1 +f 4126/1 4125/1 4118/1 +f 4117/1 4127/1 4128/1 +f 4116/1 4127/1 4117/1 +f 3945/1 4127/1 3949/1 +f 4129/1 4127/1 3945/1 +f 4128/1 4127/1 4129/1 +f 4130/1 4128/1 4129/1 +f 3949/1 4127/1 4131/1 +f 4132/1 4128/1 4130/1 +f 3949/1 4131/1 4133/1 +f 4134/1 4132/1 4130/1 +f 3949/1 4133/1 4135/1 +f 4135/1 4133/1 4136/1 +f 4137/1 4134/1 4130/1 +f 4138/1 4137/1 4130/1 +f 4129/1 3945/1 4139/1 +f 4139/1 3945/1 3947/1 +f 4139/1 3947/1 4140/1 +f 4140/1 3947/1 3948/1 +f 4140/1 3948/1 3952/1 +f 4141/1 4140/1 3952/1 +f 4141/1 3952/1 3951/1 +f 4142/1 4141/1 3951/1 +f 4142/1 3951/1 3955/1 +f 4143/1 4142/1 3955/1 +f 4143/1 3955/1 3958/1 +f 4144/1 4143/1 3958/1 +f 4144/1 3958/1 3960/1 +f 4145/1 4144/1 3960/1 +f 4145/1 3960/1 3962/1 +f 4146/1 4145/1 3962/1 +f 4146/1 3972/1 4147/1 +f 3962/1 3972/1 4146/1 +f 3965/1 3901/1 4148/1 +f 4148/1 3901/1 3891/1 +f 3968/1 3965/1 4148/1 +f 4149/1 3968/1 4148/1 +f 3969/1 3968/1 4149/1 +f 4150/1 3969/1 4149/1 +f 3972/1 3969/1 4147/1 +f 4147/1 3969/1 4150/1 +f 3976/1 3975/1 4151/1 +f 3976/1 4151/1 4152/1 +f 3853/1 3976/1 4152/1 +f 3853/1 4152/1 3854/1 +f 3975/1 4153/1 4154/1 +f 4155/1 4153/1 4156/1 +f 4156/1 4153/1 3975/1 +f 4157/1 4153/1 4155/1 +f 3975/1 4154/1 4151/1 +f 4151/1 4154/1 4158/1 +f 4158/1 4154/1 4159/1 +f 4159/1 4154/1 4160/1 +f 4160/1 4154/1 4161/1 +f 4162/1 4153/1 4157/1 +f 4161/1 4154/1 4163/1 +f 4154/1 4153/1 3979/1 +f 3978/1 4154/1 3979/1 +f 3981/1 4156/1 3974/1 +f 3974/1 4156/1 3975/1 +f 3940/1 3921/1 3964/1 +f 3964/1 3921/1 3901/1 +f 3847/1 3851/1 4043/1 +f 4038/1 3847/1 4043/1 +f 3993/1 3802/1 3805/1 +f 3992/1 3802/1 3993/1 +f 3803/1 3802/1 3992/1 +f 3803/1 3992/1 3995/1 +f 4002/1 3805/1 3812/1 +f 3993/1 3805/1 4002/1 +f 3814/1 3803/1 3995/1 +f 3814/1 3995/1 4004/1 +f 4010/1 3812/1 3820/1 +f 4002/1 3812/1 4010/1 +f 3821/1 3814/1 4004/1 +f 3821/1 4004/1 4012/1 +f 4017/1 3820/1 3827/1 +f 4010/1 3820/1 4017/1 +f 3828/1 3821/1 4012/1 +f 3828/1 4012/1 4019/1 +f 4024/1 3827/1 3833/1 +f 4017/1 3827/1 4024/1 +f 3834/1 3828/1 4019/1 +f 3834/1 4019/1 4026/1 +f 3853/1 3892/1 4035/1 +f 3977/1 3853/1 4035/1 +f 3991/1 3801/1 3813/1 +f 4001/1 3801/1 3991/1 +f 3804/1 3801/1 4001/1 +f 3994/1 3991/1 3813/1 +f 3994/1 3813/1 4164/1 +f 4003/1 3994/1 4164/1 +f 4009/1 3804/1 4001/1 +f 3811/1 3804/1 4009/1 +f 4003/1 4164/1 4165/1 +f 4011/1 4003/1 4165/1 +f 4016/1 3811/1 4009/1 +f 3819/1 3811/1 4016/1 +f 4011/1 4165/1 4166/1 +f 4018/1 4011/1 4166/1 +f 4023/1 3819/1 4016/1 +f 3826/1 3819/1 4023/1 +f 4018/1 4166/1 4167/1 +f 4025/1 4018/1 4167/1 +f 4029/1 3826/1 4023/1 +f 3839/1 3826/1 4029/1 +f 4025/1 4167/1 4168/1 +f 4030/1 4025/1 4168/1 +f 4037/1 3839/1 4029/1 +f 3846/1 3839/1 4037/1 +f 4030/1 4168/1 4169/1 +f 4040/1 4030/1 4169/1 +f 4050/1 3846/1 4037/1 +f 3860/1 3846/1 4050/1 +f 4040/1 4169/1 4170/1 +f 4039/1 4040/1 4170/1 +f 4056/1 3860/1 4050/1 +f 3867/1 3860/1 4056/1 +f 4039/1 4170/1 3894/1 +f 4171/1 4039/1 3894/1 +f 4059/1 3867/1 4056/1 +f 3873/1 3867/1 4059/1 +f 4171/1 3894/1 3893/1 +f 4172/1 4171/1 3893/1 +f 4064/1 3873/1 4059/1 +f 3877/1 3873/1 4064/1 +f 4172/1 3893/1 3890/1 +f 4072/1 4172/1 3890/1 +f 4068/1 3877/1 4064/1 +f 3885/1 3877/1 4068/1 +f 4072/1 3890/1 3889/1 +f 4073/1 4072/1 3889/1 +f 4075/1 3885/1 4068/1 +f 3897/1 3885/1 4075/1 +f 4073/1 3889/1 3900/1 +f 4078/1 4073/1 3900/1 +f 4079/1 3897/1 4075/1 +f 3903/1 3897/1 4079/1 +f 4078/1 3900/1 3907/1 +f 4082/1 4078/1 3907/1 +f 4083/1 3903/1 4079/1 +f 3909/1 3903/1 4083/1 +f 4082/1 3907/1 3912/1 +f 4086/1 4082/1 3912/1 +f 4087/1 3909/1 4083/1 +f 3914/1 3909/1 4087/1 +f 4086/1 3912/1 3916/1 +f 4090/1 4086/1 3916/1 +f 4091/1 3914/1 4087/1 +f 3918/1 3914/1 4091/1 +f 4090/1 3916/1 3920/1 +f 4093/1 4090/1 3920/1 +f 4094/1 3918/1 4091/1 +f 3923/1 3918/1 4094/1 +f 4093/1 3920/1 3925/1 +f 4096/1 4093/1 3925/1 +f 4099/1 3923/1 4094/1 +f 3929/1 3923/1 4099/1 +f 4096/1 3925/1 3929/1 +f 4099/1 4096/1 3929/1 +f 4173/1 3962/1 3963/1 +f 4174/1 3962/1 4173/1 +f 3973/1 3972/1 4175/1 +f 3973/1 4175/1 4176/1 +f 4176/1 4175/1 4177/1 +f 4175/1 3972/1 3962/1 +f 4175/1 3962/1 4174/1 +f 4175/1 4174/1 4177/1 +f 4173/1 3963/1 4176/1 +f 4176/1 3963/1 3973/1 +f 4178/1 4174/1 4173/1 +f 4178/1 4173/1 4179/1 +f 4180/1 4177/1 4181/1 +f 4176/1 4177/1 4180/1 +f 4177/1 4174/1 4178/1 +f 4182/1 4177/1 4178/1 +f 4181/1 4177/1 4182/1 +f 4182/1 4178/1 4183/1 +f 4183/1 4178/1 4184/1 +f 4185/1 4181/1 4182/1 +f 4183/1 4184/1 4186/1 +f 4187/1 4185/1 4182/1 +f 4183/1 4186/1 4188/1 +f 4189/1 4187/1 4182/1 +f 4183/1 4188/1 4190/1 +f 4191/1 4189/1 4182/1 +f 4192/1 4173/1 4176/1 +f 4179/1 4173/1 4192/1 +f 4192/1 4176/1 4193/1 +f 4193/1 4176/1 4180/1 +f 4194/1 4179/1 4192/1 +f 4193/1 4180/1 4195/1 +f 4196/1 4194/1 4192/1 +f 4193/1 4195/1 4197/1 +f 4198/1 4196/1 4192/1 +f 4193/1 4197/1 4199/1 +f 4200/1 4198/1 4192/1 +f 4193/1 4199/1 4201/1 +f 4182/1 4183/1 4192/1 +f 4193/1 4182/1 4192/1 +f 3843/1 3834/1 4026/1 +f 4035/1 3843/1 4026/1 +f 3892/1 3843/1 4035/1 +f 4024/1 3833/1 3842/1 +f 4032/1 4024/1 3842/1 +f 4032/1 3842/1 3847/1 +f 4038/1 4032/1 3847/1 +f 4046/1 3851/1 3858/1 +f 4043/1 3851/1 4046/1 +f 4048/1 3858/1 3861/1 +f 4046/1 3858/1 4048/1 +f 3942/1 3861/1 3864/1 +f 4048/1 3861/1 3942/1 +f 3979/1 4153/1 3988/1 +f 3988/1 4153/1 4162/1 +f 3988/1 4162/1 3990/1 +f 3990/1 4162/1 4157/1 +f 3990/1 4157/1 3983/1 +f 3983/1 4157/1 4155/1 +f 3983/1 4155/1 3982/1 +f 3982/1 4155/1 4156/1 +f 3982/1 4156/1 3981/1 +f 4131/1 4127/1 4116/1 +f 4124/1 4131/1 4116/1 +f 4133/1 4131/1 4124/1 +f 4136/1 4133/1 4125/1 +f 4125/1 4133/1 4124/1 +f 4126/1 4136/1 4125/1 +f 4135/1 4136/1 4126/1 +f 4118/1 4135/1 4126/1 +f 3949/1 4135/1 4118/1 +f 3950/1 3949/1 4118/1 +f 4180/1 4181/1 4195/1 +f 4195/1 4181/1 4185/1 +f 4195/1 4185/1 4197/1 +f 4197/1 4185/1 4187/1 +f 4197/1 4187/1 4199/1 +f 4199/1 4187/1 4189/1 +f 4199/1 4189/1 4201/1 +f 4201/1 4189/1 4191/1 +f 4201/1 4191/1 4193/1 +f 4193/1 4191/1 4182/1 +f 4184/1 4178/1 4179/1 +f 4194/1 4184/1 4179/1 +f 4186/1 4184/1 4194/1 +f 4196/1 4186/1 4194/1 +f 4188/1 4186/1 4196/1 +f 4190/1 4188/1 4198/1 +f 4198/1 4188/1 4196/1 +f 4200/1 4190/1 4198/1 +f 4183/1 4190/1 4200/1 +f 4192/1 4183/1 4200/1 +f 3943/1 3868/1 3871/1 +f 4057/1 3943/1 3871/1 +f 4057/1 3871/1 3876/1 +f 4060/1 4057/1 3876/1 +f 4060/1 3876/1 3879/1 +f 4066/1 4060/1 3879/1 +f 4066/1 3879/1 3884/1 +f 3932/1 4066/1 3884/1 +f 3887/1 3886/1 4069/1 +f 3887/1 4069/1 4074/1 +f 3898/1 3887/1 4074/1 +f 3898/1 4074/1 4076/1 +f 3904/1 3898/1 4076/1 +f 3904/1 4076/1 4080/1 +f 3905/1 3904/1 4080/1 +f 3905/1 4080/1 4084/1 +f 3910/1 3905/1 4084/1 +f 3910/1 4084/1 4088/1 +f 4202/1 3910/1 4088/1 +f 4202/1 4088/1 4203/1 +f 4204/1 4202/1 4203/1 +f 4204/1 4203/1 4205/1 +f 4206/1 4204/1 4205/1 +f 4206/1 4205/1 4207/1 +f 4208/1 4206/1 4207/1 +f 4208/1 4207/1 4209/1 +f 3866/1 3863/1 4052/1 +f 3866/1 4052/1 4053/1 +f 3869/1 3866/1 4053/1 +f 3869/1 4053/1 4055/1 +f 4115/1 4129/1 4139/1 +f 4115/1 4139/1 4140/1 +f 4114/1 4115/1 4140/1 +f 4115/1 4130/1 4129/1 +f 4119/1 4130/1 4115/1 +f 4109/1 4108/1 4141/1 +f 4109/1 4141/1 4142/1 +f 4109/1 4142/1 4110/1 +f 4110/1 4142/1 4143/1 +f 4110/1 4143/1 4111/1 +f 4111/1 4143/1 4144/1 +f 4111/1 4144/1 4112/1 +f 4112/1 4144/1 4145/1 +f 4112/1 4145/1 4113/1 +f 4113/1 4145/1 4146/1 +f 4113/1 4146/1 4107/1 +f 4108/1 4114/1 4140/1 +f 4108/1 4140/1 4141/1 +f 4148/1 3891/1 4101/1 +f 4101/1 3891/1 4071/1 +f 4102/1 4148/1 4101/1 +f 4149/1 4148/1 4103/1 +f 4103/1 4148/1 4102/1 +f 4104/1 4149/1 4103/1 +f 4150/1 4149/1 4105/1 +f 4105/1 4149/1 4104/1 +f 4147/1 4150/1 4106/1 +f 4106/1 4150/1 4105/1 +f 4152/1 4151/1 3980/1 +f 3882/1 4152/1 3980/1 +f 3854/1 4152/1 3882/1 +f 4151/1 4158/1 3986/1 +f 4151/1 3986/1 3980/1 +f 4071/1 3891/1 4209/1 +f 4209/1 3891/1 4208/1 +f 3856/1 3850/1 4042/1 +f 4044/1 3856/1 4042/1 +f 3998/1 3807/1 3810/1 +f 3997/1 3807/1 3998/1 +f 3808/1 3807/1 3997/1 +f 3808/1 3997/1 4000/1 +f 4006/1 3810/1 3816/1 +f 3998/1 3810/1 4006/1 +f 3818/1 3808/1 4000/1 +f 3818/1 4000/1 4008/1 +f 4013/1 3816/1 3823/1 +f 4006/1 3816/1 4013/1 +f 3825/1 3818/1 4008/1 +f 3825/1 4008/1 4015/1 +f 4020/1 3823/1 3830/1 +f 4013/1 3823/1 4020/1 +f 3832/1 3825/1 4015/1 +f 3832/1 4015/1 4022/1 +f 4027/1 3830/1 3836/1 +f 4020/1 3830/1 4027/1 +f 3838/1 3832/1 4022/1 +f 3838/1 4022/1 4028/1 +f 3848/1 3854/1 3882/1 +f 4041/1 3848/1 3882/1 +f 3996/1 3806/1 3817/1 +f 4005/1 3806/1 3996/1 +f 3809/1 3806/1 4005/1 +f 3999/1 3996/1 3817/1 +f 4210/1 3809/1 4005/1 +f 3815/1 3809/1 4210/1 +f 3999/1 3817/1 3824/1 +f 4007/1 3999/1 3824/1 +f 4211/1 3815/1 4210/1 +f 3822/1 3815/1 4211/1 +f 4007/1 3824/1 3831/1 +f 4014/1 4007/1 3831/1 +f 4212/1 3822/1 4211/1 +f 3829/1 3822/1 4212/1 +f 4014/1 3831/1 3837/1 +f 4021/1 4014/1 3837/1 +f 4213/1 3829/1 4212/1 +f 3835/1 3829/1 4213/1 +f 4021/1 3837/1 3841/1 +f 4031/1 4021/1 3841/1 +f 4214/1 3835/1 4213/1 +f 3840/1 3835/1 4214/1 +f 4031/1 3841/1 3849/1 +f 4036/1 4031/1 3849/1 +f 4215/1 3840/1 4214/1 +f 3855/1 3840/1 4215/1 +f 4036/1 3849/1 3862/1 +f 4051/1 4036/1 3862/1 +f 4216/1 3855/1 4215/1 +f 3852/1 3855/1 4216/1 +f 4051/1 3862/1 3870/1 +f 4054/1 4051/1 3870/1 +f 4217/1 3852/1 4216/1 +f 4218/1 3852/1 4217/1 +f 4054/1 3870/1 3874/1 +f 4062/1 4054/1 3874/1 +f 3881/1 4218/1 4217/1 +f 4219/1 4218/1 3881/1 +f 4062/1 3874/1 3878/1 +f 4065/1 4062/1 3878/1 +f 3883/1 4219/1 3881/1 +f 4220/1 4219/1 3883/1 +f 4065/1 3878/1 3888/1 +f 4070/1 4065/1 3888/1 +f 4221/1 4220/1 3883/1 +f 4222/1 4220/1 4221/1 +f 4070/1 3888/1 3899/1 +f 4077/1 4070/1 3899/1 +f 4223/1 4222/1 4221/1 +f 4224/1 4222/1 4223/1 +f 4077/1 3899/1 3906/1 +f 4081/1 4077/1 3906/1 +f 4225/1 4224/1 4223/1 +f 4226/1 4224/1 4225/1 +f 4081/1 3906/1 3911/1 +f 4085/1 4081/1 3911/1 +f 4227/1 4226/1 4225/1 +f 4228/1 4226/1 4227/1 +f 4085/1 3911/1 3915/1 +f 4089/1 4085/1 3915/1 +f 4229/1 4228/1 4227/1 +f 4230/1 4228/1 4229/1 +f 4089/1 3915/1 3919/1 +f 4092/1 4089/1 3919/1 +f 4098/1 4230/1 4229/1 +f 3926/1 4230/1 4098/1 +f 4092/1 3919/1 3924/1 +f 4095/1 4092/1 3924/1 +f 4097/1 3926/1 4098/1 +f 3927/1 3926/1 4097/1 +f 4095/1 3924/1 3930/1 +f 4100/1 4095/1 3930/1 +f 4100/1 3927/1 4097/1 +f 3930/1 3927/1 4100/1 +f 4107/1 4146/1 4231/1 +f 4107/1 4231/1 4232/1 +f 4232/1 4231/1 4233/1 +f 4234/1 4147/1 4106/1 +f 4235/1 4147/1 4234/1 +f 4236/1 4235/1 4234/1 +f 4231/1 4147/1 4235/1 +f 4146/1 4147/1 4231/1 +f 4233/1 4231/1 4235/1 +f 4233/1 4235/1 4236/1 +f 4106/1 4107/1 4232/1 +f 4234/1 4106/1 4232/1 +f 4232/1 4233/1 4237/1 +f 4237/1 4233/1 4238/1 +f 4239/1 4236/1 4234/1 +f 4239/1 4234/1 4240/1 +f 4241/1 4233/1 4236/1 +f 4238/1 4233/1 4241/1 +f 4242/1 4236/1 4239/1 +f 4241/1 4236/1 4242/1 +f 4243/1 4238/1 4241/1 +f 4244/1 4238/1 4243/1 +f 4242/1 4239/1 4245/1 +f 4245/1 4239/1 4246/1 +f 4246/1 4239/1 4247/1 +f 4248/1 4238/1 4244/1 +f 4247/1 4239/1 4249/1 +f 4250/1 4248/1 4244/1 +f 4234/1 4232/1 4237/1 +f 4240/1 4234/1 4237/1 +f 4240/1 4237/1 4251/1 +f 4251/1 4237/1 4252/1 +f 4252/1 4237/1 4253/1 +f 4253/1 4237/1 4254/1 +f 4255/1 4240/1 4256/1 +f 4256/1 4240/1 4257/1 +f 4257/1 4240/1 4251/1 +f 4254/1 4237/1 4258/1 +f 4259/1 4240/1 4255/1 +f 4254/1 4258/1 4260/1 +f 4252/1 4241/1 4251/1 +f 4251/1 4241/1 4242/1 +f 4027/1 3836/1 3844/1 +f 4033/1 4027/1 3844/1 +f 4033/1 3844/1 3848/1 +f 4041/1 4033/1 3848/1 +f 4034/1 3838/1 4028/1 +f 3845/1 3838/1 4034/1 +f 4042/1 3845/1 4034/1 +f 3850/1 3845/1 4042/1 +f 3857/1 3856/1 4044/1 +f 3857/1 4044/1 4045/1 +f 3859/1 3857/1 4045/1 +f 3859/1 4045/1 4047/1 +f 3859/1 4047/1 4049/1 +f 3863/1 3859/1 4049/1 +f 3863/1 4049/1 4052/1 +f 4163/1 4154/1 3978/1 +f 3989/1 4163/1 3978/1 +f 4161/1 4163/1 3989/1 +f 3987/1 4161/1 3989/1 +f 4160/1 4161/1 3984/1 +f 3984/1 4161/1 3987/1 +f 4159/1 4160/1 3984/1 +f 3985/1 4159/1 3984/1 +f 4158/1 4159/1 3985/1 +f 3986/1 4158/1 3985/1 +f 4117/1 4128/1 4122/1 +f 4122/1 4128/1 4132/1 +f 4122/1 4132/1 4121/1 +f 4121/1 4132/1 4134/1 +f 4121/1 4134/1 4123/1 +f 4123/1 4134/1 4137/1 +f 4123/1 4137/1 4120/1 +f 4120/1 4137/1 4138/1 +f 4120/1 4138/1 4119/1 +f 4119/1 4138/1 4130/1 +f 4249/1 4239/1 4240/1 +f 4259/1 4249/1 4240/1 +f 4247/1 4249/1 4259/1 +f 4246/1 4247/1 4255/1 +f 4255/1 4247/1 4259/1 +f 4256/1 4246/1 4255/1 +f 4245/1 4246/1 4256/1 +f 4257/1 4245/1 4256/1 +f 4242/1 4245/1 4257/1 +f 4251/1 4242/1 4257/1 +f 4237/1 4238/1 4258/1 +f 4258/1 4238/1 4248/1 +f 4258/1 4248/1 4260/1 +f 4260/1 4248/1 4250/1 +f 4260/1 4250/1 4254/1 +f 4254/1 4250/1 4244/1 +f 4254/1 4244/1 4253/1 +f 4253/1 4244/1 4243/1 +f 4253/1 4243/1 4252/1 +f 4252/1 4243/1 4241/1 +f 4058/1 3869/1 4055/1 +f 3872/1 3869/1 4058/1 +f 4061/1 3872/1 4058/1 +f 3875/1 3872/1 4061/1 +f 4063/1 3875/1 4061/1 +f 3880/1 3875/1 4063/1 +f 4067/1 3880/1 4063/1 +f 4069/1 3880/1 4067/1 +f 3886/1 3880/1 4069/1 +f 4261/1 4262/1 4263/1 +f 4264/1 4265/1 4266/1 +f 4266/1 4265/1 4267/1 +f 4268/1 4269/1 4270/1 +f 4271/1 4268/1 4270/1 +f 4272/1 4268/1 4271/1 +f 4272/1 4271/1 4273/1 +f 4273/1 4271/1 4274/1 +f 4275/1 4276/1 4277/1 +f 4275/1 4277/1 4278/1 +f 4278/1 4277/1 4279/1 +f 4280/1 4278/1 4279/1 +f 4275/1 4267/1 4276/1 +f 4266/1 4267/1 4275/1 +f 4273/1 4274/1 4281/1 +f 4273/1 4281/1 4282/1 +f 4282/1 4281/1 4283/1 +f 4283/1 4281/1 4284/1 +f 4284/1 4285/1 4286/1 +f 4284/1 4286/1 4283/1 +f 4287/1 4288/1 4289/1 +f 4290/1 4287/1 4289/1 +f 4291/1 4287/1 4290/1 +f 4292/1 4291/1 4290/1 +f 4286/1 4285/1 4293/1 +f 4294/1 4293/1 4295/1 +f 4286/1 4293/1 4294/1 +f 4296/1 4297/1 4292/1 +f 4292/1 4297/1 4291/1 +f 4298/1 4293/1 4297/1 +f 4295/1 4293/1 4298/1 +f 4299/1 4295/1 4298/1 +f 4299/1 4298/1 4300/1 +f 4301/1 4295/1 4299/1 +f 4300/1 4298/1 4302/1 +f 4303/1 4301/1 4299/1 +f 4293/1 4285/1 4297/1 +f 4291/1 4285/1 4284/1 +f 4297/1 4285/1 4291/1 +f 4287/1 4274/1 4288/1 +f 4281/1 4274/1 4287/1 +f 4291/1 4281/1 4287/1 +f 4284/1 4281/1 4291/1 +f 4274/1 4271/1 4280/1 +f 4274/1 4280/1 4288/1 +f 4271/1 4270/1 4275/1 +f 4278/1 4271/1 4275/1 +f 4280/1 4271/1 4278/1 +f 4270/1 4304/1 4305/1 +f 4305/1 4304/1 4306/1 +f 4275/1 4270/1 4307/1 +f 4307/1 4270/1 4308/1 +f 4308/1 4270/1 4305/1 +f 4266/1 4275/1 4309/1 +f 4309/1 4275/1 4307/1 +f 4306/1 4304/1 4310/1 +f 4310/1 4304/1 4311/1 +f 4310/1 4311/1 4312/1 +f 4310/1 4312/1 4313/1 +f 4313/1 4312/1 4314/1 +f 4313/1 4314/1 4315/1 +f 4313/1 4315/1 4316/1 +f 4316/1 4315/1 4317/1 +f 4316/1 4317/1 4318/1 +f 4319/1 4318/1 4317/1 +f 4320/1 4318/1 4319/1 +f 4261/1 4309/1 4321/1 +f 4266/1 4309/1 4261/1 +f 4322/1 4320/1 4319/1 +f 4323/1 4320/1 4324/1 +f 4324/1 4320/1 4322/1 +f 4261/1 4321/1 4325/1 +f 4325/1 4321/1 4326/1 +f 4327/1 4323/1 4328/1 +f 4328/1 4323/1 4324/1 +f 4325/1 4326/1 4329/1 +f 4330/1 4327/1 4328/1 +f 4331/1 4327/1 4330/1 +f 4329/1 4326/1 4332/1 +f 4332/1 4326/1 4333/1 +f 4333/1 4327/1 4331/1 +f 4332/1 4333/1 4334/1 +f 4334/1 4333/1 4331/1 +f 4261/1 4263/1 4266/1 +f 4335/1 4336/1 4337/1 +f 4338/1 4336/1 4339/1 +f 4339/1 4336/1 4335/1 +f 4335/1 4337/1 4264/1 +f 4264/1 4337/1 4340/1 +f 4263/1 4335/1 4266/1 +f 4266/1 4335/1 4264/1 +f 4336/1 4341/1 4337/1 +f 4337/1 4341/1 4342/1 +f 4265/1 4341/1 4343/1 +f 4342/1 4341/1 4265/1 +f 4343/1 4341/1 4344/1 +f 4344/1 4341/1 4345/1 +f 4346/1 4342/1 4265/1 +f 4265/1 4343/1 4267/1 +f 4267/1 4343/1 4262/1 +f 4347/1 4348/1 4349/1 +f 4350/1 4348/1 4351/1 +f 4349/1 4348/1 4350/1 +f 4352/1 4347/1 4349/1 +f 4353/1 4347/1 4352/1 +f 4350/1 4351/1 4354/1 +f 4355/1 4353/1 4352/1 +f 4350/1 4354/1 4356/1 +f 4356/1 4354/1 4357/1 +f 4358/1 4355/1 4352/1 +f 4356/1 4357/1 4359/1 +f 4360/1 4358/1 4352/1 +f 4357/1 4361/1 4359/1 +f 4262/1 4358/1 4360/1 +f 4267/1 4262/1 4362/1 +f 4362/1 4262/1 4360/1 +f 4276/1 4267/1 4362/1 +f 4359/1 4361/1 4363/1 +f 4359/1 4363/1 4364/1 +f 4364/1 4363/1 4365/1 +f 4366/1 4364/1 4365/1 +f 4367/1 4366/1 4365/1 +f 4276/1 4362/1 4368/1 +f 4369/1 4366/1 4367/1 +f 4276/1 4368/1 4269/1 +f 4370/1 4369/1 4367/1 +f 4371/1 4369/1 4370/1 +f 4269/1 4368/1 4372/1 +f 4373/1 4369/1 4371/1 +f 4374/1 4373/1 4371/1 +f 4269/1 4372/1 4375/1 +f 4376/1 4373/1 4377/1 +f 4377/1 4373/1 4374/1 +f 4269/1 4375/1 4377/1 +f 4377/1 4375/1 4376/1 +f 4276/1 4269/1 4268/1 +f 4276/1 4268/1 4277/1 +f 4277/1 4268/1 4272/1 +f 4277/1 4272/1 4279/1 +f 4289/1 4272/1 4273/1 +f 4279/1 4272/1 4289/1 +f 4289/1 4273/1 4290/1 +f 4290/1 4273/1 4282/1 +f 4290/1 4282/1 4292/1 +f 4292/1 4282/1 4283/1 +f 4283/1 4286/1 4296/1 +f 4283/1 4296/1 4292/1 +f 4296/1 4286/1 4294/1 +f 4378/1 4296/1 4294/1 +f 4378/1 4294/1 4379/1 +f 4379/1 4294/1 4380/1 +f 4380/1 4294/1 4381/1 +f 4382/1 4378/1 4379/1 +f 4380/1 4381/1 4383/1 +f 4380/1 4299/1 4379/1 +f 4379/1 4299/1 4300/1 +f 4262/1 4343/1 4335/1 +f 4262/1 4335/1 4263/1 +f 4298/1 4297/1 4296/1 +f 4298/1 4296/1 4378/1 +f 4331/1 4348/1 4334/1 +f 4334/1 4348/1 4347/1 +f 4351/1 4348/1 4331/1 +f 4334/1 4347/1 4332/1 +f 4332/1 4347/1 4353/1 +f 4354/1 4351/1 4330/1 +f 4330/1 4351/1 4331/1 +f 4332/1 4353/1 4329/1 +f 4329/1 4353/1 4355/1 +f 4328/1 4354/1 4330/1 +f 4357/1 4354/1 4328/1 +f 4329/1 4355/1 4325/1 +f 4325/1 4355/1 4358/1 +f 4324/1 4357/1 4328/1 +f 4322/1 4361/1 4324/1 +f 4324/1 4361/1 4357/1 +f 4363/1 4361/1 4322/1 +f 4319/1 4363/1 4322/1 +f 4365/1 4363/1 4319/1 +f 4317/1 4365/1 4319/1 +f 4367/1 4365/1 4317/1 +f 4315/1 4367/1 4317/1 +f 4370/1 4367/1 4315/1 +f 4371/1 4370/1 4314/1 +f 4314/1 4370/1 4315/1 +f 4312/1 4371/1 4314/1 +f 4374/1 4371/1 4312/1 +f 4377/1 4374/1 4311/1 +f 4311/1 4374/1 4312/1 +f 4304/1 4377/1 4311/1 +f 4269/1 4377/1 4304/1 +f 4270/1 4269/1 4304/1 +f 4325/1 4358/1 4261/1 +f 4261/1 4358/1 4262/1 +f 4333/1 4349/1 4350/1 +f 4333/1 4350/1 4327/1 +f 4352/1 4349/1 4326/1 +f 4326/1 4349/1 4333/1 +f 4327/1 4350/1 4356/1 +f 4327/1 4356/1 4323/1 +f 4323/1 4356/1 4359/1 +f 4360/1 4352/1 4321/1 +f 4321/1 4352/1 4326/1 +f 4323/1 4359/1 4320/1 +f 4320/1 4359/1 4364/1 +f 4362/1 4360/1 4309/1 +f 4309/1 4360/1 4321/1 +f 4320/1 4364/1 4318/1 +f 4318/1 4364/1 4366/1 +f 4307/1 4362/1 4309/1 +f 4368/1 4362/1 4307/1 +f 4318/1 4366/1 4316/1 +f 4316/1 4366/1 4369/1 +f 4308/1 4368/1 4307/1 +f 4316/1 4369/1 4313/1 +f 4372/1 4368/1 4305/1 +f 4305/1 4368/1 4308/1 +f 4313/1 4369/1 4373/1 +f 4375/1 4372/1 4306/1 +f 4306/1 4372/1 4305/1 +f 4313/1 4373/1 4310/1 +f 4310/1 4373/1 4376/1 +f 4376/1 4375/1 4306/1 +f 4310/1 4376/1 4306/1 +f 4384/1 4280/1 4279/1 +f 4385/1 4280/1 4384/1 +f 4289/1 4288/1 4386/1 +f 4289/1 4386/1 4387/1 +f 4288/1 4280/1 4386/1 +f 4386/1 4280/1 4385/1 +f 4384/1 4279/1 4289/1 +f 4387/1 4384/1 4289/1 +f 4388/1 4386/1 4389/1 +f 4387/1 4386/1 4388/1 +f 4390/1 4385/1 4384/1 +f 4390/1 4384/1 4391/1 +f 4386/1 4385/1 4390/1 +f 4386/1 4390/1 4389/1 +f 4392/1 4390/1 4393/1 +f 4389/1 4390/1 4392/1 +f 4393/1 4390/1 4394/1 +f 4389/1 4392/1 4395/1 +f 4388/1 4384/1 4387/1 +f 4391/1 4384/1 4388/1 +f 4396/1 4391/1 4388/1 +f 4397/1 4391/1 4396/1 +f 4398/1 4396/1 4388/1 +f 4399/1 4398/1 4388/1 +f 4392/1 4393/1 4396/1 +f 4392/1 4396/1 4398/1 +f 4394/1 4390/1 4391/1 +f 4394/1 4391/1 4397/1 +f 4393/1 4394/1 4397/1 +f 4393/1 4397/1 4396/1 +f 4395/1 4392/1 4398/1 +f 4395/1 4398/1 4399/1 +f 4389/1 4395/1 4399/1 +f 4389/1 4399/1 4388/1 +f 4294/1 4295/1 4381/1 +f 4381/1 4295/1 4301/1 +f 4381/1 4301/1 4383/1 +f 4383/1 4301/1 4303/1 +f 4383/1 4303/1 4380/1 +f 4380/1 4303/1 4299/1 +f 4345/1 4341/1 4336/1 +f 4338/1 4345/1 4336/1 +f 4344/1 4345/1 4338/1 +f 4339/1 4344/1 4338/1 +f 4343/1 4344/1 4339/1 +f 4335/1 4343/1 4339/1 +f 4337/1 4342/1 4340/1 +f 4340/1 4342/1 4346/1 +f 4340/1 4346/1 4264/1 +f 4264/1 4346/1 4265/1 +f 4302/1 4298/1 4378/1 +f 4382/1 4302/1 4378/1 +f 4300/1 4302/1 4382/1 +f 4379/1 4300/1 4382/1 +f 4400/1 4401/1 4402/1 +f 4400/1 4402/1 4403/1 +f 4404/1 4405/1 4406/1 +f 4406/1 4405/1 4407/1 +f 4408/1 4409/1 4410/1 +f 4411/1 4412/1 4413/1 +f 4411/1 4413/1 4414/1 +f 4415/1 4416/1 4417/1 +f 4415/1 4417/1 4418/1 +f 4415/1 4418/1 4401/1 +f 4401/1 4418/1 4402/1 +f 4419/1 4420/1 4421/1 +f 4419/1 4421/1 4422/1 +f 4423/1 4424/1 4425/1 +f 4426/1 4423/1 4425/1 +f 4427/1 4423/1 4426/1 +f 4428/1 4427/1 4426/1 +f 4429/1 4427/1 4428/1 +f 4424/1 4411/1 4414/1 +f 4425/1 4424/1 4414/1 +f 4430/1 4419/1 4422/1 +f 4431/1 4419/1 4430/1 +f 4432/1 4431/1 4430/1 +f 4433/1 4434/1 4432/1 +f 4432/1 4434/1 4431/1 +f 4435/1 4436/1 4437/1 +f 4435/1 4437/1 4438/1 +f 4438/1 4437/1 4439/1 +f 4439/1 4437/1 4440/1 +f 4441/1 4434/1 4433/1 +f 4442/1 4441/1 4433/1 +f 4442/1 4433/1 4443/1 +f 4444/1 4445/1 4446/1 +f 4440/1 4445/1 4444/1 +f 4440/1 4444/1 4439/1 +f 4447/1 4446/1 4441/1 +f 4448/1 4446/1 4447/1 +f 4449/1 4441/1 4442/1 +f 4447/1 4441/1 4449/1 +f 4450/1 4448/1 4447/1 +f 4449/1 4442/1 4451/1 +f 4452/1 4450/1 4447/1 +f 4446/1 4445/1 4434/1 +f 4446/1 4434/1 4441/1 +f 4434/1 4445/1 4431/1 +f 4431/1 4445/1 4440/1 +f 4437/1 4436/1 4419/1 +f 4431/1 4437/1 4419/1 +f 4440/1 4437/1 4431/1 +f 4400/1 4428/1 4401/1 +f 4453/1 4428/1 4400/1 +f 4436/1 4428/1 4454/1 +f 4454/1 4428/1 4404/1 +f 4404/1 4428/1 4405/1 +f 4405/1 4428/1 4453/1 +f 4436/1 4454/1 4420/1 +f 4436/1 4420/1 4419/1 +f 4426/1 4425/1 4415/1 +f 4401/1 4426/1 4415/1 +f 4428/1 4426/1 4401/1 +f 4415/1 4425/1 4455/1 +f 4455/1 4425/1 4456/1 +f 4456/1 4425/1 4414/1 +f 4457/1 4415/1 4455/1 +f 4458/1 4415/1 4459/1 +f 4459/1 4415/1 4457/1 +f 4460/1 4458/1 4459/1 +f 4461/1 4458/1 4460/1 +f 4462/1 4461/1 4460/1 +f 4463/1 4461/1 4462/1 +f 4464/1 4463/1 4462/1 +f 4465/1 4463/1 4464/1 +f 4466/1 4465/1 4464/1 +f 4467/1 4466/1 4464/1 +f 4468/1 4466/1 4467/1 +f 4468/1 4467/1 4469/1 +f 4470/1 4468/1 4469/1 +f 4410/1 4456/1 4414/1 +f 4471/1 4456/1 4410/1 +f 4470/1 4469/1 4472/1 +f 4473/1 4471/1 4410/1 +f 4470/1 4472/1 4474/1 +f 4475/1 4471/1 4473/1 +f 4476/1 4472/1 4477/1 +f 4474/1 4472/1 4476/1 +f 4478/1 4475/1 4473/1 +f 4476/1 4477/1 4479/1 +f 4480/1 4475/1 4481/1 +f 4481/1 4475/1 4478/1 +f 4479/1 4477/1 4482/1 +f 4479/1 4482/1 4483/1 +f 4484/1 4480/1 4485/1 +f 4485/1 4480/1 4481/1 +f 4483/1 4482/1 4486/1 +f 4486/1 4482/1 4484/1 +f 4486/1 4484/1 4485/1 +f 4414/1 4408/1 4410/1 +f 4413/1 4487/1 4488/1 +f 4408/1 4488/1 4489/1 +f 4413/1 4488/1 4408/1 +f 4489/1 4488/1 4490/1 +f 4491/1 4487/1 4413/1 +f 4492/1 4491/1 4413/1 +f 4414/1 4413/1 4408/1 +f 4487/1 4493/1 4488/1 +f 4488/1 4493/1 4494/1 +f 4494/1 4493/1 4409/1 +f 4409/1 4493/1 4411/1 +f 4411/1 4493/1 4412/1 +f 4495/1 4494/1 4409/1 +f 4496/1 4494/1 4495/1 +f 4412/1 4493/1 4497/1 +f 4412/1 4497/1 4498/1 +f 4499/1 4500/1 4501/1 +f 4502/1 4500/1 4499/1 +f 4503/1 4502/1 4499/1 +f 4501/1 4500/1 4504/1 +f 4505/1 4503/1 4499/1 +f 4501/1 4504/1 4506/1 +f 4507/1 4503/1 4505/1 +f 4501/1 4506/1 4508/1 +f 4508/1 4506/1 4509/1 +f 4510/1 4507/1 4505/1 +f 4508/1 4509/1 4511/1 +f 4512/1 4510/1 4505/1 +f 4409/1 4411/1 4513/1 +f 4513/1 4411/1 4424/1 +f 4509/1 4409/1 4511/1 +f 4511/1 4409/1 4513/1 +f 4514/1 4510/1 4512/1 +f 4515/1 4514/1 4512/1 +f 4516/1 4514/1 4515/1 +f 4517/1 4516/1 4515/1 +f 4518/1 4516/1 4517/1 +f 4416/1 4513/1 4424/1 +f 4519/1 4513/1 4416/1 +f 4518/1 4517/1 4520/1 +f 4518/1 4520/1 4521/1 +f 4521/1 4520/1 4522/1 +f 4523/1 4519/1 4416/1 +f 4522/1 4520/1 4524/1 +f 4522/1 4524/1 4525/1 +f 4526/1 4523/1 4416/1 +f 4527/1 4523/1 4526/1 +f 4525/1 4524/1 4528/1 +f 4525/1 4528/1 4529/1 +f 4528/1 4527/1 4526/1 +f 4529/1 4528/1 4526/1 +f 4416/1 4424/1 4417/1 +f 4417/1 4424/1 4423/1 +f 4417/1 4423/1 4418/1 +f 4418/1 4423/1 4427/1 +f 4418/1 4427/1 4402/1 +f 4402/1 4427/1 4429/1 +f 4402/1 4429/1 4403/1 +f 4403/1 4429/1 4530/1 +f 4530/1 4429/1 4435/1 +f 4407/1 4530/1 4435/1 +f 4406/1 4407/1 4435/1 +f 4531/1 4406/1 4435/1 +f 4421/1 4531/1 4435/1 +f 4422/1 4421/1 4435/1 +f 4430/1 4435/1 4438/1 +f 4422/1 4435/1 4430/1 +f 4432/1 4438/1 4439/1 +f 4430/1 4438/1 4432/1 +f 4439/1 4444/1 4433/1 +f 4439/1 4433/1 4432/1 +f 4433/1 4444/1 4532/1 +f 4533/1 4433/1 4532/1 +f 4443/1 4433/1 4533/1 +f 4533/1 4532/1 4534/1 +f 4534/1 4532/1 4535/1 +f 4535/1 4532/1 4536/1 +f 4537/1 4443/1 4533/1 +f 4534/1 4447/1 4533/1 +f 4533/1 4447/1 4449/1 +f 4408/1 4495/1 4409/1 +f 4489/1 4495/1 4408/1 +f 4444/1 4446/1 4532/1 +f 4532/1 4446/1 4448/1 +f 4485/1 4500/1 4486/1 +f 4486/1 4500/1 4502/1 +f 4486/1 4502/1 4503/1 +f 4504/1 4500/1 4481/1 +f 4481/1 4500/1 4485/1 +f 4486/1 4503/1 4483/1 +f 4506/1 4504/1 4481/1 +f 4483/1 4503/1 4479/1 +f 4479/1 4503/1 4507/1 +f 4478/1 4506/1 4481/1 +f 4509/1 4506/1 4478/1 +f 4479/1 4507/1 4476/1 +f 4476/1 4507/1 4510/1 +f 4473/1 4509/1 4478/1 +f 4476/1 4510/1 4474/1 +f 4474/1 4510/1 4514/1 +f 4474/1 4514/1 4470/1 +f 4470/1 4514/1 4516/1 +f 4470/1 4516/1 4468/1 +f 4468/1 4516/1 4518/1 +f 4468/1 4518/1 4466/1 +f 4466/1 4518/1 4521/1 +f 4466/1 4521/1 4522/1 +f 4466/1 4522/1 4465/1 +f 4465/1 4522/1 4463/1 +f 4463/1 4522/1 4525/1 +f 4463/1 4525/1 4461/1 +f 4461/1 4525/1 4529/1 +f 4461/1 4529/1 4458/1 +f 4458/1 4529/1 4526/1 +f 4526/1 4416/1 4415/1 +f 4458/1 4526/1 4415/1 +f 4410/1 4409/1 4473/1 +f 4473/1 4409/1 4509/1 +f 4499/1 4501/1 4484/1 +f 4482/1 4499/1 4484/1 +f 4484/1 4501/1 4480/1 +f 4505/1 4499/1 4482/1 +f 4480/1 4501/1 4508/1 +f 4477/1 4505/1 4482/1 +f 4480/1 4508/1 4475/1 +f 4475/1 4508/1 4511/1 +f 4512/1 4505/1 4472/1 +f 4472/1 4505/1 4477/1 +f 4475/1 4511/1 4471/1 +f 4515/1 4512/1 4469/1 +f 4469/1 4512/1 4472/1 +f 4471/1 4511/1 4513/1 +f 4471/1 4513/1 4456/1 +f 4517/1 4515/1 4467/1 +f 4467/1 4515/1 4469/1 +f 4456/1 4513/1 4519/1 +f 4520/1 4517/1 4464/1 +f 4464/1 4517/1 4467/1 +f 4456/1 4519/1 4455/1 +f 4455/1 4519/1 4523/1 +f 4524/1 4520/1 4462/1 +f 4462/1 4520/1 4464/1 +f 4455/1 4523/1 4457/1 +f 4457/1 4523/1 4527/1 +f 4528/1 4524/1 4460/1 +f 4460/1 4524/1 4462/1 +f 4457/1 4527/1 4459/1 +f 4459/1 4527/1 4528/1 +f 4459/1 4528/1 4460/1 +f 4429/1 4428/1 4538/1 +f 4429/1 4538/1 4539/1 +f 4540/1 4436/1 4435/1 +f 4541/1 4436/1 4540/1 +f 4538/1 4428/1 4541/1 +f 4541/1 4428/1 4436/1 +f 4435/1 4429/1 4540/1 +f 4540/1 4429/1 4539/1 +f 4542/1 4541/1 4540/1 +f 4542/1 4540/1 4543/1 +f 4539/1 4538/1 4544/1 +f 4544/1 4538/1 4545/1 +f 4542/1 4538/1 4541/1 +f 4546/1 4538/1 4542/1 +f 4545/1 4538/1 4546/1 +f 4547/1 4545/1 4546/1 +f 4548/1 4546/1 4542/1 +f 4549/1 4548/1 4542/1 +f 4540/1 4539/1 4544/1 +f 4550/1 4544/1 4551/1 +f 4540/1 4544/1 4543/1 +f 4543/1 4544/1 4550/1 +f 4551/1 4544/1 4552/1 +f 4552/1 4544/1 4553/1 +f 4543/1 4550/1 4554/1 +f 4554/1 4550/1 4555/1 +f 4550/1 4546/1 4548/1 +f 4551/1 4546/1 4550/1 +f 4454/1 4404/1 4531/1 +f 4531/1 4404/1 4406/1 +f 4420/1 4454/1 4421/1 +f 4421/1 4454/1 4531/1 +f 4453/1 4400/1 4530/1 +f 4530/1 4400/1 4403/1 +f 4407/1 4453/1 4530/1 +f 4405/1 4453/1 4407/1 +f 4544/1 4545/1 4547/1 +f 4544/1 4547/1 4553/1 +f 4553/1 4547/1 4552/1 +f 4552/1 4547/1 4546/1 +f 4552/1 4546/1 4551/1 +f 4550/1 4548/1 4555/1 +f 4555/1 4548/1 4549/1 +f 4555/1 4549/1 4554/1 +f 4554/1 4549/1 4543/1 +f 4543/1 4549/1 4542/1 +f 4451/1 4442/1 4443/1 +f 4537/1 4451/1 4443/1 +f 4449/1 4451/1 4537/1 +f 4533/1 4449/1 4537/1 +f 4490/1 4494/1 4496/1 +f 4488/1 4494/1 4490/1 +f 4490/1 4496/1 4489/1 +f 4489/1 4496/1 4495/1 +f 4497/1 4493/1 4487/1 +f 4491/1 4497/1 4487/1 +f 4498/1 4497/1 4491/1 +f 4492/1 4498/1 4491/1 +f 4412/1 4498/1 4492/1 +f 4413/1 4412/1 4492/1 +f 4532/1 4448/1 4536/1 +f 4536/1 4448/1 4450/1 +f 4536/1 4450/1 4535/1 +f 4535/1 4450/1 4452/1 +f 4535/1 4452/1 4534/1 +f 4534/1 4452/1 4447/1 +f 4556/1 4557/1 4558/1 +f 4559/1 4557/1 4556/1 +f 4560/1 4558/1 4561/1 +f 4556/1 4558/1 4560/1 +f 4562/1 4561/1 4563/1 +f 4560/1 4561/1 4562/1 +f 4564/1 4563/1 4565/1 +f 4562/1 4563/1 4564/1 +f 4564/1 4565/1 4566/1 +f 4567/1 4564/1 4566/1 +f 4567/1 4566/1 4568/1 +f 4569/1 4567/1 4568/1 +f 4569/1 4568/1 4570/1 +f 4571/1 4569/1 4570/1 +f 4571/1 4570/1 4572/1 +f 4572/1 4570/1 4573/1 +f 4572/1 4573/1 4574/1 +f 4574/1 4573/1 4575/1 +f 4574/1 4575/1 4576/1 +f 4576/1 4575/1 4577/1 +f 4576/1 4577/1 4578/1 +f 4578/1 4577/1 4579/1 +f 4578/1 4579/1 4580/1 +f 4581/1 4580/1 4582/1 +f 4578/1 4580/1 4581/1 +f 4583/1 4582/1 4584/1 +f 4581/1 4582/1 4583/1 +f 4585/1 4584/1 4586/1 +f 4583/1 4584/1 4585/1 +f 4587/1 4586/1 4588/1 +f 4585/1 4586/1 4587/1 +f 4589/1 4588/1 4590/1 +f 4587/1 4588/1 4589/1 +f 4591/1 4590/1 4592/1 +f 4589/1 4590/1 4591/1 +f 4591/1 4592/1 4593/1 +f 4594/1 4595/1 4596/1 +f 4594/1 4596/1 4597/1 +f 4598/1 4594/1 4597/1 +f 4598/1 4597/1 4599/1 +f 4600/1 4598/1 4599/1 +f 4600/1 4599/1 4601/1 +f 4592/1 4600/1 4601/1 +f 4592/1 4601/1 4593/1 +f 4562/1 4602/1 4556/1 +f 4603/1 4604/1 4605/1 +f 4595/1 4603/1 4606/1 +f 4595/1 4606/1 4596/1 +f 4603/1 4607/1 4608/1 +f 4603/1 4608/1 4606/1 +f 4607/1 4609/1 4610/1 +f 4607/1 4610/1 4608/1 +f 4609/1 4605/1 4611/1 +f 4609/1 4611/1 4610/1 +f 4605/1 4612/1 4613/1 +f 4605/1 4613/1 4611/1 +f 4612/1 4614/1 4615/1 +f 4612/1 4615/1 4613/1 +f 4614/1 4616/1 4617/1 +f 4614/1 4617/1 4615/1 +f 4616/1 4604/1 4618/1 +f 4616/1 4618/1 4617/1 +f 4604/1 4619/1 4620/1 +f 4604/1 4620/1 4618/1 +f 4621/1 4622/1 4623/1 +f 4624/1 4622/1 4621/1 +f 4625/1 4624/1 4621/1 +f 4626/1 4624/1 4625/1 +f 4627/1 4626/1 4625/1 +f 4628/1 4626/1 4627/1 +f 4629/1 4628/1 4627/1 +f 4630/1 4628/1 4629/1 +f 4631/1 4630/1 4629/1 +f 4632/1 4630/1 4631/1 +f 4633/1 4632/1 4631/1 +f 4634/1 4632/1 4633/1 +f 4620/1 4634/1 4633/1 +f 4619/1 4634/1 4620/1 +f 4635/1 4622/1 4636/1 +f 4623/1 4622/1 4635/1 +f 4637/1 4636/1 4638/1 +f 4635/1 4636/1 4637/1 +f 4602/1 4638/1 4639/1 +f 4637/1 4638/1 4602/1 +f 4559/1 4639/1 4557/1 +f 4602/1 4639/1 4559/1 +f 4640/1 4641/1 4642/1 +f 4642/1 4641/1 4643/1 +f 4643/1 4641/1 4644/1 +f 4644/1 4641/1 4645/1 +f 4646/1 4641/1 4640/1 +f 4644/1 4645/1 4647/1 +f 4648/1 4646/1 4649/1 +f 4648/1 4649/1 4650/1 +f 4648/1 4650/1 4651/1 +f 4648/1 4651/1 4652/1 +f 4648/1 4652/1 4653/1 +f 4654/1 4655/1 4656/1 +f 4646/1 4657/1 4641/1 +f 4658/1 4659/1 4660/1 +f 4661/1 4658/1 4660/1 +f 4648/1 4662/1 4663/1 +f 4663/1 4662/1 4664/1 +f 4663/1 4664/1 4665/1 +f 4665/1 4664/1 4666/1 +f 4665/1 4666/1 4667/1 +f 4667/1 4666/1 4668/1 +f 4667/1 4668/1 4669/1 +f 4669/1 4668/1 4670/1 +f 4669/1 4670/1 4671/1 +f 4671/1 4670/1 4672/1 +f 4671/1 4672/1 4673/1 +f 4673/1 4672/1 4674/1 +f 4673/1 4674/1 4675/1 +f 4675/1 4674/1 4676/1 +f 4675/1 4676/1 4677/1 +f 4677/1 4676/1 4678/1 +f 4678/1 4676/1 4679/1 +f 4678/1 4679/1 4680/1 +f 4678/1 4680/1 4681/1 +f 4682/1 4683/1 4684/1 +f 4684/1 4683/1 4685/1 +f 4685/1 4683/1 4686/1 +f 4686/1 4683/1 4687/1 +f 4688/1 4682/1 4684/1 +f 4689/1 4686/1 4687/1 +f 4690/1 4689/1 4687/1 +f 4691/1 4687/1 4662/1 +f 4690/1 4687/1 4691/1 +f 4692/1 4691/1 4662/1 +f 4693/1 4692/1 4662/1 +f 4694/1 4693/1 4662/1 +f 4695/1 4694/1 4662/1 +f 4696/1 4697/1 4698/1 +f 4679/1 4699/1 4680/1 +f 4700/1 4701/1 4702/1 +f 4700/1 4702/1 4703/1 +f 4680/1 4704/1 4705/1 +f 4706/1 4704/1 4707/1 +f 4705/1 4704/1 4706/1 +f 4681/1 4680/1 4705/1 +f 4708/1 4707/1 4709/1 +f 4706/1 4707/1 4708/1 +f 4710/1 4709/1 4711/1 +f 4708/1 4709/1 4710/1 +f 4710/1 4711/1 4712/1 +f 4710/1 4712/1 4713/1 +f 4714/1 4712/1 4715/1 +f 4713/1 4712/1 4714/1 +f 4716/1 4715/1 4717/1 +f 4714/1 4715/1 4716/1 +f 4716/1 4717/1 4699/1 +f 4716/1 4699/1 4718/1 +f 4660/1 4700/1 4703/1 +f 4660/1 4703/1 4661/1 +f 4719/1 4720/1 4721/1 +f 4721/1 4720/1 4722/1 +f 4723/1 4720/1 4724/1 +f 4724/1 4720/1 4719/1 +f 4725/1 4723/1 4724/1 +f 4726/1 4725/1 4724/1 +f 4727/1 4725/1 4726/1 +f 4701/1 4727/1 4728/1 +f 4728/1 4727/1 4726/1 +f 4659/1 4701/1 4728/1 +f 4702/1 4701/1 4659/1 +f 4703/1 4702/1 4658/1 +f 4658/1 4702/1 4659/1 +f 4661/1 4703/1 4658/1 +f 4656/1 4698/1 4654/1 +f 4696/1 4698/1 4656/1 +f 4729/1 4696/1 4656/1 +f 4730/1 4696/1 4729/1 +f 4731/1 4730/1 4729/1 +f 4732/1 4730/1 4731/1 +f 4733/1 4732/1 4731/1 +f 4734/1 4732/1 4733/1 +f 4735/1 4734/1 4733/1 +f 4736/1 4734/1 4735/1 +f 4737/1 4736/1 4735/1 +f 4738/1 4736/1 4737/1 +f 4739/1 4738/1 4737/1 +f 4740/1 4738/1 4739/1 +f 4741/1 4740/1 4739/1 +f 4742/1 4740/1 4741/1 +f 4721/1 4742/1 4741/1 +f 4722/1 4742/1 4721/1 +f 4743/1 4744/1 4745/1 +f 4745/1 4744/1 4746/1 +f 4745/1 4746/1 4747/1 +f 4747/1 4746/1 4748/1 +f 4747/1 4748/1 4749/1 +f 4749/1 4748/1 4750/1 +f 4749/1 4750/1 4751/1 +f 4751/1 4750/1 4752/1 +f 4751/1 4752/1 4753/1 +f 4751/1 4753/1 4754/1 +f 4754/1 4753/1 4755/1 +f 4754/1 4755/1 4756/1 +f 4756/1 4755/1 4757/1 +f 4756/1 4757/1 4758/1 +f 4758/1 4757/1 4759/1 +f 4758/1 4759/1 4760/1 +f 4760/1 4759/1 4761/1 +f 4761/1 4759/1 4762/1 +f 4761/1 4762/1 4763/1 +f 4763/1 4762/1 4764/1 +f 4764/1 4762/1 4765/1 +f 4764/1 4765/1 4766/1 +f 4766/1 4765/1 4767/1 +f 4766/1 4767/1 4768/1 +f 4744/1 4688/1 4684/1 +f 4744/1 4684/1 4746/1 +f 4746/1 4684/1 4685/1 +f 4746/1 4685/1 4748/1 +f 4748/1 4685/1 4686/1 +f 4748/1 4686/1 4750/1 +f 4750/1 4686/1 4689/1 +f 4750/1 4689/1 4752/1 +f 4752/1 4689/1 4753/1 +f 4753/1 4689/1 4690/1 +f 4753/1 4690/1 4755/1 +f 4755/1 4690/1 4691/1 +f 4755/1 4691/1 4757/1 +f 4757/1 4691/1 4759/1 +f 4759/1 4691/1 4692/1 +f 4759/1 4692/1 4762/1 +f 4762/1 4692/1 4693/1 +f 4762/1 4693/1 4765/1 +f 4765/1 4693/1 4694/1 +f 4767/1 4694/1 4695/1 +f 4765/1 4694/1 4767/1 +f 4647/1 4743/1 4745/1 +f 4647/1 4745/1 4644/1 +f 4644/1 4745/1 4747/1 +f 4644/1 4747/1 4643/1 +f 4643/1 4747/1 4749/1 +f 4643/1 4749/1 4642/1 +f 4642/1 4749/1 4751/1 +f 4642/1 4751/1 4640/1 +f 4640/1 4751/1 4754/1 +f 4640/1 4754/1 4756/1 +f 4640/1 4756/1 4646/1 +f 4646/1 4756/1 4758/1 +f 4646/1 4758/1 4649/1 +f 4649/1 4758/1 4760/1 +f 4649/1 4760/1 4761/1 +f 4649/1 4761/1 4650/1 +f 4650/1 4761/1 4763/1 +f 4650/1 4763/1 4764/1 +f 4650/1 4764/1 4651/1 +f 4651/1 4764/1 4766/1 +f 4651/1 4766/1 4652/1 +f 4652/1 4766/1 4768/1 +f 4652/1 4768/1 4653/1 +f 4718/1 4699/1 4769/1 +f 4718/1 4769/1 4770/1 +f 4718/1 4770/1 4771/1 +f 4771/1 4770/1 4772/1 +f 4771/1 4772/1 4773/1 +f 4773/1 4772/1 4774/1 +f 4773/1 4774/1 4775/1 +f 4776/1 4774/1 4777/1 +f 4775/1 4774/1 4776/1 +f 4778/1 4776/1 4777/1 +f 4778/1 4777/1 4779/1 +f 4780/1 4700/1 4660/1 +f 4781/1 4780/1 4660/1 +f 4782/1 4780/1 4781/1 +f 4783/1 4782/1 4781/1 +f 4784/1 4782/1 4783/1 +f 4785/1 4784/1 4783/1 +f 4786/1 4784/1 4785/1 +f 4787/1 4786/1 4785/1 +f 4788/1 4786/1 4787/1 +f 4789/1 4788/1 4787/1 +f 4790/1 4788/1 4789/1 +f 4791/1 4790/1 4789/1 +f 4792/1 4700/1 4780/1 +f 4769/1 4792/1 4780/1 +f 4699/1 4792/1 4769/1 +f 4770/1 4780/1 4782/1 +f 4769/1 4780/1 4770/1 +f 4770/1 4782/1 4772/1 +f 4772/1 4782/1 4784/1 +f 4772/1 4784/1 4774/1 +f 4774/1 4784/1 4786/1 +f 4774/1 4786/1 4788/1 +f 4774/1 4788/1 4777/1 +f 4777/1 4788/1 4790/1 +f 4777/1 4790/1 4779/1 +f 4779/1 4790/1 4791/1 +f 4660/1 4793/1 4718/1 +f 4771/1 4660/1 4718/1 +f 4781/1 4660/1 4771/1 +f 4773/1 4781/1 4771/1 +f 4783/1 4781/1 4773/1 +f 4775/1 4783/1 4773/1 +f 4785/1 4783/1 4775/1 +f 4776/1 4785/1 4775/1 +f 4787/1 4785/1 4776/1 +f 4778/1 4787/1 4776/1 +f 4789/1 4787/1 4778/1 +f 4791/1 4789/1 4794/1 +f 4795/1 4794/1 4796/1 +f 4791/1 4794/1 4795/1 +f 4797/1 4796/1 4798/1 +f 4795/1 4796/1 4797/1 +f 4797/1 4798/1 4799/1 +f 4797/1 4799/1 4800/1 +f 4801/1 4799/1 4802/1 +f 4800/1 4799/1 4801/1 +f 4803/1 4802/1 4804/1 +f 4801/1 4802/1 4803/1 +f 4803/1 4804/1 4805/1 +f 4803/1 4805/1 4806/1 +f 4807/1 4805/1 4808/1 +f 4806/1 4805/1 4807/1 +f 4809/1 4808/1 4810/1 +f 4807/1 4808/1 4809/1 +f 4811/1 4810/1 4812/1 +f 4809/1 4810/1 4811/1 +f 4811/1 4812/1 4813/1 +f 4811/1 4813/1 4814/1 +f 4815/1 4816/1 4817/1 +f 4815/1 4817/1 4818/1 +f 4819/1 4815/1 4818/1 +f 4819/1 4818/1 4820/1 +f 4813/1 4819/1 4820/1 +f 4813/1 4820/1 4814/1 +f 4817/1 4816/1 4821/1 +f 4817/1 4821/1 4822/1 +f 4823/1 4778/1 4779/1 +f 4824/1 4823/1 4779/1 +f 4824/1 4779/1 4825/1 +f 4826/1 4824/1 4825/1 +f 4826/1 4825/1 4827/1 +f 4826/1 4827/1 4828/1 +f 4829/1 4826/1 4828/1 +f 4830/1 4829/1 4828/1 +f 4830/1 4828/1 4831/1 +f 4821/1 4830/1 4831/1 +f 4821/1 4831/1 4822/1 +f 4779/1 4791/1 4806/1 +f 4806/1 4791/1 4803/1 +f 4817/1 4779/1 4806/1 +f 4803/1 4791/1 4801/1 +f 4822/1 4779/1 4817/1 +f 4831/1 4779/1 4822/1 +f 4801/1 4791/1 4795/1 +f 4825/1 4779/1 4831/1 +f 4801/1 4795/1 4797/1 +f 4827/1 4825/1 4831/1 +f 4828/1 4827/1 4831/1 +f 4801/1 4797/1 4800/1 +f 4820/1 4817/1 4814/1 +f 4814/1 4817/1 4811/1 +f 4811/1 4817/1 4806/1 +f 4811/1 4806/1 4807/1 +f 4818/1 4817/1 4820/1 +f 4811/1 4807/1 4809/1 +f 4805/1 4789/1 4778/1 +f 4804/1 4789/1 4805/1 +f 4805/1 4778/1 4816/1 +f 4816/1 4778/1 4821/1 +f 4794/1 4789/1 4802/1 +f 4802/1 4789/1 4804/1 +f 4821/1 4778/1 4830/1 +f 4830/1 4778/1 4823/1 +f 4796/1 4794/1 4802/1 +f 4830/1 4823/1 4824/1 +f 4798/1 4796/1 4802/1 +f 4830/1 4824/1 4826/1 +f 4799/1 4798/1 4802/1 +f 4830/1 4826/1 4829/1 +f 4810/1 4805/1 4812/1 +f 4812/1 4805/1 4813/1 +f 4813/1 4805/1 4816/1 +f 4808/1 4805/1 4810/1 +f 4813/1 4816/1 4819/1 +f 4819/1 4816/1 4815/1 +f 4832/1 4833/1 4834/1 +f 4832/1 4834/1 4835/1 +f 4835/1 4834/1 4836/1 +f 4835/1 4836/1 4837/1 +f 4837/1 4836/1 4838/1 +f 4839/1 4698/1 4840/1 +f 4654/1 4698/1 4839/1 +f 4839/1 4840/1 4841/1 +f 4841/1 4840/1 4832/1 +f 4832/1 4840/1 4833/1 +f 4841/1 4654/1 4839/1 +f 4698/1 4697/1 4840/1 +f 4841/1 4655/1 4654/1 +f 4842/1 4838/1 4843/1 +f 4844/1 4842/1 4843/1 +f 4845/1 4844/1 4843/1 +f 4846/1 4845/1 4847/1 +f 4847/1 4845/1 4843/1 +f 4837/1 4838/1 4848/1 +f 4848/1 4838/1 4842/1 +f 4848/1 4842/1 4849/1 +f 4849/1 4842/1 4844/1 +f 4849/1 4844/1 4850/1 +f 4850/1 4844/1 4845/1 +f 4850/1 4845/1 4851/1 +f 4851/1 4845/1 4846/1 +f 4851/1 4846/1 4852/1 +f 4852/1 4846/1 4847/1 +f 4852/1 4847/1 4853/1 +f 4853/1 4847/1 4843/1 +f 4853/1 4837/1 4848/1 +f 4853/1 4848/1 4849/1 +f 4853/1 4849/1 4850/1 +f 4853/1 4850/1 4851/1 +f 4853/1 4851/1 4852/1 +f 4854/1 4855/1 4856/1 +f 4857/1 4854/1 4856/1 +f 4858/1 4854/1 4857/1 +f 4859/1 4858/1 4857/1 +f 4860/1 4662/1 4648/1 +f 4861/1 4860/1 4648/1 +f 4862/1 4860/1 4861/1 +f 4863/1 4860/1 4862/1 +f 4855/1 4863/1 4856/1 +f 4856/1 4863/1 4862/1 +f 4768/1 4767/1 4864/1 +f 4768/1 4864/1 4865/1 +f 4768/1 4865/1 4866/1 +f 4866/1 4865/1 4867/1 +f 4866/1 4867/1 4868/1 +f 4868/1 4867/1 4869/1 +f 4868/1 4869/1 4870/1 +f 4868/1 4870/1 4871/1 +f 4871/1 4870/1 4872/1 +f 4695/1 4662/1 4860/1 +f 4873/1 4695/1 4860/1 +f 4874/1 4873/1 4863/1 +f 4863/1 4873/1 4860/1 +f 4874/1 4863/1 4855/1 +f 4875/1 4874/1 4855/1 +f 4876/1 4875/1 4855/1 +f 4876/1 4855/1 4854/1 +f 4858/1 4876/1 4854/1 +f 4877/1 4876/1 4858/1 +f 4877/1 4858/1 4859/1 +f 4878/1 4877/1 4859/1 +f 4861/1 4648/1 4653/1 +f 4862/1 4861/1 4653/1 +f 4879/1 4862/1 4653/1 +f 4856/1 4862/1 4879/1 +f 4856/1 4879/1 4880/1 +f 4857/1 4856/1 4880/1 +f 4881/1 4857/1 4880/1 +f 4870/1 4876/1 4877/1 +f 4869/1 4876/1 4870/1 +f 4872/1 4870/1 4877/1 +f 4872/1 4877/1 4878/1 +f 4767/1 4695/1 4864/1 +f 4864/1 4695/1 4873/1 +f 4864/1 4873/1 4865/1 +f 4865/1 4873/1 4874/1 +f 4865/1 4874/1 4875/1 +f 4865/1 4875/1 4867/1 +f 4867/1 4875/1 4869/1 +f 4869/1 4875/1 4876/1 +f 4880/1 4868/1 4871/1 +f 4881/1 4880/1 4871/1 +f 4653/1 4768/1 4866/1 +f 4653/1 4866/1 4879/1 +f 4879/1 4866/1 4868/1 +f 4879/1 4868/1 4880/1 +f 4882/1 4883/1 4884/1 +f 4885/1 4882/1 4884/1 +f 4886/1 4882/1 4885/1 +f 4887/1 4744/1 4743/1 +f 4888/1 4887/1 4743/1 +f 4889/1 4887/1 4888/1 +f 4883/1 4889/1 4888/1 +f 4884/1 4883/1 4888/1 +f 4890/1 4883/1 4882/1 +f 4891/1 4890/1 4882/1 +f 4892/1 4891/1 4882/1 +f 4892/1 4882/1 4886/1 +f 4893/1 4688/1 4887/1 +f 4887/1 4688/1 4744/1 +f 4894/1 4893/1 4889/1 +f 4889/1 4893/1 4887/1 +f 4895/1 4894/1 4889/1 +f 4895/1 4889/1 4883/1 +f 4896/1 4895/1 4883/1 +f 4890/1 4896/1 4883/1 +f 4885/1 4884/1 4897/1 +f 4885/1 4897/1 4898/1 +f 4899/1 4743/1 4647/1 +f 4888/1 4743/1 4899/1 +f 4900/1 4888/1 4899/1 +f 4884/1 4888/1 4900/1 +f 4884/1 4900/1 4897/1 +f 4901/1 4859/1 4902/1 +f 4902/1 4859/1 4903/1 +f 4903/1 4859/1 4904/1 +f 4878/1 4859/1 4905/1 +f 4905/1 4859/1 4901/1 +f 4906/1 4878/1 4905/1 +f 4907/1 4906/1 4905/1 +f 4903/1 4904/1 4908/1 +f 4909/1 4907/1 4905/1 +f 4910/1 4909/1 4905/1 +f 4911/1 4857/1 4881/1 +f 4912/1 4857/1 4911/1 +f 4911/1 4881/1 4913/1 +f 4911/1 4913/1 4914/1 +f 4915/1 4912/1 4916/1 +f 4916/1 4912/1 4911/1 +f 4917/1 4912/1 4918/1 +f 4918/1 4912/1 4915/1 +f 4911/1 4914/1 4919/1 +f 4911/1 4919/1 4920/1 +f 4911/1 4920/1 4921/1 +f 4885/1 4898/1 4922/1 +f 4913/1 4881/1 4923/1 +f 4923/1 4881/1 4871/1 +f 4924/1 4885/1 4922/1 +f 4914/1 4913/1 4925/1 +f 4925/1 4913/1 4923/1 +f 4926/1 4924/1 4922/1 +f 4927/1 4924/1 4926/1 +f 4914/1 4925/1 4928/1 +f 4919/1 4914/1 4928/1 +f 4929/1 4927/1 4926/1 +f 4930/1 4927/1 4929/1 +f 4919/1 4928/1 4931/1 +f 4920/1 4919/1 4931/1 +f 4921/1 4930/1 4929/1 +f 4932/1 4930/1 4921/1 +f 4920/1 4931/1 4932/1 +f 4920/1 4932/1 4921/1 +f 4924/1 4886/1 4885/1 +f 4933/1 4886/1 4924/1 +f 4871/1 4872/1 4934/1 +f 4923/1 4871/1 4934/1 +f 4935/1 4933/1 4924/1 +f 4925/1 4923/1 4934/1 +f 4927/1 4935/1 4924/1 +f 4925/1 4934/1 4936/1 +f 4937/1 4935/1 4927/1 +f 4928/1 4925/1 4936/1 +f 4930/1 4937/1 4927/1 +f 4928/1 4936/1 4938/1 +f 4939/1 4937/1 4930/1 +f 4931/1 4928/1 4938/1 +f 4932/1 4939/1 4930/1 +f 4931/1 4938/1 4940/1 +f 4940/1 4939/1 4932/1 +f 4932/1 4931/1 4940/1 +f 4933/1 4892/1 4886/1 +f 4872/1 4878/1 4906/1 +f 4934/1 4872/1 4906/1 +f 4941/1 4892/1 4935/1 +f 4935/1 4892/1 4933/1 +f 4907/1 4934/1 4906/1 +f 4936/1 4934/1 4907/1 +f 4941/1 4935/1 4937/1 +f 4942/1 4941/1 4937/1 +f 4909/1 4936/1 4907/1 +f 4938/1 4936/1 4909/1 +f 4942/1 4937/1 4939/1 +f 4943/1 4942/1 4939/1 +f 4910/1 4938/1 4909/1 +f 4940/1 4938/1 4910/1 +f 4943/1 4939/1 4940/1 +f 4943/1 4940/1 4910/1 +f 4904/1 4859/1 4857/1 +f 4904/1 4857/1 4912/1 +f 4908/1 4904/1 4912/1 +f 4908/1 4912/1 4917/1 +f 4903/1 4908/1 4917/1 +f 4903/1 4917/1 4918/1 +f 4902/1 4903/1 4918/1 +f 4902/1 4918/1 4915/1 +f 4901/1 4902/1 4915/1 +f 4901/1 4915/1 4916/1 +f 4905/1 4901/1 4916/1 +f 4905/1 4916/1 4911/1 +f 4840/1 4697/1 4944/1 +f 4833/1 4840/1 4944/1 +f 4833/1 4944/1 4945/1 +f 4946/1 4834/1 4833/1 +f 4833/1 4945/1 4946/1 +f 4834/1 4946/1 4947/1 +f 4836/1 4947/1 4948/1 +f 4841/1 4949/1 4655/1 +f 4832/1 4950/1 4949/1 +f 4832/1 4835/1 4950/1 +f 4951/1 4950/1 4835/1 +f 4952/1 4951/1 4837/1 +f 4953/1 4838/1 4948/1 +f 4843/1 4838/1 4953/1 +f 4837/1 4954/1 4952/1 +f 4893/1 4894/1 4955/1 +f 4892/1 4956/1 4957/1 +f 4892/1 4941/1 4956/1 +f 4941/1 4942/1 4956/1 +f 4942/1 4943/1 4956/1 +f 4943/1 4910/1 4956/1 +f 4898/1 4958/1 4959/1 +f 4922/1 4898/1 4959/1 +f 4945/1 4949/1 4950/1 +f 4953/1 4954/1 4853/1 +f 4834/1 4947/1 4836/1 +f 4836/1 4948/1 4838/1 +f 4832/1 4949/1 4841/1 +f 4951/1 4835/1 4837/1 +f 4960/1 4682/1 4688/1 +f 4853/1 4954/1 4837/1 +f 4961/1 4955/1 4894/1 +f 4893/1 4955/1 4960/1 +f 4896/1 4890/1 4962/1 +f 4961/1 4895/1 4896/1 +f 4890/1 4891/1 4957/1 +f 4647/1 4645/1 4963/1 +f 4957/1 4891/1 4892/1 +f 4899/1 4963/1 4964/1 +f 4958/1 4897/1 4900/1 +f 4911/1 4959/1 4956/1 +f 4897/1 4958/1 4898/1 +f 4956/1 4910/1 4905/1 +f 4922/1 4959/1 4926/1 +f 4926/1 4959/1 4929/1 +f 4929/1 4959/1 4921/1 +f 4921/1 4959/1 4911/1 +f 9/1 11/1 176/1 +f 12/1 14/1 149/1 +f 15/1 17/1 181/1 +f 20/1 22/1 23/1 +f 23/1 10/1 9/1 +f 24/1 26/1 80/1 +f 30/1 32/1 198/1 +f 46/1 48/1 215/1 +f 60/1 7/1 6/1 +f 62/1 64/1 202/1 +f 67/1 47/1 46/1 +f 69/1 31/1 30/1 +f 76/1 78/1 212/1 +f 80/1 81/1 95/1 +f 85/1 87/1 166/1 +f 88/1 90/1 161/1 +f 93/1 63/1 62/1 +f 95/1 96/1 216/1 +f 98/1 16/1 15/1 +f 100/1 102/1 171/1 +f 105/1 21/1 20/1 +f 107/1 109/1 206/1 +f 56/1 111/1 207/1 +f 112/1 94/1 93/1 +f 118/1 120/1 145/1 +f 123/1 125/1 135/1 +f 126/1 13/1 12/1 +f 129/1 131/1 163/1 +f 135/1 119/1 118/1 +f 136/1 70/1 69/1 +f 142/1 144/1 182/1 +f 145/1 68/1 67/1 +f 147/1 77/1 76/1 +f 149/1 137/1 136/1 +f 154/1 89/1 88/1 +f 156/1 155/1 154/1 +f 161/1 162/1 177/1 +f 163/1 86/1 85/1 +f 164/1 157/1 156/1 +f 166/1 167/1 214/1 +f 168/1 170/1 201/1 +f 171/1 127/1 126/1 +f 172/1 148/1 147/1 +f 176/1 124/1 123/1 +f 177/1 178/1 180/1 +f 180/1 99/1 98/1 +f 181/1 113/1 112/1 +f 182/1 25/1 24/1 +f 61/1 138/1 71/1 +f 198/1 143/1 142/1 +f 201/1 130/1 129/1 +f 202/1 101/1 100/1 +f 192/1 35/1 187/1 +f 206/1 169/1 168/1 +f 110/1 192/1 111/1 +f 72/1 138/1 58/1 +f 212/1 108/1 107/1 +f 188/1 145/1 67/1 +f 56/1 88/1 110/1 +f 128/1 136/1 103/1 +f 204/1 100/1 35/1 +f 85/1 5/1 163/1 +f 104/1 30/1 49/1 +f 115/1 112/1 116/1 +f 23/1 183/1 20/1 +f 9/1 74/1 23/1 +f 49/1 198/1 50/1 +f 184/1 182/1 51/1 +f 116/1 93/1 45/1 +f 214/1 1/1 166/1 +f 4/1 168/1 201/1 +f 50/1 142/1 184/1 +f 211/1 201/1 129/1 +f 180/1 210/1 34/1 +f 27/1 154/1 56/1 +f 195/1 149/1 128/1 +f 118/1 208/1 135/1 +f 18/1 107/1 206/1 +f 215/1 82/1 46/1 +f 203/1 202/1 204/1 +f 182/1 197/1 51/1 +f 103/1 69/1 104/1 +f 208/1 123/1 135/1 +f 20/1 207/1 105/1 +f 214/1 29/1 2/1 +f 52/1 76/1 212/1 +f 28/1 212/1 107/1 +f 193/1 24/1 80/1 +f 79/1 177/1 33/1 +f 75/1 147/1 76/1 +f 164/1 27/1 29/1 +f 166/1 3/1 85/1 +f 19/1 206/1 168/1 +f 171/1 194/1 187/1 +f 45/1 62/1 203/1 +f 15/1 115/1 114/1 +f 105/1 111/1 216/1 +f 194/1 12/1 195/1 +f 192/1 80/1 95/1 +f 33/1 180/1 34/1 +f 97/1 9/1 176/1 +f 82/1 67/1 46/1 +f 111/1 95/1 216/1 +f 210/1 15/1 114/1 +f 163/1 211/1 129/1 +f 161/1 110/1 88/1 +f 54/1 176/1 123/1 +f 145/1 191/1 118/1 +f 35/1 171/1 187/1 +f 216/1 106/1 105/1 +f 92/1 31/1 70/1 +f 71/1 89/1 61/1 +f 71/1 162/1 90/1 +f 144/1 151/1 25/1 +f 153/1 113/1 17/1 +f 175/1 109/1 174/1 +f 91/1 70/1 137/1 +f 186/1 144/1 143/1 +f 6/1 96/1 60/1 +f 196/1 48/1 134/1 +f 200/1 68/1 199/1 +f 185/1 143/1 32/1 +f 41/1 16/1 99/1 +f 134/1 47/1 200/1 +f 165/1 66/1 157/1 +f 57/1 32/1 31/1 +f 16/1 153/1 17/1 +f 148/1 196/1 150/1 +f 167/1 84/1 165/1 +f 167/1 213/1 158/1 +f 60/1 81/1 138/1 +f 174/1 108/1 65/1 +f 77/1 150/1 122/1 +f 10/1 121/1 117/1 +f 133/1 63/1 94/1 +f 157/1 7/1 155/1 +f 73/1 178/1 162/1 +f 140/1 14/1 13/1 +f 119/1 42/1 44/1 +f 72/1 102/1 101/1 +f 53/1 119/1 44/1 +f 205/1 10/1 117/1 +f 138/1 26/1 139/1 +f 152/1 94/1 113/1 +f 179/1 101/1 64/1 +f 102/1 141/1 127/1 +f 43/1 11/1 205/1 +f 22/1 132/1 121/1 +f 65/1 78/1 8/1 +f 141/1 13/1 127/1 +f 14/1 91/1 137/1 +f 125/1 43/1 42/1 +f 131/1 190/1 189/1 +f 209/1 64/1 63/1 +f 8/1 77/1 122/1 +f 190/1 170/1 160/1 +f 155/1 61/1 89/1 +f 213/1 86/1 159/1 +f 139/1 25/1 151/1 +f 199/1 120/1 53/1 +f 86/1 189/1 159/1 +f 132/1 106/1 6/1 +f 160/1 169/1 175/1 +f 178/1 41/1 99/1 +f 214/1 165/1 164/1 +f 172/1 36/1 38/1 +f 83/1 172/1 38/1 +f 48/1 172/1 215/1 +f 3277/2 3279/4 3293/12 +f 3280/5 3279/7 3310/11 +f 3282/1 3284/1 3302/1 +f 3285/1 3287/1 3289/1 +f 3288/1 3289/1 3306/1 +f 3290/1 3292/1 3312/1 +f 3286/1 3293/1 3287/1 +f 3295/1 3290/1 3312/1 +f 3290/1 3295/1 3294/1 +f 3297/1 3299/1 3313/1 +f 3290/1 3300/1 3291/1 +f 3301/1 3302/1 3309/1 +f 3298/1 3304/1 3299/1 +f 3305/1 3306/1 4965/1 +f 3297/1 3303/1 3298/1 +f 3303/1 3297/1 3336/1 +f 3336/1 3283/1 3334/1 +f 3334/1 3283/1 3333/1 +f 3333/1 3282/1 3307/1 +f 3283/1 3282/1 3333/1 +f 3307/1 3301/1 3335/1 +f 3335/1 3308/1 3296/1 +f 3296/1 3308/1 3294/1 +f 3335/1 3301/1 3308/1 +f 3336/1 3297/1 3283/1 +f 3308/1 3309/1 3314/1 +f 3292/1 3310/1 3312/1 +f 3312/1 3311/1 3295/1 +f 3283/1 3313/1 3284/1 +f 3294/1 3314/1 3300/1 +f 3279/4 3315/9 3293/12 +f 3313/1 3304/1 3299/1 +f 3304/1 3313/1 4965/1 +f 4965/1 3313/1 3306/1 +f 3306/1 3284/1 3289/1 +f 3289/1 3284/1 3287/1 +f 3284/1 3302/1 3287/1 +f 3287/1 3302/1 3293/1 +f 3293/1 3309/1 3279/1 +f 3302/1 3309/1 3293/1 +f 3279/1 3314/1 3310/1 +f 3310/1 3314/1 3300/1 +f 3284/1 3306/1 3313/1 +f 3291/1 3310/1 3300/1 +f 3284/1 3317/1 3302/1 +f 3287/1 3319/1 3289/1 +f 3289/1 3320/1 3306/1 +f 3321/1 3292/1 3291/1 +f 3293/1 3318/1 3287/1 +f 3321/1 3323/1 3322/1 +f 3323/1 3324/1 3332/1 +f 3299/1 3326/1 3313/1 +f 3300/1 3321/1 3291/1 +f 3302/1 3327/1 3309/1 +f 3304/1 3325/1 3299/1 +f 3306/1 3329/1 4965/1 +f 3331/1 3332/1 3324/1 +f 3332/1 3331/1 3339/1 +f 3339/1 3327/1 3330/1 +f 3331/1 3327/1 3339/1 +f 3330/1 3317/1 3337/1 +f 3337/1 3316/1 3338/1 +f 3338/1 3316/1 3340/1 +f 3340/1 3326/1 3328/1 +f 3316/1 3326/1 3340/1 +f 3328/1 3326/1 3325/1 +f 3337/1 3317/1 3316/1 +f 3309/1 3331/1 3314/1 +f 3323/1 3280/1 3322/1 +f 3322/1 3310/1 3292/1 +f 3313/1 3316/1 3284/1 +f 3314/1 3324/1 3300/1 +f 3277/1 3333/1 3307/1 +f 3334/1 3288/1 3336/1 +f 3286/1 3334/1 3333/1 +f 3335/1 3311/1 3278/1 +f 3335/1 3277/1 3307/1 +f 3305/1 3336/1 3288/1 +f 3304/1 3305/1 4965/1 +f 3337/1 3315/1 3330/1 +f 3320/1 3338/1 3340/1 +f 3338/1 3318/1 3337/1 +f 3280/1 3339/1 3281/1 +f 3315/1 3339/1 3330/1 +f 3340/1 3329/1 3320/1 +f 3329/1 3304/1 4965/1 +f 3311/10 3279/7 3278/13 +f 3579/1 3711/1 3575/1 +f 3575/1 3711/1 3517/1 +f 3422/1 3757/1 3581/1 +f 3581/1 3750/1 3545/1 +f 3517/1 3611/1 3422/1 +f 3711/1 3712/1 3517/1 +f 3712/1 3612/1 3517/1 +f 3581/1 3751/1 3750/1 +f 3581/1 3752/1 3751/1 +f 3611/1 3517/1 3612/1 +f 3747/1 3638/1 3749/1 +f 3749/1 3767/1 3611/1 +f 3769/1 3767/1 3749/1 +f 3743/1 3638/1 3745/1 +f 3745/1 3638/1 3747/1 +f 3638/1 3743/1 3628/1 +f 3769/1 3749/1 3638/1 +f 3581/1 3753/1 3752/1 +f 3581/1 3754/1 3753/1 +f 3581/1 3755/1 3754/1 +f 3581/1 3756/1 3755/1 +f 3765/1 3611/1 3767/1 +f 3763/1 3611/1 3765/1 +f 3611/1 3423/1 3422/1 +f 3581/1 3757/1 3756/1 +f 3761/1 3611/1 3763/1 +f 3423/1 3611/1 3761/1 +f 3422/1 3421/1 3757/1 +f 3758/1 3431/1 3392/1 +f 3392/1 3431/1 3393/1 +f 3432/1 3709/1 3383/1 +f 3383/1 3704/1 3353/1 +f 3393/1 3433/1 3432/1 +f 3431/1 3430/1 3393/1 +f 3759/1 3431/1 3758/1 +f 3383/1 3705/1 3704/1 +f 3383/1 3706/1 3705/1 +f 3760/1 3431/1 3759/1 +f 3762/1 3431/1 3760/1 +f 3383/1 3707/1 3706/1 +f 3383/1 3708/1 3707/1 +f 3764/1 3431/1 3762/1 +f 3766/1 3431/1 3764/1 +f 3383/1 3709/1 3708/1 +f 3768/1 3431/1 3766/1 +f 3768/1 3748/1 3431/1 +f 3450/1 3742/1 3466/1 +f 3466/1 3748/1 3770/1 +f 3744/1 3746/1 3466/1 +f 3770/1 3748/1 3768/1 +f 3432/1 3710/1 3709/1 +f 3432/1 3434/1 3710/1 +f 3466/1 3742/1 3744/1 +f 3748/1 3466/1 3746/1 +f 3430/1 3433/1 3393/1 +f 4039/1 4171/1 4035/1 +f 4035/1 4171/1 3977/1 +f 3882/1 4217/1 4041/1 +f 4041/1 4210/1 4005/1 +f 3977/1 4071/1 3882/1 +f 4171/1 4172/1 3977/1 +f 4172/1 4072/1 3977/1 +f 4041/1 4211/1 4210/1 +f 4041/1 4212/1 4211/1 +f 4071/1 3977/1 4072/1 +f 4207/1 4098/1 4209/1 +f 4209/1 4227/1 4071/1 +f 4229/1 4227/1 4209/1 +f 4203/1 4098/1 4205/1 +f 4205/1 4098/1 4207/1 +f 4098/1 4203/1 4088/1 +f 4229/1 4209/1 4098/1 +f 4041/1 4213/1 4212/1 +f 4041/1 4214/1 4213/1 +f 4041/1 4215/1 4214/1 +f 4041/1 4216/1 4215/1 +f 4225/1 4071/1 4227/1 +f 4223/1 4071/1 4225/1 +f 4071/1 3883/1 3882/1 +f 4041/1 4217/1 4216/1 +f 4221/1 4071/1 4223/1 +f 3883/1 4071/1 4221/1 +f 3882/1 3881/1 4217/1 +f 4218/1 3891/1 3852/1 +f 3852/1 3891/1 3853/1 +f 3892/1 4169/1 3843/1 +f 3843/1 4164/1 3813/1 +f 3853/1 3893/1 3892/1 +f 3891/1 3890/1 3853/1 +f 4219/1 3891/1 4218/1 +f 3843/1 4165/1 4164/1 +f 3843/1 4166/1 4165/1 +f 4220/1 3891/1 4219/1 +f 4222/1 3891/1 4220/1 +f 3843/1 4167/1 4166/1 +f 3843/1 4168/1 4167/1 +f 4224/1 3891/1 4222/1 +f 4226/1 3891/1 4224/1 +f 3843/1 4169/1 4168/1 +f 4228/1 3891/1 4226/1 +f 4228/1 4208/1 3891/1 +f 3910/1 4202/1 3926/1 +f 3926/1 4208/1 4230/1 +f 4204/1 4206/1 3926/1 +f 4230/1 4208/1 4228/1 +f 3892/1 4170/1 4169/1 +f 3892/1 3894/1 4170/1 +f 3926/1 4202/1 4204/1 +f 4208/1 3926/1 4206/1 +f 3890/1 3893/1 3853/1 +f 4629/1 4589/1 4631/1 +f 4631/1 4606/1 4633/1 +f 4608/1 4611/1 4618/1 +f 4633/1 4606/1 4620/1 +f 4620/1 4608/1 4618/1 +f 4618/1 4611/1 4617/1 +f 4617/1 4611/1 4615/1 +f 4615/1 4611/1 4613/1 +f 4611/1 4608/1 4610/1 +f 4608/1 4620/1 4606/1 +f 4606/1 4631/1 4596/1 +f 4596/1 4593/1 4597/1 +f 4597/1 4593/1 4599/1 +f 4599/1 4593/1 4601/1 +f 4593/1 4596/1 4591/1 +f 4591/1 4596/1 4589/1 +f 4587/1 4627/1 4585/1 +f 4585/1 4567/1 4583/1 +f 4589/1 4629/1 4587/1 +f 4596/1 4631/1 4589/1 +f 4621/1 4564/1 4625/1 +f 4625/1 4567/1 4627/1 +f 4587/1 4629/1 4627/1 +f 4583/1 4569/1 4581/1 +f 4581/1 4569/1 4578/1 +f 4627/1 4567/1 4585/1 +f 4635/1 4562/1 4623/1 +f 4623/1 4564/1 4621/1 +f 4562/1 4564/1 4623/1 +f 4578/1 4574/1 4576/1 +f 4574/1 4571/1 4572/1 +f 4569/1 4583/1 4567/1 +f 4567/1 4625/1 4564/1 +f 4574/1 4578/1 4571/1 +f 4571/1 4578/1 4569/1 +f 4602/1 4635/1 4637/1 +f 4556/1 4602/1 4559/1 +f 4562/1 4556/1 4560/1 +f 4602/1 4562/1 4635/1 +f 4628/1 4566/1 4626/1 +f 4626/1 4565/1 4624/1 +f 4563/1 4558/1 4636/1 +f 4624/1 4565/1 4622/1 +f 4622/1 4563/1 4636/1 +f 4636/1 4558/1 4638/1 +f 4638/1 4558/1 4639/1 +f 4639/1 4558/1 4557/1 +f 4558/1 4563/1 4561/1 +f 4563/1 4622/1 4565/1 +f 4565/1 4626/1 4566/1 +f 4566/1 4582/1 4568/1 +f 4568/1 4579/1 4570/1 +f 4580/1 4579/1 4568/1 +f 4570/1 4575/1 4573/1 +f 4575/1 4579/1 4577/1 +f 4580/1 4568/1 4582/1 +f 4582/1 4566/1 4584/1 +f 4575/1 4570/1 4579/1 +f 4634/1 4603/1 4632/1 +f 4632/1 4586/1 4630/1 +f 4586/1 4584/1 4630/1 +f 4630/1 4584/1 4628/1 +f 4586/1 4632/1 4588/1 +f 4628/1 4584/1 4566/1 +f 4604/1 4603/1 4619/1 +f 4619/1 4603/1 4634/1 +f 4588/1 4595/1 4590/1 +f 4590/1 4595/1 4592/1 +f 4588/1 4632/1 4603/1 +f 4592/1 4598/1 4600/1 +f 4598/1 4592/1 4594/1 +f 4594/1 4592/1 4595/1 +f 4595/1 4588/1 4603/1 +f 4603/1 4605/1 4607/1 +f 4607/1 4605/1 4609/1 +f 4605/1 4614/1 4612/1 +f 4614/1 4605/1 4616/1 +f 4616/1 4605/1 4604/1 +f 4713/1 4708/1 4710/1 +f 4708/1 4713/1 4706/1 +f 4706/1 4681/1 4705/1 +f 4706/1 4714/1 4681/1 +f 4714/1 4706/1 4713/1 +f 4718/1 4681/1 4716/1 +f 4716/1 4681/1 4714/1 +f 4718/1 4678/1 4681/1 +f 4659/1 4721/1 4660/1 +f 4660/1 4737/1 4793/1 +f 4659/1 4719/1 4721/1 +f 4793/1 4675/1 4718/1 +f 4677/1 4678/1 4718/1 +f 4718/1 4675/1 4677/1 +f 4660/1 4721/1 4741/1 +f 4726/1 4719/1 4728/1 +f 4728/1 4719/1 4659/1 +f 4719/1 4726/1 4724/1 +f 4741/1 4739/1 4660/1 +f 4739/1 4737/1 4660/1 +f 4793/1 4673/1 4675/1 +f 4793/1 4671/1 4673/1 +f 4737/1 4735/1 4793/1 +f 4793/1 4669/1 4671/1 +f 4735/1 4733/1 4793/1 +f 4793/1 4667/1 4669/1 +f 4733/1 4731/1 4793/1 +f 4793/1 4665/1 4667/1 +f 4731/1 4729/1 4793/1 +f 4793/1 4663/1 4665/1 +f 4729/1 4656/1 4793/1 +f 4655/1 4966/1 4656/1 +f 4966/1 4793/1 4656/1 +f 4663/1 4646/1 4648/1 +f 4793/1 4646/1 4663/1 +f 4966/1 4646/1 4793/1 +f 4641/1 4657/1 4645/1 +f 4657/1 4646/1 4966/1 +f 4730/1 4792/1 4696/1 +f 4696/1 4967/1 4697/1 +f 4967/1 4792/1 4968/1 +f 4968/1 4687/1 4969/1 +f 4696/1 4792/1 4967/1 +f 4732/1 4792/1 4730/1 +f 4792/1 4687/1 4968/1 +f 4969/1 4683/1 4682/1 +f 4734/1 4792/1 4732/1 +f 4792/1 4662/1 4687/1 +f 4969/1 4687/1 4683/1 +f 4662/1 4792/1 4664/1 +f 4664/1 4792/1 4666/1 +f 4736/1 4792/1 4734/1 +f 4792/1 4668/1 4666/1 +f 4668/1 4792/1 4670/1 +f 4736/1 4738/1 4792/1 +f 4670/1 4792/1 4672/1 +f 4740/1 4700/1 4738/1 +f 4738/1 4700/1 4792/1 +f 4672/1 4792/1 4674/1 +f 4742/1 4700/1 4740/1 +f 4674/1 4699/1 4676/1 +f 4792/1 4699/1 4674/1 +f 4723/1 4722/1 4720/1 +f 4722/1 4700/1 4742/1 +f 4676/1 4699/1 4679/1 +f 4725/1 4727/1 4723/1 +f 4723/1 4727/1 4722/1 +f 4727/1 4701/1 4722/1 +f 4700/1 4722/1 4701/1 +f 4717/1 4680/1 4699/1 +f 4717/1 4707/1 4680/1 +f 4712/1 4711/1 4715/1 +f 4715/1 4707/1 4717/1 +f 4711/1 4707/1 4715/1 +f 4709/1 4707/1 4711/1 +f 4704/1 4680/1 4707/1 +f 4958/1 4956/1 4959/1 +f 4956/1 4958/1 4957/1 +f 4957/1 4958/1 4962/1 +f 4962/1 4964/1 4961/1 +f 4961/1 4964/1 4955/1 +f 4962/1 4958/1 4964/1 +f 4955/1 4963/1 4960/1 +f 4960/1 4645/1 4682/1 +f 4682/1 4657/1 4969/1 +f 4969/1 4657/1 4968/1 +f 4968/1 4966/1 4967/1 +f 4967/1 4655/1 4697/1 +f 4655/1 4944/1 4697/1 +f 4944/1 4949/1 4945/1 +f 4655/1 4949/1 4944/1 +f 4945/1 4950/1 4946/1 +f 4946/1 4951/1 4947/1 +f 4947/1 4952/1 4948/1 +f 4948/1 4952/1 4953/1 +f 4947/1 4951/1 4952/1 +f 4953/1 4952/1 4954/1 +f 4946/1 4950/1 4951/1 +f 4966/1 4655/1 4967/1 +f 4960/1 4963/1 4645/1 +f 4682/1 4645/1 4657/1 +f 4657/1 4966/1 4968/1 +f 4963/1 4955/1 4964/1 +f 4953/1 4853/1 4843/1 +f 4960/1 4688/1 4893/1 +f 4961/1 4894/1 4895/1 +f 4896/1 4962/1 4961/1 +f 4890/1 4957/1 4962/1 +f 4647/1 4963/1 4899/1 +f 4899/1 4964/1 4900/1 +f 4958/1 4900/1 4964/1 +f 4911/1 4956/1 4905/1 diff --git a/resources/meshes/ultimaker_s3_platform.obj b/resources/meshes/ultimaker_s3_platform.obj index e6a64c9d0d..bbd32e153f 100644 --- a/resources/meshes/ultimaker_s3_platform.obj +++ b/resources/meshes/ultimaker_s3_platform.obj @@ -1,3585 +1,3589 @@ -v -123.779 125.518 -6.908 -v -123.798 121.257 -7.04 -v -123.8 148.5 -7.1 -v -123.718 136.812 -5.035 -v -123.69 138.383 -4.495 -v -123.668 139.355 -3.843 -v -122.703 141.947 24.15 -v -122.575 148.5 27.401 -v -123.783 124.357 -6.944 -v -123.726 124.34 -5.062 -v -123.697 125.535 -4.98 -v -123.786 120.5 -6.692 -v -123.77 119.996 -6.264 -v -123.747 119.562 -5.578 -v -122.592 144.782 27.268 -v -122.641 142.334 25.54 -v -122.61 143.238 26.57 -v -124.575 148.5 27.644 -v -125.8 148.5 -7.1 -v -125.67 139.32 -3.903 -v -125.626 140.235 -2.776 -v -125.701 137.412 -4.735 -v -125.58 140.792 -1.255 -v -125.8 121.412 -7.074 -v -125.741 119.468 -5.299 -v -125.758 119.728 -5.889 -v -125.776 120.135 -6.41 -v -125.79 120.69 -6.805 -v -124.643 142.05 25.778 -v -124.594 143.561 27.22 -v 123.799 121.412 -7.074 -v 123.788 125.518 -6.953 -v 123.8 148.5 -7.1 -v 123.717 137.035 -5.016 -v 123.692 139.057 -4.202 -v 123.647 140.245 -2.931 -v 123.583 140.992 -1.184 -v 122.594 148.5 27.308 -v 123.79 124.357 -6.976 -v 123.728 124.34 -5.084 -v 123.785 120.44 -6.67 -v 123.757 119.71 -5.886 -v 123.694 119.397 -4.969 -v 122.62 143.306 26.566 -v 125.676 139.28 -4.012 -v 125.8 148.5 -7.1 -v 125.616 141.046 -1.834 -v 125.715 137.6 -4.846 -v 124.661 141.977 25.322 -v 125.798 121.257 -7.04 -v 124.562 148.5 27.746 -v 125.75 119.517 -5.48 -v 125.77 119.996 -6.264 -v 125.786 120.5 -6.692 -v 124.583 144 27.42 -v -0.434 123.545 -20.3 -v 0.434 123.549 -20.3 -v -0.983 123.291 -20.3 -v -0.515 123.519 -4.7 -v 0.515 123.518 -4.7 -v 0.853 123.367 -4.7 -v 1.042 123.247 -20.3 -v -0.886 123.344 -4.7 -v 1.367 122.864 -4.7 -v -1.392 122.83 -4.7 -v -1.44 122.719 -20.3 -v 1.448 122.703 -20.3 -v -1.59 122.235 -20.3 -v 1.59 122.235 -4.7 -v 1.615 121.988 -20.3 -v -1.615 121.988 -4.7 -v -1.568 121.63 -20.3 -v 1.568 121.63 -4.7 -v 1.415 121.232 -20.3 -v -1.415 121.232 -4.7 -v -1.211 120.935 -20.3 -v 1.211 120.935 -4.7 -v 1.027 120.767 -20.3 -v -1.027 120.767 -4.7 -v -0.618 120.52 -20.3 -v 0.618 120.52 -4.7 -v 0.584 120.506 -20.3 -v -0.584 120.506 -4.7 -v -0.035 120.392 -20.3 -v 0.035 120.392 -4.7 -v 79.5 119.353 -4.7 -v -79.254 119 -2.7 -v -79.5 119.353 -4.7 -v 79.254 119 -2.7 -v -81.415 118.385 -20.3 -v -91.746 119 -2.7 -v -85.624 118.184 -19.176 -v -103.474 142.188 -20.267 -v -103.475 148.5 -20.299 -v -103.48 124.453 -17.978 -v -103.474 123.507 -20.292 -v -103.474 122.665 -20.27 -v -103.475 124.088 -20.132 -v -103.475 122.089 -20.033 -v -103.475 141.522 -19.94 -v -103.476 124.672 -19.675 -v -103.476 121.58 -19.567 -v -103.476 141.154 -19.562 -v -103.493 137.35 -13.004 -v -103.48 125.422 -17.978 -v -103.493 128.535 -13.038 -v -103.478 121.28 -18.902 -v -103.515 120.52 -4.7 -v -103.515 124.338 -4.7 -v -103.515 125.538 -4.7 -v -103.495 136.877 -12.563 -v -103.495 128.975 -12.603 -v -103.515 136.485 -4.694 -v -103.495 136.221 -12.317 -v -103.495 129.635 -12.327 -v -102.525 148.5 -20.298 -v -102.526 142.074 -20.24 -v -102.52 124.453 -17.978 -v -102.526 122.629 -20.272 -v -102.526 123.763 -20.253 -v -102.525 124.371 -19.954 -v -102.525 122.047 -20 -v -102.524 141.328 -19.78 -v -102.524 121.623 -19.623 -v -102.524 124.757 -19.564 -v -102.507 137.377 -13.038 -v -102.52 125.422 -17.978 -v -102.507 128.562 -13.004 -v -102.522 121.296 -18.963 -v -102.485 120.52 -4.7 -v -102.485 125.538 -4.7 -v -102.485 124.338 -4.7 -v -102.505 136.938 -12.603 -v -102.505 129.036 -12.563 -v -102.485 136.73 -4.68 -v -102.505 136.277 -12.327 -v -102.505 129.692 -12.317 -v -0.434 146.688 -20.267 -v -0.515 148.5 -4.7 -v -0.433 148.5 -20.3 -v -0.445 124.455 -18.181 -v -0.434 124.065 -20.249 -v -0.436 145.877 -19.837 -v -0.436 124.566 -19.883 -v -0.445 125.42 -18.181 -v -0.472 128.553 -13.018 -v -0.472 141.868 -13.023 -v -0.515 125.538 -4.7 -v -0.515 124.338 -4.7 -v -0.474 141.377 -12.563 -v -0.474 128.975 -12.603 -v -0.475 140.72 -12.317 -v -0.475 129.635 -12.327 -v -0.515 136.58 -4.686 -v -0.516 137.447 -4.526 -v -0.517 138.358 -4.147 -v -0.518 139.165 -3.58 -v -0.52 139.988 -2.636 -v -0.523 140.49 -1.53 -v -0.526 140.661 -0.685 -v -0.6 148.5 27.7 -v -0.59 141.552 24.19 -v -0.6 145.232 27.692 -v -0.593 141.792 25.181 -v -0.596 142.471 26.308 -v -0.599 143.478 27.155 -v -0.6 144.477 27.566 -v -103.516 137.333 -4.558 -v -103.517 138.261 -4.2 -v -103.518 139.088 -3.647 -v -103.52 139.77 -2.93 -v -103.522 140.282 -2.077 -v -103.525 140.63 -0.99 -v -103.6 148.5 27.7 -v -103.59 141.546 24.151 -v -103.6 145.2 27.69 -v -103.593 141.79 25.175 -v -103.596 142.327 26.113 -v -103.598 142.933 26.754 -v -103.599 143.627 27.225 -v -103.6 144.403 27.545 -v -102.4 148.5 27.7 -v -102.4 145.173 27.687 -v -102.483 138.898 -3.811 -v -102.484 137.832 -4.394 -v -102.48 139.92 -2.74 -v -102.477 140.464 -1.613 -v -102.474 140.654 -0.75 -v -102.41 141.545 24.132 -v -102.407 141.753 25.078 -v -102.404 142.4 26.223 -v -102.402 143.384 27.097 -v -102.4 144.402 27.545 -v -79.834 121.17 -4.701 -v 0.515 124.338 -4.7 -v 102.485 124.338 -4.7 -v 102.485 120.52 -4.7 -v 93.793 120.504 -4.7 -v -79.608 120.87 -4.7 -v 79.81 121.137 -4.7 -v -93.17 120.103 -4.7 -v -93.66 120.478 -4.7 -v 93.413 120.34 -4.7 -v 93.156 120.066 -4.7 -v -91.2 121.119 -4.705 -v 79.539 120.727 -4.701 -v -91.452 120.752 -4.7 -v 92.976 119.599 -4.7 -v -92.747 119.384 -4.7 -v -91.5 119.353 -4.7 -v -92.984 119.617 -4.7 -v 91.5 119.353 -4.7 -v 92.712 119.374 -4.7 -v -123.705 119.406 -5.007 -v -125.674 119.343 -4.644 -v -125.448 119.233 -4.022 -v -124.975 119.122 -3.394 -v -123.424 119.356 -4.722 -v -124.216 119.032 -2.883 -v -123.431 119 -2.703 -v -118.286 119.009 -2.7 -v -117.447 120.259 -2.7 -v -117.814 119.86 -2.7 -v -117.07 120.406 -2.7 -v -93.707 120.315 -2.7 -v 117.749 119.96 -2.7 -v 117.254 120.378 -2.7 -v 93.498 120.228 -2.7 -v 93.94 120.408 -2.7 -v 93.17 119.804 -2.7 -v 93.02 119.183 -2.7 -v 92.76 119.016 -2.7 -v -93.167 119.789 -2.7 -v 117.945 119.261 -2.7 -v -117.912 119.353 -2.7 -v -93.063 119.27 -2.7 -v -118.051 119.13 -2.7 -v 118.219 119.017 -2.7 -v -92.782 119.023 -2.7 -v 91.746 119 -2.7 -v -117.71 120.253 -4.7 -v -123.432 124.338 -4.71 -v -117.208 120.504 -4.7 -v -118.008 119.644 -4.7 -v -118.28 119.377 -4.7 -v -122.425 139.559 24.168 -v -123.267 138.667 -0.75 -v -122.302 141.553 24.144 -v -123.167 140.667 -0.689 -v 0.472 128.547 -13.02 -v 0.472 141.861 -13.02 -v 0.433 148.5 -20.3 -v 0.434 146.574 -20.24 -v 0.434 123.99 -20.27 -v -105.217 124.369 -8.253 -v -105.25 125.507 -8.173 -v -107.406 125.52 -6.605 -v -105.618 125.513 -7.55 -v -106.104 125.517 -7.074 -v -106.818 125.52 -6.711 -v -123.48 125.52 -6.624 -v -123.406 125.537 -4.718 -v -105.742 124.36 -7.384 -v -106.4 124.357 -6.895 -v -107.074 124.354 -6.64 -v -123.515 124.354 -6.63 -v -2.376 124.36 -7.354 -v -2.408 125.515 -7.273 -v -4.528 124.346 -5.708 -v -32.72 125.529 -5.717 -v -72.589 124.377 -9.185 -v -72.739 125.498 -9.192 -v -32.605 124.346 -5.712 -v -99.053 124.377 -9.205 -v -101.241 125.484 -10.854 -v -101.291 124.393 -11.056 -v -100.87 125.49 -10.189 -v -100.308 125.495 -9.63 -v -99.382 125.498 -9.24 -v -2.954 125.522 -6.429 -v -3.6 125.526 -5.972 -v -4.32 125.529 -5.722 -v -101.063 124.388 -10.473 -v -100.463 124.382 -9.747 -v -99.64 124.378 -9.311 -v -2.748 124.355 -6.688 -v -3.209 124.35 -6.215 -v -3.915 124.347 -5.831 -v -89.313 120.223 -20.3 -v -81.74 120.232 -20.3 -v -79.536 120.703 -4.702 -v -122.52 145.275 27.48 -v -122.274 148.5 27.682 -v -122.347 145.208 27.63 -v -122.18 145.165 27.681 -v -122.631 141.832 24.514 -v -122.505 141.634 24.13 -v -122.53 141.848 24.918 -v -122.335 141.697 24.84 -v -122.464 142.034 25.465 -v -122.246 142.05 25.683 -v -122.604 142.642 26.063 -v -122.443 142.364 26.014 -v -122.245 142.574 26.401 -v -122.466 142.968 26.624 -v -122.262 143.055 26.832 -v -122.556 143.742 26.998 -v -122.426 143.627 27.114 -v -122.234 143.628 27.22 -v -122.515 144.515 27.362 -v -122.383 144.426 27.468 -v -122.214 144.463 27.555 -v -123.376 140.752 -0.689 -v -123.656 137.488 -4.755 -v -123.61 136.548 -4.853 -v -123.383 136.546 -4.704 -v -123.391 137.157 -4.612 -v -123.533 137.921 -4.469 -v -123.324 137.887 -4.38 -v -123.5 138.856 -3.948 -v -123.322 138.548 -4.039 -v -123.303 139.164 -3.593 -v -123.498 139.405 -3.495 -v -123.638 140.3 -2.813 -v -123.511 139.94 -2.934 -v -123.304 139.675 -3.059 -v -123.296 139.965 -2.664 -v -123.573 140.586 -2.048 -v -123.431 140.403 -2.041 -v -123.233 140.327 -1.992 -v -123.579 141.006 -1.078 -v -123.492 140.826 -1.006 -v -123.263 140.567 -1.297 -v -91.126 120.976 -4.795 -v -79.876 121.03 -4.76 -v 0.474 141.438 -12.603 -v 0.475 140.777 -12.327 -v 0.474 129.036 -12.563 -v 0.475 129.692 -12.317 -v 0.436 145.795 -19.75 -v 0.435 124.52 -19.936 -v -79.576 120.511 -5.037 -v -79.787 120.723 -5.103 -v -79.954 120.789 -5.086 -v -79.906 120.868 -4.905 -v -79.704 120.82 -4.835 -v -81.443 119.97 -20.3 -v -91.448 120.47 -4.982 -v -91.32 120.66 -5.03 -v -91.178 120.757 -5.058 -v -91.029 120.795 -5.06 -v -91.174 120.86 -4.892 -v -89.568 119.912 -20.3 -v 89.585 118.385 -20.3 -v 81.415 118.385 -20.3 -v 103.475 148.5 -20.298 -v 103.474 142.074 -20.24 -v 103.48 124.453 -17.978 -v 103.474 122.629 -20.272 -v 103.474 123.763 -20.253 -v 103.475 124.371 -19.954 -v 103.475 122.047 -20 -v 103.476 141.328 -19.78 -v 103.476 121.623 -19.623 -v 103.476 124.757 -19.564 -v 103.493 137.377 -13.038 -v 103.48 125.422 -17.978 -v 103.493 128.562 -13.004 -v 103.478 121.296 -18.963 -v 103.515 120.52 -4.7 -v 103.515 125.538 -4.7 -v 103.515 124.338 -4.7 -v 103.495 136.938 -12.603 -v 103.495 129.036 -12.563 -v 103.515 136.556 -4.687 -v 103.495 136.277 -12.327 -v 103.495 129.692 -12.317 -v 102.526 142.188 -20.267 -v 102.525 148.5 -20.299 -v 102.52 124.453 -17.978 -v 102.526 123.507 -20.292 -v 102.526 122.665 -20.27 -v 102.525 124.088 -20.132 -v 102.525 122.089 -20.033 -v 102.525 141.522 -19.94 -v 102.524 124.672 -19.675 -v 102.524 121.58 -19.567 -v 102.524 141.154 -19.562 -v 102.507 137.35 -13.004 -v 102.52 125.422 -17.978 -v 102.507 128.535 -13.038 -v 102.522 121.28 -18.902 -v 102.485 125.538 -4.7 -v 102.505 136.877 -12.563 -v 102.505 128.975 -12.603 -v 102.485 136.58 -4.686 -v 102.505 136.221 -12.317 -v 102.505 129.635 -12.327 -v 0.515 148.5 -4.7 -v 0.445 124.455 -18.181 -v 0.445 125.42 -18.181 -v 0.515 125.538 -4.7 -v 0.515 136.73 -4.68 -v 0.518 138.898 -3.811 -v 0.516 137.832 -4.394 -v 0.52 139.92 -2.74 -v 0.523 140.464 -1.613 -v 0.526 140.654 -0.75 -v 0.59 141.545 24.132 -v 0.6 148.5 27.7 -v 0.6 145.173 27.687 -v 0.593 141.753 25.078 -v 0.596 142.4 26.223 -v 0.598 143.384 27.097 -v 0.6 144.402 27.545 -v 103.516 137.36 -4.55 -v 103.517 138.49 -4.086 -v 103.519 139.46 -3.296 -v 103.523 140.465 -1.61 -v 103.52 140.057 -2.506 -v 103.526 140.66 -0.709 -v 103.59 141.551 24.181 -v 103.6 148.5 27.7 -v 103.6 145 27.675 -v 103.593 141.718 24.947 -v 103.595 142.2 25.951 -v 103.598 143.107 26.906 -v 103.6 144.06 27.428 -v 102.4 148.5 27.7 -v 102.4 145.232 27.692 -v 102.484 137.447 -4.526 -v 102.483 138.358 -4.147 -v 102.482 139.165 -3.58 -v 102.48 139.988 -2.636 -v 102.477 140.49 -1.53 -v 102.474 140.661 -0.685 -v 102.41 141.552 24.19 -v 102.407 141.792 25.181 -v 102.404 142.471 26.308 -v 102.401 143.478 27.155 -v 102.4 144.477 27.566 -v 123.433 125.537 -4.73 -v 125.644 119.319 -4.506 -v 125.38 119.214 -3.911 -v 124.884 119.106 -3.3 -v 123.382 119.355 -4.713 -v 124.09 119.025 -2.842 -v 123.427 119 -2.702 -v 118.395 119.356 -4.7 -v 123.308 124.338 -4.701 -v 117.828 120.102 -4.7 -v 117.358 120.474 -4.7 -v 118.001 119.663 -4.7 -v 118.15 119.454 -4.7 -v 122.384 141.563 24.113 -v 123.168 140.666 -0.692 -v 105.217 125.507 -8.253 -v 105.25 124.368 -8.173 -v 107.406 124.354 -6.605 -v 105.742 125.514 -7.384 -v 106.4 125.518 -6.894 -v 107.074 125.52 -6.64 -v 123.515 125.52 -6.63 -v 123.703 125.535 -4.995 -v 105.618 124.362 -7.55 -v 106.104 124.358 -7.074 -v 106.818 124.355 -6.711 -v 123.571 124.355 -6.658 -v 123.563 124.339 -4.811 -v 2.376 125.514 -7.354 -v 2.408 124.36 -7.273 -v 4.528 125.529 -5.708 -v 72.739 124.377 -9.192 -v 32.72 124.346 -5.717 -v 72.589 125.498 -9.185 -v 32.605 125.529 -5.712 -v 99.053 125.498 -9.205 -v 101.241 124.391 -10.854 -v 101.291 125.482 -11.056 -v 101.063 125.487 -10.473 -v 100.463 125.494 -9.747 -v 99.64 125.497 -9.311 -v 2.748 125.52 -6.688 -v 3.209 125.524 -6.215 -v 3.915 125.528 -5.831 -v 100.87 124.385 -10.189 -v 100.308 124.38 -9.63 -v 99.382 124.377 -9.24 -v 2.954 124.353 -6.429 -v 3.6 124.349 -5.972 -v 4.32 124.346 -5.722 -v 81.763 120.242 -20.3 -v 89.201 120.246 -20.3 -v 122.251 141.701 24.888 -v 122.508 145.188 27.487 -v 122.47 148.5 27.55 -v 122.366 145.23 27.62 -v 122.23 148.5 27.688 -v 122.18 145.199 27.686 -v 122.697 141.977 24.322 -v 122.632 141.764 24.118 -v 122.597 141.886 24.815 -v 122.416 141.747 24.87 -v 122.641 142.278 25.455 -v 122.476 142.142 25.642 -v 122.282 141.961 25.5 -v 122.265 142.3 26.063 -v 122.58 142.777 26.258 -v 122.444 142.633 26.33 -v 122.23 142.883 26.703 -v 122.536 143.327 26.794 -v 122.318 143.27 26.976 -v 122.406 143.67 27.15 -v 122.545 144.09 27.182 -v 122.206 143.999 27.398 -v 122.59 144.857 27.288 -v 122.417 144.448 27.454 -v 122.219 144.64 27.592 -v 123.346 140.73 -0.722 -v 123.475 140.855 -0.686 -v 123.63 136.565 -4.88 -v 123.603 137.452 -4.69 -v 123.492 136.538 -4.757 -v 123.655 138.464 -4.389 -v 123.31 136.545 -4.692 -v 123.335 137.155 -4.601 -v 123.383 137.637 -4.477 -v 123.513 138.393 -4.237 -v 123.318 138.345 -4.163 -v 123.598 139.094 -3.883 -v 123.458 139.208 -3.643 -v 123.293 139.159 -3.595 -v 123.586 139.654 -3.393 -v 123.356 139.667 -3.086 -v 123.546 140.254 -2.547 -v 123.323 139.96 -2.682 -v 123.357 140.371 -2.003 -v 123.19 140.326 -1.986 -v 123.514 140.67 -1.612 -v 123.295 140.57 -1.314 -v 79.821 120.93 -4.82 -v 91.13 120.93 -4.826 -v 79.872 121.05 -4.746 -v 79.545 120.408 -5.007 -v 79.624 120.592 -5.03 -v 79.766 120.715 -5.082 -v 79.936 120.787 -5.073 -v 79.842 120.817 -4.951 -v 79.652 120.783 -4.821 -v 81.457 119.992 -20.3 -v 91.423 120.504 -5.015 -v 91.498 120.467 -4.7 -v 91.31 120.686 -4.99 -v 91.109 120.782 -5.066 -v 91.445 120.74 -4.702 -v 91.329 120.95 -4.706 -v 91.16 121.148 -4.704 -v 89.463 120.099 -20.3 -v 89.58 119.839 -20.3 -v -123.407 137.293 -2.61 -v -123.378 137.884 -2.36 -v 123.394 137.896 -2.345 -v 123.36 138.172 -2.102 -v -123.352 138.263 -1.996 -v 123.342 138.383 -1.802 -v -123.323 138.486 -1.582 -v 123.305 138.565 -1.355 -v 123.285 138.666 -0.786 -v 122.32 139.638 24.894 -v -122.375 139.753 25.5 -v 122.378 139.81 25.719 -v -122.44 140.09 26.59 -v 122.336 140.208 26.866 -v -122.347 140.496 27.406 -v 122.312 140.57 27.523 -v 122.327 141.502 28.528 -v 122.317 142.143 28.932 -v -122.296 142.67 29.18 -v -122.293 143.872 29.527 -v 122.312 143.917 29.53 -v -122.304 145.328 29.682 -v 122.295 145.27 29.681 -v 125.622 137.393 -4.407 -v 125.427 137.004 -3.978 -v 125.137 136.973 -3.554 -v 124.777 136.934 -3.21 -v 124.342 136.877 -2.942 -v 123.86 136.858 -2.763 -v 93.674 136.839 -2.696 -v 125.413 137.89 -3.769 -v 125.593 139.054 -3.718 -v 125.412 138.618 -3.448 -v 125.138 137.76 -3.389 -v 125.126 138.318 -3.13 -v 125.394 139.192 -2.949 -v 124.77 137.642 -3.052 -v 125.443 139.6 -2.605 -v 125.617 140.315 -2.612 -v 124.659 138.083 -2.758 -v 125.11 138.777 -2.765 -v 124.337 137.55 -2.794 -v 124.742 138.515 -2.517 -v 123.858 137.486 -2.625 -v 124.112 137.908 -2.527 -v 125.09 139.121 -2.323 -v 124.307 138.313 -2.327 -v 123.476 137.549 -2.532 -v 123.833 138.024 -2.341 -v 125.457 140.063 -1.876 -v 124.72 138.809 -2.14 -v 125.569 140.673 -1.428 -v 123.818 138.266 -2.107 -v 125.204 139.613 -1.707 -v 124.284 138.566 -2.001 -v 124.892 139.19 -1.74 -v 123.796 138.456 -1.824 -v 124.644 139.048 -1.52 -v 124.267 138.76 -1.598 -v 123.768 138.64 -1.366 -v 125.024 139.556 -0.996 -v 125.36 140.106 -0.866 -v 124.192 138.897 -0.97 -v 124.796 139.342 -0.768 -v 124.452 139.065 -0.781 -v 123.738 138.744 -0.773 -v 122.457 139.539 23.777 -v 122.867 139.615 23.863 -v 124.628 141.354 23.9 -v 124.435 140.89 24.049 -v 123.582 139.955 24.133 -v 124.08 140.377 24.136 -v 123.016 139.7 24.424 -v 124.581 141.66 25.565 -v 124.487 141.335 25.508 -v 124.267 140.868 25.384 -v 123.924 140.403 25.209 -v 123.404 140.015 25.278 -v 122.821 139.841 25.531 -v 123.855 140.55 25.988 -v 123.495 140.259 25.96 -v 123.043 140.111 26.22 -v 122.474 139.985 26.297 -v 124.216 141.233 26.512 -v 124.471 142.133 26.953 -v 123.93 141.02 26.837 -v 124.295 141.608 26.896 -v 123.68 140.765 26.84 -v 124.593 142.36 26.581 -v 123.26 140.553 27.006 -v 122.785 140.388 27.078 -v 124.482 142.944 27.495 -v 123.862 141.382 27.468 -v 124.2 142.034 27.552 -v 123.474 141.166 27.683 -v 124.555 145.786 27.699 -v 123.017 140.991 27.83 -v 122.47 140.92 27.965 -v 123.81 141.76 27.92 -v 124.42 144.115 28.012 -v 124.19 142.727 28.02 -v 124.401 145.71 28.185 -v 123.86 142.377 28.271 -v 123.238 141.654 28.326 -v 124.177 143.744 28.382 -v 122.764 141.43 28.37 -v 123.365 142.216 28.614 -v 124.15 145.039 28.616 -v 123.855 142.971 28.543 -v 123.85 143.65 28.76 -v 122.756 142.032 28.792 -v 123.446 143.14 28.952 -v 123.724 144.447 29.029 -v 123.74 145.467 29.088 -v 122.989 142.759 29.05 -v 122.396 142.835 29.236 -v 122.986 143.38 29.251 -v 123.215 144.323 29.342 -v 122.72 143.56 29.386 -v 123.234 145.495 29.424 -v 122.738 144.52 29.543 -v 122.75 145.494 29.61 -v 124.111 148.5 28.71 -v 123.347 148.5 29.387 -v 122.49 148.5 29.678 -v -125.54 136.975 -4.217 -v -125.295 136.955 -3.766 -v -124.97 136.945 -3.38 -v -124.569 136.906 -3.066 -v -124.106 136.698 -2.847 -v -93.509 136.714 -2.702 -v -125.62 138.14 -4.217 -v -125.415 137.812 -3.799 -v -125.454 139.034 -3.245 -v -125.408 138.466 -3.52 -v -125.136 137.743 -3.391 -v -125.127 138.277 -3.152 -v -124.769 137.63 -3.054 -v -125.032 138.654 -2.744 -v -124.758 138.092 -2.846 -v -125.483 139.647 -2.731 -v -124.34 137.537 -2.8 -v -123.947 137.299 -2.704 -v -124.324 137.946 -2.612 -v -125.235 139.275 -2.443 -v -124.534 138.368 -2.452 -v -123.853 137.756 -2.512 -v -124.827 138.856 -2.217 -v -125.47 140.298 -1.387 -v -123.982 138.123 -2.31 -v -125.351 139.772 -1.955 -v -124.288 138.549 -2.032 -v -123.82 138.283 -2.09 -v -125.064 139.364 -1.808 -v -124.7 139.021 -1.698 -v -123.784 138.538 -1.664 -v -124.193 138.765 -1.484 -v -125.233 139.841 -1.031 -v -124.862 139.38 -0.98 -v -124.476 139.058 -0.99 -v -123.418 138.614 -1.162 -v -124.236 138.94 -0.757 -v -123.747 138.749 -0.756 -v -124.612 141.388 24.329 -v -122.88 139.624 23.953 -v -124.424 140.922 24.422 -v -123.369 139.816 23.96 -v -124.138 140.49 24.467 -v -123.77 140.125 24.48 -v -123.326 139.915 24.923 -v -122.84 139.728 24.933 -v -124.49 141.386 25.594 -v -124.258 140.963 25.718 -v -123.932 140.575 25.815 -v -123.524 140.251 25.883 -v -123.06 140.015 25.905 -v -122.69 139.909 25.92 -v -124.553 142.035 26.446 -v -124.452 141.929 26.82 -v -124.228 141.368 26.722 -v -123.91 140.82 26.487 -v -123.5 140.519 26.616 -v -123.038 140.294 26.686 -v -123.797 141.03 27.112 -v -124.522 142.863 27.292 -v -123.26 140.736 27.308 -v -122.782 140.575 27.394 -v -124.221 141.862 27.349 -v -124.327 142.642 27.717 -v -123.88 141.51 27.582 -v -124.501 144.09 27.78 -v -123.964 142.016 27.926 -v -123.47 141.26 27.788 -v -123.012 141.083 27.93 -v -124.338 143.846 28.147 -v -122.45 141.052 28.113 -v -123.96 142.759 28.352 -v -123.466 141.756 28.243 -v -124.393 145.872 28.207 -v -123.005 141.588 28.402 -v -124.16 143.693 28.4 -v -123.568 142.305 28.51 -v -124.183 145.19 28.576 -v -122.437 141.598 28.585 -v -123.834 143.594 28.76 -v -123.453 142.728 28.79 -v -122.992 142.144 28.764 -v -123.924 145.483 28.915 -v -123.75 144.417 28.997 -v -122.43 142.042 28.87 -v -123.373 143.385 29.072 -v -122.85 142.605 29.043 -v -123.221 144.146 29.312 -v -123.52 145.554 29.258 -v -122.735 143.204 29.286 -v -123.217 145.294 29.426 -v -122.733 144.1 29.49 -v -122.795 145.38 29.597 -v -124.303 148.5 28.401 -v -123.842 148.5 29.003 -v -123.223 148.5 29.444 -v -122.459 148.5 29.684 -v -123.849 116.49 -5.9 -v -123.919 116.485 -4.4 -v -124.751 116.347 -5.9 -v -124.84 116.323 -4.4 -v -125.731 115.981 -5.9 -v -125.814 115.94 -4.4 -v -126.808 115.273 -5.9 -v -126.687 115.36 -4.4 -v -127.42 114.614 -4.4 -v -127.812 114.066 -5.9 -v -127.981 113.731 -4.4 -v -128.323 112.84 -5.9 -v -128.347 112.751 -4.4 -v -128.485 111.919 -5.9 -v -128.49 111.849 -4.4 -v -128.49 -107.849 -5.9 -v -128.485 -107.919 -4.4 -v -128.347 -108.751 -5.9 -v -128.323 -108.84 -4.4 -v -127.981 -109.731 -5.9 -v -127.812 -110.066 -4.4 -v -127.42 -110.614 -5.9 -v -126.808 -111.273 -4.4 -v -126.687 -111.36 -5.9 -v -125.814 -111.94 -5.9 -v -125.731 -111.981 -4.4 -v -124.841 -112.323 -5.9 -v -124.752 -112.347 -4.4 -v -123.919 -112.485 -5.9 -v -123.849 -112.49 -4.4 -v 123.849 -112.49 -5.9 -v 123.919 -112.485 -4.4 -v 128.49 -107.849 -4.4 -v 128.485 -107.919 -5.9 -v 128.347 -108.751 -4.4 -v 128.323 -108.84 -5.9 -v 127.981 -109.731 -4.4 -v 127.812 -110.066 -5.9 -v 127.42 -110.614 -4.4 -v 126.808 -111.273 -5.9 -v 126.687 -111.36 -4.4 -v 125.814 -111.94 -4.4 -v 125.732 -111.981 -5.9 -v 124.841 -112.323 -4.4 -v 124.752 -112.347 -5.9 -v 128.485 111.919 -4.4 -v 128.49 111.849 -5.9 -v 123.849 116.49 -4.4 -v 123.919 116.485 -5.9 -v 124.751 116.347 -4.4 -v 124.841 116.323 -5.9 -v 125.731 115.981 -4.4 -v 125.814 115.94 -5.9 -v 126.808 115.273 -4.4 -v 126.687 115.36 -5.9 -v 127.42 114.614 -5.9 -v 127.812 114.066 -4.4 -v 127.981 113.731 -5.9 -v 128.323 112.84 -4.4 -v 128.347 112.751 -5.9 -v 122.5 148.5 -7.3 -v 125.49 148.5 -18.68 -v 125.5 148.5 -7.3 -v 120.812 148.5 -20.288 -v 120.78 148.5 -23.298 -v -121.112 148.5 -23.28 -v -120.824 148.5 -20.292 -v 121.75 148.5 -23.147 -v 122.731 148.5 -22.781 -v 121.668 148.5 -19.957 -v 123.614 148.5 -22.22 -v 124.361 148.5 -21.486 -v 122.276 148.5 -19.248 -v 124.94 148.5 -20.614 -v 125.323 148.5 -19.641 -v 122.494 148.5 -18.53 -v -125.5 148.5 -7.3 -v -125.493 148.5 -18.627 -v -122.5 148.5 -7.3 -v -120.746 -97.595 -20.295 -v 119.419 -98.243 -20.3 -v 119.897 -97.74 -20.3 -v 120.501 -97.597 -20.308 -v 119.292 -98.824 -20.3 -v -120.075 -97.669 -20.3 -v 119.775 -99.777 -20.3 -v 120.271 -99.983 -20.3 -v 119.415 -99.332 -20.3 -v 131 -112.888 -20.296 -v -119.685 -97.912 -20.3 -v -119.415 -98.268 -20.3 -v -119.292 -98.777 -20.3 -v -119.394 -99.287 -20.3 -v -119.738 -99.745 -20.3 -v -131 -112.765 -20.297 -v -120.275 -99.988 -20.3 -v -124.516 -100.048 -20.3 -v -130.986 -106.977 -20.3 -v 124.014 -100.013 -20.3 -v 130.952 -106.482 -20.3 -v 130.485 -104.744 -20.3 -v 129.995 -103.75 -20.3 -v 125.376 -100.229 -20.3 -v -126.256 -100.515 -20.3 -v 126.55 -100.648 -20.3 -v -127.25 -101.005 -20.3 -v 127.53 -101.164 -20.3 -v -130.771 -105.624 -20.3 -v -130.222 -104.153 -20.3 -v -128.28 -101.709 -20.3 -v 129.292 -102.72 -20.3 -v 128.518 -101.926 -20.3 -v -129.38 -102.828 -20.3 -v -120.257 -97.618 -23.303 -v -119.799 -97.815 -23.3 -v 120.304 -97.61 -23.302 -v -119.782 -99.778 -23.3 -v -119.414 -99.33 -23.3 -v -119.292 -98.824 -23.3 -v -119.419 -98.243 -23.3 -v -131 -112.941 -23.297 -v -120.271 -99.983 -23.3 -v 119.775 -97.823 -23.3 -v 119.415 -98.268 -23.3 -v 119.292 -98.777 -23.3 -v 119.419 -99.357 -23.3 -v 131 -112.912 -23.295 -v 119.799 -99.785 -23.3 -v 120.275 -99.988 -23.3 -v -124.014 -100.013 -23.3 -v 124.516 -100.048 -23.3 -v 130.535 -104.874 -23.3 -v 130.969 -106.63 -23.3 -v 129.995 -103.75 -23.3 -v -125.376 -100.229 -23.3 -v 126.256 -100.515 -23.3 -v -126.55 -100.648 -23.3 -v -127.53 -101.164 -23.3 -v 127.25 -101.005 -23.3 -v -130.952 -106.482 -23.3 -v -130.485 -104.744 -23.3 -v -129.995 -103.75 -23.3 -v 128.28 -101.709 -23.3 -v 129.38 -102.828 -23.3 -v -128.518 -101.926 -23.3 -v -129.292 -102.72 -23.3 -v -121.48 -97.6 -23.22 -v -122.731 -97.6 -22.782 -v -121.485 -97.6 -20.05 -v -123.614 -97.6 -22.22 -v -122.038 -97.6 -19.6 -v -124.361 -97.6 -21.486 -v -124.94 -97.6 -20.614 -v -122.45 -97.6 -18.814 -v -125.323 -97.6 -19.641 -v -125.485 -97.6 -18.719 -v -121.523 148.5 -20.028 -v -122.09 148.5 -19.535 -v -122.47 148.5 -18.743 -v -122.337 148.5 -22.957 -v -123.265 148.5 -22.473 -v -124.273 148.5 -21.608 -v -124.981 148.5 -20.531 -v -125.347 148.5 -19.551 -v -122.5 -97.575 -12.605 -v -125.5 -97.582 -12.798 -v -125.5 -97.388 -11.691 -v -122.5 -97.228 -11.2 -v -125.5 -96.927 -10.523 -v -122.5 -96.796 -10.3 -v -122.5 -96.303 -9.563 -v -125.5 -96.233 -9.476 -v -122.5 -95.424 -8.667 -v -125.5 -95.615 -8.841 -v -125.5 -94.825 -8.232 -v -122.5 -94.377 -7.973 -v -125.5 -93.7 -7.672 -v -122.5 -93.209 -7.512 -v -125.5 -92.295 -7.325 -v -122.5 -92.102 -7.318 -v 121.333 -97.6 -23.236 -v 121.332 -97.6 -20.136 -v 122.337 -97.6 -22.957 -v 123.265 -97.6 -22.473 -v 122.085 -97.6 -19.541 -v 124.273 -97.6 -21.608 -v 124.981 -97.6 -20.531 -v 122.456 -97.6 -18.768 -v 125.347 -97.6 -19.552 -v 125.486 -97.6 -18.692 -v 125.5 -92.102 -7.318 -v 125.5 -97.575 -12.605 -v 122.5 -97.582 -12.798 -v 122.5 -97.388 -11.691 -v 125.5 -97.228 -11.2 -v 122.5 -96.927 -10.523 -v 125.5 -96.796 -10.3 -v 125.5 -96.303 -9.563 -v 122.5 -96.233 -9.476 -v 125.5 -95.424 -8.667 -v 122.5 -95.615 -8.841 -v 122.5 -94.825 -8.232 -v 125.5 -94.377 -7.973 -v 122.5 -93.7 -7.672 -v 125.5 -93.209 -7.512 -v 122.5 -92.295 -7.325 -v 131 -114.25 -23.087 -v 131 -113.9 -20.052 -v 131 -115.624 -22.574 -v 131 -114.816 -19.578 -v 131 -116.86 -21.788 -v 131 -117.906 -20.761 -v 131 -115.716 -18.702 -v 131 -118.715 -19.54 -v 131 -116.225 -17.77 -v 131 -119.253 -18.178 -v 131 -116.49 -16.76 -v 131 -119.49 -16.806 -v -131 -113.573 -20.159 -v -131 -114.376 -23.053 -v -131 -114.352 -19.851 -v -131 -115.347 -22.695 -v -131 -116.372 -22.142 -v -131 -115.05 -19.389 -v -131 -117.184 -21.502 -v -131 -115.636 -18.791 -v -131 -117.987 -20.66 -v -131 -116.085 -18.085 -v -131 -118.774 -19.424 -v -131 -116.378 -17.3 -v -131 -119.286 -18.052 -v -131 -116.496 -16.551 -v -131 -119.49 -16.759 -v 130.99 -116.5 -14.382 -v 130.961 -119.5 -13.985 -v 130.817 -116.5 -13.3 -v 130.588 -119.5 -12.595 -v 130.378 -116.5 -12.122 -v 130.196 -119.5 -11.8 -v 129.703 -116.5 -11.063 -v 129.633 -119.5 -10.976 -v 128.824 -116.5 -10.167 -v 129.015 -119.5 -10.341 -v 128.225 -119.5 -9.732 -v 128 -116.5 -9.604 -v 127.205 -116.5 -9.212 -v 127.1 -119.5 -9.172 -v 125.814 -116.5 -8.839 -v 125.695 -119.5 -8.825 -v 88.18 -119.5 -8.789 -v 88.19 -116.5 -8.792 -v 87.377 -119.5 -8.65 -v 87.38 -116.5 -8.646 -v 84.048 -116.5 -7.28 -v 84.848 -119.5 -7.599 -v 81.59 -119.5 -6.468 -v 79.866 -116.5 -5.998 -v 77.368 -119.5 -5.458 -v 75.603 -116.5 -5.173 -v 74.334 -119.5 -5.03 -v 71.737 -116.5 -4.83 -v 71.447 -119.5 -4.82 -v -71.737 -119.5 -4.83 -v -71.447 -116.5 -4.82 -v -84.048 -119.5 -7.28 -v -84.848 -116.5 -7.599 -v -81.59 -116.5 -6.468 -v -79.866 -119.5 -5.998 -v -77.368 -116.5 -5.458 -v -75.603 -119.5 -5.173 -v -74.334 -116.5 -5.03 -v -88.19 -119.5 -8.792 -v -88.18 -116.5 -8.789 -v -87.377 -116.5 -8.65 -v -87.38 -119.5 -8.646 -v -130.99 -119.5 -14.382 -v -130.961 -116.5 -13.985 -v -130.817 -119.5 -13.3 -v -130.588 -116.5 -12.595 -v -130.378 -119.5 -12.122 -v -130.196 -116.5 -11.8 -v -129.703 -119.5 -11.063 -v -129.633 -116.5 -10.976 -v -128.824 -119.5 -10.167 -v -129.015 -116.5 -10.341 -v -128.225 -116.5 -9.732 -v -128 -119.5 -9.604 -v -127.205 -119.5 -9.212 -v -127.1 -116.5 -9.172 -v -125.814 -119.5 -8.839 -v -125.695 -116.5 -8.825 -v 126.793 116 -4.4 -v 126.793 -112 -4.4 -v -126.793 116 -4.4 -v -126.793 -112 -4.4 -v -128 114.793 -4.4 -v 128 114.793 -4.4 -v 128 -110.793 -4.4 -v -128 -110.793 -4.4 -v -128.5 115 -3.9 -v -127 116.5 -0.9 -v -127 116.5 -3.9 -v -128.5 115 -0.9 -v -126.793 116 -0.4 -v -128 114.793 -0.4 -v 126.793 116 -0.4 -v 127 116.5 -0.9 -v 127 116.5 -3.9 -v -128.5 -111 -0.9 -v -128 -110.793 -0.4 -v -128.5 -111 -3.9 -v 128.5 115 -0.9 -v 128.5 115 -3.9 -v 128 114.793 -0.4 -v -127 -112.5 -3.9 -v -127 -112.5 -0.9 -v -126.793 -112 -0.4 -v 128 -110.793 -0.4 -v 128.5 -111 -0.9 -v 128.5 -111 -3.9 -v 127 -112.5 -0.9 -v 126.793 -112 -0.4 -v 127 -112.5 -3.9 -v -113.5 -104.925 -6.29 -v -113.5 -104.696 -5.942 -v -113.5 -104.95 -5.898 -v -98.5 -104.753 -5.916 -v -98.5 -104.864 -6.305 -v -113.5 -112.404 -5.903 -v -113.5 -112.401 -6.305 -v -113.5 -112.576 -5.856 -v -113.5 -112.85 -6.17 -v -113.5 -112.735 -5.68 -v -113.5 -113.136 -5.75 -v -113.5 -113.12 -0.12 -v -113.5 -112.72 -0.197 -v -98.5 -112.519 -5.886 -v -98.5 -112.584 -6.29 -v -98.5 -113.006 -6.02 -v -98.5 -112.718 -5.72 -v -98.5 -113.155 -5.554 -v -98.494 -112.746 -5.55 -v -113.5 -112.835 0.24 -v -113.5 -112.424 -0.024 -v -113.5 -112.392 0.383 -v -98.499 -112.757 -0.373 -v -98.5 -113.152 -0.38 -v -98.5 -113.078 -0.05 -v -98.5 -112.611 -0.094 -v -98.5 -112.858 0.224 -v -98.5 -112.44 0.38 -v -98.5 -112.381 -0.026 -v -113.5 -107.268 -1.233 -v -113.5 -107.278 -1.646 -v -113.495 -106.151 -0.65 -v -113.47 -105.785 -0.908 -v -98.5 -107.289 -1.238 -v -98.5 -107.214 -1.645 -v -99.719 -104.795 -0.382 -v -98.511 -105.897 -0.967 -v -112.237 -104.789 -0.378 -v -99.13 -105.01 -0.496 -v -98.693 -105.438 -0.723 -v -113.197 -105.291 -0.646 -v -112.753 -104.948 -0.463 -v -120.283 -104.936 -5.9 -v -124.042 -112.38 -5.9 -v -124.345 -108.883 -5.9 -v -123.649 -109.1 -5.9 -v -122.105 -108.303 -5.9 -v -123.083 -109.054 -5.9 -v -122.519 -108.775 -5.9 -v -124.864 -108.354 -5.9 -v -125.176 -112.114 -5.9 -v -126.244 -111.574 -5.9 -v -127.17 -110.76 -5.9 -v -127.705 -104.984 -5.9 -v -128.254 -106.228 -5.9 -v -128.405 -107.394 -5.9 -v -128.317 -108.468 -5.9 -v -127.866 -109.756 -5.9 -v -125.104 -107.683 -5.9 -v -121.904 -107.708 -5.9 -v -121.981 -106.94 -5.9 -v -125.025 -106.984 -5.9 -v -124.744 -106.486 -5.9 -v -122.37 -106.358 -5.9 -v -126.72 -104.94 -5.9 -v -124.351 -106.134 -5.9 -v -125.971 -104.208 -5.9 -v -121.11 -104.152 -5.9 -v -122.836 -106.034 -5.9 -v -125.004 -103.676 -5.9 -v -122.082 -103.643 -5.9 -v -123.596 -105.884 -5.9 -v -122.891 -103.44 -5.9 -v -123.93 -103.41 -5.9 -v -99.763 -102.509 -7.194 -v -112.438 -102.538 -7.177 -v -98.72 -103.106 -6.85 -v -98.52 -103.555 -6.59 -v -99.192 -102.69 -7.09 -v -113.033 -102.845 -7 -v -113.495 -103.661 -6.529 -v -113.365 -103.245 -6.77 -v -112.164 -102.704 -7.543 -v -99.716 -102.716 -7.536 -v -112.7 -102.838 -7.466 -v -99.143 -102.915 -7.421 -v -98.693 -103.346 -7.173 -v -98.511 -103.796 -6.913 -v -113.47 -103.686 -6.976 -v -113.197 -103.202 -7.256 -v -123.87 -105.915 -6.3 -v -124.109 -103.44 -6.3 -v -123.07 -103.41 -6.3 -v -123.083 -105.946 -6.3 -v -124.918 -103.643 -6.3 -v -121.996 -103.676 -6.3 -v -125.89 -104.152 -6.3 -v -122.4 -106.311 -6.3 -v -121.029 -104.208 -6.3 -v -124.56 -106.289 -6.3 -v -126.716 -104.935 -6.3 -v -120.28 -104.94 -6.3 -v -124.985 -106.874 -6.3 -v -121.948 -107.055 -6.3 -v -122.134 -108.351 -6.3 -v -121.913 -107.764 -6.3 -v -125.111 -107.618 -6.3 -v -124.162 -112.366 -6.3 -v -124.895 -108.303 -6.3 -v -125.266 -112.08 -6.3 -v -126.352 -111.499 -6.3 -v -127.233 -110.688 -6.3 -v -127.693 -104.973 -6.3 -v -128.215 -106.091 -6.3 -v -128.403 -107.337 -6.3 -v -128.35 -108.257 -6.3 -v -127.985 -109.527 -6.3 -v -124.476 -108.782 -6.3 -v -122.564 -108.809 -6.3 -v -123.977 -109.034 -6.3 -v -123.273 -109.103 -6.3 -v -112.282 -104.983 -0.029 -v -98.52 -106.043 -0.592 -v -99.763 -104.977 -0.025 -v -98.72 -105.585 -0.349 -v -99.19 -105.163 -0.124 -v -113.308 -105.61 -0.362 -v -112.798 -105.16 -0.123 -v -98.326 -113.19 -5.55 -v -98.126 -112.84 -5.55 -v -98.346 -113.18 -0.382 -v -98.123 -112.838 -0.382 -v -94.419 -117.087 -0.393 -v -94.103 -116.837 -0.401 -v -94.042 -116.898 -5.523 -v -94.385 -117.12 -5.53 -v -93.248 -117.691 -1.644 -v -93.278 -117.661 -4.526 -v -93.593 -117.346 -5.182 -v -93.685 -117.254 -0.646 -v -93.385 -117.554 -1.11 -v -93.983 -117.522 -5.3 -v -93.66 -117.845 -4.81 -v -93.531 -117.974 -4.287 -v -93.556 -117.95 -1.44 -v -93.807 -117.698 -0.846 -v -94.095 -117.41 -0.544 -v 113.5 -104.697 -5.94 -v 113.5 -104.93 -6.285 -v 113.5 -104.95 -5.899 -v 98.5 -104.866 -6.306 -v 98.5 -104.755 -5.918 -v 98.554 -103.586 -7.034 -v 113.5 -112.42 -5.915 -v 113.5 -112.404 -6.304 -v 113.5 -112.814 -6.19 -v 113.5 -112.732 -5.691 -v 113.5 -113.123 -5.8 -v 113.5 -112.735 -0.253 -v 113.5 -113.13 -0.155 -v 98.5 -112.486 -5.895 -v 98.5 -112.621 -6.28 -v 98.5 -112.702 -5.747 -v 98.5 -113.034 -5.981 -v 98.5 -113.152 -5.552 -v 98.487 -112.738 -5.55 -v 113.5 -112.858 0.224 -v 113.5 -112.486 -0.02 -v 113.5 -112.44 0.38 -v 98.5 -113.155 -0.378 -v 98.5 -112.723 -0.227 -v 98.5 -112.75 -0.382 -v 98.5 -113.067 -0.028 -v 98.5 -112.835 0.24 -v 98.5 -112.486 -0.027 -v 98.5 -112.392 0.383 -v 113.5 -107.288 -1.237 -v 113.5 -107.222 -1.645 -v 113.495 -105.963 -1.003 -v 113.483 -106.06 -0.6 -v 98.5 -107.287 -1.231 -v 98.5 -107.12 -1.607 -v 98.5 -107.443 -1.62 -v 98.52 -105.85 -0.942 -v 99.763 -104.789 -0.378 -v 113.31 -105.426 -0.717 -v 98.748 -105.347 -0.675 -v 99.247 -104.948 -0.463 -v 112.798 -104.972 -0.476 -v 112.281 -104.795 -0.382 -v 120.28 -104.94 -5.9 -v 124.162 -112.366 -5.9 -v 124.481 -108.775 -5.9 -v 122.096 -108.293 -5.9 -v 123.778 -109.098 -5.9 -v 123.056 -109.043 -5.9 -v 126.71 -104.934 -5.9 -v 124.895 -108.303 -5.9 -v 122.568 -108.813 -5.9 -v 125.266 -112.08 -5.9 -v 126.352 -111.499 -5.9 -v 127.236 -110.685 -5.9 -v 127.985 -105.51 -5.9 -v 128.236 -108.79 -5.9 -v 128.411 -107.57 -5.9 -v 128.279 -106.376 -5.9 -v 127.836 -109.806 -5.9 -v 127.67 -104.966 -5.9 -v 125.096 -107.708 -5.9 -v 121.902 -107.666 -5.9 -v 121.94 -107.11 -5.9 -v 125.02 -106.944 -5.9 -v 122.16 -106.615 -5.9 -v 124.63 -106.358 -5.9 -v 122.61 -106.152 -5.9 -v 121.029 -104.208 -5.9 -v 124.164 -106.034 -5.9 -v 123.377 -105.883 -5.9 -v 121.996 -103.676 -5.9 -v 126.01 -104.227 -5.9 -v 124.917 -103.643 -5.9 -v 124.109 -103.44 -5.9 -v 123.07 -103.41 -5.9 -v 98.511 -103.596 -6.567 -v 99.737 -102.514 -7.191 -v 112.238 -102.509 -7.194 -v 98.694 -103.14 -6.83 -v 113.48 -103.553 -6.591 -v 113.246 -103.052 -6.88 -v 99.157 -102.71 -7.077 -v 112.753 -102.665 -7.104 -v 99.61 -102.726 -7.53 -v 112.281 -102.716 -7.537 -v 113.28 -103.297 -7.201 -v 113.489 -103.794 -6.914 -v 112.798 -102.889 -7.436 -v 99.002 -103.015 -7.364 -v 123.607 -105.895 -6.3 -v 123.93 -103.41 -6.3 -v 122.891 -103.44 -6.3 -v 122.918 -105.996 -6.3 -v 122.082 -103.643 -6.3 -v 124.342 -106.117 -6.3 -v 125.004 -103.676 -6.3 -v 121.11 -104.152 -6.3 -v 125.94 -104.186 -6.3 -v 122.37 -106.358 -6.3 -v 120.285 -104.934 -6.3 -v 126.72 -104.94 -6.3 -v 125.067 -107.134 -6.3 -v 125.063 -107.933 -6.3 -v 124.84 -106.615 -6.3 -v 124.044 -112.38 -6.3 -v 122.047 -106.812 -6.3 -v 121.957 -107.978 -6.3 -v 121.902 -107.334 -6.3 -v 125.176 -112.114 -6.3 -v 126.244 -111.574 -6.3 -v 127.172 -110.758 -6.3 -v 127.686 -104.977 -6.3 -v 128 -105.544 -6.3 -v 128.3 -106.471 -6.3 -v 128.408 -107.702 -6.3 -v 128.181 -108.992 -6.3 -v 122.285 -108.556 -6.3 -v 124.673 -108.601 -6.3 -v 122.847 -108.974 -6.3 -v 124.162 -108.966 -6.3 -v 123.55 -109.108 -6.3 -v 127.744 -109.962 -6.3 -v 98.518 -106.015 -0.577 -v 99.719 -104.983 -0.029 -v 113.245 -105.53 -0.32 -v 98.77 -105.519 -0.314 -v 112.238 -104.976 -0.025 -v 112.753 -105.136 -0.11 -v 99.202 -105.16 -0.123 -v 98.335 -113.183 -5.55 -v 98.062 -112.884 -5.55 -v 98.185 -112.804 -0.382 -v 98.326 -113.19 -0.382 -v 94.136 -116.804 -0.393 -v 94.383 -117.122 -0.401 -v 94.324 -117.18 -5.523 -v 94.102 -116.837 -5.53 -v 93.254 -117.685 -4.364 -v 93.431 -117.508 -4.925 -v 93.736 -117.203 -5.33 -v 93.264 -117.676 -1.518 -v 93.444 -117.496 -0.982 -v 93.763 -117.176 -0.576 -v 93.529 -117.977 -4.225 -v 93.625 -117.88 -4.715 -v 93.88 -117.624 -5.185 -v 93.537 -117.968 -1.58 -v 93.99 -117.515 -0.62 -v 93.695 -117.81 -1.052 -v -93.457 107.408 -5.9 -v -92.472 107.429 -5.9 -v -116.422 107.69 -5.9 -v -117.723 107.392 -5.9 -v -118.683 107.451 -5.9 -v -91.678 107.61 -5.9 -v -94.633 107.722 -5.9 -v -119.603 107.713 -5.9 -v -90.766 108.051 -5.9 -v -88.073 110.981 -5.9 -v -95.563 108.288 -5.9 -v -89.881 108.817 -5.9 -v -121.262 108.937 -5.9 -v -120.566 108.291 -5.9 -v -122.93 110.965 -5.9 -v -115.358 108.352 -5.9 -v -96.26 108.937 -5.9 -v -114.686 108.957 -5.9 -v -92.377 110.017 -5.9 -v -116.717 110.516 -5.9 -v -117.293 110.052 -5.9 -v -117.973 109.892 -5.9 -v -118.636 110.02 -5.9 -v -116.454 111.07 -5.9 -v -89.583 108.978 -5.9 -v -116.395 111.606 -5.9 -v -92.973 109.892 -5.9 -v -89.008 109.003 -5.9 -v -88.616 109.23 -5.9 -v -88.274 110.006 -5.9 -v -98 108.987 -5.9 -v -104.266 110.356 -5.888 -v -113 108.983 -5.896 -v -106.771 110.366 -5.886 -v -122.7 109.925 -5.9 -v -121.96 108.995 -5.9 -v -122.353 109.196 -5.9 -v -93.636 110.02 -5.9 -v -122.78 111.517 -5.9 -v -91.868 110.357 -5.9 -v -94.157 110.388 -5.9 -v -119.157 110.388 -5.9 -v -88.225 111.582 -5.9 -v -91.525 110.852 -5.9 -v -94.452 110.807 -5.9 -v -119.482 110.866 -5.9 -v -107.254 110.958 -5.896 -v -117.217 112.912 -5.9 -v -116.59 112.298 -5.9 -v -117.943 113.116 -5.9 -v -91.382 111.523 -5.9 -v -94.611 111.462 -5.9 -v -119.61 111.556 -5.9 -v -91.59 112.298 -5.9 -v -119.437 112.228 -5.9 -v -122.916 111.992 -5.9 -v -94.452 112.203 -5.9 -v -92.292 112.96 -5.9 -v -119.016 112.747 -5.9 -v -118.546 113.01 -5.9 -v -88.064 112.03 -5.9 -v -120.575 115.734 -5.9 -v -121.563 114.962 -5.9 -v -122.833 112.623 -5.9 -v -118.512 116.43 -5.9 -v -113 116.47 -5.905 -v -119.654 116.178 -5.9 -v -89.627 115.14 -5.9 -v -90.694 115.9 -5.9 -v -94.016 112.747 -5.9 -v -93.546 113.01 -5.9 -v -91.706 116.283 -5.9 -v -92.575 116.439 -5.9 -v -88.303 113.08 -5.9 -v -98 116.45 -5.9 -v -122.419 113.763 -5.9 -v -93.03 113.109 -5.9 -v -88.77 114.098 -5.9 -v -88.071 112.024 -6.25 -v -88.353 113.245 -6.25 -v -88.87 114.238 -6.25 -v -89.526 115.043 -6.25 -v -90.425 115.734 -6.25 -v -91.346 116.178 -6.25 -v -92.488 116.43 -6.25 -v -88.3 109.925 -6.25 -v -88.647 109.196 -6.25 -v -88.066 110.979 -6.25 -v -98 111.33 -1.306 -v -98 111.285 -1.659 -v -98 116.446 -0.037 -v -98 116.502 0.318 -v -98 116.668 -0.114 -v -98 117 0.068 -v -98 116.805 -0.383 -v -97.992 117.147 -0.393 -v -98 116.45 -6.25 -v -98 116.677 -6.22 -v -98 116.628 -5.86 -v -98 117.038 -5.96 -v -98 116.805 -5.59 -v -97.989 117.142 -5.552 -v -98 108.965 -6.242 -v -98 108.732 -5.943 -v -113 108.967 -6.242 -v -98.553 107.59 -7.004 -v -112.423 107.587 -7.005 -v -98.025 108.026 -6.751 -v -98.226 107.754 -6.908 -v -112.992 108.093 -6.713 -v -112.801 107.767 -6.9 -v -94.578 107.69 -6.25 -v -93.277 107.392 -6.25 -v -119.566 107.688 -6.25 -v -118.31 107.4 -6.25 -v -92.073 107.491 -6.25 -v -117.306 107.454 -6.25 -v -116.367 107.722 -6.25 -v -91.127 107.848 -6.25 -v -88.187 111.26 -6.25 -v -95.642 108.352 -6.25 -v -89.738 108.937 -6.25 -v -90.437 108.288 -6.25 -v -120.642 108.352 -6.25 -v -121.308 108.958 -6.25 -v -122.929 110.978 -6.25 -v -115.435 108.29 -6.25 -v -122.796 111.345 -6.25 -v -96.13 108.836 -6.25 -v -114.892 108.816 -6.25 -v -92.292 110.042 -6.25 -v -94.083 110.306 -6.25 -v -93.53 109.985 -6.25 -v -93.027 109.892 -6.25 -v -118.707 110.052 -6.25 -v -94.474 110.857 -6.25 -v -114.621 108.966 -6.25 -v -96.413 108.976 -6.25 -v -94.611 111.54 -6.25 -v -104.238 110.404 -6.242 -v -118.027 109.892 -6.25 -v -89.04 108.995 -6.25 -v -106.755 110.442 -6.234 -v -107.157 110.736 -6.246 -v -122.726 110.006 -6.25 -v -121.992 109.003 -6.25 -v -122.384 109.23 -6.25 -v -117.364 110.02 -6.25 -v -116.843 110.388 -6.25 -v -119.283 110.516 -6.25 -v -91.655 110.608 -6.25 -v -103.87 110.727 -6.242 -v -116.518 110.866 -6.25 -v -119.601 111.254 -6.25 -v -91.379 111.421 -6.25 -v -116.392 111.55 -6.25 -v -88.206 111.62 -6.25 -v -122.813 111.742 -6.25 -v -91.526 112.15 -6.25 -v -118.52 113.019 -6.25 -v -119.09 112.7 -6.25 -v -119.515 112.046 -6.25 -v -103.858 112.263 -6.245 -v -91.83 112.6 -6.25 -v -113 116.454 -6.25 -v -94.485 112.112 -6.25 -v -116.527 112.152 -6.25 -v -92.338 112.972 -6.25 -v -121.373 115.14 -6.25 -v -120.306 115.9 -6.25 -v -122.927 112.003 -6.25 -v -122.173 114.182 -6.25 -v -118.425 116.439 -6.25 -v -119.294 116.283 -6.25 -v -94.198 112.574 -6.25 -v -122.7 113.098 -6.25 -v -116.83 112.6 -6.25 -v -93.708 112.945 -6.25 -v -117.338 112.972 -6.25 -v -93.057 113.116 -6.25 -v -117.97 113.109 -6.25 -v -113 116.76 -6.184 -v -113 117.041 -5.943 -v -113.008 117.147 -5.552 -v -113.011 117.142 -0.393 -v -113 116.34 0.302 -v -113 116.673 0.278 -v -113 117.038 0.015 -v -113 111.321 -1.3 -v -112.38 108.968 -0.093 -v -98.475 108.996 -0.107 -v -112.983 109.463 -0.35 -v -112.745 109.108 -0.166 -v -98.163 109.205 -0.216 -v -98.009 109.485 -0.361 -v -112.509 108.828 -0.415 -v -98.519 108.82 -0.41 -v -113 111.296 -1.668 -v -98.009 109.344 -0.683 -v -98.145 109.058 -0.534 -v -112.845 109.052 -0.53 -v -112.991 109.33 -0.675 -v -113 116.467 -0.038 -v -113 116.73 -0.166 -v -113 116.8 -0.392 -v -113.001 116.798 -5.55 -v -113 116.767 -5.723 -v -113 108.716 -5.952 -v -98.52 107.422 -6.696 -v -112.377 107.405 -6.706 -v -98.206 107.596 -6.595 -v -98.015 107.88 -6.43 -v -112.752 107.551 -6.62 -v -112.984 107.89 -6.425 -v -97.744 116.844 -0.395 -v -97.758 116.839 -5.55 -v -96.48 117.57 -0.41 -v -96.557 117.93 -0.44 -v -96.649 117.876 -5.534 -v -96.49 117.563 -5.534 -v -96.006 117.843 -4.93 -v -96.021 117.834 -0.914 -v -96.195 117.734 -0.6 -v -96.157 117.756 -5.314 -v -96.189 118.142 -4.986 -v -96.2 118.135 -0.875 -v -96.338 118.055 -5.31 -v -113.242 116.839 -0.395 -v -113.256 116.844 -5.55 -v -114.345 117.873 -0.41 -v -114.55 117.587 -0.42 -v -114.496 117.555 -5.54 -v -114.411 117.91 -5.516 -v -114.982 117.836 -5.016 -v -114.822 117.744 -0.621 -v -114.987 117.839 -0.947 -v -114.797 117.729 -5.355 -v -114.804 118.137 -0.914 -v -114.685 118.069 -5.273 -v -114.817 118.146 -4.962 -v -114.63 118.037 -0.601 -v -104.414 112.414 -6.14 -v -106.482 110.938 -5.75 -v -104.493 110.934 -5.76 -v -106.487 111.903 -5.67 -v -106.648 111.906 -5.724 -v -106.77 111.851 -5.813 -v -106.936 111.983 -6.094 -v -106.504 112.065 -5.758 -v -106.648 111.084 -5.729 -v -106.478 111.12 -5.664 -v -106.788 111.173 -5.83 -v -106.873 112.33 -6.184 -v -106.685 112.454 -6.184 -v -104.52 111.887 -5.665 -v -104.343 111.89 -5.728 -v -104.23 111.828 -5.808 -v -104.075 111.9 -6.068 -v -104.48 112.067 -5.76 -v -104.35 111.098 -5.725 -v -104.516 111.1 -5.67 -v -104.23 111.145 -5.816 -v -104.068 112.164 -6.151 -v -104.206 112.368 -6.163 -v -107.128 112.084 -6.232 -v -106.904 112.594 -6.247 -v -106.69 110.612 -6.132 -v -106.897 110.766 -6.153 -v -107.099 111 -6.213 -v -106.924 111.044 -6.073 -v -104.342 110.557 -6.172 -v -103.914 111.96 -6.204 -v -104.22 112.581 -6.24 -v -104.132 110.706 -6.157 -v -104.039 110.983 -6.13 -v -103.934 111.047 -6.193 -v -104.48 111.97 -5.323 -v -104.473 110.7 -5.496 -v -106.513 110.678 -5.512 -v -103.77 112.022 -5.893 -v -106.569 111.87 -5.316 -v -106.943 111.906 -5.491 -v -107.225 111.988 -5.882 -v -106.826 112.077 -5.472 -v -106.452 112.083 -5.36 -v -106.58 112.237 -5.45 -v -106.785 110.867 -5.472 -v -106.566 110.942 -5.359 -v -107.04 111.097 -5.59 -v -106.832 111.13 -5.421 -v -106.59 111.138 -5.316 -v -107.036 112.458 -5.887 -v -107.184 110.896 -5.859 -v -104.474 110.902 -5.371 -v -104.436 111.112 -5.317 -v -104.242 111.927 -5.387 -v -103.98 111.892 -5.563 -v -104.25 112.157 -5.467 -v -104.519 112.294 -5.482 -v -106.682 112.655 -5.89 -v -107.049 110.566 -5.888 -v -104.24 110.857 -5.468 -v -104.02 110.939 -5.59 -v -104.109 111.138 -5.45 -v -103.898 111.157 -5.668 -v -103.907 112.365 -5.887 -v -104.22 112.636 -5.89 -v -103.884 110.656 -5.887 -v -103.768 110.97 -5.891 -v 119.277 106.394 -4.9 -v 95.566 106.688 -4.9 -v 94.31 106.4 -4.9 -v 118.312 106.453 -4.9 -v 93.306 106.454 -4.9 -v 120.322 106.61 -4.9 -v 117.367 106.722 -4.9 -v 92.367 106.722 -4.9 -v 121.233 107.051 -4.9 -v 123.923 109.992 -4.9 -v 116.437 107.288 -4.9 -v 122.127 107.824 -4.9 -v 90.738 107.937 -4.9 -v 91.437 107.288 -4.9 -v 89.187 110.258 -4.9 -v 96.642 107.352 -4.9 -v 115.746 107.93 -4.9 -v 97.13 107.836 -4.9 -v 119.623 109.017 -4.9 -v 95.283 109.516 -4.9 -v 94.707 109.052 -4.9 -v 94.027 108.892 -4.9 -v 93.364 109.02 -4.9 -v 95.601 110.254 -4.9 -v 122.426 107.978 -4.9 -v 97.414 107.977 -4.9 -v 119.027 108.892 -4.9 -v 122.994 108.003 -4.9 -v 123.384 108.23 -4.9 -v 123.754 109.093 -4.9 -v 114 107.987 -4.9 -v 107.734 109.35 -4.892 -v 99 107.983 -4.897 -v 105.343 109.336 -4.893 -v 89.072 109.992 -4.9 -v 89.26 109.037 -4.9 -v 89.92 108.016 -4.9 -v 89.573 108.302 -4.9 -v 118.364 109.02 -4.9 -v 120.196 109.418 -4.9 -v 117.842 109.388 -4.9 -v 92.843 109.388 -4.9 -v 123.775 110.582 -4.9 -v 117.508 109.886 -4.9 -v 92.518 109.866 -4.9 -v 120.557 110.066 -4.9 -v 95.09 111.7 -4.9 -v 94.057 112.116 -4.9 -v 94.583 111.992 -4.9 -v 95.515 111.046 -4.9 -v 117.394 110.484 -4.9 -v 92.392 110.55 -4.9 -v 120.596 110.678 -4.9 -v 89.207 110.616 -4.9 -v 120.402 111.316 -4.9 -v 117.47 110.998 -4.9 -v 92.527 111.152 -4.9 -v 92.83 111.6 -4.9 -v 89.071 111.024 -4.9 -v 119.709 111.96 -4.9 -v 93.337 111.972 -4.9 -v 123.936 111.03 -4.9 -v 91.425 114.734 -4.9 -v 90.526 114.043 -4.9 -v 93.49 115.43 -4.9 -v 99 115.452 -4.9 -v 92.346 115.178 -4.9 -v 122.082 114.384 -4.9 -v 121.162 114.963 -4.9 -v 117.767 111.533 -4.9 -v 118.314 111.964 -4.9 -v 120.294 115.283 -4.9 -v 119.426 115.439 -4.9 -v 108.013 111.472 -4.892 -v 123.697 112.08 -4.9 -v 89.29 112.04 -4.9 -v 114 115.452 -4.901 -v 122.765 113.722 -4.9 -v 118.97 112.109 -4.9 -v 123.301 112.968 -4.9 -v 89.736 113.044 -4.9 -v 123.929 111.024 -5.25 -v 123.715 112.027 -5.25 -v 123.285 113.012 -5.25 -v 122.387 114.139 -5.25 -v 121.121 114.991 -5.25 -v 119.795 115.405 -5.25 -v 123.475 108.365 -5.25 -v 123.832 109.389 -5.25 -v 123.925 110 -5.25 -v 114 110.33 -0.306 -v 114 110.285 -0.659 -v 113.995 108.516 0.622 -v 114 115.446 0.963 -v 114 115.502 1.318 -v 114 115.668 0.886 -v 114 116 1.068 -v 114 115.805 0.617 -v 114.008 116.147 0.607 -v 114 115.45 -5.25 -v 114 115.677 -5.22 -v 114 115.72 -4.792 -v 114 116.038 -4.96 -v 114 115.8 -4.552 -v 114.011 116.142 -4.552 -v 114 107.964 -5.242 -v 114 107.732 -4.943 -v 99 107.967 -5.242 -v 113.377 106.581 -6.008 -v 99.6 106.585 -6.006 -v 113.969 107.002 -5.765 -v 113.69 106.688 -5.946 -v 99.298 106.698 -5.94 -v 99.023 107.017 -5.756 -v 117.096 106.862 -5.25 -v 119.183 106.39 -5.25 -v 92.422 106.69 -5.25 -v 93.723 106.392 -5.25 -v 117.97 106.52 -5.25 -v 94.683 106.451 -5.25 -v 120.52 106.664 -5.25 -v 95.603 106.713 -5.25 -v 123.813 110.26 -5.25 -v 116.358 107.352 -5.25 -v 122.27 107.942 -5.25 -v 121.565 107.29 -5.25 -v 91.358 107.352 -5.25 -v 90.692 107.958 -5.25 -v 89.12 110.066 -5.25 -v 96.567 107.291 -5.25 -v 115.87 107.836 -5.25 -v 97.131 107.839 -5.25 -v 119.708 109.042 -5.25 -v 117.77 109.46 -5.25 -v 118.295 109.05 -5.25 -v 118.973 108.892 -5.25 -v 93.293 109.052 -5.25 -v 117.47 110.002 -5.25 -v 115.58 107.977 -5.25 -v 117.394 110.516 -5.25 -v 97.416 107.974 -5.25 -v 107.744 109.398 -5.242 -v 93.973 108.892 -5.25 -v 123.086 108.02 -5.25 -v 105.275 109.373 -5.245 -v 89.16 109.426 -5.25 -v 89.872 108.037 -5.25 -v 89.507 108.394 -5.25 -v 94.636 109.02 -5.25 -v 95.157 109.388 -5.25 -v 92.717 109.516 -5.25 -v 120.393 109.67 -5.25 -v 108.13 109.769 -5.238 -v 95.482 109.866 -5.25 -v 92.454 110.07 -5.25 -v 120.611 110.46 -5.25 -v 95.61 110.556 -5.25 -v 92.395 110.606 -5.25 -v 123.794 110.62 -5.25 -v 89.21 110.594 -5.25 -v 120.452 111.203 -5.25 -v 93.292 111.96 -5.25 -v 92.59 111.298 -5.25 -v 117.49 111.052 -5.25 -v 89.07 111.042 -5.25 -v 99 115.455 -5.25 -v 95.437 111.228 -5.25 -v 120.012 111.753 -5.25 -v 119.55 112.009 -5.25 -v 90.627 114.14 -5.25 -v 91.694 114.9 -5.25 -v 89.826 113.181 -5.25 -v 93.578 115.44 -5.25 -v 92.706 115.283 -5.25 -v 117.802 111.574 -5.25 -v 95.016 111.747 -5.25 -v 89.335 112.183 -5.25 -v 118.292 111.945 -5.25 -v 94.546 112.01 -5.25 -v 118.943 112.116 -5.25 -v 94.03 112.109 -5.25 -v 99 115.76 -5.184 -v 99 116.041 -4.943 -v 98.992 116.147 -4.552 -v 98.989 116.142 0.607 -v 99 115.34 1.302 -v 99 115.673 1.278 -v 99 116.038 1.015 -v 99 110.321 -0.3 -v 99.48 107.988 0.897 -v 113.518 107.99 0.896 -v 99.044 108.354 0.707 -v 113.863 108.232 0.77 -v 99.442 107.84 0.58 -v 113.419 107.81 0.595 -v 99 110.296 -0.668 -v 113.986 108.31 0.335 -v 113.783 107.981 0.506 -v 99.03 108.226 0.378 -v 99 115.467 0.962 -v 99 115.73 0.834 -v 99 115.8 0.608 -v 99 115.805 -4.562 -v 99 115.653 -4.845 -v 99 107.716 -4.952 -v 113.479 106.422 -5.696 -v 99.48 106.426 -5.693 -v 113.784 106.587 -5.6 -v 113.985 106.876 -5.434 -v 99.04 106.793 -5.481 -v 114.256 115.844 0.605 -v 114.242 115.839 -4.55 -v 115.459 116.534 0.6 -v 115.303 116.849 0.595 -v 115.284 116.837 -4.544 -v 115.549 116.586 -4.525 -v 115.968 116.828 0.13 -v 115.728 116.69 0.478 -v 115.987 116.839 -4.003 -v 115.814 116.739 -4.334 -v 115.798 117.134 -4.058 -v 115.806 117.14 0.088 -v 115.573 117.004 0.461 -v 115.557 116.995 -4.42 -v 98.758 115.839 0.605 -v 98.744 115.844 -4.55 -v 97.716 116.837 0.6 -v 97.52 116.547 0.594 -v 97.44 116.592 -4.527 -v 97.567 116.923 -4.51 -v 97.189 116.737 0.408 -v 97.007 116.843 0.01 -v 97.042 116.822 -4.131 -v 97.189 117.142 0.04 -v 97.2 117.135 -4.08 -v 97.397 117.021 0.44 -v 107.586 111.413 -5.14 -v 105.518 109.938 -4.75 -v 107.507 109.934 -4.76 -v 105.516 110.906 -4.671 -v 105.33 110.885 -4.73 -v 105.227 110.86 -4.82 -v 105.064 110.943 -5.09 -v 105.493 111.067 -4.76 -v 105.352 110.084 -4.729 -v 105.522 110.12 -4.664 -v 105.212 110.173 -4.83 -v 105.09 111.278 -5.183 -v 105.29 111.426 -5.166 -v 107.48 110.887 -4.665 -v 107.657 110.89 -4.728 -v 107.77 110.828 -4.808 -v 107.977 110.918 -5.132 -v 107.52 111.067 -4.76 -v 107.67 110.114 -4.73 -v 107.481 110.097 -4.67 -v 107.773 110.14 -4.82 -v 107.932 111.164 -5.151 -v 107.794 111.368 -5.163 -v 104.872 111.084 -5.232 -v 105.165 111.584 -5.244 -v 105.321 109.564 -5.169 -v 105.174 109.709 -5.127 -v 104.867 109.735 -5.242 -v 104.939 110.034 -5.187 -v 105.076 110.044 -5.073 -v 108.165 111.198 -5.242 -v 107.782 111.582 -5.24 -v 107.706 109.58 -5.16 -v 107.913 109.796 -5.151 -v 107.937 110.1 -5.085 -v 107.52 110.97 -4.323 -v 107.526 109.7 -4.496 -v 105.482 109.681 -4.51 -v 108.197 110.973 -4.852 -v 104.78 111.014 -4.883 -v 105.427 110.87 -4.317 -v 105.175 110.909 -4.419 -v 104.97 110.892 -4.58 -v 105.52 111.093 -4.364 -v 105.248 111.152 -4.464 -v 105.505 111.314 -4.504 -v 105.214 109.87 -4.47 -v 105.434 109.942 -4.359 -v 104.96 110.095 -4.591 -v 105.168 110.13 -4.42 -v 105.41 110.138 -4.316 -v 104.925 111.39 -4.884 -v 105.247 111.64 -4.887 -v 107.526 109.902 -4.371 -v 107.564 110.112 -4.317 -v 107.824 110.859 -4.409 -v 108.072 110.865 -4.627 -v 107.873 111.072 -4.5 -v 107.672 111.186 -4.45 -v 107.475 111.29 -4.48 -v 105.023 109.494 -4.888 -v 104.846 109.766 -4.885 -v 104.77 110.036 -4.887 -v 107.817 109.886 -4.48 -v 108.074 110.122 -4.631 -v 107.853 110.164 -4.425 -v 107.72 111.648 -4.89 -v 108.228 111.13 -4.894 -v 108.066 109.59 -4.887 -v 108.23 109.984 -4.89 -vt 0 1 -vt 0.998 1.8 -vt 0.002 1.8 -vt 1 0.8 -vt 0 0.8 +v -123.778999 125.517998 -6.907959 +v -123.797997 121.257004 -7.03996 +v -123.800003 148.5 -7.099952 +v -123.718002 136.811996 -5.034955 +v -123.690002 138.382996 -4.494955 +v -123.667999 139.354996 -3.842954 +v -123.638 140.300003 -2.812954 +v -123.579002 141.005997 -1.077954 +v -122.703003 141.947006 24.150045 +v -122.574997 148.5 27.401049 +v -123.782997 124.357002 -6.94396 +v -123.725998 124.339996 -5.06196 +v -123.696999 125.535004 -4.979959 +v -123.786003 120.5 -6.69196 +v -123.769997 119.996002 -6.26396 +v -123.747002 119.561996 -5.577961 +v -123.705002 119.405998 -5.00696 +v -122.592003 144.781998 27.268045 +v -122.640999 142.334 25.540047 +v -122.610001 143.238007 26.570045 +v -125.669998 139.320007 -3.902954 +v -125.625999 140.235001 -2.775954 +v -125.800003 148.5 -7.099952 +v -125.700996 137.412003 -4.734956 +v -125.580002 140.792007 -1.254954 +v -125.800003 121.412003 -7.07396 +v -124.574997 148.5 27.644049 +v -125.740997 119.468002 -5.298961 +v -125.758003 119.727997 -5.88896 +v -125.776001 120.135002 -6.40996 +v -125.790001 120.690002 -6.80496 +v -124.642998 142.050003 25.778046 +v -124.594002 143.561005 27.220045 +v 123.799004 121.412003 -7.07396 +v 123.788002 125.517998 -6.95296 +v 123.800003 148.5 -7.099952 +v 123.717003 137.035004 -5.015954 +v 123.692001 139.057007 -4.201954 +v 123.647003 140.244995 -2.930954 +v 123.583 140.992004 -1.183954 +v 122.594002 148.5 27.30805 +v 123.790001 124.357002 -6.97596 +v 123.727997 124.339996 -5.08396 +v 123.703003 125.535004 -4.994958 +v 123.785004 120.440002 -6.669961 +v 123.757004 119.709999 -5.885962 +v 123.694 119.397003 -4.96896 +v 122.696999 141.977005 24.322046 +v 122.589996 144.856995 27.288046 +v 122.640999 142.278 25.455046 +v 122.620003 143.306 26.566046 +v 125.615997 141.046005 -1.833954 +v 125.676003 139.279999 -4.011954 +v 125.800003 148.5 -7.099952 +v 125.714996 137.600006 -4.845955 +v 124.661003 141.977005 25.322046 +v 125.797997 121.257004 -7.03996 +v 124.561996 148.5 27.74605 +v 125.75 119.516998 -5.47996 +v 125.769997 119.996002 -6.26396 +v 125.786003 120.5 -6.69196 +v 124.583 144.0 27.420046 +v -0.983 123.291 -20.299957 +v -0.515 123.518997 -4.69996 +v -0.434 123.544998 -20.299957 +v 0.515 123.517998 -4.69996 +v 0.853 123.366997 -4.69996 +v 0.434 123.549004 -20.299957 +v 1.042 123.247002 -20.299957 +v -0.886 123.344002 -4.69996 +v 1.367 122.863998 -4.69996 +v -1.392 122.830002 -4.69996 +v -1.44 122.719002 -20.299961 +v 1.448 122.703003 -20.299961 +v -1.59 122.235001 -20.299961 +v 1.59 122.235001 -4.69996 +v 1.615 121.987999 -20.299961 +v -1.615 121.987999 -4.69996 +v -1.568 121.629997 -20.299961 +v 1.568 121.629997 -4.69996 +v 1.415 121.232002 -20.299961 +v -1.415 121.232002 -4.69996 +v -1.211 120.934998 -20.299961 +v 1.211 120.934998 -4.69996 +v 1.027 120.766998 -20.299961 +v -1.027 120.766998 -4.69996 +v -0.618 120.519997 -20.299961 +v 0.618 120.519997 -4.69996 +v 0.584 120.505997 -20.299961 +v -0.584 120.505997 -4.69996 +v -0.035 120.391998 -20.299961 +v 0.035 120.391998 -4.69996 +v 79.5 119.352997 -4.69996 +v -79.253998 119.0 -2.699962 +v -79.5 119.352997 -4.69996 +v 79.253998 119.0 -2.699962 +v -81.415001 118.385002 -20.299961 +v -91.746002 119.0 -2.699962 +v -85.624001 118.183998 -19.175962 +v -103.473999 122.665001 -20.269962 +v -103.480003 124.453003 -17.977959 +v -103.473999 123.507004 -20.291958 +v -103.474998 124.087997 -20.131958 +v -103.474998 122.088997 -20.032963 +v -103.474998 141.522003 -19.939955 +v -103.474998 148.5 -20.29895 +v -103.473999 142.188004 -20.266954 +v -103.475998 124.671997 -19.674957 +v -103.475998 121.580002 -19.566961 +v -103.475998 141.154007 -19.561954 +v -103.492996 137.350006 -13.003956 +v -103.480003 125.421997 -17.977959 +v -103.492996 128.535004 -13.037958 +v -103.477997 121.279999 -18.901962 +v -103.514999 120.519997 -4.69996 +v -103.514999 124.337997 -4.69996 +v -103.514999 125.538002 -4.699958 +v -103.495003 136.876999 -12.562956 +v -103.495003 128.975006 -12.602958 +v -103.514999 136.485001 -4.693954 +v -103.495003 136.220993 -12.316957 +v -103.495003 129.634995 -12.326958 +v -102.519997 124.453003 -17.977959 +v -102.526001 122.628998 -20.271961 +v -102.526001 123.763 -20.252958 +v -102.525002 124.371002 -19.953959 +v -102.525002 122.046997 -19.999962 +v -102.525002 148.5 -20.297951 +v -102.524002 141.328003 -19.779955 +v -102.526001 142.074005 -20.239954 +v -102.524002 121.623001 -19.622961 +v -102.524002 124.757004 -19.563957 +v -102.507004 137.376999 -13.037956 +v -102.519997 125.421997 -17.977959 +v -102.507004 128.561996 -13.003958 +v -102.522003 121.295998 -18.962961 +v -102.485001 120.519997 -4.69996 +v -102.485001 125.538002 -4.699958 +v -102.485001 124.337997 -4.69996 +v -102.504997 136.938004 -12.602956 +v -102.504997 129.035995 -12.562958 +v -102.485001 136.729996 -4.679955 +v -102.504997 136.276993 -12.326956 +v -102.504997 129.692001 -12.316958 +v -0.434 146.688004 -20.266951 +v -0.515 148.5 -4.699951 +v -0.433 148.5 -20.29995 +v -0.445 124.455002 -18.180958 +v -0.434 124.065002 -20.248959 +v -0.436 145.876999 -19.836954 +v -0.436 124.566002 -19.882957 +v -0.445 125.419998 -18.180958 +v -0.472 128.552994 -13.017958 +v -0.472 141.867996 -13.022954 +v -0.515 125.538002 -4.699958 +v -0.515 124.337997 -4.69996 +v -0.474 141.376999 -12.562954 +v -0.474 128.975006 -12.602958 +v -0.475 140.720001 -12.316956 +v -0.475 129.634995 -12.326958 +v -0.515 136.580002 -4.685955 +v -0.516 137.447006 -4.525956 +v -0.517 138.358002 -4.146955 +v -0.518 139.164993 -3.579954 +v -0.52 139.988007 -2.635954 +v -0.523 140.490005 -1.529954 +v -0.526 140.660995 -0.684954 +v -0.6 148.5 27.70005 +v -0.59 141.552002 24.190046 +v -0.6 145.231995 27.692045 +v -0.593 141.792007 25.181046 +v -0.596 142.470993 26.308046 +v -0.599 143.477997 27.155046 +v -0.6 144.477005 27.566046 +v -103.515999 137.332993 -4.557956 +v -103.516998 138.261002 -4.199955 +v -103.517998 139.087997 -3.646954 +v -103.519997 139.770004 -2.929954 +v -103.522003 140.281998 -2.076954 +v -103.525002 140.630005 -0.989954 +v -103.599998 148.5 27.70005 +v -103.589996 141.546005 24.151045 +v -103.599998 145.199997 27.690046 +v -103.593002 141.789993 25.175045 +v -103.596001 142.326996 26.113047 +v -103.598 142.932999 26.754045 +v -103.598999 143.626999 27.225046 +v -103.599998 144.403 27.545046 +v -122.274002 148.5 27.682049 +v -122.18 145.164993 27.681046 +v -102.400002 148.5 27.70005 +v -102.400002 145.173004 27.687046 +v -102.483002 138.897995 -3.810954 +v -102.484001 137.832001 -4.393956 +v -102.480003 139.919998 -2.739954 +v -102.476997 140.464005 -1.612954 +v -102.473999 140.654007 -0.749954 +v -102.410004 141.544998 24.132046 +v -102.406998 141.753006 25.078045 +v -102.403999 142.399994 26.223045 +v -102.402 143.384003 27.097046 +v -102.400002 144.401993 27.545046 +v -79.834 121.169998 -4.700962 +v -91.199997 121.119003 -4.70496 +v -93.660004 120.477997 -4.69996 +v 0.515 124.337997 -4.69996 +v 102.485001 124.337997 -4.69996 +v 79.809998 121.137001 -4.69996 +v 102.485001 120.519997 -4.69996 +v 93.792999 120.503998 -4.69996 +v 91.160004 121.148003 -4.70396 +v -79.608002 120.870003 -4.69996 +v -79.536003 120.703003 -4.701962 +v -93.169998 120.102997 -4.69996 +v 93.413002 120.339996 -4.69996 +v 93.155998 120.066002 -4.69996 +v 91.329002 120.949997 -4.70596 +v 79.539001 120.726997 -4.700962 +v -91.452003 120.751999 -4.69996 +v 91.445 120.739998 -4.701962 +v 91.498001 120.467003 -4.69996 +v 92.975998 119.598999 -4.69996 +v -92.984001 119.616997 -4.69996 +v -91.5 119.352997 -4.69996 +v -92.747002 119.384003 -4.69996 +v 92.711998 119.374001 -4.69996 +v 91.5 119.352997 -4.69996 +v -123.405998 125.537003 -4.717958 +v -123.383003 136.546005 -4.703956 +v -125.674004 119.343002 -4.643961 +v -125.447998 119.233002 -4.02196 +v -124.974998 119.122002 -3.393962 +v -123.424004 119.356003 -4.721961 +v -124.216003 119.031998 -2.882962 +v -123.431 119.0 -2.702962 +v -118.279999 119.376999 -4.69996 +v -118.286003 119.009003 -2.699962 +v -92.781998 119.023003 -2.699962 +v -117.814003 119.860001 -2.69996 +v -117.446999 120.259003 -2.69996 +v -93.509003 136.714005 -2.701956 +v -117.07 120.405998 -2.69996 +v -93.707001 120.315002 -2.69996 +v 93.674004 136.839005 -2.695956 +v 117.749001 119.959999 -2.69996 +v 123.427002 119.0 -2.701962 +v 117.253998 120.377998 -2.69996 +v 93.498001 120.227997 -2.69996 +v 93.940002 120.407997 -2.69996 +v 93.169998 119.804001 -2.69996 +v 92.760002 119.015999 -2.699962 +v 93.019997 119.182999 -2.699962 +v -93.167 119.789001 -2.69996 +v 117.945 119.261002 -2.699962 +v -117.912003 119.352997 -2.69996 +v -93.063004 119.269997 -2.69996 +v -118.051003 119.129997 -2.699962 +v 118.219002 119.016998 -2.699962 +v 91.746002 119.0 -2.699962 +v -117.208 120.503998 -4.69996 +v -117.709999 120.252998 -4.69996 +v -123.431999 124.337997 -4.70996 +v -118.008003 119.643997 -4.69996 +v 123.285004 138.666 -0.785954 +v -122.425003 139.559006 24.168045 +v -123.266998 138.667007 -0.749954 +v 122.457001 139.539001 23.777046 +v -122.304001 145.328003 29.682045 +v 122.294998 145.270004 29.681046 +v -122.459 148.5 29.68405 +v 122.489998 148.5 29.678049 +v -122.302002 141.552994 24.144045 +v -123.167 140.667007 -0.688954 +v 0.472 128.546997 -13.019958 +v 0.435 124.519997 -19.935959 +v 0.475 140.776993 -12.326954 +v 0.475 129.692001 -12.316958 +v 0.436 145.794998 -19.749954 +v 0.472 141.860992 -13.019955 +v 0.433 148.5 -20.29995 +v 0.434 146.574005 -20.23995 +v 0.434 123.989998 -20.269958 +v -105.217003 124.369003 -8.25296 +v -105.25 125.507004 -8.17296 +v -107.405998 125.519997 -6.604959 +v -123.514999 124.353996 -6.62996 +v -123.480003 125.519997 -6.62396 +v -107.073997 124.353996 -6.63996 +v -105.617996 125.513 -7.54996 +v -106.103996 125.516998 -7.073958 +v -106.818001 125.519997 -6.710958 +v -105.741997 124.360001 -7.38396 +v -106.400002 124.357002 -6.89496 +v -2.376 124.360001 -7.35396 +v -2.408 125.514999 -7.272958 +v -4.32 125.528999 -5.72196 +v -32.605 124.346001 -5.71196 +v -32.720001 125.528999 -5.716959 +v -4.528 124.346001 -5.70796 +v -72.588997 124.376999 -9.18496 +v -72.738998 125.498001 -9.19196 +v -99.053001 124.376999 -9.20496 +v -99.382004 125.498001 -9.23996 +v -101.240997 125.484001 -10.85396 +v -101.291 124.392998 -11.05596 +v -100.870003 125.489998 -10.18896 +v -100.307999 125.495003 -9.62996 +v -2.954 125.522003 -6.428958 +v -3.6 125.526001 -5.97196 +v -101.063004 124.388 -10.47296 +v -100.462997 124.382004 -9.74696 +v -99.639999 124.377998 -9.31096 +v -2.748 124.355003 -6.68796 +v -3.209 124.349998 -6.21496 +v -3.915 124.347 -5.83096 +v -91.028999 120.794998 -5.05996 +v -79.954002 120.789001 -5.08596 +v -89.313004 120.223 -20.299961 +v -81.739998 120.232002 -20.299961 +v -91.447998 120.470001 -4.98196 +v -89.568001 119.912003 -20.299961 +v -81.443001 119.970001 -20.299961 +v -79.575996 120.511002 -5.036962 +v -122.334999 141.697006 24.840046 +v -122.246002 142.050003 25.683046 +v -122.245003 142.574005 26.401045 +v -122.262001 143.054993 26.832047 +v -122.234001 143.628006 27.220045 +v -122.213997 144.462997 27.555046 +v -123.390999 137.156998 -4.611956 +v -123.323997 137.886993 -4.379956 +v -123.321999 138.548004 -4.038956 +v -123.303001 139.164001 -3.592954 +v -123.304001 139.675003 -3.058954 +v -123.295998 139.964996 -2.663954 +v -123.233002 140.326996 -1.991954 +v -123.263 140.567001 -1.296954 +v -122.519997 145.274994 27.480045 +v -122.347 145.207993 27.630045 +v -122.529999 141.848007 24.918045 +v -122.504997 141.634003 24.130045 +v -122.630997 141.832001 24.514046 +v -122.463997 142.033997 25.465046 +v -122.443001 142.363998 26.014046 +v -122.603996 142.641998 26.063046 +v -122.466003 142.968002 26.624046 +v -122.556 143.742004 26.998045 +v -122.426003 143.626999 27.114046 +v -122.514999 144.514999 27.362045 +v -122.383003 144.425995 27.468046 +v -123.375999 140.751999 -0.688954 +v -123.491997 140.826004 -1.005954 +v -123.655998 137.488007 -4.754956 +v -123.610001 136.548004 -4.852956 +v -123.532997 137.921005 -4.468955 +v -123.5 138.856003 -3.947954 +v -123.498001 139.404999 -3.494954 +v -123.511002 139.940002 -2.933954 +v -123.572998 140.585999 -2.047954 +v -123.431 140.403 -2.040954 +v -79.905998 120.867996 -4.904962 +v -91.174004 120.860001 -4.891962 +v -91.125999 120.975998 -4.794961 +v -79.875999 121.029999 -4.759962 +v 0.474 141.438004 -12.602954 +v 0.474 129.035995 -12.562958 +v -79.787003 120.723 -5.102962 +v -79.704002 120.82 -4.83496 +v -91.178001 120.757004 -5.057961 +v -91.32 120.660004 -5.029962 +v 89.584999 118.385002 -20.299961 +v 81.415001 118.385002 -20.299961 +v 103.480003 124.453003 -17.977959 +v 103.473999 122.628998 -20.271961 +v 103.473999 123.763 -20.252958 +v 103.474998 124.371002 -19.953959 +v 103.474998 122.046997 -19.999962 +v 103.474998 148.5 -20.297951 +v 103.475998 141.328003 -19.779955 +v 103.473999 142.074005 -20.239954 +v 103.475998 121.623001 -19.622961 +v 103.475998 124.757004 -19.563957 +v 103.492996 137.376999 -13.037956 +v 103.480003 125.421997 -17.977959 +v 103.492996 128.561996 -13.003958 +v 103.477997 121.295998 -18.962961 +v 103.514999 120.519997 -4.69996 +v 103.514999 125.538002 -4.699958 +v 103.514999 124.337997 -4.69996 +v 103.495003 136.938004 -12.602956 +v 103.495003 129.035995 -12.562958 +v 103.514999 136.556 -4.686954 +v 103.495003 136.276993 -12.326956 +v 103.495003 129.692001 -12.316958 +v 102.526001 122.665001 -20.269962 +v 102.519997 124.453003 -17.977959 +v 102.526001 123.507004 -20.291958 +v 102.525002 124.087997 -20.131958 +v 102.525002 122.088997 -20.032963 +v 102.525002 141.522003 -19.939955 +v 102.525002 148.5 -20.29895 +v 102.526001 142.188004 -20.266954 +v 102.524002 124.671997 -19.674957 +v 102.524002 121.580002 -19.566961 +v 102.524002 141.154007 -19.561954 +v 102.507004 137.350006 -13.003956 +v 102.519997 125.421997 -17.977959 +v 102.507004 128.535004 -13.037958 +v 102.522003 121.279999 -18.901962 +v 102.485001 125.538002 -4.699958 +v 102.504997 136.876999 -12.562956 +v 102.504997 128.975006 -12.602958 +v 102.485001 136.580002 -4.685955 +v 102.504997 136.220993 -12.316957 +v 102.504997 129.634995 -12.326958 +v 0.515 148.5 -4.699951 +v 0.445 124.455002 -18.180958 +v 0.445 125.419998 -18.180958 +v 0.515 125.538002 -4.699958 +v 0.515 136.729996 -4.679955 +v 0.518 138.897995 -3.810954 +v 0.516 137.832001 -4.393956 +v 0.52 139.919998 -2.739954 +v 0.523 140.464005 -1.612954 +v 0.526 140.654007 -0.749954 +v 0.59 141.544998 24.132046 +v 0.6 148.5 27.70005 +v 0.6 145.173004 27.687046 +v 0.593 141.753006 25.078045 +v 0.596 142.399994 26.223045 +v 0.598 143.384003 27.097046 +v 0.6 144.401993 27.545046 +v 103.515999 137.360001 -4.549955 +v 103.516998 138.490005 -4.085956 +v 103.518997 139.460007 -3.295954 +v 103.523003 140.464996 -1.609954 +v 103.519997 140.057007 -2.505954 +v 103.526001 140.660004 -0.708954 +v 103.589996 141.550995 24.181046 +v 103.599998 148.5 27.70005 +v 103.599998 145.0 27.675045 +v 103.593002 141.718002 24.947046 +v 103.595001 142.199997 25.951046 +v 103.598 143.106995 26.906046 +v 103.599998 144.059998 27.428045 +v 122.230003 148.5 27.688049 +v 122.18 145.199005 27.686047 +v 102.400002 148.5 27.70005 +v 102.400002 145.231995 27.692045 +v 102.484001 137.447006 -4.525956 +v 102.483002 138.358002 -4.146955 +v 102.482002 139.164993 -3.579954 +v 102.480003 139.988007 -2.635954 +v 102.476997 140.490005 -1.529954 +v 102.473999 140.660995 -0.684954 +v 102.410004 141.552002 24.190046 +v 102.406998 141.792007 25.181046 +v 102.403999 142.470993 26.308046 +v 102.401001 143.477997 27.155046 +v 102.400002 144.477005 27.566046 +v 123.309998 136.544998 -4.691956 +v 123.432999 125.537003 -4.729959 +v 125.643997 119.319 -4.50596 +v 125.379997 119.213997 -3.910962 +v 124.884003 119.106003 -3.299962 +v 123.382004 119.355003 -4.71296 +v 124.089996 119.025002 -2.841962 +v 118.394997 119.356003 -4.69996 +v 117.358002 120.473999 -4.69996 +v 123.307999 124.337997 -4.70096 +v 117.828003 120.101997 -4.69996 +v 118.000999 119.663002 -4.69996 +v 118.150002 119.454002 -4.69996 +v 122.384003 141.563004 24.113047 +v 123.167999 140.666 -0.691954 +v 105.217003 125.507004 -8.25296 +v 105.25 124.367996 -8.17296 +v 123.514999 125.519997 -6.62996 +v 107.405998 124.353996 -6.60496 +v 107.073997 125.519997 -6.639958 +v 123.570999 124.355003 -6.65796 +v 105.741997 125.514 -7.383958 +v 106.400002 125.517998 -6.89396 +v 105.617996 124.362 -7.54996 +v 106.103996 124.358002 -7.07396 +v 106.818001 124.355003 -6.71096 +v 123.563004 124.338997 -4.81096 +v 2.376 125.514 -7.35396 +v 2.408 124.360001 -7.27296 +v 32.605 125.528999 -5.711958 +v 4.32 124.346001 -5.72196 +v 4.528 125.528999 -5.70796 +v 32.720001 124.346001 -5.71696 +v 72.738998 124.376999 -9.19196 +v 72.588997 125.498001 -9.18496 +v 99.053001 125.498001 -9.20496 +v 99.382004 124.376999 -9.23996 +v 101.240997 124.390999 -10.85396 +v 101.291 125.482002 -11.05596 +v 101.063004 125.487 -10.47296 +v 100.462997 125.494003 -9.74696 +v 99.639999 125.497002 -9.31096 +v 2.748 125.519997 -6.68796 +v 3.209 125.524002 -6.21496 +v 3.915 125.528 -5.830958 +v 100.870003 124.385002 -10.18896 +v 100.307999 124.379997 -9.62996 +v 2.954 124.352997 -6.42896 +v 3.6 124.348999 -5.97196 +v 79.935997 120.787003 -5.07296 +v 91.109001 120.781998 -5.06596 +v 81.763 120.241997 -20.299961 +v 89.200996 120.246002 -20.299961 +v 89.580002 119.838997 -20.299961 +v 79.544998 120.407997 -5.00696 +v 81.457001 119.991997 -20.299961 +v 122.250999 141.701004 24.888046 +v 122.281998 141.960999 25.500046 +v 122.264999 142.300003 26.063046 +v 122.230003 142.882996 26.703045 +v 122.318001 143.270004 26.976046 +v 122.206001 143.998993 27.398046 +v 122.219002 144.639999 27.592045 +v 123.334999 137.154999 -4.600955 +v 123.383003 137.636993 -4.476955 +v 123.318001 138.345001 -4.162956 +v 123.292999 139.158997 -3.594954 +v 123.356003 139.667007 -3.085954 +v 123.322998 139.960007 -2.681954 +v 123.190002 140.326004 -1.985954 +v 123.294998 140.570007 -1.313954 +v 122.508003 145.188004 27.487045 +v 122.470001 148.5 27.550049 +v 122.365997 145.229996 27.620047 +v 122.597 141.886002 24.815046 +v 122.632004 141.764008 24.118046 +v 122.416 141.746994 24.870047 +v 122.475998 142.141998 25.642046 +v 122.580002 142.776993 26.258045 +v 122.444 142.632996 26.330046 +v 122.536003 143.326996 26.794046 +v 122.405998 143.669998 27.150045 +v 122.544998 144.089996 27.182045 +v 122.417 144.447998 27.454046 +v 123.346001 140.729996 -0.721954 +v 123.474998 140.854996 -0.685954 +v 123.602997 137.451996 -4.689956 +v 123.629997 136.565002 -4.879956 +v 123.491997 136.537994 -4.756956 +v 123.654999 138.464005 -4.388956 +v 123.513 138.393005 -4.236956 +v 123.598 139.093994 -3.882954 +v 123.458 139.207993 -3.642954 +v 123.585999 139.654007 -3.392954 +v 123.545998 140.253998 -2.546954 +v 123.357002 140.371002 -2.002954 +v 123.514 140.669998 -1.611954 +v 79.820999 120.93 -4.819962 +v 91.129997 120.93 -4.825962 +v 79.872002 121.050003 -4.74596 +v 79.842003 120.817001 -4.950962 +v 79.765999 120.714996 -5.081961 +v 79.652 120.782997 -4.820961 +v 79.624001 120.592003 -5.029962 +v 91.309998 120.685997 -4.989961 +v 91.422997 120.503998 -5.01496 +v 89.462997 120.098999 -20.299961 +v -123.406998 137.292999 -2.609955 +v 123.475998 137.548996 -2.531955 +v -123.377998 137.884003 -2.359955 +v 123.393997 137.895996 -2.344956 +v 123.360001 138.171997 -2.101956 +v -123.351997 138.263 -1.995955 +v 123.342003 138.382996 -1.801955 +v -123.322998 138.485992 -1.581954 +v 123.305 138.565002 -1.354954 +v -123.417999 138.613998 -1.161955 +v 122.32 139.638 24.894045 +v -122.375 139.753006 25.500046 +v 122.377998 139.809998 25.719046 +v 122.473999 139.985001 26.297047 +v -122.440002 140.089996 26.590046 +v 122.335999 140.207993 26.866045 +v -122.347 140.496002 27.406046 +v 122.311996 140.570007 27.523046 +v -122.449997 141.052002 28.113047 +v 122.470001 140.919998 27.965046 +v 122.327003 141.501999 28.528046 +v -122.436996 141.598007 28.585045 +v -122.43 142.042007 28.870047 +v 122.317001 142.143005 28.932045 +v -122.295998 142.669998 29.180046 +v 122.396004 142.835007 29.236046 +v -122.292999 143.871994 29.527046 +v 122.311996 143.917007 29.530046 +v 125.622002 137.393005 -4.406956 +v 125.427002 137.003998 -3.977956 +v 125.137001 136.973007 -3.553955 +v 124.777 136.934006 -3.209956 +v 124.342003 136.876999 -2.941956 +v 123.860001 136.858002 -2.762956 +v 125.593002 139.054001 -3.717954 +v 125.413002 137.889999 -3.768956 +v 125.412003 138.617996 -3.447954 +v 125.138 137.759995 -3.388956 +v 125.125999 138.317993 -3.129954 +v 125.393997 139.192001 -2.948954 +v 124.769997 137.641998 -3.051956 +v 125.616997 140.315002 -2.611954 +v 125.443001 139.600006 -2.604954 +v 124.658997 138.082993 -2.757955 +v 125.110001 138.776993 -2.764954 +v 124.336998 137.550003 -2.793955 +v 124.741997 138.514999 -2.516954 +v 123.858002 137.485992 -2.624956 +v 124.112 137.908005 -2.526956 +v 125.089996 139.121002 -2.322954 +v 124.306999 138.313004 -2.326954 +v 123.833 138.024002 -2.340955 +v 125.457001 140.063004 -1.875954 +v 124.720001 138.809006 -2.139954 +v 125.569 140.673004 -1.427954 +v 123.818001 138.266006 -2.106956 +v 125.204002 139.613007 -1.706954 +v 124.283997 138.565994 -2.000954 +v 124.891998 139.190002 -1.739954 +v 123.795998 138.455994 -1.823954 +v 124.643997 139.048004 -1.519954 +v 124.266998 138.759995 -1.597954 +v 123.767998 138.639999 -1.365955 +v 125.024002 139.556 -0.995954 +v 125.360001 140.106003 -0.865954 +v 124.192001 138.897003 -0.969954 +v 124.795998 139.341995 -0.767954 +v 124.452003 139.065002 -0.780954 +v 123.737999 138.744003 -0.772954 +v 122.866997 139.615005 23.863047 +v 124.627998 141.354004 23.900045 +v 123.015999 139.699997 24.424046 +v 124.434998 140.889999 24.049046 +v 123.582001 139.955002 24.133045 +v 124.080002 140.376999 24.136045 +v 124.581001 141.660004 25.565046 +v 124.487 141.335007 25.508045 +v 124.266998 140.867996 25.384047 +v 123.924004 140.403 25.209045 +v 123.403999 140.014999 25.278046 +v 122.820999 139.841003 25.531046 +v 123.855003 140.550003 25.988047 +v 123.495003 140.259003 25.960045 +v 123.042999 140.110992 26.220045 +v 124.216003 141.233002 26.512045 +v 124.593002 142.360001 26.581045 +v 124.471001 142.132996 26.953045 +v 123.93 141.020004 26.837046 +v 124.294998 141.608002 26.896046 +v 123.68 140.764999 26.840046 +v 123.260002 140.552994 27.006046 +v 122.785004 140.388 27.078045 +v 124.482002 142.944 27.495047 +v 123.862 141.382004 27.468046 +v 124.199997 142.033997 27.552046 +v 123.473999 141.166 27.683046 +v 124.555 145.785995 27.699045 +v 123.016998 140.990997 27.830046 +v 123.809998 141.759995 27.920046 +v 124.419998 144.115005 28.012045 +v 124.190002 142.727005 28.020046 +v 124.401001 145.710007 28.185045 +v 123.860001 142.376999 28.271046 +v 123.237999 141.654007 28.326046 +v 124.177002 143.744003 28.382046 +v 122.764 141.429993 28.370047 +v 123.364998 142.216003 28.614046 +v 124.150002 145.039001 28.616045 +v 123.855003 142.970993 28.543045 +v 123.849998 143.649994 28.760046 +v 122.755997 142.031998 28.792046 +v 123.445999 143.139999 28.952045 +v 123.723999 144.447006 29.029045 +v 123.739998 145.466995 29.088045 +v 122.988998 142.759003 29.050045 +v 122.986 143.380005 29.251045 +v 123.214996 144.322998 29.342045 +v 122.720001 143.559998 29.386045 +v 123.234001 145.494995 29.424046 +v 122.737999 144.520004 29.543045 +v 122.75 145.494003 29.610046 +v 124.111 148.5 28.710049 +v 123.347 148.5 29.387049 +v -125.540001 136.975006 -4.216956 +v -125.294998 136.955002 -3.765956 +v -124.970001 136.945007 -3.379956 +v -124.569 136.906006 -3.065956 +v -124.106003 136.697998 -2.846956 +v -125.620003 138.139999 -4.216956 +v -125.415001 137.811996 -3.798956 +v -125.454002 139.033997 -3.244954 +v -125.407997 138.466003 -3.519954 +v -125.136002 137.742996 -3.390956 +v -125.126999 138.276993 -3.151956 +v -124.768997 137.630005 -3.053955 +v -125.483002 139.647003 -2.730954 +v -125.031998 138.654007 -2.743954 +v -124.758003 138.091995 -2.845956 +v -124.339996 137.537003 -2.799956 +v -123.946999 137.298996 -2.703956 +v -124.323997 137.945999 -2.611956 +v -125.235001 139.274994 -2.442954 +v -124.533997 138.367996 -2.451954 +v -123.852997 137.755997 -2.511955 +v -124.827003 138.856003 -2.216954 +v -125.470001 140.298004 -1.386954 +v -123.982002 138.123001 -2.309956 +v -125.350998 139.772003 -1.954954 +v -124.288002 138.548996 -2.031954 +v -125.064003 139.363998 -1.807954 +v -123.82 138.283005 -2.089956 +v -124.699997 139.020996 -1.697954 +v -123.783997 138.537994 -1.663955 +v -124.193001 138.764999 -1.483954 +v -125.233002 139.841003 -1.030954 +v -124.862 139.380005 -0.979954 +v -124.475998 139.057999 -0.989954 +v -124.236 138.940002 -0.756954 +v -123.747002 138.748993 -0.755954 +v -124.612 141.388 24.329046 +v -122.879997 139.623993 23.953045 +v -124.424004 140.921997 24.422047 +v -123.369003 139.815994 23.960045 +v -124.138 140.490005 24.467045 +v -123.769997 140.125 24.480045 +v -123.325996 139.914993 24.923046 +v -122.839996 139.727997 24.933046 +v -124.489998 141.386002 25.594046 +v -124.258003 140.962997 25.718046 +v -123.931999 140.574997 25.815046 +v -123.524002 140.251007 25.883045 +v -123.059998 140.014999 25.905046 +v -122.690002 139.908997 25.920046 +v -124.553001 142.035004 26.446045 +v -124.452003 141.929001 26.820045 +v -124.227997 141.367996 26.722046 +v -123.910004 140.820007 26.487045 +v -123.5 140.518997 26.616045 +v -123.038002 140.294006 26.686047 +v -123.796997 141.029999 27.112045 +v -124.522003 142.863007 27.292046 +v -123.260002 140.735992 27.308046 +v -122.781998 140.574997 27.394045 +v -124.221001 141.862 27.349047 +v -124.327003 142.641998 27.717045 +v -123.879997 141.509995 27.582047 +v -124.500999 144.089996 27.780046 +v -123.470001 141.259995 27.788046 +v -123.963997 142.016006 27.926046 +v -123.012001 141.082993 27.930046 +v -124.337997 143.845993 28.147045 +v -123.959999 142.759003 28.352045 +v -123.466003 141.755997 28.243046 +v -124.392998 145.871994 28.207047 +v -123.004997 141.587997 28.402046 +v -124.160004 143.692993 28.400045 +v -123.568001 142.304993 28.510046 +v -124.182999 145.190002 28.576046 +v -123.834 143.593994 28.760046 +v -123.453003 142.727997 28.790047 +v -122.991997 142.143997 28.764046 +v -123.75 144.417007 28.997046 +v -123.373001 143.384995 29.072046 +v -123.924004 145.483002 28.915047 +v -122.849998 142.604996 29.043045 +v -123.519997 145.554001 29.258045 +v -122.735001 143.203995 29.286045 +v -123.221001 144.145996 29.312046 +v -123.217003 145.294006 29.426046 +v -122.733002 144.100006 29.490046 +v -122.794998 145.380005 29.597046 +v -124.303001 148.5 28.401049 +v -123.842003 148.5 29.00305 +v -123.223 148.5 29.44405 +v -124.750999 116.347 -5.899962 +v -123.918999 116.485001 -4.399962 +v -123.848999 116.489998 -5.899962 +v -124.839996 116.322998 -4.399962 +v -125.731003 115.981003 -5.899962 +v -125.814003 115.940002 -4.399962 +v -126.807999 115.273003 -5.899962 +v -126.686996 115.360001 -4.399962 +v -127.419998 114.613998 -4.399962 +v -127.811996 114.066002 -5.899962 +v -127.981003 113.731003 -4.399962 +v -128.322998 112.839996 -5.899962 +v -128.347 112.750999 -4.399962 +v -128.485001 111.918999 -5.899964 +v -128.490005 111.848999 -4.399964 +v -128.490005 -107.848999 -5.900036 +v -128.485001 -107.918999 -4.400036 +v -128.347 -108.750999 -5.900036 +v -128.322998 -108.839996 -4.400036 +v -127.981003 -109.731003 -5.900036 +v -127.811996 -110.066002 -4.400036 +v -127.419998 -110.613998 -5.900036 +v -126.807999 -111.273003 -4.400036 +v -126.686996 -111.360001 -5.900036 +v -125.814003 -111.940002 -5.900036 +v -125.731003 -111.981003 -4.400036 +v -124.841003 -112.322998 -5.900036 +v -124.751999 -112.347 -4.400036 +v -123.918999 -112.485001 -5.900036 +v -123.848999 -112.489998 -4.400036 +v 123.848999 -112.489998 -5.900036 +v 123.918999 -112.485001 -4.400036 +v 128.347 -108.750999 -4.400036 +v 128.322998 -108.839996 -5.900036 +v 128.485001 -107.918999 -5.900036 +v 128.490005 -107.848999 -4.400036 +v 127.981003 -109.731003 -4.400036 +v 127.811996 -110.066002 -5.900036 +v 127.419998 -110.613998 -4.400036 +v 126.807999 -111.273003 -5.900036 +v 126.686996 -111.360001 -4.400036 +v 125.814003 -111.940002 -4.400036 +v 125.732002 -111.981003 -5.900036 +v 124.841003 -112.322998 -4.400036 +v 124.751999 -112.347 -5.900036 +v 128.485001 111.918999 -4.399964 +v 128.490005 111.848999 -5.899964 +v 124.750999 116.347 -4.399962 +v 124.841003 116.322998 -5.899962 +v 123.918999 116.485001 -5.899962 +v 123.848999 116.489998 -4.399962 +v 125.731003 115.981003 -4.399962 +v 125.814003 115.940002 -5.899962 +v 126.807999 115.273003 -4.399962 +v 126.686996 115.360001 -5.899962 +v 127.419998 114.613998 -5.899962 +v 127.811996 114.066002 -4.399962 +v 127.981003 113.731003 -5.899962 +v 128.322998 112.839996 -4.399962 +v 128.347 112.750999 -5.899962 +v 122.5 148.5 -7.299952 +v 125.489998 148.5 -18.679951 +v 122.494003 148.5 -18.529951 +v 125.5 148.5 -7.299952 +v 120.811996 148.5 -20.287951 +v 120.779999 148.5 -23.297951 +v -121.112 148.5 -23.279951 +v -120.823997 148.5 -20.29195 +v 121.75 148.5 -23.14695 +v 122.731003 148.5 -22.780951 +v 121.667999 148.5 -19.956951 +v 123.613998 148.5 -22.21995 +v 124.361 148.5 -21.48595 +v 122.276001 148.5 -19.24795 +v 124.940002 148.5 -20.613951 +v 125.322998 148.5 -19.640951 +v -125.5 148.5 -7.299952 +v -122.470001 148.5 -18.74295 +v -125.492996 148.5 -18.626951 +v -122.5 148.5 -7.299952 +v -120.746002 -97.595001 -20.295031 +v 119.292 -98.823997 -20.30003 +v 119.418999 -98.242996 -20.30003 +v 119.897003 -97.739998 -20.30003 +v 120.500999 -97.597 -20.308031 +v -120.074997 -97.668999 -20.30003 +v 120.271004 -99.983002 -20.300034 +v 119.775002 -99.777 -20.300034 +v 119.415001 -99.332001 -20.30003 +v 131.0 -112.888 -20.296038 +v -119.684998 -97.912003 -20.30003 +v -119.415001 -98.267998 -20.30003 +v -119.292 -98.777 -20.30003 +v -119.393997 -99.287003 -20.30003 +v -119.737999 -99.745003 -20.300034 +v -131.0 -112.764999 -20.297039 +v -120.275002 -99.987999 -20.300034 +v -124.515999 -100.047997 -20.300034 +v -130.985992 -106.976997 -20.300034 +v 124.014 -100.013 -20.300034 +v 130.951996 -106.482002 -20.300034 +v 130.485001 -104.744003 -20.300034 +v 129.994995 -103.75 -20.300034 +v 125.375999 -100.228996 -20.300034 +v -126.255997 -100.514999 -20.300034 +v 126.550003 -100.648003 -20.300034 +v -127.25 -101.004997 -20.300034 +v 127.529999 -101.164001 -20.300034 +v -130.770996 -105.624001 -20.300034 +v -130.222 -104.153 -20.300034 +v -128.279999 -101.709 -20.300034 +v 129.292007 -102.720001 -20.300034 +v 128.518005 -101.926003 -20.300034 +v -129.380005 -102.828003 -20.300034 +v -119.799004 -97.815002 -23.30003 +v -120.257004 -97.617996 -23.30303 +v 120.304001 -97.610001 -23.302031 +v -119.781998 -99.778 -23.300034 +v -119.414001 -99.330002 -23.30003 +v -119.418999 -98.242996 -23.30003 +v -119.292 -98.823997 -23.30003 +v -131.0 -112.941002 -23.297039 +v -120.271004 -99.983002 -23.300034 +v 119.775002 -97.822998 -23.30003 +v 119.415001 -98.267998 -23.30003 +v 119.292 -98.777 -23.30003 +v 119.418999 -99.357002 -23.30003 +v 131.0 -112.912003 -23.295038 +v 119.799004 -99.785004 -23.300034 +v 120.275002 -99.987999 -23.300034 +v -124.014 -100.013 -23.300034 +v -130.951996 -106.482002 -23.300034 +v 124.515999 -100.047997 -23.300034 +v 130.535004 -104.874001 -23.300034 +v 130.968994 -106.629997 -23.300034 +v 129.994995 -103.75 -23.300034 +v -125.375999 -100.228996 -23.300034 +v 126.255997 -100.514999 -23.300034 +v -126.550003 -100.648003 -23.300034 +v -127.529999 -101.164001 -23.300034 +v 127.25 -101.004997 -23.300034 +v -130.485001 -104.744003 -23.300034 +v -129.994995 -103.75 -23.300034 +v 128.279999 -101.709 -23.300034 +v 129.380005 -102.828003 -23.300034 +v -128.518005 -101.926003 -23.300034 +v -129.292007 -102.720001 -23.300034 +v -121.480003 -97.599998 -23.22003 +v -122.731003 -97.599998 -22.78203 +v -121.485001 -97.599998 -20.05003 +v -123.613998 -97.599998 -22.22003 +v -122.038002 -97.599998 -19.600031 +v -124.361 -97.599998 -21.486031 +v -124.940002 -97.599998 -20.614031 +v -122.449997 -97.599998 -18.81403 +v -125.322998 -97.599998 -19.641031 +v -125.485001 -97.599998 -18.71903 +v -121.523003 148.5 -20.02795 +v -122.089996 148.5 -19.53495 +v -122.336998 148.5 -22.956951 +v -123.264999 148.5 -22.47295 +v -124.273003 148.5 -21.60795 +v -124.981003 148.5 -20.530951 +v -125.347 148.5 -19.550951 +v -122.5 -97.574997 -12.605032 +v -125.5 -97.388 -11.691032 +v -125.5 -97.582001 -12.798033 +v -122.5 -97.227997 -11.200032 +v -125.5 -96.927002 -10.523032 +v -122.5 -96.795998 -10.300033 +v -122.5 -96.303001 -9.56303 +v -125.5 -96.233002 -9.47603 +v -122.5 -95.424004 -8.66703 +v -125.5 -95.614998 -8.84103 +v -125.5 -94.824997 -8.232031 +v -122.5 -94.376999 -7.97303 +v -125.5 -93.699997 -7.67203 +v -122.5 -93.209 -7.51203 +v -125.5 -92.294998 -7.32503 +v -122.5 -92.101997 -7.31803 +v 121.333 -97.599998 -23.236031 +v 121.332001 -97.599998 -20.13603 +v 122.336998 -97.599998 -22.957031 +v 123.264999 -97.599998 -22.47303 +v 122.084999 -97.599998 -19.541031 +v 124.273003 -97.599998 -21.60803 +v 124.981003 -97.599998 -20.531031 +v 122.456001 -97.599998 -18.76803 +v 125.347 -97.599998 -19.552031 +v 125.486 -97.599998 -18.69203 +v 122.5 -92.294998 -7.32503 +v 125.5 -92.101997 -7.31803 +v 125.5 -97.574997 -12.605032 +v 122.5 -97.388 -11.691032 +v 122.5 -97.582001 -12.798033 +v 125.5 -97.227997 -11.200032 +v 122.5 -96.927002 -10.523032 +v 125.5 -96.795998 -10.300033 +v 125.5 -96.303001 -9.56303 +v 122.5 -96.233002 -9.47603 +v 125.5 -95.424004 -8.66703 +v 122.5 -95.614998 -8.84103 +v 122.5 -94.824997 -8.232031 +v 125.5 -94.376999 -7.97303 +v 122.5 -93.699997 -7.67203 +v 125.5 -93.209 -7.51203 +v 131.0 -114.25 -23.087038 +v 131.0 -113.900002 -20.052038 +v 131.0 -115.624001 -22.574038 +v 131.0 -114.816002 -19.578037 +v 131.0 -116.860001 -21.788038 +v 131.0 -117.905998 -20.761038 +v 131.0 -115.716003 -18.702038 +v 131.0 -118.714996 -19.540039 +v 131.0 -116.224998 -17.770039 +v 131.0 -119.252998 -18.178038 +v 131.0 -116.489998 -16.760038 +v 131.0 -119.489998 -16.806038 +v -131.0 -113.572998 -20.159039 +v -131.0 -114.375999 -23.053038 +v -131.0 -114.351997 -19.851038 +v -131.0 -115.347 -22.695038 +v -131.0 -116.372002 -22.142038 +v -131.0 -115.050003 -19.389038 +v -131.0 -117.183998 -21.502039 +v -131.0 -115.636002 -18.791039 +v -131.0 -117.987 -20.660038 +v -131.0 -116.084999 -18.085037 +v -131.0 -118.774002 -19.424038 +v -131.0 -116.377998 -17.300037 +v -131.0 -119.286003 -18.052038 +v -131.0 -116.496002 -16.551039 +v -131.0 -119.489998 -16.759039 +v 130.817001 -116.5 -13.300038 +v 130.960999 -119.5 -13.985038 +v 130.990005 -116.5 -14.382038 +v 130.587997 -119.5 -12.595038 +v 130.378006 -116.5 -12.122038 +v 130.195999 -119.5 -11.800038 +v 129.703003 -116.5 -11.063038 +v 129.632996 -119.5 -10.976038 +v 128.824005 -116.5 -10.167038 +v 129.014999 -119.5 -10.341038 +v 128.225006 -119.5 -9.732038 +v 128.0 -116.5 -9.604038 +v 127.205002 -116.5 -9.212038 +v 127.099998 -119.5 -9.172038 +v 125.814003 -116.5 -8.839038 +v 125.695 -119.5 -8.825038 +v 88.18 -119.5 -8.789038 +v 88.190002 -116.5 -8.792038 +v 87.376999 -119.5 -8.650038 +v 87.379997 -116.5 -8.646038 +v 84.047997 -116.5 -7.280038 +v 84.848 -119.5 -7.59904 +v 81.589996 -119.5 -6.468039 +v 79.865997 -116.5 -5.998038 +v 77.367996 -119.5 -5.45804 +v 75.602997 -116.5 -5.173038 +v 74.334 -119.5 -5.03004 +v 71.737 -116.5 -4.830038 +v 71.446999 -119.5 -4.82004 +v -71.737 -119.5 -4.830039 +v -71.446999 -116.5 -4.820038 +v -84.047997 -119.5 -7.28004 +v -84.848 -116.5 -7.599038 +v -87.376999 -116.5 -8.650038 +v -87.379997 -119.5 -8.646038 +v -81.589996 -116.5 -6.468038 +v -79.865997 -119.5 -5.99804 +v -77.367996 -116.5 -5.458038 +v -75.602997 -119.5 -5.173038 +v -74.334 -116.5 -5.030038 +v -88.190002 -119.5 -8.792038 +v -88.18 -116.5 -8.789038 +v -125.814003 -119.5 -8.839038 +v -125.695 -116.5 -8.825038 +v -130.990005 -119.5 -14.382038 +v -130.817001 -119.5 -13.300038 +v -130.960999 -116.5 -13.985038 +v -130.587997 -116.5 -12.595038 +v -130.378006 -119.5 -12.122038 +v -130.195999 -116.5 -11.800038 +v -129.703003 -119.5 -11.063038 +v -129.632996 -116.5 -10.976038 +v -128.824005 -119.5 -10.167038 +v -129.014999 -116.5 -10.341038 +v -128.225006 -116.5 -9.732038 +v -128.0 -119.5 -9.604038 +v -127.205002 -119.5 -9.212038 +v -127.099998 -116.5 -9.172038 +v 126.792999 116.0 -4.399962 +v 126.792999 -112.0 -4.400036 +v -126.792999 116.0 -4.399962 +v -126.792999 -112.0 -4.400036 +v -128.0 114.792999 -4.399962 +v 128.0 114.792999 -4.399962 +v 128.0 -110.792999 -4.400036 +v -128.0 -110.792999 -4.400036 +v -128.5 115.0 -3.899962 +v -127.0 116.5 -0.899962 +v -127.0 116.5 -3.899962 +v -128.5 115.0 -0.899962 +v -126.792999 116.0 -0.399962 +v -128.0 114.792999 -0.399962 +v 126.792999 116.0 -0.399962 +v 127.0 116.5 -0.899962 +v 127.0 116.5 -3.899962 +v -128.5 -111.0 -0.900036 +v -128.0 -110.792999 -0.400036 +v -128.5 -111.0 -3.900036 +v 128.5 115.0 -0.899962 +v 128.5 115.0 -3.899962 +v 128.0 114.792999 -0.399962 +v -127.0 -112.5 -3.900036 +v -127.0 -112.5 -0.900036 +v -126.792999 -112.0 -0.400036 +v 128.0 -110.792999 -0.400036 +v 128.5 -111.0 -0.900036 +v 128.5 -111.0 -3.900036 +v 127.0 -112.5 -0.900036 +v 126.792999 -112.0 -0.400036 +v 127.0 -112.5 -3.900036 +v -113.5 -104.949997 -5.898034 +v -113.5 -104.695999 -5.942034 +v -113.5 -104.925003 -6.290034 +v -98.519997 -103.555 -6.590034 +v -98.5 -104.752998 -5.916034 +v -98.511002 -103.795998 -6.913033 +v -98.5 -104.863998 -6.305034 +v -113.5 -112.575996 -5.856036 +v -113.5 -112.403999 -5.903036 +v -113.5 -112.401001 -6.305036 +v -113.5 -112.849998 -6.170038 +v -113.5 -112.735001 -5.680037 +v -113.5 -113.136002 -5.750038 +v -113.5 -113.120003 -0.120036 +v -113.5 -112.720001 -0.197036 +v -98.5 -112.518997 -5.886036 +v -98.5 -113.005997 -6.020038 +v -98.5 -112.584 -6.290036 +v -98.5 -112.718002 -5.720037 +v -98.5 -113.154999 -5.554037 +v -98.494003 -112.746002 -5.550037 +v -113.5 -112.834999 0.239964 +v -113.5 -112.424004 -0.024036 +v -113.5 -112.391998 0.382964 +v -113.5 -107.267998 -1.233036 +v -113.5 -107.278 -1.646036 +v -98.5 -113.078003 -0.050036 +v -98.5 -113.152 -0.380036 +v -98.499001 -112.757004 -0.373036 +v -98.5 -112.611 -0.094036 +v -98.5 -112.858002 0.223964 +v -98.5 -112.440002 0.379964 +v -98.5 -112.380997 -0.026036 +v -113.495003 -106.151001 -0.650034 +v -113.470001 -105.785004 -0.908034 +v -98.5 -107.289001 -1.238036 +v -98.5 -107.213997 -1.645036 +v -99.719002 -104.794998 -0.382034 +v -98.511002 -105.897003 -0.967034 +v -112.237 -104.789001 -0.378034 +v -99.129997 -105.010002 -0.496034 +v -98.693001 -105.438004 -0.723034 +v -112.752998 -104.947998 -0.463034 +v -113.196999 -105.291 -0.646034 +v -124.042 -112.379997 -5.900036 +v -120.282997 -104.935997 -5.900034 +v -122.105003 -108.303001 -5.900036 +v -123.649002 -109.099998 -5.900036 +v -124.345001 -108.883003 -5.900036 +v -122.518997 -108.775002 -5.900036 +v -124.863998 -108.353996 -5.900036 +v -126.720001 -104.940002 -5.900034 +v -123.083 -109.054001 -5.900036 +v -125.176003 -112.113998 -5.900036 +v -126.244003 -111.573997 -5.900036 +v -127.169998 -110.760002 -5.900036 +v -127.705002 -104.984001 -5.900034 +v -128.253998 -106.227997 -5.900034 +v -128.404999 -107.393997 -5.900036 +v -128.317001 -108.468002 -5.900036 +v -127.865997 -109.755997 -5.900036 +v -125.103996 -107.682999 -5.900036 +v -121.903999 -107.708 -5.900036 +v -121.981003 -106.940002 -5.900036 +v -125.025002 -106.984001 -5.900036 +v -124.744003 -106.486 -5.900034 +v -122.370003 -106.358002 -5.900034 +v -124.350998 -106.134003 -5.900034 +v -125.971001 -104.208 -5.900034 +v -121.110001 -104.152 -5.900034 +v -122.835999 -106.033997 -5.900034 +v -125.003998 -103.676003 -5.900033 +v -122.082001 -103.642998 -5.900033 +v -123.596001 -105.884003 -5.900034 +v -123.93 -103.410004 -5.900033 +v -122.890999 -103.440002 -5.900033 +v -113.495003 -103.661003 -6.529033 +v -99.763 -102.509003 -7.194033 +v -112.438004 -102.538002 -7.177034 +v -98.720001 -103.106003 -6.850034 +v -99.192001 -102.690002 -7.090034 +v -113.032997 -102.845001 -7.000034 +v -113.364998 -103.245003 -6.770034 +v -112.164001 -102.704002 -7.543034 +v -99.716003 -102.716003 -7.536033 +v -113.470001 -103.685997 -6.976034 +v -112.699997 -102.837997 -7.466033 +v -99.142998 -102.915001 -7.421034 +v -98.693001 -103.346001 -7.173034 +v -113.196999 -103.202003 -7.256034 +v -123.870003 -105.915001 -6.300034 +v -124.109001 -103.440002 -6.300034 +v -123.07 -103.410004 -6.300034 +v -123.083 -105.945999 -6.300034 +v -124.917999 -103.642998 -6.300034 +v -121.996002 -103.676003 -6.300034 +v -125.889999 -104.152 -6.300034 +v -122.400002 -106.310997 -6.300034 +v -121.028999 -104.208 -6.300034 +v -124.559998 -106.289001 -6.300034 +v -126.716003 -104.934998 -6.300034 +v -120.279999 -104.940002 -6.300034 +v -124.985001 -106.874001 -6.300035 +v -121.947998 -107.055 -6.300035 +v -122.134003 -108.350998 -6.300035 +v -121.913002 -107.764 -6.300035 +v -125.111 -107.617996 -6.300035 +v -124.894997 -108.303001 -6.300035 +v -124.162003 -112.365997 -6.300036 +v -125.265999 -112.080002 -6.300036 +v -126.351997 -111.499001 -6.300036 +v -127.233002 -110.688004 -6.300036 +v -127.693001 -104.973 -6.300034 +v -128.214996 -106.091003 -6.300034 +v -128.403 -107.336998 -6.300035 +v -128.350006 -108.257004 -6.300035 +v -127.985001 -109.527 -6.300035 +v -124.475998 -108.781998 -6.300035 +v -122.564003 -108.808998 -6.300035 +v -123.976997 -109.033997 -6.300035 +v -123.273003 -109.102997 -6.300035 +v -99.763 -104.976997 -0.025034 +v -112.281998 -104.983002 -0.029034 +v -98.519997 -106.042999 -0.592034 +v -98.720001 -105.584999 -0.349034 +v -99.190002 -105.163002 -0.124034 +v -113.307999 -105.610001 -0.362034 +v -112.797997 -105.160004 -0.123034 +v -98.325996 -113.190002 -5.550037 +v -98.125999 -112.839996 -5.550037 +v -98.346001 -113.18 -0.382036 +v -98.123001 -112.837997 -0.382036 +v -94.418999 -117.086998 -0.393038 +v -94.102997 -116.836998 -0.401038 +v -94.042 -116.898003 -5.523038 +v -94.385002 -117.120003 -5.530038 +v -93.248001 -117.691002 -1.644038 +v -93.278 -117.661003 -4.526038 +v -93.593002 -117.346001 -5.182038 +v -93.684998 -117.253998 -0.646038 +v -93.385002 -117.554001 -1.110038 +v -93.530998 -117.973999 -4.287038 +v -93.983002 -117.522003 -5.300038 +v -93.660004 -117.845001 -4.810038 +v -93.556 -117.949997 -1.440038 +v -93.806999 -117.697998 -0.846038 +v -94.095001 -117.410004 -0.544038 +v 113.5 -104.696999 -5.940034 +v 113.5 -104.949997 -5.899034 +v 113.5 -104.93 -6.285034 +v 98.5 -104.865997 -6.306034 +v 98.511002 -103.596001 -6.567034 +v 98.554001 -103.585999 -7.034034 +v 98.5 -104.754997 -5.918034 +v 113.5 -112.419998 -5.915036 +v 113.5 -112.814003 -6.190038 +v 113.5 -112.403999 -6.304036 +v 113.5 -112.732002 -5.691038 +v 113.5 -113.123001 -5.800037 +v 113.5 -112.735001 -0.253036 +v 113.5 -113.129997 -0.155036 +v 98.5 -112.702003 -5.747037 +v 98.5 -112.486 -5.895036 +v 98.5 -112.621002 -6.280036 +v 98.5 -113.033997 -5.981038 +v 98.5 -113.152 -5.552038 +v 98.487 -112.737999 -5.550037 +v 113.5 -112.858002 0.223964 +v 113.5 -112.486 -0.020036 +v 113.5 -112.440002 0.379964 +v 113.5 -107.288002 -1.237036 +v 113.5 -107.222 -1.645036 +v 98.5 -113.154999 -0.378036 +v 98.5 -112.723 -0.227036 +v 98.5 -112.75 -0.382036 +v 98.5 -113.067001 -0.028036 +v 98.5 -112.834999 0.239964 +v 98.5 -112.486 -0.027036 +v 98.5 -112.391998 0.382964 +v 113.495003 -105.962997 -1.003034 +v 113.483002 -106.059998 -0.600034 +v 98.5 -107.287003 -1.231035 +v 98.5 -107.120003 -1.607034 +v 98.5 -107.443001 -1.620036 +v 98.519997 -105.849998 -0.942034 +v 99.763 -104.789001 -0.378034 +v 112.280998 -104.794998 -0.382034 +v 113.309998 -105.426003 -0.717034 +v 98.748001 -105.347 -0.675034 +v 99.247002 -104.947998 -0.463034 +v 112.797997 -104.972 -0.476034 +v 120.279999 -104.940002 -5.900034 +v 124.162003 -112.365997 -5.900036 +v 124.481003 -108.775002 -5.900036 +v 123.778 -109.098 -5.900036 +v 122.096001 -108.292999 -5.900036 +v 126.709999 -104.933998 -5.900034 +v 124.894997 -108.303001 -5.900036 +v 123.056 -109.042999 -5.900036 +v 122.568001 -108.813004 -5.900036 +v 125.265999 -112.080002 -5.900036 +v 126.351997 -111.499001 -5.900036 +v 127.236 -110.684998 -5.900036 +v 127.669998 -104.966003 -5.900034 +v 128.235992 -108.790001 -5.900036 +v 128.410995 -107.57 -5.900036 +v 128.279007 -106.375999 -5.900034 +v 127.985001 -105.510002 -5.900034 +v 127.835999 -109.806 -5.900036 +v 125.096001 -107.708 -5.900036 +v 121.902 -107.666 -5.900036 +v 121.940002 -107.110001 -5.900036 +v 125.019997 -106.944 -5.900036 +v 122.160004 -106.614998 -5.900034 +v 124.629997 -106.358002 -5.900034 +v 122.610001 -106.152 -5.900034 +v 121.028999 -104.208 -5.900034 +v 124.164001 -106.033997 -5.900034 +v 121.996002 -103.676003 -5.900033 +v 123.376999 -105.883003 -5.900034 +v 126.010002 -104.226997 -5.900034 +v 124.917 -103.642998 -5.900033 +v 124.109001 -103.440002 -5.900033 +v 123.07 -103.410004 -5.900033 +v 112.237999 -102.509003 -7.194033 +v 99.737 -102.514 -7.191034 +v 98.694 -103.139999 -6.830034 +v 113.480003 -103.553001 -6.591033 +v 113.246002 -103.052002 -6.880033 +v 99.156998 -102.709999 -7.077034 +v 112.752998 -102.665001 -7.104033 +v 99.610001 -102.725998 -7.530034 +v 112.280998 -102.716003 -7.537034 +v 113.488998 -103.793999 -6.914034 +v 113.279999 -103.296997 -7.201034 +v 112.797997 -102.889 -7.436034 +v 99.001999 -103.014999 -7.364034 +v 123.607002 -105.894997 -6.300034 +v 122.890999 -103.440002 -6.300034 +v 123.93 -103.410004 -6.300034 +v 122.917999 -105.996002 -6.300034 +v 122.082001 -103.642998 -6.300034 +v 124.342003 -106.116997 -6.300034 +v 125.003998 -103.676003 -6.300034 +v 121.110001 -104.152 -6.300034 +v 125.940002 -104.185997 -6.300034 +v 122.370003 -106.358002 -6.300034 +v 120.285004 -104.933998 -6.300034 +v 126.720001 -104.940002 -6.300034 +v 124.839996 -106.614998 -6.300034 +v 125.063004 -107.932999 -6.300035 +v 125.067001 -107.134003 -6.300035 +v 124.043999 -112.379997 -6.300036 +v 122.046997 -106.811996 -6.300034 +v 121.902 -107.334 -6.300035 +v 121.957001 -107.977997 -6.300035 +v 125.176003 -112.113998 -6.300036 +v 126.244003 -111.573997 -6.300036 +v 127.171997 -110.758003 -6.300036 +v 127.685997 -104.976997 -6.300034 +v 128.0 -105.543999 -6.300034 +v 128.300003 -106.471001 -6.300034 +v 128.408005 -107.702003 -6.300035 +v 128.181 -108.991997 -6.300035 +v 122.285004 -108.556 -6.300035 +v 124.672997 -108.600998 -6.300035 +v 122.847 -108.973999 -6.300035 +v 124.162003 -108.966003 -6.300035 +v 123.550003 -109.108002 -6.300035 +v 127.744003 -109.961998 -6.300036 +v 98.517998 -106.014999 -0.577034 +v 112.237999 -104.975998 -0.025034 +v 99.719002 -104.983002 -0.029034 +v 113.245003 -105.529999 -0.320034 +v 98.769997 -105.518997 -0.314034 +v 112.752998 -105.136002 -0.110034 +v 99.202003 -105.160004 -0.123034 +v 98.334999 -113.182999 -5.550037 +v 98.061996 -112.884003 -5.550037 +v 98.184998 -112.804001 -0.382036 +v 98.325996 -113.190002 -0.382036 +v 94.136002 -116.804001 -0.393038 +v 94.383003 -117.122002 -0.401038 +v 94.323997 -117.18 -5.523038 +v 94.101997 -116.836998 -5.530038 +v 93.253998 -117.684998 -4.364038 +v 93.431 -117.508003 -4.925038 +v 93.736 -117.203003 -5.330038 +v 93.264 -117.676003 -1.518038 +v 93.444 -117.496002 -0.982038 +v 93.763 -117.176003 -0.576038 +v 93.528999 -117.976997 -4.225038 +v 93.625 -117.879997 -4.715038 +v 93.879997 -117.624001 -5.185038 +v 93.537003 -117.968002 -1.580038 +v 93.989998 -117.514999 -0.620038 +v 93.695 -117.809998 -1.052038 +v -92.472 107.429001 -5.899964 +v -94.633003 107.722 -5.899964 +v -93.457001 107.407997 -5.899964 +v -116.421997 107.690002 -5.899964 +v -118.682999 107.450996 -5.899964 +v -117.723 107.391998 -5.899964 +v -91.678001 107.610001 -5.899964 +v -119.602997 107.712997 -5.899964 +v -90.765999 108.051003 -5.899964 +v -88.072998 110.981003 -5.899964 +v -95.563004 108.288002 -5.899964 +v -89.880997 108.817001 -5.899964 +v -121.262001 108.936996 -5.899964 +v -120.566002 108.291 -5.899964 +v -122.93 110.964996 -5.899964 +v -115.358002 108.351997 -5.899964 +v -96.260002 108.936996 -5.899964 +v -114.685997 108.957001 -5.899964 +v -92.376999 110.016998 -5.899964 +v -116.717003 110.515999 -5.899964 +v -117.292999 110.052002 -5.899964 +v -117.973 109.891998 -5.899964 +v -118.636002 110.019997 -5.899964 +v -116.454002 111.07 -5.899964 +v -89.583 108.977997 -5.899964 +v -116.394997 111.606003 -5.899964 +v -92.973 109.891998 -5.899964 +v -103.767998 110.970001 -5.890964 +v -88.615997 109.230003 -5.899964 +v -88.274002 110.005997 -5.899964 +v -89.008003 109.002998 -5.899964 +v -98.0 108.987 -5.899964 +v -103.884003 110.655998 -5.886964 +v -104.265999 110.356003 -5.887964 +v -113.0 108.983002 -5.895964 +v -106.771004 110.365997 -5.885964 +v -122.699997 109.925003 -5.899964 +v -121.959999 108.995003 -5.899964 +v -122.352997 109.195999 -5.899964 +v -93.636002 110.019997 -5.899964 +v -122.779999 111.516998 -5.899964 +v -91.867996 110.357002 -5.899964 +v -94.156998 110.388 -5.899964 +v -119.156998 110.388 -5.899964 +v -107.049004 110.566002 -5.887964 +v -88.224998 111.582001 -5.899964 +v -91.525002 110.851997 -5.899964 +v -94.452003 110.806999 -5.899964 +v -119.482002 110.865997 -5.899964 +v -107.253998 110.958 -5.895964 +v -117.217003 112.912003 -5.899962 +v -116.589996 112.297997 -5.899964 +v -117.943001 113.115997 -5.899962 +v -91.382004 111.523003 -5.899964 +v -94.611 111.461998 -5.899964 +v -119.610001 111.556 -5.899964 +v -103.769997 112.022003 -5.892964 +v -107.224998 111.987999 -5.881964 +v -91.589996 112.297997 -5.899964 +v -119.436996 112.227997 -5.899964 +v -122.916 111.991997 -5.899964 +v -94.452003 112.203003 -5.899964 +v -92.292 112.959999 -5.899962 +v -119.015999 112.747002 -5.899962 +v -118.545998 113.010002 -5.899962 +v -88.064003 112.029999 -5.899964 +v -120.574997 115.734001 -5.899962 +v -121.563004 114.961998 -5.899962 +v -122.833 112.623001 -5.899964 +v -113.0 116.470001 -5.904962 +v -118.512001 116.43 -5.899962 +v -119.653999 116.178001 -5.899962 +v -89.626999 115.139999 -5.899962 +v -90.694 115.900002 -5.899962 +v -94.015999 112.747002 -5.899962 +v -93.545998 113.010002 -5.899962 +v -91.706001 116.282997 -5.899962 +v -92.574997 116.439003 -5.899962 +v -103.906998 112.364998 -5.886964 +v -107.036003 112.458 -5.886964 +v -88.303001 113.080002 -5.899962 +v -106.681999 112.654999 -5.889964 +v -104.220001 112.636002 -5.889964 +v -98.0 116.449997 -5.899962 +v -122.418999 113.763 -5.899962 +v -88.769997 114.098 -5.899962 +v -93.029999 113.109001 -5.899962 +v -88.352997 113.245003 -6.249962 +v -88.070999 112.024002 -6.249964 +v -88.870003 114.237999 -6.249962 +v -89.526001 115.042999 -6.249962 +v -90.425003 115.734001 -6.249962 +v -91.346001 116.178001 -6.249962 +v -92.487999 116.43 -6.249962 +v -88.300003 109.925003 -6.249964 +v -88.647003 109.195999 -6.249964 +v -88.066002 110.978996 -6.249964 +v -98.0 111.285004 -1.658964 +v -98.009003 109.485001 -0.360964 +v -98.009003 109.344002 -0.682964 +v -98.0 111.330002 -1.305964 +v -98.0 116.667999 -0.113962 +v -98.0 116.501999 0.318038 +v -98.0 116.445999 -0.036962 +v -98.0 117.0 0.068038 +v -98.0 116.805 -0.382962 +v -97.991997 117.147003 -0.392962 +v -98.0 116.677002 -6.219962 +v -98.0 116.449997 -6.249962 +v -98.0 116.627998 -5.859962 +v -98.0 117.038002 -5.959962 +v -98.0 116.805 -5.589962 +v -97.988998 117.141998 -5.551962 +v -98.0 108.964996 -6.241964 +v -98.0 108.732002 -5.942965 +v -113.0 108.967003 -6.241964 +v -98.553001 107.589996 -7.003965 +v -112.422997 107.586998 -7.004964 +v -98.025002 108.026001 -6.750964 +v -98.225998 107.753998 -6.907964 +v -112.991997 108.093002 -6.712965 +v -112.801003 107.766998 -6.899964 +v -94.578003 107.690002 -6.249964 +v -92.072998 107.490997 -6.249964 +v -93.277 107.391998 -6.249964 +v -119.566002 107.688004 -6.249964 +v -117.306 107.454002 -6.249964 +v -118.309998 107.400002 -6.249964 +v -116.366997 107.722 -6.249964 +v -91.126999 107.848 -6.249964 +v -90.436996 108.288002 -6.249964 +v -95.641998 108.351997 -6.249964 +v -88.186996 111.260002 -6.249964 +v -89.737999 108.936996 -6.249964 +v -120.641998 108.351997 -6.249964 +v -121.307999 108.958 -6.249964 +v -122.929001 110.977997 -6.249964 +v -115.434998 108.290001 -6.249964 +v -122.795998 111.345001 -6.249964 +v -96.129997 108.835999 -6.249964 +v -114.891998 108.816002 -6.249964 +v -92.292 110.042 -6.249964 +v -94.083 110.306 -6.249964 +v -93.529999 109.985001 -6.249964 +v -93.027 109.891998 -6.249964 +v -118.707001 110.052002 -6.249964 +v -94.473999 110.857002 -6.249964 +v -94.611 111.540001 -6.249964 +v -114.621002 108.966003 -6.249964 +v -96.413002 108.975998 -6.249964 +v -104.237999 110.403999 -6.241964 +v -106.754997 110.442001 -6.233964 +v -118.027 109.891998 -6.249964 +v -89.040001 108.995003 -6.249964 +v -107.156998 110.736 -6.245964 +v -121.991997 109.002998 -6.249964 +v -122.725998 110.005997 -6.249964 +v -122.384003 109.230003 -6.249964 +v -117.363998 110.019997 -6.249964 +v -116.843002 110.388 -6.249964 +v -119.282997 110.515999 -6.249964 +v -91.654999 110.608002 -6.249964 +v -103.870003 110.726997 -6.241964 +v -116.517998 110.865997 -6.249964 +v -106.903999 112.594002 -6.246964 +v -107.127998 112.084 -6.231964 +v -119.600998 111.253998 -6.249964 +v -91.378998 111.420998 -6.249964 +v -116.391998 111.550003 -6.249964 +v -103.858002 112.263 -6.244964 +v -88.206001 111.620003 -6.249964 +v -122.813004 111.741997 -6.249964 +v -91.526001 112.150002 -6.249964 +v -118.519997 113.018997 -6.249962 +v -119.089996 112.699997 -6.249962 +v -119.514999 112.045998 -6.249964 +v -104.220001 112.581001 -6.239964 +v -91.830002 112.599998 -6.249964 +v -113.0 116.454002 -6.249962 +v -94.485001 112.112 -6.249964 +v -116.527 112.152 -6.249964 +v -92.337997 112.972 -6.249962 +v -121.373001 115.139999 -6.249962 +v -120.306 115.900002 -6.249962 +v -122.927002 112.002998 -6.249964 +v -122.172997 114.181999 -6.249962 +v -119.293999 116.282997 -6.249962 +v -118.425003 116.439003 -6.249962 +v -94.197998 112.573997 -6.249964 +v -122.699997 113.098 -6.249962 +v -116.830002 112.599998 -6.249964 +v -93.708 112.945 -6.249962 +v -117.337997 112.972 -6.249962 +v -93.056999 113.115997 -6.249962 +v -117.970001 113.109001 -6.249962 +v -113.0 116.760002 -6.183962 +v -113.0 117.041 -5.942962 +v -113.008003 117.147003 -5.551962 +v -113.011002 117.141998 -0.392962 +v -113.0 116.672997 0.278038 +v -113.0 116.339996 0.302038 +v -113.0 117.038002 0.015038 +v -113.0 111.320999 -1.299964 +v -112.379997 108.968002 -0.092964 +v -98.474998 108.996002 -0.106964 +v -112.983002 109.462997 -0.349964 +v -112.745003 109.108002 -0.165964 +v -98.163002 109.205002 -0.215964 +v -112.509003 108.828003 -0.414964 +v -98.518997 108.82 -0.409964 +v -113.0 111.295998 -1.667964 +v -112.990997 109.330002 -0.674964 +v -98.144997 109.057999 -0.533964 +v -112.845001 109.052002 -0.529964 +v -113.0 116.467003 -0.037962 +v -113.0 116.730003 -0.165962 +v -113.0 116.800003 -0.391962 +v -113.000999 116.797997 -5.549962 +v -113.0 116.766998 -5.722962 +v -113.0 108.716003 -5.951964 +v -98.014999 107.879997 -6.429965 +v -98.519997 107.421997 -6.695964 +v -112.376999 107.404999 -6.705965 +v -98.206001 107.596001 -6.594965 +v -112.984001 107.889999 -6.424965 +v -112.751999 107.551003 -6.619964 +v -97.744003 116.844002 -0.394962 +v -97.758003 116.838997 -5.549962 +v -96.480003 117.57 -0.409962 +v -96.556999 117.93 -0.439962 +v -96.649002 117.875999 -5.533962 +v -96.489998 117.563004 -5.533962 +v -96.005997 117.843002 -4.929962 +v -96.021004 117.834 -0.913962 +v -96.195 117.734001 -0.599962 +v -96.156998 117.755997 -5.313962 +v -96.199997 118.135002 -0.874962 +v -96.189003 118.141998 -4.985962 +v -96.337997 118.055 -5.309962 +v -113.241997 116.838997 -0.394962 +v -113.255997 116.844002 -5.549962 +v -114.345001 117.873001 -0.409962 +v -114.550003 117.586998 -0.419962 +v -114.496002 117.555 -5.539962 +v -114.411003 117.910004 -5.515962 +v -114.987 117.838997 -0.946962 +v -114.982002 117.835999 -5.015962 +v -114.821999 117.744003 -0.620962 +v -114.796997 117.728996 -5.354962 +v -114.817001 118.146004 -4.961962 +v -114.804001 118.137001 -0.913962 +v -114.684998 118.069 -5.272962 +v -114.629997 118.037003 -0.600962 +v -106.503998 112.065002 -5.757964 +v -106.684998 112.454002 -6.183964 +v -104.480003 112.067001 -5.759964 +v -104.414001 112.414001 -6.139964 +v -106.690002 110.612 -6.131964 +v -106.482002 110.938004 -5.749964 +v -104.342003 110.556999 -6.171964 +v -104.492996 110.933998 -5.759964 +v -106.648003 111.084 -5.728964 +v -106.648003 111.905998 -5.723964 +v -106.477997 111.120003 -5.663964 +v -106.487 111.903 -5.669964 +v -106.788002 111.172997 -5.829964 +v -106.769997 111.850998 -5.812964 +v -106.924004 111.043999 -6.072964 +v -106.935997 111.983002 -6.093964 +v -106.873001 112.330002 -6.183964 +v -106.897003 110.765999 -6.152964 +v -104.519997 111.887001 -5.664964 +v -104.349998 111.098 -5.724964 +v -104.515999 111.099998 -5.669964 +v -104.343002 111.889999 -5.727964 +v -104.230003 111.828003 -5.807964 +v -104.230003 111.144997 -5.815964 +v -104.039001 110.983002 -6.129964 +v -104.074997 111.900002 -6.067964 +v -104.068001 112.164001 -6.150964 +v -104.206001 112.367996 -6.162964 +v -104.132004 110.706001 -6.156964 +v -107.098999 111.0 -6.212964 +v -103.914001 111.959999 -6.203964 +v -103.933998 111.046997 -6.192964 +v -106.580002 112.237 -5.449964 +v -104.518997 112.293999 -5.481964 +v -104.480003 111.970001 -5.322964 +v -106.569 111.870003 -5.315964 +v -104.435997 111.112 -5.316964 +v -106.589996 111.138 -5.315964 +v -104.473 110.699997 -5.495964 +v -106.513 110.678001 -5.511964 +v -106.943001 111.905998 -5.490964 +v -106.832001 111.129997 -5.420964 +v -107.040001 111.097 -5.589964 +v -107.183998 110.896004 -5.858964 +v -106.825996 112.077003 -5.471964 +v -106.452003 112.083 -5.359964 +v -106.566002 110.942001 -5.358964 +v -106.785004 110.866997 -5.471964 +v -104.473999 110.902 -5.370964 +v -104.109001 111.138 -5.449964 +v -104.241997 111.927002 -5.386964 +v -103.980003 111.891998 -5.562964 +v -103.898003 111.156998 -5.667964 +v -104.25 112.156998 -5.466964 +v -104.239998 110.857002 -5.467964 +v -104.019997 110.939003 -5.589964 +v 117.366997 106.722 -4.899966 +v 118.311996 106.453003 -4.899966 +v 119.277 106.393997 -4.899966 +v 95.566002 106.688004 -4.899966 +v 93.306 106.454002 -4.899966 +v 94.309998 106.400002 -4.899966 +v 120.321999 106.610001 -4.899966 +v 92.366997 106.722 -4.899966 +v 121.233002 107.051003 -4.899964 +v 123.922997 109.991997 -4.899964 +v 116.436996 107.288002 -4.899964 +v 122.126999 107.823997 -4.899964 +v 90.737999 107.936996 -4.899964 +v 91.436996 107.288002 -4.899964 +v 89.186996 110.258003 -4.899964 +v 96.641998 107.351997 -4.899964 +v 115.746002 107.93 -4.899964 +v 97.129997 107.835999 -4.899964 +v 119.623001 109.016998 -4.899964 +v 95.282997 109.515999 -4.899964 +v 94.707001 109.052002 -4.899964 +v 94.027 108.891998 -4.899964 +v 93.363998 109.019997 -4.899964 +v 95.600998 110.253998 -4.899964 +v 122.426003 107.977997 -4.899964 +v 97.414001 107.976997 -4.899964 +v 119.027 108.891998 -4.899964 +v 108.230003 109.984001 -4.889964 +v 123.384003 108.230003 -4.899964 +v 123.753998 109.093002 -4.899964 +v 122.994003 108.002998 -4.899964 +v 114.0 107.987 -4.899964 +v 108.066002 109.589996 -4.886964 +v 107.734001 109.349998 -4.891965 +v 99.0 107.983002 -4.896965 +v 105.343002 109.335999 -4.892964 +v 89.071999 109.991997 -4.899964 +v 89.260002 109.037003 -4.899964 +v 89.919998 108.015999 -4.899964 +v 89.572998 108.302002 -4.899964 +v 118.363998 109.019997 -4.899964 +v 120.195999 109.417999 -4.899964 +v 117.842003 109.388 -4.899964 +v 92.843002 109.388 -4.899964 +v 105.023003 109.494003 -4.887964 +v 123.775002 110.582001 -4.899964 +v 117.508003 109.886002 -4.899964 +v 92.517998 109.865997 -4.899964 +v 104.846001 109.765999 -4.884964 +v 120.556999 110.066002 -4.899964 +v 104.769997 110.036003 -4.886964 +v 94.056999 112.115997 -4.899964 +v 94.583 111.991997 -4.899964 +v 95.089996 111.699997 -4.899964 +v 95.514999 111.045998 -4.899964 +v 117.393997 110.484001 -4.899964 +v 92.391998 110.550003 -4.899964 +v 108.227997 111.129997 -4.893964 +v 104.779999 111.014 -4.882964 +v 120.596001 110.678001 -4.899964 +v 89.207001 110.615997 -4.899964 +v 120.402 111.316002 -4.899964 +v 92.527 111.152 -4.899964 +v 117.470001 110.998001 -4.899964 +v 92.830002 111.599998 -4.899964 +v 89.070999 111.024002 -4.899964 +v 119.709 111.959999 -4.899964 +v 93.336998 111.972 -4.899964 +v 123.935997 111.029999 -4.899964 +v 91.425003 114.734001 -4.899962 +v 90.526001 114.042999 -4.899962 +v 89.736 113.043999 -4.899962 +v 99.0 115.452003 -4.899962 +v 93.489998 115.43 -4.899962 +v 92.346001 115.178001 -4.899962 +v 122.082001 114.384003 -4.899962 +v 121.162003 114.962997 -4.899962 +v 117.766998 111.532997 -4.899964 +v 118.314003 111.963997 -4.899964 +v 120.293999 115.282997 -4.899962 +v 119.426003 115.439003 -4.899962 +v 108.013 111.472 -4.891964 +v 104.925003 111.389999 -4.883964 +v 105.247002 111.639999 -4.886964 +v 123.696999 112.080002 -4.899964 +v 89.290001 112.040001 -4.899964 +v 107.720001 111.648003 -4.889964 +v 114.0 115.452003 -4.900962 +v 118.970001 112.109001 -4.899964 +v 122.764999 113.722 -4.899962 +v 123.301003 112.968002 -4.899962 +v 123.714996 112.027 -5.249964 +v 123.929001 111.024002 -5.249964 +v 123.285004 113.012001 -5.249962 +v 122.387001 114.139 -5.249962 +v 121.121002 114.990997 -5.249962 +v 119.794998 115.404999 -5.249962 +v 123.474998 108.364998 -5.249964 +v 123.832001 109.389 -5.249964 +v 123.925003 110.0 -5.249964 +v 114.0 110.285004 -0.658964 +v 113.995003 108.515999 0.622036 +v 113.986 108.309998 0.335036 +v 114.0 110.330002 -0.305964 +v 114.0 115.667999 0.886038 +v 114.0 115.501999 1.318038 +v 114.0 115.445999 0.963038 +v 114.0 116.0 1.068038 +v 114.0 115.805 0.617038 +v 114.008003 116.147003 0.607038 +v 114.0 115.677002 -5.219962 +v 114.0 115.449997 -5.249962 +v 114.0 115.720001 -4.791962 +v 114.0 116.038002 -4.959962 +v 114.0 115.800003 -4.551962 +v 114.011002 116.141998 -4.551962 +v 114.0 107.963997 -5.241964 +v 114.0 107.732002 -4.942965 +v 99.0 107.967003 -5.241964 +v 113.376999 106.581001 -6.007966 +v 99.599998 106.584999 -6.005966 +v 113.969002 107.001999 -5.764965 +v 113.690002 106.688004 -5.945966 +v 99.023003 107.016998 -5.755964 +v 99.297997 106.697998 -5.939966 +v 117.970001 106.519997 -5.249966 +v 117.096001 106.862 -5.249964 +v 119.182999 106.389999 -5.249966 +v 92.421997 106.690002 -5.249966 +v 94.682999 106.450996 -5.249966 +v 93.723 106.391998 -5.249966 +v 120.519997 106.664001 -5.249966 +v 95.602997 106.712997 -5.249966 +v 121.565002 107.290001 -5.249964 +v 116.358002 107.351997 -5.249964 +v 123.813004 110.260002 -5.249964 +v 122.269997 107.942001 -5.249964 +v 91.358002 107.351997 -5.249964 +v 90.692001 107.958 -5.249964 +v 89.120003 110.066002 -5.249964 +v 96.567001 107.291 -5.249964 +v 115.870003 107.835999 -5.249964 +v 97.130997 107.838997 -5.249964 +v 119.708 109.042 -5.249964 +v 117.769997 109.459999 -5.249964 +v 118.294998 109.050003 -5.249964 +v 118.973 108.891998 -5.249964 +v 93.292999 109.052002 -5.249964 +v 117.470001 110.001999 -5.249964 +v 115.580002 107.976997 -5.249964 +v 117.393997 110.515999 -5.249964 +v 97.416 107.973999 -5.249964 +v 107.744003 109.398003 -5.241964 +v 105.275002 109.373001 -5.244964 +v 93.973 108.891998 -5.249964 +v 123.085999 108.019997 -5.249964 +v 104.866997 109.735001 -5.241964 +v 89.872002 108.037003 -5.249964 +v 89.507004 108.393997 -5.249964 +v 89.160004 109.426003 -5.249964 +v 94.636002 109.019997 -5.249964 +v 95.156998 109.388 -5.249964 +v 92.717003 109.515999 -5.249964 +v 120.392998 109.669998 -5.249964 +v 108.129997 109.768997 -5.237964 +v 95.482002 109.865997 -5.249964 +v 105.165001 111.584 -5.243964 +v 104.872002 111.084 -5.231964 +v 92.454002 110.07 -5.249964 +v 120.611 110.459999 -5.249964 +v 95.610001 110.556 -5.249964 +v 92.394997 110.606003 -5.249964 +v 108.165001 111.197998 -5.241964 +v 123.793999 110.620003 -5.249964 +v 89.209999 110.594002 -5.249964 +v 120.452003 111.203003 -5.249964 +v 93.292 111.959999 -5.249964 +v 92.589996 111.297997 -5.249964 +v 107.781998 111.582001 -5.239964 +v 117.489998 111.052002 -5.249964 +v 89.07 111.042 -5.249964 +v 99.0 115.455002 -5.249962 +v 95.436996 111.227997 -5.249964 +v 120.012001 111.752998 -5.249964 +v 119.550003 112.009003 -5.249964 +v 90.626999 114.139999 -5.249962 +v 91.694 114.900002 -5.249962 +v 89.825996 113.181 -5.249962 +v 92.706001 115.282997 -5.249962 +v 93.578003 115.440002 -5.249962 +v 117.802002 111.573997 -5.249964 +v 95.015999 111.747002 -5.249964 +v 89.334999 112.182999 -5.249964 +v 118.292 111.945 -5.249964 +v 94.545998 112.010002 -5.249964 +v 118.943001 112.115997 -5.249964 +v 94.029999 112.109001 -5.249964 +v 99.0 115.760002 -5.183962 +v 99.0 116.041 -4.942962 +v 98.991997 116.147003 -4.551962 +v 98.988998 116.141998 0.607038 +v 99.0 115.672997 1.278038 +v 99.0 115.339996 1.302038 +v 99.0 116.038002 1.015038 +v 99.0 110.320999 -0.299964 +v 99.480003 107.987999 0.897036 +v 113.517998 107.989998 0.896036 +v 99.043999 108.353996 0.707036 +v 113.862999 108.232002 0.770036 +v 99.442001 107.839996 0.580036 +v 113.418999 107.809998 0.595036 +v 99.0 110.295998 -0.667964 +v 99.029999 108.225998 0.378036 +v 113.782997 107.981003 0.506036 +v 99.0 115.467003 0.962038 +v 99.0 115.730003 0.834038 +v 99.0 115.800003 0.608038 +v 99.0 115.805 -4.561962 +v 99.0 115.653 -4.844962 +v 99.0 107.716003 -4.951964 +v 113.985001 106.875999 -5.433964 +v 113.478996 106.421997 -5.695966 +v 99.480003 106.426003 -5.692966 +v 113.783997 106.586998 -5.599966 +v 99.040001 106.792999 -5.480966 +v 114.255997 115.844002 0.605038 +v 114.241997 115.838997 -4.549962 +v 115.459 116.533997 0.600038 +v 115.303001 116.848999 0.595038 +v 115.283997 116.836998 -4.543962 +v 115.549004 116.585999 -4.524962 +v 115.987 116.838997 -4.002962 +v 115.968002 116.828003 0.130038 +v 115.727997 116.690002 0.478038 +v 115.814003 116.738998 -4.333962 +v 115.806 117.139999 0.088038 +v 115.797997 117.134003 -4.057962 +v 115.572998 117.003998 0.461038 +v 115.556999 116.995003 -4.419962 +v 98.758003 115.838997 0.605038 +v 98.744003 115.844002 -4.549962 +v 97.716003 116.836998 0.600038 +v 97.519997 116.546997 0.594038 +v 97.440002 116.592003 -4.526962 +v 97.567001 116.922997 -4.509962 +v 97.007004 116.843002 0.010038 +v 97.042 116.821999 -4.130962 +v 97.189003 116.737 0.408038 +v 97.199997 117.135002 -4.079962 +v 97.189003 117.141998 0.040038 +v 97.397003 117.021004 0.440038 +v 105.492996 111.067001 -4.759964 +v 105.290001 111.426003 -5.165964 +v 107.519997 111.067001 -4.759964 +v 107.585999 111.413002 -5.139964 +v 105.320999 109.564003 -5.168965 +v 105.517998 109.938004 -4.749964 +v 107.706001 109.580002 -5.159965 +v 107.507004 109.933998 -4.759964 +v 105.351997 110.084 -4.728964 +v 105.330002 110.885002 -4.729964 +v 105.522003 110.120003 -4.663964 +v 105.515999 110.905998 -4.670964 +v 105.211998 110.172997 -4.829964 +v 105.226997 110.860001 -4.819964 +v 105.075996 110.043999 -5.072964 +v 105.064003 110.943001 -5.089964 +v 105.089996 111.278 -5.182964 +v 105.174004 109.709 -5.126965 +v 107.480003 110.887001 -4.664964 +v 107.669998 110.113998 -4.729964 +v 107.481003 110.097 -4.669964 +v 107.656998 110.889999 -4.727964 +v 107.769997 110.828003 -4.807964 +v 107.773003 110.139999 -4.819964 +v 107.936996 110.099998 -5.084964 +v 107.976997 110.917999 -5.131964 +v 107.931999 111.164001 -5.150964 +v 107.793999 111.367996 -5.162964 +v 107.913002 109.795998 -5.150964 +v 104.939003 110.033997 -5.186964 +v 105.504997 111.314003 -4.503964 +v 107.474998 111.290001 -4.479964 +v 107.519997 110.970001 -4.322964 +v 105.427002 110.870003 -4.316964 +v 107.564003 110.112 -4.316964 +v 105.410004 110.138 -4.315964 +v 107.526001 109.699997 -4.495965 +v 105.482002 109.681 -4.509965 +v 105.175003 110.908997 -4.418964 +v 105.167999 110.129997 -4.419964 +v 104.959999 110.095001 -4.590964 +v 104.970001 110.891998 -4.579964 +v 105.248001 111.152 -4.463964 +v 105.519997 111.093002 -4.363964 +v 105.433998 109.942001 -4.358964 +v 105.213997 109.870003 -4.469964 +v 107.526001 109.902 -4.370964 +v 107.852997 110.164001 -4.424964 +v 107.823997 110.859001 -4.408964 +v 108.073997 110.122002 -4.630964 +v 108.071999 110.864998 -4.626964 +v 108.196999 110.973 -4.851964 +v 107.873001 111.071999 -4.499964 +v 107.671997 111.185997 -4.449964 +v 107.817001 109.886002 -4.479964 +vt 0.0 1.0 +vt 0.011766 0.845504 +vt 0.025626 0.927673 +vt 0.011794 0.927673 +vt 0.025654 0.845504 +vt 1.00029 0.045027 +vt 0.002219 0.954973 +vt -0.001186 0.045028 +vt 0.996912 0.941989 f 1/1 2/1 3/1 f 4/1 1/1 3/1 f 5/1 4/1 3/1 f 6/1 5/1 3/1 -f 324/1 6/1 3/1 -f 331/1 324/1 3/1 -f 7/1 331/1 3/1 +f 7/1 6/1 3/1 f 8/1 7/1 3/1 -f 1/1 9/1 2/1 -f 9/1 10/1 2/1 -f 4/1 11/1 1/1 -f 10/1 12/1 2/1 -f 10/1 13/1 12/1 -f 10/1 14/1 13/1 -f 10/1 214/1 14/1 -f 8/1 15/1 7/1 -f 15/1 16/1 7/1 -f 15/1 17/1 16/1 -f 20/1 21/1 19/1 -f 22/1 20/1 19/1 -f 21/1 23/1 19/1 -f 24/1 22/1 19/1 -f 23/1 18/1 19/1 -f 25/1 22/1 24/1 -f 26/1 25/1 24/1 -f 27/1 26/1 24/1 -f 28/1 27/1 24/1 -f 29/1 18/1 23/1 -f 30/1 18/1 29/1 -f 31/1 32/1 33/1 -f 32/1 34/1 33/1 -f 34/1 35/1 33/1 -f 35/1 36/1 33/1 -f 36/1 37/1 33/1 -f 37/1 38/1 33/1 -f 39/1 32/1 31/1 -f 40/1 39/1 31/1 -f 464/1 34/1 32/1 -f 41/1 40/1 31/1 -f 42/1 40/1 41/1 -f 43/1 40/1 42/1 -f 500/1 38/1 37/1 -f 516/1 38/1 500/1 -f 504/1 516/1 500/1 -f 44/1 516/1 504/1 -f 47/1 45/1 46/1 -f 45/1 48/1 46/1 -f 49/1 47/1 46/1 -f 48/1 50/1 46/1 -f 51/1 49/1 46/1 -f 48/1 52/1 50/1 -f 52/1 53/1 50/1 -f 53/1 54/1 50/1 -f 51/1 55/1 49/1 -f 58/1 59/1 56/1 +f 9/1 8/1 3/1 +f 10/1 9/1 3/1 +f 1/1 11/1 2/1 +f 11/1 12/1 2/1 +f 4/1 13/1 1/1 +f 12/1 14/1 2/1 +f 12/1 15/1 14/1 +f 12/1 16/1 15/1 +f 12/1 17/1 16/1 +f 10/1 18/1 9/1 +f 18/1 19/1 9/1 +f 18/1 20/1 19/1 +f 21/1 22/1 23/1 +f 24/1 21/1 23/1 +f 22/1 25/1 23/1 +f 26/1 24/1 23/1 +f 25/1 27/1 23/1 +f 28/1 24/1 26/1 +f 29/1 28/1 26/1 +f 30/1 29/1 26/1 +f 31/1 30/1 26/1 +f 32/1 27/1 25/1 +f 33/1 27/1 32/1 +f 34/1 35/1 36/1 +f 35/1 37/1 36/1 +f 37/1 38/1 36/1 +f 38/1 39/1 36/1 +f 39/1 40/1 36/1 +f 40/1 41/1 36/1 +f 42/1 35/1 34/1 +f 43/1 42/1 34/1 +f 44/1 37/1 35/1 +f 45/1 43/1 34/1 +f 46/1 43/1 45/1 +f 47/1 43/1 46/1 +f 48/1 41/1 40/1 +f 49/1 41/1 48/1 +f 50/1 49/1 48/1 +f 51/1 49/1 50/1 +f 52/1 53/1 54/1 +f 53/1 55/1 54/1 +f 56/1 52/1 54/1 +f 55/1 57/1 54/1 +f 58/1 56/1 54/1 +f 55/1 59/1 57/1 +f 59/1 60/1 57/1 f 60/1 61/1 57/1 -f 61/1 62/1 57/1 -f 63/1 59/1 58/1 -f 61/1 64/1 62/1 -f 65/1 63/1 58/1 -f 66/1 65/1 58/1 -f 64/1 67/1 62/1 -f 68/1 65/1 66/1 -f 64/1 69/1 67/1 -f 69/1 70/1 67/1 -f 71/1 65/1 68/1 -f 72/1 71/1 68/1 -f 69/1 73/1 70/1 -f 73/1 74/1 70/1 -f 75/1 71/1 72/1 -f 76/1 75/1 72/1 -f 73/1 77/1 74/1 -f 77/1 78/1 74/1 -f 79/1 75/1 76/1 -f 80/1 79/1 76/1 -f 77/1 81/1 78/1 -f 81/1 82/1 78/1 -f 83/1 79/1 80/1 -f 84/1 83/1 80/1 -f 81/1 85/1 82/1 -f 85/1 84/1 82/1 -f 85/1 83/1 84/1 -f 86/1 87/1 88/1 -f 89/1 87/1 86/1 -f 90/1 91/1 92/1 -f 87/1 91/1 90/1 -f 97/1 95/1 96/1 -f 95/1 98/1 96/1 -f 99/1 95/1 97/1 -f 100/1 94/1 93/1 -f 95/1 101/1 98/1 -f 102/1 95/1 99/1 -f 103/1 94/1 100/1 -f 104/1 94/1 103/1 -f 105/1 106/1 101/1 -f 95/1 105/1 101/1 -f 107/1 95/1 102/1 -f 108/1 109/1 107/1 -f 109/1 95/1 107/1 +f 58/1 62/1 56/1 +f 63/1 64/1 65/1 +f 66/1 67/1 68/1 +f 67/1 69/1 68/1 +f 70/1 64/1 63/1 +f 67/1 71/1 69/1 +f 72/1 70/1 63/1 +f 73/1 72/1 63/1 +f 71/1 74/1 69/1 +f 75/1 72/1 73/1 +f 71/1 76/1 74/1 +f 76/1 77/1 74/1 +f 78/1 72/1 75/1 +f 79/1 78/1 75/1 +f 76/1 80/1 77/1 +f 80/1 81/1 77/1 +f 82/1 78/1 79/1 +f 83/1 82/1 79/1 +f 80/1 84/1 81/1 +f 84/1 85/1 81/1 +f 86/1 82/1 83/1 +f 87/1 86/1 83/1 +f 84/1 88/1 85/1 +f 88/1 89/1 85/1 +f 90/1 86/1 87/1 +f 91/1 90/1 87/1 +f 88/1 92/1 89/1 +f 92/1 91/1 89/1 +f 92/1 90/1 91/1 +f 93/1 94/1 95/1 +f 96/1 94/1 93/1 +f 97/1 98/1 99/1 +f 94/1 98/1 97/1 +f 100/1 101/1 102/1 +f 101/1 103/1 102/1 +f 104/1 101/1 100/1 +f 105/1 106/1 107/1 +f 101/1 108/1 103/1 +f 109/1 101/1 104/1 f 110/1 106/1 105/1 -f 111/1 94/1 104/1 -f 110/1 112/1 106/1 -f 113/1 94/1 111/1 -f 114/1 113/1 111/1 -f 110/1 115/1 112/1 -f 110/1 113/1 114/1 -f 115/1 110/1 114/1 -f 118/1 119/1 120/1 -f 121/1 118/1 120/1 -f 118/1 122/1 119/1 -f 116/1 123/1 117/1 -f 118/1 124/1 122/1 -f 125/1 118/1 121/1 -f 116/1 126/1 123/1 -f 127/1 118/1 125/1 -f 128/1 127/1 125/1 -f 118/1 129/1 124/1 -f 118/1 130/1 129/1 -f 128/1 131/1 127/1 -f 132/1 130/1 118/1 -f 116/1 133/1 126/1 -f 134/1 131/1 128/1 -f 135/1 136/1 133/1 -f 116/1 135/1 133/1 -f 137/1 131/1 134/1 -f 135/1 137/1 136/1 -f 135/1 131/1 137/1 -f 138/1 139/1 140/1 -f 56/1 141/1 142/1 -f 143/1 139/1 138/1 -f 141/1 144/1 142/1 -f 145/1 146/1 144/1 -f 141/1 145/1 144/1 -f 147/1 139/1 143/1 -f 148/1 146/1 145/1 -f 56/1 149/1 141/1 -f 150/1 139/1 147/1 -f 148/1 151/1 146/1 -f 59/1 149/1 56/1 -f 152/1 139/1 150/1 -f 148/1 153/1 151/1 -f 154/1 139/1 152/1 -f 148/1 154/1 152/1 -f 153/1 148/1 152/1 -f 154/1 155/1 139/1 -f 155/1 156/1 139/1 -f 156/1 157/1 139/1 -f 157/1 158/1 139/1 -f 158/1 159/1 139/1 -f 159/1 160/1 139/1 -f 160/1 161/1 139/1 -f 162/1 161/1 160/1 -f 163/1 161/1 162/1 -f 164/1 163/1 162/1 -f 165/1 163/1 164/1 -f 166/1 163/1 165/1 -f 167/1 163/1 166/1 -f 113/1 168/1 94/1 -f 168/1 169/1 94/1 -f 169/1 170/1 94/1 -f 170/1 171/1 94/1 -f 171/1 172/1 94/1 -f 172/1 173/1 94/1 -f 173/1 174/1 94/1 -f 175/1 174/1 173/1 -f 176/1 174/1 175/1 -f 177/1 176/1 175/1 -f 178/1 176/1 177/1 -f 179/1 176/1 178/1 -f 180/1 176/1 179/1 -f 181/1 176/1 180/1 -f 174/1 176/1 293/1 -f 176/1 295/1 293/1 -f 161/1 163/1 182/1 -f 163/1 183/1 182/1 -f 184/1 185/1 116/1 -f 185/1 135/1 116/1 -f 186/1 184/1 116/1 -f 187/1 186/1 116/1 -f 188/1 187/1 116/1 -f 189/1 188/1 116/1 -f 182/1 189/1 116/1 -f 182/1 183/1 189/1 +f 111/1 106/1 110/1 +f 112/1 113/1 108/1 +f 101/1 112/1 108/1 +f 114/1 101/1 109/1 +f 115/1 116/1 114/1 +f 116/1 101/1 114/1 +f 117/1 113/1 112/1 +f 118/1 106/1 111/1 +f 117/1 119/1 113/1 +f 120/1 106/1 118/1 +f 121/1 120/1 118/1 +f 117/1 122/1 119/1 +f 117/1 120/1 121/1 +f 122/1 117/1 121/1 +f 123/1 124/1 125/1 +f 126/1 123/1 125/1 +f 123/1 127/1 124/1 +f 128/1 129/1 130/1 +f 123/1 131/1 127/1 +f 132/1 123/1 126/1 +f 128/1 133/1 129/1 +f 134/1 123/1 132/1 +f 135/1 134/1 132/1 +f 123/1 136/1 131/1 +f 123/1 137/1 136/1 +f 135/1 138/1 134/1 +f 139/1 137/1 123/1 +f 128/1 140/1 133/1 +f 141/1 138/1 135/1 +f 142/1 143/1 140/1 +f 128/1 142/1 140/1 +f 144/1 138/1 141/1 +f 142/1 144/1 143/1 +f 142/1 138/1 144/1 +f 145/1 146/1 147/1 +f 65/1 148/1 149/1 +f 150/1 146/1 145/1 +f 148/1 151/1 149/1 +f 152/1 153/1 151/1 +f 148/1 152/1 151/1 +f 154/1 146/1 150/1 +f 155/1 153/1 152/1 +f 65/1 156/1 148/1 +f 157/1 146/1 154/1 +f 155/1 158/1 153/1 +f 64/1 156/1 65/1 +f 159/1 146/1 157/1 +f 155/1 160/1 158/1 +f 161/1 146/1 159/1 +f 155/1 161/1 159/1 +f 160/1 155/1 159/1 +f 161/1 162/1 146/1 +f 162/1 163/1 146/1 +f 163/1 164/1 146/1 +f 164/1 165/1 146/1 +f 165/1 166/1 146/1 +f 166/1 167/1 146/1 +f 167/1 168/1 146/1 +f 169/1 168/1 167/1 +f 170/1 168/1 169/1 +f 171/1 170/1 169/1 +f 172/1 170/1 171/1 +f 173/1 170/1 172/1 +f 174/1 170/1 173/1 +f 120/1 175/1 106/1 +f 175/1 176/1 106/1 +f 176/1 177/1 106/1 +f 177/1 178/1 106/1 +f 178/1 179/1 106/1 +f 179/1 180/1 106/1 +f 180/1 181/1 106/1 +f 182/1 181/1 180/1 +f 183/1 181/1 182/1 +f 184/1 183/1 182/1 +f 185/1 183/1 184/1 +f 186/1 183/1 185/1 +f 187/1 183/1 186/1 +f 188/1 183/1 187/1 +f 181/1 183/1 189/1 f 183/1 190/1 189/1 -f 183/1 191/1 190/1 -f 183/1 192/1 191/1 -f 183/1 193/1 192/1 -f 194/1 205/1 132/1 -f 149/1 194/1 132/1 -f 205/1 202/1 132/1 -f 202/1 130/1 132/1 -f 59/1 63/1 149/1 -f 63/1 194/1 149/1 -f 61/1 60/1 195/1 -f 196/1 200/1 195/1 -f 200/1 64/1 195/1 -f 64/1 61/1 195/1 -f 197/1 198/1 196/1 -f 198/1 557/1 196/1 -f 557/1 200/1 196/1 -f 65/1 194/1 63/1 -f 71/1 194/1 65/1 -f 200/1 69/1 64/1 -f 199/1 194/1 71/1 -f 88/1 291/1 71/1 -f 291/1 199/1 71/1 -f 200/1 73/1 69/1 -f 75/1 88/1 71/1 -f 200/1 77/1 73/1 -f 201/1 202/1 205/1 -f 198/1 203/1 557/1 -f 203/1 204/1 557/1 -f 79/1 88/1 75/1 -f 81/1 77/1 200/1 -f 88/1 85/1 200/1 -f 85/1 81/1 200/1 -f 204/1 556/1 557/1 -f 206/1 88/1 200/1 -f 207/1 201/1 205/1 -f 204/1 555/1 556/1 -f 83/1 88/1 79/1 -f 204/1 552/1 555/1 -f 204/1 208/1 552/1 -f 211/1 201/1 207/1 -f 85/1 88/1 83/1 -f 210/1 209/1 207/1 -f 209/1 211/1 207/1 -f 86/1 88/1 206/1 -f 213/1 212/1 552/1 -f 208/1 213/1 552/1 -f 154/1 148/1 135/1 -f 148/1 131/1 135/1 -f 262/1 316/1 113/1 -f 110/1 262/1 113/1 -f 189/1 160/1 188/1 -f 189/1 162/1 160/1 -f 214/1 215/1 25/1 -f 216/1 215/1 214/1 -f 217/1 216/1 214/1 -f 218/1 217/1 214/1 -f 219/1 217/1 218/1 -f 220/1 219/1 218/1 -f 245/1 220/1 218/1 -f 221/1 220/1 245/1 -f 91/1 239/1 210/1 -f 239/1 209/1 210/1 -f 223/1 222/1 690/1 -f 220/1 223/1 690/1 -f 222/1 224/1 690/1 -f 225/5 589/2 690/3 -f 224/1 225/1 690/1 -f 226/1 448/1 589/1 -f 227/1 226/1 589/1 -f 225/5 228/4 589/2 -f 228/1 229/1 589/1 -f 229/1 227/1 589/1 -f 230/1 228/1 225/1 -f 87/1 89/1 225/1 -f 89/1 232/1 225/1 -f 232/1 231/1 225/1 -f 231/1 230/1 225/1 -f 233/1 91/1 225/1 -f 91/1 87/1 225/1 -f 234/1 448/1 226/1 -f 220/1 235/1 223/1 -f 236/1 91/1 233/1 -f 221/1 237/1 235/1 -f 220/1 221/1 235/1 -f 238/1 448/1 234/1 -f 239/1 91/1 236/1 -f 89/1 240/1 232/1 -f 243/1 241/1 242/1 -f 241/1 244/1 242/1 -f 244/1 218/1 242/1 -f 109/1 108/1 242/1 -f 108/1 243/1 242/1 -f 245/1 218/1 244/1 -f 3/1 24/1 19/1 -f 2/1 24/1 3/1 -f 568/1 246/1 247/1 -f 626/1 246/1 568/1 -f 581/1 582/1 781/1 -f 582/1 684/1 781/1 -f 248/1 175/1 249/1 -f 175/1 173/1 249/1 -f 108/1 224/1 243/1 -f 225/1 224/1 108/1 -f 130/1 225/1 108/1 -f 202/1 225/1 130/1 -f 129/1 130/1 107/1 -f 130/1 108/1 107/1 -f 116/1 93/1 94/1 -f 117/1 93/1 116/1 -f 123/1 126/1 103/1 -f 126/1 104/1 103/1 +f 168/1 170/1 191/1 +f 170/1 192/1 191/1 +f 193/1 194/1 128/1 +f 194/1 142/1 128/1 +f 195/1 193/1 128/1 +f 196/1 195/1 128/1 +f 197/1 196/1 128/1 +f 198/1 197/1 128/1 +f 191/1 198/1 128/1 +f 191/1 192/1 198/1 +f 192/1 199/1 198/1 +f 192/1 200/1 199/1 +f 192/1 201/1 200/1 +f 192/1 202/1 201/1 +f 203/1 204/1 139/1 +f 156/1 203/1 139/1 +f 204/1 205/1 139/1 +f 205/1 137/1 139/1 +f 64/1 70/1 156/1 +f 70/1 203/1 156/1 +f 67/1 66/1 206/1 +f 207/1 208/1 206/1 +f 208/1 71/1 206/1 +f 71/1 67/1 206/1 +f 209/1 210/1 207/1 +f 210/1 211/1 207/1 +f 211/1 208/1 207/1 +f 72/1 203/1 70/1 +f 78/1 203/1 72/1 +f 208/1 76/1 71/1 +f 212/1 203/1 78/1 +f 95/1 213/1 78/1 +f 213/1 212/1 78/1 +f 208/1 80/1 76/1 +f 82/1 95/1 78/1 +f 208/1 84/1 80/1 +f 214/1 205/1 204/1 +f 210/1 215/1 211/1 +f 215/1 216/1 211/1 +f 86/1 95/1 82/1 +f 88/1 84/1 208/1 +f 95/1 92/1 208/1 +f 92/1 88/1 208/1 +f 216/1 217/1 211/1 +f 218/1 95/1 208/1 +f 219/1 214/1 204/1 +f 216/1 220/1 217/1 +f 90/1 95/1 86/1 +f 216/1 221/1 220/1 +f 216/1 222/1 221/1 +f 223/1 214/1 219/1 +f 92/1 95/1 90/1 +f 224/1 225/1 219/1 +f 225/1 223/1 219/1 +f 93/1 95/1 218/1 +f 226/1 227/1 221/1 +f 222/1 226/1 221/1 +f 161/1 155/1 142/1 +f 155/1 138/1 142/1 +f 228/1 229/1 120/1 +f 117/1 228/1 120/1 +f 198/1 167/1 197/1 +f 198/1 169/1 167/1 +f 17/1 230/1 28/1 +f 231/1 230/1 17/1 +f 232/1 231/1 17/1 +f 233/1 232/1 17/1 +f 234/1 232/1 233/1 +f 235/1 234/1 233/1 +f 236/1 235/1 233/1 +f 237/1 235/1 236/1 +f 98/1 238/1 224/1 +f 238/1 225/1 224/1 +f 239/1 240/1 241/1 +f 235/1 239/1 241/1 +f 240/1 242/1 241/1 +f 243/2 244/3 241/4 +f 242/1 243/1 241/1 +f 245/1 246/1 244/1 +f 247/1 245/1 244/1 +f 243/2 248/5 244/3 +f 248/1 249/1 244/1 +f 249/1 247/1 244/1 +f 250/1 248/1 243/1 +f 94/1 96/1 243/1 +f 96/1 251/1 243/1 +f 251/1 252/1 243/1 +f 252/1 250/1 243/1 +f 253/1 98/1 243/1 +f 98/1 94/1 243/1 +f 254/1 246/1 245/1 +f 235/1 255/1 239/1 +f 256/1 98/1 253/1 +f 237/1 257/1 255/1 +f 235/1 237/1 255/1 +f 258/1 246/1 254/1 +f 238/1 98/1 256/1 +f 96/1 259/1 251/1 +f 260/1 261/1 262/1 +f 261/1 263/1 262/1 +f 263/1 233/1 262/1 +f 116/1 115/1 262/1 +f 115/1 260/1 262/1 +f 236/1 233/1 263/1 +f 3/1 26/1 23/1 +f 2/1 26/1 3/1 +f 264/6 265/7 266/8 +f 267/9 265/7 264/6 +f 268/1 269/1 270/1 +f 269/1 271/1 270/1 +f 272/1 182/1 273/1 +f 182/1 180/1 273/1 +f 115/1 242/1 260/1 +f 243/1 242/1 115/1 +f 137/1 243/1 115/1 +f 205/1 243/1 137/1 f 136/1 137/1 114/1 f 137/1 115/1 114/1 -f 106/1 125/1 101/1 -f 106/1 128/1 125/1 -f 120/1 119/1 96/1 -f 119/1 97/1 96/1 -f 250/1 341/1 144/1 -f 146/1 250/1 144/1 -f 337/1 339/1 152/1 -f 339/1 153/1 152/1 -f 340/1 147/1 143/1 -f 251/1 147/1 340/1 -f 252/1 138/1 140/1 -f 253/1 138/1 252/1 -f 254/1 56/1 142/1 -f 57/1 56/1 254/1 -f 57/1 68/1 56/1 -f 72/1 68/1 57/1 -f 68/1 58/1 56/1 -f 80/1 76/1 57/1 -f 62/1 82/1 57/1 -f 82/1 84/1 57/1 -f 84/1 80/1 57/1 -f 76/1 72/1 57/1 -f 74/1 78/1 62/1 -f 78/1 82/1 62/1 -f 68/1 66/1 58/1 -f 67/1 74/1 62/1 -f 70/1 74/1 67/1 -f 255/1 256/1 105/1 -f 95/1 255/1 105/1 -f 257/1 266/1 261/1 -f 265/1 266/1 257/1 -f 256/1 110/1 105/1 -f 258/1 110/1 256/1 -f 259/1 110/1 258/1 -f 260/1 110/1 259/1 -f 11/1 261/1 1/1 -f 257/1 110/1 260/1 -f 11/1 262/1 261/1 -f 262/1 257/1 261/1 -f 262/1 110/1 257/1 -f 109/1 255/1 95/1 -f 109/1 263/1 255/1 -f 109/1 264/1 263/1 -f 109/1 265/1 264/1 -f 266/1 10/1 9/1 -f 242/1 10/1 266/1 -f 265/1 109/1 266/1 -f 109/1 242/1 266/1 -f 267/1 268/1 145/1 -f 141/1 267/1 145/1 -f 282/1 273/1 270/1 -f 269/1 273/1 282/1 -f 270/1 271/1 272/1 -f 270/1 273/1 271/1 -f 272/1 274/1 279/1 -f 271/1 274/1 272/1 -f 275/1 118/1 127/1 -f 275/1 276/1 118/1 -f 268/1 148/1 145/1 -f 131/1 275/1 127/1 -f 131/1 277/1 275/1 -f 131/1 278/1 277/1 -f 131/1 279/1 278/1 -f 131/1 270/1 279/1 -f 270/1 272/1 279/1 -f 280/1 148/1 268/1 -f 281/1 148/1 280/1 -f 282/1 148/1 281/1 -f 148/1 282/1 270/1 -f 131/1 148/1 270/1 -f 149/1 267/1 141/1 -f 276/1 132/1 118/1 -f 283/1 132/1 276/1 -f 284/1 132/1 283/1 -f 285/1 132/1 284/1 -f 274/1 132/1 285/1 -f 271/1 132/1 274/1 -f 273/1 132/1 271/1 -f 149/1 286/1 267/1 -f 149/1 287/1 286/1 -f 149/1 288/1 287/1 -f 149/1 269/1 288/1 -f 149/1 132/1 273/1 -f 269/1 149/1 273/1 -f 351/1 344/1 289/1 -f 344/1 290/1 289/1 -f 92/1 348/1 353/1 -f 91/1 210/1 92/1 -f 210/1 348/1 92/1 -f 210/1 207/1 348/1 -f 88/1 90/1 347/1 -f 342/1 88/1 347/1 -f 88/1 87/1 90/1 -f 291/1 88/1 342/1 -f 190/1 162/1 189/1 -f 190/1 164/1 162/1 -f 191/1 164/1 190/1 -f 191/1 165/1 164/1 -f 192/1 165/1 191/1 -f 192/1 166/1 165/1 -f 193/1 166/1 192/1 -f 193/1 167/1 166/1 -f 183/1 167/1 193/1 -f 183/1 163/1 167/1 -f 299/1 175/1 248/1 -f 299/1 177/1 175/1 -f 301/1 177/1 299/1 -f 301/1 178/1 177/1 -f 304/1 178/1 301/1 -f 304/1 179/1 178/1 -f 306/1 179/1 304/1 -f 309/1 179/1 306/1 -f 309/1 180/1 179/1 -f 181/1 180/1 309/1 -f 312/1 181/1 309/1 -f 176/1 181/1 312/1 -f 295/1 176/1 312/1 -f 135/1 155/1 154/1 -f 185/1 155/1 135/1 -f 185/1 156/1 155/1 -f 184/1 156/1 185/1 -f 184/1 157/1 156/1 -f 186/1 157/1 184/1 -f 186/1 158/1 157/1 -f 187/1 158/1 186/1 -f 187/1 159/1 158/1 -f 188/1 159/1 187/1 -f 188/1 160/1 159/1 -f 316/1 168/1 113/1 -f 317/1 168/1 316/1 -f 319/1 168/1 317/1 -f 319/1 169/1 168/1 -f 321/1 169/1 319/1 -f 321/1 170/1 169/1 -f 322/1 170/1 321/1 -f 322/1 171/1 170/1 -f 326/1 171/1 322/1 -f 327/1 171/1 326/1 -f 327/1 172/1 171/1 -f 330/1 172/1 327/1 -f 330/1 173/1 172/1 -f 333/1 173/1 330/1 -f 249/1 173/1 333/1 -f 8/1 292/1 15/1 -f 293/1 292/1 8/1 -f 293/1 294/1 292/1 -f 293/1 295/1 294/1 -f 298/1 297/1 296/1 -f 298/1 299/1 297/1 -f 299/1 248/1 297/1 -f 16/1 296/1 7/1 -f 16/1 300/1 296/1 -f 300/1 298/1 296/1 -f 300/1 299/1 298/1 -f 300/1 301/1 299/1 -f 303/1 300/1 16/1 -f 303/1 301/1 300/1 -f 302/1 303/1 16/1 -f 304/1 301/1 303/1 -f 17/1 302/1 16/1 -f 17/1 305/1 302/1 -f 305/1 303/1 302/1 -f 305/1 304/1 303/1 -f 306/1 304/1 305/1 -f 307/1 305/1 17/1 -f 307/1 308/1 305/1 -f 308/1 306/1 305/1 -f 308/1 309/1 306/1 -f 15/1 307/1 17/1 -f 15/1 310/1 307/1 -f 310/1 308/1 307/1 -f 310/1 311/1 308/1 -f 311/1 309/1 308/1 -f 292/1 310/1 15/1 -f 311/1 312/1 309/1 -f 292/1 294/1 310/1 -f 294/1 311/1 310/1 -f 294/1 312/1 311/1 -f 294/1 295/1 312/1 -f 313/1 297/1 249/1 -f 297/1 248/1 249/1 -f 7/1 296/1 331/1 -f 296/1 332/1 331/1 -f 296/1 313/1 332/1 -f 296/1 297/1 313/1 -f 5/1 314/1 4/1 -f 314/1 315/1 4/1 -f 314/1 317/1 315/1 -f 317/1 316/1 315/1 -f 318/1 317/1 314/1 -f 5/1 318/1 314/1 -f 318/1 319/1 317/1 -f 5/1 320/1 318/1 -f 321/1 319/1 318/1 -f 320/1 321/1 318/1 -f 6/1 320/1 5/1 -f 322/1 321/1 320/1 -f 323/1 320/1 6/1 -f 323/1 322/1 320/1 -f 324/1 325/1 6/1 -f 325/1 323/1 6/1 -f 325/1 326/1 323/1 -f 326/1 322/1 323/1 -f 327/1 326/1 325/1 -f 328/1 325/1 324/1 -f 328/1 329/1 325/1 -f 329/1 327/1 325/1 -f 329/1 330/1 327/1 -f 331/1 328/1 324/1 -f 331/1 332/1 328/1 -f 332/1 329/1 328/1 -f 332/1 333/1 329/1 -f 333/1 330/1 329/1 -f 313/1 333/1 332/1 -f 313/1 249/1 333/1 -f 315/1 11/1 4/1 -f 262/1 11/1 315/1 -f 316/1 262/1 315/1 -f 242/1 214/1 10/1 -f 242/1 218/1 214/1 -f 2/1 28/1 24/1 -f 2/1 12/1 28/1 -f 12/1 27/1 28/1 -f 12/1 13/1 27/1 -f 13/1 26/1 27/1 -f 13/1 14/1 26/1 -f 14/1 25/1 26/1 -f 214/1 25/1 14/1 -f 286/1 280/1 268/1 -f 267/1 286/1 268/1 -f 286/1 287/1 280/1 -f 287/1 281/1 280/1 -f 287/1 288/1 281/1 -f 288/1 282/1 281/1 -f 288/1 269/1 282/1 -f 275/1 283/1 276/1 -f 277/1 283/1 275/1 -f 277/1 284/1 283/1 -f 278/1 284/1 277/1 -f 278/1 285/1 284/1 -f 279/1 285/1 278/1 -f 279/1 274/1 285/1 -f 263/1 258/1 256/1 -f 255/1 263/1 256/1 -f 263/1 259/1 258/1 -f 263/1 264/1 259/1 -f 264/1 260/1 259/1 -f 264/1 265/1 260/1 -f 265/1 257/1 260/1 -f 351/1 345/1 344/1 -f 352/1 345/1 351/1 -f 334/1 345/1 352/1 -f 335/1 345/1 334/1 -f 205/1 335/1 334/1 -f 194/1 335/1 205/1 -f 336/1 150/1 147/1 -f 251/1 336/1 147/1 -f 337/1 152/1 150/1 -f 336/1 337/1 150/1 -f 151/1 250/1 146/1 -f 151/1 338/1 250/1 -f 153/1 338/1 151/1 -f 153/1 339/1 338/1 -f 253/1 143/1 138/1 -f 253/1 340/1 143/1 -f 117/1 100/1 93/1 -f 117/1 123/1 100/1 -f 123/1 103/1 100/1 -f 126/1 133/1 104/1 -f 133/1 111/1 104/1 -f 133/1 136/1 111/1 -f 136/1 114/1 111/1 -f 112/1 128/1 106/1 -f 112/1 134/1 128/1 -f 115/1 134/1 112/1 -f 115/1 137/1 134/1 -f 98/1 120/1 96/1 -f 98/1 121/1 120/1 -f 101/1 121/1 98/1 -f 101/1 125/1 121/1 -f 119/1 99/1 97/1 -f 119/1 122/1 99/1 -f 122/1 124/1 99/1 -f 124/1 102/1 99/1 -f 124/1 129/1 102/1 -f 129/1 107/1 102/1 -f 142/1 341/1 254/1 -f 144/1 341/1 142/1 -f 201/1 225/1 202/1 -f 233/1 225/1 201/1 -f 211/1 233/1 201/1 -f 236/1 233/1 211/1 -f 222/1 241/1 243/1 -f 224/1 222/1 243/1 -f 222/1 223/1 241/1 -f 223/1 244/1 241/1 -f 223/1 235/1 244/1 -f 239/1 236/1 209/1 -f 236/1 211/1 209/1 -f 237/1 245/1 244/1 -f 237/1 221/1 245/1 -f 235/1 237/1 244/1 -f 1/1 266/1 9/1 -f 261/1 266/1 1/1 -f 345/1 343/1 344/1 -f 345/1 346/1 343/1 -f 346/1 342/1 343/1 -f 346/1 291/1 342/1 -f 335/1 346/1 345/1 -f 346/1 199/1 291/1 -f 335/1 194/1 346/1 -f 194/1 199/1 346/1 -f 344/1 343/1 290/1 -f 343/1 347/1 290/1 -f 343/1 342/1 347/1 -f 352/1 351/1 350/1 -f 349/1 352/1 350/1 -f 207/1 352/1 349/1 -f 348/1 207/1 349/1 -f 352/1 205/1 334/1 -f 207/1 205/1 352/1 -f 350/1 351/1 289/1 -f 349/1 350/1 289/1 -f 353/1 349/1 289/1 -f 348/1 349/1 353/1 -f 354/1 89/1 355/1 -f 240/1 89/1 354/1 -f 358/1 359/1 360/1 -f 361/1 358/1 360/1 -f 358/1 362/1 359/1 -f 356/1 363/1 357/1 -f 358/1 364/1 362/1 -f 365/1 358/1 361/1 -f 356/1 366/1 363/1 -f 367/1 358/1 365/1 -f 368/1 367/1 365/1 -f 358/1 369/1 364/1 -f 358/1 370/1 369/1 -f 368/1 371/1 367/1 -f 372/1 370/1 358/1 -f 356/1 373/1 366/1 -f 374/1 371/1 368/1 -f 375/1 376/1 373/1 -f 356/1 375/1 373/1 -f 377/1 371/1 374/1 -f 375/1 377/1 376/1 -f 375/1 371/1 377/1 -f 382/1 380/1 381/1 -f 380/1 383/1 381/1 -f 384/1 380/1 382/1 -f 385/1 379/1 378/1 -f 380/1 386/1 383/1 -f 387/1 380/1 384/1 -f 388/1 379/1 385/1 -f 389/1 379/1 388/1 -f 390/1 391/1 386/1 -f 380/1 390/1 386/1 -f 392/1 380/1 387/1 -f 197/1 196/1 392/1 -f 196/1 380/1 392/1 -f 393/1 391/1 390/1 -f 394/1 379/1 389/1 -f 393/1 395/1 391/1 -f 396/1 379/1 394/1 -f 397/1 396/1 394/1 -f 393/1 398/1 395/1 -f 393/1 396/1 397/1 -f 398/1 393/1 397/1 -f 399/1 253/1 252/1 -f 400/1 57/1 254/1 -f 341/1 400/1 254/1 -f 399/1 340/1 253/1 -f 401/1 400/1 341/1 -f 250/1 401/1 341/1 -f 399/1 251/1 340/1 -f 250/1 402/1 401/1 -f 195/1 57/1 400/1 -f 399/1 336/1 251/1 -f 338/1 402/1 250/1 -f 195/1 60/1 57/1 -f 399/1 337/1 336/1 -f 339/1 402/1 338/1 -f 399/1 403/1 337/1 -f 403/1 339/1 337/1 -f 403/1 402/1 339/1 -f 404/1 405/1 399/1 -f 405/1 403/1 399/1 -f 406/1 404/1 399/1 -f 407/1 406/1 399/1 -f 408/1 407/1 399/1 -f 409/1 408/1 399/1 -f 410/1 409/1 399/1 -f 410/1 411/1 409/1 -f 411/1 412/1 409/1 -f 411/1 413/1 412/1 -f 411/1 414/1 413/1 -f 411/1 415/1 414/1 -f 416/1 375/1 356/1 -f 417/1 416/1 356/1 -f 418/1 417/1 356/1 -f 419/1 420/1 356/1 -f 420/1 418/1 356/1 -f 421/1 419/1 356/1 -f 422/1 421/1 356/1 -f 423/1 422/1 356/1 -f 423/1 424/1 422/1 -f 424/1 425/1 422/1 -f 424/1 426/1 425/1 -f 424/1 427/1 426/1 -f 424/1 428/1 427/1 -f 498/1 499/1 423/1 -f 499/1 424/1 423/1 -f 429/1 430/1 410/1 -f 430/1 411/1 410/1 -f 396/1 431/1 379/1 -f 431/1 432/1 379/1 -f 432/1 433/1 379/1 -f 433/1 434/1 379/1 -f 434/1 435/1 379/1 -f 435/1 436/1 379/1 -f 436/1 429/1 379/1 -f 437/1 429/1 436/1 -f 430/1 429/1 437/1 -f 438/1 430/1 437/1 -f 439/1 430/1 438/1 -f 440/1 430/1 439/1 -f 441/1 430/1 440/1 -f 393/1 402/1 403/1 -f 396/1 393/1 403/1 -f 525/1 371/1 375/1 -f 442/1 371/1 525/1 -f 409/1 436/1 408/1 -f 409/1 437/1 436/1 -f 52/1 443/1 43/1 -f 443/1 444/1 43/1 -f 444/1 445/1 43/1 -f 445/1 446/1 43/1 -f 445/1 447/1 446/1 -f 447/1 448/1 446/1 -f 446/1 238/1 449/1 -f 448/1 238/1 446/1 -f 213/1 240/1 212/1 -f 232/1 240/1 213/1 -f 452/1 370/1 372/1 -f 450/1 452/1 372/1 -f 451/1 452/1 450/1 -f 453/1 451/1 450/1 -f 446/1 453/1 450/1 -f 446/1 449/1 453/1 -f 449/1 454/1 453/1 -f 50/1 31/1 46/1 -f 31/1 33/1 46/1 -f 422/1 455/1 421/1 -f 455/1 456/1 421/1 -f 197/1 229/1 198/1 -f 370/1 229/1 197/1 -f 452/1 227/1 370/1 -f 227/1 229/1 370/1 -f 370/1 197/1 392/1 -f 369/1 370/1 392/1 -f 356/1 378/1 379/1 -f 357/1 378/1 356/1 -f 366/1 389/1 388/1 -f 363/1 366/1 388/1 -f 377/1 398/1 397/1 -f 376/1 377/1 397/1 -f 391/1 365/1 386/1 -f 391/1 368/1 365/1 -f 359/1 382/1 381/1 -f 360/1 359/1 381/1 -f 457/1 358/1 367/1 -f 457/1 458/1 358/1 -f 463/1 459/1 462/1 -f 468/1 459/1 463/1 -f 371/1 457/1 367/1 -f 371/1 460/1 457/1 -f 371/1 461/1 460/1 -f 371/1 462/1 461/1 -f 463/1 464/1 32/1 -f 442/1 464/1 463/1 -f 371/1 463/1 462/1 -f 371/1 442/1 463/1 -f 458/1 372/1 358/1 -f 465/1 372/1 458/1 -f 466/1 372/1 465/1 -f 467/1 372/1 466/1 -f 40/1 468/1 39/1 -f 459/1 372/1 467/1 -f 40/1 469/1 468/1 -f 450/1 372/1 459/1 -f 468/1 450/1 459/1 -f 469/1 450/1 468/1 -f 470/1 400/1 401/1 -f 470/1 471/1 400/1 -f 476/1 491/1 472/1 -f 474/1 491/1 476/1 -f 473/1 474/1 475/1 -f 474/1 476/1 475/1 -f 477/1 473/1 475/1 -f 488/1 473/1 477/1 -f 380/1 478/1 390/1 -f 478/1 479/1 390/1 -f 402/1 470/1 401/1 -f 479/1 393/1 390/1 -f 480/1 393/1 479/1 -f 481/1 393/1 480/1 -f 482/1 393/1 481/1 -f 477/1 393/1 482/1 -f 393/1 477/1 475/1 -f 476/1 393/1 475/1 -f 402/1 483/1 470/1 -f 402/1 484/1 483/1 -f 402/1 485/1 484/1 -f 402/1 472/1 485/1 -f 402/1 476/1 472/1 -f 402/1 393/1 476/1 -f 471/1 195/1 400/1 -f 196/1 478/1 380/1 -f 196/1 486/1 478/1 -f 196/1 487/1 486/1 -f 196/1 488/1 487/1 -f 196/1 474/1 488/1 -f 474/1 473/1 488/1 -f 489/1 195/1 471/1 -f 490/1 195/1 489/1 -f 491/1 195/1 490/1 -f 474/1 195/1 491/1 -f 196/1 195/1 474/1 -f 547/1 554/1 492/1 -f 554/1 493/1 492/1 -f 212/1 354/1 559/1 -f 552/1 212/1 559/1 -f 212/1 240/1 354/1 -f 355/1 544/1 550/1 -f 89/1 86/1 355/1 -f 86/1 544/1 355/1 -f 86/1 206/1 544/1 -f 412/1 437/1 409/1 -f 412/1 438/1 437/1 -f 413/1 438/1 412/1 -f 413/1 439/1 438/1 -f 414/1 439/1 413/1 -f 414/1 440/1 439/1 -f 415/1 440/1 414/1 -f 415/1 441/1 440/1 -f 411/1 441/1 415/1 -f 411/1 430/1 441/1 -f 422/1 494/1 455/1 -f 425/1 494/1 422/1 -f 425/1 506/1 494/1 -f 426/1 506/1 425/1 -f 426/1 507/1 506/1 -f 426/1 510/1 507/1 -f 427/1 510/1 426/1 -f 427/1 512/1 510/1 -f 427/1 515/1 512/1 -f 428/1 515/1 427/1 -f 428/1 518/1 515/1 -f 424/1 518/1 428/1 -f 424/1 499/1 518/1 -f 403/1 431/1 396/1 -f 405/1 431/1 403/1 -f 405/1 432/1 431/1 -f 404/1 432/1 405/1 -f 404/1 433/1 432/1 -f 406/1 433/1 404/1 -f 406/1 434/1 433/1 -f 407/1 434/1 406/1 -f 407/1 435/1 434/1 -f 408/1 435/1 407/1 -f 408/1 436/1 435/1 -f 416/1 525/1 375/1 -f 416/1 526/1 525/1 -f 416/1 527/1 526/1 -f 417/1 527/1 416/1 -f 417/1 529/1 527/1 -f 417/1 532/1 529/1 -f 418/1 532/1 417/1 -f 418/1 534/1 532/1 -f 420/1 534/1 418/1 -f 420/1 536/1 534/1 -f 420/1 538/1 536/1 -f 419/1 538/1 420/1 -f 419/1 540/1 538/1 -f 421/1 540/1 419/1 -f 421/1 456/1 540/1 -f 495/1 38/1 516/1 -f 495/1 496/1 38/1 -f 497/1 496/1 495/1 -f 497/1 498/1 496/1 -f 499/1 498/1 497/1 -f 502/1 500/1 501/1 -f 455/1 502/1 501/1 -f 503/1 502/1 455/1 -f 494/1 503/1 455/1 -f 502/1 504/1 500/1 -f 505/1 504/1 502/1 -f 503/1 505/1 502/1 -f 506/1 505/1 503/1 -f 494/1 506/1 503/1 -f 507/1 505/1 506/1 -f 508/1 44/1 504/1 -f 505/1 508/1 504/1 -f 509/1 508/1 505/1 -f 507/1 509/1 505/1 -f 510/1 509/1 507/1 -f 511/1 44/1 508/1 -f 509/1 511/1 508/1 -f 512/1 511/1 509/1 -f 510/1 512/1 509/1 -f 513/1 511/1 512/1 -f 511/1 514/1 44/1 -f 514/1 516/1 44/1 -f 513/1 514/1 511/1 -f 515/1 513/1 512/1 -f 517/1 514/1 513/1 -f 515/1 517/1 513/1 -f 517/1 516/1 514/1 -f 517/1 495/1 516/1 -f 515/1 518/1 517/1 -f 497/1 495/1 517/1 -f 518/1 497/1 517/1 -f 499/1 497/1 518/1 -f 501/1 500/1 37/1 -f 455/1 519/1 456/1 -f 520/1 501/1 37/1 -f 455/1 520/1 519/1 -f 455/1 501/1 520/1 -f 522/1 34/1 521/1 -f 523/1 522/1 521/1 -f 524/1 35/1 34/1 -f 522/1 524/1 34/1 -f 526/1 522/1 523/1 -f 525/1 526/1 523/1 -f 526/1 527/1 522/1 -f 528/1 524/1 522/1 -f 527/1 528/1 522/1 -f 529/1 528/1 527/1 -f 530/1 35/1 524/1 -f 528/1 530/1 524/1 -f 531/1 530/1 528/1 -f 529/1 531/1 528/1 -f 532/1 531/1 529/1 -f 533/1 35/1 530/1 -f 531/1 533/1 530/1 -f 533/1 36/1 35/1 -f 534/1 533/1 531/1 -f 532/1 534/1 531/1 -f 535/1 36/1 533/1 -f 534/1 535/1 533/1 -f 536/1 535/1 534/1 -f 537/1 535/1 536/1 -f 538/1 537/1 536/1 -f 535/1 37/1 36/1 -f 539/1 37/1 535/1 -f 537/1 539/1 535/1 -f 537/1 540/1 539/1 -f 538/1 540/1 537/1 -f 520/1 37/1 539/1 -f 540/1 520/1 539/1 -f 519/1 520/1 540/1 -f 456/1 519/1 540/1 -f 464/1 521/1 34/1 -f 442/1 523/1 464/1 -f 523/1 521/1 464/1 -f 442/1 525/1 523/1 -f 43/1 469/1 40/1 -f 43/1 446/1 469/1 -f 446/1 450/1 469/1 -f 50/1 41/1 31/1 -f 50/1 54/1 41/1 -f 54/1 53/1 41/1 -f 53/1 42/1 41/1 -f 53/1 52/1 42/1 -f 52/1 43/1 42/1 -f 483/1 471/1 470/1 -f 483/1 489/1 471/1 -f 484/1 489/1 483/1 -f 484/1 490/1 489/1 -f 485/1 490/1 484/1 -f 485/1 491/1 490/1 -f 472/1 491/1 485/1 -f 478/1 480/1 479/1 -f 478/1 486/1 480/1 -f 486/1 481/1 480/1 -f 486/1 487/1 481/1 -f 487/1 482/1 481/1 -f 487/1 488/1 482/1 -f 488/1 477/1 482/1 -f 460/1 458/1 457/1 -f 460/1 465/1 458/1 -f 460/1 466/1 465/1 -f 461/1 466/1 460/1 -f 461/1 467/1 466/1 -f 462/1 467/1 461/1 -f 462/1 459/1 467/1 -f 541/1 554/1 547/1 -f 541/1 542/1 554/1 -f 541/1 543/1 542/1 -f 543/1 557/1 542/1 -f 200/1 557/1 543/1 -f 357/1 385/1 378/1 -f 357/1 363/1 385/1 -f 363/1 388/1 385/1 -f 373/1 394/1 389/1 -f 366/1 373/1 389/1 -f 376/1 397/1 394/1 -f 373/1 376/1 394/1 -f 395/1 368/1 391/1 -f 395/1 374/1 368/1 -f 398/1 374/1 395/1 -f 398/1 377/1 374/1 -f 383/1 360/1 381/1 -f 383/1 361/1 360/1 -f 386/1 361/1 383/1 -f 386/1 365/1 361/1 -f 359/1 384/1 382/1 -f 359/1 362/1 384/1 -f 364/1 387/1 384/1 -f 362/1 364/1 384/1 -f 369/1 392/1 387/1 -f 364/1 369/1 387/1 -f 228/1 203/1 198/1 -f 229/1 228/1 198/1 -f 228/1 204/1 203/1 -f 228/1 230/1 204/1 -f 230/1 208/1 204/1 -f 230/1 231/1 208/1 -f 451/1 227/1 452/1 -f 226/1 227/1 451/1 -f 453/1 226/1 451/1 -f 234/1 226/1 453/1 -f 208/1 231/1 213/1 -f 231/1 232/1 213/1 -f 238/1 454/1 449/1 -f 238/1 234/1 454/1 -f 234/1 453/1 454/1 -f 39/1 468/1 32/1 -f 468/1 463/1 32/1 -f 548/1 547/1 546/1 -f 548/1 541/1 547/1 -f 546/1 549/1 548/1 -f 545/1 549/1 546/1 -f 544/1 206/1 545/1 -f 549/1 541/1 548/1 -f 545/1 206/1 549/1 -f 549/1 206/1 541/1 -f 200/1 543/1 541/1 -f 206/1 200/1 541/1 -f 546/1 547/1 492/1 -f 550/1 546/1 492/1 -f 545/1 546/1 550/1 -f 544/1 545/1 550/1 -f 542/1 553/1 554/1 -f 555/1 551/1 553/1 -f 555/1 552/1 551/1 -f 542/1 556/1 553/1 -f 556/1 555/1 553/1 -f 557/1 556/1 542/1 -f 554/1 558/1 493/1 -f 554/1 553/1 558/1 -f 553/1 551/1 558/1 -f 551/1 559/1 558/1 -f 551/1 552/1 559/1 -f 589/1 560/1 690/1 -f 607/1 560/1 589/1 -f 607/1 561/1 560/1 -f 562/1 561/1 607/1 -f 563/1 564/1 562/1 -f 564/1 561/1 562/1 -f 565/1 564/1 563/1 -f 566/1 564/1 565/1 -f 567/1 566/1 565/1 -f 720/1 566/1 567/1 -f 247/1 720/1 567/1 -f 568/1 247/1 567/1 -f 569/1 246/1 626/1 -f 570/1 246/1 569/1 +f 128/1 107/1 106/1 +f 130/1 107/1 128/1 +f 129/1 133/1 110/1 +f 133/1 111/1 110/1 +f 143/1 144/1 121/1 +f 144/1 122/1 121/1 +f 113/1 132/1 108/1 +f 113/1 135/1 132/1 +f 125/1 124/1 102/1 +f 124/1 100/1 102/1 +f 274/1 275/1 151/1 +f 153/1 274/1 151/1 +f 276/1 277/1 159/1 +f 277/1 160/1 159/1 +f 278/1 154/1 150/1 +f 279/1 154/1 278/1 +f 280/1 145/1 147/1 +f 281/1 145/1 280/1 +f 282/1 65/1 149/1 +f 68/1 65/1 282/1 +f 68/1 75/1 65/1 +f 79/1 75/1 68/1 +f 75/1 63/1 65/1 +f 87/1 83/1 68/1 +f 69/1 89/1 68/1 +f 89/1 91/1 68/1 +f 91/1 87/1 68/1 +f 83/1 79/1 68/1 +f 81/1 85/1 69/1 +f 85/1 89/1 69/1 +f 75/1 73/1 63/1 +f 74/1 81/1 69/1 +f 77/1 81/1 74/1 +f 283/1 284/1 112/1 +f 101/1 283/1 112/1 +f 285/1 286/1 287/1 +f 288/1 286/1 285/1 +f 284/1 117/1 112/1 +f 289/1 117/1 284/1 +f 290/1 117/1 289/1 +f 291/1 117/1 290/1 +f 13/1 287/1 1/1 +f 285/1 117/1 291/1 +f 13/1 228/1 287/1 +f 228/1 285/1 287/1 +f 228/1 117/1 285/1 +f 116/1 283/1 101/1 +f 116/1 292/1 283/1 +f 116/1 293/1 292/1 +f 116/1 288/1 293/1 +f 286/1 12/1 11/1 +f 262/1 12/1 286/1 +f 288/1 116/1 286/1 +f 116/1 262/1 286/1 +f 294/1 295/1 152/1 +f 148/1 294/1 152/1 +f 296/1 297/1 298/1 +f 299/1 297/1 296/1 +f 298/1 300/1 301/1 +f 298/1 297/1 300/1 +f 301/1 302/1 303/1 +f 300/1 302/1 301/1 +f 304/1 123/1 134/1 +f 304/1 305/1 123/1 +f 295/1 155/1 152/1 +f 138/1 304/1 134/1 +f 138/1 306/1 304/1 +f 138/1 307/1 306/1 +f 138/1 303/1 307/1 +f 138/1 298/1 303/1 +f 298/1 301/1 303/1 +f 308/1 155/1 295/1 +f 309/1 155/1 308/1 +f 296/1 155/1 309/1 +f 155/1 296/1 298/1 +f 138/1 155/1 298/1 +f 156/1 294/1 148/1 +f 305/1 139/1 123/1 +f 310/1 139/1 305/1 +f 311/1 139/1 310/1 +f 312/1 139/1 311/1 +f 302/1 139/1 312/1 +f 300/1 139/1 302/1 +f 297/1 139/1 300/1 +f 156/1 313/1 294/1 +f 156/1 314/1 313/1 +f 156/1 315/1 314/1 +f 156/1 299/1 315/1 +f 156/1 139/1 297/1 +f 299/1 156/1 297/1 +f 316/1 317/1 318/1 +f 317/1 319/1 318/1 +f 99/1 320/1 321/1 +f 98/1 224/1 99/1 +f 224/1 320/1 99/1 +f 224/1 219/1 320/1 +f 95/1 97/1 322/1 +f 323/1 95/1 322/1 +f 95/1 94/1 97/1 +f 213/1 95/1 323/1 +f 199/1 169/1 198/1 +f 199/1 171/1 169/1 +f 200/1 171/1 199/1 +f 200/1 172/1 171/1 +f 201/1 172/1 200/1 +f 201/1 173/1 172/1 +f 202/1 173/1 201/1 +f 202/1 174/1 173/1 +f 192/1 174/1 202/1 +f 192/1 170/1 174/1 +f 324/1 182/1 272/1 +f 324/1 184/1 182/1 +f 325/1 184/1 324/1 +f 325/1 185/1 184/1 +f 326/1 185/1 325/1 +f 326/1 186/1 185/1 +f 327/1 186/1 326/1 +f 328/1 186/1 327/1 +f 328/1 187/1 186/1 +f 188/1 187/1 328/1 +f 329/1 188/1 328/1 +f 183/1 188/1 329/1 +f 190/1 183/1 329/1 +f 142/1 162/1 161/1 +f 194/1 162/1 142/1 +f 194/1 163/1 162/1 +f 193/1 163/1 194/1 +f 193/1 164/1 163/1 +f 195/1 164/1 193/1 +f 195/1 165/1 164/1 +f 196/1 165/1 195/1 +f 196/1 166/1 165/1 +f 197/1 166/1 196/1 +f 197/1 167/1 166/1 +f 229/1 175/1 120/1 +f 330/1 175/1 229/1 +f 331/1 175/1 330/1 +f 331/1 176/1 175/1 +f 332/1 176/1 331/1 +f 332/1 177/1 176/1 +f 333/1 177/1 332/1 +f 333/1 178/1 177/1 +f 334/1 178/1 333/1 +f 335/1 178/1 334/1 +f 335/1 179/1 178/1 +f 336/1 179/1 335/1 +f 336/1 180/1 179/1 +f 337/1 180/1 336/1 +f 273/1 180/1 337/1 +f 10/1 338/1 18/1 +f 189/1 338/1 10/1 +f 189/1 339/1 338/1 +f 189/1 190/1 339/1 +f 340/1 341/1 342/1 +f 340/1 324/1 341/1 +f 324/1 272/1 341/1 +f 19/1 342/1 9/1 +f 19/1 343/1 342/1 +f 343/1 340/1 342/1 +f 343/1 324/1 340/1 +f 343/1 325/1 324/1 +f 344/1 343/1 19/1 +f 344/1 325/1 343/1 +f 345/1 344/1 19/1 +f 326/1 325/1 344/1 +f 20/1 345/1 19/1 +f 20/1 346/1 345/1 +f 346/1 344/1 345/1 +f 346/1 326/1 344/1 +f 327/1 326/1 346/1 +f 347/1 346/1 20/1 +f 347/1 348/1 346/1 +f 348/1 327/1 346/1 +f 348/1 328/1 327/1 +f 18/1 347/1 20/1 +f 18/1 349/1 347/1 +f 349/1 348/1 347/1 +f 349/1 350/1 348/1 +f 350/1 328/1 348/1 +f 338/1 349/1 18/1 +f 350/1 329/1 328/1 +f 338/1 339/1 349/1 +f 339/1 350/1 349/1 +f 339/1 329/1 350/1 +f 339/1 190/1 329/1 +f 351/1 341/1 273/1 +f 341/1 272/1 273/1 +f 9/1 342/1 8/1 +f 342/1 352/1 8/1 +f 342/1 351/1 352/1 +f 342/1 341/1 351/1 +f 5/1 353/1 4/1 +f 353/1 354/1 4/1 +f 353/1 330/1 354/1 +f 330/1 229/1 354/1 +f 355/1 330/1 353/1 +f 5/1 355/1 353/1 +f 355/1 331/1 330/1 +f 5/1 356/1 355/1 +f 332/1 331/1 355/1 +f 356/1 332/1 355/1 +f 6/1 356/1 5/1 +f 333/1 332/1 356/1 +f 357/1 356/1 6/1 +f 357/1 333/1 356/1 +f 7/1 358/1 6/1 +f 358/1 357/1 6/1 +f 358/1 334/1 357/1 +f 334/1 333/1 357/1 +f 335/1 334/1 358/1 +f 359/1 358/1 7/1 +f 359/1 360/1 358/1 +f 360/1 335/1 358/1 +f 360/1 336/1 335/1 +f 8/1 359/1 7/1 +f 8/1 352/1 359/1 +f 352/1 360/1 359/1 +f 352/1 337/1 360/1 +f 337/1 336/1 360/1 +f 351/1 337/1 352/1 +f 351/1 273/1 337/1 +f 354/1 13/1 4/1 +f 228/1 13/1 354/1 +f 229/1 228/1 354/1 +f 262/1 17/1 12/1 +f 262/1 233/1 17/1 +f 2/1 31/1 26/1 +f 2/1 14/1 31/1 +f 14/1 30/1 31/1 +f 14/1 15/1 30/1 +f 15/1 29/1 30/1 +f 15/1 16/1 29/1 +f 16/1 28/1 29/1 +f 17/1 28/1 16/1 +f 313/1 308/1 295/1 +f 294/1 313/1 295/1 +f 313/1 314/1 308/1 +f 314/1 309/1 308/1 +f 314/1 315/1 309/1 +f 315/1 296/1 309/1 +f 315/1 299/1 296/1 +f 304/1 310/1 305/1 +f 306/1 310/1 304/1 +f 306/1 311/1 310/1 +f 307/1 311/1 306/1 +f 307/1 312/1 311/1 +f 303/1 312/1 307/1 +f 303/1 302/1 312/1 +f 292/1 289/1 284/1 +f 283/1 292/1 284/1 +f 292/1 290/1 289/1 +f 292/1 293/1 290/1 +f 293/1 291/1 290/1 +f 293/1 288/1 291/1 +f 288/1 285/1 291/1 +f 316/1 361/1 317/1 +f 362/1 361/1 316/1 +f 363/1 361/1 362/1 +f 364/1 361/1 363/1 +f 204/1 364/1 363/1 +f 203/1 364/1 204/1 +f 365/1 157/1 154/1 +f 279/1 365/1 154/1 +f 276/1 159/1 157/1 +f 365/1 276/1 157/1 +f 158/1 274/1 153/1 +f 158/1 366/1 274/1 +f 160/1 366/1 158/1 +f 160/1 277/1 366/1 +f 281/1 150/1 145/1 +f 281/1 278/1 150/1 +f 130/1 105/1 107/1 +f 130/1 129/1 105/1 +f 129/1 110/1 105/1 +f 133/1 140/1 111/1 +f 140/1 118/1 111/1 +f 140/1 143/1 118/1 +f 143/1 121/1 118/1 +f 119/1 135/1 113/1 +f 119/1 141/1 135/1 +f 122/1 141/1 119/1 +f 122/1 144/1 141/1 +f 103/1 125/1 102/1 +f 103/1 126/1 125/1 +f 108/1 126/1 103/1 +f 108/1 132/1 126/1 +f 124/1 104/1 100/1 +f 124/1 127/1 104/1 +f 127/1 131/1 104/1 +f 131/1 109/1 104/1 +f 131/1 136/1 109/1 +f 136/1 114/1 109/1 +f 149/1 275/1 282/1 +f 151/1 275/1 149/1 +f 214/1 243/1 205/1 +f 253/1 243/1 214/1 +f 223/1 253/1 214/1 +f 256/1 253/1 223/1 +f 240/1 261/1 260/1 +f 242/1 240/1 260/1 +f 240/1 239/1 261/1 +f 239/1 263/1 261/1 +f 239/1 255/1 263/1 +f 238/1 256/1 225/1 +f 256/1 223/1 225/1 +f 257/1 236/1 263/1 +f 257/1 237/1 236/1 +f 255/1 257/1 263/1 +f 1/1 286/1 11/1 +f 287/1 286/1 1/1 +f 361/1 367/1 317/1 +f 361/1 368/1 367/1 +f 368/1 323/1 367/1 +f 368/1 213/1 323/1 +f 364/1 368/1 361/1 +f 368/1 212/1 213/1 +f 364/1 203/1 368/1 +f 203/1 212/1 368/1 +f 317/1 367/1 319/1 +f 367/1 322/1 319/1 +f 367/1 323/1 322/1 +f 362/1 316/1 369/1 +f 370/1 362/1 369/1 +f 219/1 362/1 370/1 +f 320/1 219/1 370/1 +f 362/1 204/1 363/1 +f 219/1 204/1 362/1 +f 369/1 316/1 318/1 +f 370/1 369/1 318/1 +f 321/1 370/1 318/1 +f 320/1 370/1 321/1 +f 371/1 96/1 372/1 +f 259/1 96/1 371/1 +f 373/1 374/1 375/1 +f 376/1 373/1 375/1 +f 373/1 377/1 374/1 +f 378/1 379/1 380/1 +f 373/1 381/1 377/1 +f 382/1 373/1 376/1 +f 378/1 383/1 379/1 +f 384/1 373/1 382/1 +f 385/1 384/1 382/1 +f 373/1 386/1 381/1 +f 373/1 387/1 386/1 +f 385/1 388/1 384/1 +f 389/1 387/1 373/1 +f 378/1 390/1 383/1 +f 391/1 388/1 385/1 +f 392/1 393/1 390/1 +f 378/1 392/1 390/1 +f 394/1 388/1 391/1 +f 392/1 394/1 393/1 +f 392/1 388/1 394/1 +f 395/1 396/1 397/1 +f 396/1 398/1 397/1 +f 399/1 396/1 395/1 +f 400/1 401/1 402/1 +f 396/1 403/1 398/1 +f 404/1 396/1 399/1 +f 405/1 401/1 400/1 +f 406/1 401/1 405/1 +f 407/1 408/1 403/1 +f 396/1 407/1 403/1 +f 409/1 396/1 404/1 +f 209/1 207/1 409/1 +f 207/1 396/1 409/1 +f 410/1 408/1 407/1 +f 411/1 401/1 406/1 +f 410/1 412/1 408/1 +f 413/1 401/1 411/1 +f 414/1 413/1 411/1 +f 410/1 415/1 412/1 +f 410/1 413/1 414/1 +f 415/1 410/1 414/1 +f 416/1 281/1 280/1 +f 417/1 68/1 282/1 +f 275/1 417/1 282/1 +f 416/1 278/1 281/1 +f 418/1 417/1 275/1 +f 274/1 418/1 275/1 +f 416/1 279/1 278/1 +f 274/1 419/1 418/1 +f 206/1 68/1 417/1 +f 416/1 365/1 279/1 +f 366/1 419/1 274/1 +f 206/1 66/1 68/1 +f 416/1 276/1 365/1 +f 277/1 419/1 366/1 +f 416/1 420/1 276/1 +f 420/1 277/1 276/1 +f 420/1 419/1 277/1 +f 421/1 422/1 416/1 +f 422/1 420/1 416/1 +f 423/1 421/1 416/1 +f 424/1 423/1 416/1 +f 425/1 424/1 416/1 +f 426/1 425/1 416/1 +f 427/1 426/1 416/1 +f 427/1 428/1 426/1 +f 428/1 429/1 426/1 +f 428/1 430/1 429/1 +f 428/1 431/1 430/1 +f 428/1 432/1 431/1 +f 433/1 392/1 378/1 +f 434/1 433/1 378/1 +f 435/1 434/1 378/1 +f 436/1 437/1 378/1 +f 437/1 435/1 378/1 +f 438/1 436/1 378/1 +f 439/1 438/1 378/1 +f 440/1 439/1 378/1 +f 440/1 441/1 439/1 +f 441/1 442/1 439/1 +f 441/1 443/1 442/1 +f 441/1 444/1 443/1 +f 441/1 445/1 444/1 +f 446/1 447/1 440/1 +f 447/1 441/1 440/1 +f 448/1 449/1 427/1 +f 449/1 428/1 427/1 +f 413/1 450/1 401/1 +f 450/1 451/1 401/1 +f 451/1 452/1 401/1 +f 452/1 453/1 401/1 +f 453/1 454/1 401/1 +f 454/1 455/1 401/1 +f 455/1 448/1 401/1 +f 456/1 448/1 455/1 +f 449/1 448/1 456/1 +f 457/1 449/1 456/1 +f 458/1 449/1 457/1 +f 459/1 449/1 458/1 +f 460/1 449/1 459/1 +f 410/1 419/1 420/1 +f 413/1 410/1 420/1 +f 461/1 388/1 392/1 +f 462/1 388/1 461/1 +f 426/1 455/1 425/1 +f 426/1 456/1 455/1 +f 59/1 463/1 47/1 +f 463/1 464/1 47/1 +f 464/1 465/1 47/1 +f 465/1 466/1 47/1 +f 465/1 467/1 466/1 +f 467/1 246/1 466/1 +f 466/1 258/1 468/1 +f 246/1 258/1 466/1 +f 226/1 259/1 227/1 +f 251/1 259/1 226/1 +f 469/1 387/1 389/1 +f 470/1 469/1 389/1 +f 471/1 469/1 470/1 +f 472/1 471/1 470/1 +f 466/1 472/1 470/1 +f 466/1 468/1 472/1 +f 468/1 473/1 472/1 +f 57/1 34/1 54/1 +f 34/1 36/1 54/1 +f 439/1 474/1 438/1 +f 474/1 475/1 438/1 +f 209/1 249/1 210/1 +f 387/1 249/1 209/1 +f 469/1 247/1 387/1 +f 247/1 249/1 387/1 +f 387/1 209/1 409/1 +f 386/1 387/1 409/1 +f 378/1 402/1 401/1 +f 380/1 402/1 378/1 +f 383/1 406/1 405/1 +f 379/1 383/1 405/1 +f 394/1 415/1 414/1 +f 393/1 394/1 414/1 +f 408/1 382/1 403/1 +f 408/1 385/1 382/1 +f 374/1 395/1 397/1 +f 375/1 374/1 397/1 +f 476/1 373/1 384/1 +f 476/1 477/1 373/1 +f 478/1 479/1 480/1 +f 481/1 479/1 478/1 +f 388/1 476/1 384/1 +f 388/1 482/1 476/1 +f 388/1 483/1 482/1 +f 388/1 480/1 483/1 +f 478/1 44/1 35/1 +f 462/1 44/1 478/1 +f 388/1 478/1 480/1 +f 388/1 462/1 478/1 +f 477/1 389/1 373/1 +f 484/1 389/1 477/1 +f 485/1 389/1 484/1 +f 486/1 389/1 485/1 +f 43/1 481/1 42/1 +f 479/1 389/1 486/1 +f 43/1 487/1 481/1 +f 470/1 389/1 479/1 +f 481/1 470/1 479/1 +f 487/1 470/1 481/1 +f 488/1 417/1 418/1 +f 488/1 489/1 417/1 +f 490/1 491/1 492/1 +f 493/1 491/1 490/1 +f 494/1 493/1 495/1 +f 493/1 490/1 495/1 +f 496/1 494/1 495/1 +f 497/1 494/1 496/1 +f 396/1 498/1 407/1 +f 498/1 499/1 407/1 +f 419/1 488/1 418/1 +f 499/1 410/1 407/1 +f 500/1 410/1 499/1 +f 501/1 410/1 500/1 +f 502/1 410/1 501/1 +f 496/1 410/1 502/1 +f 410/1 496/1 495/1 +f 490/1 410/1 495/1 +f 419/1 503/1 488/1 +f 419/1 504/1 503/1 +f 419/1 505/1 504/1 +f 419/1 492/1 505/1 +f 419/1 490/1 492/1 +f 419/1 410/1 490/1 +f 489/1 206/1 417/1 +f 207/1 498/1 396/1 +f 207/1 506/1 498/1 +f 207/1 507/1 506/1 +f 207/1 497/1 507/1 +f 207/1 493/1 497/1 +f 493/1 494/1 497/1 +f 508/1 206/1 489/1 +f 509/1 206/1 508/1 +f 491/1 206/1 509/1 +f 493/1 206/1 491/1 +f 207/1 206/1 493/1 +f 510/1 511/1 512/1 +f 511/1 513/1 512/1 +f 227/1 371/1 514/1 +f 221/1 227/1 514/1 +f 227/1 259/1 371/1 +f 372/1 515/1 516/1 +f 96/1 93/1 372/1 +f 93/1 515/1 372/1 +f 93/1 218/1 515/1 +f 429/1 456/1 426/1 +f 429/1 457/1 456/1 +f 430/1 457/1 429/1 +f 430/1 458/1 457/1 +f 431/1 458/1 430/1 +f 431/1 459/1 458/1 +f 432/1 459/1 431/1 +f 432/1 460/1 459/1 +f 428/1 460/1 432/1 +f 428/1 449/1 460/1 +f 439/1 517/1 474/1 +f 442/1 517/1 439/1 +f 442/1 518/1 517/1 +f 443/1 518/1 442/1 +f 443/1 519/1 518/1 +f 443/1 520/1 519/1 +f 444/1 520/1 443/1 +f 444/1 521/1 520/1 +f 444/1 522/1 521/1 +f 445/1 522/1 444/1 +f 445/1 523/1 522/1 +f 441/1 523/1 445/1 +f 441/1 447/1 523/1 +f 420/1 450/1 413/1 +f 422/1 450/1 420/1 +f 422/1 451/1 450/1 +f 421/1 451/1 422/1 +f 421/1 452/1 451/1 +f 423/1 452/1 421/1 +f 423/1 453/1 452/1 +f 424/1 453/1 423/1 +f 424/1 454/1 453/1 +f 425/1 454/1 424/1 +f 425/1 455/1 454/1 +f 433/1 461/1 392/1 +f 433/1 524/1 461/1 +f 433/1 525/1 524/1 +f 434/1 525/1 433/1 +f 434/1 526/1 525/1 +f 434/1 527/1 526/1 +f 435/1 527/1 434/1 +f 435/1 528/1 527/1 +f 437/1 528/1 435/1 +f 437/1 529/1 528/1 +f 437/1 530/1 529/1 +f 436/1 530/1 437/1 +f 436/1 531/1 530/1 +f 438/1 531/1 436/1 +f 438/1 475/1 531/1 +f 532/1 41/1 49/1 +f 532/1 533/1 41/1 +f 534/1 533/1 532/1 +f 534/1 446/1 533/1 +f 447/1 446/1 534/1 +f 535/1 48/1 536/1 +f 474/1 535/1 536/1 +f 537/1 535/1 474/1 +f 517/1 537/1 474/1 +f 535/1 50/1 48/1 +f 538/1 50/1 535/1 +f 537/1 538/1 535/1 +f 518/1 538/1 537/1 +f 517/1 518/1 537/1 +f 519/1 538/1 518/1 +f 539/1 51/1 50/1 +f 538/1 539/1 50/1 +f 540/1 539/1 538/1 +f 519/1 540/1 538/1 +f 520/1 540/1 519/1 +f 541/1 51/1 539/1 +f 540/1 541/1 539/1 +f 521/1 541/1 540/1 +f 520/1 521/1 540/1 +f 542/1 541/1 521/1 +f 541/1 543/1 51/1 +f 543/1 49/1 51/1 +f 542/1 543/1 541/1 +f 522/1 542/1 521/1 +f 544/1 543/1 542/1 +f 522/1 544/1 542/1 +f 544/1 49/1 543/1 +f 544/1 532/1 49/1 +f 522/1 523/1 544/1 +f 534/1 532/1 544/1 +f 523/1 534/1 544/1 +f 447/1 534/1 523/1 +f 536/1 48/1 40/1 +f 474/1 545/1 475/1 +f 546/1 536/1 40/1 +f 474/1 546/1 545/1 +f 474/1 536/1 546/1 +f 547/1 37/1 548/1 +f 549/1 547/1 548/1 +f 550/1 38/1 37/1 +f 547/1 550/1 37/1 +f 524/1 547/1 549/1 +f 461/1 524/1 549/1 +f 524/1 525/1 547/1 +f 551/1 550/1 547/1 +f 525/1 551/1 547/1 +f 526/1 551/1 525/1 +f 552/1 38/1 550/1 +f 551/1 552/1 550/1 +f 553/1 552/1 551/1 +f 526/1 553/1 551/1 +f 527/1 553/1 526/1 +f 554/1 38/1 552/1 +f 553/1 554/1 552/1 +f 554/1 39/1 38/1 +f 528/1 554/1 553/1 +f 527/1 528/1 553/1 +f 555/1 39/1 554/1 +f 528/1 555/1 554/1 +f 529/1 555/1 528/1 +f 556/1 555/1 529/1 +f 530/1 556/1 529/1 +f 555/1 40/1 39/1 +f 557/1 40/1 555/1 +f 556/1 557/1 555/1 +f 556/1 531/1 557/1 +f 530/1 531/1 556/1 +f 546/1 40/1 557/1 +f 531/1 546/1 557/1 +f 545/1 546/1 531/1 +f 475/1 545/1 531/1 +f 44/1 548/1 37/1 +f 462/1 549/1 44/1 +f 549/1 548/1 44/1 +f 462/1 461/1 549/1 +f 47/1 487/1 43/1 +f 47/1 466/1 487/1 +f 466/1 470/1 487/1 +f 57/1 45/1 34/1 +f 57/1 61/1 45/1 +f 61/1 60/1 45/1 +f 60/1 46/1 45/1 +f 60/1 59/1 46/1 +f 59/1 47/1 46/1 +f 503/1 489/1 488/1 +f 503/1 508/1 489/1 +f 504/1 508/1 503/1 +f 504/1 509/1 508/1 +f 505/1 509/1 504/1 +f 505/1 491/1 509/1 +f 492/1 491/1 505/1 +f 498/1 500/1 499/1 +f 498/1 506/1 500/1 +f 506/1 501/1 500/1 +f 506/1 507/1 501/1 +f 507/1 502/1 501/1 +f 507/1 497/1 502/1 +f 497/1 496/1 502/1 +f 482/1 477/1 476/1 +f 482/1 484/1 477/1 +f 482/1 485/1 484/1 +f 483/1 485/1 482/1 +f 483/1 486/1 485/1 +f 480/1 486/1 483/1 +f 480/1 479/1 486/1 +f 558/1 511/1 510/1 +f 558/1 559/1 511/1 +f 558/1 560/1 559/1 +f 560/1 211/1 559/1 +f 208/1 211/1 560/1 +f 380/1 400/1 402/1 +f 380/1 379/1 400/1 +f 379/1 405/1 400/1 +f 390/1 411/1 406/1 +f 383/1 390/1 406/1 +f 393/1 414/1 411/1 +f 390/1 393/1 411/1 +f 412/1 385/1 408/1 +f 412/1 391/1 385/1 +f 415/1 391/1 412/1 +f 415/1 394/1 391/1 +f 398/1 375/1 397/1 +f 398/1 376/1 375/1 +f 403/1 376/1 398/1 +f 403/1 382/1 376/1 +f 374/1 399/1 395/1 +f 374/1 377/1 399/1 +f 381/1 404/1 399/1 +f 377/1 381/1 399/1 +f 386/1 409/1 404/1 +f 381/1 386/1 404/1 +f 248/1 215/1 210/1 +f 249/1 248/1 210/1 +f 248/1 216/1 215/1 +f 248/1 250/1 216/1 +f 250/1 222/1 216/1 +f 250/1 252/1 222/1 +f 471/1 247/1 469/1 +f 245/1 247/1 471/1 +f 472/1 245/1 471/1 +f 254/1 245/1 472/1 +f 222/1 252/1 226/1 +f 252/1 251/1 226/1 +f 258/1 473/1 468/1 +f 258/1 254/1 473/1 +f 254/1 472/1 473/1 +f 42/1 481/1 35/1 +f 481/1 478/1 35/1 +f 561/1 510/1 562/1 +f 561/1 558/1 510/1 +f 562/1 563/1 561/1 +f 564/1 563/1 562/1 +f 515/1 218/1 564/1 +f 563/1 558/1 561/1 +f 564/1 218/1 563/1 +f 563/1 218/1 558/1 +f 208/1 560/1 558/1 +f 218/1 208/1 558/1 +f 562/1 510/1 512/1 +f 516/1 562/1 512/1 +f 564/1 562/1 516/1 +f 515/1 564/1 516/1 +f 559/1 565/1 511/1 +f 220/1 566/1 565/1 +f 220/1 221/1 566/1 +f 559/1 217/1 565/1 +f 217/1 220/1 565/1 +f 211/1 217/1 559/1 +f 511/1 567/1 513/1 +f 511/1 565/1 567/1 +f 565/1 566/1 567/1 +f 566/1 514/1 567/1 +f 566/1 221/1 514/1 +f 244/1 568/1 241/1 +f 569/1 568/1 244/1 +f 569/1 570/1 568/1 f 571/1 570/1 569/1 -f 642/1 572/1 571/1 -f 572/1 570/1 571/1 -f 573/1 572/1 642/1 -f 573/1 574/1 572/1 -f 575/1 574/1 573/1 -f 575/1 755/1 574/1 -f 657/1 755/1 575/1 -f 576/1 755/1 657/1 -f 576/1 763/1 755/1 -f 769/1 763/1 576/1 -f 577/1 769/1 576/1 -f 578/1 769/1 577/1 -f 675/1 578/1 577/1 -f 579/1 578/1 675/1 -f 580/1 579/1 675/1 -f 581/1 579/1 580/1 -f 582/1 581/1 580/1 -f 48/1 443/1 52/1 -f 583/1 443/1 48/1 -f 584/1 443/1 583/1 -f 584/1 444/1 443/1 -f 585/1 444/1 584/1 -f 585/1 445/1 444/1 -f 586/1 445/1 585/1 -f 587/1 445/1 586/1 -f 587/1 447/1 445/1 -f 588/1 447/1 587/1 -f 588/1 448/1 447/1 -f 589/1 448/1 588/1 -f 45/1 583/1 48/1 -f 591/1 583/1 45/1 -f 590/1 584/1 583/1 -f 591/1 590/1 583/1 +f 572/1 573/1 571/1 +f 573/1 570/1 571/1 +f 574/1 573/1 572/1 +f 575/1 573/1 574/1 +f 576/1 575/1 574/1 +f 577/1 575/1 576/1 +f 266/1 577/1 576/1 +f 264/1 266/1 576/1 +f 578/1 265/1 267/1 +f 579/1 265/1 578/1 +f 580/1 579/1 578/1 +f 581/1 582/1 580/1 +f 582/1 579/1 580/1 +f 583/1 582/1 581/1 +f 583/1 584/1 582/1 +f 585/1 584/1 583/1 +f 585/1 586/1 584/1 +f 587/1 586/1 585/1 +f 588/1 586/1 587/1 +f 588/1 589/1 586/1 +f 590/1 589/1 588/1 +f 591/1 590/1 588/1 f 592/1 590/1 591/1 -f 590/1 585/1 584/1 -f 593/1 585/1 590/1 -f 592/1 593/1 590/1 -f 594/1 593/1 592/1 -f 593/1 586/1 585/1 -f 595/1 592/1 591/1 -f 596/1 586/1 593/1 -f 598/1 591/1 45/1 -f 597/1 595/1 591/1 -f 594/1 596/1 593/1 -f 599/1 596/1 594/1 -f 595/1 600/1 592/1 -f 600/1 594/1 592/1 -f 598/1 597/1 591/1 -f 596/1 587/1 586/1 -f 601/1 587/1 596/1 -f 47/1 598/1 45/1 -f 599/1 601/1 596/1 -f 600/1 599/1 594/1 -f 602/1 599/1 600/1 -f 601/1 588/1 587/1 -f 603/1 588/1 601/1 -f 604/1 601/1 599/1 -f 597/1 605/1 595/1 -f 605/1 600/1 595/1 -f 604/1 603/1 601/1 -f 603/1 589/1 588/1 -f 607/1 589/1 603/1 -f 606/1 599/1 602/1 -f 607/1 603/1 604/1 -f 605/1 602/1 600/1 -f 606/1 604/1 599/1 -f 608/1 607/1 604/1 -f 598/1 609/1 597/1 -f 606/1 608/1 604/1 -f 610/1 602/1 605/1 -f 608/1 562/1 607/1 -f 611/1 609/1 598/1 -f 610/1 606/1 602/1 -f 606/1 612/1 608/1 -f 609/1 613/1 597/1 -f 613/1 605/1 597/1 -f 610/1 614/1 606/1 -f 608/1 563/1 562/1 -f 612/1 563/1 608/1 -f 614/1 612/1 606/1 -f 613/1 615/1 605/1 -f 615/1 610/1 605/1 -f 614/1 616/1 612/1 -f 616/1 563/1 612/1 -f 616/1 565/1 563/1 -f 47/1 611/1 598/1 -f 615/1 617/1 610/1 -f 617/1 614/1 610/1 -f 617/1 618/1 614/1 -f 618/1 616/1 614/1 +f 593/1 592/1 591/1 +f 594/1 592/1 593/1 +f 595/1 594/1 593/1 +f 268/1 594/1 595/1 +f 269/1 268/1 595/1 +f 55/1 463/1 59/1 +f 596/1 463/1 55/1 +f 597/1 463/1 596/1 +f 597/1 464/1 463/1 +f 598/1 464/1 597/1 +f 598/1 465/1 464/1 +f 599/1 465/1 598/1 +f 600/1 465/1 599/1 +f 600/1 467/1 465/1 +f 601/1 467/1 600/1 +f 601/1 246/1 467/1 +f 244/1 246/1 601/1 +f 53/1 596/1 55/1 +f 602/1 596/1 53/1 +f 603/1 597/1 596/1 +f 602/1 603/1 596/1 +f 604/1 603/1 602/1 +f 603/1 598/1 597/1 +f 605/1 598/1 603/1 +f 604/1 605/1 603/1 +f 606/1 605/1 604/1 +f 605/1 599/1 598/1 +f 607/1 604/1 602/1 +f 608/1 599/1 605/1 +f 609/1 602/1 53/1 +f 610/1 607/1 602/1 +f 606/1 608/1 605/1 +f 611/1 608/1 606/1 +f 607/1 612/1 604/1 +f 612/1 606/1 604/1 +f 609/1 610/1 602/1 +f 608/1 600/1 599/1 +f 613/1 600/1 608/1 +f 52/1 609/1 53/1 +f 611/1 613/1 608/1 +f 612/1 611/1 606/1 +f 614/1 611/1 612/1 +f 613/1 601/1 600/1 +f 615/1 601/1 613/1 +f 616/1 613/1 611/1 +f 610/1 617/1 607/1 +f 617/1 612/1 607/1 +f 616/1 615/1 613/1 +f 615/1 244/1 601/1 +f 569/1 244/1 615/1 +f 618/1 611/1 614/1 +f 569/1 615/1 616/1 +f 617/1 614/1 612/1 +f 618/1 616/1 611/1 +f 619/1 569/1 616/1 +f 609/1 620/1 610/1 f 618/1 619/1 616/1 -f 619/1 565/1 616/1 -f 619/1 567/1 565/1 -f 613/1 620/1 615/1 -f 621/1 613/1 609/1 -f 620/1 617/1 615/1 -f 617/1 622/1 618/1 -f 622/1 619/1 618/1 -f 611/1 621/1 609/1 -f 621/1 620/1 613/1 -f 620/1 623/1 617/1 -f 623/1 624/1 617/1 -f 624/1 622/1 617/1 -f 622/1 625/1 619/1 -f 619/1 625/1 567/1 -f 625/1 568/1 567/1 -f 49/1 611/1 47/1 -f 625/1 627/1 568/1 -f 627/1 626/1 568/1 -f 49/1 628/1 611/1 -f 628/1 621/1 611/1 -f 622/1 632/1 625/1 -f 632/1 627/1 625/1 -f 628/1 629/1 621/1 -f 624/1 630/1 622/1 -f 630/1 632/1 622/1 -f 629/1 620/1 621/1 -f 629/1 631/1 620/1 -f 631/1 623/1 620/1 -f 623/1 631/1 624/1 -f 631/1 630/1 624/1 -f 632/1 569/1 626/1 -f 627/1 632/1 626/1 -f 49/1 633/1 628/1 -f 634/1 629/1 628/1 -f 633/1 634/1 628/1 -f 635/1 631/1 629/1 -f 634/1 635/1 629/1 -f 635/1 636/1 631/1 -f 636/1 630/1 631/1 -f 636/1 637/1 630/1 -f 637/1 632/1 630/1 -f 638/1 571/1 569/1 -f 632/1 638/1 569/1 -f 637/1 638/1 632/1 -f 635/1 639/1 636/1 -f 636/1 640/1 637/1 -f 639/1 640/1 636/1 -f 641/1 638/1 637/1 -f 640/1 641/1 637/1 -f 642/1 571/1 638/1 -f 641/1 642/1 638/1 -f 634/1 643/1 635/1 -f 49/1 648/1 633/1 -f 643/1 639/1 635/1 -f 644/1 634/1 633/1 -f 648/1 644/1 633/1 -f 643/1 645/1 639/1 -f 644/1 646/1 634/1 -f 646/1 643/1 634/1 -f 645/1 647/1 639/1 -f 647/1 640/1 639/1 -f 647/1 649/1 640/1 -f 649/1 641/1 640/1 -f 649/1 650/1 641/1 -f 650/1 642/1 641/1 -f 55/1 648/1 49/1 -f 650/1 573/1 642/1 -f 55/1 651/1 648/1 -f 646/1 645/1 643/1 -f 650/1 575/1 573/1 -f 651/1 644/1 648/1 -f 646/1 652/1 645/1 -f 652/1 647/1 645/1 -f 653/1 646/1 644/1 -f 654/1 649/1 647/1 -f 652/1 654/1 647/1 -f 51/1 655/1 55/1 -f 653/1 652/1 646/1 -f 656/1 650/1 649/1 -f 654/1 656/1 649/1 -f 651/1 653/1 644/1 -f 657/1 575/1 650/1 -f 656/1 657/1 650/1 -f 653/1 658/1 652/1 -f 659/1 651/1 55/1 -f 660/1 653/1 651/1 -f 658/1 654/1 652/1 -f 655/1 659/1 55/1 -f 660/1 658/1 653/1 -f 661/1 659/1 655/1 -f 662/1 658/1 660/1 -f 659/1 660/1 651/1 -f 658/1 663/1 654/1 -f 663/1 656/1 654/1 -f 664/1 660/1 659/1 -f 663/1 665/1 656/1 -f 665/1 657/1 656/1 -f 665/1 576/1 657/1 -f 666/1 663/1 658/1 -f 662/1 666/1 658/1 -f 667/1 664/1 659/1 -f 661/1 667/1 659/1 +f 621/1 614/1 617/1 +f 619/1 571/1 569/1 +f 622/1 620/1 609/1 +f 621/1 618/1 614/1 +f 618/1 623/1 619/1 +f 620/1 624/1 610/1 +f 624/1 617/1 610/1 +f 621/1 625/1 618/1 +f 619/1 572/1 571/1 +f 623/1 572/1 619/1 +f 625/1 623/1 618/1 +f 624/1 626/1 617/1 +f 626/1 621/1 617/1 +f 625/1 627/1 623/1 +f 627/1 572/1 623/1 +f 627/1 574/1 572/1 +f 52/1 622/1 609/1 +f 626/1 628/1 621/1 +f 628/1 625/1 621/1 +f 628/1 629/1 625/1 +f 629/1 627/1 625/1 +f 629/1 630/1 627/1 +f 630/1 574/1 627/1 +f 630/1 576/1 574/1 +f 624/1 631/1 626/1 +f 632/1 624/1 620/1 +f 631/1 628/1 626/1 +f 628/1 633/1 629/1 +f 633/1 630/1 629/1 +f 622/1 632/1 620/1 +f 632/1 631/1 624/1 +f 631/1 634/1 628/1 +f 634/1 635/1 628/1 +f 635/1 633/1 628/1 +f 633/1 636/1 630/1 +f 630/1 636/1 576/1 +f 636/1 264/1 576/1 +f 56/1 622/1 52/1 +f 636/1 637/1 264/1 +f 637/1 267/1 264/1 +f 56/1 638/1 622/1 +f 638/1 632/1 622/1 +f 633/1 639/1 636/1 +f 639/1 637/1 636/1 +f 638/1 640/1 632/1 +f 635/1 641/1 633/1 +f 641/1 639/1 633/1 +f 640/1 631/1 632/1 +f 640/1 642/1 631/1 +f 642/1 634/1 631/1 +f 634/1 642/1 635/1 +f 642/1 641/1 635/1 +f 639/1 578/1 267/1 +f 637/1 639/1 267/1 +f 56/1 643/1 638/1 +f 644/1 640/1 638/1 +f 643/1 644/1 638/1 +f 645/1 642/1 640/1 +f 644/1 645/1 640/1 +f 645/1 646/1 642/1 +f 646/1 641/1 642/1 +f 646/1 647/1 641/1 +f 647/1 639/1 641/1 +f 648/1 580/1 578/1 +f 639/1 648/1 578/1 +f 647/1 648/1 639/1 +f 645/1 649/1 646/1 +f 646/1 650/1 647/1 +f 649/1 650/1 646/1 +f 651/1 648/1 647/1 +f 650/1 651/1 647/1 +f 581/1 580/1 648/1 +f 651/1 581/1 648/1 +f 644/1 652/1 645/1 +f 56/1 653/1 643/1 +f 652/1 649/1 645/1 +f 654/1 644/1 643/1 +f 653/1 654/1 643/1 +f 652/1 655/1 649/1 +f 654/1 656/1 644/1 +f 656/1 652/1 644/1 +f 655/1 657/1 649/1 +f 657/1 650/1 649/1 +f 657/1 658/1 650/1 +f 658/1 651/1 650/1 +f 658/1 659/1 651/1 +f 659/1 581/1 651/1 +f 62/1 653/1 56/1 +f 659/1 583/1 581/1 +f 62/1 660/1 653/1 +f 656/1 655/1 652/1 +f 659/1 585/1 583/1 +f 660/1 654/1 653/1 +f 656/1 661/1 655/1 +f 661/1 657/1 655/1 +f 662/1 656/1 654/1 +f 663/1 658/1 657/1 +f 661/1 663/1 657/1 +f 58/1 664/1 62/1 +f 662/1 661/1 656/1 +f 665/1 659/1 658/1 +f 663/1 665/1 658/1 +f 660/1 662/1 654/1 +f 587/1 585/1 659/1 +f 665/1 587/1 659/1 +f 662/1 666/1 661/1 +f 667/1 660/1 62/1 f 668/1 662/1 660/1 -f 664/1 668/1 660/1 -f 669/1 668/1 664/1 -f 663/1 670/1 665/1 +f 666/1 663/1 661/1 +f 664/1 667/1 62/1 f 668/1 666/1 662/1 -f 670/1 576/1 665/1 -f 666/1 670/1 663/1 -f 667/1 669/1 664/1 -f 671/1 666/1 668/1 -f 672/1 669/1 667/1 -f 669/1 671/1 668/1 -f 670/1 577/1 576/1 -f 673/1 672/1 667/1 -f 674/1 670/1 666/1 -f 671/1 674/1 666/1 -f 672/1 671/1 669/1 -f 675/1 577/1 670/1 -f 674/1 675/1 670/1 -f 676/1 674/1 671/1 -f 677/1 671/1 672/1 -f 676/1 675/1 674/1 -f 677/1 676/1 671/1 -f 673/1 677/1 672/1 -f 676/1 678/1 675/1 -f 679/1 677/1 673/1 -f 678/1 676/1 677/1 -f 678/1 580/1 675/1 -f 680/1 678/1 677/1 -f 679/1 680/1 677/1 -f 680/1 580/1 678/1 -f 681/1 680/1 679/1 -f 680/1 582/1 580/1 -f 681/1 582/1 680/1 -f 661/1 655/1 51/1 -f 682/1 661/1 51/1 -f 667/1 661/1 682/1 -f 673/1 667/1 682/1 -f 683/1 673/1 682/1 -f 683/1 679/1 673/1 -f 683/1 681/1 679/1 -f 684/1 681/1 683/1 -f 684/1 582/1 681/1 -f 215/1 22/1 25/1 -f 215/1 685/1 22/1 -f 216/1 685/1 215/1 -f 216/1 686/1 685/1 -f 217/1 686/1 216/1 -f 217/1 687/1 686/1 -f 217/1 688/1 687/1 -f 219/1 688/1 217/1 -f 219/1 689/1 688/1 -f 219/1 690/1 689/1 -f 220/1 690/1 219/1 -f 685/1 691/1 22/1 -f 691/1 20/1 22/1 -f 685/1 692/1 691/1 -f 693/1 20/1 691/1 -f 686/1 692/1 685/1 -f 692/1 694/1 691/1 -f 694/1 693/1 691/1 -f 686/1 695/1 692/1 -f 693/1 21/1 20/1 -f 696/1 694/1 692/1 -f 695/1 696/1 692/1 -f 687/1 695/1 686/1 -f 697/1 695/1 687/1 -f 693/1 700/1 21/1 -f 698/1 693/1 694/1 -f 696/1 698/1 694/1 -f 699/1 696/1 695/1 -f 697/1 699/1 695/1 -f 688/1 697/1 687/1 -f 701/1 697/1 688/1 -f 689/1 702/1 688/1 +f 669/1 667/1 664/1 +f 670/1 666/1 668/1 +f 667/1 668/1 660/1 +f 666/1 671/1 663/1 +f 671/1 665/1 663/1 +f 672/1 668/1 667/1 +f 671/1 673/1 665/1 +f 673/1 587/1 665/1 +f 673/1 588/1 587/1 +f 674/1 671/1 666/1 +f 670/1 674/1 666/1 +f 675/1 672/1 667/1 +f 669/1 675/1 667/1 +f 676/1 670/1 668/1 +f 672/1 676/1 668/1 +f 677/1 676/1 672/1 +f 671/1 678/1 673/1 +f 676/1 674/1 670/1 +f 678/1 588/1 673/1 +f 674/1 678/1 671/1 +f 675/1 677/1 672/1 +f 679/1 674/1 676/1 +f 680/1 677/1 675/1 +f 677/1 679/1 676/1 +f 678/1 591/1 588/1 +f 681/1 680/1 675/1 +f 682/1 678/1 674/1 +f 679/1 682/1 674/1 +f 680/1 679/1 677/1 +f 593/1 591/1 678/1 +f 682/1 593/1 678/1 +f 683/1 682/1 679/1 +f 684/1 679/1 680/1 +f 683/1 593/1 682/1 +f 684/1 683/1 679/1 +f 681/1 684/1 680/1 +f 683/1 685/1 593/1 +f 686/1 684/1 681/1 +f 685/1 683/1 684/1 +f 685/1 595/1 593/1 +f 687/1 685/1 684/1 +f 686/1 687/1 684/1 +f 687/1 595/1 685/1 +f 688/1 687/1 686/1 +f 687/1 269/1 595/1 +f 688/1 269/1 687/1 +f 669/1 664/1 58/1 +f 689/1 669/1 58/1 +f 675/1 669/1 689/1 +f 681/1 675/1 689/1 +f 690/1 681/1 689/1 +f 690/1 686/1 681/1 +f 690/1 688/1 686/1 +f 271/1 688/1 690/1 +f 271/1 269/1 688/1 +f 230/1 24/1 28/1 +f 230/1 691/1 24/1 +f 231/1 691/1 230/1 +f 231/1 692/1 691/1 +f 232/1 692/1 231/1 +f 232/1 693/1 692/1 +f 232/1 694/1 693/1 +f 234/1 694/1 232/1 +f 234/1 695/1 694/1 +f 234/1 241/1 695/1 +f 235/1 241/1 234/1 +f 691/1 696/1 24/1 +f 696/1 21/1 24/1 +f 691/1 697/1 696/1 +f 698/1 21/1 696/1 +f 692/1 697/1 691/1 +f 697/1 699/1 696/1 f 699/1 698/1 696/1 -f 702/1 701/1 688/1 -f 703/1 699/1 697/1 -f 701/1 703/1 697/1 -f 693/1 704/1 700/1 -f 698/1 704/1 693/1 -f 705/1 698/1 699/1 -f 690/1 702/1 689/1 -f 702/1 706/1 701/1 -f 707/1 704/1 698/1 -f 560/1 702/1 690/1 -f 706/1 703/1 701/1 -f 703/1 705/1 699/1 -f 700/1 708/1 21/1 -f 560/1 706/1 702/1 -f 709/1 705/1 703/1 -f 560/1 561/1 706/1 -f 706/1 709/1 703/1 -f 705/1 707/1 698/1 -f 561/1 709/1 706/1 -f 704/1 710/1 700/1 -f 711/1 707/1 705/1 -f 710/1 708/1 700/1 -f 709/1 711/1 705/1 -f 713/1 710/1 704/1 -f 561/1 712/1 709/1 -f 712/1 711/1 709/1 -f 561/1 564/1 712/1 -f 707/1 713/1 704/1 -f 714/1 713/1 707/1 -f 712/1 715/1 711/1 -f 708/1 23/1 21/1 -f 564/1 715/1 712/1 -f 716/1 714/1 707/1 -f 711/1 716/1 707/1 -f 715/1 716/1 711/1 -f 710/1 717/1 708/1 -f 564/1 566/1 715/1 -f 713/1 717/1 710/1 -f 718/1 717/1 713/1 -f 714/1 718/1 713/1 -f 719/1 718/1 714/1 -f 716/1 719/1 714/1 -f 720/1 716/1 715/1 -f 566/1 720/1 715/1 -f 716/1 721/1 719/1 -f 722/1 721/1 716/1 -f 720/1 722/1 716/1 -f 247/1 722/1 720/1 -f 723/1 29/1 23/1 -f 246/1 722/1 247/1 -f 246/1 724/1 722/1 -f 708/1 723/1 23/1 -f 725/1 723/1 708/1 -f 724/1 721/1 722/1 -f 724/1 726/1 721/1 -f 717/1 725/1 708/1 -f 727/1 725/1 717/1 -f 726/1 719/1 721/1 -f 726/1 728/1 719/1 -f 718/1 727/1 717/1 -f 728/1 718/1 719/1 -f 728/1 727/1 718/1 -f 726/1 729/1 728/1 -f 246/1 730/1 724/1 -f 730/1 726/1 724/1 -f 730/1 729/1 726/1 -f 570/1 730/1 246/1 -f 723/1 731/1 29/1 -f 725/1 731/1 723/1 -f 732/1 731/1 725/1 -f 727/1 732/1 725/1 -f 733/1 732/1 727/1 -f 728/1 733/1 727/1 -f 734/1 733/1 728/1 -f 729/1 734/1 728/1 -f 735/1 734/1 729/1 -f 730/1 735/1 729/1 -f 736/1 735/1 730/1 -f 570/1 736/1 730/1 -f 731/1 737/1 29/1 -f 738/1 737/1 731/1 -f 739/1 738/1 731/1 -f 732/1 739/1 731/1 -f 570/1 572/1 736/1 -f 740/1 739/1 732/1 -f 733/1 740/1 732/1 -f 741/1 740/1 733/1 -f 734/1 741/1 733/1 -f 742/1 741/1 734/1 -f 735/1 742/1 734/1 -f 572/1 742/1 735/1 -f 736/1 572/1 735/1 -f 740/1 743/1 739/1 -f 741/1 743/1 740/1 -f 737/1 744/1 29/1 -f 744/1 30/1 29/1 -f 745/1 743/1 741/1 -f 742/1 745/1 741/1 -f 746/1 745/1 742/1 -f 572/1 746/1 742/1 -f 574/1 746/1 572/1 -f 738/1 744/1 737/1 -f 739/1 747/1 738/1 -f 748/1 744/1 738/1 -f 749/1 747/1 739/1 -f 743/1 749/1 739/1 -f 744/1 750/1 30/1 -f 747/1 748/1 738/1 -f 752/1 749/1 743/1 -f 745/1 752/1 743/1 -f 751/1 748/1 747/1 -f 749/1 751/1 747/1 -f 753/1 752/1 745/1 -f 750/1 18/1 30/1 -f 746/1 753/1 745/1 -f 748/1 754/1 744/1 -f 754/1 750/1 744/1 -f 755/1 753/1 746/1 -f 574/1 755/1 746/1 -f 751/1 756/1 748/1 -f 757/1 751/1 749/1 -f 752/1 757/1 749/1 -f 758/1 18/1 750/1 -f 759/1 757/1 752/1 -f 753/1 759/1 752/1 -f 756/1 760/1 748/1 -f 760/1 754/1 748/1 -f 754/1 758/1 750/1 -f 761/1 756/1 751/1 -f 755/1 759/1 753/1 -f 760/1 762/1 754/1 -f 757/1 761/1 751/1 -f 762/1 758/1 754/1 -f 755/1 763/1 759/1 -f 756/1 764/1 760/1 -f 765/1 756/1 761/1 -f 766/1 761/1 757/1 -f 759/1 766/1 757/1 -f 764/1 768/1 760/1 -f 768/1 762/1 760/1 -f 769/1 766/1 759/1 -f 763/1 769/1 759/1 -f 770/1 764/1 756/1 -f 765/1 770/1 756/1 -f 768/1 767/1 762/1 -f 771/1 765/1 761/1 -f 766/1 771/1 761/1 -f 769/1 771/1 766/1 -f 770/1 768/1 764/1 -f 578/1 771/1 769/1 -f 771/1 770/1 765/1 -f 773/1 767/1 768/1 -f 774/1 770/1 771/1 -f 772/1 768/1 770/1 -f 578/1 774/1 771/1 -f 772/1 775/1 768/1 -f 775/1 773/1 768/1 -f 774/1 776/1 770/1 -f 776/1 772/1 770/1 -f 578/1 579/1 774/1 -f 579/1 776/1 774/1 -f 776/1 777/1 772/1 -f 777/1 775/1 772/1 -f 579/1 581/1 776/1 -f 581/1 777/1 776/1 -f 758/1 778/1 18/1 -f 758/1 762/1 778/1 -f 762/1 767/1 778/1 -f 767/1 779/1 778/1 -f 773/1 779/1 767/1 -f 773/1 780/1 779/1 -f 775/1 780/1 773/1 -f 775/1 777/1 780/1 -f 777/1 781/1 780/1 -f 581/1 781/1 777/1 -f 139/1 399/1 140/1 -f 399/1 252/1 140/1 -f 18/1 3/1 19/1 -f 33/1 51/1 46/1 -f 18/1 8/1 3/1 -f 38/1 51/1 33/1 -f 182/1 116/1 94/1 -f 174/1 182/1 94/1 -f 161/1 410/1 139/1 -f 410/1 399/1 139/1 -f 423/1 356/1 379/1 -f 429/1 423/1 379/1 -f 18/1 778/1 8/1 -f 496/1 682/1 38/1 -f 682/1 51/1 38/1 -f 778/1 779/1 8/1 -f 779/1 293/1 8/1 -f 683/1 682/1 496/1 -f 779/1 780/1 293/1 -f 498/1 683/1 496/1 -f 684/1 683/1 498/1 -f 780/1 781/1 293/1 -f 781/1 174/1 293/1 -f 781/1 182/1 174/1 -f 781/1 161/1 182/1 -f 781/1 410/1 161/1 -f 781/1 684/1 410/1 -f 684/1 429/1 410/1 -f 684/1 423/1 429/1 -f 684/1 498/1 423/1 -f 355/1 550/1 492/1 -f 354/1 355/1 492/1 -f 493/1 354/1 492/1 -f 559/1 354/1 493/1 -f 558/1 559/1 493/1 -f 92/1 353/1 289/1 -f 90/1 92/1 289/1 -f 290/1 90/1 289/1 -f 347/1 90/1 290/1 -f 784/1 783/1 782/1 -f 785/1 783/1 784/1 -f 786/1 785/1 784/1 +f 692/1 700/1 697/1 +f 698/1 22/1 21/1 +f 701/1 699/1 697/1 +f 700/1 701/1 697/1 +f 693/1 700/1 692/1 +f 702/1 700/1 693/1 +f 698/1 703/1 22/1 +f 704/1 698/1 699/1 +f 701/1 704/1 699/1 +f 705/1 701/1 700/1 +f 702/1 705/1 700/1 +f 694/1 702/1 693/1 +f 706/1 702/1 694/1 +f 695/1 707/1 694/1 +f 705/1 704/1 701/1 +f 707/1 706/1 694/1 +f 708/1 705/1 702/1 +f 706/1 708/1 702/1 +f 698/1 709/1 703/1 +f 704/1 709/1 698/1 +f 710/1 704/1 705/1 +f 241/1 707/1 695/1 +f 707/1 711/1 706/1 +f 712/1 709/1 704/1 +f 568/1 707/1 241/1 +f 711/1 708/1 706/1 +f 708/1 710/1 705/1 +f 703/1 713/1 22/1 +f 568/1 711/1 707/1 +f 714/1 710/1 708/1 +f 568/1 570/1 711/1 +f 711/1 714/1 708/1 +f 710/1 712/1 704/1 +f 570/1 714/1 711/1 +f 709/1 715/1 703/1 +f 716/1 712/1 710/1 +f 715/1 713/1 703/1 +f 714/1 716/1 710/1 +f 717/1 715/1 709/1 +f 570/1 718/1 714/1 +f 718/1 716/1 714/1 +f 570/1 573/1 718/1 +f 712/1 717/1 709/1 +f 719/1 717/1 712/1 +f 718/1 720/1 716/1 +f 713/1 25/1 22/1 +f 573/1 720/1 718/1 +f 721/1 719/1 712/1 +f 716/1 721/1 712/1 +f 720/1 721/1 716/1 +f 715/1 722/1 713/1 +f 573/1 575/1 720/1 +f 717/1 722/1 715/1 +f 723/1 722/1 717/1 +f 719/1 723/1 717/1 +f 724/1 723/1 719/1 +f 721/1 724/1 719/1 +f 577/1 721/1 720/1 +f 575/1 577/1 720/1 +f 721/1 725/1 724/1 +f 726/1 725/1 721/1 +f 577/1 726/1 721/1 +f 266/1 726/1 577/1 +f 727/1 32/1 25/1 +f 265/1 726/1 266/1 +f 265/1 728/1 726/1 +f 713/1 727/1 25/1 +f 729/1 727/1 713/1 +f 728/1 725/1 726/1 +f 728/1 730/1 725/1 +f 722/1 729/1 713/1 +f 731/1 729/1 722/1 +f 730/1 724/1 725/1 +f 730/1 732/1 724/1 +f 723/1 731/1 722/1 +f 732/1 723/1 724/1 +f 732/1 731/1 723/1 +f 730/1 733/1 732/1 +f 265/1 734/1 728/1 +f 734/1 730/1 728/1 +f 734/1 733/1 730/1 +f 579/1 734/1 265/1 +f 727/1 735/1 32/1 +f 729/1 735/1 727/1 +f 736/1 735/1 729/1 +f 731/1 736/1 729/1 +f 737/1 736/1 731/1 +f 732/1 737/1 731/1 +f 738/1 737/1 732/1 +f 733/1 738/1 732/1 +f 739/1 738/1 733/1 +f 734/1 739/1 733/1 +f 740/1 739/1 734/1 +f 579/1 740/1 734/1 +f 735/1 741/1 32/1 +f 742/1 741/1 735/1 +f 743/1 742/1 735/1 +f 736/1 743/1 735/1 +f 579/1 582/1 740/1 +f 744/1 743/1 736/1 +f 737/1 744/1 736/1 +f 745/1 744/1 737/1 +f 738/1 745/1 737/1 +f 746/1 745/1 738/1 +f 739/1 746/1 738/1 +f 582/1 746/1 739/1 +f 740/1 582/1 739/1 +f 744/1 747/1 743/1 +f 745/1 747/1 744/1 +f 741/1 748/1 32/1 +f 748/1 33/1 32/1 +f 749/1 747/1 745/1 +f 746/1 749/1 745/1 +f 750/1 749/1 746/1 +f 582/1 750/1 746/1 +f 584/1 750/1 582/1 +f 742/1 748/1 741/1 +f 743/1 751/1 742/1 +f 752/1 748/1 742/1 +f 753/1 751/1 743/1 +f 747/1 753/1 743/1 +f 748/1 754/1 33/1 +f 751/1 752/1 742/1 +f 755/1 753/1 747/1 +f 749/1 755/1 747/1 +f 756/1 752/1 751/1 +f 753/1 756/1 751/1 +f 757/1 755/1 749/1 +f 754/1 27/1 33/1 +f 750/1 757/1 749/1 +f 752/1 758/1 748/1 +f 758/1 754/1 748/1 +f 586/1 757/1 750/1 +f 584/1 586/1 750/1 +f 756/1 759/1 752/1 +f 760/1 756/1 753/1 +f 755/1 760/1 753/1 +f 761/1 27/1 754/1 +f 762/1 760/1 755/1 +f 757/1 762/1 755/1 +f 759/1 763/1 752/1 +f 763/1 758/1 752/1 +f 758/1 761/1 754/1 +f 764/1 759/1 756/1 +f 586/1 762/1 757/1 +f 763/1 765/1 758/1 +f 760/1 764/1 756/1 +f 765/1 761/1 758/1 +f 586/1 589/1 762/1 +f 759/1 766/1 763/1 +f 767/1 759/1 764/1 +f 768/1 764/1 760/1 +f 762/1 768/1 760/1 +f 766/1 769/1 763/1 +f 769/1 765/1 763/1 +f 590/1 768/1 762/1 +f 589/1 590/1 762/1 +f 770/1 766/1 759/1 +f 767/1 770/1 759/1 +f 769/1 771/1 765/1 +f 772/1 767/1 764/1 +f 768/1 772/1 764/1 +f 590/1 772/1 768/1 +f 770/1 769/1 766/1 +f 592/1 772/1 590/1 +f 772/1 770/1 767/1 +f 773/1 771/1 769/1 +f 774/1 770/1 772/1 +f 775/1 769/1 770/1 +f 592/1 774/1 772/1 +f 775/1 776/1 769/1 +f 776/1 773/1 769/1 +f 774/1 777/1 770/1 +f 777/1 775/1 770/1 +f 592/1 594/1 774/1 +f 594/1 777/1 774/1 +f 777/1 778/1 775/1 +f 778/1 776/1 775/1 +f 594/1 268/1 777/1 +f 268/1 778/1 777/1 +f 761/1 779/1 27/1 +f 761/1 765/1 779/1 +f 765/1 771/1 779/1 +f 771/1 780/1 779/1 +f 773/1 780/1 771/1 +f 773/1 781/1 780/1 +f 776/1 781/1 773/1 +f 776/1 778/1 781/1 +f 778/1 270/1 781/1 +f 268/1 270/1 778/1 +f 146/1 416/1 147/1 +f 416/1 280/1 147/1 +f 27/1 3/1 23/1 +f 36/1 58/1 54/1 +f 27/1 10/1 3/1 +f 41/1 58/1 36/1 +f 191/1 128/1 106/1 +f 181/1 191/1 106/1 +f 168/1 427/1 146/1 +f 427/1 416/1 146/1 +f 440/1 378/1 401/1 +f 448/1 440/1 401/1 +f 27/1 779/1 10/1 +f 533/1 689/1 41/1 +f 689/1 58/1 41/1 +f 779/1 780/1 10/1 +f 780/1 189/1 10/1 +f 690/1 689/1 533/1 +f 780/1 781/1 189/1 +f 446/1 690/1 533/1 +f 271/1 690/1 446/1 +f 781/1 270/1 189/1 +f 270/1 181/1 189/1 +f 270/1 191/1 181/1 +f 270/1 168/1 191/1 +f 270/1 427/1 168/1 +f 270/1 271/1 427/1 +f 271/1 448/1 427/1 +f 271/1 440/1 448/1 +f 271/1 446/1 440/1 +f 372/1 516/1 512/1 +f 371/1 372/1 512/1 +f 513/1 371/1 512/1 +f 514/1 371/1 513/1 +f 567/1 514/1 513/1 +f 99/1 321/1 318/1 +f 97/1 99/1 318/1 +f 319/1 97/1 318/1 +f 322/1 97/1 319/1 +f 782/1 783/1 784/1 +f 785/1 783/1 782/1 +f 786/1 785/1 782/1 f 787/1 785/1 786/1 f 788/1 787/1 786/1 f 789/1 787/1 788/1 @@ -3607,10 +3611,10 @@ f 810/1 809/1 808/1 f 811/1 809/1 810/1 f 812/1 811/1 810/1 f 813/1 811/1 812/1 -f 816/1 817/1 815/1 -f 814/1 816/1 815/1 -f 818/1 819/1 817/1 -f 816/1 818/1 817/1 +f 814/1 815/1 816/1 +f 817/1 814/1 816/1 +f 818/1 819/1 815/1 +f 814/1 818/1 815/1 f 818/1 820/1 819/1 f 820/1 821/1 819/1 f 820/1 822/1 821/1 @@ -3620,12 +3624,12 @@ f 825/1 826/1 824/1 f 823/1 825/1 824/1 f 813/1 812/1 826/1 f 825/1 813/1 826/1 -f 827/1 814/1 828/1 -f 814/1 815/1 828/1 -f 831/1 832/1 830/1 -f 829/1 831/1 830/1 -f 833/1 834/1 832/1 -f 831/1 833/1 832/1 +f 827/1 817/1 828/1 +f 817/1 816/1 828/1 +f 829/1 830/1 831/1 +f 832/1 829/1 831/1 +f 833/1 834/1 830/1 +f 829/1 833/1 830/1 f 835/1 836/1 834/1 f 833/1 835/1 834/1 f 835/1 837/1 836/1 @@ -3635,29 +3639,29 @@ f 840/1 841/1 839/1 f 838/1 840/1 839/1 f 827/1 828/1 841/1 f 840/1 827/1 841/1 -f 783/1 829/1 782/1 -f 829/1 830/1 782/1 +f 783/1 832/1 784/1 +f 832/1 831/1 784/1 f 796/1 798/1 783/1 -f 798/1 829/1 783/1 +f 798/1 832/1 783/1 f 794/1 796/1 783/1 f 792/1 794/1 783/1 -f 827/1 840/1 829/1 -f 840/1 838/1 829/1 -f 814/1 827/1 829/1 -f 798/1 814/1 829/1 -f 838/1 835/1 829/1 -f 835/1 833/1 829/1 +f 827/1 840/1 832/1 +f 840/1 838/1 832/1 +f 817/1 827/1 832/1 +f 798/1 817/1 832/1 +f 838/1 835/1 832/1 +f 835/1 833/1 832/1 f 785/1 792/1 783/1 -f 833/1 831/1 829/1 +f 833/1 829/1 832/1 f 787/1 792/1 785/1 f 790/1 792/1 787/1 f 789/1 790/1 787/1 -f 811/1 814/1 798/1 -f 811/1 813/1 814/1 +f 811/1 817/1 798/1 +f 811/1 813/1 817/1 f 800/1 811/1 798/1 -f 813/1 816/1 814/1 +f 813/1 814/1 817/1 f 802/1 811/1 800/1 -f 813/1 818/1 816/1 +f 813/1 818/1 814/1 f 813/1 820/1 818/1 f 804/1 811/1 802/1 f 807/1 809/1 804/1 @@ -3665,27 +3669,27 @@ f 809/1 811/1 804/1 f 813/1 825/1 820/1 f 825/1 823/1 820/1 f 823/1 822/1 820/1 -f 830/1 815/1 782/1 -f 797/1 795/1 782/1 -f 815/1 797/1 782/1 -f 795/1 793/1 782/1 -f 793/1 791/1 782/1 -f 834/1 836/1 830/1 -f 837/1 839/1 830/1 -f 839/1 841/1 830/1 -f 841/1 828/1 830/1 -f 828/1 815/1 830/1 -f 836/1 837/1 830/1 -f 791/1 784/1 782/1 -f 832/1 834/1 830/1 -f 791/1 786/1 784/1 +f 831/1 816/1 784/1 +f 797/1 795/1 784/1 +f 816/1 797/1 784/1 +f 795/1 793/1 784/1 +f 793/1 791/1 784/1 +f 834/1 836/1 831/1 +f 837/1 839/1 831/1 +f 839/1 841/1 831/1 +f 841/1 828/1 831/1 +f 828/1 816/1 831/1 +f 836/1 837/1 831/1 +f 791/1 782/1 784/1 +f 830/1 834/1 831/1 +f 791/1 786/1 782/1 f 791/1 788/1 786/1 f 812/1 810/1 797/1 -f 815/1 812/1 797/1 +f 816/1 812/1 797/1 f 810/1 799/1 797/1 -f 817/1 812/1 815/1 +f 815/1 812/1 816/1 f 810/1 801/1 799/1 -f 819/1 812/1 817/1 +f 819/1 812/1 815/1 f 810/1 803/1 801/1 f 821/1 812/1 819/1 f 810/1 808/1 803/1 @@ -3693,184 +3697,184 @@ f 808/1 806/1 803/1 f 806/1 805/1 803/1 f 824/1 826/1 821/1 f 826/1 812/1 821/1 -f 842/1 843/1 857/1 -f 842/1 844/1 843/1 -f 845/1 846/1 847/1 -f 848/1 845/1 847/1 -f 845/1 849/1 846/1 -f 845/1 850/1 849/1 -f 845/1 851/1 850/1 -f 851/1 852/1 850/1 -f 851/1 853/1 852/1 -f 854/1 855/1 853/1 -f 851/1 854/1 853/1 -f 854/1 856/1 855/1 -f 857/1 843/1 856/1 -f 854/1 857/1 856/1 -f 858/1 940/1 859/1 -f 858/1 860/1 940/1 -f 861/1 865/1 848/1 -f 865/1 862/1 848/1 -f 863/1 845/1 848/1 -f 862/1 863/1 848/1 -f 863/1 864/1 845/1 -f 866/1 865/1 861/1 -f 868/1 867/1 866/1 -f 869/1 865/1 866/1 -f 870/1 868/1 866/1 -f 867/1 869/1 866/1 -f 871/1 870/1 866/1 -f 872/1 870/1 871/1 -f 873/1 870/1 872/1 -f 874/1 870/1 873/1 -f 875/1 870/1 874/1 -f 876/1 870/1 875/1 -f 877/1 876/1 875/1 -f 876/1 877/1 878/1 -f 879/1 876/1 878/1 -f 870/1 880/1 868/1 -f 870/1 881/1 880/1 -f 881/1 882/1 880/1 -f 882/1 883/1 880/1 -f 883/1 884/1 880/1 -f 885/1 879/1 878/1 -f 883/1 886/1 884/1 -f 887/1 879/1 885/1 -f 883/1 888/1 886/1 -f 889/1 879/1 887/1 -f 890/1 889/1 887/1 -f 891/1 890/1 887/1 -f 892/1 893/1 888/1 -f 883/1 892/1 888/1 -f 894/1 890/1 891/1 -f 846/1 896/1 847/1 -f 896/1 895/1 847/1 -f 897/1 898/1 846/1 -f 898/1 899/1 846/1 -f 901/1 896/1 846/1 -f 899/1 900/1 846/1 -f 900/1 901/1 846/1 -f 902/1 903/1 897/1 -f 903/1 898/1 897/1 -f 904/1 902/1 897/1 -f 905/1 902/1 904/1 -f 906/1 902/1 905/1 -f 907/1 902/1 906/1 -f 908/1 902/1 907/1 -f 909/1 908/1 907/1 -f 910/1 908/1 909/1 -f 903/1 902/1 911/1 -f 902/1 921/1 911/1 -f 912/1 908/1 910/1 -f 913/1 914/1 912/1 -f 914/1 908/1 912/1 -f 915/1 913/1 912/1 -f 921/1 916/1 911/1 -f 917/1 915/1 912/1 -f 921/1 918/1 916/1 -f 921/1 919/1 918/1 -f 920/1 915/1 917/1 -f 921/1 922/1 919/1 -f 922/1 923/1 919/1 -f 924/1 925/1 920/1 -f 925/1 915/1 920/1 -f 923/1 926/1 919/1 -f 923/1 927/1 926/1 -f 866/1 861/1 895/1 -f 896/1 866/1 895/1 -f 871/1 866/1 896/1 -f 901/1 871/1 896/1 -f 872/1 871/1 901/1 +f 842/1 843/1 844/1 +f 842/1 845/1 843/1 +f 846/1 847/1 848/1 +f 849/1 846/1 848/1 +f 846/1 850/1 847/1 +f 846/1 851/1 850/1 +f 846/1 852/1 851/1 +f 852/1 853/1 851/1 +f 852/1 854/1 853/1 +f 855/1 856/1 854/1 +f 852/1 855/1 854/1 +f 855/1 857/1 856/1 +f 844/1 843/1 857/1 +f 855/1 844/1 857/1 +f 858/1 859/1 860/1 +f 858/1 861/1 859/1 +f 862/1 863/1 849/1 +f 863/1 864/1 849/1 +f 865/1 846/1 849/1 +f 864/1 865/1 849/1 +f 865/1 866/1 846/1 +f 867/1 863/1 862/1 +f 868/1 869/1 867/1 +f 870/1 863/1 867/1 +f 871/1 868/1 867/1 +f 869/1 870/1 867/1 +f 872/1 871/1 867/1 +f 873/1 871/1 872/1 +f 874/1 871/1 873/1 +f 875/1 871/1 874/1 +f 876/1 871/1 875/1 +f 877/1 871/1 876/1 +f 878/1 877/1 876/1 +f 877/1 878/1 879/1 +f 880/1 877/1 879/1 +f 871/1 881/1 868/1 +f 871/1 882/1 881/1 +f 882/1 883/1 881/1 +f 883/1 884/1 881/1 +f 884/1 885/1 881/1 +f 886/1 880/1 879/1 +f 884/1 887/1 885/1 +f 888/1 880/1 886/1 +f 884/1 889/1 887/1 +f 890/1 880/1 888/1 +f 891/1 890/1 888/1 +f 892/1 891/1 888/1 +f 893/1 894/1 889/1 +f 884/1 893/1 889/1 +f 895/1 891/1 892/1 +f 847/1 896/1 848/1 +f 896/1 897/1 848/1 +f 898/1 899/1 847/1 +f 899/1 900/1 847/1 +f 901/1 896/1 847/1 +f 900/1 902/1 847/1 +f 902/1 901/1 847/1 +f 903/1 904/1 898/1 +f 904/1 899/1 898/1 +f 905/1 903/1 898/1 +f 906/1 903/1 905/1 +f 907/1 903/1 906/1 +f 908/1 903/1 907/1 +f 909/1 903/1 908/1 +f 910/1 909/1 908/1 +f 911/1 909/1 910/1 +f 904/1 903/1 912/1 +f 903/1 913/1 912/1 +f 914/1 909/1 911/1 +f 915/1 916/1 914/1 +f 916/1 909/1 914/1 +f 917/1 915/1 914/1 +f 913/1 918/1 912/1 +f 919/1 917/1 914/1 +f 913/1 920/1 918/1 +f 913/1 921/1 920/1 +f 922/1 917/1 919/1 +f 913/1 923/1 921/1 +f 923/1 924/1 921/1 +f 925/1 926/1 922/1 +f 926/1 917/1 922/1 +f 924/1 927/1 921/1 +f 924/1 928/1 927/1 +f 867/1 862/1 897/1 +f 896/1 867/1 897/1 +f 872/1 867/1 896/1 +f 901/1 872/1 896/1 f 873/1 872/1 901/1 -f 900/1 873/1 901/1 -f 874/1 873/1 900/1 -f 899/1 874/1 900/1 -f 875/1 874/1 899/1 -f 898/1 875/1 899/1 -f 877/1 875/1 898/1 -f 903/1 877/1 898/1 -f 878/1 877/1 911/1 -f 877/1 903/1 911/1 -f 902/1 879/1 921/1 -f 876/1 879/1 902/1 -f 916/1 878/1 911/1 -f 885/1 878/1 916/1 -f 918/1 885/1 916/1 -f 919/1 885/1 918/1 -f 887/1 885/1 919/1 -f 891/1 887/1 919/1 -f 926/1 891/1 919/1 -f 927/1 891/1 926/1 -f 894/1 891/1 927/1 -f 923/1 894/1 927/1 -f 890/1 894/1 923/1 -f 922/1 890/1 923/1 -f 889/1 890/1 922/1 -f 921/1 889/1 922/1 -f 879/1 889/1 921/1 -f 864/1 863/1 897/1 -f 863/1 904/1 897/1 -f 862/1 905/1 904/1 -f 863/1 862/1 904/1 -f 862/1 906/1 905/1 -f 862/1 865/1 906/1 -f 865/1 907/1 906/1 -f 865/1 869/1 907/1 -f 867/1 909/1 907/1 -f 869/1 867/1 907/1 -f 867/1 910/1 909/1 -f 867/1 868/1 910/1 -f 868/1 880/1 910/1 -f 880/1 912/1 910/1 -f 870/1 908/1 914/1 -f 881/1 870/1 914/1 -f 880/1 884/1 912/1 -f 884/1 917/1 912/1 -f 884/1 886/1 917/1 -f 888/1 920/1 917/1 -f 886/1 888/1 917/1 -f 888/1 924/1 920/1 -f 888/1 893/1 924/1 -f 892/1 925/1 924/1 -f 893/1 892/1 924/1 -f 883/1 915/1 925/1 -f 892/1 883/1 925/1 -f 882/1 913/1 915/1 +f 874/1 873/1 901/1 +f 902/1 874/1 901/1 +f 875/1 874/1 902/1 +f 900/1 875/1 902/1 +f 876/1 875/1 900/1 +f 899/1 876/1 900/1 +f 878/1 876/1 899/1 +f 904/1 878/1 899/1 +f 879/1 878/1 912/1 +f 878/1 904/1 912/1 +f 903/1 880/1 913/1 +f 877/1 880/1 903/1 +f 918/1 879/1 912/1 +f 886/1 879/1 918/1 +f 920/1 886/1 918/1 +f 921/1 886/1 920/1 +f 888/1 886/1 921/1 +f 892/1 888/1 921/1 +f 927/1 892/1 921/1 +f 928/1 892/1 927/1 +f 895/1 892/1 928/1 +f 924/1 895/1 928/1 +f 891/1 895/1 924/1 +f 923/1 891/1 924/1 +f 890/1 891/1 923/1 +f 913/1 890/1 923/1 +f 880/1 890/1 913/1 +f 866/1 865/1 898/1 +f 865/1 905/1 898/1 +f 864/1 906/1 905/1 +f 865/1 864/1 905/1 +f 864/1 907/1 906/1 +f 864/1 863/1 907/1 +f 863/1 908/1 907/1 +f 863/1 870/1 908/1 +f 869/1 910/1 908/1 +f 870/1 869/1 908/1 +f 869/1 911/1 910/1 +f 869/1 868/1 911/1 +f 868/1 881/1 911/1 +f 881/1 914/1 911/1 +f 871/1 909/1 916/1 +f 882/1 871/1 916/1 +f 881/1 885/1 914/1 +f 885/1 919/1 914/1 +f 885/1 887/1 919/1 +f 889/1 922/1 919/1 +f 887/1 889/1 919/1 +f 889/1 925/1 922/1 +f 889/1 894/1 925/1 +f 893/1 926/1 925/1 +f 894/1 893/1 925/1 +f 884/1 917/1 926/1 +f 893/1 884/1 926/1 +f 883/1 915/1 917/1 +f 884/1 883/1 917/1 +f 882/1 916/1 915/1 f 883/1 882/1 915/1 -f 881/1 914/1 913/1 -f 882/1 881/1 913/1 -f 861/1 928/1 895/1 -f 861/1 929/1 928/1 -f 861/1 930/1 929/1 -f 930/1 931/1 929/1 -f 932/1 933/1 931/1 -f 930/1 932/1 931/1 -f 932/1 934/1 933/1 -f 935/1 936/1 934/1 -f 932/1 935/1 934/1 -f 935/1 937/1 936/1 -f 938/1 930/1 848/1 -f 930/1 861/1 848/1 -f 939/1 932/1 938/1 -f 932/1 930/1 938/1 -f 940/1 935/1 939/1 -f 935/1 932/1 939/1 -f 895/1 928/1 847/1 -f 928/1 941/1 847/1 -f 928/1 929/1 941/1 -f 929/1 942/1 941/1 -f 929/1 931/1 942/1 -f 931/1 943/1 942/1 -f 931/1 933/1 943/1 -f 933/1 934/1 943/1 -f 934/1 944/1 943/1 -f 934/1 936/1 944/1 -f 936/1 945/1 944/1 -f 936/1 937/1 945/1 -f 937/1 859/1 945/1 -f 946/1 948/1 947/1 -f 946/1 949/1 948/1 -f 949/1 950/1 948/1 +f 862/1 929/1 897/1 +f 862/1 930/1 929/1 +f 862/1 931/1 930/1 +f 931/1 932/1 930/1 +f 933/1 934/1 932/1 +f 931/1 933/1 932/1 +f 933/1 935/1 934/1 +f 936/1 937/1 935/1 +f 933/1 936/1 935/1 +f 936/1 938/1 937/1 +f 939/1 931/1 849/1 +f 931/1 862/1 849/1 +f 940/1 933/1 939/1 +f 933/1 931/1 939/1 +f 859/1 936/1 940/1 +f 936/1 933/1 940/1 +f 897/1 929/1 848/1 +f 929/1 941/1 848/1 +f 929/1 930/1 941/1 +f 930/1 942/1 941/1 +f 930/1 932/1 942/1 +f 932/1 943/1 942/1 +f 932/1 934/1 943/1 +f 934/1 935/1 943/1 +f 935/1 944/1 943/1 +f 935/1 937/1 944/1 +f 937/1 945/1 944/1 +f 937/1 938/1 945/1 +f 938/1 860/1 945/1 +f 946/1 947/1 948/1 +f 946/1 949/1 947/1 +f 949/1 950/1 947/1 f 949/1 951/1 950/1 f 951/1 952/1 950/1 f 952/1 953/1 950/1 @@ -3882,30 +3886,30 @@ f 957/1 958/1 956/1 f 957/1 959/1 958/1 f 959/1 960/1 958/1 f 959/1 961/1 960/1 -f 960/1 860/1 858/1 -f 960/1 961/1 860/1 -f 946/1 935/1 940/1 -f 860/1 946/1 940/1 -f 860/1 961/1 946/1 +f 960/1 861/1 858/1 +f 960/1 961/1 861/1 +f 946/1 936/1 859/1 +f 861/1 946/1 859/1 +f 861/1 961/1 946/1 f 961/1 949/1 946/1 f 961/1 951/1 949/1 f 961/1 952/1 951/1 f 961/1 954/1 952/1 f 961/1 957/1 954/1 f 961/1 959/1 957/1 -f 960/1 858/1 859/1 -f 937/1 947/1 859/1 -f 947/1 960/1 859/1 -f 948/1 960/1 947/1 -f 950/1 960/1 948/1 +f 960/1 858/1 860/1 +f 938/1 948/1 860/1 +f 948/1 960/1 860/1 +f 947/1 960/1 948/1 +f 950/1 960/1 947/1 f 953/1 960/1 950/1 f 955/1 960/1 953/1 f 956/1 960/1 955/1 f 958/1 960/1 956/1 -f 946/1 947/1 937/1 -f 935/1 946/1 937/1 -f 962/1 864/1 897/1 -f 963/1 864/1 962/1 +f 946/1 948/1 938/1 +f 936/1 946/1 938/1 +f 962/1 866/1 898/1 +f 963/1 866/1 962/1 f 964/1 963/1 962/1 f 965/1 963/1 964/1 f 966/1 963/1 965/1 @@ -3914,65 +3918,65 @@ f 968/1 966/1 967/1 f 969/1 966/1 968/1 f 970/1 969/1 968/1 f 971/1 969/1 970/1 -f 963/1 845/1 864/1 -f 963/1 851/1 845/1 -f 966/1 851/1 963/1 -f 966/1 854/1 851/1 -f 969/1 854/1 966/1 -f 969/1 857/1 854/1 -f 846/1 962/1 897/1 -f 849/1 962/1 846/1 -f 849/1 964/1 962/1 -f 850/1 964/1 849/1 -f 850/1 965/1 964/1 -f 852/1 965/1 850/1 -f 852/1 967/1 965/1 -f 853/1 967/1 852/1 -f 855/1 967/1 853/1 -f 855/1 968/1 967/1 -f 856/1 968/1 855/1 -f 856/1 970/1 968/1 -f 843/1 970/1 856/1 +f 963/1 846/1 866/1 +f 963/1 852/1 846/1 +f 966/1 852/1 963/1 +f 966/1 855/1 852/1 +f 969/1 855/1 966/1 +f 969/1 844/1 855/1 +f 847/1 962/1 898/1 +f 850/1 962/1 847/1 +f 850/1 964/1 962/1 +f 851/1 964/1 850/1 +f 851/1 965/1 964/1 +f 853/1 965/1 851/1 +f 853/1 967/1 965/1 +f 854/1 967/1 853/1 +f 856/1 967/1 854/1 +f 856/1 968/1 967/1 +f 857/1 968/1 856/1 +f 857/1 970/1 968/1 +f 843/1 970/1 857/1 f 843/1 971/1 970/1 -f 987/1 844/1 842/1 -f 987/1 972/1 844/1 -f 973/1 975/1 974/1 -f 973/1 976/1 975/1 -f 976/1 977/1 975/1 -f 976/1 978/1 977/1 -f 979/1 980/1 977/1 -f 978/1 979/1 977/1 -f 981/1 982/1 980/1 -f 979/1 981/1 980/1 -f 981/1 983/1 982/1 -f 981/1 984/1 983/1 -f 984/1 985/1 983/1 -f 984/1 986/1 985/1 -f 986/1 987/1 985/1 -f 986/1 972/1 987/1 -f 969/1 974/1 857/1 -f 987/1 842/1 857/1 -f 974/1 987/1 857/1 -f 975/1 987/1 974/1 -f 977/1 987/1 975/1 -f 980/1 987/1 977/1 -f 982/1 987/1 980/1 -f 983/1 987/1 982/1 -f 985/1 987/1 983/1 -f 971/1 973/1 969/1 -f 973/1 974/1 969/1 -f 973/1 971/1 843/1 -f 844/1 973/1 843/1 -f 844/1 972/1 973/1 -f 972/1 976/1 973/1 -f 972/1 978/1 976/1 -f 972/1 979/1 978/1 -f 972/1 981/1 979/1 -f 972/1 984/1 981/1 -f 972/1 986/1 984/1 -f 870/1 988/1 908/1 +f 972/1 845/1 842/1 +f 972/1 973/1 845/1 +f 974/1 975/1 976/1 +f 974/1 977/1 975/1 +f 977/1 978/1 975/1 +f 977/1 979/1 978/1 +f 980/1 981/1 978/1 +f 979/1 980/1 978/1 +f 982/1 983/1 981/1 +f 980/1 982/1 981/1 +f 982/1 984/1 983/1 +f 982/1 985/1 984/1 +f 985/1 986/1 984/1 +f 985/1 987/1 986/1 +f 987/1 972/1 986/1 +f 987/1 973/1 972/1 +f 969/1 976/1 844/1 +f 972/1 842/1 844/1 +f 976/1 972/1 844/1 +f 975/1 972/1 976/1 +f 978/1 972/1 975/1 +f 981/1 972/1 978/1 +f 983/1 972/1 981/1 +f 984/1 972/1 983/1 +f 986/1 972/1 984/1 +f 971/1 974/1 969/1 +f 974/1 976/1 969/1 +f 974/1 971/1 843/1 +f 845/1 974/1 843/1 +f 845/1 973/1 974/1 +f 973/1 977/1 974/1 +f 973/1 979/1 977/1 +f 973/1 980/1 979/1 +f 973/1 982/1 980/1 +f 973/1 985/1 982/1 +f 973/1 987/1 985/1 +f 871/1 988/1 909/1 f 989/1 990/1 988/1 -f 870/1 989/1 988/1 +f 871/1 989/1 988/1 f 991/1 992/1 990/1 f 989/1 991/1 990/1 f 991/1 993/1 992/1 @@ -3982,8 +3986,8 @@ f 996/1 997/1 995/1 f 994/1 996/1 995/1 f 998/1 999/1 997/1 f 996/1 998/1 997/1 -f 1000/1 876/1 902/1 -f 1001/1 1000/1 902/1 +f 1000/1 877/1 903/1 +f 1001/1 1000/1 903/1 f 1002/1 1000/1 1001/1 f 1003/1 1002/1 1001/1 f 1004/1 1002/1 1003/1 @@ -3997,8 +4001,8 @@ f 1011/1 1009/1 1010/1 f 1012/1 1011/1 1010/1 f 1013/1 1011/1 1012/1 f 1014/1 1013/1 1012/1 -f 1000/1 870/1 876/1 -f 989/1 870/1 1000/1 +f 1000/1 871/1 877/1 +f 989/1 871/1 1000/1 f 1002/1 989/1 1000/1 f 991/1 989/1 1002/1 f 1005/1 991/1 1002/1 @@ -4009,8 +4013,8 @@ f 996/1 994/1 1009/1 f 1011/1 996/1 1009/1 f 998/1 996/1 1011/1 f 1013/1 998/1 1011/1 -f 908/1 988/1 902/1 -f 988/1 1001/1 902/1 +f 909/1 988/1 903/1 +f 988/1 1001/1 903/1 f 988/1 990/1 1001/1 f 990/1 1003/1 1001/1 f 990/1 1004/1 1003/1 @@ -4024,9 +4028,9 @@ f 995/1 997/1 1010/1 f 997/1 1012/1 1010/1 f 997/1 999/1 1012/1 f 999/1 1014/1 1012/1 -f 1017/1 1016/1 1015/1 -f 1017/1 1018/1 1016/1 -f 1019/1 1018/1 1017/1 +f 1015/1 1016/1 1017/1 +f 1015/1 1018/1 1016/1 +f 1019/1 1018/1 1015/1 f 1019/1 1020/1 1018/1 f 1021/1 1020/1 1019/1 f 1021/1 1022/1 1020/1 @@ -4053,104 +4057,104 @@ f 1042/1 1041/1 1040/1 f 1042/1 1043/1 1041/1 f 1044/1 1043/1 1045/1 f 1043/1 1042/1 1045/1 -f 1046/1 1047/1 1055/1 -f 1056/1 1046/1 1055/1 -f 1046/1 1048/1 1047/1 -f 1046/1 1049/1 1048/1 -f 1049/1 1050/1 1048/1 -f 1049/1 1051/1 1050/1 +f 1046/1 1047/1 1048/1 +f 1049/1 1046/1 1048/1 +f 1046/1 1050/1 1047/1 +f 1046/1 1051/1 1050/1 f 1051/1 1052/1 1050/1 -f 1044/1 1045/1 1052/1 -f 1051/1 1044/1 1052/1 -f 1053/1 1055/1 1054/1 -f 1056/1 1055/1 1053/1 -f 1071/1 1053/1 1072/1 -f 1053/1 1054/1 1072/1 -f 1057/1 1059/1 1058/1 -f 1059/1 1060/1 1058/1 -f 1059/1 1061/1 1060/1 -f 1061/1 1062/1 1060/1 +f 1051/1 1053/1 1052/1 +f 1053/1 1054/1 1052/1 +f 1044/1 1045/1 1054/1 +f 1053/1 1044/1 1054/1 +f 1055/1 1048/1 1056/1 +f 1049/1 1048/1 1055/1 +f 1057/1 1055/1 1058/1 +f 1055/1 1056/1 1058/1 +f 1059/1 1060/1 1061/1 +f 1060/1 1062/1 1061/1 +f 1060/1 1063/1 1062/1 f 1063/1 1064/1 1062/1 -f 1061/1 1063/1 1062/1 f 1065/1 1066/1 1064/1 f 1063/1 1065/1 1064/1 +f 1067/1 1068/1 1066/1 f 1065/1 1067/1 1066/1 -f 1065/1 1068/1 1067/1 -f 1069/1 1070/1 1067/1 -f 1068/1 1069/1 1067/1 -f 1071/1 1072/1 1070/1 -f 1069/1 1071/1 1070/1 -f 1054/1 998/1 1013/1 -f 1072/1 1054/1 1013/1 -f 1058/1 1072/1 1013/1 -f 1054/1 1055/1 998/1 -f 1055/1 1034/1 998/1 +f 1067/1 1069/1 1068/1 +f 1067/1 1070/1 1069/1 +f 1071/1 1072/1 1069/1 +f 1070/1 1071/1 1069/1 +f 1057/1 1058/1 1072/1 +f 1071/1 1057/1 1072/1 +f 1056/1 998/1 1013/1 +f 1058/1 1056/1 1013/1 +f 1061/1 1058/1 1013/1 +f 1056/1 1048/1 998/1 +f 1048/1 1034/1 998/1 f 1034/1 1032/1 998/1 -f 1032/1 1015/1 998/1 -f 1032/1 1017/1 1015/1 -f 1060/1 1062/1 1058/1 -f 1062/1 1064/1 1058/1 -f 1064/1 1066/1 1058/1 -f 1066/1 1067/1 1058/1 -f 1067/1 1070/1 1058/1 -f 1070/1 1072/1 1058/1 -f 1032/1 1019/1 1017/1 +f 1032/1 1017/1 998/1 +f 1032/1 1015/1 1017/1 +f 1062/1 1064/1 1061/1 +f 1064/1 1066/1 1061/1 +f 1066/1 1068/1 1061/1 +f 1068/1 1069/1 1061/1 +f 1069/1 1072/1 1061/1 +f 1072/1 1058/1 1061/1 +f 1032/1 1019/1 1015/1 f 1032/1 1021/1 1019/1 f 1032/1 1023/1 1021/1 f 1032/1 1026/1 1023/1 f 1032/1 1027/1 1026/1 f 1032/1 1029/1 1027/1 -f 1045/1 1042/1 1055/1 -f 1042/1 1034/1 1055/1 -f 1047/1 1048/1 1055/1 -f 1048/1 1050/1 1055/1 -f 1050/1 1052/1 1055/1 -f 1052/1 1045/1 1055/1 +f 1045/1 1042/1 1048/1 +f 1042/1 1034/1 1048/1 +f 1047/1 1050/1 1048/1 +f 1050/1 1052/1 1048/1 +f 1052/1 1054/1 1048/1 +f 1054/1 1045/1 1048/1 f 1042/1 1035/1 1034/1 f 1042/1 1038/1 1035/1 f 1042/1 1040/1 1038/1 -f 1057/1 1058/1 1013/1 -f 1014/1 1057/1 1013/1 +f 1059/1 1061/1 1013/1 +f 1014/1 1059/1 1013/1 f 999/1 1031/1 1014/1 -f 1031/1 1053/1 1014/1 -f 1053/1 1057/1 1014/1 +f 1031/1 1055/1 1014/1 +f 1055/1 1059/1 1014/1 f 1016/1 1031/1 999/1 f 1030/1 1031/1 1016/1 -f 1053/1 1059/1 1057/1 +f 1055/1 1060/1 1059/1 f 1018/1 1030/1 1016/1 -f 1053/1 1061/1 1059/1 +f 1055/1 1063/1 1060/1 f 1020/1 1030/1 1018/1 -f 1053/1 1063/1 1061/1 +f 1055/1 1065/1 1063/1 f 1022/1 1030/1 1020/1 -f 1053/1 1065/1 1063/1 +f 1055/1 1067/1 1065/1 f 1024/1 1030/1 1022/1 f 1025/1 1030/1 1024/1 -f 1053/1 1068/1 1065/1 -f 1053/1 1069/1 1068/1 +f 1055/1 1070/1 1067/1 +f 1055/1 1071/1 1070/1 f 1028/1 1030/1 1025/1 -f 1053/1 1071/1 1069/1 -f 1031/1 1056/1 1053/1 -f 1033/1 1056/1 1031/1 -f 1044/1 1056/1 1033/1 +f 1055/1 1057/1 1071/1 +f 1031/1 1049/1 1055/1 +f 1033/1 1049/1 1031/1 +f 1044/1 1049/1 1033/1 f 1043/1 1044/1 1033/1 f 1037/1 1039/1 1033/1 f 1039/1 1041/1 1033/1 f 1041/1 1043/1 1033/1 -f 1044/1 1051/1 1056/1 -f 1051/1 1046/1 1056/1 +f 1044/1 1053/1 1049/1 +f 1053/1 1046/1 1049/1 f 1036/1 1037/1 1033/1 -f 1051/1 1049/1 1046/1 -f 1015/1 999/1 998/1 -f 1015/1 1016/1 999/1 -f 941/1 848/1 847/1 -f 938/1 848/1 941/1 -f 942/1 938/1 941/1 -f 939/1 938/1 942/1 -f 943/1 939/1 942/1 -f 944/1 939/1 943/1 -f 940/1 939/1 944/1 -f 945/1 940/1 944/1 -f 859/1 940/1 945/1 +f 1053/1 1051/1 1046/1 +f 1017/1 999/1 998/1 +f 1017/1 1016/1 999/1 +f 941/1 849/1 848/1 +f 939/1 849/1 941/1 +f 942/1 939/1 941/1 +f 940/1 939/1 942/1 +f 943/1 940/1 942/1 +f 944/1 940/1 943/1 +f 859/1 940/1 944/1 +f 945/1 859/1 944/1 +f 860/1 859/1 945/1 f 1073/1 1074/1 1075/1 f 1074/1 1076/1 1075/1 f 1076/1 1077/1 1075/1 @@ -4211,109 +4215,109 @@ f 1104/1 1097/1 1096/1 f 1102/1 1097/1 1104/1 f 1092/1 1084/1 1081/1 f 1090/1 1084/1 1092/1 -f 1107/1 1106/1 1105/1 -f 1182/1 1108/1 1192/1 -f 1108/1 1109/1 1192/1 -f 1112/1 1110/1 1111/1 -f 1113/1 1112/1 1111/1 -f 1114/1 1112/1 1113/1 -f 1115/1 1114/1 1113/1 -f 1115/1 1116/1 1114/1 -f 1116/1 1117/1 1114/1 -f 1118/1 1120/1 1119/1 -f 1118/1 1121/1 1120/1 -f 1121/1 1122/1 1120/1 -f 1123/1 1122/1 1121/1 -f 1118/1 1119/1 1109/1 -f 1108/1 1118/1 1109/1 -f 1116/1 1124/1 1117/1 -f 1124/1 1125/1 1117/1 -f 1124/1 1126/1 1125/1 -f 1125/1 1134/1 1135/1 -f 1125/1 1126/1 1134/1 -f 1129/1 1128/1 1127/1 -f 1130/1 1129/1 1127/1 -f 1131/1 1129/1 1130/1 -f 1132/1 1131/1 1130/1 -f 1133/1 1132/1 1130/1 -f 1136/1 1137/1 1135/1 -f 1134/1 1136/1 1135/1 -f 1138/1 1132/1 1139/1 -f 1132/1 1133/1 1139/1 -f 1137/1 1139/1 1135/1 -f 1140/1 1141/1 1139/1 -f 1142/1 1140/1 1139/1 -f 1137/1 1142/1 1139/1 -f 1140/1 1143/1 1141/1 -f 1143/1 1144/1 1141/1 -f 1146/1 1142/1 1137/1 -f 1145/1 1146/1 1137/1 -f 1133/1 1125/1 1135/1 -f 1139/1 1133/1 1135/1 -f 1130/1 1127/1 1117/1 -f 1125/1 1130/1 1117/1 -f 1133/1 1130/1 1125/1 -f 1117/1 1123/1 1114/1 -f 1117/1 1127/1 1123/1 -f 1112/1 1118/1 1110/1 -f 1121/1 1118/1 1112/1 -f 1114/1 1121/1 1112/1 -f 1123/1 1121/1 1114/1 -f 1110/1 1107/1 1148/1 -f 1107/1 1147/1 1148/1 -f 1147/1 1151/1 1148/1 -f 1150/1 1149/1 1148/1 -f 1151/1 1153/1 1148/1 -f 1149/1 1154/1 1148/1 -f 1154/1 1169/1 1148/1 -f 1153/1 1152/1 1148/1 -f 1152/1 1150/1 1148/1 -f 1118/1 1108/1 1110/1 -f 1108/1 1107/1 1110/1 -f 1169/1 1155/1 1148/1 -f 1169/1 1156/1 1155/1 -f 1169/1 1157/1 1156/1 -f 1169/1 1158/1 1157/1 -f 1158/1 1159/1 1157/1 -f 1159/1 1160/1 1157/1 -f 1160/1 1161/1 1157/1 -f 1161/1 1162/1 1157/1 -f 1163/1 1169/1 1154/1 -f 1147/1 1164/1 1151/1 -f 1147/1 1165/1 1164/1 -f 1166/1 1169/1 1163/1 -f 1167/1 1169/1 1166/1 -f 1147/1 1168/1 1165/1 -f 1170/1 1171/1 1167/1 -f 1171/1 1169/1 1167/1 -f 1147/1 1172/1 1168/1 -f 1172/1 1173/1 1168/1 -f 1174/1 1171/1 1170/1 -f 1172/1 1175/1 1173/1 -f 1176/1 1174/1 1170/1 -f 1178/1 1174/1 1176/1 -f 1175/1 1176/1 1173/1 -f 1175/1 1177/1 1176/1 -f 1177/1 1178/1 1176/1 -f 1107/1 1108/1 1106/1 -f 1185/1 1179/1 1180/1 -f 1182/1 1181/1 1179/1 -f 1185/1 1182/1 1179/1 -f 1181/1 1183/1 1179/1 -f 1184/1 1185/1 1180/1 -f 1186/1 1185/1 1184/1 -f 1106/1 1108/1 1185/1 -f 1108/1 1182/1 1185/1 -f 1180/1 1179/1 1187/1 -f 1179/1 1188/1 1187/1 -f 1192/1 1193/1 1187/1 -f 1188/1 1192/1 1187/1 -f 1193/1 1189/1 1187/1 +f 1105/1 1106/1 1107/1 +f 1108/1 1109/1 1110/1 +f 1109/1 1111/1 1110/1 +f 1112/1 1113/1 1114/1 +f 1115/1 1112/1 1114/1 +f 1116/1 1112/1 1115/1 +f 1117/1 1116/1 1115/1 +f 1117/1 1118/1 1116/1 +f 1118/1 1119/1 1116/1 +f 1120/1 1121/1 1122/1 +f 1120/1 1123/1 1121/1 +f 1123/1 1124/1 1121/1 +f 1125/1 1124/1 1123/1 +f 1120/1 1122/1 1111/1 +f 1109/1 1120/1 1111/1 +f 1118/1 1126/1 1119/1 +f 1126/1 1127/1 1119/1 +f 1126/1 1128/1 1127/1 +f 1127/1 1129/1 1130/1 +f 1127/1 1128/1 1129/1 +f 1131/1 1132/1 1133/1 +f 1134/1 1131/1 1133/1 +f 1135/1 1131/1 1134/1 +f 1136/1 1135/1 1134/1 +f 1137/1 1136/1 1134/1 +f 1138/1 1139/1 1130/1 +f 1129/1 1138/1 1130/1 +f 1140/1 1136/1 1141/1 +f 1136/1 1137/1 1141/1 +f 1139/1 1141/1 1130/1 +f 1142/1 1143/1 1141/1 +f 1144/1 1142/1 1141/1 +f 1139/1 1144/1 1141/1 +f 1142/1 1145/1 1143/1 +f 1145/1 1146/1 1143/1 +f 1147/1 1144/1 1139/1 +f 1148/1 1147/1 1139/1 +f 1137/1 1127/1 1130/1 +f 1141/1 1137/1 1130/1 +f 1134/1 1133/1 1119/1 +f 1127/1 1134/1 1119/1 +f 1137/1 1134/1 1127/1 +f 1119/1 1125/1 1116/1 +f 1119/1 1133/1 1125/1 +f 1112/1 1120/1 1113/1 +f 1123/1 1120/1 1112/1 +f 1116/1 1123/1 1112/1 +f 1125/1 1123/1 1116/1 +f 1113/1 1105/1 1149/1 +f 1105/1 1150/1 1149/1 +f 1150/1 1151/1 1149/1 +f 1152/1 1153/1 1149/1 +f 1151/1 1154/1 1149/1 +f 1153/1 1155/1 1149/1 +f 1155/1 1156/1 1149/1 +f 1154/1 1157/1 1149/1 +f 1157/1 1152/1 1149/1 +f 1120/1 1109/1 1113/1 +f 1109/1 1105/1 1113/1 +f 1156/1 1158/1 1149/1 +f 1156/1 1159/1 1158/1 +f 1156/1 1160/1 1159/1 +f 1156/1 1161/1 1160/1 +f 1161/1 1162/1 1160/1 +f 1162/1 1163/1 1160/1 +f 1163/1 1164/1 1160/1 +f 1164/1 1165/1 1160/1 +f 1166/1 1156/1 1155/1 +f 1150/1 1167/1 1151/1 +f 1150/1 1168/1 1167/1 +f 1169/1 1156/1 1166/1 +f 1170/1 1156/1 1169/1 +f 1150/1 1171/1 1168/1 +f 1172/1 1173/1 1170/1 +f 1173/1 1156/1 1170/1 +f 1150/1 1174/1 1171/1 +f 1174/1 1175/1 1171/1 +f 1176/1 1173/1 1172/1 +f 1174/1 1177/1 1175/1 +f 1178/1 1176/1 1172/1 +f 1179/1 1176/1 1178/1 +f 1177/1 1178/1 1175/1 +f 1177/1 1180/1 1178/1 +f 1180/1 1179/1 1178/1 +f 1105/1 1109/1 1106/1 +f 1181/1 1182/1 1183/1 +f 1108/1 1184/1 1182/1 +f 1181/1 1108/1 1182/1 +f 1184/1 1185/1 1182/1 +f 1186/1 1181/1 1183/1 +f 1187/1 1181/1 1186/1 +f 1106/1 1109/1 1181/1 +f 1109/1 1108/1 1181/1 +f 1183/1 1182/1 1188/1 +f 1182/1 1189/1 1188/1 +f 1110/1 1190/1 1188/1 +f 1189/1 1110/1 1188/1 f 1190/1 1191/1 1188/1 -f 1191/1 1192/1 1188/1 -f 1193/1 1194/1 1189/1 -f 1192/1 1105/1 1193/1 -f 1109/1 1105/1 1192/1 +f 1192/1 1193/1 1189/1 +f 1193/1 1110/1 1189/1 +f 1190/1 1194/1 1191/1 +f 1110/1 1107/1 1190/1 +f 1111/1 1107/1 1110/1 f 1195/1 1196/1 1197/1 f 1198/1 1195/1 1197/1 f 1195/1 1199/1 1196/1 @@ -4329,126 +4333,126 @@ f 1208/1 1202/1 1206/1 f 1209/1 1210/1 1206/1 f 1210/1 1208/1 1206/1 f 1207/1 1211/1 1205/1 -f 1213/1 1212/1 1205/1 -f 1211/1 1213/1 1205/1 -f 1212/1 1209/1 1206/1 -f 1212/1 1214/1 1205/1 -f 1111/1 1212/1 1206/1 +f 1212/1 1213/1 1205/1 +f 1211/1 1212/1 1205/1 +f 1213/1 1209/1 1206/1 +f 1213/1 1214/1 1205/1 +f 1114/1 1213/1 1206/1 f 1214/1 1215/1 1205/1 -f 1119/1 1111/1 1206/1 +f 1122/1 1114/1 1206/1 f 1205/1 1216/1 1217/1 f 1215/1 1216/1 1205/1 -f 1105/1 1119/1 1206/1 -f 1109/1 1119/1 1105/1 +f 1107/1 1122/1 1206/1 +f 1111/1 1122/1 1107/1 f 1216/1 1218/1 1217/1 f 1216/1 1219/1 1218/1 f 1216/1 1220/1 1219/1 f 1216/1 1221/1 1220/1 -f 1222/1 1212/1 1213/1 -f 1212/1 1223/1 1209/1 -f 1224/1 1212/1 1222/1 -f 1212/1 1225/1 1223/1 -f 1225/1 1212/1 1224/1 -f 1119/1 1113/1 1111/1 -f 1119/1 1120/1 1113/1 -f 1120/1 1115/1 1113/1 -f 1120/1 1122/1 1115/1 -f 1128/1 1116/1 1115/1 -f 1122/1 1128/1 1115/1 -f 1128/1 1129/1 1116/1 -f 1129/1 1131/1 1116/1 -f 1131/1 1124/1 1116/1 -f 1131/1 1132/1 1124/1 -f 1132/1 1126/1 1124/1 -f 1126/1 1138/1 1134/1 -f 1126/1 1132/1 1138/1 -f 1138/1 1228/1 1134/1 -f 1228/1 1226/1 1134/1 -f 1226/1 1136/1 1134/1 -f 1227/1 1228/1 1138/1 -f 1229/1 1230/1 1227/1 -f 1230/1 1228/1 1227/1 -f 1226/1 1231/1 1136/1 -f 1226/1 1232/1 1231/1 -f 1226/1 1228/1 1142/1 -f 1228/1 1140/1 1142/1 -f 1105/1 1185/1 1193/1 -f 1105/1 1106/1 1185/1 -f 1141/1 1138/1 1139/1 -f 1141/1 1227/1 1138/1 -f 1196/1 1178/1 1197/1 -f 1178/1 1177/1 1197/1 -f 1199/1 1178/1 1196/1 -f 1177/1 1175/1 1197/1 -f 1175/1 1200/1 1197/1 -f 1174/1 1178/1 1199/1 -f 1201/1 1174/1 1199/1 -f 1175/1 1172/1 1200/1 -f 1172/1 1203/1 1200/1 -f 1171/1 1174/1 1201/1 -f 1205/1 1171/1 1201/1 -f 1172/1 1147/1 1203/1 -f 1147/1 1206/1 1203/1 -f 1169/1 1171/1 1205/1 -f 1158/1 1169/1 1217/1 -f 1169/1 1205/1 1217/1 -f 1218/1 1158/1 1217/1 -f 1159/1 1158/1 1218/1 -f 1219/1 1159/1 1218/1 -f 1160/1 1159/1 1219/1 -f 1220/1 1160/1 1219/1 -f 1161/1 1160/1 1220/1 -f 1221/1 1161/1 1220/1 -f 1162/1 1161/1 1221/1 -f 1216/1 1162/1 1221/1 -f 1157/1 1162/1 1216/1 -f 1215/1 1157/1 1216/1 -f 1156/1 1157/1 1215/1 -f 1214/1 1156/1 1215/1 -f 1155/1 1156/1 1214/1 -f 1212/1 1155/1 1214/1 -f 1148/1 1155/1 1212/1 -f 1111/1 1148/1 1212/1 -f 1110/1 1148/1 1111/1 -f 1147/1 1107/1 1206/1 -f 1107/1 1105/1 1206/1 -f 1198/1 1176/1 1195/1 -f 1173/1 1176/1 1198/1 -f 1176/1 1170/1 1195/1 -f 1202/1 1173/1 1198/1 -f 1170/1 1204/1 1195/1 -f 1168/1 1173/1 1202/1 -f 1170/1 1167/1 1204/1 -f 1167/1 1207/1 1204/1 -f 1165/1 1168/1 1202/1 -f 1208/1 1165/1 1202/1 -f 1167/1 1166/1 1207/1 -f 1166/1 1211/1 1207/1 -f 1166/1 1163/1 1211/1 -f 1210/1 1164/1 1208/1 -f 1164/1 1165/1 1208/1 -f 1163/1 1213/1 1211/1 +f 1222/1 1213/1 1212/1 +f 1213/1 1223/1 1209/1 +f 1224/1 1213/1 1222/1 +f 1213/1 1225/1 1223/1 +f 1225/1 1213/1 1224/1 +f 1122/1 1115/1 1114/1 +f 1122/1 1121/1 1115/1 +f 1121/1 1117/1 1115/1 +f 1121/1 1124/1 1117/1 +f 1132/1 1118/1 1117/1 +f 1124/1 1132/1 1117/1 +f 1132/1 1131/1 1118/1 +f 1131/1 1135/1 1118/1 +f 1135/1 1126/1 1118/1 +f 1135/1 1136/1 1126/1 +f 1136/1 1128/1 1126/1 +f 1128/1 1140/1 1129/1 +f 1128/1 1136/1 1140/1 +f 1140/1 1226/1 1129/1 +f 1226/1 1227/1 1129/1 +f 1227/1 1138/1 1129/1 +f 1228/1 1226/1 1140/1 +f 1229/1 1230/1 1228/1 +f 1230/1 1226/1 1228/1 +f 1227/1 1231/1 1138/1 +f 1227/1 1232/1 1231/1 +f 1227/1 1226/1 1144/1 +f 1226/1 1142/1 1144/1 +f 1107/1 1181/1 1190/1 +f 1107/1 1106/1 1181/1 +f 1143/1 1140/1 1141/1 +f 1143/1 1228/1 1140/1 +f 1196/1 1179/1 1197/1 +f 1179/1 1180/1 1197/1 +f 1199/1 1179/1 1196/1 +f 1180/1 1177/1 1197/1 +f 1177/1 1200/1 1197/1 +f 1176/1 1179/1 1199/1 +f 1201/1 1176/1 1199/1 +f 1177/1 1174/1 1200/1 +f 1174/1 1203/1 1200/1 +f 1173/1 1176/1 1201/1 +f 1205/1 1173/1 1201/1 +f 1174/1 1150/1 1203/1 +f 1150/1 1206/1 1203/1 +f 1156/1 1173/1 1205/1 +f 1161/1 1156/1 1217/1 +f 1156/1 1205/1 1217/1 +f 1218/1 1161/1 1217/1 +f 1162/1 1161/1 1218/1 +f 1219/1 1162/1 1218/1 +f 1163/1 1162/1 1219/1 +f 1220/1 1163/1 1219/1 +f 1164/1 1163/1 1220/1 +f 1221/1 1164/1 1220/1 +f 1165/1 1164/1 1221/1 +f 1216/1 1165/1 1221/1 +f 1160/1 1165/1 1216/1 +f 1215/1 1160/1 1216/1 +f 1159/1 1160/1 1215/1 +f 1214/1 1159/1 1215/1 +f 1158/1 1159/1 1214/1 +f 1213/1 1158/1 1214/1 +f 1149/1 1158/1 1213/1 +f 1114/1 1149/1 1213/1 +f 1113/1 1149/1 1114/1 +f 1150/1 1105/1 1206/1 +f 1105/1 1107/1 1206/1 +f 1198/1 1178/1 1195/1 +f 1175/1 1178/1 1198/1 +f 1178/1 1172/1 1195/1 +f 1202/1 1175/1 1198/1 +f 1172/1 1204/1 1195/1 +f 1171/1 1175/1 1202/1 +f 1172/1 1170/1 1204/1 +f 1170/1 1207/1 1204/1 +f 1168/1 1171/1 1202/1 +f 1208/1 1168/1 1202/1 +f 1170/1 1169/1 1207/1 +f 1169/1 1211/1 1207/1 +f 1169/1 1166/1 1211/1 +f 1210/1 1167/1 1208/1 +f 1167/1 1168/1 1208/1 +f 1166/1 1212/1 1211/1 f 1209/1 1151/1 1210/1 -f 1151/1 1164/1 1210/1 -f 1163/1 1154/1 1213/1 -f 1154/1 1222/1 1213/1 -f 1223/1 1153/1 1209/1 -f 1153/1 1151/1 1209/1 -f 1154/1 1149/1 1222/1 -f 1149/1 1224/1 1222/1 -f 1225/1 1152/1 1223/1 -f 1152/1 1153/1 1223/1 -f 1149/1 1150/1 1224/1 -f 1150/1 1225/1 1224/1 -f 1150/1 1152/1 1225/1 -f 1233/1 1122/1 1123/1 -f 1234/1 1233/1 1123/1 -f 1235/1 1236/1 1127/1 -f 1128/1 1235/1 1127/1 -f 1127/1 1236/1 1123/1 -f 1236/1 1234/1 1123/1 -f 1233/1 1235/1 1122/1 -f 1235/1 1128/1 1122/1 +f 1151/1 1167/1 1210/1 +f 1166/1 1155/1 1212/1 +f 1155/1 1222/1 1212/1 +f 1223/1 1154/1 1209/1 +f 1154/1 1151/1 1209/1 +f 1155/1 1153/1 1222/1 +f 1153/1 1224/1 1222/1 +f 1225/1 1157/1 1223/1 +f 1157/1 1154/1 1223/1 +f 1153/1 1152/1 1224/1 +f 1152/1 1225/1 1224/1 +f 1152/1 1157/1 1225/1 +f 1233/1 1124/1 1125/1 +f 1234/1 1233/1 1125/1 +f 1235/1 1236/1 1133/1 +f 1132/1 1235/1 1133/1 +f 1133/1 1236/1 1125/1 +f 1236/1 1234/1 1125/1 +f 1233/1 1235/1 1124/1 +f 1235/1 1132/1 1124/1 f 1237/1 1238/1 1236/1 f 1235/1 1237/1 1236/1 f 1239/1 1233/1 1234/1 @@ -4462,292 +4466,292 @@ f 1238/1 1244/1 1241/1 f 1244/1 1245/1 1241/1 f 1237/1 1235/1 1233/1 f 1240/1 1237/1 1233/1 -f 1248/1 1237/1 1240/1 -f 1246/1 1248/1 1240/1 -f 1247/1 1248/1 1246/1 -f 1249/1 1237/1 1248/1 +f 1246/1 1237/1 1240/1 +f 1247/1 1246/1 1240/1 +f 1248/1 1246/1 1247/1 +f 1249/1 1237/1 1246/1 f 1250/1 1237/1 1249/1 f 1251/1 1237/1 1250/1 -f 1241/1 1248/1 1242/1 -f 1241/1 1249/1 1248/1 -f 1239/1 1246/1 1240/1 -f 1243/1 1246/1 1239/1 -f 1243/1 1247/1 1246/1 -f 1242/1 1247/1 1243/1 -f 1242/1 1248/1 1247/1 +f 1241/1 1246/1 1242/1 +f 1241/1 1249/1 1246/1 +f 1239/1 1247/1 1240/1 +f 1243/1 1247/1 1239/1 +f 1243/1 1248/1 1247/1 +f 1242/1 1248/1 1243/1 +f 1242/1 1246/1 1248/1 f 1245/1 1249/1 1241/1 f 1245/1 1250/1 1249/1 f 1244/1 1250/1 1245/1 f 1244/1 1251/1 1250/1 f 1238/1 1251/1 1244/1 f 1238/1 1237/1 1251/1 -f 1136/1 1231/1 1137/1 -f 1231/1 1145/1 1137/1 -f 1231/1 1232/1 1145/1 -f 1232/1 1146/1 1145/1 -f 1232/1 1226/1 1146/1 -f 1226/1 1142/1 1146/1 -f 1189/1 1180/1 1187/1 -f 1184/1 1180/1 1189/1 -f 1194/1 1184/1 1189/1 -f 1186/1 1184/1 1194/1 -f 1193/1 1186/1 1194/1 -f 1185/1 1186/1 1193/1 -f 1179/1 1183/1 1188/1 -f 1183/1 1190/1 1188/1 -f 1183/1 1181/1 1190/1 -f 1181/1 1191/1 1190/1 -f 1181/1 1182/1 1191/1 -f 1182/1 1192/1 1191/1 -f 1144/1 1227/1 1141/1 -f 1229/1 1227/1 1144/1 -f 1143/1 1229/1 1144/1 -f 1230/1 1229/1 1143/1 -f 1140/1 1230/1 1143/1 -f 1228/1 1230/1 1140/1 -f 1252/1 1254/1 1253/1 -f 1255/1 1328/1 1257/1 -f 1255/1 1256/1 1328/1 -f 1258/1 1260/1 1259/1 -f 1258/1 1261/1 1260/1 -f 1261/1 1262/1 1260/1 -f 1263/1 1262/1 1261/1 -f 1263/1 1264/1 1262/1 -f 1267/1 1265/1 1266/1 -f 1268/1 1267/1 1266/1 -f 1269/1 1267/1 1268/1 -f 1270/1 1267/1 1269/1 -f 1266/1 1256/1 1255/1 -f 1265/1 1256/1 1266/1 -f 1271/1 1264/1 1263/1 -f 1272/1 1271/1 1263/1 -f 1273/1 1271/1 1272/1 -f 1281/1 1273/1 1282/1 -f 1273/1 1272/1 1282/1 -f 1274/1 1275/1 1276/1 -f 1274/1 1277/1 1275/1 -f 1277/1 1278/1 1275/1 -f 1278/1 1279/1 1275/1 -f 1278/1 1280/1 1279/1 -f 1283/1 1281/1 1282/1 -f 1283/1 1284/1 1281/1 -f 1285/1 1286/1 1287/1 -f 1279/1 1285/1 1287/1 -f 1279/1 1280/1 1285/1 -f 1288/1 1289/1 1286/1 -f 1289/1 1282/1 1286/1 -f 1289/1 1294/1 1282/1 -f 1294/1 1283/1 1282/1 -f 1294/1 1290/1 1283/1 -f 1291/1 1289/1 1288/1 -f 1292/1 1289/1 1291/1 -f 1294/1 1293/1 1290/1 -f 1286/1 1282/1 1287/1 -f 1282/1 1272/1 1287/1 -f 1272/1 1279/1 1287/1 -f 1275/1 1263/1 1276/1 -f 1272/1 1263/1 1275/1 -f 1279/1 1272/1 1275/1 -f 1276/1 1261/1 1270/1 -f 1276/1 1263/1 1261/1 -f 1267/1 1258/1 1265/1 -f 1261/1 1258/1 1267/1 -f 1270/1 1261/1 1267/1 -f 1258/1 1295/1 1265/1 -f 1295/1 1254/1 1265/1 -f 1254/1 1256/1 1265/1 -f 1296/1 1295/1 1258/1 -f 1297/1 1299/1 1296/1 -f 1298/1 1295/1 1296/1 -f 1301/1 1302/1 1296/1 -f 1299/1 1300/1 1296/1 -f 1300/1 1303/1 1296/1 -f 1303/1 1298/1 1296/1 -f 1302/1 1297/1 1296/1 -f 1304/1 1301/1 1296/1 -f 1305/1 1301/1 1304/1 +f 1138/1 1231/1 1139/1 +f 1231/1 1148/1 1139/1 +f 1231/1 1232/1 1148/1 +f 1232/1 1147/1 1148/1 +f 1232/1 1227/1 1147/1 +f 1227/1 1144/1 1147/1 +f 1191/1 1183/1 1188/1 +f 1186/1 1183/1 1191/1 +f 1194/1 1186/1 1191/1 +f 1187/1 1186/1 1194/1 +f 1190/1 1187/1 1194/1 +f 1181/1 1187/1 1190/1 +f 1182/1 1185/1 1189/1 +f 1185/1 1192/1 1189/1 +f 1185/1 1184/1 1192/1 +f 1184/1 1193/1 1192/1 +f 1184/1 1108/1 1193/1 +f 1108/1 1110/1 1193/1 +f 1146/1 1228/1 1143/1 +f 1229/1 1228/1 1146/1 +f 1145/1 1229/1 1146/1 +f 1230/1 1229/1 1145/1 +f 1142/1 1230/1 1145/1 +f 1226/1 1230/1 1142/1 +f 1252/1 1253/1 1254/1 +f 1255/1 1256/1 1257/1 +f 1255/1 1258/1 1256/1 +f 1259/1 1260/1 1261/1 +f 1259/1 1262/1 1260/1 +f 1262/1 1263/1 1260/1 +f 1264/1 1263/1 1262/1 +f 1264/1 1265/1 1263/1 +f 1266/1 1267/1 1268/1 +f 1269/1 1266/1 1268/1 +f 1270/1 1266/1 1269/1 +f 1271/1 1266/1 1270/1 +f 1268/1 1258/1 1255/1 +f 1267/1 1258/1 1268/1 +f 1272/1 1265/1 1264/1 +f 1273/1 1272/1 1264/1 +f 1274/1 1272/1 1273/1 +f 1275/1 1274/1 1276/1 +f 1274/1 1273/1 1276/1 +f 1277/1 1278/1 1279/1 +f 1277/1 1280/1 1278/1 +f 1280/1 1281/1 1278/1 +f 1281/1 1282/1 1278/1 +f 1281/1 1283/1 1282/1 +f 1284/1 1275/1 1276/1 +f 1284/1 1285/1 1275/1 +f 1286/1 1287/1 1288/1 +f 1282/1 1286/1 1288/1 +f 1282/1 1283/1 1286/1 +f 1289/1 1290/1 1287/1 +f 1290/1 1276/1 1287/1 +f 1290/1 1291/1 1276/1 +f 1291/1 1284/1 1276/1 +f 1291/1 1292/1 1284/1 +f 1293/1 1290/1 1289/1 +f 1294/1 1290/1 1293/1 +f 1291/1 1295/1 1292/1 +f 1287/1 1276/1 1288/1 +f 1276/1 1273/1 1288/1 +f 1273/1 1282/1 1288/1 +f 1278/1 1264/1 1279/1 +f 1273/1 1264/1 1278/1 +f 1282/1 1273/1 1278/1 +f 1279/1 1262/1 1271/1 +f 1279/1 1264/1 1262/1 +f 1266/1 1259/1 1267/1 +f 1262/1 1259/1 1266/1 +f 1271/1 1262/1 1266/1 +f 1259/1 1296/1 1267/1 +f 1296/1 1253/1 1267/1 +f 1253/1 1258/1 1267/1 +f 1297/1 1296/1 1259/1 +f 1298/1 1299/1 1297/1 +f 1300/1 1296/1 1297/1 +f 1301/1 1302/1 1297/1 +f 1299/1 1303/1 1297/1 +f 1303/1 1304/1 1297/1 +f 1304/1 1300/1 1297/1 +f 1302/1 1298/1 1297/1 +f 1305/1 1301/1 1297/1 f 1306/1 1301/1 1305/1 -f 1312/1 1301/1 1306/1 -f 1308/1 1309/1 1306/1 -f 1309/1 1310/1 1306/1 -f 1310/1 1307/1 1306/1 -f 1307/1 1312/1 1306/1 -f 1311/1 1308/1 1306/1 -f 1301/1 1313/1 1302/1 -f 1314/1 1295/1 1298/1 -f 1315/1 1295/1 1314/1 -f 1301/1 1316/1 1313/1 -f 1317/1 1295/1 1315/1 -f 1301/1 1318/1 1316/1 -f 1319/1 1295/1 1317/1 -f 1320/1 1295/1 1319/1 -f 1301/1 1321/1 1318/1 -f 1323/1 1320/1 1319/1 -f 1322/1 1323/1 1319/1 +f 1307/1 1301/1 1306/1 +f 1308/1 1301/1 1307/1 +f 1309/1 1310/1 1307/1 +f 1310/1 1311/1 1307/1 +f 1311/1 1312/1 1307/1 +f 1312/1 1308/1 1307/1 +f 1313/1 1309/1 1307/1 +f 1301/1 1314/1 1302/1 +f 1315/1 1296/1 1300/1 +f 1316/1 1296/1 1315/1 +f 1301/1 1317/1 1314/1 +f 1318/1 1296/1 1316/1 +f 1301/1 1319/1 1317/1 +f 1320/1 1296/1 1318/1 +f 1321/1 1296/1 1320/1 +f 1301/1 1322/1 1319/1 +f 1323/1 1321/1 1320/1 +f 1324/1 1323/1 1320/1 +f 1301/1 1325/1 1324/1 +f 1325/1 1326/1 1324/1 +f 1326/1 1327/1 1324/1 +f 1328/1 1323/1 1324/1 +f 1327/1 1328/1 1324/1 f 1301/1 1324/1 1322/1 -f 1324/1 1325/1 1322/1 -f 1325/1 1326/1 1322/1 -f 1327/1 1323/1 1322/1 -f 1326/1 1327/1 1322/1 -f 1301/1 1322/1 1321/1 -f 1256/1 1254/1 1252/1 -f 1328/1 1330/1 1329/1 -f 1331/1 1328/1 1329/1 -f 1332/1 1333/1 1330/1 -f 1328/1 1332/1 1330/1 -f 1334/1 1331/1 1329/1 -f 1333/1 1335/1 1330/1 -f 1256/1 1252/1 1328/1 -f 1252/1 1332/1 1328/1 -f 1329/1 1330/1 1336/1 -f 1330/1 1337/1 1336/1 -f 1337/1 1253/1 1336/1 -f 1253/1 1257/1 1336/1 -f 1339/1 1253/1 1337/1 -f 1338/1 1339/1 1337/1 -f 1340/1 1338/1 1337/1 +f 1258/1 1253/1 1252/1 +f 1256/1 1329/1 1330/1 +f 1331/1 1256/1 1330/1 +f 1332/1 1333/1 1329/1 +f 1256/1 1332/1 1329/1 +f 1334/1 1331/1 1330/1 +f 1333/1 1335/1 1329/1 +f 1258/1 1252/1 1256/1 +f 1252/1 1332/1 1256/1 +f 1330/1 1329/1 1336/1 +f 1329/1 1337/1 1336/1 +f 1337/1 1254/1 1336/1 +f 1254/1 1257/1 1336/1 +f 1338/1 1254/1 1337/1 +f 1339/1 1338/1 1337/1 +f 1340/1 1339/1 1337/1 f 1257/1 1341/1 1336/1 -f 1253/1 1255/1 1257/1 -f 1342/1 1344/1 1343/1 -f 1342/1 1345/1 1344/1 -f 1345/1 1346/1 1344/1 -f 1347/1 1342/1 1343/1 -f 1348/1 1347/1 1343/1 +f 1254/1 1255/1 1257/1 +f 1342/1 1343/1 1344/1 +f 1342/1 1345/1 1343/1 +f 1345/1 1346/1 1343/1 +f 1347/1 1342/1 1344/1 +f 1348/1 1347/1 1344/1 f 1345/1 1349/1 1346/1 f 1350/1 1347/1 1348/1 f 1345/1 1351/1 1349/1 f 1351/1 1352/1 1349/1 f 1353/1 1347/1 1350/1 -f 1356/1 1347/1 1353/1 -f 1355/1 1354/1 1353/1 -f 1354/1 1356/1 1353/1 +f 1354/1 1347/1 1353/1 +f 1355/1 1356/1 1353/1 +f 1356/1 1354/1 1353/1 f 1357/1 1355/1 1353/1 f 1351/1 1358/1 1352/1 -f 1360/1 1359/1 1352/1 -f 1359/1 1357/1 1352/1 -f 1358/1 1360/1 1352/1 +f 1359/1 1360/1 1352/1 +f 1360/1 1357/1 1352/1 +f 1358/1 1359/1 1352/1 f 1361/1 1357/1 1353/1 f 1362/1 1361/1 1353/1 -f 1259/1 1266/1 1255/1 -f 1253/1 1259/1 1255/1 -f 1357/1 1259/1 1253/1 -f 1352/1 1357/1 1253/1 +f 1261/1 1268/1 1255/1 +f 1254/1 1261/1 1255/1 +f 1357/1 1261/1 1254/1 +f 1352/1 1357/1 1254/1 f 1363/1 1362/1 1353/1 f 1364/1 1363/1 1353/1 f 1365/1 1363/1 1364/1 f 1366/1 1363/1 1365/1 f 1367/1 1363/1 1366/1 f 1368/1 1363/1 1367/1 -f 1369/1 1357/1 1359/1 +f 1369/1 1357/1 1360/1 f 1357/1 1370/1 1355/1 f 1371/1 1357/1 1369/1 f 1357/1 1372/1 1370/1 f 1357/1 1373/1 1372/1 f 1373/1 1357/1 1371/1 f 1374/1 1363/1 1368/1 -f 1259/1 1260/1 1266/1 -f 1260/1 1268/1 1266/1 -f 1260/1 1262/1 1268/1 -f 1262/1 1269/1 1268/1 -f 1262/1 1264/1 1269/1 -f 1264/1 1274/1 1269/1 -f 1264/1 1277/1 1274/1 -f 1271/1 1278/1 1277/1 -f 1264/1 1271/1 1277/1 -f 1273/1 1280/1 1278/1 -f 1271/1 1273/1 1278/1 -f 1280/1 1281/1 1285/1 -f 1280/1 1273/1 1281/1 -f 1281/1 1375/1 1285/1 -f 1284/1 1375/1 1281/1 -f 1379/1 1376/1 1375/1 -f 1284/1 1379/1 1375/1 -f 1377/1 1379/1 1284/1 -f 1376/1 1378/1 1375/1 -f 1380/1 1379/1 1377/1 -f 1376/1 1381/1 1378/1 -f 1376/1 1379/1 1289/1 -f 1379/1 1294/1 1289/1 -f 1252/1 1253/1 1339/1 -f 1332/1 1252/1 1339/1 -f 1285/1 1375/1 1286/1 -f 1375/1 1288/1 1286/1 -f 1344/1 1327/1 1343/1 -f 1327/1 1326/1 1343/1 -f 1346/1 1327/1 1344/1 -f 1326/1 1325/1 1343/1 -f 1325/1 1348/1 1343/1 -f 1323/1 1327/1 1346/1 +f 1261/1 1260/1 1268/1 +f 1260/1 1269/1 1268/1 +f 1260/1 1263/1 1269/1 +f 1263/1 1270/1 1269/1 +f 1263/1 1265/1 1270/1 +f 1265/1 1277/1 1270/1 +f 1265/1 1280/1 1277/1 +f 1272/1 1281/1 1280/1 +f 1265/1 1272/1 1280/1 +f 1274/1 1283/1 1281/1 +f 1272/1 1274/1 1281/1 +f 1283/1 1275/1 1286/1 +f 1283/1 1274/1 1275/1 +f 1275/1 1375/1 1286/1 +f 1285/1 1375/1 1275/1 +f 1376/1 1377/1 1375/1 +f 1285/1 1376/1 1375/1 +f 1378/1 1376/1 1285/1 +f 1377/1 1379/1 1375/1 +f 1380/1 1376/1 1378/1 +f 1377/1 1381/1 1379/1 +f 1377/1 1376/1 1290/1 +f 1376/1 1291/1 1290/1 +f 1252/1 1254/1 1338/1 +f 1332/1 1252/1 1338/1 +f 1286/1 1375/1 1287/1 +f 1375/1 1289/1 1287/1 +f 1343/1 1328/1 1344/1 +f 1328/1 1327/1 1344/1 +f 1346/1 1328/1 1343/1 +f 1327/1 1326/1 1344/1 +f 1326/1 1348/1 1344/1 +f 1323/1 1328/1 1346/1 f 1349/1 1323/1 1346/1 -f 1325/1 1324/1 1348/1 -f 1324/1 1350/1 1348/1 -f 1320/1 1323/1 1349/1 -f 1352/1 1320/1 1349/1 -f 1324/1 1353/1 1350/1 -f 1295/1 1320/1 1352/1 -f 1324/1 1301/1 1353/1 -f 1301/1 1312/1 1353/1 -f 1312/1 1364/1 1353/1 -f 1312/1 1307/1 1364/1 -f 1307/1 1365/1 1364/1 -f 1307/1 1310/1 1365/1 -f 1310/1 1366/1 1365/1 -f 1310/1 1309/1 1366/1 -f 1309/1 1367/1 1366/1 -f 1309/1 1308/1 1367/1 -f 1308/1 1368/1 1367/1 -f 1308/1 1311/1 1368/1 -f 1311/1 1374/1 1368/1 -f 1311/1 1306/1 1374/1 -f 1306/1 1363/1 1374/1 -f 1306/1 1305/1 1363/1 -f 1305/1 1362/1 1363/1 -f 1305/1 1304/1 1362/1 -f 1304/1 1361/1 1362/1 -f 1304/1 1296/1 1361/1 -f 1296/1 1357/1 1361/1 -f 1357/1 1258/1 1259/1 -f 1296/1 1258/1 1357/1 -f 1254/1 1295/1 1253/1 -f 1295/1 1352/1 1253/1 -f 1322/1 1345/1 1342/1 -f 1347/1 1321/1 1342/1 -f 1321/1 1322/1 1342/1 -f 1322/1 1319/1 1345/1 -f 1319/1 1351/1 1345/1 -f 1318/1 1321/1 1347/1 -f 1356/1 1318/1 1347/1 -f 1319/1 1317/1 1351/1 -f 1317/1 1358/1 1351/1 -f 1316/1 1318/1 1356/1 -f 1354/1 1316/1 1356/1 -f 1317/1 1315/1 1358/1 -f 1315/1 1360/1 1358/1 -f 1355/1 1313/1 1354/1 -f 1313/1 1316/1 1354/1 -f 1315/1 1314/1 1360/1 -f 1314/1 1359/1 1360/1 -f 1314/1 1298/1 1359/1 -f 1302/1 1313/1 1355/1 -f 1298/1 1369/1 1359/1 +f 1326/1 1325/1 1348/1 +f 1325/1 1350/1 1348/1 +f 1321/1 1323/1 1349/1 +f 1352/1 1321/1 1349/1 +f 1325/1 1353/1 1350/1 +f 1296/1 1321/1 1352/1 +f 1325/1 1301/1 1353/1 +f 1301/1 1308/1 1353/1 +f 1308/1 1364/1 1353/1 +f 1308/1 1312/1 1364/1 +f 1312/1 1365/1 1364/1 +f 1312/1 1311/1 1365/1 +f 1311/1 1366/1 1365/1 +f 1311/1 1310/1 1366/1 +f 1310/1 1367/1 1366/1 +f 1310/1 1309/1 1367/1 +f 1309/1 1368/1 1367/1 +f 1309/1 1313/1 1368/1 +f 1313/1 1374/1 1368/1 +f 1313/1 1307/1 1374/1 +f 1307/1 1363/1 1374/1 +f 1307/1 1306/1 1363/1 +f 1306/1 1362/1 1363/1 +f 1306/1 1305/1 1362/1 +f 1305/1 1361/1 1362/1 +f 1305/1 1297/1 1361/1 +f 1297/1 1357/1 1361/1 +f 1357/1 1259/1 1261/1 +f 1297/1 1259/1 1357/1 +f 1253/1 1296/1 1254/1 +f 1296/1 1352/1 1254/1 +f 1324/1 1345/1 1342/1 +f 1347/1 1322/1 1342/1 +f 1322/1 1324/1 1342/1 +f 1324/1 1320/1 1345/1 +f 1320/1 1351/1 1345/1 +f 1319/1 1322/1 1347/1 +f 1354/1 1319/1 1347/1 +f 1320/1 1318/1 1351/1 +f 1318/1 1358/1 1351/1 +f 1317/1 1319/1 1354/1 +f 1356/1 1317/1 1354/1 +f 1318/1 1316/1 1358/1 +f 1316/1 1359/1 1358/1 +f 1355/1 1314/1 1356/1 +f 1314/1 1317/1 1356/1 +f 1316/1 1315/1 1359/1 +f 1315/1 1360/1 1359/1 +f 1315/1 1300/1 1360/1 +f 1302/1 1314/1 1355/1 +f 1300/1 1369/1 1360/1 f 1370/1 1302/1 1355/1 -f 1297/1 1302/1 1370/1 -f 1298/1 1303/1 1369/1 -f 1303/1 1371/1 1369/1 -f 1372/1 1297/1 1370/1 -f 1299/1 1297/1 1372/1 -f 1303/1 1300/1 1371/1 +f 1298/1 1302/1 1370/1 +f 1300/1 1304/1 1369/1 +f 1304/1 1371/1 1369/1 +f 1372/1 1298/1 1370/1 +f 1299/1 1298/1 1372/1 +f 1304/1 1303/1 1371/1 f 1373/1 1299/1 1372/1 -f 1300/1 1373/1 1371/1 -f 1300/1 1299/1 1373/1 -f 1269/1 1382/1 1270/1 -f 1382/1 1383/1 1270/1 -f 1384/1 1274/1 1276/1 -f 1385/1 1274/1 1384/1 -f 1384/1 1276/1 1270/1 -f 1383/1 1384/1 1270/1 -f 1274/1 1382/1 1269/1 -f 1274/1 1385/1 1382/1 +f 1303/1 1373/1 1371/1 +f 1303/1 1299/1 1373/1 +f 1270/1 1382/1 1271/1 +f 1382/1 1383/1 1271/1 +f 1384/1 1277/1 1279/1 +f 1385/1 1277/1 1384/1 +f 1384/1 1279/1 1271/1 +f 1383/1 1384/1 1271/1 +f 1277/1 1382/1 1270/1 +f 1277/1 1385/1 1382/1 f 1386/1 1385/1 1384/1 f 1386/1 1387/1 1385/1 f 1382/1 1388/1 1383/1 @@ -4782,41 +4786,41 @@ f 1401/1 1400/1 1394/1 f 1400/1 1395/1 1394/1 f 1400/1 1387/1 1395/1 f 1387/1 1386/1 1395/1 -f 1290/1 1284/1 1283/1 -f 1377/1 1284/1 1290/1 -f 1293/1 1377/1 1290/1 -f 1380/1 1377/1 1293/1 -f 1294/1 1380/1 1293/1 -f 1379/1 1380/1 1294/1 +f 1292/1 1285/1 1284/1 +f 1378/1 1285/1 1292/1 +f 1295/1 1378/1 1292/1 +f 1380/1 1378/1 1295/1 +f 1291/1 1380/1 1295/1 +f 1376/1 1380/1 1291/1 f 1335/1 1340/1 1337/1 -f 1330/1 1335/1 1337/1 -f 1333/1 1338/1 1340/1 +f 1329/1 1335/1 1337/1 +f 1333/1 1339/1 1340/1 f 1335/1 1333/1 1340/1 -f 1332/1 1339/1 1338/1 -f 1333/1 1332/1 1338/1 -f 1334/1 1329/1 1336/1 +f 1332/1 1338/1 1339/1 +f 1333/1 1332/1 1339/1 +f 1334/1 1330/1 1336/1 f 1341/1 1334/1 1336/1 f 1257/1 1331/1 1341/1 f 1331/1 1334/1 1341/1 -f 1328/1 1331/1 1257/1 -f 1375/1 1291/1 1288/1 -f 1375/1 1378/1 1291/1 -f 1378/1 1381/1 1291/1 -f 1381/1 1292/1 1291/1 -f 1381/1 1376/1 1292/1 -f 1376/1 1289/1 1292/1 -f 1403/1 1408/1 1402/1 -f 1404/1 1406/1 1405/1 -f 1407/1 1408/1 1403/1 -f 1409/1 1406/1 1404/1 -f 1410/1 1408/1 1407/1 -f 1411/1 1412/1 1408/1 -f 1413/1 1411/1 1408/1 -f 1410/1 1413/1 1408/1 -f 1414/1 1415/1 1404/1 -f 1416/1 1414/1 1404/1 -f 1417/1 1416/1 1404/1 -f 1415/1 1409/1 1404/1 +f 1256/1 1331/1 1257/1 +f 1375/1 1293/1 1289/1 +f 1375/1 1379/1 1293/1 +f 1379/1 1381/1 1293/1 +f 1381/1 1294/1 1293/1 +f 1381/1 1377/1 1294/1 +f 1377/1 1290/1 1294/1 +f 1402/1 1403/1 1404/1 +f 1405/1 1406/1 1407/1 +f 1408/1 1403/1 1402/1 +f 1409/1 1406/1 1405/1 +f 1410/1 1403/1 1408/1 +f 1411/1 1412/1 1403/1 +f 1413/1 1411/1 1403/1 +f 1410/1 1413/1 1403/1 +f 1414/1 1415/1 1405/1 +f 1416/1 1414/1 1405/1 +f 1417/1 1416/1 1405/1 +f 1415/1 1409/1 1405/1 f 1411/1 1418/1 1412/1 f 1419/1 1416/1 1417/1 f 1411/1 1420/1 1418/1 @@ -4828,617 +4832,617 @@ f 1425/1 1421/1 1419/1 f 1426/1 1411/1 1413/1 f 1427/1 1425/1 1419/1 f 1420/1 1428/1 1418/1 -f 1428/1 1710/1 1418/1 -f 1430/1 1431/1 1429/1 -f 1431/1 1426/1 1429/1 +f 1428/1 1429/1 1418/1 +f 1430/1 1431/1 1432/1 +f 1431/1 1426/1 1432/1 f 1431/1 1411/1 1426/1 -f 1710/1 1432/1 1418/1 -f 1710/1 1709/1 1432/1 -f 1709/1 1433/1 1432/1 -f 1433/1 1434/1 1432/1 -f 1435/1 1419/1 1434/1 -f 1433/1 1435/1 1434/1 -f 1435/1 1427/1 1419/1 -f 1416/1 1436/1 1414/1 -f 1436/1 1437/1 1414/1 -f 1436/1 1438/1 1437/1 -f 1439/1 1710/1 1428/1 -f 1440/1 1416/1 1424/1 -f 1411/1 1441/1 1420/1 -f 1442/1 1710/1 1439/1 -f 1443/1 1440/1 1424/1 -f 1702/1 1427/1 1435/1 -f 1444/1 1445/1 1441/1 -f 1411/1 1444/1 1441/1 -f 1446/1 1710/1 1442/1 -f 1447/1 1440/1 1443/1 -f 1448/1 1427/1 1702/1 -f 1449/1 1450/1 1448/1 -f 1451/1 1449/1 1448/1 -f 1450/1 1427/1 1448/1 -f 1444/1 1452/1 1445/1 -f 1453/1 1710/1 1446/1 -f 1454/1 1440/1 1447/1 -f 1453/1 1681/1 1710/1 -f 1684/1 1451/1 1448/1 -f 1455/1 1452/1 1444/1 -f 1454/1 1456/1 1440/1 -f 1456/1 1457/1 1440/1 -f 1458/1 1681/1 1453/1 -f 1459/1 1455/1 1444/1 -f 1456/1 1460/1 1457/1 -f 1460/1 1461/1 1457/1 -f 1462/1 1459/1 1444/1 -f 1463/1 1464/1 1457/1 -f 1464/1 1465/1 1457/1 -f 1461/1 1467/1 1457/1 -f 1467/1 1466/1 1457/1 -f 1466/1 1468/1 1457/1 -f 1468/1 1463/1 1457/1 -f 1469/1 1470/1 1681/1 -f 1458/1 1471/1 1681/1 -f 1471/1 1472/1 1681/1 -f 1472/1 1469/1 1681/1 -f 1470/1 1473/1 1681/1 -f 1473/1 1474/1 1681/1 -f 1474/1 1707/1 1681/1 -f 1467/1 1451/1 1684/1 -f 1693/1 1467/1 1684/1 -f 1475/1 1459/1 1462/1 -f 1701/1 1467/1 1693/1 -f 1474/1 1708/1 1707/1 -f 1476/1 1467/1 1701/1 -f 1474/1 1476/1 1708/1 -f 1476/1 1701/1 1708/1 -f 1464/1 1477/1 1465/1 -f 1479/1 1469/1 1459/1 -f 1469/1 1478/1 1459/1 -f 1475/1 1479/1 1459/1 -f 1478/1 1469/1 1472/1 -f 1451/1 1467/1 1461/1 -f 1481/1 1475/1 1462/1 -f 1480/1 1481/1 1462/1 -f 1481/1 1479/1 1475/1 -f 1481/1 1482/1 1479/1 -f 1483/1 1469/1 1479/1 -f 1482/1 1483/1 1479/1 -f 1484/1 1470/1 1469/1 -f 1483/1 1484/1 1469/1 -f 1484/1 1485/1 1470/1 -f 1485/1 1473/1 1470/1 -f 1486/1 1474/1 1473/1 -f 1485/1 1486/1 1473/1 -f 1487/1 1431/1 1430/1 -f 1488/1 1487/1 1430/1 -f 1489/1 1411/1 1431/1 -f 1487/1 1489/1 1431/1 -f 1491/1 1596/1 1600/1 -f 1491/1 1490/1 1596/1 -f 1494/1 1493/1 1492/1 -f 1495/1 1493/1 1494/1 -f 1496/1 1495/1 1494/1 -f 1497/1 1495/1 1496/1 -f 1492/1 1493/1 1490/1 -f 1491/1 1492/1 1490/1 -f 1499/1 1476/1 1498/1 -f 1499/1 1500/1 1476/1 -f 1499/1 1501/1 1500/1 -f 1501/1 1502/1 1500/1 -f 1501/1 1503/1 1502/1 -f 1504/1 1432/1 1505/1 -f 1506/1 1504/1 1507/1 +f 1429/1 1433/1 1418/1 +f 1429/1 1434/1 1433/1 +f 1434/1 1435/1 1433/1 +f 1435/1 1436/1 1433/1 +f 1437/1 1419/1 1436/1 +f 1435/1 1437/1 1436/1 +f 1437/1 1427/1 1419/1 +f 1416/1 1438/1 1414/1 +f 1438/1 1439/1 1414/1 +f 1438/1 1440/1 1439/1 +f 1441/1 1429/1 1428/1 +f 1442/1 1416/1 1424/1 +f 1411/1 1443/1 1420/1 +f 1444/1 1429/1 1441/1 +f 1445/1 1442/1 1424/1 +f 1446/1 1427/1 1437/1 +f 1447/1 1448/1 1443/1 +f 1411/1 1447/1 1443/1 +f 1449/1 1429/1 1444/1 +f 1450/1 1442/1 1445/1 +f 1451/1 1427/1 1446/1 +f 1452/1 1453/1 1451/1 +f 1454/1 1452/1 1451/1 +f 1453/1 1427/1 1451/1 +f 1447/1 1455/1 1448/1 +f 1456/1 1429/1 1449/1 +f 1457/1 1442/1 1450/1 +f 1456/1 1458/1 1429/1 +f 1459/1 1454/1 1451/1 +f 1460/1 1455/1 1447/1 +f 1457/1 1461/1 1442/1 +f 1461/1 1462/1 1442/1 +f 1463/1 1458/1 1456/1 +f 1464/1 1460/1 1447/1 +f 1461/1 1465/1 1462/1 +f 1465/1 1466/1 1462/1 +f 1467/1 1464/1 1447/1 +f 1468/1 1469/1 1462/1 +f 1469/1 1470/1 1462/1 +f 1466/1 1471/1 1462/1 +f 1471/1 1472/1 1462/1 +f 1472/1 1473/1 1462/1 +f 1473/1 1468/1 1462/1 +f 1474/1 1475/1 1458/1 +f 1463/1 1476/1 1458/1 +f 1476/1 1477/1 1458/1 +f 1477/1 1474/1 1458/1 +f 1475/1 1478/1 1458/1 +f 1478/1 1479/1 1458/1 +f 1479/1 1480/1 1458/1 +f 1471/1 1454/1 1459/1 +f 1481/1 1471/1 1459/1 +f 1482/1 1464/1 1467/1 +f 1483/1 1471/1 1481/1 +f 1479/1 1484/1 1480/1 +f 1485/1 1471/1 1483/1 +f 1479/1 1485/1 1484/1 +f 1485/1 1483/1 1484/1 +f 1469/1 1486/1 1470/1 +f 1487/1 1474/1 1464/1 +f 1474/1 1488/1 1464/1 +f 1482/1 1487/1 1464/1 +f 1488/1 1474/1 1477/1 +f 1454/1 1471/1 1466/1 +f 1489/1 1482/1 1467/1 +f 1490/1 1489/1 1467/1 +f 1489/1 1487/1 1482/1 +f 1489/1 1491/1 1487/1 +f 1492/1 1474/1 1487/1 +f 1491/1 1492/1 1487/1 +f 1493/1 1475/1 1474/1 +f 1492/1 1493/1 1474/1 +f 1493/1 1494/1 1475/1 +f 1494/1 1478/1 1475/1 +f 1495/1 1479/1 1478/1 +f 1494/1 1495/1 1478/1 +f 1496/1 1431/1 1430/1 +f 1497/1 1496/1 1430/1 +f 1498/1 1411/1 1431/1 +f 1496/1 1498/1 1431/1 +f 1499/1 1500/1 1501/1 +f 1499/1 1502/1 1500/1 +f 1503/1 1504/1 1505/1 +f 1506/1 1504/1 1503/1 +f 1507/1 1506/1 1503/1 f 1508/1 1506/1 1507/1 -f 1504/1 1509/1 1507/1 -f 1509/1 1510/1 1507/1 -f 1511/1 1506/1 1508/1 -f 1512/1 1511/1 1508/1 -f 1513/1 1517/1 1514/1 -f 1515/1 1518/1 1516/1 -f 1515/1 1519/1 1518/1 -f 1513/1 1520/1 1517/1 -f 1513/1 1524/1 1520/1 -f 1522/1 1521/1 1513/1 -f 1521/1 1523/1 1513/1 -f 1523/1 1524/1 1513/1 -f 1525/1 1526/1 1519/1 -f 1526/1 1527/1 1519/1 -f 1527/1 1528/1 1519/1 -f 1515/1 1525/1 1519/1 -f 1527/1 1529/1 1528/1 -f 1530/1 1521/1 1522/1 -f 1529/1 1531/1 1528/1 -f 1532/1 1521/1 1530/1 -f 1533/1 1534/1 1530/1 -f 1534/1 1535/1 1530/1 -f 1535/1 1532/1 1530/1 -f 1529/1 1536/1 1531/1 -f 1537/1 1533/1 1530/1 -f 1540/1 1537/1 1530/1 -f 1536/1 1538/1 1531/1 -f 1539/1 1540/1 1530/1 -f 1541/1 1540/1 1539/1 -f 1544/1 1541/1 1539/1 -f 1536/1 1542/1 1538/1 -f 1523/1 1487/1 1543/1 -f 1487/1 1488/1 1543/1 -f 1489/1 1487/1 1523/1 -f 1521/1 1489/1 1523/1 -f 1504/1 1544/1 1539/1 -f 1506/1 1544/1 1504/1 -f 1538/1 1542/1 1506/1 -f 1545/1 1544/1 1506/1 -f 1542/1 1545/1 1506/1 -f 1547/1 1546/1 1526/1 -f 1546/1 1527/1 1526/1 -f 1548/1 1546/1 1547/1 -f 1549/1 1545/1 1542/1 -f 1550/1 1545/1 1549/1 -f 1529/1 1551/1 1536/1 -f 1552/1 1521/1 1532/1 -f 1553/1 1540/1 1541/1 -f 1554/1 1667/1 1550/1 -f 1667/1 1666/1 1550/1 -f 1666/1 1545/1 1550/1 -f 1529/1 1555/1 1551/1 -f 1556/1 1521/1 1552/1 -f 1557/1 1667/1 1554/1 -f 1564/1 1540/1 1553/1 -f 1558/1 1521/1 1556/1 -f 1559/1 1555/1 1529/1 -f 1556/1 1560/1 1558/1 -f 1561/1 1562/1 1559/1 -f 1562/1 1563/1 1559/1 -f 1563/1 1555/1 1559/1 -f 1564/1 1674/1 1540/1 -f 1560/1 1565/1 1558/1 -f 1565/1 1480/1 1558/1 -f 1566/1 1567/1 1540/1 -f 1674/1 1566/1 1540/1 -f 1568/1 1667/1 1557/1 -f 1565/1 1569/1 1480/1 -f 1485/1 1484/1 1480/1 -f 1486/1 1485/1 1480/1 -f 1484/1 1483/1 1480/1 -f 1482/1 1481/1 1480/1 -f 1483/1 1482/1 1480/1 -f 1569/1 1498/1 1480/1 -f 1498/1 1486/1 1480/1 -f 1570/1 1571/1 1559/1 -f 1572/1 1573/1 1559/1 -f 1573/1 1570/1 1559/1 -f 1571/1 1575/1 1559/1 -f 1575/1 1574/1 1559/1 -f 1574/1 1566/1 1559/1 -f 1566/1 1561/1 1559/1 -f 1566/1 1576/1 1567/1 -f 1566/1 1667/1 1568/1 -f 1577/1 1573/1 1572/1 -f 1566/1 1498/1 1576/1 -f 1578/1 1566/1 1568/1 -f 1498/1 1579/1 1576/1 -f 1580/1 1566/1 1578/1 -f 1667/1 1566/1 1674/1 -f 1498/1 1581/1 1579/1 -f 1581/1 1498/1 1569/1 -f 1582/1 1566/1 1580/1 -f 1566/1 1582/1 1561/1 -f 1566/1 1499/1 1498/1 -f 1566/1 1583/1 1499/1 -f 1583/1 1501/1 1499/1 -f 1583/1 1584/1 1501/1 -f 1584/1 1585/1 1501/1 -f 1585/1 1503/1 1501/1 -f 1585/1 1586/1 1497/1 -f 1503/1 1585/1 1497/1 -f 1493/1 1588/1 1587/1 -f 1495/1 1588/1 1493/1 -f 1495/1 1589/1 1588/1 -f 1497/1 1589/1 1495/1 -f 1497/1 1586/1 1589/1 -f 1587/1 1590/1 1490/1 -f 1493/1 1587/1 1490/1 -f 1490/1 1591/1 1592/1 -f 1596/1 1490/1 1592/1 -f 1590/1 1593/1 1591/1 -f 1490/1 1590/1 1591/1 -f 1593/1 1594/1 1591/1 -f 1595/1 1596/1 1592/1 -f 1591/1 1597/1 1598/1 -f 1592/1 1591/1 1598/1 -f 1491/1 1600/1 1598/1 -f 1599/1 1491/1 1598/1 -f 1597/1 1599/1 1598/1 -f 1603/1 1599/1 1597/1 -f 1600/1 1601/1 1598/1 -f 1602/1 1603/1 1597/1 -f 1599/1 1492/1 1491/1 -f 1604/1 1492/1 1599/1 -f 1604/1 1494/1 1492/1 -f 1605/1 1494/1 1604/1 -f 1605/1 1496/1 1494/1 -f 1606/1 1496/1 1605/1 -f 1606/1 1607/1 1502/1 -f 1496/1 1606/1 1502/1 -f 1500/1 1467/1 1476/1 -f 1608/1 1467/1 1500/1 -f 1502/1 1608/1 1500/1 -f 1607/1 1608/1 1502/1 -f 1505/1 1434/1 1609/1 -f 1432/1 1434/1 1505/1 -f 1613/1 1505/1 1610/1 -f 1505/1 1611/1 1610/1 -f 1612/1 1613/1 1610/1 -f 1505/1 1609/1 1611/1 -f 1609/1 1615/1 1611/1 -f 1615/1 1614/1 1611/1 -f 1611/1 1507/1 1610/1 -f 1508/1 1507/1 1611/1 -f 1509/1 1504/1 1613/1 -f 1504/1 1505/1 1613/1 -f 1486/1 1498/1 1474/1 -f 1498/1 1476/1 1474/1 -f 1426/1 1543/1 1429/1 -f 1523/1 1543/1 1426/1 -f 1514/1 1403/1 1402/1 -f 1514/1 1517/1 1403/1 -f 1517/1 1407/1 1403/1 -f 1402/1 1513/1 1514/1 -f 1408/1 1513/1 1402/1 -f 1517/1 1520/1 1407/1 -f 1520/1 1410/1 1407/1 -f 1520/1 1524/1 1410/1 -f 1412/1 1513/1 1408/1 -f 1412/1 1522/1 1513/1 -f 1524/1 1413/1 1410/1 -f 1524/1 1523/1 1413/1 -f 1418/1 1522/1 1412/1 -f 1418/1 1530/1 1522/1 -f 1432/1 1539/1 1418/1 -f 1504/1 1539/1 1432/1 -f 1532/1 1535/1 1428/1 -f 1420/1 1532/1 1428/1 -f 1535/1 1439/1 1428/1 -f 1534/1 1439/1 1535/1 -f 1533/1 1439/1 1534/1 -f 1441/1 1532/1 1420/1 -f 1533/1 1442/1 1439/1 -f 1552/1 1532/1 1441/1 -f 1445/1 1552/1 1441/1 -f 1533/1 1446/1 1442/1 -f 1537/1 1446/1 1533/1 -f 1556/1 1552/1 1445/1 -f 1452/1 1556/1 1445/1 -f 1537/1 1453/1 1446/1 -f 1540/1 1453/1 1537/1 -f 1560/1 1556/1 1452/1 -f 1455/1 1560/1 1452/1 -f 1540/1 1458/1 1453/1 -f 1567/1 1458/1 1540/1 -f 1576/1 1458/1 1567/1 -f 1565/1 1560/1 1455/1 -f 1576/1 1471/1 1458/1 -f 1459/1 1565/1 1455/1 -f 1569/1 1565/1 1459/1 -f 1579/1 1471/1 1576/1 -f 1579/1 1472/1 1471/1 -f 1581/1 1472/1 1579/1 -f 1581/1 1569/1 1459/1 -f 1478/1 1581/1 1459/1 -f 1581/1 1478/1 1472/1 -f 1616/1 1497/1 1496/1 -f 1503/1 1617/1 1502/1 -f 1502/1 1617/1 1496/1 -f 1617/1 1616/1 1496/1 -f 1618/1 1497/1 1616/1 -f 1618/1 1619/1 1497/1 -f 1620/1 1621/1 1617/1 -f 1503/1 1620/1 1617/1 -f 1617/1 1622/1 1616/1 -f 1622/1 1623/1 1616/1 -f 1623/1 1618/1 1616/1 -f 1621/1 1622/1 1617/1 -f 1623/1 1624/1 1618/1 -f 1625/1 1622/1 1621/1 -f 1627/1 1503/1 1497/1 -f 1619/1 1627/1 1497/1 -f 1626/1 1620/1 1503/1 -f 1627/1 1626/1 1503/1 -f 1626/1 1628/1 1620/1 -f 1622/1 1627/1 1623/1 -f 1626/1 1627/1 1622/1 -f 1539/1 1530/1 1418/1 -f 1523/1 1426/1 1413/1 -f 1488/1 1430/1 1429/1 -f 1543/1 1488/1 1429/1 -f 1507/1 1510/1 1610/1 -f 1510/1 1612/1 1610/1 -f 1510/1 1509/1 1612/1 -f 1509/1 1613/1 1612/1 -f 1601/1 1592/1 1598/1 -f 1595/1 1592/1 1601/1 -f 1600/1 1596/1 1601/1 -f 1596/1 1595/1 1601/1 -f 1620/1 1625/1 1621/1 -f 1620/1 1628/1 1625/1 -f 1628/1 1626/1 1625/1 -f 1626/1 1622/1 1625/1 -f 1624/1 1619/1 1618/1 -f 1627/1 1619/1 1624/1 -f 1623/1 1627/1 1624/1 -f 1521/1 1411/1 1489/1 -f 1521/1 1444/1 1411/1 -f 1558/1 1444/1 1521/1 -f 1480/1 1444/1 1558/1 -f 1480/1 1462/1 1444/1 -f 1465/1 1572/1 1457/1 -f 1465/1 1577/1 1572/1 -f 1477/1 1577/1 1465/1 -f 1477/1 1573/1 1577/1 -f 1464/1 1573/1 1477/1 -f 1464/1 1570/1 1573/1 -f 1463/1 1570/1 1464/1 -f 1463/1 1571/1 1570/1 -f 1468/1 1571/1 1463/1 -f 1468/1 1575/1 1571/1 -f 1466/1 1575/1 1468/1 -f 1466/1 1574/1 1575/1 -f 1436/1 1548/1 1438/1 -f 1436/1 1546/1 1548/1 -f 1416/1 1546/1 1436/1 -f 1416/1 1527/1 1546/1 -f 1590/1 1599/1 1603/1 -f 1593/1 1590/1 1603/1 -f 1588/1 1604/1 1587/1 -f 1588/1 1605/1 1604/1 -f 1588/1 1589/1 1605/1 -f 1589/1 1606/1 1605/1 -f 1589/1 1586/1 1606/1 -f 1587/1 1599/1 1590/1 -f 1587/1 1604/1 1599/1 -f 1583/1 1566/1 1467/1 -f 1608/1 1584/1 1467/1 -f 1584/1 1583/1 1467/1 -f 1585/1 1584/1 1608/1 -f 1607/1 1585/1 1608/1 -f 1434/1 1506/1 1609/1 -f 1609/1 1511/1 1615/1 -f 1609/1 1506/1 1511/1 -f 1566/1 1574/1 1467/1 -f 1574/1 1466/1 1467/1 -f 1437/1 1526/1 1414/1 -f 1547/1 1526/1 1437/1 -f 1516/1 1518/1 1405/1 -f 1406/1 1516/1 1405/1 -f 1518/1 1404/1 1405/1 -f 1406/1 1515/1 1516/1 -f 1518/1 1519/1 1404/1 -f 1409/1 1515/1 1406/1 -f 1528/1 1417/1 1404/1 -f 1519/1 1528/1 1404/1 -f 1415/1 1515/1 1409/1 -f 1415/1 1525/1 1515/1 -f 1531/1 1419/1 1417/1 -f 1528/1 1531/1 1417/1 -f 1414/1 1525/1 1415/1 -f 1414/1 1526/1 1525/1 -f 1419/1 1506/1 1434/1 -f 1538/1 1506/1 1419/1 -f 1549/1 1542/1 1423/1 -f 1422/1 1549/1 1423/1 -f 1542/1 1424/1 1423/1 -f 1536/1 1424/1 1542/1 -f 1550/1 1549/1 1422/1 -f 1421/1 1550/1 1422/1 -f 1536/1 1443/1 1424/1 -f 1551/1 1443/1 1536/1 -f 1554/1 1550/1 1421/1 -f 1551/1 1447/1 1443/1 -f 1425/1 1554/1 1421/1 -f 1555/1 1447/1 1551/1 -f 1557/1 1554/1 1425/1 -f 1427/1 1557/1 1425/1 -f 1555/1 1454/1 1447/1 -f 1563/1 1454/1 1555/1 -f 1568/1 1557/1 1427/1 -f 1450/1 1568/1 1427/1 -f 1563/1 1456/1 1454/1 -f 1562/1 1456/1 1563/1 -f 1578/1 1568/1 1450/1 -f 1562/1 1460/1 1456/1 -f 1449/1 1578/1 1450/1 -f 1580/1 1578/1 1449/1 -f 1562/1 1461/1 1460/1 -f 1561/1 1461/1 1562/1 -f 1451/1 1580/1 1449/1 -f 1582/1 1580/1 1451/1 -f 1561/1 1451/1 1461/1 -f 1582/1 1451/1 1561/1 -f 1586/1 1629/1 1606/1 -f 1630/1 1585/1 1607/1 -f 1629/1 1607/1 1606/1 -f 1629/1 1630/1 1607/1 -f 1586/1 1631/1 1629/1 -f 1631/1 1632/1 1629/1 -f 1633/1 1585/1 1630/1 -f 1633/1 1634/1 1585/1 -f 1637/1 1630/1 1629/1 -f 1632/1 1637/1 1629/1 -f 1637/1 1635/1 1630/1 -f 1635/1 1633/1 1630/1 -f 1636/1 1637/1 1632/1 -f 1635/1 1638/1 1633/1 -f 1585/1 1641/1 1586/1 -f 1641/1 1639/1 1586/1 -f 1639/1 1631/1 1586/1 -f 1634/1 1641/1 1585/1 -f 1640/1 1641/1 1634/1 -f 1639/1 1642/1 1631/1 -f 1639/1 1641/1 1637/1 -f 1641/1 1635/1 1637/1 -f 1538/1 1419/1 1531/1 -f 1438/1 1547/1 1437/1 -f 1438/1 1548/1 1547/1 -f 1614/1 1508/1 1611/1 -f 1512/1 1508/1 1614/1 -f 1615/1 1512/1 1614/1 -f 1511/1 1512/1 1615/1 -f 1591/1 1594/1 1597/1 -f 1594/1 1602/1 1597/1 -f 1594/1 1593/1 1602/1 -f 1593/1 1603/1 1602/1 -f 1638/1 1634/1 1633/1 -f 1640/1 1634/1 1638/1 -f 1635/1 1640/1 1638/1 -f 1641/1 1640/1 1635/1 -f 1631/1 1642/1 1632/1 -f 1642/1 1636/1 1632/1 -f 1642/1 1639/1 1636/1 -f 1639/1 1637/1 1636/1 -f 1529/1 1527/1 1416/1 -f 1440/1 1529/1 1416/1 -f 1559/1 1529/1 1440/1 -f 1457/1 1559/1 1440/1 -f 1572/1 1559/1 1457/1 -f 1650/1 1655/1 1660/1 -f 1655/1 1643/1 1660/1 -f 1668/1 1644/1 1672/1 -f 1644/1 1645/1 1672/1 -f 1651/1 1647/1 1652/1 -f 1647/1 1646/1 1652/1 -f 1653/1 1648/1 1651/1 -f 1648/1 1647/1 1651/1 -f 1671/1 1649/1 1653/1 -f 1649/1 1648/1 1653/1 -f 1650/1 1646/1 1647/1 -f 1651/1 1652/1 1644/1 -f 1649/1 1654/1 1648/1 -f 1654/1 1647/1 1648/1 -f 1654/1 1650/1 1647/1 -f 1654/1 1655/1 1650/1 -f 1651/1 1644/1 1668/1 -f 1669/1 1651/1 1668/1 -f 1653/1 1651/1 1669/1 -f 1671/1 1653/1 1669/1 -f 1656/1 1661/1 1662/1 -f 1656/1 1657/1 1661/1 -f 1657/1 1658/1 1661/1 -f 1658/1 1663/1 1661/1 -f 1658/1 1676/1 1663/1 -f 1658/1 1659/1 1676/1 -f 1656/1 1660/1 1657/1 -f 1662/1 1661/1 1645/1 -f 1664/1 1659/1 1658/1 -f 1657/1 1664/1 1658/1 -f 1665/1 1664/1 1657/1 -f 1660/1 1665/1 1657/1 -f 1643/1 1665/1 1660/1 -f 1645/1 1675/1 1672/1 -f 1645/1 1661/1 1675/1 -f 1661/1 1663/1 1675/1 -f 1663/1 1676/1 1675/1 -f 1670/1 1666/1 1671/1 -f 1666/1 1649/1 1671/1 -f 1545/1 1666/1 1670/1 -f 1666/1 1654/1 1649/1 -f 1667/1 1654/1 1666/1 -f 1667/1 1655/1 1654/1 -f 1545/1 1669/1 1544/1 -f 1669/1 1668/1 1544/1 -f 1670/1 1669/1 1545/1 -f 1670/1 1671/1 1669/1 -f 1655/1 1674/1 1643/1 -f 1667/1 1674/1 1655/1 -f 1544/1 1672/1 1541/1 -f 1668/1 1672/1 1544/1 -f 1664/1 1673/1 1659/1 -f 1664/1 1564/1 1673/1 -f 1665/1 1674/1 1664/1 -f 1674/1 1564/1 1664/1 -f 1674/1 1665/1 1643/1 -f 1672/1 1675/1 1541/1 -f 1675/1 1553/1 1541/1 -f 1675/1 1676/1 1553/1 -f 1676/1 1677/1 1553/1 -f 1659/1 1677/1 1676/1 -f 1659/1 1673/1 1677/1 -f 1673/1 1553/1 1677/1 -f 1673/1 1564/1 1553/1 -f 1701/1 1687/1 1700/1 -f 1708/1 1701/1 1700/1 -f 1678/1 1682/1 1696/1 -f 1682/1 1692/1 1696/1 -f 1679/1 1680/1 1433/1 -f 1680/1 1435/1 1433/1 -f 1682/1 1683/1 1692/1 -f 1683/1 1691/1 1692/1 -f 1683/1 1690/1 1691/1 -f 1683/1 1684/1 1690/1 -f 1684/1 1694/1 1690/1 -f 1682/1 1685/1 1683/1 -f 1687/1 1685/1 1682/1 -f 1686/1 1687/1 1682/1 -f 1689/1 1688/1 1680/1 -f 1689/1 1691/1 1688/1 -f 1691/1 1690/1 1688/1 -f 1692/1 1691/1 1689/1 -f 1686/1 1682/1 1678/1 -f 1700/1 1686/1 1678/1 -f 1687/1 1686/1 1700/1 -f 1693/1 1684/1 1683/1 -f 1685/1 1693/1 1683/1 -f 1687/1 1693/1 1685/1 -f 1701/1 1693/1 1687/1 -f 1684/1 1448/1 1694/1 -f 1680/1 1688/1 1435/1 -f 1688/1 1702/1 1435/1 -f 1688/1 1694/1 1702/1 -f 1688/1 1690/1 1694/1 -f 1689/1 1680/1 1679/1 -f 1695/1 1689/1 1679/1 -f 1692/1 1689/1 1695/1 -f 1696/1 1692/1 1695/1 -f 1705/1 1697/1 1696/1 -f 1697/1 1678/1 1696/1 -f 1698/1 1697/1 1705/1 -f 1706/1 1698/1 1705/1 -f 1710/1 1681/1 1706/1 -f 1681/1 1698/1 1706/1 -f 1699/1 1678/1 1697/1 -f 1699/1 1697/1 1698/1 -f 1699/1 1700/1 1678/1 -f 1694/1 1448/1 1702/1 -f 1703/1 1695/1 1679/1 -f 1704/1 1705/1 1703/1 -f 1703/1 1696/1 1695/1 -f 1703/1 1705/1 1696/1 +f 1505/1 1504/1 1502/1 +f 1499/1 1505/1 1502/1 +f 1509/1 1485/1 1510/1 +f 1509/1 1511/1 1485/1 +f 1509/1 1512/1 1511/1 +f 1512/1 1513/1 1511/1 +f 1512/1 1514/1 1513/1 +f 1515/1 1433/1 1516/1 +f 1517/1 1515/1 1518/1 +f 1519/1 1517/1 1518/1 +f 1515/1 1520/1 1518/1 +f 1520/1 1521/1 1518/1 +f 1522/1 1517/1 1519/1 +f 1523/1 1522/1 1519/1 +f 1524/1 1525/1 1526/1 +f 1527/1 1528/1 1529/1 +f 1527/1 1530/1 1528/1 +f 1524/1 1531/1 1525/1 +f 1524/1 1532/1 1531/1 +f 1533/1 1534/1 1524/1 +f 1534/1 1535/1 1524/1 +f 1535/1 1532/1 1524/1 +f 1536/1 1537/1 1530/1 +f 1537/1 1538/1 1530/1 +f 1538/1 1539/1 1530/1 +f 1527/1 1536/1 1530/1 +f 1538/1 1540/1 1539/1 +f 1541/1 1534/1 1533/1 +f 1540/1 1542/1 1539/1 +f 1543/1 1534/1 1541/1 +f 1544/1 1545/1 1541/1 +f 1545/1 1546/1 1541/1 +f 1546/1 1543/1 1541/1 +f 1540/1 1547/1 1542/1 +f 1548/1 1544/1 1541/1 +f 1549/1 1548/1 1541/1 +f 1547/1 1550/1 1542/1 +f 1551/1 1549/1 1541/1 +f 1552/1 1549/1 1551/1 +f 1553/1 1552/1 1551/1 +f 1547/1 1554/1 1550/1 +f 1535/1 1496/1 1555/1 +f 1496/1 1497/1 1555/1 +f 1498/1 1496/1 1535/1 +f 1534/1 1498/1 1535/1 +f 1515/1 1553/1 1551/1 +f 1517/1 1553/1 1515/1 +f 1550/1 1554/1 1517/1 +f 1556/1 1553/1 1517/1 +f 1554/1 1556/1 1517/1 +f 1557/1 1558/1 1537/1 +f 1558/1 1538/1 1537/1 +f 1559/1 1558/1 1557/1 +f 1560/1 1556/1 1554/1 +f 1561/1 1556/1 1560/1 +f 1540/1 1562/1 1547/1 +f 1563/1 1534/1 1543/1 +f 1564/1 1549/1 1552/1 +f 1565/1 1566/1 1561/1 +f 1566/1 1567/1 1561/1 +f 1567/1 1556/1 1561/1 +f 1540/1 1568/1 1562/1 +f 1569/1 1534/1 1563/1 +f 1570/1 1566/1 1565/1 +f 1571/1 1549/1 1564/1 +f 1572/1 1534/1 1569/1 +f 1573/1 1568/1 1540/1 +f 1569/1 1574/1 1572/1 +f 1575/1 1576/1 1573/1 +f 1576/1 1577/1 1573/1 +f 1577/1 1568/1 1573/1 +f 1571/1 1578/1 1549/1 +f 1574/1 1579/1 1572/1 +f 1579/1 1490/1 1572/1 +f 1580/1 1581/1 1549/1 +f 1578/1 1580/1 1549/1 +f 1582/1 1566/1 1570/1 +f 1579/1 1583/1 1490/1 +f 1494/1 1493/1 1490/1 +f 1495/1 1494/1 1490/1 +f 1493/1 1492/1 1490/1 +f 1491/1 1489/1 1490/1 +f 1492/1 1491/1 1490/1 +f 1583/1 1510/1 1490/1 +f 1510/1 1495/1 1490/1 +f 1584/1 1585/1 1573/1 +f 1586/1 1587/1 1573/1 +f 1587/1 1584/1 1573/1 +f 1585/1 1588/1 1573/1 +f 1588/1 1589/1 1573/1 +f 1589/1 1580/1 1573/1 +f 1580/1 1575/1 1573/1 +f 1580/1 1590/1 1581/1 +f 1580/1 1566/1 1582/1 +f 1591/1 1587/1 1586/1 +f 1580/1 1510/1 1590/1 +f 1592/1 1580/1 1582/1 +f 1510/1 1593/1 1590/1 +f 1594/1 1580/1 1592/1 +f 1566/1 1580/1 1578/1 +f 1510/1 1595/1 1593/1 +f 1595/1 1510/1 1583/1 +f 1596/1 1580/1 1594/1 +f 1580/1 1596/1 1575/1 +f 1580/1 1509/1 1510/1 +f 1580/1 1597/1 1509/1 +f 1597/1 1512/1 1509/1 +f 1597/1 1598/1 1512/1 +f 1598/1 1599/1 1512/1 +f 1599/1 1514/1 1512/1 +f 1599/1 1600/1 1508/1 +f 1514/1 1599/1 1508/1 +f 1504/1 1601/1 1602/1 +f 1506/1 1601/1 1504/1 +f 1506/1 1603/1 1601/1 +f 1508/1 1603/1 1506/1 +f 1508/1 1600/1 1603/1 +f 1602/1 1604/1 1502/1 +f 1504/1 1602/1 1502/1 +f 1502/1 1605/1 1606/1 +f 1500/1 1502/1 1606/1 +f 1604/1 1607/1 1605/1 +f 1502/1 1604/1 1605/1 +f 1607/1 1608/1 1605/1 +f 1609/1 1500/1 1606/1 +f 1605/1 1610/1 1611/1 +f 1606/1 1605/1 1611/1 +f 1499/1 1501/1 1611/1 +f 1612/1 1499/1 1611/1 +f 1610/1 1612/1 1611/1 +f 1613/1 1612/1 1610/1 +f 1501/1 1614/1 1611/1 +f 1615/1 1613/1 1610/1 +f 1612/1 1505/1 1499/1 +f 1616/1 1505/1 1612/1 +f 1616/1 1503/1 1505/1 +f 1617/1 1503/1 1616/1 +f 1617/1 1507/1 1503/1 +f 1618/1 1507/1 1617/1 +f 1618/1 1619/1 1513/1 +f 1507/1 1618/1 1513/1 +f 1511/1 1471/1 1485/1 +f 1620/1 1471/1 1511/1 +f 1513/1 1620/1 1511/1 +f 1619/1 1620/1 1513/1 +f 1516/1 1436/1 1621/1 +f 1433/1 1436/1 1516/1 +f 1622/1 1516/1 1623/1 +f 1516/1 1624/1 1623/1 +f 1625/1 1622/1 1623/1 +f 1516/1 1621/1 1624/1 +f 1621/1 1626/1 1624/1 +f 1626/1 1627/1 1624/1 +f 1624/1 1518/1 1623/1 +f 1519/1 1518/1 1624/1 +f 1520/1 1515/1 1622/1 +f 1515/1 1516/1 1622/1 +f 1495/1 1510/1 1479/1 +f 1510/1 1485/1 1479/1 +f 1426/1 1555/1 1432/1 +f 1535/1 1555/1 1426/1 +f 1526/1 1402/1 1404/1 +f 1526/1 1525/1 1402/1 +f 1525/1 1408/1 1402/1 +f 1404/1 1524/1 1526/1 +f 1403/1 1524/1 1404/1 +f 1525/1 1531/1 1408/1 +f 1531/1 1410/1 1408/1 +f 1531/1 1532/1 1410/1 +f 1412/1 1524/1 1403/1 +f 1412/1 1533/1 1524/1 +f 1532/1 1413/1 1410/1 +f 1532/1 1535/1 1413/1 +f 1418/1 1533/1 1412/1 +f 1418/1 1541/1 1533/1 +f 1433/1 1551/1 1418/1 +f 1515/1 1551/1 1433/1 +f 1543/1 1546/1 1428/1 +f 1420/1 1543/1 1428/1 +f 1546/1 1441/1 1428/1 +f 1545/1 1441/1 1546/1 +f 1544/1 1441/1 1545/1 +f 1443/1 1543/1 1420/1 +f 1544/1 1444/1 1441/1 +f 1563/1 1543/1 1443/1 +f 1448/1 1563/1 1443/1 +f 1544/1 1449/1 1444/1 +f 1548/1 1449/1 1544/1 +f 1569/1 1563/1 1448/1 +f 1455/1 1569/1 1448/1 +f 1548/1 1456/1 1449/1 +f 1549/1 1456/1 1548/1 +f 1574/1 1569/1 1455/1 +f 1460/1 1574/1 1455/1 +f 1549/1 1463/1 1456/1 +f 1581/1 1463/1 1549/1 +f 1590/1 1463/1 1581/1 +f 1579/1 1574/1 1460/1 +f 1590/1 1476/1 1463/1 +f 1464/1 1579/1 1460/1 +f 1583/1 1579/1 1464/1 +f 1593/1 1476/1 1590/1 +f 1593/1 1477/1 1476/1 +f 1595/1 1477/1 1593/1 +f 1595/1 1583/1 1464/1 +f 1488/1 1595/1 1464/1 +f 1595/1 1488/1 1477/1 +f 1628/1 1508/1 1507/1 +f 1514/1 1629/1 1513/1 +f 1513/1 1629/1 1507/1 +f 1629/1 1628/1 1507/1 +f 1630/1 1508/1 1628/1 +f 1630/1 1631/1 1508/1 +f 1632/1 1633/1 1629/1 +f 1514/1 1632/1 1629/1 +f 1629/1 1634/1 1628/1 +f 1634/1 1635/1 1628/1 +f 1635/1 1630/1 1628/1 +f 1633/1 1634/1 1629/1 +f 1635/1 1636/1 1630/1 +f 1637/1 1634/1 1633/1 +f 1638/1 1514/1 1508/1 +f 1631/1 1638/1 1508/1 +f 1639/1 1632/1 1514/1 +f 1638/1 1639/1 1514/1 +f 1639/1 1640/1 1632/1 +f 1634/1 1638/1 1635/1 +f 1639/1 1638/1 1634/1 +f 1551/1 1541/1 1418/1 +f 1535/1 1426/1 1413/1 +f 1497/1 1430/1 1432/1 +f 1555/1 1497/1 1432/1 +f 1518/1 1521/1 1623/1 +f 1521/1 1625/1 1623/1 +f 1521/1 1520/1 1625/1 +f 1520/1 1622/1 1625/1 +f 1614/1 1606/1 1611/1 +f 1609/1 1606/1 1614/1 +f 1501/1 1500/1 1614/1 +f 1500/1 1609/1 1614/1 +f 1632/1 1637/1 1633/1 +f 1632/1 1640/1 1637/1 +f 1640/1 1639/1 1637/1 +f 1639/1 1634/1 1637/1 +f 1636/1 1631/1 1630/1 +f 1638/1 1631/1 1636/1 +f 1635/1 1638/1 1636/1 +f 1534/1 1411/1 1498/1 +f 1534/1 1447/1 1411/1 +f 1572/1 1447/1 1534/1 +f 1490/1 1447/1 1572/1 +f 1490/1 1467/1 1447/1 +f 1470/1 1586/1 1462/1 +f 1470/1 1591/1 1586/1 +f 1486/1 1591/1 1470/1 +f 1486/1 1587/1 1591/1 +f 1469/1 1587/1 1486/1 +f 1469/1 1584/1 1587/1 +f 1468/1 1584/1 1469/1 +f 1468/1 1585/1 1584/1 +f 1473/1 1585/1 1468/1 +f 1473/1 1588/1 1585/1 +f 1472/1 1588/1 1473/1 +f 1472/1 1589/1 1588/1 +f 1438/1 1559/1 1440/1 +f 1438/1 1558/1 1559/1 +f 1416/1 1558/1 1438/1 +f 1416/1 1538/1 1558/1 +f 1604/1 1612/1 1613/1 +f 1607/1 1604/1 1613/1 +f 1601/1 1616/1 1602/1 +f 1601/1 1617/1 1616/1 +f 1601/1 1603/1 1617/1 +f 1603/1 1618/1 1617/1 +f 1603/1 1600/1 1618/1 +f 1602/1 1612/1 1604/1 +f 1602/1 1616/1 1612/1 +f 1597/1 1580/1 1471/1 +f 1620/1 1598/1 1471/1 +f 1598/1 1597/1 1471/1 +f 1599/1 1598/1 1620/1 +f 1619/1 1599/1 1620/1 +f 1436/1 1517/1 1621/1 +f 1621/1 1522/1 1626/1 +f 1621/1 1517/1 1522/1 +f 1580/1 1589/1 1471/1 +f 1589/1 1472/1 1471/1 +f 1439/1 1537/1 1414/1 +f 1557/1 1537/1 1439/1 +f 1529/1 1528/1 1407/1 +f 1406/1 1529/1 1407/1 +f 1528/1 1405/1 1407/1 +f 1406/1 1527/1 1529/1 +f 1528/1 1530/1 1405/1 +f 1409/1 1527/1 1406/1 +f 1539/1 1417/1 1405/1 +f 1530/1 1539/1 1405/1 +f 1415/1 1527/1 1409/1 +f 1415/1 1536/1 1527/1 +f 1542/1 1419/1 1417/1 +f 1539/1 1542/1 1417/1 +f 1414/1 1536/1 1415/1 +f 1414/1 1537/1 1536/1 +f 1419/1 1517/1 1436/1 +f 1550/1 1517/1 1419/1 +f 1560/1 1554/1 1423/1 +f 1422/1 1560/1 1423/1 +f 1554/1 1424/1 1423/1 +f 1547/1 1424/1 1554/1 +f 1561/1 1560/1 1422/1 +f 1421/1 1561/1 1422/1 +f 1547/1 1445/1 1424/1 +f 1562/1 1445/1 1547/1 +f 1565/1 1561/1 1421/1 +f 1562/1 1450/1 1445/1 +f 1425/1 1565/1 1421/1 +f 1568/1 1450/1 1562/1 +f 1570/1 1565/1 1425/1 +f 1427/1 1570/1 1425/1 +f 1568/1 1457/1 1450/1 +f 1577/1 1457/1 1568/1 +f 1582/1 1570/1 1427/1 +f 1453/1 1582/1 1427/1 +f 1577/1 1461/1 1457/1 +f 1576/1 1461/1 1577/1 +f 1592/1 1582/1 1453/1 +f 1576/1 1465/1 1461/1 +f 1452/1 1592/1 1453/1 +f 1594/1 1592/1 1452/1 +f 1576/1 1466/1 1465/1 +f 1575/1 1466/1 1576/1 +f 1454/1 1594/1 1452/1 +f 1596/1 1594/1 1454/1 +f 1575/1 1454/1 1466/1 +f 1596/1 1454/1 1575/1 +f 1600/1 1641/1 1618/1 +f 1642/1 1599/1 1619/1 +f 1641/1 1619/1 1618/1 +f 1641/1 1642/1 1619/1 +f 1600/1 1643/1 1641/1 +f 1643/1 1644/1 1641/1 +f 1645/1 1599/1 1642/1 +f 1645/1 1646/1 1599/1 +f 1647/1 1642/1 1641/1 +f 1644/1 1647/1 1641/1 +f 1647/1 1648/1 1642/1 +f 1648/1 1645/1 1642/1 +f 1649/1 1647/1 1644/1 +f 1648/1 1650/1 1645/1 +f 1599/1 1651/1 1600/1 +f 1651/1 1652/1 1600/1 +f 1652/1 1643/1 1600/1 +f 1646/1 1651/1 1599/1 +f 1653/1 1651/1 1646/1 +f 1652/1 1654/1 1643/1 +f 1652/1 1651/1 1647/1 +f 1651/1 1648/1 1647/1 +f 1550/1 1419/1 1542/1 +f 1440/1 1557/1 1439/1 +f 1440/1 1559/1 1557/1 +f 1627/1 1519/1 1624/1 +f 1523/1 1519/1 1627/1 +f 1626/1 1523/1 1627/1 +f 1522/1 1523/1 1626/1 +f 1605/1 1608/1 1610/1 +f 1608/1 1615/1 1610/1 +f 1608/1 1607/1 1615/1 +f 1607/1 1613/1 1615/1 +f 1650/1 1646/1 1645/1 +f 1653/1 1646/1 1650/1 +f 1648/1 1653/1 1650/1 +f 1651/1 1653/1 1648/1 +f 1643/1 1654/1 1644/1 +f 1654/1 1649/1 1644/1 +f 1654/1 1652/1 1649/1 +f 1652/1 1647/1 1649/1 +f 1540/1 1538/1 1416/1 +f 1442/1 1540/1 1416/1 +f 1573/1 1540/1 1442/1 +f 1462/1 1573/1 1442/1 +f 1586/1 1573/1 1462/1 +f 1655/1 1656/1 1657/1 +f 1656/1 1658/1 1657/1 +f 1659/1 1660/1 1661/1 +f 1660/1 1662/1 1661/1 +f 1663/1 1664/1 1665/1 +f 1664/1 1666/1 1665/1 +f 1667/1 1668/1 1663/1 +f 1668/1 1664/1 1663/1 +f 1669/1 1670/1 1667/1 +f 1670/1 1668/1 1667/1 +f 1655/1 1666/1 1664/1 +f 1663/1 1665/1 1660/1 +f 1670/1 1671/1 1668/1 +f 1671/1 1664/1 1668/1 +f 1671/1 1655/1 1664/1 +f 1671/1 1656/1 1655/1 +f 1663/1 1660/1 1659/1 +f 1672/1 1663/1 1659/1 +f 1667/1 1663/1 1672/1 +f 1669/1 1667/1 1672/1 +f 1673/1 1674/1 1675/1 +f 1673/1 1676/1 1674/1 +f 1676/1 1677/1 1674/1 +f 1677/1 1678/1 1674/1 +f 1677/1 1679/1 1678/1 +f 1677/1 1680/1 1679/1 +f 1673/1 1657/1 1676/1 +f 1675/1 1674/1 1662/1 +f 1681/1 1680/1 1677/1 +f 1676/1 1681/1 1677/1 +f 1682/1 1681/1 1676/1 +f 1657/1 1682/1 1676/1 +f 1658/1 1682/1 1657/1 +f 1662/1 1683/1 1661/1 +f 1662/1 1674/1 1683/1 +f 1674/1 1678/1 1683/1 +f 1678/1 1679/1 1683/1 +f 1684/1 1567/1 1669/1 +f 1567/1 1670/1 1669/1 +f 1556/1 1567/1 1684/1 +f 1567/1 1671/1 1670/1 +f 1566/1 1671/1 1567/1 +f 1566/1 1656/1 1671/1 +f 1556/1 1672/1 1553/1 +f 1672/1 1659/1 1553/1 +f 1684/1 1672/1 1556/1 +f 1684/1 1669/1 1672/1 +f 1656/1 1578/1 1658/1 +f 1566/1 1578/1 1656/1 +f 1553/1 1661/1 1552/1 +f 1659/1 1661/1 1553/1 +f 1681/1 1685/1 1680/1 +f 1681/1 1571/1 1685/1 +f 1682/1 1578/1 1681/1 +f 1578/1 1571/1 1681/1 +f 1578/1 1682/1 1658/1 +f 1661/1 1683/1 1552/1 +f 1683/1 1564/1 1552/1 +f 1683/1 1679/1 1564/1 +f 1679/1 1686/1 1564/1 +f 1680/1 1686/1 1679/1 +f 1680/1 1685/1 1686/1 +f 1685/1 1564/1 1686/1 +f 1685/1 1571/1 1564/1 +f 1483/1 1687/1 1688/1 +f 1484/1 1483/1 1688/1 +f 1689/1 1690/1 1691/1 +f 1690/1 1692/1 1691/1 +f 1693/1 1694/1 1435/1 +f 1694/1 1437/1 1435/1 +f 1690/1 1695/1 1692/1 +f 1695/1 1696/1 1692/1 +f 1695/1 1697/1 1696/1 +f 1695/1 1459/1 1697/1 +f 1459/1 1698/1 1697/1 +f 1690/1 1699/1 1695/1 +f 1687/1 1699/1 1690/1 +f 1700/1 1687/1 1690/1 +f 1701/1 1702/1 1694/1 +f 1701/1 1696/1 1702/1 +f 1696/1 1697/1 1702/1 +f 1692/1 1696/1 1701/1 +f 1700/1 1690/1 1689/1 +f 1688/1 1700/1 1689/1 +f 1687/1 1700/1 1688/1 +f 1481/1 1459/1 1695/1 +f 1699/1 1481/1 1695/1 +f 1687/1 1481/1 1699/1 +f 1483/1 1481/1 1687/1 +f 1459/1 1451/1 1698/1 +f 1694/1 1702/1 1437/1 +f 1702/1 1446/1 1437/1 +f 1702/1 1698/1 1446/1 +f 1702/1 1697/1 1698/1 +f 1701/1 1694/1 1693/1 +f 1703/1 1701/1 1693/1 +f 1692/1 1701/1 1703/1 +f 1691/1 1692/1 1703/1 +f 1704/1 1705/1 1691/1 +f 1705/1 1689/1 1691/1 f 1706/1 1705/1 1704/1 -f 1681/1 1707/1 1698/1 -f 1707/1 1699/1 1698/1 -f 1707/1 1708/1 1699/1 -f 1708/1 1700/1 1699/1 -f 1703/1 1679/1 1433/1 -f 1709/1 1703/1 1433/1 -f 1704/1 1703/1 1709/1 -f 1706/1 1704/1 1709/1 -f 1710/1 1706/1 1709/1 -f 1644/1 1662/1 1645/1 -f 1652/1 1662/1 1644/1 -f 1646/1 1660/1 1656/1 -f 1650/1 1660/1 1646/1 -f 1652/1 1656/1 1662/1 -f 1646/1 1656/1 1652/1 -f 1717/1 1714/1 1711/1 -f 1712/1 1715/1 1713/1 -f 1716/1 1717/1 1711/1 -f 1718/1 1715/1 1712/1 -f 1719/1 1717/1 1716/1 -f 1720/1 1721/1 1717/1 -f 1722/1 1720/1 1717/1 -f 1719/1 1722/1 1717/1 -f 1723/1 1724/1 1712/1 -f 1725/1 1723/1 1712/1 -f 1726/1 1725/1 1712/1 -f 1724/1 1718/1 1712/1 +f 1707/1 1706/1 1704/1 +f 1429/1 1458/1 1707/1 +f 1458/1 1706/1 1707/1 +f 1708/1 1689/1 1705/1 +f 1708/1 1705/1 1706/1 +f 1708/1 1688/1 1689/1 +f 1698/1 1451/1 1446/1 +f 1709/1 1703/1 1693/1 +f 1710/1 1704/1 1709/1 +f 1709/1 1691/1 1703/1 +f 1709/1 1704/1 1691/1 +f 1707/1 1704/1 1710/1 +f 1458/1 1480/1 1706/1 +f 1480/1 1708/1 1706/1 +f 1480/1 1484/1 1708/1 +f 1484/1 1688/1 1708/1 +f 1709/1 1693/1 1435/1 +f 1434/1 1709/1 1435/1 +f 1710/1 1709/1 1434/1 +f 1707/1 1710/1 1434/1 +f 1429/1 1707/1 1434/1 +f 1660/1 1675/1 1662/1 +f 1665/1 1675/1 1660/1 +f 1666/1 1657/1 1673/1 +f 1655/1 1657/1 1666/1 +f 1665/1 1673/1 1675/1 +f 1666/1 1673/1 1665/1 +f 1711/1 1712/1 1713/1 +f 1714/1 1715/1 1716/1 +f 1717/1 1711/1 1713/1 +f 1718/1 1715/1 1714/1 +f 1719/1 1711/1 1717/1 +f 1720/1 1721/1 1711/1 +f 1722/1 1720/1 1711/1 +f 1719/1 1722/1 1711/1 +f 1723/1 1724/1 1714/1 +f 1725/1 1723/1 1714/1 +f 1726/1 1725/1 1714/1 +f 1724/1 1718/1 1714/1 f 1720/1 1727/1 1721/1 f 1728/1 1725/1 1726/1 f 1720/1 1729/1 1727/1 @@ -5450,596 +5454,596 @@ f 1734/1 1730/1 1728/1 f 1735/1 1720/1 1722/1 f 1736/1 1734/1 1728/1 f 1729/1 1737/1 1727/1 -f 1737/1 2016/1 1727/1 -f 1739/1 1740/1 1738/1 -f 1740/1 1735/1 1738/1 +f 1737/1 1738/1 1727/1 +f 1739/1 1740/1 1741/1 +f 1740/1 1735/1 1741/1 f 1740/1 1720/1 1735/1 -f 2016/1 1741/1 1727/1 -f 2016/1 2015/1 1741/1 -f 2015/1 1742/1 1741/1 -f 1742/1 1743/1 1741/1 -f 1744/1 1736/1 1743/1 -f 1742/1 1744/1 1743/1 -f 1744/1 1734/1 1736/1 -f 1725/1 1745/1 1723/1 -f 1745/1 1746/1 1723/1 -f 1746/1 1747/1 1723/1 -f 1746/1 1748/1 1747/1 -f 1749/1 2016/1 1737/1 -f 1720/1 1750/1 1729/1 -f 1751/1 2016/1 1749/1 -f 1752/1 1725/1 1733/1 -f 2007/1 1734/1 1744/1 -f 1720/1 1753/1 1750/1 -f 1754/1 2016/1 1751/1 -f 1755/1 1725/1 1752/1 -f 2008/1 1734/1 2007/1 -f 1753/1 1756/1 1750/1 -f 2009/1 1734/1 2008/1 -f 1758/1 1759/1 2009/1 -f 1759/1 1757/1 2009/1 -f 1757/1 1760/1 2009/1 -f 1760/1 1734/1 2009/1 -f 1761/1 2016/1 1754/1 -f 1762/1 1725/1 1755/1 -f 1761/1 2014/1 2016/1 -f 1986/1 1758/1 2009/1 -f 1753/1 1763/1 1756/1 -f 1764/1 1725/1 1762/1 -f 1765/1 1763/1 1753/1 -f 1762/1 1767/1 1764/1 -f 1766/1 2014/1 1761/1 -f 1767/1 1768/1 1764/1 -f 1768/1 1769/1 1764/1 -f 1770/1 1765/1 1753/1 -f 1768/1 1771/1 1769/1 -f 1772/1 1770/1 1753/1 -f 1773/1 1774/1 1769/1 -f 1774/1 1791/1 1769/1 -f 1771/1 1776/1 1769/1 -f 1776/1 1775/1 1769/1 -f 1775/1 1777/1 1769/1 -f 1777/1 1773/1 1769/1 -f 1778/1 1779/1 2014/1 -f 1766/1 1780/1 2014/1 -f 1780/1 1781/1 2014/1 -f 1781/1 1778/1 2014/1 -f 1779/1 1782/1 2014/1 -f 1782/1 1783/1 2014/1 -f 1783/1 1784/1 2014/1 -f 1776/1 1758/1 1986/1 -f 1998/1 1776/1 1986/1 -f 1999/1 1776/1 1998/1 -f 1785/1 1770/1 1772/1 -f 1791/1 1786/1 1769/1 -f 1783/1 2013/1 1784/1 -f 1787/1 1776/1 1999/1 -f 1783/1 1787/1 2013/1 -f 1787/1 1999/1 2013/1 -f 1778/1 1789/1 1770/1 -f 1788/1 1778/1 1770/1 -f 1790/1 1788/1 1770/1 -f 1785/1 1790/1 1770/1 -f 1789/1 1778/1 1781/1 -f 1758/1 1776/1 1771/1 -f 1793/1 1785/1 1772/1 -f 1792/1 1793/1 1772/1 -f 1794/1 1790/1 1785/1 -f 1793/1 1794/1 1785/1 -f 1794/1 1788/1 1790/1 -f 1794/1 1795/1 1788/1 -f 1795/1 1778/1 1788/1 -f 1796/1 1779/1 1778/1 -f 1795/1 1796/1 1778/1 -f 1796/1 1782/1 1779/1 -f 1796/1 1797/1 1782/1 -f 1797/1 1783/1 1782/1 -f 1798/1 1740/1 1739/1 -f 1798/1 1799/1 1740/1 -f 1799/1 1720/1 1740/1 -f 1799/1 1800/1 1720/1 -f 1802/1 1803/1 1907/1 -f 1802/1 1801/1 1803/1 -f 1806/1 1805/1 1804/1 -f 1807/1 1805/1 1806/1 -f 1808/1 1807/1 1806/1 -f 1809/1 1807/1 1808/1 -f 1804/1 1805/1 1801/1 -f 1802/1 1804/1 1801/1 -f 1811/1 1787/1 1810/1 -f 1811/1 1812/1 1787/1 -f 1811/1 1813/1 1812/1 -f 1813/1 1814/1 1812/1 -f 1813/1 1815/1 1814/1 -f 1816/1 1741/1 1817/1 -f 1818/1 1816/1 1819/1 +f 1738/1 1742/1 1727/1 +f 1738/1 1743/1 1742/1 +f 1743/1 1744/1 1742/1 +f 1744/1 1745/1 1742/1 +f 1746/1 1736/1 1745/1 +f 1744/1 1746/1 1745/1 +f 1746/1 1734/1 1736/1 +f 1725/1 1747/1 1723/1 +f 1747/1 1748/1 1723/1 +f 1748/1 1749/1 1723/1 +f 1748/1 1750/1 1749/1 +f 1751/1 1738/1 1737/1 +f 1720/1 1752/1 1729/1 +f 1753/1 1738/1 1751/1 +f 1754/1 1725/1 1733/1 +f 1755/1 1734/1 1746/1 +f 1720/1 1756/1 1752/1 +f 1757/1 1738/1 1753/1 +f 1758/1 1725/1 1754/1 +f 1759/1 1734/1 1755/1 +f 1756/1 1760/1 1752/1 +f 1761/1 1734/1 1759/1 +f 1762/1 1763/1 1761/1 +f 1763/1 1764/1 1761/1 +f 1764/1 1765/1 1761/1 +f 1765/1 1734/1 1761/1 +f 1766/1 1738/1 1757/1 +f 1767/1 1725/1 1758/1 +f 1766/1 1768/1 1738/1 +f 1769/1 1762/1 1761/1 +f 1756/1 1770/1 1760/1 +f 1771/1 1725/1 1767/1 +f 1772/1 1770/1 1756/1 +f 1767/1 1773/1 1771/1 +f 1774/1 1768/1 1766/1 +f 1773/1 1775/1 1771/1 +f 1775/1 1776/1 1771/1 +f 1777/1 1772/1 1756/1 +f 1775/1 1778/1 1776/1 +f 1779/1 1777/1 1756/1 +f 1780/1 1781/1 1776/1 +f 1781/1 1782/1 1776/1 +f 1778/1 1783/1 1776/1 +f 1783/1 1784/1 1776/1 +f 1784/1 1785/1 1776/1 +f 1785/1 1780/1 1776/1 +f 1786/1 1787/1 1768/1 +f 1774/1 1788/1 1768/1 +f 1788/1 1789/1 1768/1 +f 1789/1 1786/1 1768/1 +f 1787/1 1790/1 1768/1 +f 1790/1 1791/1 1768/1 +f 1791/1 1792/1 1768/1 +f 1783/1 1762/1 1769/1 +f 1793/1 1783/1 1769/1 +f 1794/1 1783/1 1793/1 +f 1795/1 1777/1 1779/1 +f 1782/1 1796/1 1776/1 +f 1791/1 1797/1 1792/1 +f 1798/1 1783/1 1794/1 +f 1791/1 1798/1 1797/1 +f 1798/1 1794/1 1797/1 +f 1786/1 1799/1 1777/1 +f 1800/1 1786/1 1777/1 +f 1801/1 1800/1 1777/1 +f 1795/1 1801/1 1777/1 +f 1799/1 1786/1 1789/1 +f 1762/1 1783/1 1778/1 +f 1802/1 1795/1 1779/1 +f 1803/1 1802/1 1779/1 +f 1804/1 1801/1 1795/1 +f 1802/1 1804/1 1795/1 +f 1804/1 1800/1 1801/1 +f 1804/1 1805/1 1800/1 +f 1805/1 1786/1 1800/1 +f 1806/1 1787/1 1786/1 +f 1805/1 1806/1 1786/1 +f 1806/1 1790/1 1787/1 +f 1806/1 1807/1 1790/1 +f 1807/1 1791/1 1790/1 +f 1808/1 1740/1 1739/1 +f 1808/1 1809/1 1740/1 +f 1809/1 1720/1 1740/1 +f 1809/1 1810/1 1720/1 +f 1811/1 1812/1 1813/1 +f 1811/1 1814/1 1812/1 +f 1815/1 1816/1 1817/1 +f 1818/1 1816/1 1815/1 +f 1819/1 1818/1 1815/1 f 1820/1 1818/1 1819/1 -f 1816/1 1821/1 1819/1 -f 1821/1 1822/1 1819/1 -f 1824/1 1818/1 1820/1 -f 1823/1 1824/1 1820/1 -f 1829/1 1825/1 1826/1 -f 1827/1 1830/1 1828/1 -f 1825/1 1831/1 1826/1 +f 1817/1 1816/1 1814/1 +f 1811/1 1817/1 1814/1 +f 1821/1 1798/1 1822/1 +f 1821/1 1823/1 1798/1 +f 1821/1 1824/1 1823/1 +f 1824/1 1825/1 1823/1 +f 1824/1 1826/1 1825/1 +f 1827/1 1742/1 1828/1 +f 1829/1 1827/1 1830/1 +f 1831/1 1829/1 1830/1 f 1827/1 1832/1 1830/1 -f 1825/1 1836/1 1831/1 -f 1834/1 1833/1 1825/1 -f 1833/1 1835/1 1825/1 -f 1835/1 1836/1 1825/1 -f 1837/1 1838/1 1832/1 -f 1838/1 1839/1 1832/1 -f 1839/1 1840/1 1832/1 -f 1827/1 1837/1 1832/1 -f 1841/1 1833/1 1834/1 -f 1839/1 1842/1 1840/1 -f 1843/1 1833/1 1841/1 -f 1844/1 1845/1 1841/1 -f 1845/1 1846/1 1841/1 -f 1846/1 1843/1 1841/1 -f 1839/1 1847/1 1842/1 -f 1848/1 1844/1 1841/1 -f 1849/1 1850/1 1841/1 -f 1850/1 1848/1 1841/1 -f 1847/1 1851/1 1842/1 -f 1852/1 1850/1 1849/1 -f 1855/1 1852/1 1849/1 -f 1847/1 1853/1 1851/1 -f 1835/1 1798/1 1854/1 -f 1800/1 1799/1 1835/1 -f 1833/1 1800/1 1835/1 -f 1799/1 1798/1 1835/1 -f 1816/1 1855/1 1849/1 -f 1818/1 1855/1 1816/1 -f 1851/1 1853/1 1818/1 -f 1974/1 1855/1 1818/1 -f 1853/1 1974/1 1818/1 -f 1857/1 1858/1 1838/1 -f 1858/1 1856/1 1838/1 -f 1856/1 1839/1 1838/1 -f 1859/1 1974/1 1853/1 -f 1860/1 1974/1 1859/1 -f 1839/1 1861/1 1847/1 -f 1862/1 1833/1 1843/1 -f 1863/1 1850/1 1852/1 -f 1864/1 1971/1 1860/1 -f 1971/1 1970/1 1860/1 -f 1970/1 1974/1 1860/1 -f 1839/1 1865/1 1861/1 -f 1866/1 1833/1 1862/1 -f 1867/1 1971/1 1864/1 -f 1839/1 1868/1 1865/1 -f 1977/1 1850/1 1863/1 -f 1869/1 1833/1 1866/1 -f 1870/1 1868/1 1839/1 -f 1866/1 1871/1 1869/1 -f 1872/1 1873/1 1870/1 -f 1873/1 1868/1 1870/1 -f 1978/1 1874/1 1850/1 -f 1977/1 1978/1 1850/1 -f 1871/1 1792/1 1869/1 -f 1875/1 1872/1 1870/1 -f 1978/1 1876/1 1874/1 -f 1877/1 1971/1 1867/1 -f 1878/1 1879/1 1792/1 -f 1871/1 1878/1 1792/1 -f 1797/1 1796/1 1792/1 -f 1796/1 1795/1 1792/1 -f 1795/1 1794/1 1792/1 -f 1794/1 1793/1 1792/1 -f 1879/1 1810/1 1792/1 -f 1810/1 1797/1 1792/1 -f 1880/1 1881/1 1875/1 -f 1882/1 1880/1 1875/1 -f 1881/1 1884/1 1875/1 -f 1884/1 1883/1 1875/1 -f 1883/1 1876/1 1875/1 -f 1876/1 1872/1 1875/1 -f 1876/1 1885/1 1874/1 -f 1876/1 1971/1 1877/1 -f 1876/1 1810/1 1885/1 -f 1886/1 1876/1 1877/1 -f 1887/1 1882/1 1875/1 -f 1810/1 1888/1 1885/1 -f 1971/1 1876/1 1978/1 -f 1889/1 1876/1 1886/1 -f 1810/1 1890/1 1888/1 -f 1890/1 1810/1 1879/1 -f 1891/1 1876/1 1889/1 -f 1876/1 1891/1 1872/1 -f 1876/1 1811/1 1810/1 -f 1876/1 1892/1 1811/1 -f 1892/1 1813/1 1811/1 -f 1892/1 1893/1 1813/1 -f 1893/1 1894/1 1813/1 -f 1894/1 1815/1 1813/1 -f 1894/1 1895/1 1809/1 -f 1815/1 1894/1 1809/1 -f 1805/1 1897/1 1896/1 -f 1807/1 1897/1 1805/1 -f 1807/1 1898/1 1897/1 -f 1809/1 1898/1 1807/1 -f 1809/1 1895/1 1898/1 -f 1896/1 1899/1 1801/1 -f 1805/1 1896/1 1801/1 -f 1801/1 1900/1 1901/1 -f 1803/1 1801/1 1901/1 -f 1899/1 1902/1 1900/1 -f 1801/1 1899/1 1900/1 -f 1903/1 1803/1 1901/1 -f 1900/1 1904/1 1905/1 -f 1901/1 1900/1 1905/1 -f 1802/1 1907/1 1905/1 -f 1906/1 1802/1 1905/1 -f 1904/1 1906/1 1905/1 -f 1909/1 1906/1 1904/1 -f 1907/1 1908/1 1905/1 -f 1906/1 1804/1 1802/1 -f 1910/1 1804/1 1906/1 -f 1910/1 1806/1 1804/1 -f 1911/1 1806/1 1910/1 -f 1911/1 1808/1 1806/1 -f 1912/1 1808/1 1911/1 -f 1912/1 1913/1 1814/1 -f 1808/1 1912/1 1814/1 -f 1812/1 1914/1 1787/1 -f 1914/1 1776/1 1787/1 -f 1913/1 1914/1 1812/1 -f 1814/1 1913/1 1812/1 -f 1817/1 1743/1 1915/1 -f 1741/1 1743/1 1817/1 -f 1919/1 1817/1 1916/1 -f 1817/1 1917/1 1916/1 -f 1918/1 1919/1 1916/1 -f 1817/1 1915/1 1917/1 -f 1915/1 1920/1 1917/1 -f 1917/1 1819/1 1916/1 -f 1820/1 1819/1 1917/1 -f 1821/1 1816/1 1919/1 -f 1816/1 1817/1 1919/1 -f 1797/1 1810/1 1783/1 -f 1810/1 1787/1 1783/1 -f 1735/1 1854/1 1738/1 -f 1835/1 1854/1 1735/1 -f 1714/1 1826/1 1711/1 -f 1714/1 1829/1 1826/1 -f 1831/1 1716/1 1711/1 -f 1826/1 1831/1 1711/1 -f 1717/1 1829/1 1714/1 -f 1717/1 1825/1 1829/1 -f 1831/1 1719/1 1716/1 -f 1831/1 1836/1 1719/1 -f 1721/1 1825/1 1717/1 -f 1721/1 1834/1 1825/1 -f 1836/1 1722/1 1719/1 -f 1836/1 1835/1 1722/1 -f 1727/1 1834/1 1721/1 -f 1727/1 1841/1 1834/1 -f 1741/1 1849/1 1727/1 -f 1816/1 1849/1 1741/1 -f 1843/1 1846/1 1737/1 -f 1729/1 1843/1 1737/1 -f 1846/1 1749/1 1737/1 -f 1845/1 1749/1 1846/1 -f 1750/1 1843/1 1729/1 -f 1845/1 1751/1 1749/1 -f 1844/1 1751/1 1845/1 -f 1862/1 1843/1 1750/1 -f 1844/1 1754/1 1751/1 -f 1756/1 1862/1 1750/1 -f 1848/1 1754/1 1844/1 -f 1866/1 1862/1 1756/1 -f 1848/1 1761/1 1754/1 -f 1850/1 1761/1 1848/1 -f 1763/1 1866/1 1756/1 -f 1850/1 1766/1 1761/1 -f 1874/1 1766/1 1850/1 -f 1871/1 1866/1 1763/1 -f 1765/1 1871/1 1763/1 -f 1874/1 1780/1 1766/1 -f 1885/1 1780/1 1874/1 -f 1878/1 1871/1 1765/1 -f 1770/1 1878/1 1765/1 -f 1885/1 1781/1 1780/1 -f 1888/1 1781/1 1885/1 -f 1879/1 1878/1 1770/1 -f 1890/1 1781/1 1888/1 -f 1890/1 1879/1 1770/1 -f 1789/1 1890/1 1770/1 -f 1890/1 1789/1 1781/1 -f 1921/1 1809/1 1808/1 -f 1815/1 1922/1 1814/1 -f 1814/1 1922/1 1808/1 -f 1922/1 1921/1 1808/1 -f 1923/1 1809/1 1921/1 -f 1923/1 1924/1 1809/1 -f 1925/1 1926/1 1922/1 -f 1815/1 1925/1 1922/1 -f 1922/1 1929/1 1921/1 -f 1929/1 1927/1 1921/1 -f 1927/1 1923/1 1921/1 -f 1926/1 1929/1 1922/1 -f 1927/1 1928/1 1923/1 -f 1930/1 1929/1 1926/1 -f 1932/1 1815/1 1809/1 -f 1924/1 1932/1 1809/1 -f 1931/1 1925/1 1815/1 -f 1932/1 1931/1 1815/1 -f 1933/1 1932/1 1924/1 -f 1931/1 1934/1 1925/1 -f 1929/1 1932/1 1927/1 -f 1931/1 1932/1 1929/1 -f 1849/1 1841/1 1727/1 -f 1835/1 1735/1 1722/1 -f 1854/1 1739/1 1738/1 -f 1854/1 1798/1 1739/1 -f 1819/1 1822/1 1916/1 -f 1822/1 1918/1 1916/1 -f 1822/1 1821/1 1918/1 -f 1821/1 1919/1 1918/1 -f 1908/1 1901/1 1905/1 -f 1903/1 1901/1 1908/1 -f 1907/1 1903/1 1908/1 -f 1803/1 1903/1 1907/1 -f 1925/1 1934/1 1926/1 -f 1934/1 1930/1 1926/1 -f 1934/1 1931/1 1930/1 -f 1931/1 1929/1 1930/1 -f 1928/1 1924/1 1923/1 -f 1933/1 1924/1 1928/1 -f 1927/1 1933/1 1928/1 -f 1932/1 1933/1 1927/1 -f 1833/1 1720/1 1800/1 -f 1833/1 1753/1 1720/1 -f 1869/1 1753/1 1833/1 -f 1792/1 1753/1 1869/1 -f 1792/1 1772/1 1753/1 -f 1786/1 1875/1 1769/1 -f 1786/1 1887/1 1875/1 -f 1791/1 1887/1 1786/1 -f 1791/1 1882/1 1887/1 -f 1774/1 1882/1 1791/1 -f 1774/1 1880/1 1882/1 -f 1773/1 1880/1 1774/1 -f 1773/1 1881/1 1880/1 -f 1777/1 1881/1 1773/1 -f 1777/1 1884/1 1881/1 -f 1775/1 1884/1 1777/1 -f 1775/1 1883/1 1884/1 -f 1746/1 1858/1 1748/1 -f 1746/1 1856/1 1858/1 -f 1745/1 1856/1 1746/1 -f 1745/1 1839/1 1856/1 -f 1899/1 1906/1 1909/1 -f 1902/1 1899/1 1909/1 -f 1897/1 1910/1 1896/1 -f 1897/1 1911/1 1910/1 -f 1897/1 1898/1 1911/1 -f 1898/1 1912/1 1911/1 -f 1898/1 1895/1 1912/1 -f 1896/1 1906/1 1899/1 -f 1896/1 1910/1 1906/1 -f 1914/1 1892/1 1776/1 -f 1892/1 1876/1 1776/1 -f 1893/1 1892/1 1914/1 -f 1913/1 1893/1 1914/1 -f 1894/1 1893/1 1913/1 -f 1743/1 1818/1 1915/1 -f 1915/1 1824/1 1920/1 -f 1915/1 1818/1 1824/1 -f 1876/1 1883/1 1776/1 -f 1883/1 1775/1 1776/1 -f 1747/1 1838/1 1723/1 -f 1857/1 1838/1 1747/1 -f 1828/1 1830/1 1713/1 -f 1715/1 1828/1 1713/1 -f 1830/1 1712/1 1713/1 -f 1715/1 1827/1 1828/1 -f 1830/1 1832/1 1712/1 -f 1718/1 1827/1 1715/1 -f 1840/1 1726/1 1712/1 -f 1832/1 1840/1 1712/1 -f 1724/1 1827/1 1718/1 -f 1724/1 1837/1 1827/1 -f 1842/1 1728/1 1726/1 -f 1840/1 1842/1 1726/1 -f 1723/1 1837/1 1724/1 -f 1723/1 1838/1 1837/1 -f 1736/1 1818/1 1743/1 -f 1851/1 1818/1 1736/1 -f 1859/1 1853/1 1732/1 -f 1731/1 1859/1 1732/1 -f 1853/1 1733/1 1732/1 -f 1847/1 1733/1 1853/1 -f 1860/1 1859/1 1731/1 -f 1730/1 1860/1 1731/1 -f 1847/1 1752/1 1733/1 -f 1861/1 1752/1 1847/1 -f 1864/1 1860/1 1730/1 -f 1861/1 1755/1 1752/1 -f 1734/1 1864/1 1730/1 -f 1865/1 1755/1 1861/1 -f 1867/1 1864/1 1734/1 -f 1865/1 1762/1 1755/1 -f 1868/1 1762/1 1865/1 -f 1760/1 1867/1 1734/1 -f 1877/1 1867/1 1760/1 -f 1868/1 1767/1 1762/1 -f 1873/1 1767/1 1868/1 -f 1757/1 1877/1 1760/1 -f 1873/1 1768/1 1767/1 -f 1886/1 1877/1 1757/1 -f 1872/1 1768/1 1873/1 -f 1872/1 1771/1 1768/1 -f 1889/1 1886/1 1757/1 -f 1759/1 1889/1 1757/1 -f 1758/1 1889/1 1759/1 -f 1891/1 1889/1 1758/1 -f 1872/1 1758/1 1771/1 -f 1891/1 1758/1 1872/1 -f 1895/1 1935/1 1912/1 -f 1936/1 1894/1 1913/1 -f 1935/1 1913/1 1912/1 -f 1935/1 1936/1 1913/1 -f 1895/1 1937/1 1935/1 -f 1937/1 1938/1 1935/1 -f 1939/1 1894/1 1936/1 -f 1939/1 1940/1 1894/1 -f 1942/1 1936/1 1935/1 -f 1938/1 1942/1 1935/1 +f 1832/1 1833/1 1830/1 +f 1834/1 1829/1 1831/1 +f 1835/1 1834/1 1831/1 +f 1836/1 1837/1 1838/1 +f 1839/1 1840/1 1841/1 +f 1837/1 1842/1 1838/1 +f 1839/1 1843/1 1840/1 +f 1837/1 1844/1 1842/1 +f 1845/1 1846/1 1837/1 +f 1846/1 1847/1 1837/1 +f 1847/1 1844/1 1837/1 +f 1848/1 1849/1 1843/1 +f 1849/1 1850/1 1843/1 +f 1850/1 1851/1 1843/1 +f 1839/1 1848/1 1843/1 +f 1852/1 1846/1 1845/1 +f 1850/1 1853/1 1851/1 +f 1854/1 1846/1 1852/1 +f 1855/1 1856/1 1852/1 +f 1856/1 1857/1 1852/1 +f 1857/1 1854/1 1852/1 +f 1850/1 1858/1 1853/1 +f 1859/1 1855/1 1852/1 +f 1860/1 1861/1 1852/1 +f 1861/1 1859/1 1852/1 +f 1858/1 1862/1 1853/1 +f 1863/1 1861/1 1860/1 +f 1864/1 1863/1 1860/1 +f 1858/1 1865/1 1862/1 +f 1847/1 1808/1 1866/1 +f 1810/1 1809/1 1847/1 +f 1846/1 1810/1 1847/1 +f 1809/1 1808/1 1847/1 +f 1827/1 1864/1 1860/1 +f 1829/1 1864/1 1827/1 +f 1862/1 1865/1 1829/1 +f 1867/1 1864/1 1829/1 +f 1865/1 1867/1 1829/1 +f 1868/1 1869/1 1849/1 +f 1869/1 1870/1 1849/1 +f 1870/1 1850/1 1849/1 +f 1871/1 1867/1 1865/1 +f 1872/1 1867/1 1871/1 +f 1850/1 1873/1 1858/1 +f 1874/1 1846/1 1854/1 +f 1875/1 1861/1 1863/1 +f 1876/1 1877/1 1872/1 +f 1877/1 1878/1 1872/1 +f 1878/1 1867/1 1872/1 +f 1850/1 1879/1 1873/1 +f 1880/1 1846/1 1874/1 +f 1881/1 1877/1 1876/1 +f 1850/1 1882/1 1879/1 +f 1883/1 1861/1 1875/1 +f 1884/1 1846/1 1880/1 +f 1885/1 1882/1 1850/1 +f 1880/1 1886/1 1884/1 +f 1887/1 1888/1 1885/1 +f 1888/1 1882/1 1885/1 +f 1889/1 1890/1 1861/1 +f 1883/1 1889/1 1861/1 +f 1886/1 1803/1 1884/1 +f 1891/1 1887/1 1885/1 +f 1889/1 1892/1 1890/1 +f 1893/1 1877/1 1881/1 +f 1894/1 1895/1 1803/1 +f 1886/1 1894/1 1803/1 +f 1807/1 1806/1 1803/1 +f 1806/1 1805/1 1803/1 +f 1805/1 1804/1 1803/1 +f 1804/1 1802/1 1803/1 +f 1895/1 1822/1 1803/1 +f 1822/1 1807/1 1803/1 +f 1896/1 1897/1 1891/1 +f 1898/1 1896/1 1891/1 +f 1897/1 1899/1 1891/1 +f 1899/1 1900/1 1891/1 +f 1900/1 1892/1 1891/1 +f 1892/1 1887/1 1891/1 +f 1892/1 1901/1 1890/1 +f 1892/1 1877/1 1893/1 +f 1892/1 1822/1 1901/1 +f 1902/1 1892/1 1893/1 +f 1903/1 1898/1 1891/1 +f 1822/1 1904/1 1901/1 +f 1877/1 1892/1 1889/1 +f 1905/1 1892/1 1902/1 +f 1822/1 1906/1 1904/1 +f 1906/1 1822/1 1895/1 +f 1907/1 1892/1 1905/1 +f 1892/1 1907/1 1887/1 +f 1892/1 1821/1 1822/1 +f 1892/1 1908/1 1821/1 +f 1908/1 1824/1 1821/1 +f 1908/1 1909/1 1824/1 +f 1909/1 1910/1 1824/1 +f 1910/1 1826/1 1824/1 +f 1910/1 1911/1 1820/1 +f 1826/1 1910/1 1820/1 +f 1816/1 1912/1 1913/1 +f 1818/1 1912/1 1816/1 +f 1818/1 1914/1 1912/1 +f 1820/1 1914/1 1818/1 +f 1820/1 1911/1 1914/1 +f 1913/1 1915/1 1814/1 +f 1816/1 1913/1 1814/1 +f 1814/1 1916/1 1917/1 +f 1812/1 1814/1 1917/1 +f 1915/1 1918/1 1916/1 +f 1814/1 1915/1 1916/1 +f 1919/1 1812/1 1917/1 +f 1916/1 1920/1 1921/1 +f 1917/1 1916/1 1921/1 +f 1811/1 1813/1 1921/1 +f 1922/1 1811/1 1921/1 +f 1920/1 1922/1 1921/1 +f 1923/1 1922/1 1920/1 +f 1813/1 1924/1 1921/1 +f 1922/1 1817/1 1811/1 +f 1925/1 1817/1 1922/1 +f 1925/1 1815/1 1817/1 +f 1926/1 1815/1 1925/1 +f 1926/1 1819/1 1815/1 +f 1927/1 1819/1 1926/1 +f 1927/1 1928/1 1825/1 +f 1819/1 1927/1 1825/1 +f 1823/1 1929/1 1798/1 +f 1929/1 1783/1 1798/1 +f 1928/1 1929/1 1823/1 +f 1825/1 1928/1 1823/1 +f 1828/1 1745/1 1930/1 +f 1742/1 1745/1 1828/1 +f 1931/1 1828/1 1932/1 +f 1828/1 1933/1 1932/1 +f 1934/1 1931/1 1932/1 +f 1828/1 1930/1 1933/1 +f 1930/1 1935/1 1933/1 +f 1933/1 1830/1 1932/1 +f 1831/1 1830/1 1933/1 +f 1832/1 1827/1 1931/1 +f 1827/1 1828/1 1931/1 +f 1807/1 1822/1 1791/1 +f 1822/1 1798/1 1791/1 +f 1735/1 1866/1 1741/1 +f 1847/1 1866/1 1735/1 +f 1712/1 1838/1 1713/1 +f 1712/1 1836/1 1838/1 +f 1842/1 1717/1 1713/1 +f 1838/1 1842/1 1713/1 +f 1711/1 1836/1 1712/1 +f 1711/1 1837/1 1836/1 +f 1842/1 1719/1 1717/1 +f 1842/1 1844/1 1719/1 +f 1721/1 1837/1 1711/1 +f 1721/1 1845/1 1837/1 +f 1844/1 1722/1 1719/1 +f 1844/1 1847/1 1722/1 +f 1727/1 1845/1 1721/1 +f 1727/1 1852/1 1845/1 +f 1742/1 1860/1 1727/1 +f 1827/1 1860/1 1742/1 +f 1854/1 1857/1 1737/1 +f 1729/1 1854/1 1737/1 +f 1857/1 1751/1 1737/1 +f 1856/1 1751/1 1857/1 +f 1752/1 1854/1 1729/1 +f 1856/1 1753/1 1751/1 +f 1855/1 1753/1 1856/1 +f 1874/1 1854/1 1752/1 +f 1855/1 1757/1 1753/1 +f 1760/1 1874/1 1752/1 +f 1859/1 1757/1 1855/1 +f 1880/1 1874/1 1760/1 +f 1859/1 1766/1 1757/1 +f 1861/1 1766/1 1859/1 +f 1770/1 1880/1 1760/1 +f 1861/1 1774/1 1766/1 +f 1890/1 1774/1 1861/1 +f 1886/1 1880/1 1770/1 +f 1772/1 1886/1 1770/1 +f 1890/1 1788/1 1774/1 +f 1901/1 1788/1 1890/1 +f 1894/1 1886/1 1772/1 +f 1777/1 1894/1 1772/1 +f 1901/1 1789/1 1788/1 +f 1904/1 1789/1 1901/1 +f 1895/1 1894/1 1777/1 +f 1906/1 1789/1 1904/1 +f 1906/1 1895/1 1777/1 +f 1799/1 1906/1 1777/1 +f 1906/1 1799/1 1789/1 +f 1936/1 1820/1 1819/1 +f 1826/1 1937/1 1825/1 +f 1825/1 1937/1 1819/1 +f 1937/1 1936/1 1819/1 +f 1938/1 1820/1 1936/1 +f 1938/1 1939/1 1820/1 +f 1940/1 1941/1 1937/1 +f 1826/1 1940/1 1937/1 +f 1937/1 1942/1 1936/1 f 1942/1 1943/1 1936/1 -f 1943/1 1939/1 1936/1 -f 1941/1 1942/1 1938/1 -f 1894/1 1945/1 1895/1 -f 1945/1 1944/1 1895/1 -f 1944/1 1937/1 1895/1 -f 1940/1 1945/1 1894/1 -f 1944/1 1946/1 1937/1 -f 1944/1 1945/1 1942/1 -f 1945/1 1943/1 1942/1 -f 1842/1 1736/1 1728/1 -f 1851/1 1736/1 1842/1 -f 1748/1 1857/1 1747/1 -f 1748/1 1858/1 1857/1 -f 1823/1 1820/1 1917/1 -f 1920/1 1823/1 1917/1 -f 1824/1 1823/1 1920/1 -f 1900/1 1902/1 1904/1 -f 1902/1 1909/1 1904/1 -f 1943/1 1940/1 1939/1 -f 1945/1 1940/1 1943/1 -f 1937/1 1946/1 1938/1 -f 1946/1 1941/1 1938/1 -f 1946/1 1944/1 1941/1 -f 1944/1 1942/1 1941/1 -f 1725/1 1839/1 1745/1 -f 1870/1 1839/1 1725/1 -f 1764/1 1870/1 1725/1 -f 1875/1 1870/1 1764/1 -f 1769/1 1875/1 1764/1 -f 1954/1 1959/1 1964/1 -f 1959/1 1947/1 1964/1 -f 1972/1 1948/1 1979/1 -f 1948/1 1949/1 1979/1 -f 1955/1 1951/1 1956/1 -f 1951/1 1950/1 1956/1 -f 1957/1 1951/1 1955/1 -f 1952/1 1951/1 1957/1 -f 1976/1 1953/1 1957/1 -f 1953/1 1952/1 1957/1 -f 1954/1 1950/1 1951/1 -f 1955/1 1956/1 1948/1 -f 1953/1 1958/1 1952/1 -f 1958/1 1951/1 1952/1 -f 1958/1 1959/1 1951/1 -f 1959/1 1954/1 1951/1 -f 1973/1 1948/1 1972/1 -f 1955/1 1948/1 1973/1 -f 1957/1 1955/1 1973/1 -f 1976/1 1957/1 1973/1 -f 1960/1 1965/1 1966/1 -f 1960/1 1961/1 1965/1 -f 1961/1 1962/1 1965/1 -f 1962/1 1967/1 1965/1 -f 1962/1 1981/1 1967/1 -f 1962/1 1963/1 1981/1 -f 1960/1 1964/1 1961/1 -f 1966/1 1965/1 1949/1 -f 1968/1 1963/1 1962/1 -f 1961/1 1968/1 1962/1 -f 1969/1 1968/1 1961/1 -f 1964/1 1969/1 1961/1 -f 1947/1 1969/1 1964/1 -f 1949/1 1965/1 1979/1 -f 1965/1 1980/1 1979/1 -f 1965/1 1967/1 1980/1 -f 1967/1 1981/1 1980/1 -f 1975/1 1970/1 1976/1 -f 1970/1 1953/1 1976/1 -f 1974/1 1970/1 1975/1 -f 1970/1 1958/1 1953/1 -f 1971/1 1958/1 1970/1 -f 1971/1 1959/1 1958/1 -f 1974/1 1972/1 1855/1 -f 1973/1 1972/1 1974/1 -f 1975/1 1973/1 1974/1 -f 1975/1 1976/1 1973/1 -f 1959/1 1978/1 1947/1 -f 1971/1 1978/1 1959/1 -f 1855/1 1979/1 1852/1 -f 1972/1 1979/1 1855/1 -f 1968/1 1977/1 1963/1 -f 1969/1 1978/1 1968/1 -f 1978/1 1977/1 1968/1 -f 1978/1 1969/1 1947/1 -f 1979/1 1863/1 1852/1 -f 1979/1 1980/1 1863/1 -f 1981/1 1863/1 1980/1 -f 1963/1 1863/1 1981/1 -f 1963/1 1977/1 1863/1 -f 1999/1 1992/1 2006/1 -f 2013/1 1999/1 2006/1 -f 1982/1 1987/1 2001/1 -f 1987/1 1997/1 2001/1 -f 1983/1 1984/1 1742/1 -f 1984/1 1744/1 1742/1 -f 1987/1 1988/1 1997/1 -f 1988/1 1996/1 1997/1 -f 1988/1 1995/1 1996/1 -f 1988/1 1989/1 1995/1 -f 1989/1 1986/1 1995/1 -f 1986/1 2009/1 1995/1 -f 1991/1 1988/1 1987/1 -f 1990/1 1991/1 1987/1 -f 1988/1 1991/1 1989/1 -f 1990/1 1992/1 1991/1 -f 1994/1 1993/1 1984/1 -f 1994/1 1996/1 1993/1 -f 1996/1 1995/1 1993/1 -f 1997/1 1996/1 1994/1 -f 1990/1 1987/1 1982/1 -f 2006/1 1990/1 1982/1 -f 1992/1 1990/1 2006/1 -f 1998/1 1986/1 1989/1 -f 1991/1 1998/1 1989/1 -f 1999/1 1998/1 1991/1 -f 1992/1 1999/1 1991/1 -f 1984/1 2007/1 1744/1 -f 1984/1 1993/1 2007/1 -f 1993/1 2008/1 2007/1 -f 1993/1 1995/1 2008/1 -f 1995/1 2009/1 2008/1 -f 1994/1 1984/1 1983/1 -f 2000/1 1994/1 1983/1 -f 1997/1 1994/1 2000/1 -f 2001/1 1997/1 2000/1 -f 2012/1 2002/1 2001/1 -f 2002/1 1982/1 2001/1 -f 2011/1 2003/1 2012/1 -f 2003/1 2002/1 2012/1 -f 2016/1 1985/1 2011/1 -f 1985/1 2003/1 2011/1 -f 2003/1 2004/1 2002/1 -f 2005/1 1982/1 2002/1 -f 2004/1 2005/1 2002/1 -f 2005/1 2006/1 1982/1 -f 2010/1 2000/1 1983/1 -f 2010/1 2001/1 2000/1 -f 2010/1 2012/1 2001/1 -f 2011/1 2012/1 2010/1 -f 2014/1 2004/1 2003/1 -f 1985/1 2014/1 2003/1 -f 2014/1 1784/1 2004/1 -f 1784/1 2005/1 2004/1 -f 1784/1 2013/1 2005/1 -f 2013/1 2006/1 2005/1 -f 2010/1 1983/1 1742/1 -f 2015/1 2010/1 1742/1 -f 2011/1 2010/1 2015/1 -f 2016/1 2011/1 2015/1 -f 2014/1 1985/1 2016/1 -f 1948/1 1966/1 1949/1 -f 1956/1 1966/1 1948/1 -f 1950/1 1964/1 1960/1 -f 1954/1 1964/1 1950/1 -f 1956/1 1960/1 1966/1 -f 1950/1 1960/1 1956/1 \ No newline at end of file +f 1943/1 1938/1 1936/1 +f 1941/1 1942/1 1937/1 +f 1943/1 1944/1 1938/1 +f 1945/1 1942/1 1941/1 +f 1946/1 1826/1 1820/1 +f 1939/1 1946/1 1820/1 +f 1947/1 1940/1 1826/1 +f 1946/1 1947/1 1826/1 +f 1948/1 1946/1 1939/1 +f 1947/1 1949/1 1940/1 +f 1942/1 1946/1 1943/1 +f 1947/1 1946/1 1942/1 +f 1860/1 1852/1 1727/1 +f 1847/1 1735/1 1722/1 +f 1866/1 1739/1 1741/1 +f 1866/1 1808/1 1739/1 +f 1830/1 1833/1 1932/1 +f 1833/1 1934/1 1932/1 +f 1833/1 1832/1 1934/1 +f 1832/1 1931/1 1934/1 +f 1924/1 1917/1 1921/1 +f 1919/1 1917/1 1924/1 +f 1813/1 1919/1 1924/1 +f 1812/1 1919/1 1813/1 +f 1940/1 1949/1 1941/1 +f 1949/1 1945/1 1941/1 +f 1949/1 1947/1 1945/1 +f 1947/1 1942/1 1945/1 +f 1944/1 1939/1 1938/1 +f 1948/1 1939/1 1944/1 +f 1943/1 1948/1 1944/1 +f 1946/1 1948/1 1943/1 +f 1846/1 1720/1 1810/1 +f 1846/1 1756/1 1720/1 +f 1884/1 1756/1 1846/1 +f 1803/1 1756/1 1884/1 +f 1803/1 1779/1 1756/1 +f 1796/1 1891/1 1776/1 +f 1796/1 1903/1 1891/1 +f 1782/1 1903/1 1796/1 +f 1782/1 1898/1 1903/1 +f 1781/1 1898/1 1782/1 +f 1781/1 1896/1 1898/1 +f 1780/1 1896/1 1781/1 +f 1780/1 1897/1 1896/1 +f 1785/1 1897/1 1780/1 +f 1785/1 1899/1 1897/1 +f 1784/1 1899/1 1785/1 +f 1784/1 1900/1 1899/1 +f 1748/1 1869/1 1750/1 +f 1748/1 1870/1 1869/1 +f 1747/1 1870/1 1748/1 +f 1747/1 1850/1 1870/1 +f 1915/1 1922/1 1923/1 +f 1918/1 1915/1 1923/1 +f 1912/1 1925/1 1913/1 +f 1912/1 1926/1 1925/1 +f 1912/1 1914/1 1926/1 +f 1914/1 1927/1 1926/1 +f 1914/1 1911/1 1927/1 +f 1913/1 1922/1 1915/1 +f 1913/1 1925/1 1922/1 +f 1929/1 1908/1 1783/1 +f 1908/1 1892/1 1783/1 +f 1909/1 1908/1 1929/1 +f 1928/1 1909/1 1929/1 +f 1910/1 1909/1 1928/1 +f 1745/1 1829/1 1930/1 +f 1930/1 1834/1 1935/1 +f 1930/1 1829/1 1834/1 +f 1892/1 1900/1 1783/1 +f 1900/1 1784/1 1783/1 +f 1749/1 1849/1 1723/1 +f 1868/1 1849/1 1749/1 +f 1841/1 1840/1 1716/1 +f 1715/1 1841/1 1716/1 +f 1840/1 1714/1 1716/1 +f 1715/1 1839/1 1841/1 +f 1840/1 1843/1 1714/1 +f 1718/1 1839/1 1715/1 +f 1851/1 1726/1 1714/1 +f 1843/1 1851/1 1714/1 +f 1724/1 1839/1 1718/1 +f 1724/1 1848/1 1839/1 +f 1853/1 1728/1 1726/1 +f 1851/1 1853/1 1726/1 +f 1723/1 1848/1 1724/1 +f 1723/1 1849/1 1848/1 +f 1736/1 1829/1 1745/1 +f 1862/1 1829/1 1736/1 +f 1871/1 1865/1 1732/1 +f 1731/1 1871/1 1732/1 +f 1865/1 1733/1 1732/1 +f 1858/1 1733/1 1865/1 +f 1872/1 1871/1 1731/1 +f 1730/1 1872/1 1731/1 +f 1858/1 1754/1 1733/1 +f 1873/1 1754/1 1858/1 +f 1876/1 1872/1 1730/1 +f 1873/1 1758/1 1754/1 +f 1734/1 1876/1 1730/1 +f 1879/1 1758/1 1873/1 +f 1881/1 1876/1 1734/1 +f 1879/1 1767/1 1758/1 +f 1882/1 1767/1 1879/1 +f 1765/1 1881/1 1734/1 +f 1893/1 1881/1 1765/1 +f 1882/1 1773/1 1767/1 +f 1888/1 1773/1 1882/1 +f 1764/1 1893/1 1765/1 +f 1888/1 1775/1 1773/1 +f 1902/1 1893/1 1764/1 +f 1887/1 1775/1 1888/1 +f 1887/1 1778/1 1775/1 +f 1905/1 1902/1 1764/1 +f 1763/1 1905/1 1764/1 +f 1762/1 1905/1 1763/1 +f 1907/1 1905/1 1762/1 +f 1887/1 1762/1 1778/1 +f 1907/1 1762/1 1887/1 +f 1911/1 1950/1 1927/1 +f 1951/1 1910/1 1928/1 +f 1950/1 1928/1 1927/1 +f 1950/1 1951/1 1928/1 +f 1911/1 1952/1 1950/1 +f 1952/1 1953/1 1950/1 +f 1954/1 1910/1 1951/1 +f 1954/1 1955/1 1910/1 +f 1956/1 1951/1 1950/1 +f 1953/1 1956/1 1950/1 +f 1956/1 1957/1 1951/1 +f 1957/1 1954/1 1951/1 +f 1958/1 1956/1 1953/1 +f 1910/1 1959/1 1911/1 +f 1959/1 1960/1 1911/1 +f 1960/1 1952/1 1911/1 +f 1955/1 1959/1 1910/1 +f 1960/1 1961/1 1952/1 +f 1960/1 1959/1 1956/1 +f 1959/1 1957/1 1956/1 +f 1853/1 1736/1 1728/1 +f 1862/1 1736/1 1853/1 +f 1750/1 1868/1 1749/1 +f 1750/1 1869/1 1868/1 +f 1835/1 1831/1 1933/1 +f 1935/1 1835/1 1933/1 +f 1834/1 1835/1 1935/1 +f 1916/1 1918/1 1920/1 +f 1918/1 1923/1 1920/1 +f 1957/1 1955/1 1954/1 +f 1959/1 1955/1 1957/1 +f 1952/1 1961/1 1953/1 +f 1961/1 1958/1 1953/1 +f 1961/1 1960/1 1958/1 +f 1960/1 1956/1 1958/1 +f 1725/1 1850/1 1747/1 +f 1885/1 1850/1 1725/1 +f 1771/1 1885/1 1725/1 +f 1891/1 1885/1 1771/1 +f 1776/1 1891/1 1771/1 +f 1962/1 1963/1 1964/1 +f 1963/1 1965/1 1964/1 +f 1966/1 1967/1 1968/1 +f 1967/1 1969/1 1968/1 +f 1970/1 1971/1 1972/1 +f 1971/1 1973/1 1972/1 +f 1974/1 1971/1 1970/1 +f 1975/1 1971/1 1974/1 +f 1976/1 1977/1 1974/1 +f 1977/1 1975/1 1974/1 +f 1962/1 1973/1 1971/1 +f 1970/1 1972/1 1967/1 +f 1977/1 1978/1 1975/1 +f 1978/1 1971/1 1975/1 +f 1978/1 1963/1 1971/1 +f 1963/1 1962/1 1971/1 +f 1979/1 1967/1 1966/1 +f 1970/1 1967/1 1979/1 +f 1974/1 1970/1 1979/1 +f 1976/1 1974/1 1979/1 +f 1980/1 1981/1 1982/1 +f 1980/1 1983/1 1981/1 +f 1983/1 1984/1 1981/1 +f 1984/1 1985/1 1981/1 +f 1984/1 1986/1 1985/1 +f 1984/1 1987/1 1986/1 +f 1980/1 1964/1 1983/1 +f 1982/1 1981/1 1969/1 +f 1988/1 1987/1 1984/1 +f 1983/1 1988/1 1984/1 +f 1989/1 1988/1 1983/1 +f 1964/1 1989/1 1983/1 +f 1965/1 1989/1 1964/1 +f 1969/1 1981/1 1968/1 +f 1981/1 1990/1 1968/1 +f 1981/1 1985/1 1990/1 +f 1985/1 1986/1 1990/1 +f 1991/1 1878/1 1976/1 +f 1878/1 1977/1 1976/1 +f 1867/1 1878/1 1991/1 +f 1878/1 1978/1 1977/1 +f 1877/1 1978/1 1878/1 +f 1877/1 1963/1 1978/1 +f 1867/1 1966/1 1864/1 +f 1979/1 1966/1 1867/1 +f 1991/1 1979/1 1867/1 +f 1991/1 1976/1 1979/1 +f 1963/1 1889/1 1965/1 +f 1877/1 1889/1 1963/1 +f 1864/1 1968/1 1863/1 +f 1966/1 1968/1 1864/1 +f 1988/1 1883/1 1987/1 +f 1989/1 1889/1 1988/1 +f 1889/1 1883/1 1988/1 +f 1889/1 1989/1 1965/1 +f 1968/1 1875/1 1863/1 +f 1968/1 1990/1 1875/1 +f 1986/1 1875/1 1990/1 +f 1987/1 1875/1 1986/1 +f 1987/1 1883/1 1875/1 +f 1794/1 1992/1 1993/1 +f 1797/1 1794/1 1993/1 +f 1994/1 1995/1 1996/1 +f 1995/1 1997/1 1996/1 +f 1998/1 1999/1 1744/1 +f 1999/1 1746/1 1744/1 +f 1995/1 2000/1 1997/1 +f 2000/1 2001/1 1997/1 +f 2000/1 2002/1 2001/1 +f 2000/1 2003/1 2002/1 +f 2003/1 1769/1 2002/1 +f 1769/1 1761/1 2002/1 +f 2004/1 2000/1 1995/1 +f 2005/1 2004/1 1995/1 +f 2000/1 2004/1 2003/1 +f 2005/1 1992/1 2004/1 +f 2006/1 2007/1 1999/1 +f 2006/1 2001/1 2007/1 +f 2001/1 2002/1 2007/1 +f 1997/1 2001/1 2006/1 +f 2005/1 1995/1 1994/1 +f 1993/1 2005/1 1994/1 +f 1992/1 2005/1 1993/1 +f 1793/1 1769/1 2003/1 +f 2004/1 1793/1 2003/1 +f 1794/1 1793/1 2004/1 +f 1992/1 1794/1 2004/1 +f 1999/1 1755/1 1746/1 +f 1999/1 2007/1 1755/1 +f 2007/1 1759/1 1755/1 +f 2007/1 2002/1 1759/1 +f 2002/1 1761/1 1759/1 +f 2006/1 1999/1 1998/1 +f 2008/1 2006/1 1998/1 +f 1997/1 2006/1 2008/1 +f 1996/1 1997/1 2008/1 +f 2009/1 2010/1 1996/1 +f 2010/1 1994/1 1996/1 +f 2011/1 2012/1 2009/1 +f 2012/1 2010/1 2009/1 +f 1738/1 2013/1 2011/1 +f 2013/1 2012/1 2011/1 +f 2012/1 2014/1 2010/1 +f 2015/1 1994/1 2010/1 +f 2014/1 2015/1 2010/1 +f 2015/1 1993/1 1994/1 +f 2016/1 2008/1 1998/1 +f 2016/1 1996/1 2008/1 +f 2016/1 2009/1 1996/1 +f 2011/1 2009/1 2016/1 +f 1768/1 2014/1 2012/1 +f 2013/1 1768/1 2012/1 +f 1768/1 1792/1 2014/1 +f 1792/1 2015/1 2014/1 +f 1792/1 1797/1 2015/1 +f 1797/1 1993/1 2015/1 +f 2016/1 1998/1 1744/1 +f 1743/1 2016/1 1744/1 +f 2011/1 2016/1 1743/1 +f 1738/1 2011/1 1743/1 +f 1768/1 2013/1 1738/1 +f 1967/1 1982/1 1969/1 +f 1972/1 1982/1 1967/1 +f 1973/1 1964/1 1980/1 +f 1962/1 1964/1 1973/1 +f 1972/1 1980/1 1982/1 +f 1973/1 1980/1 1972/1 diff --git a/resources/meshes/ultimaker_s5_platform.obj b/resources/meshes/ultimaker_s5_platform.obj index eb2becca68..a5ecb21177 100644 --- a/resources/meshes/ultimaker_s5_platform.obj +++ b/resources/meshes/ultimaker_s5_platform.obj @@ -1,22337 +1,15307 @@ -v -127.341 -112.832 3.498 -v -13.101 23.287 3.498 -v -11.826 22.916 3.764 -v -14.85 27.586 3.498 -v -13.151 25.949 3.712 -v -11.818 23.417 3.749 -v -10.676 23.441 4.474 -v -12.26 26.285 4.322 -v -11.643 26.517 5.244 -v -10.085 23.469 5.265 -v -11.385 26.615 6.342 -v -12.361 29.527 5.244 -v -13.015 29.453 4.322 -v -12.967 32.705 4.322 -v -13.913 32.84 3.712 -v -13.961 29.347 3.712 -v -14.856 34.333 3.498 -v -127.341 119.045 3.498 -v -76.35 119.045 3.498 -v -128.124 119.968 3.65 -v -128.97 120.354 4.039 -v -129.252 120.034 4.206 -v -128.436 119.577 3.712 -v -128.477 -114.626 3.721 -v -128.736 -116.807 4.253 -v -127.58 -114.866 3.72 -v -128.051 -116.949 4.444 -v -127.618 -116.92 4.718 -v -10.716 22.68 4.505 -v -10.366 22.293 5.3 -v -10.147 22.815 5.196 -v -9.811 23.417 6.102 -v -10.087 24.1 6.155 -v -10.713 26.677 18.312 -v -12.09 29.55 6.333 -v -11.439 29.584 18.307 -v -12.317 32.617 5.244 -v -12.046 32.595 6.333 -v -11.386 32.58 18.31 -v -11.26 35.495 6.342 -v -11.511 35.6 5.244 -v -12.123 35.849 4.322 -v -13.007 36.209 3.712 -v -12.877 38.869 3.498 -v -75.98 119.802 3.602 -v -75.666 119.918 3.77 -v -128.446 120.876 4.14 -v -129.05 121.693 5.172 -v -129.607 121.31 5.09 -v -129.92 120.893 5.138 -v -129.9 121.597 6.308 -v -129.27 121.98 6.301 -v -129.655 122.193 11.228 -v -130.327 121.752 12.033 -v -130.329 120.945 6.406 -v -130.71 120.913 13.422 -v -130.33 122.104 12.471 -v -130.702 127.211 13.266 -v -130.488 127.485 12.654 -v -130.953 140.262 18.055 -v -130.953 -118.632 18.053 -v -130.08 120.427 5.28 -v -130.248 -116.82 5.753 -v -129.352 -116.491 4.402 -v -129.777 -116.17 4.744 -v -130.005 -117.37 5.434 -v -129.515 -117.809 5.254 -v -128.875 -118.04 5.254 -v -129.671 -118.177 6.2 -v -130.157 -117.643 6.25 -v -130.815 -119.386 18.351 -v -130.338 -119.947 18.404 -v -130.487 -120.177 18.754 -v -131.07 -119.507 18.746 -v -130.676 -120.508 18.965 -v -131.39 -119.714 18.964 -v -129.668 -120.883 18.975 -v -133.43 -126.224 18.929 -v -134.041 -127.132 18.858 -v -139.073 -132.87 18.678 -v -138.764 -133.202 18.959 -v -138.166 -134.585 18.997 -v -137.93 -134.978 18.907 -v -6.968 20.65 18.722 -v -7.04 20.236 18.418 -v -6.608 20.542 18.319 -v -6.288 19.794 6.102 -v -6.142 20.729 18.344 -v -5.627 20.748 18.324 -v -5.608 19.94 6.113 -v -5.087 20.13 11.302 -v -1.883 18.933 6.342 -v -2.607 19.01 6.342 -v -2.665 18.749 5.244 -v -5.528 19.669 5.27 -v -5.464 19.096 4.486 -v -6.197 19.5 5.196 -v -6.223 18.918 4.503 -v -6.657 19.187 5.27 -v -136.077 -136.078 4.325 -v -5.628 17.973 3.736 -v -5.268 16.601 3.498 -v -2.805 18.103 4.322 -v -0.001 18.457 5.244 -v -0.001 18.729 6.342 -v 2.536 19.039 6.512 -v 1.751 19.512 18.299 -v -1.786 19.527 18.32 -v -5.806 21.05 18.713 -v -7.174 20.895 18.927 -v -7.405 21.196 18.998 -v -8.296 21.877 18.998 -v -127.823 -119.998 18.93 -v -128.07 -119.797 18.725 -v -128.71 -120.47 18.873 -v -128.05 -120.8 18.998 -v -129.657 -120.477 18.754 -v -129.638 -120.206 18.4 -v -128.991 -118.425 6.2 -v -128.892 -120.09 18.367 -v -128.28 -118.327 6.25 -v -128.22 -118.027 5.434 -v -127.681 -117.759 5.759 -v -127.655 -117.364 5.262 -v -10.137 22.2 6.149 -v -9.842 22.776 6.093 -v -9.335 22.184 18.04 -v -8.944 23.092 18.348 -v -9.043 22.6 18.326 -v -9.022 23.622 18.333 -v -10.453 26.76 18.726 -v -11.167 29.595 18.726 -v -10.756 29.58 18.968 -v -10.985 32.439 18.861 -v -10.219 35.217 18.861 -v -10.566 35.439 18.333 -v -8.805 38.437 18.322 -v -9.598 38.59 6.124 -v -8.716 38.958 18.348 -v -9.605 39.287 6.084 -v -9.877 38.59 5.264 -v -9.91 39.26 5.196 -v -10.12 39.786 5.292 -v -74.557 121.363 5.555 -v -75.241 120.96 4.343 -v -11.558 38.967 3.726 -v -10.478 39.371 4.492 -v -10.45 38.641 4.484 -v -75.81 121.148 4.366 -v -75.695 121.962 5.67 -v -75.044 121.823 5.668 -v -75.623 122.351 11.723 -v -77.32 122.597 11.724 -v -77.242 122.984 11.976 -v -129.307 122.584 11.722 -v -129.295 122.335 11.36 -v -77.265 122.331 11.318 -v -129.659 122.343 11.698 -v -129.767 122.82 12.085 -v -129.93 127.522 12.153 -v -130.628 128.115 12.037 -v -130.594 128.25 11.285 -v -130.505 130.973 9.5 -v -130.335 139.71 6.334 -v -131.044 140.256 18.422 -v -131.043 -118.636 18.418 -v -131.264 -118.633 18.727 -v -130.335 -116.947 6.338 -v -131.58 -118.63 18.93 -v -131.952 -118.624 18.998 -v -133.962 -126.135 18.419 -v -134.347 -126.836 18.31 -v -139.126 -132.514 18.258 -v -139.242 -132.759 18.238 -v -139.172 -133.053 18.452 -v -138.982 -133.311 18.773 -v -138.3 -134.918 18.847 -v -138.123 -135.31 18.65 -v -137.746 -135.258 18.669 -v -137.572 -135.34 18.394 -v -6.97 20.178 18.052 -v -137.505 -135.542 16.052 -v -6.809 19.398 6.151 -v -1.68 -8.84 3.498 -v -1.415 -8.944 3.575 -v -1.574 -16.17 3.501 -v -1.215 -16.108 3.759 -v -1.252 -9.17 3.824 -v -1.023 -8.388 3.514 -v -3.015 17.17 3.712 -v -0.001 16.847 3.712 -v -0.001 17.797 4.322 -v 2.805 18.103 4.322 -v 2.663 18.749 5.244 -v 5.479 19.088 4.475 -v 5.541 19.676 5.27 -v 5.085 20.13 11.302 -v 5.605 19.94 6.089 -v 5.627 20.75 18.326 -v 1.723 19.787 18.726 -v 1.713 20.2 18.968 -v -1.625 20.169 18.961 -v -5.773 21.753 18.998 -v 0.05 21.716 18.973 -v -3.093 22.253 18.973 -v -5.79 21.375 18.926 -v -1.73 19.787 18.726 -v -5.869 23.812 18.98 -v -7.974 23.57 18.998 -v -8.61 22.089 18.928 -v -8.886 22.255 18.719 -v -128.233 -119.648 18.42 -v -9.274 22.11 18.422 -v -128.305 -119.591 18.05 -v -127.69 -117.907 6.342 -v -8.677 23.47 18.722 -v -8.351 23.508 18.928 -v -10.07 26.855 18.961 -v -7.924 26.26 18.973 -v -7.591 26.513 18.726 -v -5.635 24.183 18.726 -v -7.36 26.666 18.305 -v -5.476 24.398 18.335 -v -8.371 29.434 18.333 -v -8.323 29.875 18.052 -v -7.787 30.141 6.3 -v -7.011 27.367 6.398 -v -6.775 27.523 5.244 -v -5.097 25.305 5.244 -v -5.281 25.1 6.342 -v -2.733 23.839 5.244 -v -2.825 23.59 6.32 -v -0.001 23.329 5.244 -v -0.001 23.057 6.342 -v 2.73 23.839 5.244 -v 2.818 23.588 6.317 -v 5.095 25.305 5.244 -v 5.279 25.1 6.342 -v 6.769 27.523 5.244 -v 7.005 27.37 6.384 -v 7.786 30.152 6.29 -v 7.53 30.195 5.244 -v 6.875 30.255 4.322 -v 6.18 27.813 4.322 -v 5.925 30.347 3.712 -v 5.327 28.24 3.712 -v 4.653 25.789 4.322 -v 4.007 26.493 3.712 -v 2.493 24.455 4.322 -v 2.149 25.343 3.712 -v -0.001 23.989 4.322 -v -0.001 24.94 3.712 -v -2.495 24.455 4.322 -v -2.151 25.343 3.712 -v -4.655 25.789 4.322 -v -4.013 26.493 3.712 -v -6.183 27.813 4.322 -v -7.533 30.195 5.244 -v -6.877 30.255 4.322 -v -5.33 28.24 3.712 -v -5.931 30.347 3.712 -v -4.335 28.735 3.498 -v -4.862 31.527 3.497 -v 4.9 31.175 3.498 -v -3.175 34.63 3.497 -v -4.751 34.48 3.712 -v -5.727 32.52 3.712 -v -5.513 35.053 4.322 -v -6.645 32.783 4.322 -v -6.037 35.45 5.244 -v -7.28 32.963 5.244 -v -7.52 33.041 6.274 -v -8.365 32.383 18.332 -v -7.785 33.845 18.052 -v -7.352 35.151 18.329 -v -8.63 32.413 18.726 -v -8.63 29.37 18.726 -v -9.026 29.257 18.968 -v -9.041 32.44 18.968 -v -7.591 35.27 18.726 -v -7.962 35.438 18.968 -v -10.295 33.53 18.999 -v -7.792 38.365 18.998 -v -5.97 37.906 18.985 -v -8.155 38.472 18.926 -v -8.47 38.558 18.715 -v -8.339 39.926 18.93 -v -8.625 39.772 18.727 -v -8.81 39.45 18.315 -v -9.89 39.88 6.15 -v -74.266 121.844 13.424 -v -99.812 154.509 18.051 -v -99.7 154.509 18.42 -v -99.422 154.509 18.724 -v -98.985 154.509 18.941 -v -100.6 154.509 6.342 -v -95.081 154.509 6.342 -v -100.943 154.509 5.244 -v -94.731 154.509 5.244 -v -93.891 154.509 4.322 -v -92.673 154.509 3.712 -v -101.783 154.509 4.322 -v -91.257 154.509 3.498 -v -56.633 154.509 0 -v -103.001 154.509 3.712 -v -104.417 154.509 3.498 -v -108.51 154.508 3.502 -v -153.007 154.509 0 -v -121.466 154.51 3.56 -v -132.04 154.509 3.498 -v -111.369 154.509 4.357 -v -110.076 154.509 3.703 -v -110.813 132.03 3.498 -v -119.352 143.604 3.498 -v -127.341 132.03 3.498 -v -130.952 132.4 1.409 -v -128.453 131.993 3.712 -v -130.959 125.504 1.392 -v -110.41 132.438 1.325 -v -110.12 132.719 0.804 -v -110.096 125.163 0.778 -v -131.525 124.955 0.548 -v -132.161 124.319 0.14 -v -132.126 133.563 0.16 -v -108.517 134.327 0 -v -132.9 134.327 0 -v -132.9 123.577 0 -v -153.007 137.397 0 -v -159.913 131.071 0.02 -v -155.545 138.052 0.35 -v -155.12 139.288 0.31 -v -155.74 154.509 0.524 -v -153.8 154.509 3.856 -v -151.945 154.509 3.498 -v -153.282 142.902 3.682 -v -149.927 142.693 3.712 -v -149.921 141.737 4.322 -v -143.565 143.187 3.712 -v -143.413 142.245 4.322 -v -138.068 144.162 3.837 -v -139.37 145.118 3.494 -v -143.201 154.509 3.498 -v -141.997 154.509 3.712 -v -140.97 154.509 4.322 -v -133.237 154.509 3.712 -v -129.823 149.127 3.497 -v -130.57 147.63 3.809 -v -131.242 146.936 4.445 -v -130.462 146.663 4.294 -v -130.032 147.523 3.83 -v -126.75 149.753 3.712 -v -126.215 148.957 4.322 -v -122.97 152.6 3.712 -v -122.353 151.879 4.322 -v -119.722 154.509 4.192 -v -112.358 154.509 5.572 -v -114.735 151.509 5.244 -v -114.93 151.695 6.342 -v -119.185 147.317 5.244 -v -118.767 146.807 4.322 -v -114.25 151.059 4.322 -v -118.155 146.075 3.712 -v -113.555 150.409 3.712 -v -123.271 142.357 3.712 -v -127.35 138.8 3.498 -v -129.051 139.497 4.042 -v -129.41 131.885 4.322 -v -129.653 139.848 4.626 -v -130.187 131.682 5.473 -v -130.544 128.246 8.7 -v -130.505 128.343 9.5 -v -125.927 128.108 8.605 -v -130.556 127.963 8.515 -v -112.92 128.06 8.55 -v -118.077 128.107 8.599 -v -112.893 128.327 8.956 -v -118.036 128.332 8.94 -v -112.983 128.225 11.304 -v -112.89 125.943 8.514 -v -112.985 125.855 11.31 -v -113.263 127.949 11.724 -v -113.263 125.58 11.724 -v -113.652 127.541 11.962 -v -113.684 125.172 11.97 -v -80.373 125.609 11.722 -v -80.414 125.863 11.328 -v -79.567 126.177 11.553 -v -79.322 125.917 11.88 -v -78.966 126.246 12.065 -v -78.956 125.638 12.003 -v -76.041 123.02 12.259 -v -78.847 127.023 12.489 -v -79.297 126.61 11.651 -v -79.077 127.287 12.225 -v -79.785 127.305 6.244 -v -79.655 126.318 11.087 -v -80.075 126.703 6.244 -v -81.294 126.184 5.908 -v -111.313 126.139 6.342 -v -111.12 126.41 5.244 -v -110.44 125.52 1.415 -v -110.96 127.067 4.322 -v -110.834 128.286 3.617 -v -83.263 128.12 3.68 -v -83.534 128.798 3.525 -v -82.752 128.922 3.71 -v -81.165 128.4 4.314 -v -80.125 128.182 5.337 -v -80.142 128.618 5.95 -v -79.78 127.965 6.278 -v -80.15 127.449 5.226 -v -80.415 126.897 5.226 -v -80.591 126.29 6.278 -v -80.982 126.425 5.352 -v -81.803 127.106 4.313 -v -81.319 127.722 4.187 -v -79.28 128.175 13.4 -v -74.742 122.214 12.825 -v -75.836 122.6 12.078 -v -74.447 121.471 6.343 -v -131.488 132.928 0.593 -v -109.415 133.429 0.212 -v -111.871 125.975 9.5 -v -130.555 125.92 8.502 -v -80.297 125.214 11.963 -v -129.228 127.532 11.976 -v -129.365 122.988 11.972 -v -129.803 127.874 11.88 -v -129.833 128.144 11.54 -v -126.233 128.256 11.086 -v -125.962 128.324 8.897 -v -125.177 129.085 2.498 -v -127.722 130.378 23.233 -v -118.825 129.085 2.498 -v -116.275 130.397 23.27 -v -127.753 130.723 23.494 -v -116.25 130.743 23.497 -v -116.25 129.227 23.5 -v -87.712 132.119 23.482 -v -87.484 131.9 23.477 -v 71.864 139.012 23.496 -v 71.828 140.011 23.5 -v 71.996 139.947 23.365 -v 72.012 139.057 23.304 -v 72.117 138.794 23.487 -v -116.001 128.687 25.5 -v -128.001 128.687 25.5 -v -117.743 128.205 11.324 -v -127.768 129.293 23.565 -v -142.997 129.213 23.694 -v -143.156 128.706 25.5 -v -143.24 129.518 23.619 -v -143.11 129.518 23.513 -v -143.035 130.677 23.5 -v -156.51 131.854 23.492 -v -157.49 131.898 23.479 -v -168.97 130.677 23.5 -v -157.708 132.115 23.48 -v -172.11 139.022 23.482 -v -168.87 129.433 23.538 -v -174.45 129.502 23.483 -v -174.346 147.695 23.505 -v -174.593 147.694 23.366 -v -174.723 129.666 23.186 -v -174.724 147.673 23.15 -v -174.94 150.118 17.861 -v -174.7 149.714 23.818 -v 174.49 149.576 24.048 -v 174.222 149.538 24.105 -v 174.335 150.886 25.496 -v 174.345 147.678 23.503 -v 174.698 147.729 23.251 -v 174.722 129.67 23.18 -v 174.435 129.496 23.486 -v 168.869 129.432 23.54 -v 168.72 130.437 23.585 -v 168.967 130.677 23.5 -v 87.444 147.267 23.5 -v -156.615 147.256 23.5 -v -157.485 147.12 23.48 -v -157.716 146.891 23.48 -v -171.889 140.221 23.482 -v -172.108 139.995 23.478 -v -171.99 139.064 23.312 -v -171.885 138.796 23.48 -v -171.846 138.92 23.304 -v -157.73 138.734 23.472 -v -157.749 138.886 23.348 -v -157.59 132.172 23.312 -v -157.447 132.018 23.312 -v -156.577 132.007 23.36 -v -156.286 132.123 23.48 -v -156.213 138.777 23.478 -v -87.793 138.724 23.492 -v -87.588 132.17 23.313 -v -87.449 132.02 23.31 -v -86.515 131.887 23.49 -v -86.265 132.116 23.496 -v -71.845 139.028 23.497 -v 86.22 140.283 23.484 -v 72.148 140.1 23.312 -v 72.1 140.241 23.496 -v 72.164 138.924 23.298 -v 86.219 138.73 23.485 -v 86.278 132.117 23.486 -v 86.406 132.16 23.316 -v 86.515 131.896 23.485 -v 86.57 132.02 23.309 -v 87.442 132.017 23.308 -v 87.486 131.895 23.48 -v 116.243 130.718 23.492 -v 116.243 129.225 23.5 -v 115.999 128.687 25.5 -v -143.426 130.285 23.717 -v -143.514 129.838 25.5 -v -143.466 128.96 25.5 -v -143.29 130.435 23.588 -v -168.727 130.415 23.59 -v -174.481 129.317 23.573 -v -174.861 129.444 23.18 -v -174.965 130.521 19.395 -v -174.922 130.939 18.705 -v -175.255 130.682 18.62 -v -175.287 131.583 17.803 -v -176.927 131.697 17.73 -v -176.937 132.753 17.498 -v -175.272 132.753 17.518 -v -175.294 150.14 17.537 -v -175.078 150.143 17.66 -v -174.99 132.752 17.724 -v -175.138 153.74 18.86 -v -174.894 153.597 19.125 -v -174.825 156.086 21.7 -v -174.648 151.197 25.338 -v -174.557 151.707 27.435 -v -174.444 150.948 25.466 -v -174.492 149.588 24.056 -v -174.228 149.541 24.106 -v -174.158 150.886 25.5 -v 86.261 152.175 48.968 -v 149.298 152.184 48.995 -v 149.292 152.281 51.774 -v 150.736 152.174 48.972 -v 150.71 152.3 52.096 -v 150.57 152.468 52.083 -v 150.6 153.24 54.334 -v 150.768 153.115 54.37 -v 173.471 152.3 51.733 -v 174.646 151.195 25.332 -v 174.578 151.776 27.33 -v 173.723 152.645 51.808 -v 174.686 157.003 25.249 -v 174.827 156.073 21.657 -v 174.7 149.758 23.828 -v 174.958 150.112 17.785 -v 175.266 150.156 17.545 -v 175.199 132.76 17.529 -v 174.939 132.747 17.839 -v 174.964 131.67 18.018 -v 175.278 131.585 17.805 -v 175.257 130.695 18.6 -v 175.224 130.363 19.326 -v 175.01 130.718 18.812 -v 174.9 130.906 18.897 -v 174.84 129.465 23.173 -v 174.482 129.307 23.579 -v 174.543 129.177 23.723 -v 168.741 129.365 23.662 -v 168.886 129.182 23.744 -v 168.55 128.744 25.5 -v 174.243 128.687 25.5 -v 175.18 128.74 25.316 -v 175.18 146.939 25.316 -v 174.218 148.113 25.791 -v 175.159 148.215 25.636 -v 174.165 149.01 26.598 -v -174.17 149.014 26.602 -v -174.093 149.431 27.753 -v -173.223 150.296 52.29 -v -173.183 151.056 54.384 -v -173.16 151.47 55.517 -v -173.136 152.543 56.485 -v -174.103 151.635 55.432 -v -174.177 150.49 52.32 -v -175.035 149.62 27.766 -v -175.846 150.157 27.74 -v -175.917 149.63 26.242 -v -176.461 150.3 25.81 -v -176.51 148.845 24.49 -v -176.733 148.731 23.327 -v -176.93 150.794 17.592 -v -176.907 153.015 18.386 -v -176.9 130.668 18.56 -v -176.626 129.145 23.797 -v -176.53 146.939 24.016 -v -175.981 128.877 24.796 -v -175.981 146.939 24.796 -v -175.961 148.467 25.18 -v -175.161 148.215 25.636 -v -175.113 149.18 26.52 -v -175.18 146.939 25.316 -v -174.238 146.93 25.5 -v -174.243 128.687 25.5 -v -168.483 129.866 25.5 -v -168.221 130.181 25.5 -v -143.619 130.424 23.676 -v -143.298 130.104 23.685 -v -168.39 130.421 23.674 -v -168.576 130.286 23.717 -v -168.708 130.103 23.683 -v -168.734 129.503 23.65 -v -168.803 129.217 23.73 -v -168.552 128.738 25.5 -v -174.54 129.178 23.722 -v -175.054 129.315 23.218 -v -175.235 130.347 19.37 -v -175.18 128.74 25.316 -v -174.213 148.113 25.793 -v 143.865 130.198 25.5 -v 168.156 130.19 25.5 -v 168.38 130.424 23.675 -v 168.579 130.283 23.717 -v 168.469 129.933 25.5 -v 168.705 130.104 23.683 -v 143.035 130.677 23.5 -v 143.278 130.418 23.59 -v 127.753 129.464 23.509 -v 127.751 130.733 23.493 -v 127.727 130.397 23.27 -v 116.277 130.378 23.234 -v 117.75 128.24 11.213 -v 112.982 128.225 11.299 -v 129.239 128.096 11.594 -v 113.257 127.949 11.724 -v 113.665 127.555 11.963 -v 129.233 127.52 11.973 -v 129.352 122.992 11.972 -v 129.935 127.505 12.159 -v 129.732 122.825 12.07 -v 130.654 127.588 12.759 -v 130.057 127.935 11.936 -v 130.624 128.138 11.906 -v 130.593 128.248 11.298 -v 126.254 128.217 11.274 -v 128.001 128.687 25.5 -v 127.782 129.178 23.73 -v 143.14 128.7 25.5 -v 143.472 128.98 25.5 -v 143.541 129.961 25.5 -v 143.292 130.095 23.685 -v -143.749 130.166 25.5 -v 174.247 146.958 25.5 -v 143.613 130.421 23.674 -v 143.424 130.285 23.716 -v 143.24 129.53 23.622 -v 142.995 129.219 23.686 -v 143.11 129.511 23.515 -v 125.974 128.336 8.983 -v 130.515 128.337 8.951 -v 125.925 128.125 8.613 -v 130.552 128.053 8.552 -v 125.175 129.085 2.498 -v 125.885 128.09 8.278 -v 125.175 128.687 2.498 -v 118.823 129.085 2.498 -v 118.823 128.687 2.498 -v 118.197 126.189 7.588 -v 118.11 128.09 8.278 -v 125.797 126.189 7.588 -v 118.07 128.104 8.602 -v 112.917 128.035 8.54 -v 118.035 128.325 8.898 -v 112.882 128.332 8.939 -v 112.981 125.861 11.3 -v 112.897 125.94 8.519 -v 111.869 125.975 9.5 -v 80.41 125.867 11.327 -v 80.368 125.597 11.733 -v 113.257 125.58 11.724 -v 80.318 125.212 11.963 -v 113.666 125.154 11.97 -v 77.124 123.036 11.985 -v 77.32 122.597 11.724 -v 77.289 122.338 11.342 -v 75.822 122.618 12.106 -v 75.653 122.364 11.73 -v 129.305 122.328 11.35 -v 129.221 121.997 6.32 -v 129.735 122.192 11.48 -v 129.466 122.58 11.748 -v 130.316 122.277 12.495 -v 130.452 127.163 12.679 -v 130.951 140.243 18.058 -v 130.706 127.151 13.38 -v 130.701 120.944 13.42 -v 131.035 140.294 18.42 -v 131.252 140.546 18.721 -v 131.572 140.59 18.93 -v 130.891 141.697 18.928 -v 131.797 141.373 18.997 -v 130.922 143.57 18.996 -v 130.266 144.142 18.929 -v 125.11 147.289 18.862 -v 122.354 148.534 18.998 -v 124.295 145.523 18.968 -v 130.669 141.46 18.719 -v 130.488 141.272 18.327 -v 130.838 140.791 18.322 -v 130.23 140.28 6.334 -v 130.336 139.71 6.335 -v 130.499 130.973 9.5 -v 130.335 131.53 6.342 -v 130.951 132.405 1.395 -v 130.063 131.72 5.244 -v 129.403 131.885 4.322 -v 128.45 131.993 3.712 -v 129.072 139.528 4.055 -v 129.659 139.863 4.642 -v 129.316 140.39 4.63 -v 128.759 139.987 4.044 -v 128.2 139.242 3.628 -v 127.352 138.795 3.498 -v 127.341 132.03 3.498 -v 110.811 132.03 3.498 -v 110.397 132.439 1.311 -v 110.487 125.555 1.684 -v 110.202 125.269 0.891 -v 110.117 132.719 0.804 -v 131.514 132.944 0.551 -v 131.52 124.955 0.548 -v 130.96 125.516 1.41 -v 109.415 133.429 0.212 -v 109.412 124.474 0.21 -v 108.517 134.327 0 -v 132.277 133.704 0.078 -v 132.155 124.319 0.14 -v 132.897 123.577 0 -v 153.001 154.509 0 -v 153.001 137.397 0 -v 157.407 128.52 0.023 -v 159.963 131.027 0.04 -v 160.13 130.84 0.287 -v 157.803 128.523 0.264 -v 163.442 122.889 0.273 -v 165.458 124.91 0.275 -v 167.71 127.323 1.012 -v 165.645 124.742 0.03 -v 168.024 127.194 0.842 -v 170.496 119.865 -0 -v 163.432 122.46 0.002 -v 170.502 -12.282 0 -v 173.235 -136.318 0.523 -v 173.999 -138.137 0.582 -v 172.882 -138.12 0.025 -v 174.745 -139.685 0.235 -v 175.357 -140.818 0.047 -v 174.632 -142.306 0.014 -v 172.476 -142.455 0.062 -v 172.437 -136.239 0.257 -v 171.15 -136.939 0.004 -v 108.517 123.577 0 -v 3.143 118.157 0 -v 4.435 120.025 0 -v 4.71 122.28 0 -v 92.673 154.509 3.712 -v 69.379 126.867 3.498 -v 69.78 126.104 3.62 -v 70.717 125.153 4.372 -v 70.235 124.85 4.328 -v 70.712 124.126 5.633 -v 94.887 154.509 5.467 -v 93.89 154.509 4.322 -v 102.999 154.509 3.712 -v 104.415 154.509 3.498 -v 109.437 154.509 3.541 -v 122.476 154.509 3.497 -v 132.033 154.509 3.498 -v 133.237 154.509 3.712 -v 134.27 154.509 4.322 -v 134.983 154.509 5.244 -v 141.995 154.509 3.712 -v 143.2 154.509 3.498 -v 151.943 154.509 3.498 -v 155.74 154.509 0.524 -v 153.793 154.509 3.856 -v 158.083 154.509 2.022 -v 155.385 154.509 4.872 -v 159.703 154.509 4.288 -v 156.498 154.51 6.426 -v 160.406 154.508 7.564 -v 157.122 154.509 8.714 -v 160.683 154.509 11.412 -v 161.524 154.51 17.914 -v 158.064 154.51 18.998 -v 159.647 154.509 18.995 -v 160.223 154.485 18.862 -v 160.99 154.512 18.507 -v 173.093 142.965 17.9 -v 172.775 142.728 18.48 -v 173.093 142.38 14 -v 171.308 140.627 13.991 -v 177.077 138.347 14 -v 177.513 136.543 8.972 -v 177.306 138.323 15.561 -v 177.732 137.6 15.733 -v 177.7 136.122 8.748 -v 177.96 134.645 8.852 -v 177.9 124.387 8.73 -v 177.734 134.67 8.58 -v 177.61 124.556 8.525 -v 163.21 138.706 8.488 -v 161.424 141.71 8.485 -v 176.268 137.955 8.527 -v 161.51 152.727 8.54 -v 177.396 136.017 8.52 -v 176.46 138.2 8.765 -v 161.714 152.954 8.788 -v 160.818 153.814 8.505 -v 160.665 153.907 8.237 -v 160.809 153.6 8.343 -v 160.576 143.814 8.119 -v 161.047 141.527 8.238 -v 161.029 143.769 8.442 -v 160.761 141.521 7.815 -v 162.96 138.339 8.238 -v 175.977 125.45 8.328 -v 177.631 123.365 8.401 -v 177.798 122.39 8.295 -v 177.673 121.987 7.984 -v 175.59 125.35 7.86 -v 162.824 138.096 7.842 -v 160.399 143.87 7.455 -v 160.98 140.703 7.026 -v 160.557 140.529 4.998 -v 159.912 143.266 4.765 -v 159.485 140.08 3.086 -v 162.233 137.846 4.771 -v 165.541 135.276 6.972 -v 162.707 138.11 6.992 -v 175.529 125.29 6.992 -v 170.196 130.631 6.943 -v 164.48 134.838 3.571 -v 165.641 135.066 6.739 -v 160.637 138.009 2.85 -v 162.424 133.31 1.065 -v 157.747 139.363 1.454 -v 158.02 141.73 2.086 -v 158.825 142.425 2.842 -v 157.179 141.003 1.294 -v 155.705 139.733 0.592 -v 155.391 138.269 0.343 -v 161.499 132.69 0.708 -v 158.505 137.8 1.294 -v 162.557 133.05 1.24 -v 164.55 134.448 3.653 -v 163.097 132.24 6.482 -v 162.11 131.657 4.872 -v 160.86 130.663 3.856 -v 159.505 129.395 3.498 -v 158.631 128.523 3.498 -v 155.18 133.684 3.497 -v 152.507 134.66 3.712 -v 155.678 134.567 3.598 -v 152.46 135.613 4.322 -v 156.529 135.742 4.11 -v 152.425 136.267 5.244 -v 146.615 135.665 4.322 -v 146.553 134.715 3.712 -v 146.475 133.609 3.498 -v 137.653 134.903 3.498 -v 157.515 -109.394 3.498 -v 163.439 123.719 3.498 -v 171.267 119.223 3.854 -v 172.597 120.097 4.866 -v 170.995 122.77 4.872 -v 171.777 123.549 6.404 -v 166.575 127.193 4.872 -v 165.575 125.945 3.856 -v 169.875 121.645 3.856 -v 164.309 124.587 3.498 -v 169.408 119.105 3.498 -v 169.183 129.399 3.326 -v 169.61 130.628 6.502 -v 169.934 130.728 6.669 -v 169.523 129.418 3.209 -v 169.89 129.717 4.356 -v 169.031 128.353 2.182 -v 173.913 123.669 2.022 -v 172.253 122.015 0.524 -v 173.235 120.215 0.523 -v 174.158 -136.59 0.97 -v 175.162 -137.163 1.658 -v 174.863 -138.45 1.15 -v 175.786 -139.4 1.738 -v 176.824 -139.457 3.01 -v 176.332 -137.315 2.861 -v 176.57 -140.337 2.176 -v 177.146 -141.648 1.412 -v 175.859 -140.846 0.306 -v 177.677 -142.57 0.323 -v 177.74 -142.462 0.644 -v 177.493 -142.762 0.085 -v 177.194 -142.98 0.001 -v 176.58 -143.353 0.017 -v 178.659 -144.64 0.038 -v 177.924 -147.374 0.054 -v 179.087 -146.755 0.038 -v 177.28 -149.434 0.019 -v 178.7 -148.879 0.046 -v 177.505 -150.69 0.038 -v 177.82 -150.912 0.363 -v 179.064 -148.963 0.364 -v 179.43 -149.127 1.92 -v 179.871 -146.7 1.92 -v 180.483 -145.947 3.14 -v 181.39 -145.72 4.924 -v 181.303 -148.375 4.924 -v 181.704 -148.458 6.985 -v 180.695 -151.071 6.989 -v 180.347 -150.86 4.924 -v 179.51 -150.358 3.057 -v 178.101 -151.199 1.92 -v 177.996 -152.14 3.058 -v 178.625 -152.883 4.924 -v 176.054 -153.273 3.05 -v 176.08 -152.617 1.92 -v 173.69 -153.448 2.522 -v 173.69 -153.142 1.893 -v 175.926 -152.28 0.41 -v 173.593 -152.771 0.358 -v 175.726 -151.915 0.038 -v 173.16 -152.482 0.078 -v 175.533 -150.768 0.053 -v 173.47 -151.406 0.019 -v 177.689 -145.247 0.053 -v 176.349 -143.577 0.202 -v 174.529 -142.62 0.202 -v 170.57 -143.42 0.054 -v 170.781 -143.731 0.524 -v 169.673 -145.338 0.526 -v 169.443 -147.289 0.543 -v 169.715 -146.333 5.502 -v 170.139 -149.117 0.537 -v 169.235 -147.307 0.202 -v 169.344 -145.168 0.06 -v 168.904 -147.315 0.015 -v 169.793 -149.289 0.052 -v 163.77 -148.634 0.005 -v 164.464 -150.478 0.39 -v 138.716 -153.873 2.023 -v 138.67 -151.53 0.524 -v 138.542 -148.795 0 -v 1.135 117.103 0 -v -0.835 116.994 0 -v -0.883 118.127 1.052 -v -0.001 118.02 1.052 -v 0.876 118.126 1.052 -v 2.443 118.945 1.052 -v 2.635 119.895 10.398 -v 1.485 118.875 10.398 -v 2.567 116.823 10.398 -v -0.001 116.19 10.398 -v -0.001 116.105 12 -v 2.605 116.749 12 -v 4.54 118.575 10.398 -v 4.609 118.525 12 -v 5.479 121.045 10.398 -v 3.173 121.325 10.398 -v 2.989 122.845 10.398 -v 3.663 122.155 1.052 -v 3.45 120.405 1.052 -v 3.034 123.808 1.052 -v 3.905 124.407 0 -v 2.203 125.91 0 -v -0.001 126.455 0 -v -4.223 154.509 0 -v -2.21 125.91 0 -v -3.907 124.407 0 -v -4.713 122.28 0 -v -170.95 -136.84 0 -v -4.437 120.025 0 -v -3.151 118.157 0 -v -2.45 118.951 1.052 -v -1.491 118.875 10.398 -v -2.635 119.895 10.398 -v -4.543 118.575 10.398 -v -2.567 116.823 10.398 -v -4.615 118.525 12 -v -2.607 116.749 12 -v -0.001 118.51 10.398 -v -6.316 116.47 11.97 -v -4.122 114.6 11.963 -v -1.397 113.625 11.97 -v 1.49 113.642 11.97 -v 1.513 113.227 11.728 -v 4.357 114.279 11.728 -v 4.19 114.661 11.97 -v 6.375 116.525 11.963 -v 6.663 116.245 11.728 -v 8.434 119.424 11.732 -v 8.68 119.281 11.3 -v 8.362 119.878 11.93 -v 8.447 120.54 11.999 -v 5.56 121.035 12 -v 8.388 122.887 11.998 -v 8.229 123.718 11.928 -v 5.24 123.699 12 -v 5.163 123.669 10.398 -v 3.659 125.843 10.398 -v 2.12 124.107 10.398 -v 1.714 124.974 1.052 -v -0 125.403 1.052 -v 0.767 124.815 10.398 -v -0.767 124.815 10.398 -v 1.319 127.07 10.398 -v -1.321 127.07 10.398 -v 1.339 127.153 12 -v 3.717 125.907 12 -v 4.103 128.81 11.97 -v 1.397 129.792 11.97 -v -1.486 129.793 11.963 -v -1.515 130.19 11.728 -v -4.36 129.143 11.728 -v -4.192 128.76 11.97 -v -1.345 127.153 12 -v -3.717 125.907 12 -v -3.665 125.843 10.398 -v -5.163 123.669 10.398 -v -2.995 122.845 10.398 -v -3.18 121.325 10.398 -v -3.665 122.156 1.052 -v -3.036 123.808 1.052 -v -2.121 124.107 10.398 -v -1.722 124.974 1.052 -v -3.45 120.4 1.052 -v -5.485 121.045 10.398 -v -5.241 123.699 12 -v -5.567 121.035 12 -v -6.376 126.876 11.97 -v -8.255 123.671 11.932 -v -8.482 123.893 11.734 -v -8.895 123.918 11.324 -v -9.339 123.67 11.323 -v -9.848 123.57 11.362 -v -10.123 123.875 6.306 -v -68.46 123.58 11.332 -v -68.41 123.315 11.724 -v -9.408 123.377 11.709 -v -68.475 122.934 11.972 -v -9.32 123.066 11.924 -v -8.367 122.937 11.998 -v -64.83 120.532 11.971 -v -8.453 120.571 11.999 -v -9.476 120.402 11.93 -v -65.414 119.999 11.704 -v -9.527 120.088 11.73 -v -64.873 119.827 11.324 -v -65.546 119.662 11.331 -v -9.584 119.814 11.319 -v -9.176 119.632 11.056 -v -8.949 119.687 11.585 -v -8.613 119.29 11.43 -v -8.72 119.265 11.03 -v -6.89 116.09 11.312 -v -6.805 115.555 6.288 -v -8.438 119.422 11.73 -v -8.332 119.822 11.927 -v -6.663 116.245 11.728 -v -4.36 114.279 11.728 -v -1.515 113.227 11.728 -v -1.572 112.964 11.326 -v 1.556 112.963 11.333 -v 4.48 114.05 11.353 -v 6.886 116.087 11.32 -v 8.627 118.627 7.788 -v 8.971 119.717 11.597 -v 9.155 119.623 11.073 -v 9.597 119.811 11.312 -v 9.526 120.077 11.72 -v 9.47 120.39 11.926 -v 68.59 122.878 11.984 -v 9.323 123.042 11.93 -v 68.403 123.315 11.724 -v 9.4 123.346 11.736 -v 68.448 123.585 11.334 -v 9.853 123.574 11.344 -v 10.124 123.876 6.3 -v 9.316 123.678 11.32 -v 9.526 124.002 6.264 -v 8.877 123.933 11.315 -v 8.476 123.928 11.717 -v 8.548 124.302 11.343 -v 6.87 127.34 11.33 -v 4.505 129.36 11.338 -v 6.663 127.173 11.728 -v 4.357 129.143 11.728 -v 6.325 126.954 11.963 -v 1.513 130.19 11.728 -v 1.568 130.454 11.34 -v -1.554 130.454 11.348 -v -0.001 130.503 11.068 -v -0.001 130.977 6.288 -v 2.78 130.517 6.423 -v 2.907 130.807 5.206 -v -0.001 131.259 5.206 -v 3.109 131.439 4.304 -v -0.001 131.925 4.304 -v -2.913 130.807 5.206 -v -2.827 130.508 6.384 -v -4.479 129.37 11.353 -v -6.875 127.346 11.316 -v -6.663 127.173 11.728 -v -8.55 124.29 11.358 -v -9.006 124.37 6.28 -v -9.529 124.001 6.263 -v -70.006 123.944 5.674 -v -70.684 124.088 5.67 -v -70.117 123.566 11.719 -v -69.894 123.325 12.068 -v -66.79 119.64 12.116 -v -66.39 119.596 11.913 -v -66.573 120.1 11.996 -v -66.132 120.024 11.93 -v -65.97 119.476 11.506 -v -65.953 119.315 11.152 -v -65.765 118.38 6.244 -v -66.248 119.074 11.643 -v -65.657 117.684 5.696 -v -65.507 118.279 5.41 -v -65.473 118.98 6.244 -v -65.231 118.845 5.41 -v -64.812 119.335 5.688 -v -64.045 118.914 4.685 -v -64.2 119.495 5.83 -v -9.828 119.26 5.287 -v -10.121 119.543 6.285 -v -9.53 119.42 6.272 -v -9.02 119.062 6.263 -v -8.63 118.627 7.788 -v -7.421 116.163 6.288 -v -9.185 118.82 5.266 -v -10.083 118.742 4.487 -v -10.417 117.732 3.753 -v -9.548 118.388 4.485 -v -7.65 115.987 5.206 -v -8.177 115.595 4.304 -v -5.543 113.93 5.206 -v -5.377 114.163 6.288 -v -4.508 114.058 11.337 -v -0.001 112.915 11.068 -v -2.79 112.906 6.415 -v -0.001 112.445 6.288 -v 2.83 112.916 6.38 -v -0.001 112.159 5.206 -v -2.913 112.615 5.206 -v -3.111 111.985 4.304 -v -0.001 111.499 4.304 -v 2.907 112.615 5.206 -v 3.109 111.985 4.304 -v 5.54 113.93 5.206 -v 5.377 114.163 6.288 -v 6.803 115.555 6.288 -v 7.647 115.987 5.206 -v 5.925 113.39 4.304 -v 8.177 115.595 4.304 -v 9.563 118.4 4.476 -v 9.18 118.83 5.27 -v 7.419 116.163 6.288 -v 9.014 119.058 6.26 -v 10.12 119.543 6.283 -v 64.84 119.825 11.294 -v 64.817 120.103 11.724 -v 65.547 119.662 11.33 -v 65.786 120.043 11.878 -v 64.821 120.495 11.962 -v 66.553 120.138 11.998 -v 66.266 119.71 11.885 -v 66 119.5 11.58 -v 66.241 119.06 11.627 -v 66.556 119.46 12.051 -v 69.745 122.972 12.248 -v 69.901 123.292 12.109 -v 70.072 123.551 11.724 -v 70.052 123.946 5.68 -v 9.81 124.188 5.254 -v 9.004 124.369 6.296 -v 7.406 127.29 6.256 -v 9.177 124.598 5.267 -v 9.547 125.033 4.484 -v 10.103 124.694 4.466 -v 10.394 125.73 3.746 -v 11.107 126.857 3.498 -v 7.647 127.43 5.206 -v 8.177 127.829 4.304 -v 5.54 129.489 5.206 -v 5.377 129.255 6.288 -v 5.925 130.027 4.304 -v 8.933 128.39 3.706 -v 6.473 130.799 3.706 -v 3.397 132.34 3.706 -v 8.223 130.946 3.498 -v 1.557 133.994 3.498 -v -0.001 132.87 3.706 -v -3.111 131.439 4.304 -v -3.403 132.34 3.706 -v -5.925 130.027 4.304 -v -5.543 129.489 5.206 -v -7.65 127.43 5.206 -v -7.41 127.293 6.243 -v -5.377 129.255 6.288 -v -9.186 124.585 5.272 -v -9.561 125.028 4.476 -v -8.177 127.829 4.304 -v -10.402 125.728 3.745 -v -8.94 128.39 3.706 -v -11.113 126.857 3.498 -v -10.107 124.683 4.477 -v -9.862 124.19 5.246 -v -70.455 124.94 4.338 -v -69.903 124.759 4.372 -v -69.767 126.191 3.576 -v -71.213 124.503 5.67 -v -71.117 123.77 12.88 -v -70.922 123.618 12.858 -v -66.264 117.51 13.402 -v -95.86 154.509 18.05 -v -95.979 154.509 18.42 -v -6.655 41.799 18.048 -v -6.73 41.744 18.42 -v -6.636 41.33 18.71 -v -6.304 41.426 18.323 -v -65.483 117.119 6.343 -v -6.466 42.57 6.133 -v -6.332 42.78 5.297 -v -65.304 117.082 5.643 -v -5.867 43.045 4.5 -v -64.736 117.02 4.793 -v -5.429 44.1 3.76 -v -64.075 116.938 4.27 -v -4.806 45.259 3.498 -v -3.737 110.033 3.498 -v -0 46.096 3.498 -v 2.254 109.531 3.498 -v 3.397 111.08 3.706 -v 6.473 112.619 3.706 -v -0.001 110.553 3.706 -v 8.437 112.73 3.498 -v 8.933 115.027 3.706 -v 10.182 117.498 3.773 -v 10.594 117.794 3.77 -v 10.095 118.763 4.5 -v 9.868 119.262 5.287 -v 9.525 119.42 6.272 -v 64.197 119.492 5.808 -v 64.81 119.344 5.684 -v 65.922 119.347 11.14 -v 65.76 118.38 6.244 -v 66.53 118.54 12.324 -v 66.423 118.295 12.02 -v 66.261 117.51 13.39 -v 70.902 123.558 12.908 -v 71.457 124.073 13.422 -v 71.01 123.75 12.626 -v 71.217 124.494 5.687 -v 100.591 154.509 6.342 -v 100.941 154.509 5.244 -v 101.781 154.509 4.322 -v 81.174 128.41 4.313 -v 82.868 128.92 3.68 -v 81.351 127.646 4.187 -v 83.574 128.713 3.525 -v 83.182 128.024 3.711 -v 110.845 128.023 3.712 -v 81.794 127.104 4.313 -v 110.953 127.067 4.322 -v 111.117 126.41 5.244 -v 80.978 126.425 5.336 -v 111.311 126.139 6.342 -v 81.35 126.173 5.924 -v 80.415 126.897 5.226 -v 80.07 126.703 6.244 -v 79.783 127.305 6.244 -v 79.619 126.331 11.147 -v 80.589 126.29 6.278 -v 79.539 126.17 11.6 -v 79.276 125.9 11.9 -v 79.3 126.624 11.627 -v 78.987 126.226 12.05 -v 78.941 125.586 12.01 -v 75.985 122.946 12.247 -v 74.826 122.354 12.907 -v 74.703 122.156 12.619 -v 75.671 121.972 5.693 -v 75.013 121.786 5.63 -v 74.538 121.348 5.551 -v 10.112 39.789 5.3 -v 10.487 39.36 4.482 -v 75.009 120.764 4.374 -v 75.663 119.92 3.77 -v 12.878 38.87 3.498 -v 127.341 119.045 3.498 -v 76.343 119.045 3.498 -v 127.922 120.07 3.68 -v 75.982 119.804 3.602 -v 75.508 121.085 4.337 -v 129.069 121.703 5.196 -v 128.457 120.854 4.128 -v 128.38 119.713 3.684 -v 128.946 120.41 4.042 -v 129.607 121.31 5.09 -v 129.893 121.597 6.308 -v 130.219 121.113 6.318 -v 130.318 121.806 12.199 -v 130.334 120.55 6.348 -v 130.334 -116.949 6.337 -v 130.247 -116.822 5.761 -v 130.005 -117.37 5.434 -v 129.441 -116.439 4.444 -v 129.343 -115.591 4.405 -v 128.447 -114.543 3.715 -v 127.34 -112.832 3.498 -v 127.619 -114.931 3.72 -v 128.824 -116.776 4.253 -v 129.515 -117.809 5.254 -v 129.67 -118.177 6.2 -v 128.99 -118.425 6.2 -v 130.326 -119.946 18.382 -v 130.815 -119.39 18.348 -v 130.155 -117.643 6.25 -v 130.952 -118.632 18.056 -v 134.13 139.827 18.998 -v 137.787 139.825 18.998 -v 143.26 139.885 18.99 -v 156.3 139.947 19.018 -v 157.132 139.643 18.998 -v 157.138 140.018 18.93 -v 156.98 140.328 18.736 -v 149.265 139.887 18.726 -v 149.252 140.162 18.308 -v 142.616 140.777 18.303 -v 142.52 140.513 18.726 -v 149.508 139.435 18.976 -v 135.368 141.948 18.97 -v 143.458 138.269 18.964 -v 140.553 139.199 18.998 -v 133.499 139.213 18.997 -v 134.144 139.42 18.928 -v 135.443 140.026 18.965 -v 135.496 139.611 18.72 -v 134.347 139.17 18.724 -v 135.199 139.276 18.3 -v 134.726 139.11 18.36 -v 135.733 139.313 18.329 -v 134.525 143.063 18.926 -v 133.923 143.582 18.996 -v 132.672 144.847 18.971 -v 131.538 144.142 18.926 -v 131.47 144.459 18.718 -v 130.376 144.442 18.725 -v 130.22 144.8 18.328 -v 125.259 147.695 18.303 -v 120.628 151.25 18.348 -v 120.531 150.793 18.865 -v 116.858 154.509 18.8 -v 116.033 154.509 18.998 -v 114.048 154.509 18.942 -v 113.341 154.509 18.343 -v 117.342 154.509 18.293 -v 112.356 154.509 5.584 -v 118.27 154.509 5.935 -v 118.73 154.509 5.047 -v 111.583 154.509 4.559 -v 110.54 154.509 3.874 -v 119.507 154.509 4.328 -v 120.793 154.507 3.714 -v 122.347 151.879 4.322 -v 129.795 149.106 3.496 -v 130.62 147.68 3.813 -v 131.231 146.905 4.446 -v 131.536 146.457 5.082 -v 130.458 146.602 4.332 -v 130.92 146.075 5.012 -v 131.588 145.99 5.961 -v 131.95 146.507 6.048 -v 135.275 154.509 6.342 -v 139.957 154.509 6.342 -v 140.249 154.509 5.244 -v 140.96 154.509 4.322 -v 136.791 144.637 4.445 -v 137.758 144.7 3.807 -v 137.15 143.901 4.295 -v 138.115 144.149 3.847 -v 143.559 143.187 3.712 -v 143.413 142.245 4.322 -v 149.92 142.693 3.712 -v 149.92 141.737 4.322 -v 153.376 142.863 3.708 -v 151.927 143.771 3.497 -v 139.353 145.155 3.496 -v 154.703 141.986 4.319 -v 155.735 141.45 5.28 -v 149.92 141.077 5.244 -v 143.311 141.595 5.244 -v 143.206 141.345 6.32 -v 149.919 140.805 6.343 -v 156.46 141.284 6.361 -v 156.883 142.265 7.748 -v 156.948 142.023 8.265 -v 157.7 153.392 9.834 -v 157.72 141.802 9.893 -v 158.584 152.393 10.86 -v 159.625 151.049 11.292 -v 161.01 149.897 11.965 -v 178.135 132.639 12.015 -v 178.142 133.053 12.237 -v 161.94 148.908 12.033 -v 161.303 149.903 12.241 -v 157.322 154.044 9.198 -v 158.96 153.285 18.998 -v 159.745 154.09 18.998 -v 171.74 142.279 18.992 -v 172.015 142.689 18.865 -v 172.426 142.514 18.783 -v 171.336 141.354 18.71 -v 175.342 136.55 13.984 -v 175.592 136.543 15.644 -v 175.776 136.59 15.994 -v 177.289 138.158 15.974 -v 177.286 137.742 16.285 -v 178.28 135.331 15.774 -v 170.9 140.607 13.728 -v 170.934 141.355 18.976 -v 175.342 136.143 13.7 -v 175.63 136.136 15.617 -v 175.744 136.21 16.007 -v 176.12 136.361 16.372 -v 178.03 135.303 16.205 -v 177.952 134.303 16.277 -v 177.602 135.216 16.467 -v 176.444 136.37 16.474 -v 178.282 133.524 15.826 -v 177.052 136.47 16.518 -v 177.966 123.194 8.877 -v 162.045 139.587 12.029 -v 161.683 139.735 12.06 -v 178.135 123.474 12.05 -v 177.925 122.622 8.538 -v 177.552 121.987 7.57 -v 177.518 121.973 6.962 -v 175.057 124.819 4.288 -v 176.873 121.777 4.264 -v 175.32 121.3 2.012 -v 175.582 119.65 2.025 -v 177.867 119.64 6.99 -v 177.9 119.68 7.572 -v 178.175 -135.954 12.848 -v 178.568 -137.31 17.775 -v 178.073 -135.883 18.404 -v 178.15 -137.241 18.464 -v 179.034 -138.953 17.785 -v 178.673 -138.719 12.922 -v 180.28 -140.982 17.793 -v 178.53 -138.767 18.5 -v 180.052 -141.253 18.4 -v 181.08 -142.77 18.4 -v 181.395 -142.605 17.756 -v 179.705 -141.226 6.303 -v 178.32 -138.9 6.328 -v 177.868 -136.07 6.987 -v 177.742 -136.162 5.96 -v 177.203 119.646 4.29 -v 177.188 -136.615 4.296 -v 177.561 -139.369 3.998 -v 177.41 -141.346 2.368 -v 177.878 -142.322 1.572 -v 179.36 -144.295 1.92 -v 178.988 -144.45 0.354 -v 179.473 -146.695 0.362 -v 178.095 -142.135 2.314 -v 178.904 -141.72 3.743 -v 179.758 -143.811 3.013 -v 180.599 -143.183 4.924 -v 181.801 -145.592 7.09 -v 180.963 -142.999 6.992 -v 182.103 -144.37 17.756 -v 181.76 -144.469 18.4 -v 182.07 -146.385 18.4 -v 182.43 -146.37 17.756 -v 182.293 -148.39 17.756 -v 181.939 -148.327 18.4 -v 181.375 -150.185 18.4 -v 181.705 -150.327 17.756 -v 180.409 -151.875 18.4 -v 180.7 -152.083 17.756 -v 178.89 -153.199 6.992 -v 179.323 -153.567 17.756 -v 179.091 -153.297 18.4 -v 177.48 -154.389 18.4 -v 177.649 -154.709 17.756 -v 176.526 -154.61 7.065 -v 176.333 -154.233 4.924 -v 173.737 -155.159 6.992 -v 173.78 -154.735 4.898 -v 171.01 -153.602 2.715 -v 172.168 -153.164 2.01 -v 169.864 -152.827 1.709 -v 171.005 -152.739 1.294 -v 169.744 -152.054 0.452 -v 171.377 -152.53 0.565 -v 169.905 -151.842 0.114 -v 168.195 -152.029 1.014 -v 166.993 -151.183 0.465 -v 167.378 -150.793 0.027 -v 172.093 -152.569 0.296 -v 172.688 -152.812 0.628 -v 172.654 -152.92 1.19 -v 173.197 -152.142 -0 -v 171.331 -150.865 0.019 -v 173.499 -151.083 0.202 -v 175.4 -150.414 0.52 -v 176.867 -149.112 0.524 -v 177.033 -149.229 0.202 -v 177.56 -147.28 0.531 -v 177.322 -145.333 0.532 -v 176.21 -143.727 0.53 -v 174.478 -142.815 0.516 -v 172.512 -142.82 0.532 -v 173.499 -142.979 5.502 -v 171.73 -143.415 5.502 -v 170.36 -144.625 5.502 -v 172.088 -144.113 6.21 -v 172.777 -143.853 10 -v 173.494 -143.766 6.21 -v 174.223 -143.853 10 -v 174.815 -141.445 10 -v 172.179 -141.445 10 -v 172.735 -140.982 16.306 -v 170.641 -141.664 16.33 -v 169.851 -142.669 10 -v 171.49 -144.527 10 -v 170.67 -145.717 10 -v 171.012 -145.07 6.21 -v 170.495 -146.427 6.21 -v 170.67 -147.858 6.21 -v 169.933 -148.143 5.502 -v 170.971 -149.643 5.502 -v 171.606 -150.417 0.526 -v 173.504 -150.883 0.51 -v 171.501 -150.593 0.202 -v 174.411 -150.49 5.502 -v 172.587 -150.49 5.502 -v 172.78 -149.725 6.21 -v 174.222 -149.725 6.21 -v 176.027 -149.643 5.502 -v 177.061 -148.143 5.502 -v 175.503 -149.055 6.21 -v 176.33 -147.86 6.21 -v 175.99 -148.507 10 -v 176.503 -147.153 10 -v 178.027 -149.919 10 -v 176.057 -151.66 10 -v 178.048 -150.649 18.315 -v 179.204 -148.523 18.307 -v 178.963 -147.453 10 -v 179.432 -146.113 18.334 -v 178.643 -144.837 10 -v 176.33 -145.717 10 -v 176.503 -146.426 6.21 -v 177.285 -146.333 5.502 -v 176.635 -144.625 5.502 -v 175.99 -145.07 6.21 -v 175.27 -143.415 5.502 -v 174.901 -144.108 6.21 -v 175.503 -144.527 10 -v 177.149 -142.669 10 -v 178.666 -143.813 18.306 -v 177.06 -142.008 18.303 -v 174.95 -141.045 18.045 -v 175.02 -140.993 18.364 -v 174.95 118.432 18.05 -v 174.649 120.764 18.315 -v 174.897 120.859 18.726 -v 172.83 124.3 18.726 -v 173.057 124.686 18.972 -v 168.704 128.767 18.876 -v 168.433 128.513 18.551 -v 172.636 124.122 18.333 -v 174.088 120.553 8.216 -v 173.645 120.419 6.39 -v 173.98 118.222 6.402 -v 174.436 -107.827 8.22 -v 174.43 -108.515 10.306 -v 174.89 -109.773 16.94 -v 174.88 -109.482 16.826 -v 173.866 -109.988 16.732 -v 173.988 -110.367 16.965 -v 174.893 -112.203 16.995 -v 169.214 -112.575 16.972 -v 174.884 -112.701 16.809 -v 174.845 -136.433 16.191 -v 174.86 -113.03 16.324 -v 174.878 -137.424 16.858 -v 174.892 -138.247 17.002 -v 174.893 -140.264 16.992 -v 174.884 -140.764 16.794 -v 174.858 -141.094 16.295 -v 172.71 -140.709 16.726 -v 170.505 -141.437 16.726 -v 168.952 -143.096 16.301 -v 168.73 -142.935 16.726 -v 167.637 -144.983 16.726 -v 167.9 -145.057 16.309 -v 168.351 -144.837 10 -v 167.656 -147.27 16.313 -v 167.39 -147.293 16.726 -v 168.01 -149.525 16.726 -v 168.258 -149.405 16.3 -v 168.035 -147.453 10 -v 168.967 -149.919 10 -v 171.01 -148.507 10 -v 170.495 -147.153 10 -v 172.093 -149.467 10 -v 171.49 -149.055 6.21 -v 173.499 -149.817 10 -v 170.943 -151.66 10 -v 173.499 -152.29 10 -v 170.835 -151.869 16.052 -v 169.587 -151.163 16.342 -v 169.423 -151.369 16.726 -v 171.101 -152.195 16.414 -v 171.106 -152.27 18.046 -v 173.79 -152.752 18.316 -v 176.142 -152.14 18.318 -v 174.903 -149.467 10 -v 178.394 -150.898 18.866 -v 179.469 -148.599 18.726 -v 179.834 -146.027 18.862 -v 178.895 -143.669 18.726 -v 177.207 -141.775 18.726 -v 175.132 -140.906 18.577 -v 175.038 118.41 18.416 -v 175.573 118.426 18.928 -v 175.261 121.006 18.961 -v 169.567 129.438 18.998 -v 168.926 129.144 18.947 -v 168.595 129.07 18.722 -v 168.352 128.92 18.437 -v 168.243 128.503 18.111 -v 172.093 123.869 8.238 -v 167.177 128.203 6.496 -v 159.11 136.86 8.203 -v 158.395 137.13 6.901 -v 158.063 137.135 6.213 -v 157.811 137.152 6.915 -v 152.415 136.539 6.342 -v 157.237 136.558 4.89 -v 150.411 136.559 6.342 -v 158.002 137.821 18.343 -v 150.447 137.133 18.306 -v 146.679 136.593 6.342 -v 146.659 136.325 5.244 -v 140.943 137.063 5.244 -v 140.821 136.417 4.322 -v 140.64 135.48 3.712 -v 136.54 136.455 3.717 -v 136.076 137.073 3.953 -v 136.574 -125.39 3.8 -v 146.713 -116.188 3.498 -v 138.524 -126.155 3.498 -v 141.603 -123.587 3.712 -v 139.162 -127.904 3.824 -v 142.375 -124.15 4.322 -v 139.489 -128.863 4.405 -v 139.74 -129.523 5.16 -v 138.845 -128.983 4.235 -v 138.928 -129.767 4.918 -v 139.764 -129.926 5.886 -v 140.197 -129.404 6.032 -v 143.124 -124.71 6.36 -v 142.903 -124.539 5.244 -v 146.781 -120.007 5.244 -v 146.315 -119.54 4.322 -v 145.64 -118.865 3.712 -v 150.371 -114.839 3.712 -v 155.68 -111.6 3.712 -v 150.935 -115.609 4.322 -v 156.113 -112.45 4.322 -v 151.317 -116.143 5.244 -v 146.975 -120.2 6.342 -v 151.472 -116.361 6.33 -v 156.409 -113.043 5.244 -v 156.511 -113.293 6.35 -v 161.92 -110.777 5.244 -v 161.723 -110.145 4.322 -v 161.43 -109.239 3.712 -v 167.477 -107.81 3.712 -v 169.444 -106.35 3.498 -v 172.88 118.223 4.87 -v 174.437 118.221 8.24 -v 174.078 -108.61 6.628 -v 174.11 -108.995 10.296 -v 173.418 -109.056 5.476 -v 174.32 -109.445 16.335 -v 174.673 -109.045 16.347 -v 174.85 -108.545 16.212 -v 173.813 -109.725 16.334 -v 172.844 -109.238 6.336 -v 167.747 -109.669 6.324 -v 167.52 -110.27 16.317 -v 161.88 -111.657 16.325 -v 167.559 -110.533 16.726 -v 167.513 -110.966 16.968 -v 161.911 -111.927 16.726 -v 161.948 -112.354 16.968 -v 163.341 -113.856 16.968 -v 157.85 -116.083 16.968 -v 163.557 -114.22 16.726 -v 158.127 -116.405 16.726 -v 163.684 -114.459 16.333 -v 158.276 -116.64 16.302 -v 169.3 -113.271 16.321 -v 174.437 -113.475 8.238 -v 168.683 -113.912 6.328 -v 168.7 -114.183 5.244 -v 173.265 -113.82 5.3 -v 173.961 -113.558 6.374 -v 174.032 -136.55 6.541 -v 174.421 -135.908 8.18 -v 174.437 -136.403 10.316 -v 174.681 -136.922 16.346 -v 174.334 -137.326 16.335 -v 173.877 -137.59 16.33 -v 173.958 -137.84 16.731 -v 174.062 -138.143 16.929 -v 170.651 -138.413 16.726 -v 170.589 -138.148 16.311 -v 168.044 -139.493 16.328 -v 165.7 -141.889 16.327 -v 165.392 -141.296 6.119 -v 167.313 -139.363 6.342 -v 169.18 -138.146 6.358 -v 167.137 -139.155 5.244 -v 165.288 -141.055 5.275 -v 164.754 -141.502 6.123 -v 165.224 -142.116 16.334 -v 164.638 -142.174 16.333 -v 164.61 -142.426 16.72 -v 165.655 -142.263 16.721 -v 165.803 -142.557 16.928 -v 168.417 -140.061 16.968 -v 168.21 -139.699 16.726 -v 170.736 -138.805 16.96 -v 170.253 -141.086 16.973 -v 168.375 -142.71 16.968 -v 167.185 -144.91 16.985 -v 166.953 -147.384 16.977 -v 167.651 -149.765 16.973 -v 169.605 -152.247 16.98 -v 170.394 -152.22 16.824 -v 165.147 -152.38 16.941 -v 137.056 -153.24 18.064 -v 171.07 -152.588 18.729 -v 137.596 -153.36 18.533 -v 136.193 -153.346 18.666 -v 136.228 -153.572 18.98 -v 136.392 -153.96 19.175 -v 137.922 -153.742 18.883 -v 171.044 -152.9 18.93 -v 173.8 -153.019 18.726 -v 173.835 -153.447 18.981 -v 138.38 -155.053 18.998 -v 138.502 -155.772 18.843 -v 174.899 -153.946 18.998 -v 175.05 -154.664 18.837 -v 175.67 -155.09 18.4 -v 173.743 -155.369 18.4 -v 175.757 -155.437 17.756 -v 173.753 -155.723 17.756 -v 138.75 -156.159 6.99 -v 138.52 -156.729 17.755 -v 135.314 -156.75 18.23 -v 130.592 -156.843 20.034 -v 124.858 -156.922 21.449 -v 119.998 -156.935 21.754 -v 138.766 -155.493 4.287 -v -138.696 -153.872 2.021 -v 168.2 -152.907 1.903 -v 165.82 -151.777 1.024 -v 166.041 -150.34 0.118 -v 165.059 -149.568 0.007 -v -138.746 -155.495 4.289 -v -138.651 -151.53 0.525 -v -163.876 -148.735 0.006 -v -175.325 121.3 2.012 -v -173.913 123.669 2.022 -v -175.06 124.819 4.288 -v -169.54 129.422 3.214 -v -169.031 128.353 2.182 -v -172.253 122.015 0.524 -v -167.946 127.25 0.86 -v -165.659 124.747 0.029 -v -163.436 122.432 0.002 -v -170.102 130.643 6.56 -v -169.945 130.728 6.681 -v -169.147 129.358 3.3 -v -167.676 127.336 1.1 -v -165.487 124.938 0.284 -v -163.441 122.885 0.264 -v -157.424 128.52 0.024 -v -108.517 123.577 0 -v -109.416 124.475 0.213 -v -160.114 130.86 0.226 -v -162.476 133.265 1.082 -v -162.52 132.973 1.282 -v -164.538 134.445 3.617 -v -164.494 134.813 3.569 -v -163.261 134.107 2.178 -v -158.505 137.8 1.294 -v -157.75 139.363 1.454 -v -160.69 137.948 2.859 -v -159.487 140.08 3.086 -v -158.836 142.373 2.852 -v -158.083 154.509 2.022 -v -157.181 141.003 1.294 -v -155.385 154.509 4.872 -v -156.51 154.509 6.436 -v -155.783 141.445 5.309 -v -149.916 140.804 6.354 -v -156.46 141.284 6.36 -v -156.95 141.262 8.332 -v -157.59 141.603 9.923 -v -156.987 141.616 9.2 -v -157.334 140.816 15.785 -v -149.287 140.164 18.305 -v -155.802 140.546 18.328 -v -149.178 139.721 18.88 -v -142.42 140.381 18.862 -v -135.411 141.912 18.974 -v -135.595 140.012 18.964 -v -134.681 139.753 18.926 -v -133.939 143.392 18.996 -v -134.57 142.962 18.926 -v -135.618 142.282 18.722 -v -136.074 142.399 18.304 -v -142.666 140.774 18.29 -v -143.205 141.346 6.325 -v -149.921 141.077 5.244 -v -143.317 141.595 5.244 -v -137.52 143.418 4.503 -v -137.112 143.86 4.33 -v -137.767 144.739 3.81 -v -136.785 144.616 4.443 -v -140.255 154.509 5.244 -v -136.248 144.513 5.083 -v -136.411 143.809 5.012 -v -135.885 144.222 5.957 -v -135.992 144.844 6.032 -v -139.96 154.509 6.342 -v -135.275 154.509 6.342 -v -134.985 154.509 5.244 -v -134.271 154.509 4.322 -v -131.762 146.715 5.23 -v -131.403 146.337 5.07 -v -130.927 146.075 5.012 -v -131.078 145.674 5.941 -v -130.473 145.583 5.965 -v -130.393 145.967 5.07 -v -129.874 146.032 5.23 -v -129.863 146.574 4.504 -v -125.851 148.409 5.244 -v -129.877 145.74 6.05 -v -125.657 148.208 6.365 -v -125.286 147.685 18.296 -v -121.751 151.165 6.342 -v -121.925 151.373 5.244 -v -118.307 154.509 5.773 -v -118.84 154.509 4.914 -v -118.15 149.432 18.307 -v -119.135 147.688 6.261 -v -124.133 143.72 5.244 -v -123.78 143.163 4.322 -v -129.332 140.391 4.641 -v -128.78 140.002 4.053 -v -128.156 139.295 3.62 -v -130.112 140.044 5.44 -v -130.232 140.277 6.318 -v -129.899 140.799 6.327 -v -130.835 140.808 18.32 -v -131.258 140.562 18.725 -v -131.951 139.199 18.998 -v -133.057 -126.758 19 -v -134.835 -126.373 6.32 -v -135.174 -126.146 4.998 -v -137.994 -129.687 5.19 -v -138.128 -130.108 5.881 -v -137.652 -129.742 5.996 -v -138.04 -131.01 16.208 -v -138.517 -131.647 16.827 -v -139.248 -132.554 17.015 -v -139.323 -132.869 16.998 -v -138.425 -135.051 18.588 -v -138.305 -135.357 18.355 -v -138.058 -135.554 18.272 -v -137.834 -135.489 18.433 -v -138.373 -135.487 16.976 -v -137.98 -135.749 16.713 -v -137.63 -135.52 18.034 -v -136.928 -135.657 6.234 -v -136.681 -135.78 5.236 -v -136.274 -136.609 4.285 -v -136.935 -136.369 5.172 -v -135.286 -136.653 3.707 -v -134.104 -136.922 3.498 -v -1.115 -16.822 3.498 -v -1.004 -16.557 3.574 -v 132.948 -147.739 3.498 -v 134.057 -147.19 3.712 -v 135.013 -147.18 4.322 -v 134.377 -141.76 3.712 -v 134.029 -136.849 3.498 -v 1.68 -16.249 3.498 -v 1.413 -16.139 3.575 -v 1.56 -8.91 3.508 -v 1.351 -8.976 3.632 -v 1.249 -15.918 3.825 -v 1.028 -16.716 3.501 -v 0.96 -16.495 3.632 -v 0.903 -16.354 3.857 -v -0.776 -16.392 3.828 -v -1.013 -16.304 3.842 -v -1.25 -15.86 3.834 -v -0.865 -9.373 10.16 -v -1.159 -8.93 3.857 -v -0.906 -8.724 3.857 -v -0.963 -8.585 3.632 -v 0.766 -8.664 3.742 -v 1.422 15.762 3.498 -v 3.009 17.17 3.712 -v 5.341 17.952 3.742 -v 5.792 17.865 3.761 -v 6.25 18.925 4.527 -v 6.19 19.5 5.196 -v 6.283 19.797 6.116 -v 6.8 19.4 6.138 -v 6.62 20.536 18.322 -v 6.973 20.176 18.06 -v 6.155 20.725 18.342 -v 5.831 21.064 18.724 -v 5.85 21.39 18.929 -v 3.178 22.296 18.968 -v 5.989 23.875 18.995 -v 2.993 22.659 18.726 -v 5.629 24.183 18.726 -v 2.887 22.905 18.32 -v 5.437 24.366 18.335 -v -0.025 22.394 18.338 -v -2.925 22.92 18.319 -v -0.001 22.13 18.726 -v -3 22.659 18.726 -v 7.348 26.647 18.308 -v 7.585 26.513 18.726 -v 8.627 29.37 18.726 -v 8.37 29.43 18.337 -v 8.32 29.875 18.052 -v 8.365 32.368 18.332 -v 7.779 33.845 18.052 -v 7.535 33.037 6.344 -v 7.273 32.963 5.244 -v 6.643 32.783 4.322 -v 5.507 35.053 4.322 -v 6.037 35.45 5.244 -v 6.255 35.617 6.342 -v 3.983 37.325 5.244 -v 3.635 36.767 4.322 -v 1.265 37.683 4.322 -v 1.387 38.329 5.244 -v -1.273 37.683 4.322 -v -1.097 36.743 3.712 -v 1.09 36.743 3.712 -v 0.164 35.792 3.497 -v 3.427 34.4 3.497 -v 3.135 35.957 3.712 -v 4.75 34.48 3.712 -v 5.725 32.52 3.712 -v 4.333 28.735 3.498 -v 2.435 26.64 3.497 -v -0.001 26.05 3.498 -v -2.72 26.814 3.497 -v -3.135 35.957 3.712 -v -3.635 36.767 4.322 -v -1.393 38.329 5.244 -v -3.985 37.325 5.244 -v -1.483 38.566 6.283 -v -4.264 37.499 6.502 -v -6.255 35.617 6.342 -v -5.453 37.395 18.301 -v -2.895 38.88 18.325 -v -5.635 37.607 18.726 -v -3 39.125 18.726 -v -3.18 39.494 18.968 -v -1.616 41.605 18.968 -v -5.553 40.562 18.929 -v -5.523 40.887 18.723 -v -5.838 41.224 18.352 -v -5.967 42.166 6.1 -v -5.28 41.998 6.126 -v -5.249 42.27 5.265 -v -1.631 42.949 6.342 -v -1.647 42.285 18.313 -v 1.66 42.283 18.304 -v 1.62 42.017 18.726 -v 5.303 41.2 18.319 -v 1.629 42.949 6.342 -v 5.29 42.002 6.132 -v 5.824 41.221 18.35 -v 5.498 40.898 18.714 -v 6.656 41.31 18.735 -v 6.878 41.081 18.93 -v 7.111 40.79 18.998 -v 8.039 40.14 18.998 -v 85.2 139.53 18.987 -v 86.362 139.125 18.998 -v 72.218 139.127 19.012 -v 96.703 154.509 18.943 -v 87.054 141.925 18.98 -v 95.86 154.509 18.05 -v 96.255 154.509 18.726 -v 6.723 41.777 18.369 -v 6.474 42.583 6.121 -v 6.29 41.421 18.313 -v 5.966 42.167 6.092 -v 65.483 117.12 6.34 -v 6.331 42.779 5.3 -v 65.298 117.07 5.664 -v 6.066 43.23 4.527 -v 64.85 117.29 4.719 -v 64.063 116.938 4.264 -v 5.716 43.063 4.42 -v 62.844 116.849 3.713 -v 61.21 116.55 3.498 -v 4.8 45.26 3.498 -v 4.971 43.976 3.746 -v 5.435 44.117 3.758 -v 5.867 42.459 5.196 -v 5.23 42.276 5.264 -v 1.663 43.215 5.244 -v -1.665 43.215 5.244 -v 1.75 43.87 4.322 -v -1.757 43.87 4.322 -v 1.883 44.813 3.712 -v -1.883 44.813 3.712 -v -4.963 43.978 3.746 -v -5.166 42.853 4.472 -v -5.867 42.459 5.196 -v 5.146 42.845 4.482 -v 11.112 116.563 3.498 -v 63.292 118.552 4.27 -v 63.56 118.16 4.027 -v 63.999 118.842 4.606 -v 64.487 118.165 4.364 -v 63.937 117.443 4.02 -v 65.507 118.279 5.41 -v 65.229 118.845 5.41 -v 65.473 118.98 6.244 -v 65.639 117.643 5.713 -v 66.882 118.83 12.574 -v 62.573 117.463 3.648 -v 95.972 154.509 18.419 -v 98.946 154.509 18.956 -v 99.734 154.509 18.355 -v 79.279 128.162 13.336 -v 74.267 121.846 13.42 -v 78.852 127.015 12.482 -v 79.09 127.33 12.167 -v 79.779 127.965 6.278 -v 80.136 128.578 5.88 -v 80.13 128.193 5.354 -v 80.143 127.449 5.226 -v 9.072 39.864 18.057 -v 8.81 39.47 18.318 -v 8.636 39.778 18.716 -v 8.452 38.577 18.722 -v 8.128 38.525 18.928 -v 7.753 38.473 18.998 -v 5.867 37.988 18.985 -v 7.922 35.529 18.973 -v 9.948 35.217 18.961 -v 10.712 32.511 18.968 -v 8.8 38.439 18.324 -v 8.715 38.972 18.338 -v 9.602 39.285 6.097 -v 9.884 39.869 6.116 -v 74.445 121.471 6.343 -v 9.909 39.26 5.196 -v 9.866 38.592 5.271 -v 11.51 35.6 5.244 -v 10.454 38.647 4.474 -v 12.117 35.849 4.322 -v 11.554 38.962 3.728 -v 12.999 36.209 3.712 -v 14.752 34.602 3.498 -v 129.228 119.974 4.168 -v 130.058 120.685 5.25 -v 13.1 23.293 3.498 -v 11.846 22.896 3.76 -v 128.043 -116.949 4.444 -v 127.625 -116.947 4.733 -v 11.806 23.397 3.748 -v 10.693 22.667 4.526 -v 128.06 -117.907 5.353 -v 128.873 -118.04 5.254 -v 128.273 -118.327 6.25 -v 127.687 -117.907 6.34 -v 128.894 -120.088 18.364 -v 128.235 -119.653 18.419 -v 128.753 -120.483 18.87 -v 129.696 -120.616 18.874 -v 130.579 -120.285 18.875 -v 130.213 -121.077 18.997 -v 131.93 -119.379 18.998 -v 133.067 -126.58 18.998 -v 133.428 -126.498 18.929 -v 131.577 -118.634 18.93 -v 131.197 -119.557 18.87 -v 129.628 -120.216 18.425 -v 131.261 -118.631 18.726 -v 131.038 -118.634 18.42 -v 131.945 139.825 18.998 -v 87.683 139.953 19.02 -v 87.696 139.075 19.015 -v 87.301 140.3 18.998 -v 8.353 39.934 18.929 -v 86.55 138.83 19.016 -v 87.44 138.832 19.015 -v 86.616 132.229 19.012 -v 86.461 132.223 19.137 -v 86.43 138.786 19.18 -v 86.284 138.952 19.135 -v 72.187 138.977 19.142 -v 72.061 139.12 19.14 -v 72.067 139.9 19.129 -v 72.226 139.89 19.01 -v 72.183 140.047 19.15 -v 86.274 140.075 19.14 -v 86.347 139.925 19.008 -v 86.551 140.18 19.02 -v 86.621 146.788 19.01 -v 86.465 146.8 19.133 -v 86.435 140.229 19.18 -v 87.415 146.941 19.142 -v 87.384 146.788 19.013 -v 87.537 146.788 19.137 -v 87.429 147.002 23.312 -v 87.47 147.105 23.465 -v 87.726 146.902 23.49 -v 87.593 146.859 23.313 -v 87.79 140.282 23.49 -v 87.57 140.233 19.184 -v 87.473 140.186 19.035 -v 87.714 140.08 19.192 -v 87.626 140.281 23.367 -v 87.756 140.13 23.348 -v 156.234 140.128 23.355 -v 156.214 140.284 23.488 -v 156.277 146.89 23.489 -v 156.377 140.28 23.36 -v 156.409 146.852 23.314 -v 156.25 140.073 19.186 -v 156.553 140.178 19.017 -v 156.426 140.215 19.18 -v 157.44 140.186 19.011 -v 159.772 139.12 18.975 -v 171.82 139.123 19.022 -v 171.83 139.896 19.026 -v 171.943 139.127 19.175 -v 157.68 139.063 19.015 -v 159.486 138.53 19 -v 159.182 138.222 18.922 -v 163.447 133.956 18.858 -v 163.79 134.253 18.98 -v 164.25 134.726 18.987 -v 161.802 137.69 18.946 -v 159.887 139.47 18.74 -v 156.707 140.605 18.319 -v 157.466 140.512 18.395 -v 160.016 139.693 18.386 -v 161.593 139.54 12.293 -v 160.148 140.427 12.104 -v 160.257 140.551 11.911 -v 160.384 140.727 11.818 -v 159.567 141.28 11.412 -v 158.89 141.397 11.093 -v 157.608 141.585 9.966 -v 158.786 141.205 11.179 -v 157.46 141.458 10.105 -v 158.652 141.078 11.354 -v 157.131 141.27 12 -v 157.304 140.85 15.313 -v 156.948 141.262 8.362 -v 156.986 141.615 9.199 -v 162.654 138.638 12.277 -v 178.146 123.123 12.318 -v 178.435 -135.863 17.756 -v 177.469 -136.742 18.85 -v 177.794 -139.262 18.96 -v 180.454 -142.95 18.841 -v 180.489 -144.6 19.008 -v 181.403 -145.402 18.847 -v 180.53 -148.76 18.999 -v 181.219 -148.987 18.847 -v 178.457 -152.062 19.017 -v 179.935 -151.52 18.842 -v 178.108 -153.36 18.847 -v 176.48 -152.742 18.973 -v 176.257 -152.383 18.726 -v 171.165 -152.356 18.391 -v 179.875 -148.677 18.973 -v 179.231 -143.43 18.968 -v 177.415 -141.43 18.968 -v 175.942 -140.314 18.998 -v 175.607 -140.553 18.937 -v 175.318 -140.76 18.777 -v 175.258 118.414 18.721 -v 175.943 118.44 18.998 -v 169.656 129.932 18.906 -v 167.779 128.824 14.226 -v 167.844 129.077 14.272 -v 167.818 128.611 14.154 -v 167.472 128.92 13.712 -v 163.665 132.731 13.716 -v 163.338 133.083 14.127 -v 159.331 137.415 18.323 -v 163.174 133.546 18.068 -v 163.221 133.688 18.519 -v 159.07 137.918 18.698 -v 157.927 138.396 18.932 -v 157.975 138.082 18.73 -v 150.55 137.812 18.968 -v 150.45 137.407 18.726 -v 143.185 137.897 18.726 -v 143.126 137.635 18.302 -v 156.32 139.068 19.017 -v 131.94 139.202 18.997 -v 87.383 132.223 19.015 -v 86.598 132.075 19.138 -v 86.372 138.736 23.365 -v 86.252 138.885 23.35 -v 87.59 132.173 23.313 -v 87.704 132.121 23.48 -v 87.621 138.73 23.362 -v 87.782 138.736 23.486 -v 156.213 138.774 23.478 -v 156.295 132.12 23.477 -v 156.52 131.903 23.48 -v 157.487 131.896 23.48 -v 157.705 132.13 23.478 -v 157.779 138.732 23.486 -v 171.882 138.797 23.478 -v 157.747 138.887 23.348 -v 157.623 138.736 23.36 -v 157.567 138.802 19.184 -v 157.717 138.933 19.193 -v 157.436 138.832 19.011 -v 157.38 132.225 19.014 -v 157.533 132.22 19.133 -v 157.589 132.174 23.314 -v 157.409 132.074 19.144 -v 156.593 132.076 19.138 -v 156.613 132.232 19.012 -v 156.463 132.219 19.14 -v 156.428 138.792 19.184 -v 156.55 138.818 19.018 -v 156.279 138.944 19.184 -v 87.733 138.944 19.187 -v 87.566 138.796 19.187 -v 87.532 132.222 19.132 -v 87.409 132.073 19.145 -v 87.752 138.888 23.355 -v 156.374 138.739 23.365 -v 156.411 132.153 23.318 -v 156.571 132.018 23.314 -v 157.439 132.014 23.314 -v 156.251 138.895 23.317 -v 171.85 138.92 23.305 -v 172.107 139.02 23.482 -v 171.99 139.073 23.312 -v 171.95 139.885 19.191 -v 171.987 139.962 23.306 -v 172.112 139.988 23.478 -v 157.782 140.285 23.486 -v 157.481 147.12 23.48 -v 156.495 147.174 23.496 -v 156.54 147.007 23.366 -v 157.713 146.897 23.48 -v 157.595 146.854 23.314 -v 157.537 146.792 19.139 -v 157.415 146.94 19.14 -v 157.43 147.002 23.314 -v 156.467 146.802 19.135 -v 156.614 146.79 19.013 -v 157.382 146.786 19.012 -v 157.567 140.236 19.18 -v 157.71 140.084 19.195 -v 157.67 139.948 19.012 -v 171.811 140.046 19.15 -v 171.839 140.099 23.312 -v 171.88 140.218 23.48 -v 157.754 140.134 23.348 -v 157.626 140.273 23.363 -v 156.588 146.95 19.154 -v 171.814 138.974 19.148 -v 86.482 147.176 23.498 -v -72.112 140.245 23.497 -v -86.515 147.13 23.486 -v -87.478 147.103 23.465 -v -87.351 147.259 23.5 -v -156.28 146.91 23.492 -v -156.207 140.284 23.49 -v -156.37 140.242 23.355 -v -156.416 146.853 23.309 -v -156.522 147.115 23.474 -v -157.446 146.993 23.306 -v -157.595 146.859 23.313 -v -157.777 140.28 23.483 -v -171.845 140.097 23.31 -v -171.988 139.97 23.314 -v -171.935 139.9 19.133 -v -171.938 139.123 19.14 -v -171.815 138.975 19.147 -v -157.72 138.935 19.19 -v -157.611 138.728 23.31 -v -157.416 132.076 19.142 -v -156.407 132.167 23.313 -v -156.379 138.726 23.363 -v -156.452 132.228 19.189 -v -156.442 138.794 19.13 -v -156.572 132.223 19.026 -v -156.598 138.821 19.008 -v -149.26 139.201 18.998 -v -156.317 139.06 19.025 -v -156.253 138.893 23.33 -v -87.758 138.89 23.357 -v -87.622 138.731 23.36 -v -87.405 132.075 19.14 -v -87.539 132.224 19.137 -v -86.571 132.018 23.31 -v -86.406 132.167 23.316 -v -86.379 138.726 23.363 -v -86.225 138.734 23.484 -v -86.255 138.888 23.345 -v -72.113 138.786 23.495 -v -72.158 138.927 23.298 -v -72.003 139.055 23.356 -v 86.289 146.89 23.479 -v 86.376 140.285 23.36 -v 86.407 146.85 23.317 -v 86.24 140.133 23.354 -v 86.535 147.006 23.367 -v 86.587 146.95 19.155 -v -87.444 146.996 23.31 -v -87.592 146.864 23.314 -v -87.727 146.904 23.49 -v -87.79 140.284 23.489 -v -156.199 140.125 23.356 -v -156.436 140.227 19.188 -v -156.465 146.787 19.136 -v -157.448 140.17 19.012 -v -157.431 146.795 19.026 -v -157.574 140.23 19.187 -v -157.553 146.785 19.19 -v -157.412 146.95 19.153 -v -156.608 146.848 19.03 -v -156.576 146.946 19.175 -v -156.547 147 23.312 -v -157.624 140.289 23.363 -v -157.755 140.132 23.348 -v -171.813 140.048 19.15 -v -171.785 139.126 19.012 -v -157.604 139.052 19.012 -v -159.106 139.1 18.998 -v -157.568 138.797 19.188 -v -157.539 132.23 19.137 -v -156.593 132.074 19.145 -v -157.383 132.23 19.011 -v -157.432 138.804 19.011 -v -150.273 137.802 18.961 -v -143.127 138.328 18.973 -v -87.69 139.072 19.016 -v -156.283 138.944 19.185 -v -87.74 138.945 19.187 -v -87.566 138.795 19.18 -v -87.384 132.229 19.013 -v -86.55 138.845 19.015 -v -86.571 132.221 19.026 -v -86.426 138.794 19.192 -v -86.45 132.231 19.19 -v -86.286 138.941 19.188 -v -72.007 139.943 23.317 -v -72.056 139.123 19.176 -v -72.064 139.896 19.139 -v -71.876 140.004 23.494 -v -86.22 140.243 23.475 -v -86.278 146.91 23.494 -v -86.415 146.853 23.308 -v -86.551 147.001 23.312 -v -87.412 146.948 19.15 -v -87.382 146.791 19.013 -v -87.54 146.794 19.137 -v -87.624 140.287 23.36 -v -87.767 140.128 23.356 -v -156.261 140.076 19.19 -v -156.554 140.176 19.018 -v -156.298 139.948 19.019 -v -87.678 139.956 19.02 -v -87.72 140.079 19.191 -v -131.944 139.823 18.998 -v -137.787 139.825 18.998 -v -142.45 139.828 18.998 -v -157.674 139.947 19.011 -v -157.71 140.087 19.201 -v -171.776 139.887 19.01 -v -159.838 139.285 18.901 -v -161.672 137.681 18.971 -v -162.03 137.917 18.74 -v -164.585 135.063 18.871 -v -164.84 135.303 18.564 -v -164.996 135.377 18.122 -v -165.619 135.345 14.151 -v -165.648 135.113 14.246 -v -164.972 135.085 18.41 -v -164.896 134.848 18.4 -v -164.658 134.745 18.756 -v -164.268 134.733 18.982 -v -163.782 134.254 18.983 -v -159.197 138.342 18.97 -v -157.924 138.386 18.929 -v -150.451 137.407 18.726 -v -143.185 137.897 18.726 -v -143.16 137.627 18.296 -v -135.728 139.317 18.336 -v -135.469 139.622 18.73 -v -135.212 139.288 18.322 -v -134.717 139.103 18.365 -v -134.322 139.145 18.726 -v -134.332 138.742 18.347 -v -133.883 139.115 18.93 -v -133.748 138.136 18.726 -v -133.425 138.167 18.93 -v -134.036 139.805 18.998 -v -140.557 139.199 18.998 -v -133.521 139.199 18.998 -v -87.443 138.836 19.015 -v -86.322 139.085 19.003 -v -72.19 138.973 19.147 -v -72.183 139.122 19.021 -v -85.273 139.53 18.995 -v -8 40.088 18.998 -v -7.15 40.836 18.998 -v -6.907 41.113 18.93 -v -87.021 141.741 18.99 -v -72.22 139.893 19.012 -v -72.188 140.047 19.151 -v -72.149 140.098 23.31 -v -86.258 140.131 23.318 -v -86.378 140.285 23.362 -v -86.463 146.785 19.136 -v -86.588 146.945 19.146 -v -86.618 146.786 19.011 -v -86.553 140.184 19.021 -v -87.454 140.174 19.016 -v -87.57 140.238 19.18 -v -87.315 140.307 18.997 -v -96.69 154.509 18.94 -v -96.257 154.509 18.726 -v -9.055 39.953 18.384 -v -133.743 -126.172 18.728 -v -134.055 -126.146 18.05 -v -134.665 -125.675 6.343 -v -135.051 -125.606 5.022 -v -136.062 -125.655 3.962 -v -138.12 -128.956 4.39 -v -138.299 -128.004 3.815 -v -138.723 -128.214 3.853 -v -138.797 -128.99 4.236 -v -138.886 -129.767 4.914 -v -138.69 -130.261 5.833 -v -138.556 -131.265 16.352 -v -139.083 -131.303 16.351 -v -139.415 -131.504 16.71 -v -139.573 -131.16 16.335 -v -139.647 -131.789 16.933 -v -140.454 -131.469 16.98 -v -141.384 -137.228 16.997 -v -140.94 -137.943 16.926 -v -138.214 -135.65 16.897 -v -137.71 -135.718 16.34 -v -137.901 -136.45 16.317 -v -138.163 -136.444 16.72 -v -138.573 -136.474 16.968 -v -137.456 -142.322 16.968 -v -137.027 -142.387 16.726 -v -136.758 -142.346 16.3 -v -137.226 -137.04 6.225 -v -137.243 -136.302 6.204 -v -136.954 -137.013 5.237 -v -135.98 -141.969 5.244 -v -135.325 -141.883 4.322 -v -135.013 -147.18 4.322 -v -133.848 -148.828 3.62 -v -134.383 -141.76 3.712 -v -132.945 -147.74 3.498 -v 133.827 -148.804 3.614 -v 134.447 -149.574 3.898 -v 135.673 -147.177 5.244 -v 135.323 -141.883 4.322 -v 135.98 -141.969 5.244 -v 136.972 -136.49 5.183 -v 137.239 -136.302 6.196 -v 136.679 -135.784 5.238 -v 136.25 -136.598 4.272 -v 135.29 -136.678 3.704 -v 5.216 16.673 3.498 -v 136.074 -136.079 4.323 -v 6.661 19.171 5.261 -v 136.92 -135.652 6.226 -v 137.572 -135.34 18.394 -v 7.038 20.236 18.42 -v 6.973 20.631 18.717 -v 7.444 21.149 18.998 -v 5.862 21.766 18.998 -v 138.168 -134.587 18.997 -v 7.203 20.856 18.927 -v 137.936 -134.973 18.91 -v 138.776 -133.187 18.95 -v 138.929 -133.279 18.837 -v 127.98 -120.724 18.998 -v 127.82 -120 18.93 -v 8.578 22.12 18.931 -v 8.246 21.95 18.998 -v 8.004 23.668 18.998 -v 7.983 26.348 18.976 -v 10.36 28.546 18.999 -v 9.034 29.346 18.968 -v 9.018 32.532 18.968 -v 11.02 29.661 18.862 -v 11.12 32.51 18.726 -v 10.33 35.32 18.726 -v 10.583 35.415 18.314 -v 9.883 37.976 6.158 -v 9.589 38.646 6.093 -v 11.257 35.495 6.342 -v 12.045 32.584 6.331 -v 12.315 32.617 5.244 -v 12.965 32.705 4.322 -v 13.015 29.453 4.322 -v 13.96 29.347 3.712 -v 13.913 32.84 3.712 -v 14.945 27.89 3.498 -v 13.15 25.949 3.712 -v 12.257 26.285 4.322 -v 12.359 29.527 5.244 -v 11.637 26.517 5.244 -v 12.089 29.538 6.328 -v 11.427 29.538 18.304 -v 11.383 26.615 6.342 -v 10.686 26.66 18.344 -v 9.022 23.621 18.319 -v 9.81 23.474 6.123 -v 8.942 23.11 18.337 -v 8.69 23.505 18.715 -v 8.867 22.27 18.725 -v 9.037 22.611 18.314 -v 9.275 22.107 18.421 -v 128.298 -119.59 18.051 -v 9.32 22.189 18.064 -v 10.131 22.211 6.117 -v 9.84 22.777 6.09 -v 10.358 22.295 5.307 -v 128.064 -119.793 18.726 -v 127.68 -117.757 5.756 -v 10.14 22.815 5.196 -v 10.665 23.45 4.484 -v 10.092 23.488 5.266 -v 8.374 23.582 18.926 -v 10.336 26.86 18.86 -v 11.393 32.536 18.31 -v 8.627 32.413 18.726 -v 7.585 35.27 18.726 -v 7.377 35.11 18.332 -v 5.629 37.607 18.726 -v 5.465 37.388 18.307 -v 4.22 37.515 6.44 -v 1.496 38.558 6.269 -v 2.9 38.88 18.323 -v 2.993 39.125 18.726 -v -0.001 39.653 18.726 -v 0.02 39.387 18.323 -v 2.003 38.989 18.052 -v -0.001 38.73 6.342 -v -2.005 38.989 18.052 -v -0.053 40.076 18.973 -v 3.09 39.537 18.973 -v 5.482 40.194 18.998 -v 1.515 41.635 18.961 -v -1.621 42.017 18.726 -v -5.309 41.198 18.322 -v 5.489 40.574 18.926 -v 133.74 -126.168 18.725 -v 133.74 138.139 18.725 -v 133.054 138.267 18.998 -v 133.43 138.218 18.93 -v 134.341 138.755 18.347 -v 135.37 138.04 4.57 -v 134.557 137.98 11.36 -v 134.992 137.612 5.276 -v 136.141 138.407 5.646 -v 136.323 138.743 11.398 -v 140.995 137.33 6.342 -v 142.971 137.073 6.342 -v 135.597 137.716 4.32 -v 135.05 -125.603 5.016 -v 135.652 -125.494 4.383 -v 135.182 -126.152 4.989 -v 134.808 -126.35 6.345 -v 136.062 -125.645 3.96 -v 137.505 -125.188 3.503 -v 138.223 -127.997 3.84 -v 138.75 -127.986 3.761 -v 138.098 -128.967 4.412 -v 139.25 -130.2 5.836 -v 138.677 -130.262 5.842 -v 143.312 -125.364 16.286 -v 140.04 -130.83 16.331 -v 147.09 -120.866 16.317 -v 151.5 -117.021 16.293 -v 151.623 -117.269 16.726 -v 156.559 -114.187 16.726 -v 156.48 -113.926 16.304 -v 162.003 -111.033 6.342 -v 167.725 -109.403 5.244 -v 172.843 -108.72 4.9 -v 172.31 -108.408 4.392 -v 167.623 -108.753 4.322 -v 171.098 -107.574 3.808 -v 156.649 -114.62 16.969 -v 151.785 -117.673 16.968 -v 147.24 -121.093 16.726 -v 147.465 -121.464 16.968 -v 152.82 -119.212 16.968 -v 148.404 -123.16 16.968 -v 153.153 -119.487 16.726 -v 148.779 -123.375 16.726 -v 153.354 -119.674 16.295 -v 149.003 -123.522 16.326 -v 149.371 -123.937 6.342 -v 145.918 -128.256 6.339 -v 146.14 -128.407 5.244 -v 143.35 -132.86 6.057 -v 143.218 -133.482 5.985 -v 143.348 -134.084 5.933 -v 143.706 -134.59 5.956 -v 144.238 -134.91 6.029 -v 144.447 -134.715 5.242 -v 164.508 -141.271 5.303 -v 164.408 -140.725 4.513 -v 144.033 -134.38 5.07 -v 144.59 -134.154 4.438 -v 145.417 -133.383 3.748 -v 144.238 -133.409 4.332 -v 143.737 -133.909 5.012 -v 143.601 -133.375 5.07 -v 143.635 -132.847 5.24 -v 144.181 -132.801 4.514 -v 146.689 -128.775 4.322 -v 149.571 -124.12 5.244 -v 150.047 -124.577 4.322 -v 153.661 -120.467 5.244 -v 153.49 -120.257 6.341 -v 158.185 -117.294 6.356 -v 158.3 -117.54 5.244 -v 163.275 -115.169 6.342 -v 163.363 -115.43 5.244 -v 158.601 -118.129 4.322 -v 154.055 -120.997 4.322 -v 154.633 -121.759 3.712 -v 150.74 -125.233 3.712 -v 147.48 -129.305 3.712 -v 150.37 -127.2 3.498 -v 146.78 -132.623 3.498 -v 145.184 -132.862 3.801 -v 164.118 -138.301 3.498 -v 164.464 -139.589 3.745 -v 166.536 -136.184 3.498 -v 157.71 -120.897 3.498 -v 159.043 -118.973 3.712 -v 163.857 -116.963 3.712 -v 163.561 -116.057 4.322 -v 168.797 -114.833 4.322 -v 172.27 -114.457 4.395 -v 172.849 -136.637 4.906 -v 173.431 -136.951 5.497 -v 172.945 -137.128 6.145 -v 171.215 -137.117 5.244 -v 171.277 -137.383 6.342 -v 169.059 -137.899 5.244 -v 171.063 -136.477 4.322 -v 172.327 -136.356 4.403 -v 170.827 -135.518 3.698 -v 168.763 -137.307 4.322 -v 168.337 -136.457 3.712 -v 166.715 -138.645 4.322 -v 166.105 -137.913 3.712 -v 165.058 -140.52 4.478 -v 164.133 -141.434 6.15 -v 143.502 -135.284 16.33 -v 143.028 -135.02 16.32 -v 143.01 -135.364 16.739 -v 142.816 -135.698 16.961 -v 164.544 -142.737 16.925 -v 165.519 -143.184 16.997 -v 141.437 -137.257 16.997 -v 164.016 -144.739 16.961 -v 165.22 -145.724 16.998 -v 164.86 -145.857 16.926 -v 164.545 -145.934 16.715 -v 165.231 -148.455 16.968 -v 166.206 -151.075 16.998 -v 165.78 -150.7 16.927 -v 165.614 -151.785 16.935 -v 164.02 -152.368 16.219 -v 164.497 -152.181 16.34 -v 163.955 -151.909 10.422 -v 140.328 -153.049 16.193 -v 140.117 -153.08 16.667 -v 139.77 -148.524 16.288 -v 139.39 -148.657 16.833 -v 139.597 -153.11 16.976 -v 137.823 -153.16 16.985 -v 137.305 -153.164 16.721 -v 137.022 -153.145 16.244 -v 136.51 -147.887 16.33 -v -137.03 -153.146 16.273 -v -137.33 -153.165 16.755 -v -137.84 -153.16 16.99 -v -139.634 -153.11 16.965 -v -164.02 -152.367 16.208 -v -165.006 -152.38 16.873 -v -171.133 -152.27 18.053 -v -136.359 -153.345 18.648 -v -136.403 -153.575 18.962 -v -125.595 -153.737 22.268 -v -125.626 -154.136 22.505 -v -125.07 -153.447 21.917 -v -136.997 -153.239 18.08 -v 119.996 -153.452 22.056 -v 128.91 -153.454 21.18 -v 120 -153.539 22.418 -v 128.957 -153.699 21.54 -v 129.033 -154.09 21.763 -v 119.995 -153.764 22.726 -v 119.897 -154.128 22.95 -v 127.325 -154.397 22.03 -v 134.367 -154.29 19.89 -v 131.969 -155.145 20.876 -v 134.571 -155.091 19.791 -v 138.32 -154.154 19.008 -v 136.37 -155.064 19.229 -v 136.351 -155.587 19.152 -v 138.493 -156.365 18.404 -v 136.303 -156.09 18.9 -v 135.784 -156.443 18.664 -v 130.803 -156.462 20.71 -v 127.277 -156.247 21.88 -v 130.887 -155.689 21.156 -v 127.325 -155.74 22.128 -v 123.677 -155.77 22.72 -v 123.383 -156.548 22.29 -v 127.195 -156.649 21.478 -v -120.057 -156.578 22.4 -v 119.987 -156.576 22.405 -v -123.477 -156.547 22.28 -v -122.558 -156.931 21.7 -v -138.748 -156.16 6.996 -v -129.73 -156.872 20.351 -v -133.853 -156.775 18.76 -v -137.34 -156.737 17.773 -v -173.74 -155.159 6.992 -v -173.748 -154.746 4.907 -v -176.485 -154.58 6.835 -v -176.335 -154.233 4.924 -v -172.53 -153.507 2.598 -v -169.329 -153.242 2.258 -v -168.126 -152.298 1.323 -v -165.871 -151.787 1.03 -v -164.747 -150.915 0.578 -v -170.509 -12.565 0 -v -173.24 120.267 0.525 -v -176.873 121.777 4.264 -v -177.52 121.979 6.965 -v -177.615 121.955 7.808 -v -175.593 125.332 7.845 -v -175.535 125.29 6.992 -v -170.19 130.63 6.97 -v -162.713 138.11 6.992 -v -164.665 135.01 4.332 -v -161.94 138.109 4.596 -v -165.636 135.106 6.764 -v -165.577 134.738 6.512 -v -169.616 130.628 6.503 -v -167.173 128.197 6.493 -v -163.106 132.245 6.487 -v -172.1 123.869 8.238 -v -171.78 123.549 6.404 -v -171.001 122.77 4.872 -v -166.577 127.193 4.872 -v -169.875 121.645 3.856 -v -165.581 125.945 3.856 -v -169.44 119.176 3.5 -v -164.315 124.587 3.498 -v -163.441 123.719 3.498 -v -157.805 128.526 0.266 -v -158.637 128.523 3.498 -v -159.511 129.395 3.498 -v -162.111 131.657 4.872 -v -160.865 130.663 3.856 -v -156.53 135.678 4.08 -v -152.465 135.613 4.322 -v -152.507 134.66 3.712 -v -146.617 135.665 4.322 -v -146.553 134.715 3.712 -v -140.823 136.417 4.322 -v -140.643 135.48 3.712 -v -140.95 137.063 5.244 -v -136.13 138.407 5.689 -v -135.378 138.044 4.568 -v -136.33 138.743 11.398 -v -142.973 137.073 6.342 -v -140.997 137.33 6.342 -v -146.665 136.325 5.244 -v -146.685 136.593 6.342 -v -152.431 136.267 5.244 -v -157.243 136.568 4.9 -v -158.057 137.137 6.21 -v -158.417 137.134 6.96 -v -159.126 136.836 8.163 -v -158.733 137.764 18.302 -v -159.34 137.417 18.34 -v -163.335 133.089 14.137 -v -163.162 133.555 18.072 -v -163.328 133.596 18.466 -v -163.65 133.603 18.31 -v -163.561 133.043 14.217 -v -163.823 133.116 14.25 -v -165.81 134.725 14.021 -v -163.995 132.902 14.018 -v -167.628 129.24 14.013 -v -167.513 129.062 13.893 -v -167.844 129.063 14.271 -v -168.286 128.8 18.336 -v -167.781 128.851 14.233 -v -167.813 128.612 14.12 -v -167.46 128.935 13.704 -v -163.812 132.785 13.913 -v -163.65 132.744 13.72 -v -168.29 128.432 18.112 -v -168.657 129.078 18.794 -v -168.437 128.52 18.562 -v -168.704 128.748 18.873 -v -172.658 124.09 18.325 -v -174.635 120.784 18.303 -v -174.09 120.551 8.22 -v -173.651 120.419 6.39 -v -174.437 118.218 8.239 -v -173.985 118.232 6.404 -v -172.6 120.097 4.866 -v -171.246 119.183 3.848 -v -169.446 -106.384 3.498 -v -167.48 -107.81 3.712 -v -170.823 -107.39 3.694 -v -171.271 -107.697 3.899 -v -167.625 -108.753 4.322 -v -172.323 -108.405 4.396 -v -167.727 -109.403 5.244 -v -172.923 -109.224 6.123 -v -173.631 -109.325 10.306 -v -174.078 -108.628 6.607 -v -174.336 -109.427 16.314 -v -173.822 -109.72 16.324 -v -167.514 -110.266 16.304 -v -167.745 -109.67 6.326 -v -161.927 -110.777 5.244 -v -161.723 -110.145 4.322 -v -161.433 -109.239 3.712 -v -161.093 -108.18 3.498 -v -146.475 133.609 3.498 -v -155.175 133.662 3.498 -v -152.805 -111.781 3.498 -v -143.295 -119.598 3.498 -v -136.54 136.453 3.718 -v -134.771 137.39 5.706 -v -134.095 138.3 18.32 -v -134.053 137.78 18.052 -v -133.96 137.777 18.422 -v -133.054 138.197 18.998 -v -136.575 -125.328 3.8 -v -137.508 -125.193 3.503 -v -138.564 -126.215 3.498 -v -139.086 -127.937 3.798 -v -139.513 -128.862 4.423 -v -139.759 -129.501 5.17 -v -139.265 -130.196 5.842 -v -139.768 -129.928 5.927 -v -140.044 -130.832 16.342 -v -143.123 -124.709 6.353 -v -143.312 -125.382 16.301 -v -147.022 -120.942 16.326 -v -143.521 -125.557 16.726 -v -140.251 -131.007 16.734 -v -141.8 -133.33 16.968 -v -142.036 -134.72 16.926 -v -141.99 -135.493 16.996 -v -142.857 -135.611 16.924 -v -164.52 -142.83 16.965 -v -167.22 -144.789 16.986 -v -166.044 -142.844 16.998 -v -165.85 -142.516 16.925 -v -165.681 -142.24 16.714 -v -165.703 -141.885 16.323 -v -168.057 -139.49 16.34 -v -169.29 -138.78 16.052 -v -170.582 -138.147 16.306 -v -168.211 -139.699 16.726 -v -170.653 -138.413 16.726 -v -168.456 -139.977 16.95 -v -170.844 -138.79 16.968 -v -174.073 -138.138 16.929 -v -174.185 -137.768 16.72 -v -174.902 -138.203 17 -v -174.896 -140.258 16.993 -v -172.689 -140.3 16.965 -v -170.348 -141.036 16.973 -v -170.511 -141.437 16.726 -v -172.715 -140.709 16.726 -v -170.632 -141.674 16.327 -v -172.736 -140.986 16.284 -v -168.941 -143.107 16.301 -v -167.893 -145.072 16.313 -v -168.735 -142.935 16.726 -v -167.643 -144.983 16.726 -v -168.448 -142.657 16.96 -v -166.972 -147.28 16.968 -v -167.391 -147.293 16.726 -v -168.017 -149.525 16.726 -v -168.266 -149.416 16.295 -v -167.664 -147.287 16.298 -v -168.037 -147.453 10 -v -168.973 -149.919 10 -v -169.618 -151.189 16.329 -v -171.035 -152.188 16.471 -v -169.3 -151.484 16.875 -v -167.598 -149.675 16.977 -v -165.208 -148.288 16.968 -v -164.995 -145.057 16.996 -v -163.975 -144.821 16.924 -v -142.221 -137.663 16.931 -v -142.185 -137.977 16.74 -v -141.125 -138.21 16.72 -v -141.058 -138.599 16.332 -v -140.715 -138.98 16.335 -v -140.358 -139.062 16.724 -v -139.983 -138.902 16.964 -v -138.697 -146.654 16.998 -v -137.192 -147.825 16.97 -v -139.354 -148.619 16.853 -v -140.139 -153.079 16.64 -v -140.337 -153.048 16.168 -v -163.09 -151.982 8.229 -v -163.955 -151.909 10.422 -v -164.549 -152.153 16.357 -v -164.94 -151.783 16.385 -v -165.303 -151.604 16.692 -v -165.155 -151.3 16.352 -v -165.693 -151.61 16.937 -v -165.669 -152.369 16.998 -v -169.375 -152.258 16.999 -v -165.928 -150.867 16.97 -v -170.356 -152.223 16.84 -v -171.44 -152.234 16.05 -v -173.798 -152.753 18.31 -v -171.146 -152.354 18.398 -v -171.082 -152.6 18.737 -v -137.624 -153.343 18.482 -v -137.926 -153.707 18.87 -v -136.562 -153.942 19.144 -v -134.37 -154.29 19.89 -v -127.404 -155.214 22.175 -v -130.555 -155.175 21.36 -v -127.337 -155.217 22.206 -v -127.327 -155.74 22.128 -v -127.251 -155.219 22.216 -v -127.165 -155.219 22.224 -v -120.5 -155.255 23 -v -126.633 -155.223 22.36 -v -122.557 -155.25 22.904 -v -126.9 -155.22 22.292 -v 119.955 -155.98 22.843 -v 120.414 -155.248 23 -v 124.04 -155.247 22.764 -v -120.001 -154.448 23.002 -v -119.996 -154.077 22.929 -v -120 -153.764 22.726 -v -119.999 -153.539 22.418 -v 125.505 -155.233 22.506 -v 126.967 -155.219 22.246 -v 127.336 -155.217 22.18 -v 127.335 -155.217 22.206 -v 127.483 -155.215 22.156 -v 127.665 -155.213 22.124 -v 128.029 -155.209 22.06 -v 127.442 -155.216 22.171 -v 127.49 -155.215 22.154 -v 127.495 -155.215 22.152 -v 130.839 -155.155 21.05 -v 129.161 -155.185 21.604 -v 134.196 -155.821 19.786 -v 127.155 -155.219 22.226 -v 126.973 -155.22 22.244 -v 126.971 -155.22 22.246 -v -119.968 -155.972 22.846 -v -123.677 -155.77 22.72 -v -127.28 -156.247 21.88 -v -130.89 -155.689 21.156 -v -131.015 -156.456 20.64 -v -134.119 -156.413 19.354 -v -134.285 -155.813 19.756 -v -136.31 -156.09 18.9 -v -136.36 -155.587 19.152 -v -138.51 -155.783 18.838 -v -136.227 -156.495 18.498 -v -138.506 -156.367 18.401 -v -173.75 -155.369 18.4 -v -173.76 -155.723 17.756 -v -175.671 -155.09 18.4 -v -175.07 -154.62 18.85 -v -174.94 -153.919 18.998 -v -173.826 -153.412 18.967 -v -176.564 -153.21 19.014 -v -176.296 -152.528 18.861 -v -173.801 -153.019 18.726 -v -176.152 -152.136 18.315 -v -178.06 -150.636 18.313 -v -179.212 -148.511 18.302 -v -178.257 -150.827 18.726 -v -179.47 -148.599 18.726 -v -178.548 -151.124 18.973 -v -179.858 -148.762 18.973 -v -178.752 -151.867 18.999 -v -177.897 -153.503 18.847 -v -177.485 -154.389 18.4 -v -175.763 -155.437 17.756 -v -177.651 -154.709 17.756 -v -178.893 -153.199 6.992 -v -178.631 -152.883 4.924 -v -178.16 -151.183 1.96 -v -176.147 -152.619 1.98 -v -173.7 -153.498 2.612 -v -172.672 -153.044 1.624 -v -169.914 -152.868 1.757 -v -171.007 -152.739 1.294 -v -169.866 -152.13 0.53 -v -169.476 -151.804 0.236 -v -166.975 -151.068 0.366 -v -166.54 -150.579 0.128 -v -163.765 -149.581 0.13 -v -168.924 -147.378 0.017 -v -165.026 -149.559 0.01 -v -169.852 -149.363 0.053 -v -169.305 -145.247 0.051 -v -170.425 -143.356 0.02 -v -171.478 -136.371 0.062 -v -172.992 -137.946 0.126 -v -172.898 -138.19 0.011 -v -174.034 -139.018 0.166 -v -173.227 -136.318 0.52 -v -172.44 -136.238 0.257 -v -175.585 119.638 2.024 -v -176.932 -136.808 3.758 -v -177.202 119.64 4.285 -v -177.745 -136.16 5.962 -v -177.874 119.64 6.996 -v -177.905 119.862 7.627 -v -178.154 123.115 12.345 -v -162.776 138.165 7.863 -v -160.763 141.51 7.799 -v -160.981 140.703 7.026 -v -160.56 140.529 4.998 -v -159.922 143.352 4.806 -v -160.375 143.759 6.992 -v -160.41 154.507 7.548 -v -159.705 154.509 4.288 -v -157.126 154.509 8.715 -v -156.888 142.264 7.747 -v -157.327 154.028 9.193 -v -157.672 153.442 9.795 -v -156.956 142 8.316 -v -157.738 141.798 9.914 -v -158.779 141.204 11.177 -v -158.63 141.085 11.339 -v -157.443 141.458 10.096 -v -157.46 140.534 18.355 -v -157.243 140.298 18.74 -v -157.233 139.987 18.932 -v -157.26 139.612 18.998 -v -160.01 139.706 18.367 -v -162.223 138.105 18.363 -v -162.6 138.692 12.294 -v -165.981 135.009 13.81 -v -165.58 134.879 14.258 -v -163.949 133.954 18.688 -v -163.8 133.963 18.843 -v -163.438 133.94 18.844 -v -159.034 137.943 18.701 -v -157.971 138.074 18.723 -v -158.008 137.82 18.334 -v -150.497 137.134 18.307 -v -150.417 136.559 6.342 -v -157.82 137.152 6.916 -v -152.415 136.539 6.342 -v -169.463 131.089 14.013 -v -169.706 131.238 13.842 -v -169.635 130.845 14.282 -v -169.714 130.188 18.76 -v -169.64 129.869 18.933 -v -168.445 129.058 18.349 -v -177.492 122.28 18.84 -v -176.814 122.413 18.992 -v -169.061 129.067 18.994 -v -173.12 124.605 18.97 -v -175.304 120.94 18.968 -v -172.831 124.3 18.726 -v -174.9 120.859 18.726 -v -175.576 118.422 18.93 -v -175.26 118.423 18.72 -v -175.045 118.428 18.42 -v -175.615 -140.548 18.94 -v -175.031 -140.99 18.38 -v -174.95 118.427 18.049 -v -174.437 -107.837 8.223 -v -173.376 -109.05 5.48 -v -172.887 118.216 4.874 -v -174.433 -108.515 10.306 -v -174.633 -109.003 16.036 -v -174.865 -108.963 16.5 -v -174.126 -109.902 16.71 -v -174.854 -108.59 16.259 -v -174.89 -109.648 16.902 -v -174.899 -110.376 17.004 -v -173.984 -110.275 16.927 -v -167.745 -110.93 16.968 -v -167.561 -110.533 16.726 -v -161.917 -111.927 16.726 -v -161.784 -111.69 16.324 -v -162.01 -111.033 6.342 -v -156.526 -113.288 6.35 -v -156.41 -113.043 5.244 -v -156.113 -112.45 4.322 -v -150.935 -115.609 4.322 -v -150.377 -114.839 3.712 -v -155.681 -111.6 3.712 -v -136.078 137.069 3.95 -v -135.601 137.711 4.316 -v -134.996 137.617 5.27 -v -134.664 136.942 6.34 -v -134.985 -125.62 5.255 -v -145.647 -118.865 3.712 -v -141.603 -123.587 3.712 -v -146.315 -119.54 4.322 -v -151.323 -116.143 5.244 -v -146.781 -120.007 5.244 -v -151.468 -116.366 6.324 -v -146.975 -120.2 6.342 -v -142.91 -124.539 5.244 -v -142.375 -124.15 4.322 -v -140.16 -129.446 5.964 -v -151.433 -117.08 16.298 -v -156.418 -113.955 16.298 -v -156.561 -114.187 16.726 -v -151.63 -117.269 16.726 -v -147.243 -121.093 16.726 -v -147.62 -121.309 16.968 -v -143.918 -125.715 16.968 -v -144.847 -127.64 16.968 -v -148.552 -123.012 16.968 -v -152.99 -119.086 16.968 -v -151.967 -117.543 16.968 -v -158.03 -115.992 16.968 -v -156.856 -114.51 16.969 -v -163.53 -113.799 16.968 -v -162.144 -112.289 16.968 -v -169.323 -112.574 16.97 -v -174.898 -112.2 16.995 -v -163.557 -114.22 16.726 -v -158.133 -116.405 16.726 -v -153.153 -119.487 16.726 -v -148.781 -123.375 16.726 -v -145.137 -127.95 16.726 -v -142.21 -133.433 16.719 -v -142.32 -134.57 16.719 -v -142.485 -134.197 16.352 -v -142.691 -134.659 16.33 -v -143.04 -135.03 16.324 -v -143.03 -135.34 16.713 -v -143.468 -135.264 16.335 -v -164.609 -142.44 16.731 -v -165.24 -142.112 16.334 -v -165.396 -141.295 6.142 -v -167.313 -139.363 6.342 -v -165.302 -141.046 5.276 -v -167.14 -139.155 5.244 -v -169.184 -138.14 6.34 -v -169.061 -137.899 5.244 -v -171.28 -137.383 6.342 -v -172.96 -137.135 6.257 -v -173.665 -137.209 10.316 -v -173.887 -137.587 16.327 -v -174.344 -137.31 16.312 -v -174.854 -136.742 16.4 -v -174.886 -137.464 16.886 -v -174.95 -141.044 18.051 -v -174.887 -140.747 16.802 -v -174.86 -141.091 16.31 -v -174.821 -141.445 10 -v -172.185 -141.445 10 -v -173.5 -143.71 10 -v -173.001 -143.765 6.172 -v -171.71 -144.06 5.998 -v -173.501 -142.979 5.502 -v -171.73 -143.415 5.502 -v -172.522 -142.816 0.521 -v -170.791 -143.722 0.514 -v -170.367 -144.625 5.502 -v -170.686 -144.848 5.852 -v -171.691 -144.067 10 -v -170.637 -144.905 10 -v -169.851 -142.669 10 -v -168.357 -144.837 10 -v -170.051 -146.119 10 -v -170.051 -147.463 10 -v -170.051 -146.119 5.768 -v -170.051 -147.466 5.769 -v -169.94 -148.143 5.502 -v -170.637 -148.677 5.842 -v -170.637 -148.677 10 -v -171.69 -149.515 5.988 -v -170.973 -149.643 5.502 -v -171.691 -149.515 10 -v -172.992 -149.815 6.175 -v -173.001 -149.817 10 -v -173.501 -152.29 10 -v -174.001 -149.817 10 -v -173.982 -149.82 6.177 -v -174.413 -150.49 5.502 -v -172.59 -150.49 5.502 -v -173.496 -150.883 0.51 -v -175.394 -150.417 0.527 -v -176.03 -149.643 5.502 -v -175.313 -149.515 5.989 -v -175.315 -149.515 10 -v -176.06 -151.66 10 -v -178.03 -149.919 10 -v -176.365 -148.677 10 -v -178.965 -147.453 10 -v -176.951 -147.463 10 -v -178.65 -144.837 10 -v -179.43 -146.1 18.324 -v -178.664 -143.8 18.314 -v -179.697 -146.075 18.726 -v -179.04 -143.621 18.862 -v -180.117 -146.068 18.973 -v -180.734 -145.786 18.999 -v -180.45 -149.043 18.999 -v -179.935 -151.52 18.842 -v -179.091 -153.297 18.4 -v -180.411 -151.875 18.4 -v -179.325 -153.567 17.756 -v -180.703 -152.083 17.756 -v -180.7 -151.087 7.035 -v -180.35 -150.86 4.924 -v -179.937 -149.415 2.971 -v -179.431 -149.127 1.92 -v -177.8 -150.934 0.363 -v -175.918 -152.245 0.355 -v -173.67 -152.772 0.378 -v -173.725 -153.133 1.888 -v -172.684 -152.814 0.63 -v -172.511 -152.663 0.31 -v -173.273 -152.493 0.08 -v -168.937 -151.302 0.018 -v -171.374 -152.525 0.562 -v -171.383 -150.892 0.019 -v -173.53 -151.406 0.019 -v -171.507 -150.593 0.202 -v -170.133 -149.112 0.52 -v -169.444 -147.28 0.541 -v -169.679 -145.33 0.525 -v -169.235 -147.307 0.202 -v -170.653 -143.577 0.202 -v -172.473 -142.62 0.202 -v -174.486 -142.82 0.534 -v -175.273 -143.415 5.502 -v -174.001 -143.765 6.172 -v -175.315 -144.066 5.987 -v -176.641 -144.625 5.502 -v -176.22 -143.73 0.521 -v -177.325 -145.341 0.54 -v -177.287 -146.333 5.502 -v -177.558 -147.29 0.53 -v -176.863 -149.118 0.533 -v -177.945 -147.281 0.053 -v -177.52 -145.265 0.202 -v -176.35 -143.577 0.202 -v -176.54 -143.318 0.02 -v -174.577 -142.301 0.019 -v -174.53 -142.62 0.202 -v -172.373 -142.316 0.019 -v -176.975 -142.765 0.002 -v -175.768 -140.986 0.127 -v -177.487 -142.757 0.084 -v -174.84 -139.678 0.33 -v -175.079 -138.522 1.31 -v -174.005 -138.137 0.582 -v -174.163 -136.588 0.972 -v -175.202 -137.225 1.687 -v -176.348 -137.286 2.873 -v -178.437 122.036 17.76 -v -178.072 122.199 18.407 -v -170.235 130.17 18.108 -v -170.054 130.89 14.154 -v -170.096 130.95 13.761 -v -161.563 139.561 12.295 -v -178.136 123.464 12.04 -v -162.115 139.456 12.045 -v -177.937 122.745 8.566 -v -177.932 124.4 8.76 -v -177.778 122.529 8.318 -v -177.602 124.51 8.522 -v -175.98 125.555 8.384 -v -163.288 138.578 8.48 -v -162.961 138.339 8.238 -v -161.423 141.694 8.485 -v -161.05 141.527 8.238 -v -160.45 143.782 7.85 -v -160.673 153.91 8.247 -v -158.585 152.394 10.853 -v -159.631 151.049 11.292 -v -158.923 141.381 11.115 -v -160.259 140.543 11.92 -v -160.155 140.421 12.112 -v -161.66 139.733 12.07 -v -161.943 148.897 12.03 -v -160.36 140.747 11.805 -v -160.999 149.883 11.957 -v -178.136 132.777 12.05 -v -177.952 134.569 8.792 -v -178.154 133.097 12.343 -v -161.284 149.919 12.226 -v -170.902 140.605 13.722 -v -175.34 136.153 13.705 -v -175.637 136.132 15.63 -v -178.28 136.028 15.433 -v -177.73 136.124 8.83 -v -177.512 136.077 8.564 -v -161.536 152.784 8.55 -v -176.249 137.972 8.522 -v -177.612 134.652 8.524 -v -160.821 153.56 8.342 -v -160.834 143.668 8.342 -v -160.823 153.804 8.492 -v -160.685 154.509 11.412 -v -161.532 154.51 17.914 -v -158.041 154.509 18.655 -v -158.622 153.626 18.693 -v -158.348 154.509 18.98 -v -158.753 153.802 18.933 -v -171.251 141.595 18.964 -v -170.87 141.515 18.861 -v -171.838 142.32 18.99 -v -172.022 142.691 18.864 -v -172.436 142.516 18.773 -v -171.331 141.37 18.706 -v -171.07 141.332 18.737 -v -170.891 141.342 18.628 -v -175.582 136.55 15.603 -v -175.748 136.236 16.018 -v -175.777 136.6 15.98 -v -176.143 136.555 16.312 -v -177.252 137.592 16.321 -v -178.01 135.937 16.203 -v -177.655 136.029 16.42 -v -176.438 136.377 16.471 -v -176.155 136.251 16.353 -v -178.288 133.505 15.798 -v -178.226 136.01 15.848 -v -177.297 138.166 15.972 -v -177.306 138.321 15.568 -v -177.104 138.354 14 -v -176.47 138.184 8.762 -v -161.706 152.981 8.823 -v -173.093 142.38 14 -v -173.093 142.965 17.9 -v -160.962 154.509 18.523 -v -172.714 142.685 18.575 -v -160.235 154.508 18.871 -v -159.405 154.504 19 -v -171.304 140.617 13.985 -v -175.354 136.567 13.987 -v -177.958 134.296 16.272 -v -177.617 135.166 16.458 -v -177.083 136.547 16.516 -v -169.862 130.91 14.237 -v -169.92 130.241 18.568 -v -175.95 118.44 18.998 -v -175.95 -140.316 18.998 -v -176.76 -135.945 18.998 -v -177.487 -141.45 18.976 -v -175.307 -140.777 18.76 -v -177.213 -141.775 18.726 -v -175.134 -140.905 18.576 -v -177.058 -142.002 18.312 -v -177.151 -142.669 10 -v -175.315 -144.067 10 -v -176.365 -144.905 10 -v -176.362 -144.9 5.843 -v -176.951 -146.127 5.775 -v -177.067 -148.143 5.502 -v -176.935 -147.503 5.8 -v -177.04 -149.229 0.202 -v -175.614 -150.724 0.054 -v -173.501 -151.083 0.202 -v -177.313 -149.388 0.02 -v -178.718 -148.799 0.038 -v -179.094 -146.671 0.038 -v -179.473 -146.725 0.362 -v -179.053 -148.992 0.362 -v -179.913 -146.728 2.016 -v -180.221 -148.16 3.056 -v -179.463 -144.32 2.11 -v -179.001 -144.442 0.373 -v -177.867 -142.305 1.598 -v -178.644 -144.562 0.046 -v -177.808 -145.13 0.019 -v -177.702 -142.535 0.373 -v -176.177 -140.977 0.61 -v -176.315 -140.18 1.932 -v -176.8 -139.426 2.995 -v -177.567 -139.369 3.998 -v -177.423 -136.431 4.797 -v -177.874 -136.065 7 -v -178.081 -135.853 18.397 -v -177.489 -135.69 18.839 -v -177.501 -138.676 18.972 -v -179.79 -143.43 19.01 -v -181.444 -145.665 18.848 -v -181.142 -149.238 18.847 -v -181.945 -148.327 18.4 -v -181.381 -150.185 18.4 -v -181.711 -150.327 17.756 -v -182.295 -148.39 17.756 -v -181.706 -148.459 6.994 -v -181.305 -148.375 4.924 -v -181.397 -145.72 4.924 -v -181.763 -145.66 6.828 -v -180.601 -143.183 4.924 -v -178.112 -142.093 2.394 -v -177.582 -140.802 3.084 -v -178.877 -141.645 3.77 -v -177.469 -141.423 2.358 -v -179.403 -141.52 4.8 -v -178 -139.1 5.004 -v -179.69 -141.224 6.263 -v -178.312 -138.887 6.307 -v -178.438 -135.983 17.758 -v -178.09 -138.522 18.711 -v -178.305 -137.317 18.284 -v -180.464 -142.91 18.826 -v -181.081 -142.77 18.4 -v -181.761 -144.469 18.4 -v -182.071 -146.385 18.4 -v -182.43 -146.37 17.756 -v -182.105 -144.37 17.756 -v -180.97 -142.999 6.992 -v -181.401 -142.605 17.756 -v -180.093 -141.264 18.361 -v -178.7 -138.743 18.284 -v -179.48 -139.805 17.764 -v -180.335 -141.03 17.754 -v -178.68 -138.719 12.922 -v -178.76 -138.237 17.76 -v -175.806 -151.881 0.038 -v -173.328 -152.146 0 -v -177.57 -150.646 0.047 -v -171.6 -150.415 0.518 -v -176.365 -148.677 5.842 -v -176.951 -146.119 10 -v -169.715 -146.333 5.502 -v -170.943 -151.66 10 -v -174.839 -136.348 16.05 -v -174.437 -135.736 8.223 -v -174.437 -113.475 8.238 -v -173.961 -113.558 6.368 -v -168.69 -113.912 6.32 -v -169.272 -113.276 16.31 -v -174.862 -113.03 16.331 -v -174.887 -112.686 16.816 -v -169.28 -113.003 16.726 -v -163.594 -114.486 16.332 -v -158.216 -116.668 16.302 -v -168.707 -114.183 5.244 -v -163.281 -115.169 6.342 -v -163.363 -115.43 5.244 -v -158.197 -117.287 6.362 -v -153.29 -119.729 16.295 -v -148.943 -123.591 16.32 -v -145.356 -128.116 16.295 -v -142.56 -133.201 16.339 -v -142.448 -133.684 16.321 -v -164.127 -141.433 6.155 -v -164.757 -141.501 6.116 -v -164.649 -142.174 16.33 -v -164.52 -141.266 5.286 -v -144.24 -134.906 6.02 -v -143.708 -134.594 5.988 -v -143.35 -134.09 5.942 -v -143.222 -133.482 5.966 -v -143.352 -132.872 6.027 -v -143.637 -132.847 5.241 -v -146.147 -128.407 5.244 -v -145.921 -128.249 6.344 -v -149.573 -124.12 5.244 -v -150.053 -124.577 4.322 -v -154.061 -120.997 4.322 -v -154.633 -121.759 3.712 -v -159.045 -118.973 3.712 -v -158.607 -118.129 4.322 -v -163.86 -116.963 3.712 -v -163.567 -116.057 4.322 -v -168.94 -115.775 3.712 -v -168.8 -114.833 4.322 -v -171.132 -115.339 3.797 -v -169.468 -134.838 3.497 -v -169.449 -116.81 3.498 -v -161.389 -118.986 3.498 -v -166.492 -136.216 3.498 -v -168.343 -136.457 3.712 -v -170.835 -135.517 3.7 -v -171.065 -136.477 4.322 -v -168.765 -137.307 4.322 -v -166.111 -137.913 3.712 -v -164.122 -138.302 3.498 -v -164.473 -139.593 3.75 -v -145.38 -133.468 3.778 -v -146.762 -132.595 3.497 -v -147.485 -129.305 3.712 -v -145.217 -132.899 3.785 -v -146.69 -128.775 4.322 -v -150.741 -125.233 3.712 -v -152.96 -124.478 3.498 -v -144.18 -132.8 4.516 -v -143.603 -133.375 5.07 -v -144.303 -133.41 4.297 -v -143.743 -133.909 5.012 -v -144.624 -134.15 4.43 -v -144.035 -134.38 5.07 -v -144.447 -134.714 5.241 -v -164.42 -140.72 4.505 -v -165.077 -140.518 4.489 -v -166.717 -138.645 4.322 -v -171.215 -137.117 5.244 -v -173.427 -136.955 5.496 -v -173.978 -136.598 6.45 -v -174.635 -136.896 16.043 -v -174.146 -136.448 6.799 -v -173.294 -113.797 5.33 -v -172.298 -114.421 4.414 -v -172.851 -136.637 4.906 -v -172.3 -136.323 4.38 -v -158.303 -117.54 5.244 -v -153.663 -120.467 5.244 -v -153.501 -120.25 6.34 -v -149.373 -123.937 6.342 -v -170.973 -152.924 18.947 -v -138.471 -154.228 19 -v -138.385 -155.054 18.998 -v -136.22 -155.069 19.243 -v -134.37 -155.097 19.89 -v -130.845 -155.155 21.05 -v -127.197 -156.649 21.478 -v -164.81 -148.449 16.726 -v -164.353 -146.259 16.332 -v -164.137 -145.774 16.317 -v -163.686 -146.378 6.114 -v -163.788 -145.398 16.321 -v -163.323 -145.883 6.121 -v -163.364 -145.166 16.336 -v -162.785 -145.572 6.145 -v -142.88 -139.042 6.336 -v -142.507 -138.33 16.338 -v -141.995 -138.266 16.311 -v -141.5 -138.345 16.346 -v -142.229 -139.05 5.373 -v -162.977 -145.917 5.296 -v -141.501 -138.899 10.302 -v -141.61 -139.371 4.566 -v -141.037 -139.31 10.312 -v -141.079 -140.174 3.78 -v -141.257 -139.783 4.104 -v -161.98 -147.251 3.748 -v -161.39 -147.738 3.547 -v -162.449 -148.875 3.864 -v -140.623 -151.073 4.872 -v -163.99 -150.36 4.934 -v -162.86 -149.01 4.094 -v -163.693 -148.837 5.084 -v -162.973 -146.874 4.452 -v -163.505 -146.58 5.287 -v -164.04 -148.763 6.342 -v -163.835 -147.037 6.166 -v -164.545 -148.518 16.302 -v -164.343 -149.897 6.327 -v -164.297 -150.648 5.153 -v -164.014 -151.423 6.239 -v -164.475 -151.433 10.408 -v -163.477 -151.874 7.572 -v -140.707 -152.17 6.404 -v -140.687 -152.62 8.238 -v -140.501 -149.516 3.863 -v -140.404 -147.353 3.485 -v -157.982 -147.136 3.498 -v -139.826 -144.116 16.313 -v -140.507 -139.474 16.343 -v -139.435 -143.876 16.854 -v -139.774 -148.615 16.304 -v -139.843 -146.249 16.052 -v -140.841 -141.529 3.498 -v -165.21 -150.755 16.333 -v -165.478 -150.728 16.734 -v -162.593 -146.367 4.47 -v -163.821 -145.1 16.711 -v -164.547 -145.909 16.72 -v -164.845 -145.775 16.928 -v -137.656 134.943 3.498 -v -155.663 134.48 3.576 -v -136.781 -147.895 16.726 -v -136.514 -147.959 16.324 -v -135.95 -147.198 6.364 -v -136.251 -142.003 6.342 -v -135.673 -147.177 5.244 -v -136.032 -151.62 5.353 -v -135.955 -151.516 5.26 -v -135.255 -150.563 4.38 -v -134.162 -149.217 3.725 -v 135.251 -150.565 4.383 -v 136.02 -151.618 5.355 -v 135.95 -147.188 6.355 -v 136.513 -152.723 8.242 -v 136.761 -142.34 16.307 -v 136.245 -142.003 6.342 -v 137.224 -137.038 6.224 -v 137.765 -135.867 16.326 -v 137.902 -136.452 16.325 -v 137.652 -135.7 16.24 -v 137.528 -135.415 18.054 -v 137.75 -135.27 18.668 -v 138.28 -134.936 18.851 -v 138.115 -135.307 18.654 -v 137.831 -135.483 18.443 -v 138.241 -135.452 18.307 -v 138.418 -135.076 18.559 -v 139.085 -133.23 18.604 -v 139.067 -132.863 18.68 -v 139.165 -132.585 18.264 -v 134.25 -126.963 18.601 -v 133.961 -126.145 18.418 -v 134.05 -126.128 18.05 -v 134.663 136.929 6.333 -v 134.76 137.345 5.726 -v 134.663 -125.675 6.341 -v 134.045 137.774 18.06 -v 133.96 137.783 18.42 -v 134.097 138.313 18.322 -v 134.401 -126.859 18.052 -v 139.268 -132.596 16.998 -v 139.238 -132.87 18.243 -v 139.315 -132.869 16.998 -v 138.75 -131.954 16.965 -v 139.505 -131.82 16.927 -v 139.372 -131.529 16.72 -v 138.421 -131.533 16.718 -v 138.103 -131.139 16.386 -v 138.036 -130.973 16.04 -v 137.658 -129.743 5.965 -v 137.974 -129.674 5.201 -v 138.124 -130.113 5.926 -v 138.552 -131.266 16.358 -v 139.066 -131.304 16.35 -v 139.557 -131.166 16.332 -v 140.22 -131.017 16.72 -v 140.465 -131.226 16.927 -v 143.794 -125.894 16.969 -v 143.515 -125.557 16.726 -v 144.73 -127.803 16.968 -v 141.91 -133.282 16.926 -v 145.135 -127.95 16.726 -v 142.206 -133.4 16.725 -v 145.358 -128.101 16.306 -v 142.562 -133.209 16.328 -v 142.445 -133.675 16.332 -v 142.478 -134.178 16.346 -v 142.299 -134.526 16.719 -v 141.99 -134.619 16.926 -v 141.353 -133.972 16.996 -v 140.464 -131.795 16.998 -v 142.213 -137.686 16.924 -v 141.027 -137.893 16.926 -v 138.876 -135.817 16.998 -v 138.374 -135.48 16.978 -v 138.211 -135.648 16.895 -v 138.484 -136.49 16.928 -v 138.17 -136.466 16.73 -v 137.027 -142.387 16.726 -v 136.775 -147.895 16.726 -v 137.427 -142.55 16.968 -v 140.003 -138.861 16.964 -v 141.166 -138.188 16.718 -v 142.177 -138.006 16.715 -v 142.128 -138.21 16.412 -v 163.822 -145.073 16.734 -v 164.144 -145.78 16.336 -v 164.347 -146.258 16.33 -v 164.548 -148.523 16.322 -v 164.037 -148.763 6.342 -v 163.718 -146.44 6.148 -v 163.5 -146.595 5.288 -v 163.693 -148.837 5.084 -v 164.335 -149.869 6.335 -v 164.29 -150.644 5.146 -v 165.16 -151.23 16.33 -v 165.204 -150.76 16.329 -v 165.466 -150.74 16.724 -v 164.809 -148.449 16.726 -v 165.305 -151.657 16.714 -v 164.928 -151.79 16.373 -v 164.033 -151.391 6.158 -v 163.19 -151.964 7.976 -v 140.7 -152.17 6.404 -v 140.68 -152.62 8.238 -v 140.618 -151.06 4.862 -v 140.407 -147.35 3.485 -v 139.841 -146.249 16.052 -v 139.83 -144.094 16.31 -v 140.528 -139.479 16.296 -v 139.422 -144.062 16.853 -v 140.386 -139.019 16.717 -v 138.669 -146.268 16.998 -v 137.194 -148.078 16.968 -v 140.748 -138.95 16.302 -v 141.069 -138.591 16.32 -v 141.51 -138.34 16.349 -v 142.147 -138.296 16.054 -v 142.877 -139.042 6.34 -v 142.203 -139.05 5.36 -v 162.78 -145.57 6.148 -v 162.981 -145.933 5.272 -v 163.32 -145.883 6.115 -v 163.798 -145.41 16.315 -v 163.326 -145.148 16.324 -v 162.977 -146.871 4.459 -v 162.836 -149.174 4.09 -v 162.487 -148.92 3.894 -v 140.505 -149.487 3.856 -v 157.97 -147.134 3.498 -v 141.034 -140.359 3.737 -v 140.835 -141.529 3.498 -v 141.241 -139.795 4.093 -v 161.973 -147.244 3.748 -v 141.615 -139.352 4.587 -v 162.587 -146.376 4.461 -v 161.401 -147.745 3.547 -v 137.991 -135.745 16.73 -v 137.807 -135.596 18.069 -v 142.679 -134.64 16.325 -v -136.518 -152.721 8.226 -v -136.345 -152.25 6.36 -v 136.336 -152.244 6.338 -v 136.347 -152.26 6.407 -v 134.158 -149.212 3.727 -v 145.586 -133.687 3.83 -v 164.197 -118.02 3.498 -v 169.46 -134.849 3.497 -v 169.453 -116.817 3.498 -v 168.939 -115.775 3.712 -v 171.127 -115.346 3.797 -v 1.027 -8.387 3.516 -v 1.025 -8.765 3.762 -v 1.218 -9.03 3.839 -v 0.862 -15.695 10.162 -v 1.162 -16.151 3.848 -v 0.552 -16.01 10.171 -v 0.655 -15.93 10.272 -v -0.56 -16.012 10.166 -v -0.86 -15.708 10.176 -v -0.748 -9.394 10.35 -v -0.66 -9.153 10.274 -v -0.564 -9.072 10.173 -v 0.657 -9.153 10.27 -v 0.557 -9.066 10.161 -v 0.856 -9.382 10.18 -v 0.638 -15.698 10.441 -v -0.66 -15.926 10.27 -v -0.744 -15.688 10.351 -v -0.556 -9.394 10.465 -v -0.53 -15.685 10.472 -v 0.616 -9.384 10.451 -v -131.564 140.673 18.93 -v -130.662 141.483 18.729 -v -130.487 141.273 18.323 -v -123.85 145.003 18.3 -v -123.96 144.203 6.48 -v -129.735 141.25 11.282 -v -129.672 140.722 5.433 -v -123.983 145.24 18.726 -v -130.865 141.727 18.93 -v -131.79 141.427 18.997 -v -132.497 144.108 18.998 -v -131.644 144.177 18.926 -v -132.627 144.947 18.93 -v -134.854 143.122 18.716 -v -135.227 143.029 18.324 -v -135.572 142.652 18.32 -v -136.936 142.84 5.997 -v -136.388 143.14 5.973 -v -136.023 143.63 5.948 -v -138.51 152.724 18.322 -v -135.953 154.508 18.243 -v -138.443 154.509 19.793 -v -136.762 154.509 19.49 -v -136.208 154.511 19.033 -v -135.832 153.816 18.59 -v -132.3 145.577 18.332 -v -131.954 146.508 6.059 -v -131.595 145.993 5.968 -v -132.034 145.157 18.323 -v -132.356 145.108 18.729 -v -136.26 153.52 18.96 -v -137.867 152.86 18.962 -v -134.41 144.19 18.929 -v -139.128 154.509 19.426 -v -138.231 152.747 18.726 -v -134.73 144.147 18.72 -v -134.944 144.145 18.424 -v -135.021 143.491 18.34 -v -135.033 144.09 18.06 -v -131.52 144.477 18.715 -v -131.634 144.84 18.32 -v -131.158 144.668 18.342 -v -130.656 144.67 18.313 -v -130.21 144.796 18.346 -v -125.11 147.467 18.726 -v -120.553 150.975 18.726 -v -120.191 150.746 18.972 -v -116.873 154.509 18.797 -v -113.306 154.509 18.268 -v -117.339 154.509 18.288 -v -113.781 154.509 18.808 -v -118.35 149.623 18.726 -v -118.662 149.91 18.97 -v -124.121 145.638 18.968 -v -124.79 147.197 18.968 -v -130.303 144.048 18.964 -v -130.422 144.437 18.72 -v -116.168 154.509 18.996 -v -114.58 154.509 18.998 -v -120.77 151.14 18.323 -v -136.717 143.357 5.07 -v -137.126 143.037 5.23 -v -86.325 139.965 19.02 -v -86.279 140.084 19.19 -v -86.434 140.225 19.186 -v -5.58 40.183 18.998 -v -86.592 132.074 19.144 -v 158.736 137.761 18.305 -v 163.778 133.768 18.612 -v 163.95 134.053 18.805 -v 164.446 134.554 18.813 -v 164.7 134.792 18.726 -v 164.557 135.007 18.89 -v 162.02 137.927 18.74 -v 164.633 135.283 18.72 -v 164.856 135.3 18.534 -v 162.187 138.103 18.425 -v 164.99 135.395 18.1 -v 165.608 135.351 14.172 -v 169.73 131.253 13.811 -v 170.116 130.857 14.172 -v 178.434 122.038 17.764 -v 178.07 122.192 18.41 -v 177.486 122.297 18.84 -v 176.76 -136.816 18.998 -v 176.866 122.288 18.99 -v 169.712 130.192 18.756 -v 169.613 130.846 14.263 -v 167.647 129.248 14.022 -v 167.521 129.082 13.915 -v 163.793 132.774 13.892 -v 163.581 133.044 14.226 -v 163.818 133.117 14.252 -v 163.534 133.569 18.367 -v 164.913 134.867 18.388 -v 165.583 134.883 14.256 -v 164.968 135.118 18.421 -v 165.643 135.139 14.243 -v 165.965 135.026 13.81 -v 165.812 134.721 14.019 -v 169.453 131.075 14.02 -v 169.859 130.911 14.238 -v 169.923 130.246 18.543 -v 170.228 130.173 18.106 -v 163.988 132.902 14.02 -v 99.418 154.509 18.726 -v 9.013 39.932 18.42 -v 129.771 -116.168 4.741 -v 130.018 -116.501 5.267 -v -154.69 142 4.31 -v -170.5 119.817 -0 -v 172.643 -140.28 16.972 -v 169.277 -113.003 16.726 -v 165.567 134.735 6.512 -v 179.39 -141.488 4.822 -v 177.99 -139.11 4.973 -v 176.952 -136.813 3.789 -v 177.42 -136.417 4.796 -v 177.564 -140.807 3.06 -v 135.998 142.414 18.33 -v 135.554 142.667 18.317 -v 135.587 142.308 18.716 -v 134.833 143.156 18.718 -v 135.217 143.038 18.333 -v 135.011 143.505 18.35 -v 134.73 144.194 18.728 -v 134.41 144.249 18.933 -v 137.818 152.873 18.98 -v 138.644 154.509 19.778 -v 136.761 154.509 19.496 -v 139.166 154.51 19.292 -v 135.714 153.843 18.325 -v 132.021 145.15 18.324 -v 132.313 145.586 18.349 -v 132.326 145.093 18.718 -v 135.939 153.693 18.726 -v 136.064 154.509 18.847 -v 136.283 153.508 18.963 -v 131.615 144.833 18.322 -v 131.137 144.664 18.346 -v 130.63 144.67 18.318 -v 125.67 148.201 6.361 -v 129.867 145.741 6.054 -v 130.469 145.581 5.982 -v 131.07 145.672 5.945 -v 130.387 145.967 5.07 -v 129.873 146.032 5.23 -v 125.851 148.409 5.244 -v 129.858 146.574 4.504 -v 126.215 148.957 4.322 -v 121.92 151.373 5.244 -v 121.745 151.165 6.342 -v 126.743 149.753 3.712 -v 129.982 147.483 3.845 -v 138.524 152.766 18.333 -v 135.988 144.847 6.055 -v 135.877 144.222 5.988 -v 136.02 143.638 5.934 -v 136.385 143.141 5.966 -v 136.919 142.833 6.04 -v 137.123 143.036 5.23 -v 136.71 143.357 5.07 -v 137.52 143.417 4.504 -v 134.98 144.111 18.335 -v 138.228 152.748 18.726 -v 136.411 143.809 5.012 -v 136.216 144.527 5.152 -v 112.739 149.647 3.498 -v 113.553 150.409 3.712 -v 118.155 146.075 3.712 -v 119.783 143.324 3.498 -v 123.27 142.357 3.712 -v 123.779 143.163 4.322 -v 124.133 143.72 5.244 -v 118.76 146.807 4.322 -v 119.183 147.317 5.244 -v 114.247 151.059 4.322 -v 114.73 151.509 5.244 -v 118.993 147.8 6.203 -v 118.167 149.42 18.3 -v 114.927 151.695 6.342 -v 123.839 145.007 18.3 -v 118.343 149.623 18.726 -v 118.586 149.936 18.967 -v 123.977 145.24 18.726 -v 129.733 141.25 11.282 -v 129.894 140.795 6.296 -v 124.028 144.13 6.394 -v 129.702 140.707 5.439 -v 130.112 139.988 5.435 -v 110.811 129.133 3.498 -v 130.553 125.92 8.502 -v -3.403 111.08 3.706 -v -8.22 112.478 3.499 -v -6.48 112.619 3.706 -v -5.925 113.39 4.304 -v -8.94 115.027 3.706 -v -11.113 116.563 3.498 -v -61.213 116.55 3.498 -v -62.467 117.61 3.7 -v -63.286 118.54 4.257 -v -63.606 118.14 4.023 -v -64.512 118.116 4.365 -v -63.932 117.39 4.026 -v -62.81 117.045 3.656 -v -64.713 117.443 4.536 -v -66.467 118.38 12.213 -v -66.708 118.656 12.496 -v -69.691 122.898 12.258 -v -8.422 130.706 3.498 -v 91.255 154.509 3.498 -v -3.737 133.385 3.498 -v -6.48 130.799 3.706 -v -69.643 125.79 3.77 -v 180.347 -148.18 3.056 -v -175.118 156.314 21.608 -v -174.826 157.251 25.36 -v -174.688 156.994 25.208 -v -174.369 157.27 34 -v -176.7 157.269 24.34 -v -175.587 157.269 56.184 -v -173.55 157.263 56.355 -v -175.37 157.269 57.116 -v -173.322 157.269 56.558 -v -174.825 157.269 57.898 -v -174.025 157.269 58.416 -v -174.045 154.087 57.626 -v 173.148 151.466 55.516 -v 173.1 153.986 57.78 -v 174.097 151.635 55.432 -v 173.182 151.054 54.38 -v 174.18 150.495 52.326 -v 174.903 152.087 55.156 -v 174.843 154.339 57.17 -v 174.043 154.087 57.626 -v 174.82 157.269 57.898 -v 174.02 157.269 58.416 -v -173.11 153.987 57.781 -v -86.224 157.269 56.592 -v -149.259 157.269 56.587 -v -149.228 156.917 56.577 -v -150.664 157.27 56.562 -v -149.383 157.266 56.5 -v -150.73 154.936 56.002 -v -173.218 154.64 55.843 -v -173.285 152.954 54.102 -v -173.616 153.154 53.992 -v -173.554 154.771 55.655 -v -173.245 156.923 56.567 -v -173.727 152.636 51.728 -v -173.475 152.31 51.8 -v -174.206 151.423 27.366 -v 174.282 151.421 27.344 -v 86.19 152.271 51.774 -v 87.706 152.18 48.983 -v 87.75 152.29 52.093 -v 87.584 152.414 52.107 -v 87.598 153.237 54.335 -v 87.786 153.117 54.383 -v 149.245 152.949 54.1 -v 149.485 152.39 49.693 -v 149.43 152.448 51.778 -v 149.404 153.064 54.03 -v 149.384 154.677 55.72 -v 149.218 154.64 55.846 -v 149.38 156.934 56.464 -v 149.48 152.573 50.178 -v 149.462 153.573 51.002 -v 149.64 152.66 50.105 -v 149.626 153.607 50.874 -v 150.369 153.487 50.814 -v 150.402 152.66 50.118 -v 150.505 152.4 49.71 -v 150.531 152.496 50.177 -v 150.532 153.41 50.914 -v 150.534 154.663 51.238 -v 150.37 154.658 51.106 -v 150.495 157.269 51.153 -v 150.647 157.27 56.551 -v 150.61 154.986 55.893 -v 150.76 154.928 56.006 -v 173.253 154.64 55.827 -v 173.31 152.957 54.096 -v 173.562 154.736 55.615 -v 173.5 156.934 56.382 -v 173.332 157.269 56.553 -v 173.576 157.269 56.217 -v 174.359 157.269 34.239 -v 175.58 157.269 56.184 -v 175.367 157.269 57.116 -v 175.45 154.735 56.34 -v 175.45 152.757 54.724 -v 174.994 151.034 52.285 -v 175.532 151.838 52.237 -v 175.68 153.005 53.394 -v 176.693 157.269 24.34 -v 176.628 151.697 26.15 -v 176.76 156.775 22.51 -v 175.125 156.327 21.618 -v 176.82 155.863 20.846 -v 175.045 157.271 24.437 -v 174.845 157.256 25.231 -v 175.23 153.77 18.852 -v 174.925 153.611 19.015 -v 176.901 153.015 18.386 -v 176.867 154.587 19.448 -v 176.725 148.755 23.4 -v 176.51 148.845 24.49 -v 176.523 146.939 24.016 -v 175.975 146.939 24.796 -v 176.611 129.13 23.847 -v 176.867 130.337 19.352 -v 176.935 132.753 17.498 -v 176.935 149.355 17.498 -v 176.925 151.239 17.726 -v 176.925 131.697 17.73 -v 176.901 130.837 18.39 -v 175.045 129.32 23.207 -v 175.975 128.877 24.796 -v 175.96 148.467 25.18 -v 176.46 150.3 25.81 -v 175.911 149.63 26.242 -v 175.11 149.18 26.52 -v 173.236 150.272 51.837 -v 173.23 150.307 52.325 -v 175.85 150.16 27.738 -v 176.39 150.97 27.687 -v 175.04 149.622 27.766 -v 174.09 149.43 27.75 -v 173.608 153.161 53.992 -v 173.24 156.926 56.563 -v 149.34 157.269 56.556 -v 87.767 154.926 56.008 -v 86.392 157.267 56.462 -v 86.232 157.269 56.59 -v -173.102 157.269 58.597 -v 173.087 157.269 58.6 -v 0.651 157.269 56.562 -v -0.67 157.27 56.576 -v -86.23 156.917 56.577 -v -86.385 157.266 56.495 -v -87.67 157.27 56.576 -v -87.743 154.916 56 -v -149.214 154.661 55.867 -v -149.238 152.943 54.097 -v -149.406 153.054 54.033 -v -149.394 154.707 55.73 -v -150.604 155.005 55.856 -v -150.7 153.15 54.38 -v -150.592 153.264 54.292 -v -150.66 152.342 52.134 -v -150.57 152.464 52.063 -v -150.487 152.606 50.098 -v -150.51 152.395 49.701 -v -150.814 152.288 52.098 -v -149.26 152.176 48.986 -v -87.739 152.177 48.98 -v -86.29 152.176 48.967 -v -86.26 152.273 51.765 -v -0.816 152.288 52.102 -v -0.602 152.377 52.116 -v -0.739 152.175 48.97 -v 0.706 152.18 48.985 -v 0.682 152.303 52.001 -v 0.568 152.469 52.103 -v 0.598 153.237 54.335 -v 0.77 153.117 54.371 -v 86.177 152.801 53.61 -v 86.398 152.362 51.821 -v 86.486 152.392 49.698 -v 86.405 153.062 54.03 -v 86.243 152.943 54.095 -v 86.385 154.679 55.723 -v 86.219 154.663 55.86 -v 86.248 156.922 56.578 -v 86.482 152.572 50.18 -v 86.465 153.571 50.994 -v 86.638 152.66 50.105 -v 86.63 153.607 50.874 -v 87.372 153.486 50.814 -v 87.405 152.658 50.118 -v 87.504 152.398 49.704 -v 87.534 152.488 50.17 -v 87.53 153.41 50.918 -v 87.537 154.664 51.24 -v 87.374 154.658 51.106 -v 87.497 157.269 51.154 -v 87.658 157.27 56.577 -v 87.613 154.983 55.898 -v 86.496 157.269 51.149 -v 86.454 154.666 51.276 -v 86.583 154.679 51.119 -v 0.843 155.423 56.14 -v -0.742 154.916 56 -v -86.207 154.66 55.867 -v -86.231 152.943 54.097 -v -86.4 153.047 54.038 -v -86.39 154.705 55.733 -v -87.602 155.007 55.86 -v -87.606 153.22 54.313 -v -87.602 152.377 52.115 -v -87.482 152.607 50.097 -v -87.514 152.392 49.699 -v -87.817 152.286 52.094 -v -87.797 153.097 54.365 -v -87.834 153.888 55.083 -v -149.28 152.272 51.766 -v -149.497 152.402 49.711 -v -149.435 152.446 51.767 -v -149.462 154.66 51.242 -v -149.493 157.269 51.16 -v -150.504 157.269 51.15 -v -150.55 154.662 51.278 -v -150.533 153.44 50.93 -v -150.742 152.175 48.973 -v -149.646 152.668 50.113 -v -149.48 152.551 50.154 -v -149.469 153.543 50.983 -v -149.623 154.657 51.106 -v -150.41 154.677 51.115 -v -150.372 153.48 50.81 -v -149.645 153.613 50.873 -v -86.493 152.395 49.699 -v -86.417 152.393 51.744 -v -86.463 153.535 50.986 -v -86.466 154.667 51.237 -v -86.494 157.269 51.159 -v -86.627 154.658 51.106 -v -87.504 157.269 51.149 -v -87.414 154.68 51.117 -v -87.546 154.664 51.276 -v -87.534 153.441 50.93 -v -87.374 153.48 50.81 -v -86.638 153.613 50.874 -v -86.599 152.659 50.115 -v -86.466 152.49 50.173 -v -0.834 153.888 55.083 -v -0.797 153.097 54.365 -v -0.606 153.22 54.313 -v -0.518 152.573 50.18 -v -0.514 152.392 49.7 -v -0.368 152.658 50.106 -v -0.534 153.441 50.93 -v -0.378 153.483 50.813 -v 0.403 152.658 50.115 -v 0.507 152.395 49.699 -v 0.534 152.488 50.17 -v 0.53 153.41 50.918 -v 0.537 154.664 51.24 -v 0.374 154.658 51.106 -v 0.497 157.269 51.154 -v 0.613 154.983 55.898 -v -0.602 155.007 55.86 -v -0.546 154.664 51.276 -v -0.504 157.269 51.149 -v -0.415 154.68 51.118 -v 0.371 153.488 50.814 -v 0.776 154.925 56.013 -v 87.837 153.891 55.087 -v 149.21 156.907 56.58 -v 149.495 157.269 51.149 -v 149.452 154.67 51.276 -v 149.58 154.68 51.119 -v -174.845 154.339 57.17 -v -174.91 152.087 55.156 -v -174.988 151.027 52.287 -v -175.534 151.84 52.238 -v -176.392 150.964 27.668 -v -176.633 151.684 26.23 -v -176.761 156.775 22.51 -v -176.821 155.863 20.846 -v -176.87 154.587 19.448 -v -175.08 157.27 24.392 -v -175.689 152.965 53.398 -v -175.451 152.757 54.724 -v -175.393 154.717 56.48 -v -175.603 155.159 55.66 -v -174.944 131.744 18.007 -v -118.825 128.687 2.498 -v -125.177 128.687 2.498 -v -125.803 126.189 7.588 -v -125.885 128.09 8.278 -v -118.2 126.189 7.588 -v -118.117 128.09 8.278 -v -151.956 143.799 3.499 -v 178.08 121.709 23.598 -v 175.251 125.945 23.598 -v 176.74 124.95 23.598 -v 177.73 123.465 23.598 -v 178.497 121.709 25.598 -v 178.08 -36.35 27.596 -v 178.081 -146.789 27.596 -v 148.499 -150.805 27.596 -v 148.499 -151.84 27.872 -v 148.499 -149.505 27.596 -v 148.499 -151.661 28.277 -v 149.115 -144.507 27.748 -v 149.657 -144.282 27.864 -v 148.792 -144.766 27.6 -v 162.515 -144.31 27.85 -v 162.334 -144.13 27.596 -v 149.6 -144.16 27.596 -v 163.216 -144.756 27.603 -v 163.499 -149.505 27.596 -v 163.499 -151.73 28.273 -v 163.499 -151.706 27.873 -v 163.499 -150.805 27.596 -v 173.502 -151.374 27.596 -v 177.73 -148.545 27.596 -v 178.497 -146.789 25.598 -v 173.504 126.294 23.598 -v 175.411 126.329 25.598 -v 175.251 125.945 27.596 -v 173.5 126.294 27.596 -v 177.73 123.465 27.596 -v 176.74 124.95 27.596 -v 177.033 125.247 25.598 -v 178.119 123.625 25.598 -v 178.08 121.709 27.596 -v -178.082 -34.74 27.596 -v -18.129 -151.374 27.596 -v 173.503 -151.79 25.597 -v 175.411 -151.409 25.598 -v 175.251 -151.025 27.596 -v 177.033 -150.327 25.598 -v 176.74 -150.03 27.596 -v 178.119 -148.705 25.598 -v 177.73 -148.545 23.598 -v 178.08 -146.789 23.598 -v -177.737 123.465 23.598 -v -173.502 126.295 23.598 -v 173.5 126.713 25.6 -v 23.305 126.294 27.596 -v 148.499 125.805 27.596 -v 148.499 126.677 27.857 -v 163.499 126.638 27.86 -v 163.499 125.805 27.596 -v 163.499 124.683 27.596 -v 148.499 124.683 27.596 -v 148.499 126.677 28.215 -v 163.499 126.929 27.743 -v 163.499 127.18 27.997 -v 163.499 126.655 28.21 -v 148.499 127.222 27.948 -v 163.517 127.352 27.505 -v 148.477 127.354 27.504 -v 148.477 127.35 22.35 -v 163.52 127.354 22.35 -v 163.499 127.272 21.986 -v 148.499 127.147 21.805 -v 163.499 126.695 21.633 -v 148.499 126.67 21.997 -v 163.499 126.692 21.996 -v 144.745 122.746 22.002 -v 144.43 123.035 21.648 -v 144.907 122.47 21.648 -v 145.117 121.757 22.002 -v 145.117 121.664 21.65 -v 144.813 120.763 22.002 -v 144.753 120.686 21.648 -v 144.14 120.243 22.002 -v 145.897 118.385 22.002 -v 144.845 117.819 22.002 -v 145.897 118.385 21.648 -v 146.79 119.151 21.648 -v 146.823 119.166 22.002 -v 154.308 122.346 22.014 -v 154.298 121.989 22.054 -v 154.483 122.663 22.01 -v 154.773 122.857 22.01 -v 157.24 122.852 22.009 -v 157.545 122.628 22.01 -v 166.88 121.66 22.002 -v 157.699 121.098 22.016 -v 157.697 121.422 22.053 -v 157.707 122.254 22.019 -v 157.512 120.753 22.01 -v 163.5 119.15 22.019 -v 157.225 120.56 22.01 -v 148.499 119.138 22.017 -v 149.056 117.626 21.2 -v 162.98 117.637 21.206 -v 162.936 117.8 20.895 -v 163.427 118.107 21.073 -v 163.453 117.983 21.407 -v 163.499 119.16 21.652 -v 148.545 118.154 21.1 -v 148.499 119.18 21.652 -v 148.57 117.933 21.378 -v 149.017 117.812 20.9 -v 165.173 119.166 21.648 -v 165.206 119.151 22.002 -v 167.089 120.947 22.002 -v 167.182 120.767 21.648 -v 166.88 121.757 21.648 -v 157.663 122.456 21.658 -v 157.442 121.29 21.802 -v 157.43 122.17 21.812 -v 157.32 122.803 21.66 -v 141.375 126.2 21.648 -v 142.883 126.63 21.648 -v 148.499 126.659 21.648 -v 167.089 122.47 21.648 -v 167.089 122.47 22.002 -v 167.57 123.037 22.002 -v 170.64 126.194 22.002 -v 168.578 123.327 22.002 -v 168.365 123.305 21.648 -v 167.652 123.09 21.648 -v 169.231 126.614 21.648 -v 169.193 123.172 21.648 -v 169.763 122.695 21.648 -v 170.101 121.925 21.648 -v 171.747 119.122 21.648 -v 173.277 121.741 21.648 -v 172.477 119.216 21.648 -v 171.82 119.166 22.002 -v 172.536 119.224 22.002 -v 172.894 119.466 21.648 -v 172.925 119.505 22.002 -v 170.085 122.022 22.002 -v 173.436 121.096 22.002 -v 173.277 121.676 22.002 -v 173.423 122.209 22.002 -v 173.423 122.209 21.648 -v 173.139 123.487 21.648 -v 173.079 123.638 22.002 -v 172.21 125.012 21.648 -v 170.786 126.121 21.648 -v 169.113 126.63 22.002 -v 163.499 126.966 22.169 -v 148.499 126.952 22.148 -v 148.456 126.995 22.35 -v 146.869 127.842 22.392 -v 148.467 126.987 27.505 -v 146.946 127.797 27.473 -v 146.537 128.034 27.08 -v 146.525 128.04 22.864 -v 146.69 128.353 22.906 -v 146.7 128.346 26.99 -v 146.997 128.172 22.415 -v 163.53 126.987 22.35 -v 163.54 126.995 27.505 -v 165.015 127.776 27.485 -v 164.878 128.101 27.472 -v 165.438 128.02 27.136 -v 165.285 128.34 27.08 -v 165.297 128.346 22.864 -v 165.48 128.046 22.903 -v 165.174 127.867 22.415 -v 164.954 128.146 22.392 -v 148.499 126.95 27.719 -v 147.04 128.147 27.458 -v 172.099 125.132 22.002 -v 169.566 122.93 22.002 -v 169.945 120.984 22.002 -v 169.9 120.898 21.648 -v 169.375 120.369 22.002 -v 170.899 118.385 22.002 -v 169.838 117.817 22.002 -v 170.899 118.385 21.648 -v 169.375 120.369 21.648 -v 169.692 117.77 21.648 -v 168.578 120.096 21.648 -v 168.676 120.104 22.002 -v 168.497 117.609 22.002 -v 167.305 117.77 22.002 -v 168.497 117.609 21.648 -v 167.16 117.817 21.648 -v 167.855 120.243 21.648 -v 166.099 118.385 21.648 -v 167.668 120.32 22.002 -v 166.099 118.385 22.002 -v 173.45 121.076 21.648 -v 142.765 126.614 22.002 -v 143.843 123.292 22.002 -v 143.418 123.327 21.648 -v 141.23 126.13 22.002 -v 138.718 121.741 22.002 -v 140.18 125.383 22.002 -v 139.244 124.276 22.002 -v 138.56 122.355 22.002 -v 138.543 122.378 21.648 -v 138.718 121.676 21.648 -v 138.547 121.07 22.002 -v 138.562 121.09 21.648 -v 139.075 119.502 21.648 -v 139.106 119.463 22.002 -v 139.46 119.224 21.648 -v 139.52 119.216 22.002 -v 140.177 119.166 21.648 -v 140.255 119.12 22.002 -v 142.456 120.471 22.002 -v 141.985 121.189 22.002 -v 142.046 120.998 21.648 -v 141.911 122.028 21.648 -v 141.895 121.931 22.002 -v 142.373 122.873 22.002 -v 143.107 123.26 22.002 -v 142.444 122.938 21.648 -v 141.103 118.385 21.648 -v 142.621 120.369 21.648 -v 142.158 117.818 21.648 -v 143.32 120.104 21.648 -v 143.499 117.609 21.648 -v 144.699 117.771 21.648 -v 143.499 117.609 22.002 -v 142.304 117.77 22.002 -v 143.418 120.096 22.002 -v 144.14 120.243 21.648 -v 141.103 118.385 22.002 -v 139.33 124.413 21.648 -v 140.18 125.383 21.648 -v 154.728 122.814 21.656 -v 154.347 122.423 21.661 -v 154.323 121.087 21.658 -v 154.57 122.115 21.818 -v 154.576 121.235 21.818 -v 154.75 121.34 22.096 -v 154.742 120.57 22.01 -v 154.443 120.812 22.01 -v 154.284 121.183 22.017 -v 154.734 122.448 22.364 -v 154.506 122.165 22.346 -v 155.118 122.485 22.433 -v 156.887 122.494 22.43 -v 157.241 122.463 22.364 -v 157.522 122.216 22.287 -v 157.488 121.266 22.352 -v 157.26 120.977 22.368 -v 154.982 120.957 22.438 -v 156.88 120.944 22.44 -v 154.716 120.98 22.347 -v 154.514 121.248 22.35 -v 154.914 122.153 22.573 -v 154.9 121.255 22.566 -v 157.083 121.264 22.572 -v 157.096 122.16 22.566 -v 157.352 122.143 22.452 -v 154.738 120.592 21.657 -v 157.276 120.614 21.658 -v 157.659 121.02 21.659 -v 157.352 120.91 21.75 -v 157.044 121.246 22.205 -v 154.958 121.25 22.21 -v 157.235 121.335 22.105 -v 157.248 122.086 22.092 -v 157.31 122.554 21.752 -v 157.014 122.643 21.75 -v 154.831 122.637 21.739 -v 154.65 122.52 21.746 -v 154.757 122.08 22.103 -v 154.962 122.171 22.207 -v 157.049 122.168 22.208 -v 154.692 120.831 21.731 -v 154.96 120.774 21.746 -v 157.168 120.78 21.737 -v 148.94 119.208 27.79 -v 148.905 119.137 27.596 -v 162.95 119.08 27.596 -v 162.985 119.202 27.793 -v 163.427 119.518 27.613 -v 148.557 119.583 27.596 -v -148.722 119.309 27.596 -v -148.548 119.56 27.601 -v -148.5 124.683 27.596 -v -149.017 119.202 27.793 -v -149.087 119.077 27.596 -v -162.917 119.185 27.802 -v -163.09 119.136 27.596 -v -163.463 119.517 27.611 -v -173.51 126.293 27.596 -v -163.5 124.683 27.596 -v -163.5 125.805 27.596 -v -148.5 125.805 27.596 -v -148.5 126.655 28.21 -v -163.5 126.677 28.215 -v -148.5 127.18 27.997 -v -163.5 127.222 27.948 -v -148.482 127.353 27.505 -v -163.52 127.354 27.504 -v -163.521 127.35 22.35 -v -148.48 127.355 22.35 -v -148.5 127.272 21.986 -v -163.5 127.147 21.805 -v -148.5 126.695 21.633 -v -163.5 126.67 21.997 -v -148.5 126.692 21.996 -v -167.26 122.751 22.002 -v -167.2 122.674 21.648 -v -166.886 121.757 22.002 -v -166.886 121.66 21.648 -v -167.192 120.758 22.002 -v -167.251 120.681 21.648 -v -167.857 120.243 22.002 -v -166.105 118.385 22.002 -v -167.16 117.817 22.002 -v -166.105 118.385 21.648 -v -165.212 119.15 21.648 -v -165.18 119.166 22.002 -v -157.733 121.984 22.018 -v -157.613 122.552 22.012 -v -157.228 122.856 22.01 -v -154.76 122.852 22.009 -v -154.451 122.626 22.01 -v -145.119 121.66 22.002 -v -154.297 121.144 22.018 -v -154.287 122.244 22.02 -v -154.484 120.752 22.01 -v -148.499 119.15 22.019 -v -154.777 120.56 22.01 -v -163.5 119.138 22.017 -v -162.941 117.626 21.2 -v -149.022 117.637 21.206 -v -149.066 117.8 20.895 -v -148.568 118.111 21.076 -v -148.543 117.985 21.408 -v -148.5 119.16 21.652 -v -163.458 118.153 21.1 -v -163.5 119.18 21.652 -v -163.436 117.937 21.38 -v -162.98 117.811 20.9 -v -146.825 119.166 21.648 -v -146.792 119.15 22.002 -v -144.91 120.947 22.002 -v -144.816 120.766 21.648 -v -145.119 121.757 21.648 -v -154.32 121.175 21.66 -v -154.456 122.213 21.708 -v -154.563 121.294 21.806 -v -154.678 122.53 21.756 -v -154.243 122.539 21.648 -v -154.71 122.824 21.658 -v -170.632 126.198 21.648 -v -169.114 126.63 21.648 -v -163.5 126.659 21.648 -v -144.748 122.744 21.648 -v -144.91 122.47 22.002 -v -144.43 123.035 22.002 -v -141.368 126.197 22.002 -v -143.633 123.305 22.002 -v -142.9 123.212 22.002 -v -143.844 123.292 21.648 -v -142.771 126.614 21.648 -v -142.81 123.173 21.648 -v -142.24 122.695 21.648 -v -141.895 121.923 21.648 -v -140.259 119.12 21.648 -v -138.726 121.741 21.648 -v -139.523 119.216 21.648 -v -140.178 119.166 22.002 -v -139.462 119.224 22.002 -v -139.104 119.466 21.648 -v -139.073 119.506 22.002 -v -141.91 122.02 22.002 -v -138.561 121.099 22.002 -v -138.726 121.676 22.002 -v -138.575 122.209 22.002 -v -138.56 122.347 21.648 -v -138.914 123.618 22.002 -v -139.25 124.282 21.648 -v -141.222 126.124 21.648 -v -142.89 126.63 22.002 -v -148.5 126.966 22.169 -v -163.5 126.952 22.148 -v -163.543 126.994 22.35 -v -165.135 127.843 22.393 -v -163.532 126.986 27.505 -v -165.052 127.796 27.473 -v -165.464 128.032 27.084 -v -165.476 128.04 22.864 -v -165.311 128.353 22.914 -v -165.301 128.348 26.984 -v -165.002 128.173 22.416 -v -148.467 126.987 22.35 -v -148.457 126.995 27.505 -v -146.989 127.775 27.485 -v -147.125 128.1 27.473 -v -146.56 128.02 27.138 -v -146.713 128.339 27.082 -v -146.701 128.346 22.864 -v -146.539 128.033 22.776 -v -147.045 128.146 22.393 -v -146.945 127.8 22.38 -v -148.5 126.929 27.743 -v -163.5 126.95 27.719 -v -163.5 126.677 27.857 -v -148.5 126.643 27.86 -v -164.958 128.146 27.458 -v -139.902 125.137 22.002 -v -140.181 125.383 21.648 -v -142.24 122.695 22.002 -v -142.052 120.989 22.002 -v -142.098 120.903 21.648 -v -142.627 120.369 22.002 -v -141.103 118.385 22.002 -v -142.157 117.818 22.002 -v -141.103 118.385 21.648 -v -142.627 120.369 21.648 -v -142.303 117.77 21.648 -v -143.418 120.095 21.648 -v -143.321 120.104 22.002 -v -143.501 117.609 22.002 -v -144.698 117.77 22.002 -v -143.501 117.609 21.648 -v -144.844 117.817 21.648 -v -144.141 120.243 21.648 -v -145.9 118.385 21.648 -v -144.331 120.321 22.002 -v -145.9 118.385 22.002 -v -138.547 121.079 21.648 -v -169.233 126.614 22.002 -v -168.155 123.291 22.002 -v -168.06 123.268 21.648 -v -169.104 123.212 21.648 -v -170.777 126.126 22.002 -v -173.279 121.741 22.002 -v -171.821 125.383 22.002 -v -172.766 124.26 22.002 -v -173.445 122.347 22.002 -v -173.43 122.209 21.648 -v -173.279 121.676 21.648 -v -173.457 121.079 22.002 -v -173.443 121.099 21.648 -v -172.93 119.505 21.648 -v -172.9 119.466 22.002 -v -172.542 119.225 21.648 -v -172.482 119.216 22.002 -v -171.825 119.166 21.648 -v -171.746 119.12 22.002 -v -169.554 120.479 22.002 -v -170.086 121.376 22.002 -v -169.956 120.994 21.648 -v -170.086 122.039 21.648 -v -169.952 122.436 22.002 -v -169.194 123.173 22.002 -v -169.765 122.695 21.648 -v -170.9 118.385 21.648 -v -169.377 120.369 21.648 -v -169.852 117.82 21.648 -v -168.684 120.104 21.648 -v -168.503 117.609 21.648 -v -167.306 117.77 21.648 -v -168.832 117.604 22.002 -v -168.587 120.096 22.002 -v -167.857 120.243 21.648 -v -170.483 118.099 22.002 -v -173.087 123.628 21.648 -v -172.083 125.152 21.648 -v -157.228 122.826 21.655 -v -157.633 122.503 21.66 -v -157.679 121.091 21.658 -v -157.443 122.14 21.802 -v -157.43 121.228 21.81 -v -157.247 121.347 22.103 -v -157.34 120.866 21.735 -v -157.258 120.57 22.01 -v -157.549 120.792 22.01 -v -157.72 121.182 22.015 -v -157.266 122.45 22.362 -v -157.49 122.157 22.35 -v -156.887 122.485 22.433 -v -155.112 122.494 22.43 -v -154.755 122.464 22.362 -v -154.477 122.212 22.285 -v -154.522 121.264 22.36 -v -154.732 120.977 22.365 -v -157.014 120.957 22.439 -v -155.117 120.944 22.44 -v -157.279 120.974 22.346 -v -157.48 121.258 22.354 -v -157.083 122.152 22.573 -v -157.097 121.256 22.566 -v -154.922 121.265 22.573 -v -154.909 122.159 22.567 -v -154.645 122.143 22.451 -v -157.268 120.594 21.657 -v -154.602 120.642 21.656 -v -154.641 120.91 21.745 -v -154.961 121.246 22.206 -v -157.045 121.25 22.209 -v -154.766 121.327 22.102 -v -154.72 122.083 22.056 -v -154.95 122.65 21.748 -v -157.168 122.636 21.74 -v -157.36 122.517 21.743 -v -157.04 122.172 22.206 -v -154.96 122.167 22.21 -v -157.244 122.077 22.103 -v -157.037 120.777 21.749 -v -154.83 120.781 21.738 -v -173.508 126.712 25.603 -v -175.413 126.329 25.598 -v -175.253 125.945 27.596 -v -178.082 121.706 27.596 -v -177.737 123.465 27.596 -v -178.082 85.16 27.596 -v -178.5 121.709 25.598 -v -178.5 -146.789 25.599 -v -178.081 -146.787 27.596 -v -177.737 -148.545 27.596 -v -176.743 -150.03 27.596 -v -177.04 -150.327 25.598 -v -175.413 -151.409 25.598 -v -175.253 -151.025 27.596 -v -173.503 -151.79 25.602 -v -173.503 -151.374 27.596 -v -162.88 -144.425 27.596 -v -162.351 -144.154 27.596 -v -162.348 -144.283 27.864 -v -149.49 -144.31 27.85 -v -163.202 -144.788 27.596 -v -148.78 -144.758 27.602 -v -163.5 -149.505 27.596 -v -149.671 -144.13 27.596 -v 175.251 -151.025 23.598 -v -176.743 -150.03 23.598 -v -173.504 -151.374 23.598 -v -175.253 -151.025 23.598 -v -177.737 -148.545 23.598 -v -178.082 -146.785 23.598 -v -178.082 121.704 23.598 -v -176.743 124.95 23.598 -v -175.253 125.945 23.598 -v -177.04 125.247 25.598 -v -178.121 123.625 25.598 -v -176.743 124.95 27.596 -v -178.121 -148.705 25.598 -v -148.5 -150.805 27.596 -v -148.5 -151.706 27.873 -v -163.5 -150.805 27.596 -v -163.5 -151.755 27.88 -v -163.5 -151.661 28.277 -v -148.5 -149.505 27.596 -v -148.5 -151.73 28.273 -v -163.5 -152.13 28.126 -v -148.5 -152.292 27.995 -v -163.5 -152.397 27.794 -v -148.5 -152.037 27.62 -v -163.5 -152.025 27.635 -v -148.5 -152.039 22.35 -v -163.5 -151.99 22.129 -v -148.5 -151.898 22.035 -v -163.5 -152.137 21.731 -v -148.5 -152.306 21.899 -v -148.5 -151.882 21.618 -v -163.5 -151.689 22.002 -v -171.957 -147.284 22.002 -v -172.64 -148.164 22.002 -v -174.133 -151.66 22.002 -v -163.5 -151.689 21.598 -v -174.253 -151.642 21.598 -v -175.321 -151.34 22.002 -v -175.832 -151.125 21.598 -v -176.467 -150.715 22.002 -v -177.283 -149.938 21.598 -v -177.495 -149.633 22.002 -v -178.113 -148.505 22.002 -v -177.961 -148.827 21.598 -v -178.384 -147.381 21.598 -v -178.397 -147.02 22.002 -v -178.304 -145.722 22.002 -v -178.265 -145.559 21.598 -v -177.686 -144.262 22.002 -v -177.672 -144.255 21.598 -v -176.735 -144.232 22.002 -v -176.724 -144.227 21.598 -v -175.006 -146.178 21.598 -v -174.254 -145.353 21.598 -v -174.785 -145.797 22.002 -v -175.85 -143.407 22.002 -v -176.087 -143.605 21.598 -v -174.989 -142.95 21.598 -v -173.85 -145.207 22.002 -v -170.278 -144.227 22.002 -v -172.953 -145.285 22.002 -v -173.152 -145.207 21.598 -v -172.293 -145.71 22.002 -v -172.226 -145.79 21.598 -v -171.923 -146.513 22.002 -v -171.878 -146.847 21.598 -v -170.267 -144.232 21.598 -v -172.302 -147.88 21.598 -v -163.5 -144.217 22.02 -v -163.5 -144.216 21.606 -v -148.5 -144.147 21.59 -v -148.5 -144.048 21.985 -v -163.474 -142.815 21.292 -v -163.46 -142.96 20.915 -v -148.523 -143.034 20.958 -v -148.539 -142.778 21.27 -v -148.887 -142.395 20.589 -v -148.95 -142.142 20.902 -v -149.63 -142.023 20.372 -v -149.683 -141.812 20.712 -v -162.313 -142.01 20.365 -v -162.383 -141.826 20.72 -v -163.101 -142.185 20.927 -v -163.042 -142.333 20.553 -v -171.154 -143.405 21.598 -v -170.915 -143.605 22.002 -v -172.01 -142.953 22.002 -v -172.639 -142.762 21.598 -v -173.571 -142.67 22.002 -v -173.9 -142.707 21.598 -v -174.685 -142.863 22.002 -v -173.276 -148.396 21.598 -v -173.501 -148.39 22.002 -v -174.269 -148.218 22.002 -v -174.358 -148.166 21.598 -v -175.044 -147.295 21.598 -v -175.009 -147.391 22.002 -v -175.08 -146.513 22.002 -v -163.5 -152.423 22.158 -v -148.453 -152.427 22.35 -v -148.444 -152.435 27.519 -v -148.133 -152.125 27.518 -v -144.363 -156.433 27.494 -v -144.323 -156.473 22.39 -v -143.543 -157.254 23.523 -v -143.553 -157.243 26.4 -v -144.032 -156.198 27.479 -v -143.524 -156.704 27.065 -v -143.257 -156.97 26.322 -v -144.08 -156.15 22.375 -v -143.267 -156.961 23.479 -v -143.565 -156.663 22.748 -v -143.8 -156.995 22.817 -v -148.141 -152.127 22.35 -v -143.846 -156.949 27.118 -v 173.5 -151.374 23.598 -v 176.74 -150.03 23.598 -v -162.883 -144.507 27.748 -v 148.499 -152.247 28.047 -v 163.499 -152.351 27.933 -v 148.444 -152.436 27.519 -v 163.499 -151.998 27.707 -v 163.495 -152.443 27.183 -v 163.493 -152.039 27.18 -v 163.392 -152.039 26.891 -v 148.499 -152.039 27.518 -v 148.499 -152.041 22.273 -v 163.41 -152.039 23.004 -v 163.495 -152.039 22.686 -v 163.499 -151.98 22.108 -v 148.499 -151.798 22.012 -v 148.499 -151.922 21.63 -v 148.499 -152.337 21.945 -v 163.499 -152.091 21.7 -v 163.499 -152.41 22.117 -v 163.499 -151.689 22.002 -v 163.499 -144.186 22.019 -v 148.499 -144.049 21.98 -v 148.524 -142.815 21.291 -v 148.499 -144.149 21.592 -v 148.538 -142.96 20.914 -v 149.692 -142.01 20.365 -v 148.958 -142.331 20.553 -v 149.62 -141.826 20.719 -v 162.323 -141.813 20.712 -v 162.376 -142.023 20.373 -v 163.474 -143.018 20.95 -v 163.101 -142.387 20.585 -v 163.46 -142.766 21.263 -v 163.499 -144.226 21.608 -v 163.499 -151.689 21.598 -v 174.134 -151.66 21.598 -v 170.276 -144.227 21.598 -v 171.958 -147.298 21.598 -v 172.642 -148.166 21.598 -v 173.726 -148.396 21.598 -v 174.529 -148.017 21.598 -v 175.002 -147.39 21.598 -v 176.731 -144.231 21.598 -v 174.254 -151.642 22.002 -v 170.265 -144.232 22.002 -v 171.996 -146.175 21.598 -v 172.747 -145.353 21.598 -v 172.214 -145.799 22.002 -v 171.15 -143.407 22.002 -v 170.913 -143.605 21.598 -v 172.011 -142.95 21.598 -v 173.15 -145.207 22.002 -v 176.718 -144.226 22.002 -v 174.05 -145.285 22.002 -v 173.85 -145.207 21.598 -v 174.71 -145.712 22.002 -v 174.776 -145.792 21.598 -v 175.071 -146.513 22.002 -v 175.071 -146.513 21.598 -v 175.037 -147.293 22.002 -v 174.362 -148.164 22.002 -v 177.802 -149.173 22.002 -v 176.883 -150.335 22.002 -v 177.158 -150.079 21.598 -v 178.122 -148.474 21.598 -v 178.414 -146.638 21.598 -v 178.129 -145.187 21.598 -v 177.682 -144.261 21.598 -v 175.68 -151.202 21.598 -v 175.828 -151.125 22.002 -v 173.499 -148.39 22.002 -v 172.731 -148.218 22.002 -v 171.994 -147.395 22.002 -v 177.67 -144.255 22.002 -v 178.129 -145.187 22.002 -v 176.087 -143.605 21.598 -v 176.087 -143.605 22.002 -v 174.978 -142.949 22.002 -v 175.11 -143.003 21.598 -v 173.572 -142.67 21.598 -v 173.429 -142.67 22.002 -v 172.315 -142.863 22.002 -v 178.406 -146.472 22.002 -v 178.26 -147.943 22.002 -v 171.923 -146.513 22.002 -v 163.039 -142.133 20.897 -v 148.898 -142.184 20.926 -v 148.425 -152.437 22.35 -v 148.131 -152.124 22.35 -v 148.104 -152.142 27.518 -v 144.075 -156.155 27.493 -v 144.315 -156.478 27.479 -v 143.565 -156.661 27.123 -v 143.801 -156.99 27.058 -v 143.265 -156.961 26.385 -v 143.539 -157.256 26.332 -v 143.549 -157.244 23.469 -v 143.255 -156.97 23.542 -v 144.035 -156.195 22.39 -v 144.363 -156.43 22.375 -v 143.842 -156.95 22.752 -v 143.52 -156.707 22.81 -v 163.39 -152.443 22.97 -v 163.411 -152.443 26.858 -v 163.493 -152.443 22.688 +v -13.101 23.287001 3.498004 +v -127.580002 -114.865997 3.719981 +v -11.826 22.916 3.764004 +v -13.151 25.948999 3.712004 +v -14.85 27.586 3.498004 +v -11.818 23.417 3.749004 +v -10.676 23.441 4.474004 +v -12.26 26.285 4.322004 +v -11.643 26.517 5.244004 +v -10.085 23.469 5.265004 +v -11.385 26.614998 6.342004 +v -12.361 29.527 5.244005 +v -13.015 29.452999 4.322005 +v -12.967 32.705002 4.322005 +v -13.913 32.84 3.712005 +v -13.961 29.347 3.712005 +v -14.856 34.333 3.498005 +v -127.341003 119.044998 3.498019 +v -76.349998 119.044998 3.498019 +v -128.123993 119.968002 3.65002 +v -128.970001 120.353996 4.03902 +v -129.251999 120.033997 4.206019 +v -128.436005 119.577003 3.712019 +v -128.477005 -114.625999 3.720981 +v -127.341003 -112.832001 3.497982 +v -128.735992 -116.806999 4.252981 +v -128.050995 -116.948997 4.443981 +v -127.617996 -116.919998 4.717981 +v -10.716 22.68 4.505004 +v -10.366 22.292999 5.300004 +v -10.147 22.815001 5.196004 +v -9.811 23.416998 6.102004 +v -10.087 24.099998 6.155004 +v -10.713 26.676996 18.312004 +v -12.09 29.549997 6.333005 +v -11.439 29.583996 18.307005 +v -12.317 32.617001 5.244005 +v -12.046 32.595001 6.333005 +v -11.386 32.579998 18.310005 +v -11.26 35.494999 6.342006 +v -11.511 35.599998 5.244006 +v -12.123 35.848999 4.322006 +v -13.007 36.209 3.712006 +v -11.558 38.966999 3.726007 +v -12.877 38.868999 3.498006 +v -75.980003 119.802002 3.60202 +v -75.666 119.917999 3.77002 +v -128.445999 120.875999 4.140019 +v -129.050003 121.693001 5.17202 +v -129.606995 121.309998 5.09002 +v -129.919998 120.892998 5.13802 +v -129.899994 121.597 6.30802 +v -129.270004 121.980003 6.30102 +v -129.654999 122.193001 11.22802 +v -130.326996 121.751999 12.03302 +v -130.328995 120.945 6.40602 +v -130.710007 120.913002 13.42202 +v -130.330002 122.103996 12.47102 +v -130.701996 127.210999 13.266021 +v -130.488007 127.485001 12.654021 +v -130.953003 140.261993 18.055023 +v -130.953003 -118.632004 18.05298 +v -130.335007 -116.946999 6.337981 +v -130.080002 120.427002 5.28002 +v -129.352005 -116.490997 4.401981 +v -129.776993 -116.169998 4.743981 +v -130.005005 -117.370003 5.433981 +v -129.514999 -117.808998 5.253981 +v -128.875 -118.040001 5.253981 +v -129.671005 -118.177002 6.199981 +v -130.156998 -117.642998 6.249981 +v -130.815002 -119.386002 18.350981 +v -130.487 -120.177002 18.753981 +v -130.337997 -119.946999 18.40398 +v -131.070007 -119.507004 18.745981 +v -130.675995 -120.508003 18.964981 +v -131.389999 -119.713997 18.963982 +v -133.057007 -126.758003 18.999979 +v -129.667999 -120.883003 18.974981 +v -134.041 -127.132004 18.857979 +v -133.429993 -126.223999 18.92898 +v -139.072998 -132.869995 18.677979 +v -138.764008 -133.201996 18.958979 +v -138.166 -134.585007 18.996979 +v -6.968 20.649996 18.722004 +v -7.174 20.894997 18.927004 +v -137.929993 -134.977997 18.906977 +v -6.608 20.541996 18.319004 +v -7.04 20.235996 18.418003 +v -6.288 19.793999 6.102004 +v -6.142 20.728996 18.344004 +v -5.608 19.939999 6.113003 +v -5.627 20.747995 18.324003 +v -1.883 18.932999 6.342003 +v -5.087 20.129997 11.302003 +v -2.607 19.009998 6.342003 +v -2.665 18.749001 5.244003 +v -5.528 19.669001 5.270003 +v -5.464 19.096001 4.486003 +v -6.197 19.5 5.196003 +v -6.223 18.917999 4.503003 +v -6.657 19.187 5.270003 +v -2.805 18.103001 4.322003 +v -0.001 18.457001 5.244003 +v -0.001 18.728998 6.342003 +v 2.536 19.038998 6.512003 +v 1.751 19.511995 18.299004 +v -1.786 19.526997 18.320004 +v -5.806 21.049995 18.713003 +v -8.61 22.088997 18.928003 +v -127.822998 -119.998001 18.929981 +v -8.296 21.876997 18.998003 +v -128.070007 -119.796997 18.724981 +v -128.710007 -120.470001 18.87298 +v -128.050003 -120.800003 18.99798 +v -7.405 21.195995 18.998003 +v -129.656998 -120.476997 18.753981 +v -129.638 -120.206001 18.399981 +v -128.990997 -118.425003 6.199981 +v -128.891998 -120.089996 18.366982 +v -128.279999 -118.327003 6.249981 +v -128.220001 -118.027 5.433981 +v -127.681 -117.759003 5.758981 +v -127.654999 -117.363998 5.261981 +v -10.137 22.199999 6.149004 +v -9.842 22.775997 6.093004 +v -9.335 22.183996 18.040005 +v -8.944 23.091995 18.348003 +v -9.043 22.599997 18.326004 +v -9.022 23.621996 18.333004 +v -10.453 26.759996 18.726004 +v -11.167 29.594995 18.726006 +v -10.756 29.579996 18.968006 +v -10.985 32.438995 18.861006 +v -10.219 35.216995 18.861006 +v -10.566 35.438995 18.333006 +v -8.805 38.436996 18.322006 +v -9.598 38.59 6.124006 +v -8.716 38.957996 18.348005 +v -9.605 39.286999 6.084006 +v -9.877 38.59 5.264006 +v -9.91 39.259998 5.196006 +v -10.12 39.785999 5.292006 +v -74.556999 121.362999 5.555019 +v -75.240997 120.959999 4.343019 +v -10.478 39.370998 4.492006 +v -10.45 38.640999 4.484006 +v -75.809998 121.148003 4.36602 +v -75.695 121.961998 5.67002 +v -75.043999 121.822998 5.66802 +v -75.623001 122.350998 11.72302 +v -77.32 122.597 11.72402 +v -75.835999 122.599998 12.07802 +v -77.241997 122.984001 11.97602 +v -129.307007 122.584 11.72202 +v -129.294998 122.334999 11.36002 +v -77.264999 122.331001 11.31802 +v -129.658997 122.343002 11.69802 +v -129.766998 122.82 12.08502 +v -129.929993 127.522003 12.153021 +v -130.628006 128.115005 12.037021 +v -130.593994 128.25 11.285021 +v -130.505005 130.973007 9.500021 +v -130.335007 139.710007 6.334023 +v -131.044006 140.255997 18.422024 +v -131.042999 -118.636002 18.41798 +v -130.248001 -116.82 5.752981 +v -131.264008 -118.633003 18.72698 +v -131.580002 -118.629997 18.929981 +v -131.951996 -118.624001 18.99798 +v -133.425003 138.167007 18.930023 +v -133.742996 -126.171997 18.72798 +v -134.347 -126.835999 18.309978 +v -133.962006 -126.135002 18.41898 +v -134.054993 -126.146004 18.049978 +v -139.126007 -132.514008 18.257978 +v -139.242004 -132.759003 18.23798 +v -139.171997 -133.052994 18.451979 +v -138.981995 -133.311005 18.77298 +v -138.425003 -135.050995 18.587976 +v -138.300003 -134.917999 18.846977 +v -138.123001 -135.309998 18.649977 +v -137.746002 -135.257996 18.668978 +v -6.97 20.177996 18.052004 +v -137.572006 -135.339996 18.393976 +v -6.809 19.397999 6.151003 +v -136.681 -135.779999 5.235978 +v -136.076996 -136.078003 4.324978 +v -5.628 17.973 3.736003 +v -135.285995 -136.653 3.706978 +v -1.68 -8.840001 3.497998 +v -5.268 16.601 3.498003 +v -134.104004 -136.921997 3.497977 +v -1.574 -16.17 3.500997 +v -1.415 -8.944001 3.574999 +v -1.215 -16.108 3.758997 +v -1.252 -9.170001 3.823998 +v -1.023 -8.388 3.513999 +v -3.015 17.17 3.712003 +v -0.001 16.847 3.712003 +v -0.001 17.797001 4.322003 +v 2.805 18.103001 4.322003 +v 2.663 18.749001 5.244003 +v 5.479 19.087999 4.475003 +v 5.541 19.676001 5.270003 +v 5.605 19.939999 6.089004 +v 5.085 20.129997 11.302003 +v 5.627 20.749996 18.326004 +v 1.723 19.786997 18.726004 +v 5.831 21.063995 18.724005 +v 1.713 20.199997 18.968004 +v -1.625 20.168997 18.961004 +v -5.773 21.752996 18.998003 +v 0.05 21.715996 18.973003 +v -3.093 22.252996 18.973003 +v -1.73 19.786997 18.726004 +v -5.79 21.374996 18.926004 +v -5.869 23.811996 18.980003 +v -7.974 23.569996 18.998003 +v -8.886 22.254995 18.719004 +v -128.233002 -119.648003 18.419981 +v -128.304993 -119.591003 18.04998 +v -9.274 22.109997 18.422005 +v -127.690002 -117.906998 6.341981 +v -8.677 23.469995 18.722004 +v -8.351 23.507996 18.928003 +v -10.07 26.854996 18.961004 +v -7.924 26.259996 18.973003 +v -7.591 26.512997 18.726004 +v -5.635 24.182997 18.726004 +v -7.36 26.665997 18.305004 +v -5.476 24.397997 18.335003 +v -7.787 30.140999 6.300005 +v -8.323 29.874996 18.052006 +v -8.371 29.433996 18.333006 +v -7.011 27.366999 6.398004 +v -6.775 27.523001 5.244004 +v -5.097 25.305 5.244004 +v -5.281 25.099998 6.342004 +v -2.733 23.839001 5.244004 +v -2.825 23.589998 6.320004 +v -0.001 23.329 5.244004 +v -0.001 23.056997 6.342004 +v 2.73 23.839001 5.244004 +v 2.818 23.587997 6.317004 +v 5.095 25.305 5.244004 +v 5.279 25.099998 6.342004 +v 6.769 27.523001 5.244004 +v 7.005 27.369999 6.384004 +v 7.786 30.151999 6.290005 +v 7.53 30.195 5.244005 +v 6.875 30.254999 4.322005 +v 6.18 27.813 4.322005 +v 5.925 30.347 3.712005 +v 5.327 28.24 3.712004 +v 4.653 25.789 4.322004 +v 4.007 26.493 3.712004 +v 2.493 24.455 4.322004 +v 2.149 25.343 3.712004 +v -0.001 23.989 4.322004 +v -0.001 24.940001 3.712004 +v -2.495 24.455 4.322004 +v -2.151 25.343 3.712004 +v -4.655 25.789 4.322004 +v -4.013 26.493 3.712004 +v -6.183 27.813 4.322005 +v -7.533 30.195 5.244005 +v -6.877 30.254999 4.322005 +v -5.33 28.24 3.712004 +v -5.931 30.347 3.712005 +v -4.335 28.735001 3.498005 +v -4.862 31.527 3.497005 +v 4.9 31.174999 3.498005 +v -3.175 34.630001 3.497006 +v -4.751 34.48 3.712006 +v -5.727 32.52 3.712005 +v -5.513 35.053001 4.322006 +v -6.645 32.783001 4.322005 +v -6.037 35.450001 5.244006 +v -7.28 32.963001 5.244005 +v -7.52 33.041 6.274005 +v -8.365 32.382996 18.332006 +v -7.785 33.844997 18.052006 +v -7.352 35.150997 18.329006 +v -8.63 32.412994 18.726006 +v -8.63 29.369997 18.726006 +v -9.026 29.256996 18.968004 +v -9.041 32.439995 18.968006 +v -7.591 35.269997 18.726006 +v -7.962 35.437996 18.968006 +v -10.295 33.529995 18.999006 +v -7.792 38.364998 18.998005 +v -5.97 37.905994 18.985006 +v -8.155 38.471996 18.926006 +v -8.47 38.557995 18.715006 +v -8.339 39.925995 18.930006 +v -8.625 39.771996 18.727005 +v -8.81 39.449997 18.315006 +v -9.89 39.880001 6.150007 +v -74.265999 121.844002 13.42402 +v -99.811996 154.509003 18.051025 +v -99.699997 154.509003 18.420025 +v -99.421997 154.509003 18.724026 +v -98.985001 154.509003 18.941025 +v -100.599998 154.509003 6.342025 +v -95.081001 154.509003 6.342025 +v -100.943001 154.509003 5.244025 +v -94.731003 154.509003 5.244025 +v -93.890999 154.509003 4.322025 +v -92.672997 154.509003 3.712025 +v -101.782997 154.509003 4.322025 +v -91.257004 154.509003 3.498025 +v -56.632999 154.509003 2.5e-05 +v -103.000999 154.509003 3.712025 +v -104.417 154.509003 3.498025 +v -108.510002 154.507996 3.502025 +v -153.007004 154.509003 2.5e-05 +v -132.039993 154.509003 3.498025 +v -121.466003 154.509995 3.560025 +v -111.369003 154.509003 4.357025 +v -110.075996 154.509003 3.703025 +v -110.813004 132.029999 3.498021 +v -119.351997 143.604004 3.498023 +v -127.341003 132.029999 3.498021 +v -130.951996 132.399994 1.409022 +v -128.453003 131.992996 3.712021 +v -110.410004 132.438004 1.325022 +v -110.120003 132.718994 0.804022 +v -110.096001 125.163002 0.77802 +v -131.524994 124.955002 0.54802 +v -132.160995 124.319 0.14002 +v -132.126007 133.563004 0.160022 +v -132.899994 134.326996 2.2e-05 +v -108.516998 134.326996 2.2e-05 +v -132.899994 123.577003 2e-05 +v -153.007004 137.397003 2.2e-05 +v -159.912994 131.070999 0.020021 +v -155.544998 138.052002 0.350022 +v -155.119995 139.287994 0.310023 +v -155.740005 154.509003 0.524025 +v -153.800003 154.509003 3.856025 +v -151.945007 154.509003 3.498025 +v -151.955994 143.798996 3.499023 +v -153.281998 142.901993 3.682023 +v -149.927002 142.692993 3.712023 +v -149.921005 141.737 4.322023 +v -143.565002 143.186996 3.712023 +v -143.412994 142.244995 4.322023 +v -138.067993 144.162003 3.837023 +v -139.369995 145.117996 3.494024 +v -141.996994 154.509003 3.712025 +v -143.201004 154.509003 3.498025 +v -140.970001 154.509003 4.322025 +v -133.237 154.509003 3.712025 +v -129.822998 149.126999 3.497024 +v -130.570007 147.630005 3.809024 +v -131.242004 146.936005 4.445024 +v -130.462006 146.662994 4.294024 +v -130.031998 147.522995 3.830024 +v -126.75 149.753006 3.712024 +v -126.214996 148.957001 4.322024 +v -122.970001 152.600006 3.712025 +v -122.352997 151.878998 4.322025 +v -119.722 154.509003 4.192025 +v -114.735001 151.509003 5.244025 +v -112.358002 154.509003 5.572025 +v -114.93 151.695007 6.342025 +v -119.184998 147.317001 5.244024 +v -118.766998 146.807007 4.322024 +v -114.25 151.059006 4.322025 +v -118.154999 146.074997 3.712024 +v -113.555 150.408997 3.712024 +v -123.271004 142.356995 3.712023 +v -127.349998 138.800003 3.498023 +v -128.156006 139.294998 3.620023 +v -129.050995 139.496994 4.042023 +v -129.410004 131.884995 4.322021 +v -129.653 139.848007 4.626023 +v -130.186996 131.682007 5.473022 +v -130.544006 128.246002 8.700021 +v -130.505005 128.343002 9.500021 +v -125.961998 128.324005 8.897021 +v -125.927002 128.108002 8.605021 +v -130.556 127.962997 8.515021 +v -112.919998 128.059998 8.550021 +v -118.077003 128.106995 8.599021 +v -112.892998 128.326996 8.956021 +v -118.036003 128.332001 8.940021 +v -112.983002 128.225006 11.304021 +v -112.889999 125.943001 8.514021 +v -112.985001 125.855003 11.310021 +v -113.263 127.948997 11.724021 +v -113.263 125.580002 11.72402 +v -113.652 127.541 11.962021 +v -113.683998 125.171997 11.97002 +v -80.373001 125.609001 11.72202 +v -80.414001 125.862999 11.328021 +v -79.567001 126.177002 11.553021 +v -79.321999 125.917 11.880021 +v -78.966003 126.246002 12.065021 +v -78.956001 125.638 12.00302 +v -76.041 123.019997 12.25902 +v -78.847 127.023003 12.489021 +v -79.296997 126.610001 11.651021 +v -79.077003 127.287003 12.225021 +v -79.785004 127.305 6.24402 +v -79.654999 126.318001 11.087021 +v -111.313004 126.139 6.342021 +v -81.293999 126.183998 5.90802 +v -111.120003 126.410004 5.24402 +v -110.440002 125.519997 1.41502 +v -110.959999 127.067001 4.322021 +v -110.834 128.285995 3.617021 +v -83.263 128.119995 3.680021 +v -83.533997 128.798004 3.525021 +v -82.751999 128.921997 3.710021 +v -81.165001 128.399994 4.314021 +v -80.125 128.182007 5.337021 +v -80.141998 128.617996 5.950021 +v -79.779999 127.964996 6.278021 +v -80.150002 127.448997 5.226021 +v -80.074997 126.703003 6.24402 +v -80.415001 126.897003 5.22602 +v -80.591003 126.290001 6.27802 +v -80.982002 126.425003 5.352021 +v -81.803001 127.106003 4.313021 +v -81.319 127.722 4.187021 +v -79.279999 128.175003 13.400021 +v -74.741997 122.213997 12.82502 +v -74.446999 121.471001 6.34302 +v -130.959 125.503998 1.39202 +v -131.488007 132.927994 0.593022 +v -109.415001 133.429001 0.212022 +v -111.871002 125.974998 9.500021 +v -130.554993 125.919998 8.502021 +v -129.365005 122.987999 11.97202 +v -80.296997 125.213997 11.96302 +v -129.227997 127.531998 11.976021 +v -129.802994 127.874001 11.880021 +v -129.832993 128.143997 11.540021 +v -126.233002 128.255997 11.086021 +v -125.177002 129.085007 2.498021 +v -127.722 130.378006 23.233021 +v -118.824997 129.085007 2.498021 +v -116.275002 130.397003 23.270021 +v -127.752998 130.723007 23.49402 +v -116.25 130.742996 23.497021 +v -116.25 129.227005 23.500021 +v -87.711998 132.119003 23.482021 +v -87.484001 131.899994 23.47702 +v -86.514999 131.886993 23.490021 +v 71.863998 139.011993 23.496023 +v -86.264999 132.115997 23.496021 +v -72.112999 138.785995 23.495024 +v 71.828003 140.011002 23.500023 +v 71.996002 139.947006 23.365023 +v 72.012001 139.057007 23.304024 +v 72.116997 138.794006 23.487022 +v 86.278 132.117004 23.486021 +v -116.000999 128.686996 25.500021 +v -143.748993 130.166 25.500021 +v -128.001007 128.686996 25.500021 +v -117.742996 128.205002 11.324021 +v -127.767998 129.292999 23.565022 +v -142.996994 129.212997 23.694021 +v -143.156006 128.705994 25.500021 +v -143.110001 129.518005 23.513021 +v -143.240005 129.518005 23.61902 +v -143.035004 130.677002 23.500021 +v -156.509995 131.854004 23.492022 +v -157.490005 131.897995 23.479021 +v -168.970001 130.677002 23.500021 +v -157.707993 132.115005 23.480021 +v -171.884995 138.796005 23.480022 +v -172.110001 139.022003 23.482023 +v -168.869995 129.432999 23.538021 +v -174.449997 129.501999 23.483021 +v -172.108002 139.994995 23.478024 +v -174.345993 147.695007 23.505024 +v -174.723007 129.666 23.186022 +v -174.593002 147.694 23.366024 +v -174.723999 147.673004 23.150024 +v -174.921997 130.938995 18.705021 +v -174.944 131.744003 18.007021 +v -174.940002 150.117996 17.861025 +v -174.699997 149.714005 23.818026 +v 174.345001 147.677994 23.503025 +v -174.227997 149.541 24.106026 +v 174.222 149.537994 24.105024 +v 174.335007 150.886002 25.496025 +v 174.490005 149.576004 24.048025 +v 174.697998 147.729004 23.251024 +v 174.434998 129.496002 23.486021 +v 168.720001 130.436996 23.58502 +v 168.966995 130.677002 23.500021 +v 168.869003 129.432007 23.540022 +v 172.106995 139.020004 23.482023 +v 87.444 147.266998 23.500025 +v -156.615005 147.255997 23.500025 +v -157.485001 147.119995 23.480024 +v -157.716003 146.891006 23.480024 +v -171.889008 140.220993 23.482023 +v -171.990005 139.063995 23.312023 +v -171.845993 138.919998 23.304024 +v -157.748993 138.886002 23.348022 +v -157.729996 138.733994 23.472023 +v -157.589996 132.171997 23.312021 +v -157.447006 132.018005 23.312021 +v -156.576996 132.007004 23.360022 +v -156.285995 132.123001 23.480021 +v -87.792999 138.723999 23.492023 +v -156.212997 138.776993 23.478024 +v -87.587997 132.169998 23.313021 +v -87.448997 132.020004 23.31002 +v 86.239998 140.132996 23.354023 +v 72.099998 140.240997 23.496023 +v 86.220001 140.283005 23.484022 +v 72.148003 140.100006 23.312023 +v 86.274002 140.074997 19.140022 +v 72.182999 140.046997 19.150023 +v 72.164001 138.923996 23.298023 +v 86.251999 138.884995 23.350023 +v 86.219002 138.729996 23.485023 +v 86.372002 138.735992 23.365023 +v 86.405998 132.160004 23.316021 +v 86.514999 131.895996 23.485022 +v 86.57 132.020004 23.309021 +v 87.442001 132.016998 23.308022 +v 87.486 131.895004 23.480021 +v 116.242996 130.718002 23.492022 +v 116.242996 129.225006 23.500021 +v 115.999001 128.686996 25.500021 +v -143.425995 130.285004 23.71702 +v -143.298004 130.104004 23.68502 +v -143.514008 129.837997 25.500021 +v -143.466003 128.960007 25.500021 +v -143.289993 130.434998 23.58802 +v -168.389999 130.421005 23.674021 +v -168.727005 130.414993 23.590021 +v -174.481003 129.317001 23.573021 +v -174.860992 129.444 23.180021 +v -174.964996 130.520996 19.395021 +v -175.255005 130.682007 18.620022 +v -175.287003 131.582993 17.80302 +v -176.927002 131.697006 17.730021 +v -176.936996 132.753006 17.49802 +v -175.272003 132.753006 17.518021 +v -175.294006 150.139999 17.537025 +v -175.078003 150.143005 17.660025 +v -174.990005 132.751999 17.724022 +v -175.138 153.740005 18.860025 +v -174.893997 153.597 19.125025 +v -174.647995 151.197006 25.338024 +v -174.824997 156.085999 21.700026 +v -174.557007 151.707001 27.435024 +v -174.444 150.947998 25.466024 +v -174.492004 149.587997 24.056025 +v -174.158005 150.886002 25.500025 +v 174.281998 151.421005 27.344025 +v -174.205994 151.423004 27.366024 +v 87.706001 152.179977 48.983025 +v 86.261002 152.174988 48.968021 +v 87.75 152.289978 52.093025 +v 149.298004 152.18399 48.995022 +v 149.292007 152.280991 51.774025 +v 150.505005 152.399979 49.710026 +v 150.710007 152.299988 52.096027 +v 150.735992 152.173981 48.972023 +v 150.570007 152.467987 52.083027 +v 150.600006 153.23999 54.334026 +v 150.768005 153.11499 54.370026 +v 173.470993 152.299988 51.733028 +v 174.645996 151.195007 25.332026 +v 174.578003 151.776001 27.330025 +v 173.723007 152.644989 51.808025 +v 174.686005 157.003006 25.249025 +v 174.826996 156.072998 21.657024 +v 174.699997 149.757996 23.828024 +v 174.957993 150.112 17.785025 +v 175.266006 150.156006 17.545025 +v 175.199005 132.759995 17.52902 +v 174.938995 132.746994 17.839022 +v 174.964005 131.669998 18.018021 +v 175.278 131.585007 17.805021 +v 175.257004 130.695007 18.600021 +v 175.223999 130.363007 19.326021 +v 175.009995 130.718002 18.812021 +v 174.899994 130.906006 18.89702 +v 174.722 129.669998 23.180021 +v 174.839996 129.464996 23.173021 +v 174.481995 129.307007 23.579021 +v 174.542999 129.177002 23.723021 +v 168.886002 129.182007 23.74402 +v 168.740997 129.365005 23.662022 +v 168.550003 128.744003 25.500021 +v 174.242996 128.686996 25.500021 +v 175.179993 128.740005 25.316021 +v 174.246994 146.957993 25.500025 +v 175.179993 146.938995 25.316025 +v 174.218002 148.113007 25.791025 +v 175.158997 148.214996 25.636024 +v -173.136002 152.542984 56.485027 +v -174.102997 151.634979 55.432022 +v -173.160004 151.469986 55.517021 +v -173.182999 151.055984 54.384022 +v -173.223007 150.29599 52.290024 +v -174.177002 150.48999 52.320023 +v -174.093002 149.431 27.753025 +v -175.035004 149.619995 27.766026 +v -175.917007 149.630005 26.242025 +v -175.845993 150.156998 27.740025 +v -176.460999 150.300003 25.810024 +v -176.509995 148.845001 24.490025 +v -176.733002 148.731003 23.327024 +v -176.906998 153.014999 18.386024 +v -176.929993 150.794006 17.592024 +v -176.899994 130.667999 18.56002 +v -176.626007 129.145004 23.797022 +v -176.529999 146.938995 24.016026 +v -175.981003 128.876999 24.796021 +v -175.981003 146.938995 24.796024 +v -175.960999 148.466995 25.180025 +v -175.160995 148.214996 25.636024 +v -175.113007 149.179993 26.520025 +v -174.169998 149.014008 26.602024 +v -174.212997 148.113007 25.793024 +v -175.179993 146.938995 25.316025 +v -174.238007 146.929993 25.500025 +v -174.242996 128.686996 25.500021 +v -168.483002 129.865997 25.500021 +v -168.220993 130.181 25.500021 +v -143.619003 130.423996 23.676022 +v -168.576004 130.285995 23.71702 +v -168.707993 130.102997 23.683022 +v -168.733994 129.503006 23.650021 +v -168.802994 129.216995 23.730021 +v -174.539993 129.177994 23.722021 +v -175.054001 129.315002 23.218021 +v -175.235001 130.347 19.370022 +v -175.179993 128.740005 25.316021 +v -168.552002 128.738007 25.500021 +v 168.156006 130.190002 25.500021 +v 143.865005 130.197998 25.500021 +v 168.380005 130.423996 23.67502 +v 168.578995 130.283005 23.71702 +v 168.468994 129.932999 25.500021 +v 168.705002 130.104004 23.683022 +v 143.035004 130.677002 23.500021 +v 143.278 130.417999 23.590021 +v 143.110001 129.511002 23.51502 +v 127.752998 129.464005 23.509022 +v 127.750999 130.733002 23.493021 +v 127.726997 130.397003 23.270021 +v 116.277 130.378006 23.23402 +v 117.75 128.240005 11.213021 +v 126.253998 128.216995 11.274021 +v 112.982002 128.225006 11.299021 +v 129.238998 128.095993 11.594021 +v 113.257004 127.948997 11.724021 +v 113.665001 127.555 11.963021 +v 129.233002 127.519997 11.973021 +v 129.352005 122.991997 11.97202 +v 129.934998 127.504997 12.159021 +v 129.731995 122.824997 12.07002 +v 130.654007 127.587997 12.759021 +v 130.057007 127.934998 11.936021 +v 130.623993 128.138 11.906021 +v 130.593002 128.248001 11.298021 +v 128.001007 128.686996 25.500021 +v 127.781998 129.177994 23.730021 +v 143.139999 128.699997 25.500021 +v 143.472 128.979996 25.500021 +v 143.541 129.960999 25.500021 +v 143.292007 130.095001 23.68502 +v 143.613007 130.421005 23.674021 +v 143.423996 130.285004 23.716021 +v 143.240005 129.529999 23.622021 +v 142.994995 129.218994 23.686022 +v 125.973999 128.335999 8.983021 +v 130.514999 128.337006 8.951021 +v 125.925003 128.125 8.613021 +v 130.552002 128.052994 8.552021 +v 125.175003 129.085007 2.498021 +v 125.885002 128.089996 8.278021 +v 125.175003 128.686996 2.498021 +v 118.822998 129.085007 2.498021 +v 118.822998 128.686996 2.498021 +v 118.196999 126.189003 7.58802 +v 118.110001 128.089996 8.278021 +v 125.796997 126.189003 7.58802 +v 118.07 128.104004 8.602021 +v 118.035004 128.324997 8.898021 +v 112.882004 128.332001 8.939021 +v 112.981003 125.861 11.300021 +v 112.897003 125.940002 8.519021 +v 111.869003 125.974998 9.500021 +v 80.410004 125.866997 11.327021 +v 80.367996 125.597 11.73302 +v 113.257004 125.580002 11.72402 +v 80.318001 125.211998 11.96302 +v 113.666 125.153999 11.97002 +v 77.124001 123.036003 11.98502 +v 77.32 122.597 11.72402 +v 129.466003 122.580002 11.74802 +v 77.289001 122.337997 11.34202 +v 75.821999 122.617996 12.10602 +v 75.653 122.363998 11.73002 +v 129.304993 122.328003 11.35002 +v 129.220993 121.997002 6.32002 +v 129.735001 122.192001 11.48002 +v 130.451996 127.163002 12.679021 +v 130.315994 122.277 12.49502 +v 130.951004 140.242996 18.058023 +v 130.705994 127.151001 13.380021 +v 130.701004 120.944 13.42002 +v 130.891006 141.697006 18.928022 +v 131.251999 140.546005 18.721024 +v 131.572006 140.589996 18.930023 +v 131.796997 141.373001 18.997023 +v 130.266006 144.141998 18.929024 +v 125.110001 147.289001 18.862024 +v 130.921997 143.570007 18.996023 +v 122.353996 148.533997 18.998024 +v 124.294998 145.522995 18.968023 +v 130.669006 141.460007 18.719023 +v 130.488007 141.272003 18.327023 +v 130.837997 140.791 18.322023 +v 131.035004 140.294006 18.420023 +v 130.229996 140.279999 6.334023 +v 130.335999 139.710007 6.335023 +v 130.498993 130.973007 9.500021 +v 130.335007 131.529999 6.342021 +v 130.951004 132.404999 1.395022 +v 130.063004 131.720001 5.244021 +v 129.403 131.884995 4.322021 +v 128.449997 131.992996 3.712021 +v 129.072006 139.528 4.055023 +v 129.658997 139.863007 4.642023 +v 129.315994 140.389999 4.630023 +v 128.759003 139.987 4.044023 +v 128.199997 139.242004 3.628023 +v 127.351997 138.794998 3.498023 +v 127.341003 132.029999 3.498021 +v 110.810997 132.029999 3.498021 +v 110.397003 132.438995 1.311022 +v 110.487 125.555 1.684021 +v 110.202003 125.268997 0.89102 +v 110.116997 132.718994 0.804022 +v 131.514008 132.944 0.551022 +v 131.520004 124.955002 0.54802 +v 130.960007 125.515999 1.41002 +v 109.415001 133.429001 0.212022 +v 109.412003 124.473999 0.21002 +v 108.516998 134.326996 2.2e-05 +v 132.276993 133.703995 0.078022 +v 132.154999 124.319 0.14002 +v 132.897003 123.577003 2e-05 +v 153.001007 154.509003 2.5e-05 +v 153.001007 137.397003 2.2e-05 +v 157.406998 128.520004 0.023021 +v 163.432007 122.459999 0.00202 +v 160.130005 130.839996 0.287021 +v 157.802994 128.522995 0.264021 +v 159.962997 131.026993 0.040021 +v 163.442001 122.889 0.27302 +v 165.457993 124.910004 0.27502 +v 167.710007 127.322998 1.012021 +v 165.645004 124.741997 0.03002 +v 170.496002 119.864998 2e-05 +v 170.501999 -12.282 -2e-06 +v 173.235001 -136.317993 0.522978 +v 173.235001 120.214996 0.52302 +v 174.158005 -136.589996 0.969978 +v 173.998993 -138.136993 0.581977 +v 172.882004 -138.119995 0.024977 +v 174.744995 -139.684998 0.234977 +v 175.356995 -140.817993 0.046977 +v 171.149994 -136.938995 0.003978 +v 174.632004 -142.306 0.013977 +v 172.475998 -142.455002 0.061977 +v 170.570007 -143.419998 0.053977 +v 163.770004 -148.634003 0.004976 +v 172.436996 -136.238998 0.256978 +v 1.135 117.102997 1.9e-05 +v 108.516998 123.577003 2e-05 +v 3.143 118.156998 1.9e-05 +v 4.435 120.025002 2e-05 +v 4.71 122.279999 2e-05 +v 92.672997 154.509003 3.712025 +v 91.254997 154.509003 3.498025 +v 69.378998 126.866997 3.498021 +v 69.779999 126.103996 3.62002 +v 70.717003 125.153 4.372021 +v 70.235001 124.849998 4.328021 +v 70.052002 123.945999 5.68002 +v 70.711998 124.125999 5.63302 +v 71.217003 124.494003 5.68702 +v 94.887001 154.509003 5.467025 +v 93.889999 154.509003 4.322025 +v 102.999001 154.509003 3.712025 +v 104.415001 154.509003 3.498025 +v 109.436996 154.509003 3.541025 +v 122.475998 154.509003 3.497025 +v 132.033005 154.509003 3.498025 +v 133.237 154.509003 3.712025 +v 134.270004 154.509003 4.322025 +v 134.983002 154.509003 5.244025 +v 141.994995 154.509003 3.712025 +v 143.199997 154.509003 3.498025 +v 151.942993 154.509003 3.498025 +v 155.740005 154.509003 0.524025 +v 153.792999 154.509003 3.856025 +v 158.082993 154.509003 2.022025 +v 155.384995 154.509003 4.872025 +v 159.703003 154.509003 4.288025 +v 156.498001 154.509995 6.426025 +v 160.406006 154.507996 7.564025 +v 157.121994 154.509003 8.714025 +v 160.682999 154.509003 11.412024 +v 161.524002 154.509995 17.914024 +v 158.063995 154.509995 18.998024 +v 159.647003 154.509003 18.995026 +v 160.223007 154.485001 18.862024 +v 160.990005 154.511993 18.507025 +v 173.093002 142.964996 17.900023 +v 172.774994 142.727997 18.480022 +v 171.307999 140.626999 13.991023 +v 173.093002 142.380005 14.000023 +v 177.076996 138.347 14.000023 +v 175.341995 136.550003 13.984022 +v 177.513 136.542999 8.972022 +v 177.306 138.322998 15.561023 +v 177.731995 137.600006 15.733023 +v 177.699997 136.121994 8.748022 +v 177.733994 134.669998 8.580022 +v 177.960007 134.645004 8.852022 +v 177.899994 124.387001 8.73002 +v 177.610001 124.556 8.52502 +v 177.395996 136.016998 8.520022 +v 163.210007 138.705994 8.488023 +v 176.268005 137.955002 8.527023 +v 161.423996 141.710007 8.485023 +v 161.509995 152.727005 8.540025 +v 176.460007 138.199997 8.765023 +v 161.714005 152.953995 8.788025 +v 160.817993 153.813995 8.505025 +v 160.664993 153.906998 8.237025 +v 160.809006 153.600006 8.343025 +v 160.576004 143.813995 8.119024 +v 161.046997 141.526993 8.238023 +v 161.029007 143.768997 8.442024 +v 160.761002 141.520996 7.815023 +v 162.960007 138.339005 8.238023 +v 175.977005 125.449997 8.32802 +v 177.798004 122.389999 8.29502 +v 177.630997 123.364998 8.40102 +v 177.673004 121.987 7.98402 +v 175.589996 125.349998 7.860021 +v 162.824005 138.095993 7.842022 +v 160.979996 140.703003 7.026023 +v 160.399002 143.869995 7.455023 +v 160.557007 140.529007 4.998023 +v 159.912003 143.266006 4.765023 +v 159.485001 140.080002 3.086023 +v 162.233002 137.845993 4.771022 +v 162.707001 138.110001 6.992023 +v 165.541 135.276001 6.972022 +v 175.529007 125.290001 6.992021 +v 170.195999 130.630997 6.943021 +v 165.641006 135.065994 6.739022 +v 164.479996 134.837997 3.571022 +v 160.636993 138.009003 2.850022 +v 162.423996 133.309998 1.065022 +v 157.746994 139.363007 1.454023 +v 158.020004 141.729996 2.086023 +v 158.824997 142.425003 2.842023 +v 157.179001 141.003006 1.294023 +v 155.705002 139.733002 0.592023 +v 155.391006 138.268997 0.343023 +v 161.498993 132.690002 0.708022 +v 158.505005 137.800003 1.294022 +v 162.557007 133.050003 1.240022 +v 164.550003 134.447998 3.653022 +v 163.097 132.240005 6.482021 +v 162.110001 131.656998 4.872022 +v 160.860001 130.662994 3.856021 +v 159.505005 129.395004 3.498021 +v 158.630997 128.522995 3.498021 +v 155.179993 133.684006 3.497022 +v 152.507004 134.660004 3.712022 +v 155.677994 134.567001 3.598022 +v 156.529007 135.742004 4.110022 +v 152.460007 135.613007 4.322022 +v 152.425003 136.266998 5.244022 +v 146.615005 135.664993 4.322022 +v 146.552994 134.714996 3.712022 +v 146.475006 133.608994 3.498022 +v 137.653 134.903 3.498022 +v 157.514999 -109.393997 3.497982 +v 163.438995 123.719002 3.49802 +v 170.994995 122.769997 4.87202 +v 171.266998 119.223 3.854019 +v 172.597 120.097 4.86602 +v 171.776993 123.549004 6.40402 +v 166.574997 127.193001 4.872021 +v 165.574997 125.945 3.85602 +v 169.875 121.644997 3.85602 +v 164.309006 124.586998 3.49802 +v 169.408005 119.105003 3.498019 +v 169.182999 129.399002 3.326021 +v 169.610001 130.628006 6.502021 +v 169.934006 130.727997 6.669022 +v 169.522995 129.417999 3.209021 +v 169.889999 129.716995 4.356021 +v 169.031006 128.352997 2.182021 +v 168.024002 127.194 0.842021 +v 173.912994 123.668999 2.02202 +v 172.253006 122.014999 0.52402 +v 175.582001 119.650002 2.02502 +v 175.785995 -139.399994 1.737977 +v 174.863007 -138.449997 1.149977 +v 175.162003 -137.162994 1.657978 +v 176.824005 -139.457001 3.009977 +v 176.332001 -137.315002 2.860978 +v 176.570007 -140.337006 2.175977 +v 177.145996 -141.647995 1.411977 +v 175.858994 -140.845993 0.305977 +v 177.740005 -142.462006 0.643977 +v 177.677002 -142.570007 0.322977 +v 177.492996 -142.761993 0.084977 +v 177.194 -142.979996 0.000977 +v 177.688995 -145.246994 0.052976 +v 176.580002 -143.352997 0.016977 +v 178.658997 -144.639999 0.037976 +v 177.923996 -147.373993 0.053976 +v 179.087006 -146.755005 0.037976 +v 177.279999 -149.434006 0.018976 +v 178.699997 -148.878998 0.045976 +v 177.505005 -150.690002 0.037975 +v 177.820007 -150.912003 0.362975 +v 179.063995 -148.962997 0.363976 +v 179.429993 -149.126999 1.919976 +v 179.871002 -146.699997 1.919976 +v 180.483002 -145.947006 3.139976 +v 181.302994 -148.375 4.923975 +v 181.389999 -145.720001 4.923976 +v 181.703995 -148.457993 6.984976 +v 180.695007 -151.070999 6.988975 +v 180.347 -150.860001 4.923975 +v 179.509995 -150.358002 3.056975 +v 178.100998 -151.199005 1.919975 +v 177.996002 -152.139999 3.057975 +v 178.625 -152.882996 4.923975 +v 176.054001 -153.272995 3.049975 +v 176.080002 -152.617004 1.919975 +v 173.690002 -153.447998 2.521975 +v 173.690002 -153.141998 1.892975 +v 175.925995 -152.279999 0.409975 +v 173.593002 -152.770996 0.357975 +v 175.725998 -151.914993 0.037975 +v 173.160004 -152.481995 0.077975 +v 175.533005 -150.768005 0.052975 +v 173.470001 -151.406006 0.018975 +v 176.348999 -143.576996 0.201977 +v 174.529007 -142.619995 0.201977 +v 170.781006 -143.731003 0.523977 +v 169.673004 -145.337997 0.525976 +v 169.714996 -146.332993 5.501976 +v 169.442993 -147.289001 0.542976 +v 170.139008 -149.117004 0.536976 +v 169.235001 -147.307007 0.201976 +v 169.343994 -145.167999 0.059976 +v 168.904007 -147.315002 0.014976 +v 169.792999 -149.289001 0.051976 +v 167.378006 -150.792999 0.026975 +v 165.059006 -149.567993 0.006976 +v 164.464005 -150.477997 0.389975 +v 138.669998 -151.529999 0.523975 +v 138.716003 -153.873001 2.022975 +v -138.695999 -153.871994 2.020975 +v -0.835 116.994003 1.9e-05 +v -0.883 118.126999 1.052019 +v -0.001 118.019997 1.052019 +v 0.876 118.125999 1.052019 +v 2.443 118.945 1.052019 +v 2.635 119.894997 10.398019 +v 1.485 118.875 10.398019 +v 2.567 116.822998 10.398019 +v -0.001 116.190002 10.398019 +v -0.001 116.105003 12.000019 +v 2.605 116.749001 12.000019 +v 4.54 118.574997 10.398019 +v 4.609 118.525002 12.000019 +v 5.479 121.044998 10.39802 +v 3.173 121.324997 10.39802 +v 2.989 122.845001 10.39802 +v 3.663 122.154999 1.05202 +v 3.45 120.404999 1.05202 +v 3.034 123.807999 1.05202 +v 3.905 124.406998 2e-05 +v 2.203 125.910004 2.1e-05 +v -0.001 126.455002 2.1e-05 +v -4.223 154.509003 2.5e-05 +v -2.21 125.910004 2.1e-05 +v -3.907 124.406998 2e-05 +v -4.713 122.279999 2e-05 +v -108.516998 123.577003 2e-05 +v -170.949997 -136.839996 -2.2e-05 +v -4.437 120.025002 2e-05 +v -3.151 118.156998 1.9e-05 +v -2.45 118.950996 1.052019 +v -1.491 118.875 10.398019 +v -2.635 119.894997 10.398019 +v -4.543 118.574997 10.398019 +v -2.567 116.822998 10.398019 +v -4.615 118.525002 12.000019 +v -2.607 116.749001 12.000019 +v -0.001 118.510002 10.398019 +v -6.316 116.470001 11.970019 +v -4.122 114.599998 11.963019 +v -1.397 113.625 11.970018 +v 1.513 113.226997 11.728018 +v 1.49 113.641998 11.970018 +v 4.357 114.278999 11.728019 +v 4.19 114.661003 11.970019 +v 6.375 116.525002 11.963019 +v 6.663 116.245003 11.728019 +v 8.434 119.424004 11.732019 +v 8.68 119.280998 11.300019 +v 8.447 120.540001 11.99902 +v 8.362 119.877998 11.930019 +v 5.56 121.035004 12.00002 +v 8.388 122.887001 11.99802 +v 5.24 123.698997 12.00002 +v 5.163 123.668999 10.39802 +v 3.659 125.843002 10.39802 +v 2.12 124.107002 10.39802 +v 1.714 124.973999 1.05202 +v 0.0 125.403 1.05202 +v -0.767 124.815002 10.39802 +v 0.767 124.815002 10.39802 +v 1.319 127.07 10.398021 +v -1.321 127.07 10.398021 +v 1.339 127.153 12.000021 +v 3.717 125.906998 12.000021 +v 4.103 128.809998 11.970021 +v 1.397 129.792007 11.970021 +v -1.515 130.190002 11.728021 +v -1.486 129.792999 11.963021 +v -4.36 129.143005 11.728021 +v -4.192 128.759995 11.970021 +v -1.345 127.153 12.000021 +v -3.717 125.906998 12.000021 +v -3.665 125.843002 10.39802 +v -5.163 123.668999 10.39802 +v -2.995 122.845001 10.39802 +v -3.18 121.324997 10.39802 +v -3.665 122.155998 1.05202 +v -3.036 123.807999 1.05202 +v -2.121 124.107002 10.39802 +v -1.722 124.973999 1.05202 +v -3.45 120.400002 1.05202 +v -5.485 121.044998 10.39802 +v -5.241 123.698997 12.00002 +v -5.567 121.035004 12.00002 +v -8.367 122.936996 11.99802 +v -6.376 126.875999 11.970021 +v -8.255 123.670998 11.93202 +v -9.339 123.669998 11.32302 +v -8.482 123.892998 11.73402 +v -8.895 123.917999 11.32402 +v -10.123 123.875 6.30602 +v -9.848 123.57 11.36202 +v -68.459999 123.580002 11.33202 +v -68.410004 123.315002 11.72402 +v -9.408 123.376999 11.70902 +v -68.474998 122.933998 11.97202 +v -9.32 123.066002 11.92402 +v -64.830002 120.531998 11.97102 +v -8.453 120.570999 11.99902 +v -9.476 120.402 11.93002 +v -65.414001 119.999001 11.70402 +v -9.527 120.087997 11.73002 +v -64.873001 119.827003 11.324019 +v -65.545998 119.662003 11.331019 +v -9.176 119.632004 11.056019 +v -8.949 119.686996 11.585019 +v -9.584 119.814003 11.319019 +v -8.613 119.290001 11.430019 +v -8.72 119.264999 11.030019 +v -6.89 116.089996 11.312019 +v -6.805 115.555 6.288019 +v -8.438 119.421997 11.730019 +v -8.332 119.821999 11.927019 +v -6.663 116.245003 11.728019 +v -4.36 114.278999 11.728019 +v -1.515 113.226997 11.728018 +v -1.572 112.963997 11.326018 +v 1.556 112.962997 11.333018 +v 4.48 114.050003 11.353018 +v 6.886 116.086998 11.320019 +v 8.627 118.626999 7.78802 +v 9.155 119.623001 11.073019 +v 8.971 119.717003 11.597019 +v 9.597 119.810997 11.312019 +v 9.526 120.077003 11.72002 +v 9.47 120.389999 11.92602 +v 68.589996 122.877998 11.98402 +v 9.323 123.042 11.93002 +v 68.403 123.315002 11.72402 +v 9.4 123.346001 11.73602 +v 68.447998 123.584999 11.33402 +v 9.853 123.573997 11.34402 +v 10.124 123.875999 6.30002 +v 9.316 123.678001 11.32002 +v 9.526 124.001999 6.26402 +v 8.877 123.932999 11.31502 +v 8.476 123.928001 11.71702 +v 8.229 123.718002 11.92802 +v 6.87 127.339996 11.330021 +v 8.548 124.302002 11.34302 +v 4.505 129.360001 11.338021 +v 6.663 127.172997 11.728021 +v 4.357 129.143005 11.728021 +v 6.325 126.954002 11.963021 +v 1.513 130.190002 11.728021 +v 1.568 130.453995 11.340021 +v -1.554 130.453995 11.348021 +v -0.001 130.503006 11.068021 +v -0.001 130.977005 6.288022 +v 2.78 130.516998 6.423021 +v 2.907 130.807007 5.206021 +v -0.001 131.259003 5.206021 +v 3.109 131.438995 4.304021 +v -0.001 131.925003 4.304021 +v -2.913 130.807007 5.206021 +v -2.827 130.507996 6.384021 +v -4.479 129.369995 11.353021 +v -6.875 127.346001 11.316021 +v -6.663 127.172997 11.728021 +v -8.55 124.290001 11.35802 +v -9.006 124.370003 6.28002 +v -9.529 124.000999 6.26302 +v -70.005997 123.944 5.67402 +v -70.683998 124.087997 5.67002 +v -70.116997 123.566002 11.71902 +v -69.893997 123.324997 12.06802 +v -69.691002 122.898003 12.25802 +v -66.790001 119.639999 12.116019 +v -66.389999 119.596001 11.913019 +v -66.572998 120.099998 11.99602 +v -66.132004 120.024002 11.93002 +v -65.970001 119.475998 11.506019 +v -65.764999 118.379997 6.244019 +v -65.953003 119.315002 11.15202 +v -66.248001 119.073997 11.643019 +v -65.656998 117.683998 5.696019 +v -65.507004 118.278999 5.410019 +v -65.473 118.980003 6.24402 +v -65.231003 118.845001 5.410019 +v -64.811996 119.334999 5.68802 +v -64.044998 118.914001 4.685019 +v -64.199997 119.495003 5.830019 +v -9.828 119.260002 5.28702 +v -10.121 119.542999 6.285019 +v -9.53 119.419998 6.272019 +v -9.02 119.061996 6.26302 +v -8.63 118.626999 7.78802 +v -7.421 116.163002 6.288019 +v -9.185 118.82 5.266019 +v -10.417 117.732002 3.753019 +v -9.548 118.388 4.485019 +v -10.083 118.741997 4.48702 +v -7.65 115.987 5.206019 +v -8.177 115.595001 4.304018 +v -5.543 113.93 5.206018 +v -5.377 114.163002 6.288019 +v -4.508 114.057999 11.337018 +v -2.79 112.905998 6.415019 +v -0.001 112.915001 11.068018 +v -0.001 112.445 6.288018 +v 2.83 112.916 6.380019 +v -0.001 112.158997 5.206018 +v -2.913 112.614998 5.206018 +v -3.111 111.985001 4.304018 +v -0.001 111.499001 4.304018 +v 2.907 112.614998 5.206018 +v 3.109 111.985001 4.304018 +v 5.54 113.93 5.206018 +v 5.377 114.163002 6.288019 +v 6.803 115.555 6.288019 +v 7.647 115.987 5.206019 +v 5.925 113.389999 4.304018 +v 8.177 115.595001 4.304018 +v 9.563 118.400002 4.476019 +v 9.18 118.830002 5.27002 +v 7.419 116.163002 6.288019 +v 9.014 119.057999 6.26002 +v 9.525 119.419998 6.272019 +v 10.12 119.542999 6.28302 +v 64.839996 119.824997 11.294019 +v 64.817001 120.102997 11.72402 +v 65.546997 119.662003 11.330019 +v 65.786003 120.042999 11.87802 +v 64.820999 120.495003 11.96202 +v 66.553001 120.138 11.99802 +v 66.0 119.5 11.580019 +v 66.240997 119.059998 11.627019 +v 66.265999 119.709999 11.885019 +v 66.556 119.459999 12.051019 +v 69.745003 122.972 12.24802 +v 69.901001 123.292 12.10902 +v 70.071999 123.551003 11.72402 +v 9.81 124.188004 5.25402 +v 9.004 124.369003 6.29602 +v 7.406 127.290001 6.256021 +v 9.177 124.598 5.267021 +v 9.547 125.032997 4.484021 +v 10.103 124.694 4.466021 +v 7.647 127.43 5.206021 +v 8.177 127.829002 4.304021 +v 5.54 129.488998 5.206021 +v 5.377 129.255005 6.288021 +v 5.925 130.026993 4.304021 +v 8.933 128.389999 3.706021 +v 6.473 130.798996 3.706021 +v 3.397 132.339996 3.706022 +v 8.223 130.945999 3.498021 +v 1.557 133.994003 3.498022 +v -0.001 132.869995 3.706022 +v -3.111 131.438995 4.304021 +v -3.403 132.339996 3.706022 +v -5.925 130.026993 4.304021 +v -5.543 129.488998 5.206021 +v -7.65 127.43 5.206021 +v -7.41 127.292999 6.243021 +v -5.377 129.255005 6.288021 +v -9.186 124.584999 5.27202 +v -10.402 125.727997 3.74502 +v -9.561 125.028 4.47602 +v -8.177 127.829002 4.304021 +v -8.94 128.389999 3.706021 +v -10.107 124.682999 4.477021 +v -9.862 124.190002 5.24602 +v -70.455002 124.940002 4.33802 +v -69.903 124.759003 4.372021 +v -69.766998 126.191002 3.57602 +v -71.212997 124.502998 5.670021 +v -71.116997 123.769997 12.88002 +v -66.264 117.510002 13.40202 +v -70.921997 123.617996 12.85802 +v -95.860001 154.509003 18.050024 +v -6.73 41.743996 18.420008 +v -6.655 41.798996 18.048008 +v -95.978996 154.509003 18.420025 +v -96.257004 154.509003 18.726025 +v -6.636 41.329998 18.710007 +v -6.304 41.425995 18.323008 +v -65.483002 117.119003 6.343019 +v -6.466 42.57 6.133007 +v -6.332 42.779999 5.297007 +v -65.304001 117.082001 5.643019 +v -5.867 43.044998 4.500007 +v -64.736 117.019997 4.793019 +v -64.074997 116.938004 4.270019 +v -5.429 44.099998 3.760007 +v -3.737 110.032997 3.498018 +v -4.806 45.258999 3.498007 +v 0.0 46.096001 3.498007 +v 2.254 109.530998 3.498018 +v 3.397 111.080002 3.706018 +v 6.473 112.619003 3.706018 +v -0.001 110.553001 3.706018 +v 8.437 112.730003 3.498018 +v 8.933 115.027 3.706019 +v 10.182 117.498001 3.773019 +v 10.594 117.793999 3.770019 +v 10.095 118.763 4.50002 +v 9.868 119.262001 5.28702 +v 64.196999 119.491997 5.80802 +v 64.809998 119.344002 5.68402 +v 65.921997 119.347 11.140019 +v 65.760002 118.379997 6.244019 +v 66.422997 118.294998 12.02002 +v 66.529999 118.540001 12.324019 +v 66.261002 117.510002 13.390019 +v 66.882004 118.830002 12.574019 +v 70.902 123.557999 12.90802 +v 71.010002 123.75 12.62602 +v 71.457001 124.072998 13.42202 +v 100.591003 154.509003 6.342025 +v 100.941002 154.509003 5.244025 +v 101.780998 154.509003 4.322025 +v 81.174004 128.410004 4.313021 +v 82.867996 128.919998 3.680021 +v 81.350998 127.646004 4.187021 +v 83.573997 128.712997 3.525021 +v 110.845001 128.022995 3.712021 +v 83.181999 128.024002 3.711021 +v 81.793999 127.103996 4.313021 +v 110.953003 127.067001 4.322021 +v 111.116997 126.410004 5.24402 +v 80.977997 126.425003 5.33602 +v 111.310997 126.139 6.342021 +v 81.349998 126.172997 5.92402 +v 80.415001 126.897003 5.22602 +v 80.07 126.703003 6.24402 +v 79.782997 127.305 6.24402 +v 79.619003 126.331001 11.147021 +v 80.588997 126.290001 6.27802 +v 79.539001 126.169998 11.600021 +v 79.300003 126.624001 11.627021 +v 79.276001 125.900002 11.900021 +v 78.987 126.225998 12.050021 +v 78.941002 125.585999 12.01002 +v 75.985001 122.945999 12.24702 +v 74.825996 122.353996 12.90702 +v 74.703003 122.155998 12.61902 +v 75.670998 121.972 5.69302 +v 75.013 121.786003 5.63002 +v 10.112 39.789001 5.300007 +v 74.538002 121.348 5.55102 +v 9.884 39.868999 6.116007 +v 75.009003 120.764 4.37402 +v 10.487 39.360001 4.482006 +v 11.554 38.962002 3.728006 +v 75.663002 119.919998 3.77002 +v 12.878 38.869999 3.498006 +v 75.982002 119.804001 3.60202 +v 127.341003 119.044998 3.498019 +v 76.343002 119.044998 3.498019 +v 14.752 34.602001 3.498006 +v 127.921997 120.07 3.68002 +v 75.508003 121.084999 4.337019 +v 128.457001 120.853996 4.128019 +v 128.380005 119.712997 3.68402 +v 128.945999 120.410004 4.042019 +v 129.606995 121.309998 5.09002 +v 129.069 121.703003 5.19602 +v 129.893005 121.597 6.30802 +v 130.218994 121.112999 6.318019 +v 130.317993 121.806 12.19902 +v 130.334 120.550003 6.34802 +v 130.005005 -117.370003 5.433981 +v 130.246994 -116.821999 5.760981 +v 130.018005 -116.500999 5.266981 +v 129.440994 -116.439003 4.443981 +v 129.770996 -116.167999 4.740981 +v 129.343002 -115.591003 4.404982 +v 128.447006 -114.542999 3.714981 +v 127.619003 -114.931 3.719981 +v 127.339996 -112.832001 3.497982 +v 128.824005 -116.776001 4.252981 +v 129.514999 -117.808998 5.253981 +v 129.669998 -118.177002 6.199981 +v 128.990005 -118.425003 6.199981 +v 130.326004 -119.945999 18.381981 +v 130.815002 -119.389999 18.34798 +v 130.154999 -117.642998 6.249981 +v 130.951996 -118.632004 18.055981 +v 130.334 -116.948997 6.336981 +v 131.037994 -118.634003 18.419981 +v 137.787003 139.824997 18.998022 +v 134.130005 139.826996 18.998022 +v 87.682999 139.953003 19.020023 +v 143.259995 139.884995 18.990023 +v 156.300003 139.947006 19.018023 +v 149.264999 139.886993 18.726023 +v 157.138 140.018005 18.930023 +v 156.979996 140.328003 18.736023 +v 149.251999 140.162003 18.308023 +v 142.615997 140.776993 18.303022 +v 142.520004 140.513 18.726023 +v 149.507996 139.434998 18.976023 +v 157.132004 139.643005 18.998022 +v 135.367996 141.947998 18.970022 +v 135.442993 140.026001 18.965023 +v 143.457993 138.268997 18.964024 +v 140.552994 139.199005 18.998022 +v 133.498993 139.212997 18.997023 +v 134.143997 139.419998 18.928022 +v 135.496002 139.610992 18.720022 +v 134.347 139.169998 18.724024 +v 135.199005 139.276001 18.300022 +v 134.725998 139.110001 18.360023 +v 134.524994 143.063004 18.926023 +v 133.923004 143.582001 18.996023 +v 132.671997 144.847 18.971024 +v 131.537994 144.141998 18.926023 +v 131.470001 144.459 18.718023 +v 130.376007 144.442001 18.725023 +v 130.220001 144.800003 18.328022 +v 125.259003 147.695007 18.303024 +v 120.627998 151.25 18.348024 +v 120.530998 150.792999 18.865025 +v 116.032997 154.509003 18.998024 +v 116.858002 154.509003 18.800024 +v 114.047997 154.509003 18.942024 +v 113.341003 154.509003 18.343025 +v 117.342003 154.509003 18.293024 +v 112.356003 154.509003 5.584025 +v 118.269997 154.509003 5.935025 +v 118.730003 154.509003 5.047025 +v 111.583 154.509003 4.559025 +v 110.540001 154.509003 3.874025 +v 119.507004 154.509003 4.328025 +v 120.792999 154.507004 3.714025 +v 129.794998 149.106003 3.496024 +v 130.619995 147.679993 3.813024 +v 131.231003 146.904999 4.446024 +v 131.535995 146.457001 5.082024 +v 130.457993 146.602005 4.332024 +v 130.919998 146.074997 5.012024 +v 131.587997 145.990005 5.961024 +v 131.949997 146.507004 6.048024 +v 135.274994 154.509003 6.342025 +v 139.957001 154.509003 6.342025 +v 140.248993 154.509003 5.244025 +v 140.960007 154.509003 4.322025 +v 136.791 144.636993 4.445024 +v 137.757996 144.699997 3.807024 +v 139.352997 145.154999 3.496024 +v 137.149994 143.901001 4.295023 +v 138.115005 144.149002 3.847023 +v 143.559006 143.186996 3.712023 +v 143.412994 142.244995 4.322023 +v 149.919998 142.692993 3.712023 +v 149.919998 141.737 4.322023 +v 153.376007 142.863007 3.708023 +v 151.927002 143.770996 3.497023 +v 154.703003 141.985992 4.319023 +v 155.735001 141.449997 5.280023 +v 149.919998 141.076996 5.244023 +v 143.311005 141.595001 5.244023 +v 143.205994 141.345001 6.320023 +v 149.919006 140.804993 6.343023 +v 156.460007 141.283997 6.361023 +v 156.882996 142.264999 7.748024 +v 156.947998 142.022995 8.265023 +v 157.699997 153.391998 9.834024 +v 157.720001 141.802002 9.893023 +v 158.584 152.393005 10.860024 +v 161.009995 149.897003 11.965025 +v 159.625 151.048996 11.292025 +v 178.134995 132.639008 12.015022 +v 178.141998 133.052994 12.237022 +v 161.940002 148.908005 12.033024 +v 161.302994 149.903 12.241025 +v 157.322006 154.044006 9.198025 +v 158.960007 153.285004 18.998024 +v 159.744995 154.089996 18.998024 +v 171.740005 142.279007 18.992023 +v 172.014999 142.688995 18.865023 +v 172.425995 142.514008 18.783024 +v 177.289001 138.158005 15.974023 +v 175.591995 136.542999 15.644022 +v 175.776001 136.589996 15.994022 +v 177.285995 137.742004 16.285023 +v 178.279999 135.330994 15.774022 +v 178.281998 133.524002 15.826022 +v 170.899994 140.606995 13.728023 +v 170.934006 141.354996 18.976023 +v 175.630005 136.136002 15.617022 +v 175.744003 136.210007 16.007023 +v 175.341995 136.143005 13.700022 +v 171.335999 141.354004 18.710022 +v 176.119995 136.360992 16.372023 +v 177.951996 134.302994 16.277021 +v 178.029999 135.302994 16.205023 +v 177.602005 135.216003 16.467022 +v 176.444 136.369995 16.474024 +v 177.052002 136.470001 16.518023 +v 177.966003 123.194 8.87702 +v 178.134995 123.473999 12.05002 +v 162.044998 139.587006 12.029023 +v 177.925003 122.622002 8.53802 +v 177.899994 119.68 7.57202 +v 177.552002 121.987 7.57002 +v 177.867004 119.639999 6.990019 +v 177.518005 121.973 6.96202 +v 175.057007 124.819 4.288021 +v 176.873001 121.777 4.26402 +v 175.320007 121.300003 2.01202 +v 177.203003 119.646004 4.29002 +v 177.867996 -136.070007 6.986978 +v 178.567993 -137.309998 17.774977 +v 178.175003 -135.953995 12.847978 +v 178.434998 -135.863007 17.755978 +v 178.072998 -135.882996 18.403976 +v 178.149994 -137.240997 18.463978 +v 179.033997 -138.953003 17.784977 +v 178.673004 -138.718994 12.921977 +v 178.529999 -138.766998 18.499977 +v 180.279999 -140.981995 17.792976 +v 180.052002 -141.253006 18.399977 +v 181.080002 -142.770004 18.399977 +v 181.395004 -142.604996 17.755978 +v 179.705002 -141.225998 6.302977 +v 178.320007 -138.899994 6.327978 +v 177.188004 -136.615005 4.295978 +v 176.951996 -136.813004 3.788978 +v 177.561005 -139.369003 3.997977 +v 177.563995 -140.807007 3.059977 +v 177.410004 -141.345993 2.367977 +v 177.878006 -142.322006 1.571977 +v 179.360001 -144.294998 1.919976 +v 178.988007 -144.449997 0.353976 +v 179.473007 -146.695007 0.361976 +v 178.095001 -142.134995 2.313977 +v 178.904007 -141.720001 3.742977 +v 179.757996 -143.811005 3.012977 +v 180.598999 -143.182999 4.923976 +v 181.800995 -145.591995 7.089976 +v 180.962997 -142.998993 6.991977 +v 182.102997 -144.369995 17.755978 +v 181.759995 -144.468994 18.399977 +v 182.070007 -146.384995 18.399975 +v 182.429993 -146.369995 17.755976 +v 182.292999 -148.389999 17.755976 +v 181.938995 -148.326996 18.399975 +v 181.375 -150.184998 18.399975 +v 181.705002 -150.326996 17.755976 +v 180.408997 -151.875 18.399975 +v 180.699997 -152.082993 17.755976 +v 178.889999 -153.199005 6.991975 +v 179.322998 -153.567001 17.755976 +v 179.091003 -153.296997 18.399975 +v 177.479996 -154.389008 18.399975 +v 177.649002 -154.709 17.755976 +v 176.526001 -154.610001 7.064975 +v 176.332993 -154.233002 4.923975 +v 173.737 -155.158997 6.991975 +v 173.779999 -154.735001 4.897974 +v 171.009995 -153.602005 2.714975 +v 172.167999 -153.164001 2.009975 +v 169.863998 -152.826996 1.708975 +v 171.005005 -152.738998 1.293975 +v 169.744003 -152.054001 0.451975 +v 171.376999 -152.529999 0.564975 +v 169.904999 -151.841995 0.113975 +v 168.195007 -152.029007 1.013975 +v 166.992996 -151.182999 0.464975 +v 172.093002 -152.569 0.295975 +v 172.688004 -152.811996 0.627975 +v 172.654007 -152.919998 1.189975 +v 171.330994 -150.865005 0.018975 +v 173.197006 -152.141998 -2.5e-05 +v 173.498993 -151.082993 0.201975 +v 175.399994 -150.414001 0.519975 +v 176.867004 -149.112 0.523976 +v 177.033005 -149.229004 0.201976 +v 177.559998 -147.279999 0.530976 +v 177.322006 -145.332993 0.531976 +v 176.210007 -143.727005 0.529977 +v 174.477997 -142.815002 0.515977 +v 172.511993 -142.820007 0.531977 +v 173.498993 -142.979004 5.501976 +v 171.729996 -143.414993 5.501976 +v 170.360001 -144.625 5.501976 +v 172.087997 -144.113007 6.209977 +v 172.776993 -143.852997 9.999976 +v 173.494003 -143.766006 6.209977 +v 174.223007 -143.852997 9.999976 +v 174.815002 -141.445007 9.999977 +v 172.179001 -141.445007 9.999977 +v 172.735001 -140.981995 16.305977 +v 170.641006 -141.664001 16.329977 +v 169.850998 -142.669006 9.999977 +v 171.490005 -144.526993 9.999976 +v 170.669998 -145.716995 9.999976 +v 171.011993 -145.070007 6.209976 +v 170.494995 -146.427002 6.209976 +v 170.669998 -147.858002 6.209976 +v 169.932999 -148.143005 5.501976 +v 170.970993 -149.643005 5.501976 +v 171.606003 -150.417007 0.525976 +v 173.503998 -150.882996 0.509975 +v 171.501007 -150.593002 0.201975 +v 174.410995 -150.490005 5.501976 +v 172.587006 -150.490005 5.501976 +v 172.779999 -149.725006 6.209976 +v 174.222 -149.725006 6.209976 +v 176.026993 -149.643005 5.501976 +v 177.061005 -148.143005 5.501976 +v 175.503006 -149.054993 6.209976 +v 176.330002 -147.860001 6.209976 +v 175.990005 -148.507004 9.999976 +v 176.503006 -147.153 9.999976 +v 178.026993 -149.919006 9.999975 +v 176.057007 -151.660004 9.999975 +v 178.048004 -150.649002 18.314976 +v 179.203995 -148.522995 18.306974 +v 178.962997 -147.453003 9.999976 +v 179.432007 -146.113007 18.333977 +v 178.643005 -144.837006 9.999976 +v 176.330002 -145.716995 9.999976 +v 176.503006 -146.425995 6.209976 +v 177.285004 -146.332993 5.501976 +v 176.634995 -144.625 5.501976 +v 175.990005 -145.070007 6.209976 +v 175.270004 -143.414993 5.501976 +v 174.901001 -144.108002 6.209977 +v 175.503006 -144.526993 9.999976 +v 177.149002 -142.669006 9.999977 +v 178.666 -143.813004 18.305977 +v 177.059998 -142.007996 18.302977 +v 174.949997 -141.044998 18.044977 +v 174.949997 118.431999 18.050018 +v 175.020004 -140.992996 18.363977 +v 174.649002 120.764 18.31502 +v 175.037994 118.410004 18.416019 +v 174.897003 120.859001 18.726019 +v 172.830002 124.300003 18.726021 +v 173.057007 124.685997 18.972021 +v 168.703995 128.766998 18.87602 +v 168.432999 128.513 18.551022 +v 172.636002 124.122002 18.333021 +v 173.645004 120.418999 6.390019 +v 173.979996 118.222 6.402019 +v 174.087997 120.553001 8.21602 +v 174.436996 118.221001 8.240019 +v 174.436005 -107.827003 8.219983 +v 174.850006 -108.544998 16.211983 +v 174.880005 -109.482002 16.825983 +v 173.865997 -109.987999 16.731983 +v 174.889999 -109.773003 16.939983 +v 173.988007 -110.366997 16.964983 +v 174.893005 -112.203003 16.994982 +v 169.214005 -112.574997 16.971981 +v 174.884003 -112.700996 16.808981 +v 174.845001 -136.432999 16.190977 +v 174.860001 -113.029999 16.32398 +v 174.421005 -135.908005 8.179978 +v 174.878006 -137.423996 16.857977 +v 174.891998 -138.246994 17.001978 +v 174.893005 -140.264008 16.991978 +v 174.884003 -140.764008 16.793978 +v 174.858002 -141.093994 16.294977 +v 172.710007 -140.709 16.725977 +v 170.505005 -141.436996 16.725977 +v 168.729996 -142.934998 16.725977 +v 168.951996 -143.095993 16.300978 +v 167.636993 -144.983002 16.725977 +v 167.899994 -145.057007 16.308977 +v 168.350998 -144.837006 9.999976 +v 167.656006 -147.270004 16.312975 +v 167.389999 -147.292999 16.725975 +v 168.009995 -149.524994 16.725975 +v 168.257996 -149.404999 16.299974 +v 168.035004 -147.453003 9.999976 +v 168.966995 -149.919006 9.999975 +v 171.009995 -148.507004 9.999976 +v 170.494995 -147.153 9.999976 +v 172.093002 -149.466995 9.999975 +v 171.490005 -149.054993 6.209976 +v 173.498993 -149.817001 9.999975 +v 170.942993 -151.660004 9.999975 +v 173.498993 -152.289993 9.999975 +v 170.835007 -151.869003 16.051975 +v 169.587006 -151.162994 16.341974 +v 169.423004 -151.369003 16.725975 +v 170.393997 -152.220001 16.823975 +v 171.100998 -152.195007 16.413975 +v 171.106003 -152.270004 18.045975 +v 173.789993 -152.751999 18.315975 +v 176.141998 -152.139999 18.317976 +v 174.903 -149.466995 9.999975 +v 178.393997 -150.897995 18.865974 +v 179.468994 -148.598999 18.725975 +v 179.834 -146.026993 18.861977 +v 178.895004 -143.669006 18.725977 +v 177.207001 -141.774994 18.725977 +v 175.132004 -140.906006 18.576977 +v 175.261002 121.005997 18.96102 +v 175.257996 118.414001 18.72102 +v 175.572998 118.426003 18.928019 +v 176.865997 122.288002 18.990019 +v 169.567001 129.438004 18.99802 +v 168.925995 129.143997 18.947021 +v 168.595001 129.070007 18.722021 +v 168.352005 128.919998 18.437021 +v 168.242996 128.503006 18.111021 +v 172.093002 123.869003 8.23802 +v 167.177002 128.203003 6.496021 +v 159.110001 136.860001 8.203022 +v 158.395004 137.130005 6.901022 +v 158.063004 137.134995 6.213022 +v 157.811005 137.151993 6.915022 +v 152.414993 136.539001 6.342022 +v 157.237 136.557999 4.890022 +v 150.410995 136.559006 6.342022 +v 158.001999 137.820999 18.343023 +v 150.447006 137.132996 18.306023 +v 146.679001 136.593002 6.342022 +v 146.658997 136.324997 5.244022 +v 140.942993 137.063004 5.244022 +v 140.820999 136.417007 4.322022 +v 140.639999 135.479996 3.712022 +v 136.539993 136.455002 3.717022 +v 138.524002 -126.154999 3.497979 +v 146.712997 -116.188004 3.497981 +v 139.162003 -127.903999 3.823979 +v 141.602997 -123.586998 3.71198 +v 142.375 -124.150002 4.32198 +v 139.488998 -128.863007 4.404979 +v 139.740005 -129.522995 5.159979 +v 138.845001 -128.983002 4.234979 +v 138.927994 -129.766998 4.917979 +v 139.764008 -129.925995 5.885979 +v 140.197006 -129.404007 6.031979 +v 143.123993 -124.709999 6.35998 +v 142.903 -124.539001 5.243979 +v 146.781006 -120.007004 5.24398 +v 146.315002 -119.540001 4.32198 +v 145.639999 -118.864998 3.711981 +v 150.371002 -114.838997 3.711981 +v 155.679993 -111.599998 3.711982 +v 150.934998 -115.609001 4.321981 +v 156.113007 -112.449997 4.321982 +v 151.317001 -116.142998 5.243981 +v 146.975006 -120.199997 6.34198 +v 151.472 -116.361 6.329981 +v 156.408997 -113.042999 5.243981 +v 156.511002 -113.292999 6.349981 +v 161.919998 -110.777 5.243982 +v 161.723007 -110.144997 4.321982 +v 161.429993 -109.238998 3.711982 +v 167.477005 -107.809998 3.711982 +v 169.444 -106.349998 3.497983 +v 171.098007 -107.573997 3.807982 +v 172.880005 118.223 4.870019 +v 172.843002 -108.720001 4.899982 +v 174.078003 -108.610001 6.627982 +v 173.417999 -109.056 5.475982 +v 174.110001 -108.995003 10.295981 +v 174.320007 -109.445 16.334982 +v 174.673004 -109.044998 16.346983 +v 173.813004 -109.724998 16.333982 +v 172.843994 -109.237999 6.335982 +v 167.746994 -109.668999 6.323982 +v 167.520004 -110.269997 16.316982 +v 161.880005 -111.656998 16.324982 +v 167.559006 -110.532997 16.725983 +v 167.513 -110.966003 16.967983 +v 161.910995 -111.927002 16.725981 +v 161.947998 -112.353996 16.967981 +v 163.341003 -113.856003 16.967981 +v 157.850006 -116.083 16.967981 +v 163.557007 -114.220001 16.725981 +v 158.126999 -116.404999 16.725981 +v 163.684006 -114.459 16.332981 +v 158.276001 -116.639999 16.301981 +v 174.436996 -113.474998 8.237982 +v 169.300003 -113.271004 16.32098 +v 168.682999 -113.912003 6.327981 +v 168.699997 -114.182999 5.243981 +v 173.264999 -113.82 5.299982 +v 173.960999 -113.557999 6.373981 +v 174.031998 -136.550003 6.540977 +v 174.436996 -136.403 10.315978 +v 174.681 -136.921997 16.345978 +v 174.334 -137.326004 16.334976 +v 173.876999 -137.589996 16.329977 +v 173.957993 -137.839996 16.730978 +v 174.061996 -138.143005 16.928978 +v 170.651001 -138.412994 16.725977 +v 170.589005 -138.147995 16.310978 +v 168.044006 -139.492996 16.327976 +v 165.391998 -141.296005 6.118977 +v 165.699997 -141.889008 16.326977 +v 167.313004 -139.363007 6.341977 +v 169.179993 -138.145996 6.357977 +v 167.136993 -139.154999 5.243977 +v 165.287994 -141.054993 5.274977 +v 165.223999 -142.115997 16.333977 +v 164.753998 -141.501999 6.122977 +v 164.638 -142.173996 16.332977 +v 164.610001 -142.425995 16.719976 +v 165.654999 -142.263 16.720978 +v 165.518997 -143.184006 16.996977 +v 168.417007 -140.061005 16.967978 +v 165.802994 -142.557007 16.927977 +v 168.210007 -139.699005 16.725977 +v 170.735992 -138.804993 16.959976 +v 170.253006 -141.085999 16.972977 +v 168.375 -142.710007 16.967978 +v 167.184998 -144.910004 16.984978 +v 166.953003 -147.384003 16.976974 +v 167.651001 -149.764999 16.972975 +v 169.604996 -152.246994 16.979975 +v 165.147003 -152.380005 16.940975 +v 137.056 -153.240005 18.063974 +v 137.595993 -153.360001 18.532976 +v 171.164993 -152.356003 18.390976 +v 171.070007 -152.587997 18.728975 +v 136.227997 -153.572006 18.979975 +v 136.192993 -153.345993 18.665976 +v 137.921997 -153.742004 18.882975 +v 136.391998 -153.960007 19.174974 +v 171.044006 -152.899994 18.929976 +v 173.800003 -153.018997 18.725975 +v 173.835007 -153.447006 18.980976 +v 138.380005 -155.052994 18.997974 +v 138.320007 -154.154007 19.007975 +v 138.501999 -155.772003 18.842976 +v 174.899002 -153.945999 18.997974 +v 175.050003 -154.664001 18.836975 +v 175.669998 -155.089996 18.399975 +v 173.742996 -155.369003 18.399975 +v 175.757004 -155.436996 17.755976 +v 173.753006 -155.723007 17.755976 +v 138.75 -156.158997 6.989974 +v 138.520004 -156.729004 17.754974 +v 135.313995 -156.75 18.229975 +v 130.591995 -156.843002 20.033976 +v 124.858002 -156.921997 21.448975 +v 119.998001 -156.934998 21.753975 +v 138.766006 -155.492996 4.286975 +v 168.199997 -152.906998 1.902975 +v 165.820007 -151.776993 1.023975 +v 166.041 -150.339996 0.117976 +v -138.746002 -155.494995 4.288975 +v 138.542007 -148.794998 -2.4e-05 +v -163.876007 -148.735001 0.005976 +v -163.436005 122.431999 0.00202 +v -170.509003 -12.565 -2e-06 +v -173.912994 123.668999 2.02202 +v -173.240005 120.266998 0.52502 +v -175.324997 121.300003 2.01202 +v -175.059998 124.819 4.288021 +v -169.539993 129.421997 3.214021 +v -169.031006 128.352997 2.182021 +v -172.253006 122.014999 0.52402 +v -167.945999 127.25 0.860021 +v -165.658997 124.747002 0.02902 +v -170.102005 130.643005 6.560021 +v -169.945007 130.727997 6.681022 +v -169.615997 130.628006 6.503021 +v -169.147003 129.358002 3.300021 +v -167.675995 127.335999 1.100021 +v -165.487 124.938004 0.28402 +v -163.440994 122.885002 0.26402 +v -157.423996 128.520004 0.024021 +v -109.416 124.474998 0.21302 +v -162.475998 133.264999 1.082022 +v -160.113998 130.860001 0.226021 +v -162.520004 132.973007 1.282022 +v -164.537994 134.445007 3.617022 +v -164.494003 134.813004 3.569022 +v -163.261002 134.106995 2.178022 +v -158.505005 137.800003 1.294022 +v -157.75 139.363007 1.454023 +v -160.690002 137.947998 2.859022 +v -159.487 140.080002 3.086023 +v -158.835999 142.373001 2.852023 +v -158.082993 154.509003 2.022025 +v -157.181 141.003006 1.294023 +v -155.384995 154.509003 4.872025 +v -156.509995 154.509003 6.436025 +v -155.783005 141.445007 5.309023 +v -149.916 140.804001 6.354023 +v -156.460007 141.283997 6.360023 +v -156.949997 141.261993 8.332023 +v -157.589996 141.602997 9.923023 +v -156.987 141.615997 9.200023 +v -156.955994 142.0 8.316023 +v -157.334 140.815994 15.785023 +v -149.287003 140.164001 18.305023 +v -155.802002 140.546005 18.328022 +v -149.177994 139.720993 18.880022 +v -142.419998 140.380997 18.862022 +v -135.595001 140.011993 18.964024 +v -134.681 139.753006 18.926023 +v -134.035995 139.804993 18.998022 +v -135.410995 141.912003 18.974024 +v -133.938995 143.391998 18.996023 +v -134.570007 142.962006 18.926023 +v -135.617996 142.281998 18.722023 +v -136.074005 142.399002 18.304024 +v -142.666 140.774002 18.290024 +v -143.205002 141.345993 6.325023 +v -143.317001 141.595001 5.244023 +v -149.921005 141.076996 5.244023 +v -137.520004 143.417999 4.503023 +v -137.112 143.860001 4.330023 +v -137.766998 144.738998 3.810024 +v -136.785004 144.615997 4.443023 +v -140.255005 154.509003 5.244025 +v -136.248001 144.513 5.083024 +v -136.410995 143.809006 5.012023 +v -135.884995 144.222 5.957023 +v -135.992004 144.843994 6.032023 +v -139.960007 154.509003 6.342025 +v -135.274994 154.509003 6.342025 +v -134.985001 154.509003 5.244025 +v -134.270996 154.509003 4.322025 +v -131.761993 146.714996 5.230024 +v -131.403 146.337006 5.070024 +v -130.927002 146.074997 5.012024 +v -131.078003 145.673996 5.941024 +v -130.473007 145.582993 5.965024 +v -130.393005 145.966995 5.070024 +v -129.873993 146.031998 5.230024 +v -129.863007 146.574005 4.504024 +v -125.850998 148.408997 5.244024 +v -129.876999 145.740005 6.050024 +v -125.656998 148.207993 6.365024 +v -125.286003 147.684998 18.296024 +v -121.750999 151.164993 6.342025 +v -121.925003 151.373001 5.244025 +v -118.306999 154.509003 5.773025 +v -118.839996 154.509003 4.914025 +v -113.306 154.509003 18.268024 +v -118.150002 149.432007 18.307024 +v -119.135002 147.688004 6.261024 +v -124.133003 143.720001 5.244023 +v -123.779999 143.162994 4.322023 +v -129.332001 140.391006 4.641023 +v -128.779999 140.001999 4.053023 +v -130.112 140.044006 5.440023 +v -130.231995 140.276993 6.318023 +v -129.899002 140.798996 6.327023 +v -130.835007 140.807999 18.320023 +v -130.487 141.272995 18.323023 +v -131.257996 140.561996 18.725023 +v -133.054001 138.197006 18.998022 +v -134.664993 -125.675003 6.342979 +v -134.835007 -126.373001 6.31998 +v -137.994003 -129.686996 5.189979 +v -138.128006 -130.108002 5.880979 +v -137.651993 -129.742004 5.995979 +v -138.039993 -131.009995 16.207979 +v -138.516998 -131.647003 16.826979 +v -139.248001 -132.554001 17.014978 +v -139.322998 -132.869003 16.997978 +v -138.373001 -135.487 16.975977 +v -138.304993 -135.356995 18.354977 +v -138.057999 -135.554001 18.271976 +v -137.834 -135.488998 18.432978 +v -138.214005 -135.649994 16.896976 +v -137.979996 -135.748993 16.712976 +v -137.630005 -135.520004 18.033978 +v -136.927994 -135.656998 6.233978 +v -137.505005 -135.542007 16.051977 +v -136.274002 -136.608994 4.284977 +v -136.934998 -136.369003 5.171978 +v -1.115 -16.822001 3.497997 +v 1.028 -16.716 3.500997 +v -1.004 -16.556999 3.573997 +v 132.947998 -147.738998 3.497976 +v 133.826996 -148.804001 3.613976 +v 134.057007 -147.190002 3.711976 +v 134.158005 -149.212006 3.726976 +v 135.013 -147.179993 4.321976 +v 134.376999 -141.759995 3.711977 +v 134.029007 -136.848999 3.497977 +v 1.68 -16.249001 3.497997 +v 1.56 -8.910001 3.507998 +v 1.413 -16.139 3.574997 +v 1.351 -8.976001 3.631999 +v 1.249 -15.918001 3.824997 +v 0.96 -16.495001 3.631997 +v 0.903 -16.354 3.856997 +v -0.776 -16.392 3.827997 +v -1.013 -16.304001 3.841997 +v -0.865 -9.373002 10.159998 +v -1.159 -8.930001 3.856999 +v -0.906 -8.724001 3.856999 +v -0.963 -8.585001 3.631999 +v 0.766 -8.664001 3.741999 +v 1.027 -8.387001 3.515999 +v 1.422 15.761999 3.498003 +v 3.009 17.17 3.712003 +v 5.216 16.673 3.498003 +v 5.341 17.952 3.742003 +v 5.792 17.865 3.761003 +v 6.25 18.924999 4.527003 +v 6.19 19.5 5.196003 +v 6.62 20.535995 18.322004 +v 6.283 19.796999 6.116004 +v 6.8 19.399998 6.138003 +v 6.973 20.175997 18.060003 +v 6.155 20.724997 18.342003 +v 5.85 21.389996 18.929005 +v 5.862 21.765997 18.998003 +v 3.178 22.295996 18.968004 +v 5.989 23.874996 18.995005 +v 2.993 22.658997 18.726004 +v 5.629 24.182997 18.726004 +v 2.887 22.904997 18.320004 +v 5.437 24.365995 18.335003 +v -2.925 22.919996 18.319004 +v -0.001 22.129995 18.726004 +v -0.025 22.393995 18.338003 +v -3.0 22.658997 18.726004 +v 7.348 26.646996 18.308004 +v 7.585 26.512997 18.726004 +v 8.627 29.369997 18.726006 +v 8.37 29.429996 18.337006 +v 8.365 32.367996 18.332006 +v 8.32 29.874996 18.052006 +v 7.779 33.844997 18.052006 +v 7.535 33.036999 6.344005 +v 7.273 32.963001 5.244005 +v 6.643 32.783001 4.322005 +v 5.507 35.053001 4.322006 +v 6.037 35.450001 5.244006 +v 6.255 35.617001 6.342006 +v 3.983 37.325001 5.244006 +v 3.635 36.766998 4.322006 +v 1.265 37.682999 4.322006 +v 1.387 38.328999 5.244006 +v -1.273 37.682999 4.322006 +v -1.097 36.743 3.712006 +v 1.09 36.743 3.712006 +v 0.164 35.792 3.497006 +v 3.427 34.400002 3.497006 +v 3.135 35.957001 3.712006 +v 4.75 34.48 3.712006 +v 5.725 32.52 3.712005 +v 4.333 28.735001 3.498005 +v 2.435 26.639999 3.497004 +v -0.001 26.049999 3.498004 +v -2.72 26.813999 3.497004 +v -3.135 35.957001 3.712006 +v -3.635 36.766998 4.322006 +v -1.393 38.328999 5.244006 +v -3.985 37.325001 5.244006 +v -1.483 38.566002 6.283006 +v -4.264 37.499001 6.502006 +v -6.255 35.617001 6.342006 +v -5.453 37.394997 18.301006 +v -2.895 38.879997 18.325006 +v -5.635 37.606995 18.726006 +v -3.0 39.124996 18.726006 +v -3.18 39.493996 18.968006 +v -5.58 40.182995 18.998005 +v -1.616 41.604996 18.968008 +v -5.553 40.561996 18.929007 +v -5.523 40.886997 18.723005 +v -5.838 41.223995 18.352007 +v -5.967 42.166 6.100007 +v -1.631 42.949001 6.342007 +v -5.249 42.27 5.265007 +v -5.28 41.998001 6.126007 +v -1.647 42.284996 18.313007 +v 1.66 42.282997 18.304008 +v 1.62 42.016994 18.726007 +v 5.498 40.897995 18.714006 +v 5.303 41.199997 18.319008 +v 1.629 42.949001 6.342007 +v 5.29 42.001999 6.132007 +v 5.824 41.220997 18.350008 +v 6.656 41.309998 18.735008 +v 6.878 41.080997 18.930008 +v 7.111 40.789997 18.998005 +v 8.039 40.139996 18.998005 +v 85.199997 139.529999 18.987022 +v 86.362 139.125 18.998022 +v 72.218002 139.126999 19.012022 +v 72.225998 139.889999 19.010023 +v 96.703003 154.509003 18.943026 +v 87.054001 141.925003 18.980022 +v 95.860001 154.509003 18.050024 +v 96.254997 154.509003 18.726025 +v 6.723 41.776997 18.369007 +v 6.474 42.583 6.121007 +v 6.29 41.420998 18.313007 +v 5.966 42.167 6.092007 +v 6.331 42.778999 5.300007 +v 65.483002 117.120003 6.340019 +v 65.297997 117.07 5.664019 +v 6.066 43.23 4.527007 +v 64.849998 117.290001 4.719019 +v 5.716 43.063 4.420007 +v 64.063004 116.938004 4.264019 +v 5.435 44.117001 3.758007 +v 62.844002 116.848999 3.713019 +v 4.8 45.259998 3.498007 +v 61.209999 116.550003 3.498019 +v 4.971 43.976002 3.746007 +v 5.867 42.459 5.196007 +v 5.23 42.276001 5.264007 +v 1.663 43.215 5.244007 +v -1.665 43.215 5.244007 +v 1.75 43.869999 4.322007 +v -1.757 43.869999 4.322007 +v 1.883 44.813 3.712007 +v -1.883 44.813 3.712007 +v -4.963 43.978001 3.746007 +v -5.166 42.853001 4.472007 +v -5.867 42.459 5.196007 +v 5.146 42.845001 4.482007 +v 11.112 116.563004 3.498019 +v 62.573002 117.462997 3.648019 +v 63.292 118.552002 4.27002 +v 63.999001 118.842003 4.606019 +v 63.560001 118.160004 4.027019 +v 64.487 118.165001 4.364019 +v 63.937 117.443001 4.020019 +v 65.507004 118.278999 5.410019 +v 65.228996 118.845001 5.410019 +v 65.473 118.980003 6.24402 +v 65.639 117.642998 5.713019 +v 95.972 154.509003 18.419025 +v 98.945999 154.509003 18.956024 +v 99.734001 154.509003 18.355024 +v 79.278999 128.162003 13.336021 +v 74.266998 121.846001 13.42002 +v 79.089996 127.330002 12.167021 +v 78.851997 127.014999 12.482021 +v 80.136002 128.578003 5.880021 +v 79.778999 127.964996 6.278021 +v 80.129997 128.192993 5.354021 +v 80.142998 127.448997 5.226021 +v 9.072 39.863995 18.057005 +v 9.013 39.931995 18.420006 +v 8.81 39.469997 18.318007 +v 8.636 39.777996 18.716005 +v 8.452 38.576996 18.722006 +v 8.128 38.524998 18.928005 +v 5.867 37.987995 18.985006 +v 7.922 35.528996 18.973005 +v 7.753 38.472996 18.998005 +v 9.948 35.216995 18.961006 +v 10.712 32.510998 18.968006 +v 8.8 38.438995 18.324005 +v 8.715 38.971996 18.338005 +v 9.602 39.285 6.097006 +v 9.909 39.259998 5.196006 +v 9.589 38.646 6.093006 +v 9.866 38.591999 5.271006 +v 10.454 38.646999 4.474006 +v 11.51 35.599998 5.244006 +v 12.117 35.848999 4.322006 +v 12.999 36.209 3.712006 +v 129.227997 119.973999 4.16802 +v 130.057999 120.684998 5.25002 +v 13.1 23.292999 3.498004 +v 11.846 22.896 3.760004 +v 127.625 -116.946999 4.732981 +v 128.042999 -116.948997 4.443981 +v 11.806 23.396999 3.748004 +v 10.693 22.667 4.526004 +v 128.059998 -117.906998 5.352981 +v 128.873001 -118.040001 5.253981 +v 128.272995 -118.327003 6.249981 +v 127.686996 -117.906998 6.339981 +v 128.893997 -120.087997 18.363981 +v 128.298004 -119.589996 18.050982 +v 128.235001 -119.653 18.418982 +v 128.753006 -120.483002 18.869982 +v 129.695999 -120.615997 18.873981 +v 130.578995 -120.285004 18.874981 +v 130.212997 -121.077003 18.996981 +v 131.929993 -119.378998 18.99798 +v 133.067001 -126.580002 18.997978 +v 133.054001 138.266998 18.998022 +v 131.576996 -118.634003 18.929981 +v 131.197006 -119.556999 18.869982 +v 129.628006 -120.216003 18.42498 +v 131.261002 -118.630997 18.725981 +v 131.940002 139.201996 18.997023 +v 131.945007 139.824997 18.998022 +v 87.695999 139.074997 19.015022 +v 87.301003 140.300003 18.998022 +v 8.353 39.933994 18.929007 +v 87.440002 138.832001 19.015022 +v 86.550003 138.830002 19.016024 +v 86.615997 132.229004 19.01202 +v 86.460999 132.223007 19.13702 +v 86.43 138.785995 19.180023 +v 86.283997 138.951996 19.135023 +v 72.060997 139.119995 19.140022 +v 72.186996 138.977005 19.142023 +v 72.067001 139.899994 19.129023 +v 86.347 139.925003 19.008022 +v 86.551003 140.179993 19.020023 +v 86.621002 146.787994 19.010025 +v 86.464996 146.800003 19.133024 +v 86.434998 140.229004 19.180023 +v 86.586998 146.949997 19.155025 +v 87.415001 146.940994 19.142025 +v 87.384003 146.787994 19.013025 +v 87.537003 146.787994 19.137024 +v 87.593002 146.858994 23.313025 +v 87.429001 147.001999 23.312025 +v 87.470001 147.104996 23.465025 +v 87.725998 146.901993 23.490025 +v 87.790001 140.281998 23.490023 +v 87.625999 140.281006 23.367023 +v 87.473 140.186005 19.035023 +v 87.713997 140.080002 19.192022 +v 87.57 140.233002 19.184023 +v 87.755997 140.130005 23.348022 +v 156.233994 140.128006 23.355022 +v 156.214005 140.283997 23.488024 +v 156.376999 140.279999 23.360023 +v 156.276993 146.889999 23.489025 +v 156.408997 146.852005 23.314024 +v 156.25 140.072998 19.186024 +v 156.425995 140.214996 19.180023 +v 156.552994 140.177994 19.017023 +v 157.440002 140.186005 19.011023 +v 157.669998 139.947998 19.012022 +v 159.772003 139.119995 18.975023 +v 171.820007 139.123001 19.022022 +v 171.830002 139.895996 19.026022 +v 171.942993 139.126999 19.175022 +v 171.813995 138.973999 19.148024 +v 157.679993 139.063004 19.015022 +v 157.436005 138.832001 19.011023 +v 159.485992 138.529999 19.000023 +v 159.182007 138.222 18.922024 +v 163.447006 133.955994 18.858021 +v 163.789993 134.253006 18.980021 +v 164.25 134.725998 18.987022 +v 161.802002 137.690002 18.946022 +v 159.886993 139.470001 18.740023 +v 157.466003 140.511993 18.395023 +v 156.707001 140.604996 18.319023 +v 160.016006 139.692993 18.386023 +v 161.593002 139.539993 12.293023 +v 160.147995 140.427002 12.104023 +v 160.384003 140.727005 11.818023 +v 159.567001 141.279999 11.412023 +v 158.889999 141.397003 11.093023 +v 157.608002 141.585007 9.966022 +v 158.785995 141.205002 11.179023 +v 157.460007 141.457993 10.105022 +v 158.651993 141.078003 11.354023 +v 160.257004 140.550995 11.911023 +v 157.130997 141.270004 12.000023 +v 157.304001 140.850006 15.313023 +v 156.947998 141.261993 8.362023 +v 156.985992 141.615005 9.199023 +v 161.682999 139.735001 12.060023 +v 162.654007 138.638 12.277023 +v 177.468994 -136.742004 18.849977 +v 177.794006 -139.261993 18.959976 +v 176.759995 -136.815994 18.997976 +v 180.453995 -142.949997 18.840977 +v 180.488998 -144.600006 19.007977 +v 181.403 -145.401993 18.846977 +v 180.529999 -148.759995 18.998976 +v 181.218994 -148.987 18.846975 +v 178.457001 -152.061996 19.016975 +v 179.934998 -151.520004 18.841974 +v 178.108002 -153.360001 18.846975 +v 176.479996 -152.742004 18.972975 +v 176.257004 -152.382996 18.725975 +v 179.875 -148.677002 18.972975 +v 179.231003 -143.429993 18.967978 +v 177.414993 -141.429993 18.967978 +v 175.942001 -140.313995 18.997976 +v 175.606995 -140.552994 18.936977 +v 175.317993 -140.759995 18.776978 +v 169.656006 129.932007 18.906021 +v 169.712006 130.192001 18.756021 +v 167.779007 128.824005 14.226021 +v 167.843994 129.076996 14.272021 +v 167.817993 128.610992 14.154021 +v 167.472 128.919998 13.712021 +v 163.664993 132.731003 13.716022 +v 163.337997 133.082993 14.127022 +v 159.330994 137.414993 18.323023 +v 163.173996 133.546005 18.068022 +v 163.220993 133.688004 18.51902 +v 159.070007 137.917999 18.698023 +v 157.927002 138.395996 18.932022 +v 157.975006 138.082001 18.730022 +v 150.550003 137.811996 18.968023 +v 150.449997 137.406998 18.726023 +v 143.184998 137.897003 18.726023 +v 143.126007 137.634995 18.302023 +v 156.320007 139.067993 19.017023 +v 87.566002 138.796005 19.187023 +v 87.531998 132.222 19.132021 +v 87.383003 132.223007 19.01502 +v 86.598 132.074997 19.138021 +v 87.408997 132.072998 19.145021 +v 87.589996 132.173004 23.313021 +v 87.704002 132.121002 23.480021 +v 87.621002 138.729996 23.362022 +v 87.781998 138.735992 23.486023 +v 156.212997 138.774002 23.478024 +v 156.294998 132.119995 23.47702 +v 156.520004 131.903 23.480021 +v 157.487 131.895996 23.480021 +v 157.705002 132.130005 23.478022 +v 157.779007 138.731995 23.486023 +v 171.882004 138.796997 23.478024 +v 157.746994 138.886993 23.348022 +v 157.623001 138.735992 23.360023 +v 157.567001 138.802002 19.184023 +v 157.716995 138.932999 19.193024 +v 157.533005 132.220001 19.13302 +v 157.380005 132.225006 19.014021 +v 157.589005 132.173996 23.31402 +v 157.408997 132.074005 19.14402 +v 156.593002 132.076004 19.138021 +v 156.613007 132.231995 19.01202 +v 156.462997 132.218994 19.14002 +v 156.550003 138.817993 19.018023 +v 156.427994 138.792007 19.184023 +v 156.279007 138.944 19.184023 +v 156.251007 138.895004 23.317022 +v 87.733002 138.944 19.187023 +v 87.751999 138.888 23.355022 +v 156.373993 138.738998 23.365023 +v 156.410995 132.153 23.318022 +v 156.570999 132.018005 23.31402 +v 157.438995 132.014008 23.31402 +v 171.850006 138.919998 23.305023 +v 171.987 139.962006 23.306023 +v 171.990005 139.072998 23.312023 +v 171.949997 139.884995 19.191023 +v 172.112 139.988007 23.478024 +v 171.880005 140.218002 23.480022 +v 157.781998 140.285004 23.486023 +v 157.712997 146.897003 23.480024 +v 157.481003 147.119995 23.480024 +v 156.494995 147.173996 23.496025 +v 156.539993 147.007004 23.366024 +v 157.595001 146.854004 23.314024 +v 157.537003 146.792007 19.139025 +v 157.414993 146.940002 19.140024 +v 157.429993 147.001999 23.314024 +v 156.466995 146.802002 19.135025 +v 156.613998 146.789993 19.013025 +v 157.382004 146.785995 19.012024 +v 157.567001 140.235992 19.180023 +v 157.710007 140.084 19.195023 +v 171.811005 140.046005 19.150023 +v 171.839005 140.098999 23.312023 +v 157.753998 140.134003 23.348022 +v 157.626007 140.272995 23.363024 +v 156.587997 146.949997 19.154024 +v 86.482002 147.175995 23.498024 +v -72.112 140.244995 23.497023 +v -87.350998 147.259003 23.500025 +v -86.514999 147.130005 23.486025 +v -87.477997 147.102997 23.465025 +v -87.726997 146.904007 23.490025 +v -156.279999 146.910004 23.492025 +v -156.207001 140.283997 23.490023 +v -156.369995 140.242004 23.355022 +v -156.416 146.852997 23.309025 +v -156.522003 147.115005 23.474026 +v -156.546997 147.0 23.312025 +v -157.445999 146.992996 23.306025 +v -157.595001 146.858994 23.313025 +v -157.776993 140.279999 23.483023 +v -171.845001 140.097 23.310022 +v -171.988007 139.970001 23.314022 +v -171.934998 139.899994 19.133022 +v -171.938004 139.123001 19.140022 +v -171.815002 138.975006 19.147022 +v -157.720001 138.934998 19.190023 +v -157.610992 138.727997 23.310022 +v -157.416 132.076004 19.142021 +v -156.406998 132.167007 23.313021 +v -156.378998 138.725998 23.363024 +v -156.451996 132.227997 19.18902 +v -156.442001 138.794006 19.130022 +v -156.572006 132.223007 19.02602 +v -156.598007 138.820999 19.008022 +v -156.317001 139.059998 19.025023 +v -156.253006 138.893005 23.330023 +v -87.758003 138.889999 23.357023 +v -87.622002 138.731003 23.360023 +v -87.404999 132.074997 19.14002 +v -87.539001 132.223999 19.13702 +v -86.570999 132.018005 23.31002 +v -86.405998 132.167007 23.316021 +v -86.378998 138.725998 23.363024 +v -86.224998 138.733994 23.484022 +v -86.254997 138.888 23.345022 +v -71.845001 139.028 23.497023 +v -72.157997 138.927002 23.298023 +v -72.002998 139.054993 23.356024 +v -71.875999 140.003998 23.494022 +v 86.289001 146.889999 23.479025 +v 86.375999 140.285004 23.360023 +v 86.406998 146.850006 23.317024 +v 86.535004 147.005997 23.367025 +v -86.278 146.910004 23.494024 +v -87.444 146.996002 23.310024 +v -86.551003 147.001007 23.312025 +v -87.412003 146.947998 19.150024 +v -87.592003 146.863998 23.314024 +v -87.790001 140.283997 23.489023 +v -87.766998 140.128006 23.356024 +v -156.199005 140.125 23.356024 +v -156.464996 146.787003 19.136024 +v -156.436005 140.227005 19.188023 +v -156.554001 140.175995 19.018023 +v -156.608002 146.848007 19.030025 +v -157.447998 140.169998 19.012022 +v -157.431 146.794998 19.026024 +v -157.574005 140.229996 19.187023 +v -157.552994 146.785004 19.190025 +v -157.412003 146.949997 19.153025 +v -156.576004 146.945999 19.175024 +v -157.623993 140.289001 23.363024 +v -157.755005 140.132004 23.348022 +v -171.813004 140.048004 19.150023 +v -171.785004 139.126007 19.012022 +v -159.106003 139.100006 18.998022 +v -157.604004 139.052002 19.012022 +v -157.567993 138.796997 19.188023 +v -157.539001 132.229996 19.13702 +v -156.593002 132.074005 19.145021 +v -157.382996 132.229996 19.011021 +v -157.432007 138.804001 19.011023 +v -149.259995 139.201004 18.998022 +v -150.272995 137.802002 18.961023 +v -143.126999 138.328003 18.973022 +v -140.557007 139.199005 18.998022 +v -87.690002 139.072006 19.016024 +v -87.566002 138.794998 19.180023 +v -87.443001 138.835999 19.015022 +v -87.384003 132.229004 19.013021 +v -86.550003 138.845001 19.015022 +v -86.570999 132.220993 19.02602 +v -86.426003 138.794006 19.192022 +v -86.449997 132.231003 19.190022 +v -72.190002 138.973007 19.147022 +v -72.056 139.123001 19.176023 +v -72.007004 139.942993 23.317022 +v -72.064003 139.895996 19.139023 +v -86.220001 140.242996 23.475023 +v -86.377998 140.285004 23.362022 +v -86.415001 146.852997 23.308025 +v -87.382004 146.791 19.013025 +v -87.540001 146.794006 19.137024 +v -87.624001 140.287003 23.360023 +v -156.261002 140.076004 19.190023 +v -156.298004 139.947998 19.019022 +v -87.678001 139.955994 19.020023 +v -87.720001 140.078995 19.191023 +v -131.944 139.822998 18.998022 +v -137.787003 139.824997 18.998022 +v -142.449997 139.828003 18.998022 +v -157.259995 139.612 18.998022 +v -157.673996 139.947006 19.011023 +v -157.710007 140.087006 19.201023 +v -171.776001 139.886993 19.010023 +v -159.837997 139.285004 18.901022 +v -161.671997 137.681 18.971024 +v -162.029999 137.917007 18.740023 +v -164.585007 135.063004 18.871023 +v -164.839996 135.302994 18.564022 +v -164.996002 135.376999 18.122023 +v -165.619003 135.345001 14.151022 +v -165.647995 135.113007 14.246022 +v -164.972 135.085007 18.410023 +v -164.658005 134.744995 18.756023 +v -164.268005 134.733002 18.982023 +v -163.800003 133.962997 18.843021 +v -163.781998 134.253998 18.983021 +v -159.197006 138.341995 18.970022 +v -157.923996 138.386002 18.929024 +v -150.451004 137.406998 18.726023 +v -143.184998 137.897003 18.726023 +v -143.160004 137.626999 18.296022 +v -135.727997 139.317001 18.336023 +v -135.468994 139.621994 18.730022 +v -135.212006 139.287994 18.322023 +v -134.716995 139.102997 18.365023 +v -134.322006 139.145004 18.726023 +v -134.332001 138.742004 18.347023 +v -133.882996 139.115005 18.930023 +v -133.748001 138.136002 18.726023 +v -133.520996 139.199005 18.998022 +v -131.951004 139.199005 18.998022 +v -156.283005 138.944 19.185022 +v -87.739998 138.945007 19.187023 +v -86.321999 139.085007 19.003023 +v -86.286003 138.940994 19.188023 +v -72.182999 139.121994 19.021023 +v -85.273003 139.529999 18.995024 +v -8.0 40.087997 18.998005 +v -7.15 40.835995 18.998005 +v -6.907 41.112995 18.930008 +v -87.021004 141.740997 18.990023 +v -86.324997 139.964996 19.020023 +v -72.220001 139.893005 19.012022 +v -72.188004 140.046997 19.151022 +v -86.258003 140.130997 23.318024 +v -72.149002 140.098007 23.310022 +v -86.587997 146.945007 19.146025 +v -86.462997 146.785004 19.136024 +v -86.617996 146.785995 19.011024 +v -86.553001 140.184006 19.021023 +v -87.454002 140.173996 19.016024 +v -87.57 140.238007 19.180023 +v -87.315002 140.307007 18.997023 +v -96.690002 154.509003 18.940025 +v -9.055 39.952995 18.384007 +v -134.985001 -125.620003 5.25498 +v -135.050995 -125.606003 5.021979 +v -135.173996 -126.146004 4.99798 +v -136.061996 -125.654999 3.961979 +v -138.119995 -128.955994 4.389979 +v -138.298996 -128.003998 3.814979 +v -138.723007 -128.214005 3.852979 +v -138.796997 -128.990005 4.235979 +v -138.886002 -129.766998 4.913979 +v -138.690002 -130.261002 5.832979 +v -138.556 -131.264999 16.351978 +v -139.082993 -131.302994 16.350979 +v -139.414993 -131.503998 16.709978 +v -139.572998 -131.160004 16.334978 +v -139.647003 -131.789001 16.93298 +v -140.453995 -131.468994 16.979979 +v -141.384003 -137.227997 16.996977 +v -138.572998 -136.473999 16.967978 +v -137.710007 -135.718002 16.339977 +v -137.901001 -136.449997 16.316977 +v -138.162994 -136.444 16.719976 +v -137.455994 -142.322006 16.967978 +v -137.026993 -142.386993 16.725977 +v -136.757996 -142.345993 16.299976 +v -137.225998 -137.039993 6.224977 +v -137.242996 -136.302002 6.203978 +v -136.953995 -137.013 5.236978 +v -135.324997 -141.882996 4.321977 +v -135.979996 -141.968994 5.243977 +v -135.013 -147.179993 4.321976 +v -133.848007 -148.828003 3.619976 +v -134.382996 -141.759995 3.711977 +v -132.945007 -147.740005 3.497976 +v 134.447006 -149.574005 3.897976 +v 135.251007 -150.565002 4.382976 +v 135.673004 -147.177002 5.243976 +v 135.322998 -141.882996 4.321977 +v 135.979996 -141.968994 5.243977 +v 136.972 -136.490005 5.182978 +v 137.238998 -136.302002 6.195978 +v 136.679001 -135.783997 5.237978 +v 136.074005 -136.078995 4.322978 +v 136.25 -136.598007 4.271977 +v 135.289993 -136.677994 3.703978 +v 6.661 19.171 5.261003 +v 136.919998 -135.651993 6.225978 +v 137.572006 -135.339996 18.393976 +v 7.038 20.235996 18.420004 +v 137.75 -135.270004 18.667976 +v 6.973 20.630997 18.717003 +v 7.203 20.855997 18.927004 +v 7.444 21.148996 18.998003 +v 138.167999 -134.587006 18.996979 +v 137.936005 -134.973007 18.909977 +v 138.776001 -133.186996 18.94998 +v 138.929001 -133.279007 18.836979 +v 127.980003 -120.723999 18.99798 +v 127.82 -120.0 18.929981 +v 8.578 22.119997 18.931004 +v 8.867 22.269997 18.725004 +v 8.246 21.949997 18.998003 +v 8.004 23.667995 18.998003 +v 7.983 26.347996 18.976004 +v 10.36 28.545996 18.999004 +v 9.034 29.345997 18.968006 +v 9.018 32.531998 18.968006 +v 11.02 29.660995 18.862005 +v 11.12 32.509995 18.726006 +v 10.33 35.319996 18.726006 +v 10.583 35.414997 18.314005 +v 9.883 37.976002 6.158006 +v 11.257 35.494999 6.342006 +v 12.045 32.584 6.331005 +v 12.315 32.617001 5.244005 +v 12.965 32.705002 4.322005 +v 13.015 29.452999 4.322005 +v 13.96 29.347 3.712005 +v 13.913 32.84 3.712005 +v 14.945 27.889999 3.498004 +v 13.15 25.948999 3.712004 +v 12.257 26.285 4.322004 +v 12.359 29.527 5.244005 +v 11.637 26.517 5.244004 +v 12.089 29.537998 6.328005 +v 11.427 29.537996 18.304007 +v 11.383 26.614998 6.342004 +v 10.686 26.659996 18.344004 +v 9.022 23.620996 18.319004 +v 9.81 23.473999 6.123004 +v 8.942 23.109997 18.337004 +v 8.69 23.504995 18.715004 +v 9.275 22.106997 18.421003 +v 9.037 22.610996 18.314003 +v 128.063995 -119.792999 18.725981 +v 9.32 22.188995 18.064003 +v 10.131 22.210999 6.117004 +v 9.84 22.776999 6.090004 +v 10.358 22.295 5.307004 +v 127.68 -117.757004 5.755981 +v 10.14 22.815001 5.196004 +v 10.665 23.450001 4.484004 +v 10.092 23.488001 5.266004 +v 8.374 23.581997 18.926004 +v 10.336 26.859997 18.860004 +v 11.393 32.535995 18.310005 +v 8.627 32.412994 18.726006 +v 7.585 35.269997 18.726006 +v 7.377 35.109997 18.332006 +v 5.629 37.606995 18.726006 +v 5.465 37.387997 18.307005 +v 4.22 37.514999 6.440006 +v 1.496 38.557999 6.269006 +v 2.9 38.879997 18.323006 +v 2.993 39.124996 18.726006 +v -0.001 39.652996 18.726006 +v 0.02 39.386997 18.323006 +v 2.003 38.988995 18.052006 +v -0.001 38.73 6.342006 +v -2.005 38.988995 18.052006 +v -0.053 40.075996 18.973005 +v 3.09 39.536995 18.973005 +v 5.482 40.193996 18.998005 +v 1.515 41.634995 18.961008 +v -1.621 42.016994 18.726007 +v -5.309 41.197998 18.322008 +v 5.489 40.573997 18.926006 +v 133.740005 -126.167999 18.724979 +v 133.740005 138.139008 18.725023 +v 133.427994 -126.498001 18.92898 +v 133.429993 138.218002 18.930023 +v 134.341003 138.755005 18.347023 +v 135.369995 138.039993 4.570023 +v 134.557007 137.979996 11.360023 +v 134.992004 137.612 5.276022 +v 136.141006 138.406998 5.646022 +v 136.322998 138.742996 11.398023 +v 140.994995 137.330002 6.342022 +v 142.970993 137.072998 6.342022 +v 135.733002 139.313004 18.329023 +v 135.597 137.716003 4.320023 +v 136.076004 137.072998 3.953022 +v 135.651993 -125.494003 4.382979 +v 135.050003 -125.602997 5.015979 +v 135.182007 -126.152 4.988979 +v 134.807999 -126.349998 6.344979 +v 136.061996 -125.644997 3.95998 +v 136.574005 -125.389999 3.799979 +v 137.505005 -125.188004 3.50298 +v 138.223007 -127.997002 3.839979 +v 138.75 -127.986 3.760979 +v 138.098007 -128.966995 4.411979 +v 138.677002 -130.261993 5.841979 +v 139.25 -130.199997 5.835979 +v 143.311996 -125.363998 16.285978 +v 140.039993 -130.830002 16.330978 +v 147.089996 -120.865997 16.31698 +v 151.5 -117.021004 16.29298 +v 151.623001 -117.268997 16.725981 +v 156.559006 -114.186996 16.725981 +v 156.479996 -113.926003 16.303982 +v 162.003006 -111.032997 6.341982 +v 167.725006 -109.403 5.243982 +v 172.309998 -108.407997 4.391983 +v 167.623001 -108.752998 4.321982 +v 156.649002 -114.620003 16.968981 +v 151.785004 -117.672997 16.967981 +v 147.240005 -121.093002 16.725981 +v 147.464996 -121.463997 16.967981 +v 152.820007 -119.211998 16.967981 +v 148.404007 -123.160004 16.967979 +v 153.153 -119.487 16.725981 +v 148.779007 -123.375 16.725979 +v 153.354004 -119.674004 16.294981 +v 149.003006 -123.522003 16.325979 +v 149.371002 -123.936996 6.34198 +v 145.917999 -128.255997 6.338979 +v 146.139999 -128.406998 5.243979 +v 143.350006 -132.860001 6.056979 +v 144.447006 -134.714996 5.241978 +v 143.705994 -134.589996 5.955978 +v 144.238007 -134.910004 6.028978 +v 164.507996 -141.270996 5.302977 +v 164.408005 -140.725006 4.512977 +v 144.589996 -134.154007 4.437978 +v 144.033005 -134.380005 5.069978 +v 145.417007 -133.382996 3.747978 +v 144.238007 -133.408997 4.331978 +v 145.184006 -132.862 3.800978 +v 143.737 -133.908997 5.011978 +v 143.600998 -133.375 5.069978 +v 143.348007 -134.084 5.932978 +v 143.634995 -132.847 5.239978 +v 143.218002 -133.481995 5.984978 +v 144.181 -132.800995 4.513978 +v 146.688995 -128.774994 4.321979 +v 149.570999 -124.120003 5.24398 +v 150.046997 -124.577003 4.32198 +v 153.660995 -120.467003 5.24398 +v 153.490005 -120.257004 6.340981 +v 158.184998 -117.293999 6.355981 +v 158.300003 -117.540001 5.243981 +v 163.274994 -115.168999 6.341981 +v 163.363007 -115.43 5.243981 +v 158.600998 -118.128998 4.321981 +v 154.054993 -120.997002 4.32198 +v 154.632996 -121.759003 3.71198 +v 150.740005 -125.233002 3.711979 +v 147.479996 -129.304993 3.711979 +v 150.369995 -127.199997 3.497979 +v 146.779999 -132.623001 3.497978 +v 145.585999 -133.686996 3.829978 +v 164.117996 -138.300995 3.497977 +v 164.464005 -139.589005 3.744977 +v 166.535995 -136.184006 3.497978 +v 157.710007 -120.897003 3.49798 +v 159.042999 -118.973 3.711981 +v 163.856995 -116.962997 3.711981 +v 163.561005 -116.056999 4.321981 +v 168.796997 -114.833 4.321981 +v 172.270004 -114.457001 4.394981 +v 172.848999 -136.636993 4.905978 +v 173.431 -136.951004 5.496978 +v 171.214996 -137.117004 5.243978 +v 172.945007 -137.128006 6.144978 +v 171.276993 -137.382996 6.341978 +v 169.059006 -137.899002 5.243978 +v 171.063004 -136.477005 4.321978 +v 172.326996 -136.356003 4.402977 +v 170.826996 -135.518005 3.697978 +v 168.763 -137.307007 4.321978 +v 168.337006 -136.457001 3.711978 +v 166.714996 -138.645004 4.321978 +v 166.104996 -137.912994 3.711977 +v 165.057999 -140.520004 4.477977 +v 164.132996 -141.434006 6.149977 +v 143.501999 -135.283997 16.329977 +v 143.028 -135.020004 16.319977 +v 143.009995 -135.363998 16.738977 +v 142.815994 -135.697998 16.960978 +v 164.544006 -142.737 16.924976 +v 141.436996 -137.257004 16.996977 +v 164.016006 -144.738998 16.960978 +v 165.220001 -145.723999 16.997976 +v 164.860001 -145.856995 16.925978 +v 165.231003 -148.455002 16.967976 +v 166.205994 -151.074997 16.997974 +v 165.779999 -150.699997 16.926975 +v 165.613998 -151.785004 16.934975 +v 164.020004 -152.367996 16.218975 +v 164.496994 -152.181 16.339975 +v 163.955002 -151.908997 10.421975 +v 163.190002 -151.964005 7.975975 +v 140.328003 -153.048996 16.192976 +v 140.117004 -153.080002 16.666975 +v 139.770004 -148.524002 16.287975 +v 139.389999 -148.656998 16.832975 +v 139.597 -153.110001 16.975975 +v 137.822998 -153.160004 16.984976 +v 137.304993 -153.164001 16.720976 +v 137.022003 -153.145004 16.243975 +v 136.509995 -147.886993 16.329975 +v -136.996994 -153.238998 18.079975 +v -137.029999 -153.145996 16.272976 +v -137.330002 -153.164993 16.754974 +v -137.839996 -153.160004 16.989975 +v -139.634003 -153.110001 16.964975 +v -164.020004 -152.367004 16.207975 +v -165.005997 -152.380005 16.872974 +v -171.132996 -152.270004 18.052975 +v -125.595001 -153.737 22.267975 +v -136.358994 -153.345001 18.647976 +v -136.403 -153.574997 18.961975 +v -125.625999 -154.136002 22.504974 +v -119.996002 -154.076996 22.928976 +v -120.0 -153.764008 22.725975 +v -125.07 -153.447006 21.916975 +v -119.999001 -153.539001 22.417974 +v 128.910004 -153.453995 21.179976 +v 119.996002 -153.451996 22.055975 +v 120.0 -153.539001 22.417974 +v 128.957001 -153.699005 21.539976 +v 129.033005 -154.089996 21.762976 +v 119.995003 -153.764008 22.725975 +v 119.897003 -154.128006 22.949976 +v 127.324997 -154.397003 22.029976 +v 131.968994 -155.145004 20.875975 +v 134.367004 -154.289993 19.889975 +v 134.570999 -155.091003 19.790976 +v 136.369995 -155.063995 19.228975 +v 136.350998 -155.587006 19.151976 +v 136.302994 -156.089996 18.899975 +v 138.492996 -156.365005 18.403975 +v 135.783997 -156.442993 18.663975 +v 134.195999 -155.820999 19.785975 +v 130.802994 -156.462006 20.709974 +v 130.886993 -155.688995 21.155975 +v 127.277 -156.246994 21.879974 +v 127.324997 -155.740005 22.127975 +v 123.677002 -155.770004 22.719975 +v 123.383003 -156.548004 22.289976 +v 127.195 -156.649002 21.477976 +v 119.987 -156.576004 22.404976 +v -120.056999 -156.578003 22.399975 +v -138.748001 -156.160004 6.995975 +v -122.557999 -156.931 21.699976 +v -129.729996 -156.871994 20.350975 +v -133.852997 -156.774994 18.759975 +v -137.339996 -156.737 17.772976 +v -173.740005 -155.158997 6.991975 +v -173.748001 -154.746002 4.906975 +v -176.485001 -154.580002 6.834975 +v -176.335007 -154.233002 4.923975 +v -172.529999 -153.507004 2.597975 +v -169.328995 -153.242004 2.257975 +v -168.126007 -152.298004 1.322975 +v -165.871002 -151.787003 1.029975 +v -164.746994 -150.914993 0.577975 +v -138.651001 -151.529999 0.524975 +v -172.440002 -136.238007 0.256978 +v -173.227005 -136.317993 0.519978 +v -175.585007 119.638 2.024019 +v -170.5 119.817001 2e-05 +v -174.162994 -136.587997 0.971978 +v -176.873001 121.777 4.26402 +v -177.201996 119.639999 4.285019 +v -177.520004 121.978996 6.96502 +v -177.615005 121.955002 7.80802 +v -175.593002 125.332001 7.84502 +v -175.535004 125.290001 6.992021 +v -170.190002 130.630005 6.970021 +v -162.712997 138.110001 6.992023 +v -165.636002 135.106003 6.764022 +v -164.664993 135.009995 4.332022 +v -161.940002 138.108994 4.596023 +v -165.576996 134.738007 6.512022 +v -167.173004 128.197006 6.493021 +v -163.106003 132.244995 6.487021 +v -159.126007 136.835999 8.163022 +v -172.100006 123.869003 8.23802 +v -171.779999 123.549004 6.40402 +v -171.001007 122.769997 4.87202 +v -166.576996 127.193001 4.872021 +v -169.875 121.644997 3.85602 +v -165.580994 125.945 3.85602 +v -169.440002 119.176003 3.500019 +v -164.315002 124.586998 3.49802 +v -163.440994 123.719002 3.49802 +v -157.804993 128.526001 0.266021 +v -158.636993 128.522995 3.498021 +v -159.511002 129.395004 3.498021 +v -162.110992 131.656998 4.872022 +v -160.865005 130.662994 3.856021 +v -156.529999 135.677994 4.080022 +v -152.464996 135.613007 4.322022 +v -152.507004 134.660004 3.712022 +v -146.617004 135.664993 4.322022 +v -146.552994 134.714996 3.712022 +v -140.822998 136.417007 4.322022 +v -140.643005 135.479996 3.712022 +v -136.539993 136.453003 3.718022 +v -136.078003 137.069 3.950022 +v -135.600998 137.710999 4.316022 +v -135.378006 138.044006 4.568022 +v -140.949997 137.063004 5.244022 +v -136.130005 138.406998 5.689023 +v -136.330002 138.742996 11.398023 +v -142.973007 137.072998 6.342022 +v -140.996994 137.330002 6.342022 +v -146.664993 136.324997 5.244022 +v -146.684998 136.593002 6.342022 +v -152.431 136.266998 5.244022 +v -157.242996 136.567993 4.900023 +v -158.057007 137.136993 6.210022 +v -158.417007 137.134003 6.960022 +v -158.733002 137.764008 18.302023 +v -159.339996 137.417007 18.340023 +v -163.335007 133.089005 14.137022 +v -163.162003 133.554993 18.072021 +v -163.328003 133.595993 18.466021 +v -163.649994 133.602997 18.31002 +v -163.561005 133.042999 14.217022 +v -163.822998 133.115997 14.250022 +v -167.513 129.061996 13.893021 +v -163.994995 132.901993 14.018022 +v -167.628006 129.240005 14.013021 +v -167.843994 129.063004 14.271021 +v -168.285995 128.800003 18.336021 +v -167.781006 128.850998 14.233021 +v -167.813004 128.612 14.120021 +v -167.460007 128.934998 13.704021 +v -163.811996 132.785004 13.913022 +v -163.649994 132.744003 13.720022 +v -168.656998 129.078003 18.794022 +v -168.436996 128.520004 18.562021 +v -168.703995 128.748001 18.87302 +v -172.658005 124.089996 18.325022 +v -168.289993 128.432007 18.11202 +v -174.634995 120.783997 18.303019 +v -174.089996 120.551003 8.22002 +v -173.651001 120.418999 6.390019 +v -174.436996 118.218002 8.239019 +v -173.985001 118.232002 6.404019 +v -172.600006 120.097 4.86602 +v -172.886993 118.216003 4.874019 +v -171.246002 119.182999 3.848019 +v -169.445999 -106.384003 3.497983 +v -170.822998 -107.389999 3.693983 +v -167.479996 -107.809998 3.711982 +v -171.270996 -107.696999 3.898982 +v -167.625 -108.752998 4.321982 +v -172.322998 -108.404999 4.395982 +v -167.727005 -109.403 5.243982 +v -173.376007 -109.050003 5.479982 +v -172.923004 -109.223999 6.122983 +v -173.630997 -109.324997 10.305982 +v -174.078003 -108.627998 6.606982 +v -174.335999 -109.427002 16.313982 +v -173.822006 -109.720001 16.323982 +v -167.514008 -110.265999 16.303984 +v -167.744995 -109.669998 6.325983 +v -161.927002 -110.777 5.243982 +v -161.723007 -110.144997 4.321982 +v -161.432999 -109.238998 3.711982 +v -161.093002 -108.18 3.497982 +v -137.656006 134.942993 3.498022 +v -146.475006 133.608994 3.498022 +v -155.175003 133.662003 3.498022 +v -134.996002 137.617004 5.270022 +v -134.770996 137.389999 5.706022 +v -134.095001 138.300003 18.320023 +v -134.052994 137.779999 18.052023 +v -133.960007 137.776993 18.422024 +v -137.507996 -125.193001 3.50298 +v -138.563995 -126.214996 3.497979 +v -139.085999 -127.936996 3.797979 +v -139.513 -128.862 4.422979 +v -139.759003 -129.501007 5.169979 +v -139.264999 -130.195999 5.841979 +v -139.768005 -129.927994 5.926979 +v -140.044006 -130.832001 16.341978 +v -140.160004 -129.445999 5.963979 +v -143.123001 -124.709 6.35298 +v -143.311996 -125.382004 16.30098 +v -147.022003 -120.942001 16.325981 +v -143.520996 -125.556999 16.725979 +v -140.251007 -131.007004 16.733978 +v -141.800003 -133.330002 16.967979 +v -142.035995 -134.720001 16.925978 +v -141.990005 -135.492996 16.995977 +v -142.856995 -135.610992 16.923977 +v -164.520004 -142.830002 16.964977 +v -167.220001 -144.789001 16.985977 +v -166.044006 -142.843994 16.997976 +v -165.850006 -142.516006 16.924976 +v -168.057007 -139.490005 16.339977 +v -165.681 -142.240005 16.713978 +v -165.703003 -141.884995 16.322977 +v -169.289993 -138.779999 16.051977 +v -170.582001 -138.147003 16.305977 +v -168.210999 -139.699005 16.725977 +v -170.653 -138.412994 16.725977 +v -168.455994 -139.977005 16.949978 +v -170.843994 -138.789993 16.967978 +v -174.072998 -138.138 16.928978 +v -174.184998 -137.768005 16.719976 +v -174.901993 -138.203003 16.999977 +v -174.895996 -140.257996 16.992977 +v -172.688995 -140.300003 16.964977 +v -170.348007 -141.035995 16.972977 +v -170.511002 -141.436996 16.725977 +v -172.714996 -140.709 16.725977 +v -170.632004 -141.673996 16.326977 +v -172.735992 -140.985992 16.283978 +v -167.893005 -145.072006 16.312977 +v -168.735001 -142.934998 16.725977 +v -168.940994 -143.106995 16.300978 +v -167.643005 -144.983002 16.725977 +v -168.447998 -142.656998 16.959976 +v -167.391006 -147.292999 16.725975 +v -166.972 -147.279999 16.967976 +v -168.016998 -149.524994 16.725975 +v -168.266006 -149.416 16.294975 +v -167.664001 -147.287003 16.297976 +v -168.037003 -147.453003 9.999976 +v -168.973007 -149.919006 9.999975 +v -169.617996 -151.188995 16.328976 +v -171.035004 -152.188004 16.470976 +v -169.300003 -151.483994 16.874975 +v -167.598007 -149.675003 16.976974 +v -165.207993 -148.287994 16.967976 +v -164.994995 -145.057007 16.995977 +v -163.975006 -144.820999 16.923977 +v -142.220993 -137.662994 16.930977 +v -142.184998 -137.977005 16.739977 +v -141.125 -138.210007 16.719976 +v -140.940002 -137.942993 16.925978 +v -141.057999 -138.598999 16.331978 +v -140.714996 -138.979996 16.334976 +v -140.358002 -139.061996 16.723978 +v -139.983002 -138.901993 16.963978 +v -138.697006 -146.654007 16.997974 +v -137.192001 -147.824997 16.969975 +v -139.354004 -148.619003 16.852976 +v -140.139008 -153.078995 16.639975 +v -140.337006 -153.048004 16.167974 +v -163.089996 -151.981995 8.228975 +v -163.955002 -151.908997 10.421975 +v -164.548996 -152.153 16.356976 +v -164.940002 -151.783005 16.384975 +v -165.302994 -151.604004 16.691975 +v -165.154999 -151.300003 16.351974 +v -165.692993 -151.610001 16.936975 +v -165.669006 -152.369003 16.997974 +v -165.927994 -150.867004 16.969975 +v -169.375 -152.257996 16.998976 +v -170.356003 -152.223007 16.839975 +v -171.440002 -152.233994 16.049974 +v -173.798004 -152.753006 18.309975 +v -171.145996 -152.354004 18.397976 +v -137.623993 -153.343002 18.481976 +v -137.925995 -153.707001 18.869976 +v -171.082001 -152.600006 18.736975 +v -136.561996 -153.942001 19.143974 +v -127.403999 -155.214005 22.174974 +v -134.369995 -154.289993 19.889975 +v -130.554993 -155.175003 21.359976 +v -127.327003 -155.740005 22.127975 +v -127.336998 -155.216995 22.205975 +v -127.250999 -155.218994 22.215975 +v -127.165001 -155.218994 22.223976 +v -120.5 -155.255005 22.999975 +v -126.633003 -155.223007 22.359976 +v -122.556999 -155.25 22.903975 +v -120.000999 -154.447998 23.001976 +v -126.900002 -155.220001 22.291975 +v 120.414001 -155.248001 22.999975 +v 119.955002 -155.979996 22.842976 +v 124.040001 -155.246994 22.763975 +v 125.504997 -155.233002 22.505976 +v 126.967003 -155.218994 22.245975 +v 127.335999 -155.216995 22.179976 +v 127.483002 -155.214996 22.155975 +v 127.334999 -155.216995 22.205975 +v 127.665001 -155.212997 22.123976 +v 128.029007 -155.209 22.059975 +v 127.442001 -155.216003 22.170975 +v 127.489998 -155.214996 22.153975 +v 127.495003 -155.214996 22.151976 +v 130.839005 -155.154999 21.049974 +v 129.160995 -155.184998 21.603975 +v 127.154999 -155.218994 22.225975 +v 126.973 -155.220001 22.243975 +v 126.971001 -155.220001 22.245975 +v -123.677002 -155.770004 22.719975 +v -119.968002 -155.972 22.845976 +v -123.476997 -156.546997 22.279976 +v -127.279999 -156.246994 21.879974 +v -130.889999 -155.688995 21.155975 +v -131.014999 -156.455994 20.639975 +v -134.119003 -156.412994 19.353975 +v -134.285004 -155.813004 19.755976 +v -136.309998 -156.089996 18.899975 +v -136.360001 -155.587006 19.151976 +v -138.509995 -155.783005 18.837975 +v -136.227005 -156.494995 18.497974 +v -138.505997 -156.367004 18.400974 +v -173.75 -155.369003 18.399975 +v -173.759995 -155.723007 17.755976 +v -175.671005 -155.089996 18.399975 +v -175.070007 -154.619995 18.849976 +v -176.563995 -153.210007 19.013975 +v -174.940002 -153.919006 18.997974 +v -173.826004 -153.412003 18.966974 +v -176.296005 -152.528 18.860975 +v -173.800995 -153.018997 18.725975 +v -176.151993 -152.136002 18.314976 +v -179.212006 -148.511002 18.301975 +v -178.257004 -150.826996 18.725975 +v -178.059998 -150.636002 18.312975 +v -179.470001 -148.598999 18.725975 +v -178.548004 -151.123993 18.972975 +v -179.858002 -148.761993 18.972975 +v -178.751999 -151.867004 18.998976 +v -177.897003 -153.503006 18.846975 +v -177.485001 -154.389008 18.399975 +v -175.763 -155.436996 17.755976 +v -177.651001 -154.709 17.755976 +v -178.893005 -153.199005 6.991975 +v -178.630997 -152.882996 4.923975 +v -178.160004 -151.182999 1.959975 +v -176.147003 -152.619003 1.979975 +v -173.699997 -153.498001 2.611975 +v -172.671997 -153.044006 1.623975 +v -169.914001 -152.867996 1.756975 +v -171.007004 -152.738998 1.293975 +v -169.865997 -152.130005 0.529975 +v -169.475998 -151.804001 0.235975 +v -166.539993 -150.578995 0.127975 +v -166.975006 -151.067993 0.365975 +v -163.764999 -149.580994 0.129976 +v -165.026001 -149.559006 0.009976 +v -168.923996 -147.378006 0.016976 +v -168.936996 -151.302002 0.017975 +v -169.852005 -149.363007 0.052976 +v -169.304993 -145.246994 0.050976 +v -170.425003 -143.356003 0.019977 +v -172.992004 -137.945999 0.125978 +v -171.477997 -136.371002 0.061978 +v -172.897995 -138.190002 0.010977 +v -174.033997 -139.018005 0.165977 +v -176.932007 -136.807999 3.757978 +v -177.423004 -136.431 4.796978 +v -177.873993 119.639999 6.996019 +v -177.744995 -136.160004 5.961977 +v -177.904999 119.862 7.627019 +v -177.778 122.528999 8.31802 +v -162.776001 138.164993 7.863022 +v -160.763 141.509995 7.799023 +v -160.981003 140.703003 7.026023 +v -160.559998 140.529007 4.998023 +v -159.921997 143.352005 4.806024 +v -160.375 143.759003 6.992023 +v -160.410004 154.507004 7.548025 +v -159.705002 154.509003 4.288025 +v -157.126007 154.509003 8.715025 +v -156.888 142.264008 7.747024 +v -157.326996 154.028 9.193025 +v -157.671997 153.442001 9.795025 +v -157.738007 141.798004 9.914022 +v -158.779007 141.203995 11.177023 +v -158.630005 141.085007 11.339023 +v -157.442993 141.457993 10.096023 +v -157.460007 140.533997 18.355022 +v -157.242996 140.298004 18.740023 +v -157.233002 139.987 18.932022 +v -160.009995 139.705994 18.367023 +v -162.223007 138.104996 18.363024 +v -162.600006 138.692001 12.294023 +v -165.981003 135.009003 13.810022 +v -165.580002 134.878998 14.258022 +v -164.895996 134.848007 18.400023 +v -163.949005 133.953995 18.688021 +v -163.438004 133.940002 18.844021 +v -157.970993 138.074005 18.723022 +v -159.033997 137.942993 18.701023 +v -158.007996 137.820007 18.334023 +v -150.496994 137.134003 18.307022 +v -150.417007 136.559006 6.342022 +v -157.820007 137.151993 6.916022 +v -152.414993 136.539001 6.342022 +v -169.462997 131.089005 14.013021 +v -165.809998 134.725006 14.021022 +v -169.705994 131.238007 13.842021 +v -169.634995 130.845001 14.282021 +v -169.639999 129.869003 18.933022 +v -169.714005 130.188004 18.760021 +v -168.445007 129.057999 18.349022 +v -177.492004 122.279999 18.840019 +v -176.813995 122.413002 18.99202 +v -169.061005 129.067001 18.99402 +v -173.119995 124.605003 18.97002 +v -175.304001 120.940002 18.968019 +v -172.830994 124.300003 18.726021 +v -174.899994 120.859001 18.726019 +v -175.576004 118.421997 18.930019 +v -175.259995 118.422997 18.720018 +v -175.044998 118.428001 18.420019 +v -175.615005 -140.548004 18.939978 +v -175.031006 -140.990005 18.379976 +v -174.949997 118.427002 18.049019 +v -174.854004 -108.589996 16.258984 +v -174.436996 -107.836998 8.222982 +v -174.432999 -108.514999 10.305982 +v -174.632996 -109.002998 16.035982 +v -174.865005 -108.962997 16.499983 +v -174.126007 -109.902 16.709982 +v -174.889999 -109.648003 16.901983 +v -174.899002 -110.375999 17.003983 +v -173.983994 -110.275002 16.926983 +v -167.744995 -110.93 16.967983 +v -167.561005 -110.532997 16.725983 +v -161.917007 -111.927002 16.725981 +v -161.783997 -111.690002 16.32398 +v -162.009995 -111.032997 6.341982 +v -156.526001 -113.288002 6.349981 +v -156.410004 -113.042999 5.243981 +v -156.113007 -112.449997 4.321982 +v -150.934998 -115.609001 4.321981 +v -150.376999 -114.838997 3.711981 +v -155.681 -111.599998 3.711982 +v -152.804993 -111.780998 3.497982 +v -143.294998 -119.598 3.49798 +v -136.574997 -125.328003 3.799979 +v -134.664001 136.942001 6.340023 +v -141.602997 -123.586998 3.71198 +v -145.647003 -118.864998 3.711981 +v -146.315002 -119.540001 4.32198 +v -151.322998 -116.142998 5.243981 +v -146.781006 -120.007004 5.24398 +v -151.468002 -116.365997 6.323981 +v -146.975006 -120.199997 6.34198 +v -142.910004 -124.539001 5.243979 +v -142.375 -124.150002 4.32198 +v -151.432999 -117.080002 16.297981 +v -156.417999 -113.955002 16.297981 +v -156.561005 -114.186996 16.725981 +v -151.630005 -117.268997 16.725981 +v -147.242996 -121.093002 16.725981 +v -147.619995 -121.308998 16.967981 +v -143.917999 -125.714996 16.967979 +v -144.847 -127.639999 16.967979 +v -148.552002 -123.012001 16.967979 +v -152.990005 -119.085999 16.967981 +v -151.966995 -117.542999 16.967981 +v -158.029999 -115.991997 16.967981 +v -156.856003 -114.510002 16.968981 +v -163.529999 -113.799004 16.967981 +v -162.143997 -112.289001 16.967981 +v -169.322998 -112.573997 16.96998 +v -174.897995 -112.199997 16.994982 +v -163.557007 -114.220001 16.725981 +v -158.132996 -116.404999 16.725981 +v -153.153 -119.487 16.725981 +v -148.781006 -123.375 16.725979 +v -145.136993 -127.949997 16.725979 +v -142.210007 -133.432999 16.718979 +v -142.320007 -134.570007 16.718979 +v -142.485001 -134.197006 16.351978 +v -142.690994 -134.658997 16.329977 +v -143.039993 -135.029999 16.323977 +v -143.029999 -135.339996 16.712976 +v -143.468002 -135.264008 16.334976 +v -164.608994 -142.440002 16.730978 +v -165.240005 -142.112 16.333977 +v -167.313004 -139.363007 6.341977 +v -165.395996 -141.294998 6.141977 +v -165.302002 -141.046005 5.275977 +v -167.139999 -139.154999 5.243977 +v -169.184006 -138.139999 6.339978 +v -169.061005 -137.899002 5.243978 +v -171.279999 -137.382996 6.341978 +v -172.960007 -137.134995 6.256978 +v -173.664993 -137.209 10.315978 +v -173.886993 -137.587006 16.326977 +v -174.343994 -137.309998 16.311977 +v -174.854004 -136.742004 16.399977 +v -174.886002 -137.464005 16.885977 +v -174.949997 -141.044006 18.050978 +v -174.886993 -140.746994 16.801977 +v -174.860001 -141.091003 16.309977 +v -174.820999 -141.445007 9.999977 +v -172.184998 -141.445007 9.999977 +v -173.5 -143.710007 9.999976 +v -171.710007 -144.059998 5.997977 +v -173.001007 -143.764999 6.171977 +v -173.501007 -142.979004 5.501976 +v -171.729996 -143.414993 5.501976 +v -172.522003 -142.815994 0.520977 +v -170.791 -143.722 0.513977 +v -170.367004 -144.625 5.501976 +v -170.686005 -144.848007 5.851977 +v -171.690994 -144.067001 9.999976 +v -170.636993 -144.904999 9.999976 +v -169.850998 -142.669006 9.999977 +v -168.356995 -144.837006 9.999976 +v -170.050995 -146.119003 9.999976 +v -170.050995 -147.462997 9.999976 +v -170.050995 -146.119003 5.767976 +v -170.050995 -147.466003 5.768976 +v -169.940002 -148.143005 5.501976 +v -170.636993 -148.677002 5.841976 +v -170.636993 -148.677002 9.999976 +v -171.690002 -149.514999 5.987976 +v -170.973007 -149.643005 5.501976 +v -172.992004 -149.815002 6.174976 +v -171.690994 -149.514999 9.999975 +v -173.001007 -149.817001 9.999975 +v -173.501007 -152.289993 9.999975 +v -174.001007 -149.817001 9.999975 +v -173.981995 -149.820007 6.176976 +v -174.412994 -150.490005 5.501976 +v -172.589996 -150.490005 5.501976 +v -173.496002 -150.882996 0.509975 +v -175.393997 -150.417007 0.526976 +v -176.029999 -149.643005 5.501976 +v -175.313004 -149.514999 5.988976 +v -175.315002 -149.514999 9.999975 +v -176.059998 -151.660004 9.999975 +v -178.029999 -149.919006 9.999975 +v -176.365005 -148.677002 9.999976 +v -178.964996 -147.453003 9.999976 +v -176.951004 -147.462997 9.999976 +v -178.649994 -144.837006 9.999976 +v -179.429993 -146.100006 18.323977 +v -178.664001 -143.800003 18.313976 +v -179.697006 -146.074997 18.725977 +v -179.039993 -143.621002 18.861977 +v -180.117004 -146.067993 18.972977 +v -180.733994 -145.785995 18.998978 +v -180.449997 -149.042999 18.998976 +v -179.934998 -151.520004 18.841974 +v -179.091003 -153.296997 18.399975 +v -180.410995 -151.875 18.399975 +v -179.324997 -153.567001 17.755976 +v -180.703003 -152.082993 17.755976 +v -180.699997 -151.087006 7.034975 +v -180.350006 -150.860001 4.923975 +v -179.936996 -149.414993 2.970976 +v -179.431 -149.126999 1.919976 +v -177.800003 -150.934006 0.362975 +v -175.917999 -152.244995 0.354975 +v -173.669998 -152.772003 0.377975 +v -173.725006 -153.132996 1.887975 +v -172.684006 -152.813995 0.629975 +v -173.272995 -152.492996 0.079975 +v -173.328003 -152.145996 -2.5e-05 +v -172.511002 -152.662994 0.309975 +v -171.373993 -152.524994 0.561975 +v -171.382996 -150.891998 0.018975 +v -173.529999 -151.406006 0.018975 +v -171.507004 -150.593002 0.201975 +v -170.132996 -149.112 0.519976 +v -169.444 -147.279999 0.540976 +v -169.679001 -145.330002 0.524976 +v -169.235001 -147.307007 0.201976 +v -170.653 -143.576996 0.201977 +v -172.473007 -142.619995 0.201977 +v -174.485992 -142.820007 0.533977 +v -175.272995 -143.414993 5.501976 +v -174.001007 -143.764999 6.171977 +v -175.315002 -144.065994 5.986977 +v -176.641006 -144.625 5.501976 +v -176.220001 -143.729996 0.520977 +v -177.324997 -145.341003 0.539976 +v -177.287003 -146.332993 5.501976 +v -177.557999 -147.289993 0.529976 +v -176.863007 -149.117996 0.532976 +v -177.945007 -147.281006 0.052976 +v -177.520004 -145.264999 0.201976 +v -176.350006 -143.576996 0.201977 +v -176.539993 -143.317993 0.019977 +v -174.576996 -142.300995 0.018977 +v -174.529999 -142.619995 0.201977 +v -172.373001 -142.315994 0.018977 +v -176.975006 -142.764999 0.001977 +v -175.768005 -140.985992 0.126977 +v -177.487 -142.757004 0.083977 +v -176.177002 -140.977005 0.609977 +v -174.839996 -139.677994 0.329977 +v -175.078995 -138.522003 1.309977 +v -174.005005 -138.136993 0.581977 +v -175.201996 -137.225006 1.686978 +v -176.348007 -137.285995 2.872977 +v -170.235001 130.169998 18.108021 +v -178.436996 122.036003 17.760019 +v -178.072006 122.198997 18.407019 +v -170.054001 130.889999 14.154021 +v -170.095993 130.949997 13.761021 +v -178.154007 123.114998 12.34502 +v -178.136002 123.463997 12.04002 +v -162.115005 139.455994 12.045023 +v -177.936996 122.745003 8.56602 +v -177.932007 124.400002 8.76002 +v -177.602005 124.510002 8.52202 +v -175.979996 125.555 8.38402 +v -163.287994 138.578003 8.480022 +v -162.960999 138.339005 8.238023 +v -161.423004 141.694 8.485023 +v -161.050003 141.526993 8.238023 +v -160.449997 143.781998 7.850023 +v -160.673004 153.910004 8.247025 +v -160.820999 153.559998 8.342025 +v -160.822998 153.804001 8.492024 +v -158.585007 152.393997 10.853024 +v -159.630997 151.048996 11.292025 +v -158.923004 141.380997 11.115023 +v -160.259003 140.542999 11.920023 +v -160.154999 140.421005 12.112023 +v -161.563004 139.561005 12.295023 +v -161.660004 139.733002 12.070023 +v -161.942993 148.897003 12.030024 +v -160.360001 140.746994 11.805023 +v -160.998993 149.882996 11.957025 +v -177.951996 134.569 8.792022 +v -178.136002 132.776993 12.050022 +v -178.154007 133.097 12.343022 +v -161.283997 149.919006 12.226025 +v -170.901993 140.604996 13.722023 +v -175.339996 136.153 13.705022 +v -178.287994 133.505005 15.798022 +v -175.636993 136.132004 15.630022 +v -178.279999 136.028 15.433022 +v -177.729996 136.123993 8.830022 +v -177.511993 136.076996 8.564022 +v -176.470001 138.184006 8.762023 +v -161.705994 152.981003 8.823025 +v -161.535995 152.783997 8.550025 +v -176.248993 137.972 8.522023 +v -177.612 134.651993 8.524022 +v -160.834 143.667999 8.342024 +v -160.684998 154.509003 11.412024 +v -161.531998 154.509995 17.914024 +v -158.041 154.509003 18.655025 +v -158.621994 153.626007 18.693026 +v -158.348007 154.509003 18.980024 +v -170.869995 141.514999 18.861023 +v -158.753006 153.802002 18.933025 +v -171.251007 141.595001 18.964024 +v -171.837997 142.320007 18.990023 +v -172.022003 142.690994 18.864023 +v -172.436005 142.516006 18.773024 +v -171.070007 141.332001 18.737022 +v -170.891006 141.341995 18.628023 +v -175.582001 136.550003 15.603022 +v -175.748001 136.235992 16.018023 +v -175.776993 136.600006 15.980021 +v -176.143005 136.554993 16.312023 +v -177.251999 137.591995 16.321022 +v -178.009995 135.936996 16.203022 +v -177.654999 136.029007 16.420023 +v -176.438004 136.376999 16.471024 +v -176.154999 136.251007 16.353024 +v -177.296997 138.166 15.972023 +v -178.225998 136.009995 15.848022 +v -177.306 138.320999 15.568023 +v -175.354004 136.567001 13.987022 +v -177.104004 138.354004 14.000023 +v -173.093002 142.380005 14.000023 +v -173.093002 142.964996 17.900023 +v -172.714005 142.684998 18.575024 +v -160.962006 154.509003 18.523026 +v -160.235001 154.507996 18.871025 +v -159.404999 154.503998 19.000025 +v -171.330994 141.369995 18.706022 +v -171.304001 140.617004 13.985023 +v -177.617004 135.166 16.458023 +v -177.957993 134.296005 16.27202 +v -177.082993 136.546997 16.516024 +v -169.862 130.910004 14.237021 +v -169.919998 130.240997 18.568022 +v -175.949997 118.440002 18.998018 +v -175.949997 -140.315994 18.997976 +v -177.487 -141.449997 18.975977 +v -175.307007 -140.776993 18.759977 +v -177.212997 -141.774994 18.725977 +v -175.134003 -140.904999 18.575977 +v -177.057999 -142.001999 18.311977 +v -177.151001 -142.669006 9.999977 +v -175.315002 -144.067001 9.999976 +v -176.365005 -144.904999 9.999976 +v -176.362 -144.899994 5.842976 +v -176.951004 -146.126999 5.774976 +v -177.067001 -148.143005 5.501976 +v -176.934998 -147.503006 5.799976 +v -177.039993 -149.229004 0.201976 +v -175.613998 -150.723999 0.053975 +v -173.501007 -151.082993 0.201975 +v -177.313004 -149.388 0.019976 +v -178.718002 -148.798996 0.037976 +v -179.093994 -146.671005 0.037976 +v -179.473007 -146.725006 0.361976 +v -179.052994 -148.992004 0.361976 +v -179.912994 -146.727997 2.015976 +v -180.220993 -148.160004 3.055976 +v -179.462997 -144.320007 2.109976 +v -179.001007 -144.442001 0.372976 +v -177.867004 -142.304993 1.597977 +v -177.701996 -142.535004 0.372977 +v -178.643997 -144.561996 0.045976 +v -177.807999 -145.130005 0.018976 +v -176.315002 -140.179993 1.931977 +v -176.800003 -139.425995 2.994977 +v -177.567001 -139.369003 3.997977 +v -177.873993 -136.065002 6.999978 +v -178.438004 -135.983002 17.757977 +v -178.080994 -135.852997 18.396976 +v -177.488998 -135.690002 18.838978 +v -176.759995 -135.945007 18.997976 +v -177.501007 -138.675995 18.971977 +v -179.789993 -143.429993 19.009977 +v -181.444 -145.664993 18.847977 +v -181.141998 -149.238007 18.846975 +v -181.945007 -148.326996 18.399975 +v -181.380997 -150.184998 18.399975 +v -181.710999 -150.326996 17.755976 +v -182.294998 -148.389999 17.755976 +v -181.705994 -148.459 6.993976 +v -181.304993 -148.375 4.923975 +v -181.397003 -145.720001 4.923976 +v -181.763 -145.660004 6.827976 +v -180.600998 -143.182999 4.923976 +v -177.582001 -140.802002 3.083977 +v -178.112 -142.093002 2.393977 +v -178.876999 -141.645004 3.769977 +v -177.468994 -141.423004 2.357977 +v -179.403 -141.520004 4.799977 +v -178.0 -139.100006 5.003977 +v -179.690002 -141.223999 6.262977 +v -178.311996 -138.886993 6.306978 +v -178.304993 -137.317001 18.283978 +v -178.089996 -138.522003 18.710978 +v -180.464005 -142.910004 18.825977 +v -181.080994 -142.770004 18.399977 +v -181.761002 -144.468994 18.399977 +v -182.070999 -146.384995 18.399975 +v -182.429993 -146.369995 17.755976 +v -182.104996 -144.369995 17.755978 +v -180.970001 -142.998993 6.991977 +v -181.401001 -142.604996 17.755978 +v -180.093002 -141.264008 18.360977 +v -178.699997 -138.742996 18.283978 +v -179.479996 -139.804993 17.763977 +v -180.335007 -141.029999 17.753977 +v -178.679993 -138.718994 12.921977 +v -178.759995 -138.237 17.759977 +v -175.806 -151.880997 0.037975 +v -177.570007 -150.645996 0.046975 +v -171.600006 -150.414993 0.517976 +v -176.365005 -148.677002 5.841976 +v -176.951004 -146.119003 9.999976 +v -169.714996 -146.332993 5.501976 +v -170.942993 -151.660004 9.999975 +v -174.839005 -136.348007 16.049976 +v -174.436996 -113.474998 8.237982 +v -174.436996 -135.735992 8.222978 +v -173.960999 -113.557999 6.367981 +v -168.690002 -113.912003 6.319982 +v -169.272003 -113.276001 16.30998 +v -174.862 -113.029999 16.33098 +v -174.886993 -112.685997 16.815981 +v -169.279999 -113.002998 16.725981 +v -163.593994 -114.486 16.331982 +v -158.216003 -116.667999 16.301981 +v -168.707001 -114.182999 5.243981 +v -163.281006 -115.168999 6.341981 +v -163.363007 -115.43 5.243981 +v -158.197006 -117.287003 6.361981 +v -153.289993 -119.728996 16.294981 +v -148.942993 -123.591003 16.319979 +v -145.356003 -128.115997 16.294979 +v -142.559998 -133.201004 16.33898 +v -143.352005 -132.871994 6.026978 +v -142.447998 -133.684006 16.320978 +v -143.222 -133.481995 5.965978 +v -143.350006 -134.089996 5.941978 +v -143.707993 -134.593994 5.987978 +v -144.240005 -134.906006 6.019978 +v -164.126999 -141.432999 6.154977 +v -164.649002 -142.173996 16.329977 +v -164.757004 -141.501007 6.115977 +v -164.520004 -141.266006 5.285977 +v -143.636993 -132.847 5.240979 +v -146.147003 -128.406998 5.243979 +v -145.921005 -128.248993 6.343979 +v -149.572998 -124.120003 5.24398 +v -150.052994 -124.577003 4.32198 +v -154.061005 -120.997002 4.32198 +v -154.632996 -121.759003 3.71198 +v -159.044998 -118.973 3.711981 +v -158.606995 -118.128998 4.321981 +v -163.860001 -116.962997 3.711981 +v -163.567001 -116.056999 4.321981 +v -168.940002 -115.775002 3.711981 +v -168.800003 -114.833 4.321981 +v -171.132004 -115.338997 3.796981 +v -169.449005 -116.809998 3.497981 +v -169.468002 -134.837997 3.496978 +v -161.389008 -118.986 3.497981 +v -166.492004 -136.216003 3.497978 +v -168.343002 -136.457001 3.711978 +v -170.835007 -135.516998 3.699978 +v -171.065002 -136.477005 4.321978 +v -168.764999 -137.307007 4.321978 +v -166.110992 -137.912994 3.711977 +v -164.121994 -138.302002 3.497977 +v -164.473007 -139.593002 3.749977 +v -145.380005 -133.468002 3.777978 +v -146.761993 -132.595001 3.496978 +v -145.216995 -132.899002 3.784978 +v -147.485001 -129.304993 3.711979 +v -146.690002 -128.774994 4.321979 +v -150.740997 -125.233002 3.711979 +v -152.960007 -124.477997 3.49798 +v -144.179993 -132.800003 4.515978 +v -143.602997 -133.375 5.069978 +v -144.302994 -133.410004 4.296978 +v -143.742996 -133.908997 5.011978 +v -144.623993 -134.149994 4.429978 +v -144.035004 -134.380005 5.069978 +v -144.447006 -134.714005 5.240978 +v -164.419998 -140.720001 4.504977 +v -165.076996 -140.518005 4.488977 +v -166.716995 -138.645004 4.321978 +v -171.214996 -137.117004 5.243978 +v -173.427002 -136.955002 5.495977 +v -173.977997 -136.598007 6.449977 +v -174.634995 -136.895996 16.042976 +v -174.145996 -136.447998 6.798977 +v -173.294006 -113.796997 5.329981 +v -172.298004 -114.420998 4.413981 +v -172.300003 -136.322998 4.379978 +v -172.850998 -136.636993 4.905978 +v -158.302994 -117.540001 5.243981 +v -153.662994 -120.467003 5.24398 +v -153.501007 -120.25 6.339981 +v -149.373001 -123.936996 6.34198 +v -170.973007 -152.923996 18.946976 +v -138.470993 -154.227997 18.999975 +v -138.384995 -155.054001 18.997974 +v -136.220001 -155.069 19.242975 +v -134.369995 -155.097 19.889975 +v -130.845001 -155.154999 21.049974 +v -127.196999 -156.649002 21.477976 +v -164.809998 -148.449005 16.725975 +v -164.546997 -145.908997 16.719976 +v -164.352997 -146.259003 16.331978 +v -163.686005 -146.378006 6.113976 +v -164.136993 -145.774002 16.316977 +v -163.322998 -145.882996 6.120976 +v -163.787994 -145.397995 16.320976 +v -162.785004 -145.572006 6.144976 +v -163.363998 -145.166 16.335978 +v -142.880005 -139.042007 6.335977 +v -142.507004 -138.330002 16.337976 +v -141.994995 -138.266006 16.310978 +v -141.5 -138.345001 16.345978 +v -142.229004 -139.050003 5.372977 +v -162.977005 -145.917007 5.295976 +v -141.501007 -138.899002 10.301977 +v -141.610001 -139.371002 4.565977 +v -141.037003 -139.309998 10.311977 +v -141.078995 -140.173996 3.779977 +v -141.257004 -139.783005 4.103977 +v -162.449005 -148.875 3.863976 +v -161.389999 -147.738007 3.546976 +v -161.979996 -147.251007 3.747976 +v -163.990005 -150.360001 4.933976 +v -140.623001 -151.072998 4.871975 +v -162.860001 -149.009995 4.093976 +v -163.692993 -148.837006 5.083976 +v -162.973007 -146.873993 4.451976 +v -164.039993 -148.763 6.341976 +v -163.505005 -146.580002 5.286976 +v -163.835007 -147.037003 6.165976 +v -164.544998 -148.518005 16.301975 +v -164.343002 -149.897003 6.326976 +v -164.296997 -150.647995 5.152976 +v -164.475006 -151.432999 10.407975 +v -163.477005 -151.873993 7.571975 +v -164.014008 -151.423004 6.238975 +v -140.707001 -152.169998 6.403975 +v -140.686996 -152.619995 8.237975 +v -140.501007 -149.516006 3.862976 +v -140.404007 -147.352997 3.484976 +v -157.981995 -147.136002 3.497976 +v -139.826004 -144.115997 16.312977 +v -140.507004 -139.473999 16.342978 +v -139.434998 -143.876007 16.853977 +v -139.774002 -148.615005 16.303976 +v -139.843002 -146.248993 16.051977 +v -140.841003 -141.529007 3.497977 +v -165.210007 -150.755005 16.332975 +v -165.477997 -150.727997 16.733974 +v -162.593002 -146.367004 4.469976 +v -163.820999 -145.100006 16.710978 +v -164.845001 -145.774994 16.927977 +v -155.662994 134.479996 3.576022 +v -136.781006 -147.895004 16.725975 +v -136.514008 -147.959 16.323975 +v -135.949997 -147.197998 6.363976 +v -136.251007 -142.003006 6.341977 +v -135.673004 -147.177002 5.243976 +v -136.031998 -151.619995 5.352975 +v -135.955002 -151.516006 5.259975 +v -135.255005 -150.563004 4.379976 +v -134.162003 -149.216995 3.724976 +v 135.949997 -147.188004 6.354976 +v 136.020004 -151.617996 5.354975 +v 136.335999 -152.244003 6.337975 +v 136.347 -152.259995 6.406975 +v 136.513 -152.723007 8.241975 +v 136.761002 -142.339996 16.306976 +v 136.244995 -142.003006 6.341977 +v 137.223999 -137.037994 6.223978 +v 137.764999 -135.867004 16.325977 +v 137.901993 -136.451996 16.324978 +v 138.279999 -134.936005 18.850977 +v 138.115005 -135.307007 18.653976 +v 137.830994 -135.483002 18.442978 +v 138.240997 -135.451996 18.306976 +v 138.417999 -135.076004 18.558977 +v 139.085007 -133.229996 18.603979 +v 139.067001 -132.863007 18.679979 +v 139.164993 -132.585007 18.263979 +v 134.25 -126.962997 18.600979 +v 133.960999 -126.144997 18.417978 +v 134.662994 136.929001 6.333023 +v 134.759995 137.345001 5.726022 +v 134.662994 -125.675003 6.34098 +v 134.044998 137.774002 18.060022 +v 134.050003 -126.127998 18.049978 +v 133.960007 137.783005 18.420023 +v 134.097 138.313004 18.322023 +v 134.401001 -126.859001 18.051979 +v 139.238007 -132.869995 18.242979 +v 139.268005 -132.595993 16.997978 +v 139.315002 -132.869003 16.997978 +v 138.75 -131.953995 16.964979 +v 139.505005 -131.820007 16.926979 +v 139.371994 -131.529007 16.719978 +v 138.421005 -131.533005 16.717979 +v 138.102997 -131.139008 16.385979 +v 138.035995 -130.973007 16.03998 +v 137.658005 -129.742996 5.964979 +v 137.973999 -129.673996 5.200979 +v 138.123993 -130.113007 5.925979 +v 138.552002 -131.266006 16.357979 +v 139.065994 -131.304001 16.349979 +v 139.557007 -131.166 16.33198 +v 140.220001 -131.016998 16.719978 +v 140.464996 -131.225998 16.926979 +v 140.464005 -131.794998 16.997978 +v 143.794006 -125.893997 16.968979 +v 143.514999 -125.556999 16.725979 +v 144.729996 -127.803001 16.967979 +v 141.352997 -133.972 16.995979 +v 141.910004 -133.281998 16.92598 +v 145.134995 -127.949997 16.725979 +v 142.205994 -133.399994 16.724979 +v 145.358002 -128.100998 16.305979 +v 142.561996 -133.209 16.327978 +v 142.445007 -133.675003 16.33198 +v 142.477997 -134.177994 16.34598 +v 142.298996 -134.526001 16.718979 +v 141.990005 -134.619003 16.92598 +v 141.026993 -137.893005 16.925978 +v 142.212997 -137.686005 16.923977 +v 138.876007 -135.817001 16.997976 +v 138.373993 -135.479996 16.977978 +v 138.210999 -135.647995 16.894978 +v 138.483994 -136.490005 16.927977 +v 138.169998 -136.466003 16.729977 +v 137.026993 -142.386993 16.725977 +v 136.774994 -147.895004 16.725975 +v 137.427002 -142.550003 16.967978 +v 140.003006 -138.860992 16.963978 +v 141.166 -138.188004 16.717978 +v 142.177002 -138.005997 16.714977 +v 142.128006 -138.210007 16.411978 +v 163.822006 -145.072998 16.733976 +v 164.544998 -145.934006 16.714977 +v 164.143997 -145.779999 16.335978 +v 164.347 -146.257996 16.329977 +v 164.037003 -148.763 6.341976 +v 164.548004 -148.522995 16.321976 +v 163.718002 -146.440002 6.147976 +v 163.5 -146.595001 5.287976 +v 163.692993 -148.837006 5.083976 +v 164.335007 -149.869003 6.334976 +v 164.289993 -150.643997 5.145976 +v 165.160004 -151.229996 16.329975 +v 165.203995 -150.759995 16.328976 +v 165.466003 -150.740005 16.723976 +v 164.809006 -148.449005 16.725975 +v 165.304993 -151.656998 16.713976 +v 164.927994 -151.789993 16.372974 +v 164.033005 -151.391006 6.157975 +v 140.699997 -152.169998 6.403975 +v 140.679993 -152.619995 8.237975 +v 140.617996 -151.059998 4.861975 +v 140.406998 -147.350006 3.484976 +v 139.841003 -146.248993 16.051977 +v 139.830002 -144.093994 16.309977 +v 140.528 -139.479004 16.295977 +v 139.421997 -144.061996 16.852978 +v 140.386002 -139.018997 16.716976 +v 138.669006 -146.268005 16.997976 +v 137.194 -148.078003 16.967976 +v 140.748001 -138.949997 16.301977 +v 141.069 -138.591003 16.319977 +v 141.509995 -138.339996 16.348978 +v 142.147003 -138.296005 16.053978 +v 142.203003 -139.050003 5.359977 +v 142.876999 -139.042007 6.339977 +v 162.981003 -145.932999 5.271976 +v 162.779999 -145.570007 6.147976 +v 163.320007 -145.882996 6.114976 +v 163.798004 -145.410004 16.314978 +v 163.326004 -145.147995 16.323977 +v 162.977005 -146.871002 4.458976 +v 162.835999 -149.173996 4.089976 +v 162.487 -148.919998 3.893976 +v 140.505005 -149.487 3.855976 +v 157.970001 -147.134003 3.497976 +v 141.033997 -140.358994 3.736977 +v 140.835007 -141.529007 3.497977 +v 141.240997 -139.794998 4.092977 +v 161.973007 -147.244003 3.747976 +v 141.615005 -139.352005 4.586977 +v 162.587006 -146.376007 4.460976 +v 161.401001 -147.744995 3.546976 +v 137.990997 -135.744995 16.729977 +v 137.807007 -135.595993 18.068977 +v 137.651993 -135.699997 16.239977 +v 137.528 -135.414993 18.053978 +v 142.679001 -134.639999 16.324978 +v -136.345001 -152.25 6.359975 +v -136.518005 -152.720993 8.225975 +v 164.197006 -118.019997 3.497981 +v 169.460007 -134.848999 3.496978 +v 169.453003 -116.817001 3.497981 +v 168.938995 -115.775002 3.711981 +v 171.126999 -115.346001 3.796981 +v 1.025 -8.765001 3.761999 +v 1.218 -9.030001 3.838999 +v 0.862 -15.695002 10.161997 +v 1.162 -16.150999 3.847997 +v 0.552 -16.010002 10.170997 +v 0.655 -15.930002 10.271997 +v -0.56 -16.012001 10.165998 +v -0.66 -15.926002 10.269998 +v -0.86 -15.708002 10.175997 +v -1.25 -15.860001 3.833997 +v -0.66 -9.153002 10.273998 +v -0.748 -9.394002 10.349998 +v -0.564 -9.072001 10.172998 +v 0.557 -9.066002 10.160998 +v 0.657 -9.153002 10.269999 +v 0.856 -9.382002 10.179998 +v 0.638 -15.698002 10.440997 +v -0.744 -15.688002 10.350997 +v -0.556 -9.394002 10.464998 +v -0.53 -15.685002 10.471997 +v 0.616 -9.384002 10.450998 +v -131.563995 140.673004 18.930023 +v -131.789993 141.427002 18.997023 +v -130.662003 141.483002 18.729023 +v -123.959999 144.203003 6.480023 +v -123.849998 145.003006 18.300022 +v -129.735001 141.25 11.282022 +v -129.671997 140.722 5.433023 +v -123.983002 145.240005 18.726023 +v -130.865005 141.727005 18.930023 +v -132.496994 144.108002 18.998022 +v -131.643997 144.177002 18.926023 +v -132.626999 144.947006 18.930023 +v -134.854004 143.121994 18.716022 +v -135.227005 143.029007 18.324022 +v -135.572006 142.651993 18.320023 +v -136.936005 142.839996 5.997024 +v -138.509995 152.723999 18.322025 +v -139.128006 154.509003 19.426025 +v -135.953003 154.507996 18.243025 +v -138.442993 154.509003 19.793024 +v -136.761993 154.509003 19.490025 +v -136.207993 154.511002 19.033026 +v -135.832001 153.815994 18.590025 +v -132.300003 145.576996 18.332024 +v -131.953995 146.507996 6.059024 +v -132.033997 145.156998 18.323023 +v -131.595001 145.992996 5.968024 +v -132.356003 145.108002 18.729023 +v -136.259995 153.520004 18.960024 +v -137.867004 152.860001 18.962025 +v -138.231003 152.746994 18.726025 +v -134.729996 144.147003 18.720022 +v -134.944 144.145004 18.424023 +v -134.410004 144.190002 18.929024 +v -135.020996 143.490997 18.340023 +v -135.033005 144.089996 18.060022 +v -136.022995 143.630005 5.948023 +v -136.388 143.139999 5.973023 +v -131.520004 144.477005 18.715023 +v -131.158005 144.667999 18.342022 +v -131.634003 144.839996 18.320023 +v -130.656006 144.669998 18.313023 +v -130.210007 144.796005 18.346024 +v -125.110001 147.466995 18.726025 +v -120.553001 150.975006 18.726025 +v -120.191002 150.746002 18.972025 +v -116.873001 154.509003 18.797026 +v -117.338997 154.509003 18.288025 +v -113.780998 154.509003 18.808025 +v -118.349998 149.623001 18.726025 +v -118.662003 149.910004 18.970024 +v -124.121002 145.638 18.968023 +v -124.790001 147.197006 18.968025 +v -130.302994 144.048004 18.964024 +v -130.421997 144.436996 18.720022 +v -116.167999 154.509003 18.996025 +v -114.580002 154.509003 18.998024 +v -120.769997 151.139999 18.323025 +v -136.716995 143.356995 5.070024 +v -137.126007 143.037003 5.230023 +v -86.278999 140.084 19.190023 +v -86.433998 140.225006 19.186024 +v -86.592003 132.074005 19.14402 +v 158.735992 137.761002 18.305023 +v 163.778 133.768005 18.61202 +v 163.949997 134.052994 18.805021 +v 164.445999 134.554001 18.813021 +v 164.699997 134.792007 18.726023 +v 164.557007 135.007004 18.890022 +v 162.020004 137.927002 18.740023 +v 164.632996 135.283005 18.720022 +v 164.856003 135.300003 18.534023 +v 162.186996 138.102997 18.425022 +v 164.990005 135.395004 18.100023 +v 165.608002 135.350998 14.172022 +v 165.964996 135.026001 13.810022 +v 169.729996 131.253006 13.811021 +v 170.115997 130.856995 14.172021 +v 178.145996 123.123001 12.31802 +v 178.434006 122.038002 17.764019 +v 178.070007 122.192001 18.410019 +v 177.485992 122.296997 18.840019 +v 175.942993 118.440002 18.998018 +v 169.923004 130.246002 18.54302 +v 169.613007 130.845993 14.263021 +v 167.647003 129.248001 14.022021 +v 167.520996 129.082001 13.915021 +v 163.580994 133.044006 14.226022 +v 163.792999 132.774002 13.892022 +v 163.817993 133.117004 14.252022 +v 163.533997 133.569 18.367022 +v 164.912994 134.867004 18.388023 +v 164.968002 135.117996 18.421022 +v 165.643005 135.139008 14.243022 +v 165.811996 134.720993 14.019022 +v 169.453003 131.074997 14.020021 +v 169.858994 130.910995 14.238021 +v 170.227997 130.173004 18.106022 +v 163.988007 132.901993 14.020022 +v 165.582993 134.882996 14.256021 +v 99.417999 154.509003 18.726025 +v 74.445 121.471001 6.34302 +v -154.690002 142.0 4.310023 +v 172.643005 -140.279999 16.971977 +v 169.276993 -113.002998 16.725981 +v 174.429993 -108.514999 10.305982 +v 165.567001 134.735001 6.512022 +v 179.389999 -141.488007 4.821977 +v 177.990005 -139.110001 4.972977 +v 177.742004 -136.162003 5.959978 +v 177.419998 -136.417007 4.795978 +v 135.998001 142.414001 18.330023 +v 135.554001 142.667007 18.317022 +v 135.587006 142.307999 18.716022 +v 134.832993 143.156006 18.718023 +v 135.216995 143.037994 18.333023 +v 135.011002 143.505005 18.350023 +v 134.729996 144.194 18.728024 +v 134.410004 144.248993 18.933023 +v 137.817993 152.873001 18.980024 +v 136.761002 154.509003 19.496025 +v 138.643997 154.509003 19.778025 +v 139.166 154.509995 19.292025 +v 136.063995 154.509003 18.847025 +v 135.714005 153.843002 18.325026 +v 132.020996 145.149994 18.324022 +v 132.313004 145.585999 18.349024 +v 132.326004 145.093002 18.718023 +v 135.938995 153.692993 18.726025 +v 131.615005 144.832993 18.322023 +v 131.136993 144.664001 18.346024 +v 130.630005 144.669998 18.318024 +v 125.669998 148.201004 6.361024 +v 129.867004 145.740997 6.054024 +v 131.070007 145.671997 5.945024 +v 130.468994 145.580994 5.982024 +v 130.386993 145.966995 5.070024 +v 129.873001 146.031998 5.230024 +v 125.850998 148.408997 5.244024 +v 129.858002 146.574005 4.504024 +v 126.214996 148.957001 4.322024 +v 121.919998 151.373001 5.244025 +v 121.745003 151.164993 6.342025 +v 122.347 151.878998 4.322025 +v 126.742996 149.753006 3.712024 +v 129.981995 147.483002 3.845024 +v 136.283005 153.507996 18.963024 +v 138.524002 152.766006 18.333025 +v 135.988007 144.847 6.055023 +v 137.123001 143.035995 5.230023 +v 136.384995 143.141006 5.966023 +v 136.919006 142.832993 6.040023 +v 136.710007 143.356995 5.070024 +v 137.520004 143.417007 4.504024 +v 136.020004 143.638 5.934023 +v 134.979996 144.110992 18.335022 +v 138.227997 152.748001 18.726025 +v 135.876999 144.222 5.988023 +v 136.410995 143.809006 5.012023 +v 136.216003 144.526993 5.152023 +v 112.738998 149.647003 3.498024 +v 113.553001 150.408997 3.712024 +v 118.154999 146.074997 3.712024 +v 119.782997 143.324005 3.498023 +v 123.269997 142.356995 3.712023 +v 123.778999 143.162994 4.322023 +v 124.133003 143.720001 5.244023 +v 118.760002 146.807007 4.322024 +v 119.182999 147.317001 5.244024 +v 114.247002 151.059006 4.322025 +v 114.730003 151.509003 5.244025 +v 118.992996 147.800003 6.203024 +v 118.167 149.419998 18.300024 +v 114.927002 151.695007 6.342025 +v 123.838997 145.007004 18.300022 +v 118.343002 149.623001 18.726025 +v 118.585999 149.936005 18.967024 +v 123.976997 145.240005 18.726023 +v 129.733002 141.25 11.282022 +v 129.893997 140.794998 6.296023 +v 124.028 144.130005 6.394023 +v 129.701996 140.707001 5.439023 +v 130.112 139.988007 5.435023 +v 110.810997 129.132996 3.498021 +v 112.917 128.035004 8.540021 +v 130.552994 125.919998 8.502021 +v -3.403 111.080002 3.706018 +v -8.22 112.477997 3.499018 +v -6.48 112.619003 3.706018 +v -5.925 113.389999 4.304018 +v -8.94 115.027 3.706019 +v -11.113 116.563004 3.498019 +v -61.213001 116.550003 3.498019 +v -62.466999 117.610001 3.700019 +v -63.605999 118.139999 4.023019 +v -63.285999 118.540001 4.25702 +v -64.512001 118.115997 4.365019 +v -63.931999 117.389999 4.026019 +v -62.810001 117.044998 3.656019 +v -64.712997 117.443001 4.536019 +v -66.467003 118.379997 12.213019 +v -66.708 118.655998 12.496019 +v -11.113 126.857002 3.498021 +v -8.422 130.705994 3.498021 +v 11.107 126.857002 3.498021 +v 10.394 125.730003 3.746021 +v -3.737 133.384995 3.498022 +v -6.48 130.798996 3.706021 +v -69.642998 125.790001 3.77002 +v 180.347 -148.179993 3.055976 +v -175.117996 156.313995 21.608025 +v -174.826004 157.251007 25.360025 +v -174.688004 156.994003 25.208025 +v -174.369003 157.270004 34.000027 +v -176.699997 157.268997 24.340025 +v -175.587006 157.268982 56.184025 +v -173.550003 157.262985 56.355026 +v -175.369995 157.268982 57.116028 +v -173.322006 157.268982 56.558025 +v -174.824997 157.268982 57.898026 +v -174.024994 157.268982 58.416027 +v -173.102005 157.268982 58.597027 +v -173.110001 153.986984 57.781025 +v -174.044998 154.08699 57.626026 +v 173.147995 151.465988 55.516022 +v 173.100006 153.985977 57.780025 +v 174.097 151.634979 55.432022 +v 173.182007 151.053986 54.380024 +v 174.179993 150.49498 52.326023 +v 174.903 152.08699 55.156021 +v 174.843002 154.338989 57.170025 +v 174.042999 154.08699 57.626026 +v 174.820007 157.268982 57.898026 +v 174.020004 157.268982 58.416027 +v 173.087006 157.268982 58.600025 +v -86.223999 157.268982 56.592026 +v -87.669998 157.269989 56.576027 +v -149.259003 157.268982 56.587029 +v -149.227997 156.916992 56.577026 +v -150.664001 157.269989 56.562027 +v -149.382996 157.265991 56.500027 +v -173.218002 154.639984 55.843025 +v -173.285004 152.953979 54.102028 +v -173.615997 153.153992 53.992027 +v -173.554001 154.770981 55.655025 +v -173.244995 156.922989 56.567028 +v -173.727005 152.635986 51.728027 +v -173.475006 152.309982 51.800026 +v 0.706 152.179977 48.985023 +v -0.739 152.174988 48.970024 +v 86.190002 152.270981 51.774025 +v 87.503998 152.39798 49.704025 +v 87.598 153.236984 54.335026 +v 87.786003 153.116989 54.383026 +v 87.584 152.413986 52.107025 +v 149.244995 152.94899 54.100025 +v 149.485001 152.389984 49.693027 +v 149.429993 152.447983 51.778027 +v 149.404007 153.06398 54.030025 +v 149.384003 154.676987 55.720028 +v 149.218002 154.639984 55.846027 +v 149.380005 156.93399 56.464027 +v 149.479996 152.572983 50.178028 +v 149.462006 153.572983 51.002026 +v 150.369003 153.486984 50.814026 +v 149.639999 152.659988 50.105026 +v 149.626007 153.606979 50.874027 +v 150.401993 152.659988 50.118027 +v 150.531006 152.495987 50.177025 +v 150.533997 154.662979 51.238026 +v 150.531998 153.409988 50.914028 +v 150.369995 154.65799 51.106026 +v 150.494995 157.268982 51.153027 +v 150.647003 157.269989 56.551025 +v 150.610001 154.985977 55.893028 +v 150.759995 154.927979 56.006027 +v 173.561996 154.735977 55.615028 +v 173.309998 152.956985 54.096027 +v 173.253006 154.639984 55.827026 +v 173.5 156.93399 56.382027 +v 173.332001 157.268982 56.553028 +v 173.576004 157.268982 56.217026 +v 174.358994 157.268997 34.239025 +v 175.580002 157.268982 56.184025 +v 175.367004 157.268982 57.116028 +v 175.449997 154.734985 56.340027 +v 175.449997 152.756989 54.724026 +v 174.994003 151.033981 52.285023 +v 175.531998 151.837982 52.237022 +v 175.679993 153.00499 53.394028 +v 176.692993 157.268997 24.340025 +v 176.628006 151.697006 26.150024 +v 176.759995 156.774994 22.510025 +v 175.125 156.326996 21.618025 +v 176.820007 155.863007 20.846025 +v 175.044998 157.270996 24.437025 +v 174.845001 157.255997 25.231026 +v 175.229996 153.770004 18.852024 +v 174.925003 153.610992 19.015024 +v 176.867004 154.587006 19.448025 +v 176.901001 153.014999 18.386024 +v 176.725006 148.755005 23.400024 +v 176.509995 148.845001 24.490025 +v 176.522995 146.938995 24.016026 +v 175.975006 146.938995 24.796024 +v 176.610992 129.130005 23.847021 +v 176.867004 130.337006 19.35202 +v 176.934998 132.753006 17.49802 +v 176.934998 149.354996 17.498024 +v 176.925003 151.238998 17.726025 +v 176.925003 131.697006 17.730021 +v 176.901001 130.837006 18.39002 +v 175.044998 129.320007 23.207022 +v 175.975006 128.876999 24.796021 +v 175.960007 148.466995 25.180025 +v 176.460007 150.300003 25.810024 +v 175.910995 149.630005 26.242025 +v 175.110001 149.179993 26.520025 +v 174.164993 149.009995 26.598024 +v 174.089996 149.429993 27.750025 +v 173.235992 150.271988 51.837025 +v 173.229996 150.306992 52.325024 +v 175.850006 150.160004 27.738026 +v 176.389999 150.970001 27.687025 +v 175.039993 149.621994 27.766026 +v 173.608002 153.16098 53.992027 +v 173.240005 156.92598 56.563026 +v 149.339996 157.268982 56.556026 +v 87.657997 157.269989 56.577026 +v 149.210007 156.906982 56.580029 +v 87.766998 154.92598 56.008026 +v 86.391998 157.266983 56.462029 +v 86.232002 157.268982 56.590027 +v 0.651 157.268982 56.562027 +v -0.67 157.269989 56.576027 +v -86.230003 156.916992 56.577026 +v -86.385002 157.265991 56.495026 +v -149.214005 154.66098 55.867027 +v -149.238007 152.942978 54.097027 +v -149.406006 153.053986 54.033028 +v -149.393997 154.706985 55.730026 +v -150.604004 155.00499 55.856026 +v -150.729996 154.935989 56.002026 +v -150.699997 153.149979 54.380028 +v -150.591995 153.263992 54.292027 +v -150.660004 152.34198 52.134026 +v -150.570007 152.463989 52.063026 +v -150.487 152.605988 50.098026 +v -150.509995 152.394989 49.701027 +v -150.813995 152.287979 52.098026 +v -150.742004 152.174988 48.973022 +v -149.259995 152.17598 48.986023 +v -87.738998 152.176987 48.980022 +v -86.290001 152.17598 48.967022 +v -86.260002 152.27298 51.765026 +v -0.602 152.376984 52.116028 +v -0.514 152.391983 49.700027 +v 0.507 152.394989 49.699028 +v 0.682 152.302979 52.001026 +v 0.568 152.468979 52.103027 +v 0.598 153.236984 54.335026 +v 0.77 153.116989 54.371025 +v 86.177002 152.80098 53.610027 +v 86.398003 152.361984 51.821026 +v 86.486 152.391983 49.698029 +v 86.404999 153.061981 54.030025 +v 86.242996 152.942978 54.095028 +v 86.385002 154.678986 55.723026 +v 86.219002 154.662979 55.860027 +v 86.248001 156.921982 56.578026 +v 86.482002 152.571991 50.180027 +v 86.464996 153.570984 50.994026 +v 87.372002 153.485977 50.814026 +v 86.638 152.659988 50.105026 +v 86.629997 153.606979 50.874027 +v 87.404999 152.65799 50.118027 +v 87.533997 152.487991 50.170025 +v 87.537003 154.663986 51.240028 +v 87.529999 153.409988 50.918026 +v 87.374001 154.65799 51.106026 +v 87.497002 157.268982 51.154026 +v 87.612999 154.982986 55.898026 +v 86.496002 157.268982 51.149025 +v 86.454002 154.665985 51.276028 +v 86.583 154.678986 51.119026 +v 0.843 155.422989 56.140026 +v -86.207001 154.659988 55.867027 +v -86.231003 152.942978 54.097027 +v -86.400002 153.046982 54.038025 +v -86.389999 154.704987 55.733028 +v -87.601997 155.006989 55.860027 +v -87.742996 154.915985 56.000027 +v -87.606003 153.219986 54.313026 +v -87.601997 152.376984 52.115028 +v -87.482002 152.606979 50.097027 +v -87.514 152.391983 49.699028 +v -87.817001 152.28598 52.094028 +v -87.796997 153.096985 54.365028 +v -87.834 153.887985 55.083027 +v -149.496994 152.401978 49.711025 +v -149.279999 152.271988 51.766026 +v -149.434998 152.445984 51.767025 +v -149.462006 154.659988 51.242027 +v -149.492996 157.268982 51.160027 +v -150.503998 157.268982 51.150028 +v -150.550003 154.661987 51.278027 +v -150.533005 153.439987 50.930027 +v -149.645996 152.667984 50.113026 +v -149.479996 152.55098 50.154026 +v -149.468994 153.542984 50.983028 +v -149.623001 154.656982 51.106026 +v -150.410004 154.676987 51.115028 +v -150.371994 153.47998 50.810028 +v -149.645004 153.612991 50.873028 +v -86.492996 152.394989 49.699028 +v -86.462997 153.534988 50.986027 +v -86.466003 154.666992 51.237026 +v -86.494003 157.268982 51.159027 +v -86.626999 154.65799 51.106026 +v -87.503998 157.268982 51.149025 +v -87.414001 154.679977 51.117027 +v -87.545998 154.663986 51.276028 +v -87.533997 153.440979 50.930027 +v -86.638 153.612991 50.874027 +v -87.374001 153.47998 50.810028 +v -86.598999 152.658981 50.115028 +v -86.466003 152.48999 50.173027 +v -86.417 152.39299 51.744026 +v -0.834 153.887985 55.083027 +v -0.797 153.096985 54.365028 +v -0.742 154.915985 56.000027 +v -0.606 153.219986 54.313026 +v -0.518 152.572983 50.180027 +v -0.368 152.65799 50.106026 +v -0.534 153.440979 50.930027 +v -0.378 153.482986 50.813026 +v 0.403 152.65799 50.115028 +v 0.534 152.487991 50.170025 +v 0.537 154.663986 51.240028 +v 0.53 153.409988 50.918026 +v 0.374 154.65799 51.106026 +v 0.497 157.268982 51.154026 +v 0.613 154.982986 55.898026 +v -0.602 155.006989 55.860027 +v -0.546 154.663986 51.276028 +v -0.504 157.268982 51.149025 +v -0.415 154.679977 51.118027 +v 0.371 153.487991 50.814026 +v 0.776 154.924988 56.013027 +v -0.816 152.287979 52.102028 +v 87.836998 153.890991 55.087029 +v 149.494995 157.268982 51.149025 +v 149.451996 154.669983 51.276028 +v 149.580002 154.679977 51.119026 +v -174.845001 154.338989 57.170025 +v -174.910004 152.08699 55.156021 +v -174.988007 151.026978 52.287022 +v -175.533997 151.839981 52.238022 +v -176.391998 150.964005 27.668024 +v -176.761002 156.774994 22.510025 +v -176.632996 151.684006 26.230024 +v -176.820999 155.863007 20.846025 +v -176.869995 154.587006 19.448025 +v -175.080002 157.270004 24.392025 +v -175.688995 152.964981 53.398026 +v -175.451004 152.756989 54.724026 +v -175.393005 154.71698 56.480026 +v -175.602997 155.158981 55.660027 +v -118.824997 128.686996 2.498021 +v -125.177002 128.686996 2.498021 +v -125.803001 126.189003 7.58802 +v -125.885002 128.089996 8.278021 +v -118.199997 126.189003 7.58802 +v -118.116997 128.089996 8.278021 +v 175.251007 125.944992 23.598021 +v 176.740005 124.949989 23.598021 +v 178.080002 121.708992 23.598019 +v 177.729996 123.464989 23.598021 +v 148.498993 -149.505005 27.595976 +v 148.498993 -150.804993 27.595976 +v 148.498993 -151.839996 27.871975 +v 148.498993 -151.660995 28.276976 +v 163.216003 -144.755997 27.602978 +v 148.792007 -144.766006 27.599977 +v 149.115005 -144.507004 27.747976 +v 149.600006 -144.160004 27.595978 +v -18.129 -151.373993 27.595976 +v 149.656998 -144.281998 27.863977 +v 162.514999 -144.309998 27.849977 +v 162.334 -144.130005 27.595978 +v 178.080002 -36.350002 27.595995 +v 163.498993 -149.505005 27.595976 +v 163.498993 -151.729996 28.272976 +v 163.498993 -151.705994 27.872974 +v 163.498993 -150.804993 27.595976 +v 173.501999 -151.373993 27.595976 +v 177.729996 -148.544998 27.595976 +v 178.080994 -146.789001 27.595976 +v 178.496994 -146.789001 25.597975 +v -178.082001 -146.785004 23.597975 +v 178.080002 -146.789001 23.597975 +v 175.410995 126.328995 25.598021 +v 173.503998 126.293991 23.598021 +v 173.5 126.71299 25.600021 +v 175.251007 125.944992 27.596022 +v 173.5 126.293991 27.596022 +v 176.740005 124.949989 27.596022 +v 177.729996 123.464989 27.596022 +v 177.033005 125.246994 25.598021 +v 178.119003 123.624992 25.598021 +v 178.080002 121.708992 27.59602 +v 178.496994 121.708992 25.598019 +v -149.671005 -144.130005 27.595978 +v -178.082001 -34.740005 27.595995 +v 173.503006 -151.789993 25.596975 +v 175.410995 -151.408997 25.597975 +v 175.251007 -151.024994 27.595976 +v 177.033005 -150.326996 25.597975 +v 176.740005 -150.029999 27.595976 +v 178.119003 -148.705002 25.597975 +v 177.729996 -148.544998 23.597975 +v -177.737 123.464989 23.598021 +v -173.501999 126.294991 23.598021 +v 23.305 126.293991 27.596022 +v 148.498993 125.804993 27.596022 +v 148.498993 126.676994 27.857021 +v 163.498993 126.637993 27.860022 +v 163.498993 125.804993 27.596022 +v 163.498993 124.682991 27.596022 +v 148.557007 119.582993 27.59602 +v -178.082001 85.159996 27.596014 +v 148.498993 124.682991 27.596022 +v 148.498993 126.676994 28.215021 +v 163.498993 126.928993 27.743021 +v 163.498993 127.179993 27.997021 +v 163.498993 126.654991 28.21002 +v 148.498993 127.221992 27.948021 +v 163.516998 127.35199 27.50502 +v 148.477005 127.353989 27.504021 +v 148.477005 127.349998 22.350021 +v 163.520004 127.353996 22.350021 +v 163.498993 127.272003 21.986021 +v 148.498993 127.147003 21.805021 +v 163.498993 126.695 21.63302 +v 148.498993 126.669998 21.997021 +v 144.744995 122.746002 22.00202 +v 163.498993 126.692001 21.996021 +v 144.429993 123.035004 21.648022 +v 144.906998 122.470001 21.64802 +v 145.117004 121.757004 22.00202 +v 145.117004 121.664001 21.650019 +v 144.813004 120.763 22.00202 +v 144.753006 120.685997 21.64802 +v 144.139999 120.242996 22.00202 +v 145.897003 118.385002 22.00202 +v 144.845001 117.819 22.00202 +v 145.897003 118.385002 21.64802 +v 146.789993 119.151001 21.64802 +v 146.822998 119.166 22.00202 +v 154.283997 121.182999 22.017019 +v 154.307999 122.346001 22.014019 +v 154.483002 122.663002 22.010019 +v 154.772995 122.857002 22.010019 +v 166.880005 121.660004 22.00202 +v 157.240005 122.851997 22.00902 +v 157.544998 122.627998 22.010019 +v 157.707001 122.253998 22.019018 +v 157.699005 121.098 22.01602 +v 157.697006 121.421997 22.053019 +v 157.488007 121.265999 22.352018 +v 163.5 119.150002 22.019018 +v 157.511993 120.752998 22.010019 +v 157.225006 120.559998 22.010019 +v 148.498993 119.138 22.017019 +v 149.056 117.625999 21.20002 +v 162.979996 117.637001 21.206018 +v 162.936005 117.800003 20.89502 +v 163.427002 118.107002 21.073019 +v 163.453003 117.983002 21.407019 +v 163.498993 119.160004 21.65202 +v 148.544998 118.153999 21.100019 +v 148.498993 119.18 21.65202 +v 148.570007 117.932999 21.378019 +v 149.016998 117.811996 20.900019 +v 165.173004 119.166 21.64802 +v 165.205994 119.151001 22.00202 +v 167.089005 120.946999 22.00202 +v 167.182007 120.766998 21.64802 +v 166.880005 121.757004 21.64802 +v 157.658997 121.019997 21.659019 +v 157.662994 122.456001 21.65802 +v 157.442001 121.290001 21.802019 +v 157.429993 122.169998 21.812019 +v 157.320007 122.803001 21.660019 +v 141.375 126.199997 21.648022 +v 142.882996 126.629997 21.648022 +v 148.498993 126.658997 21.648022 +v 167.089005 122.470001 21.64802 +v 167.089005 122.470001 22.00202 +v 167.570007 123.037003 22.002022 +v 170.639999 126.194 22.002022 +v 168.578003 123.327003 22.002022 +v 167.651993 123.089996 21.648022 +v 168.365005 123.305 21.648022 +v 169.231003 126.613998 21.648022 +v 169.192993 123.171997 21.648022 +v 169.763 122.695 21.64802 +v 170.100998 121.925003 21.64802 +v 171.746994 119.122002 21.64802 +v 173.276993 121.740997 21.64802 +v 172.477005 119.216003 21.64802 +v 171.820007 119.166 22.00202 +v 172.535995 119.223999 22.00202 +v 172.893997 119.466003 21.64802 +v 172.925003 119.504997 22.00202 +v 170.085007 122.022003 22.00202 +v 173.436005 121.096001 22.00202 +v 173.276993 121.676003 22.00202 +v 173.423004 122.209 22.00202 +v 173.423004 122.209 21.64802 +v 173.139008 123.487 21.648022 +v 173.078995 123.638 22.002022 +v 172.210007 125.012001 21.648022 +v 170.785995 126.121002 21.648022 +v 169.113007 126.629997 22.002022 +v 163.498993 126.966003 22.169022 +v 148.498993 126.952003 22.148022 +v 148.455994 126.995003 22.350021 +v 146.869003 127.842003 22.392021 +v 148.466995 126.986992 27.50502 +v 146.945999 127.796989 27.473021 +v 146.537003 128.033997 27.080021 +v 146.524994 128.039993 22.864021 +v 146.690002 128.352997 22.906021 +v 146.699997 128.345993 26.990021 +v 147.039993 128.147003 27.458021 +v 146.996994 128.171997 22.415022 +v 163.529999 126.987 22.350021 +v 163.539993 126.994995 27.50502 +v 165.014999 127.775993 27.485022 +v 164.878006 128.100998 27.472021 +v 165.438004 128.020004 27.136021 +v 165.285004 128.339996 27.080021 +v 164.953995 128.145996 22.392021 +v 165.296997 128.345993 22.864021 +v 165.479996 128.046005 22.903021 +v 165.173996 127.866997 22.415022 +v 148.498993 126.949989 27.719021 +v 172.098999 125.132004 22.002022 +v 169.565994 122.93 22.002022 +v 169.945007 120.984001 22.00202 +v 169.899994 120.898003 21.64802 +v 169.375 120.369003 22.00202 +v 170.899002 118.385002 22.00202 +v 169.837997 117.817001 22.00202 +v 170.899002 118.385002 21.64802 +v 169.375 120.369003 21.64802 +v 169.692001 117.769997 21.64802 +v 168.578003 120.096001 21.64802 +v 168.675995 120.103996 22.00202 +v 168.496994 117.609001 22.00202 +v 167.304993 117.769997 22.00202 +v 168.496994 117.609001 21.64802 +v 167.160004 117.817001 21.64802 +v 167.854996 120.242996 21.64802 +v 166.098999 118.385002 21.64802 +v 166.098999 118.385002 22.00202 +v 167.667999 120.32 22.00202 +v 173.449997 121.075996 21.64802 +v 142.764999 126.613998 22.002022 +v 143.843002 123.292 22.002022 +v 138.718002 121.740997 22.00202 +v 141.229996 126.129997 22.002022 +v 140.179993 125.383003 22.002022 +v 139.244003 124.276001 22.002022 +v 138.559998 122.355003 22.00202 +v 138.542999 122.377998 21.64802 +v 138.718002 121.676003 21.64802 +v 138.546997 121.07 22.00202 +v 138.561996 121.089996 21.64802 +v 139.074997 119.501999 21.64802 +v 139.106003 119.462997 22.00202 +v 139.460007 119.223999 21.64802 +v 139.520004 119.216003 22.00202 +v 140.177002 119.166 21.64802 +v 140.255005 119.120003 22.00202 +v 141.985001 121.189003 22.00202 +v 142.455994 120.471001 22.00202 +v 142.046005 120.998001 21.64802 +v 141.910995 122.028 21.64802 +v 141.895004 121.931 22.00202 +v 142.373001 122.873001 22.00202 +v 143.106995 123.260002 22.002022 +v 142.444 122.938004 21.648022 +v 143.417999 123.327003 21.648022 +v 141.102997 118.385002 21.64802 +v 142.621002 120.369003 21.64802 +v 142.158005 117.818001 21.64802 +v 143.320007 120.103996 21.64802 +v 143.498993 117.609001 21.64802 +v 144.699005 117.771004 21.64802 +v 143.498993 117.609001 22.00202 +v 142.304001 117.769997 22.00202 +v 143.417999 120.096001 22.00202 +v 144.139999 120.242996 21.64802 +v 141.102997 118.385002 22.00202 +v 139.330002 124.413002 21.648022 +v 140.179993 125.383003 21.648022 +v 154.727997 122.814003 21.656019 +v 154.347 122.422997 21.661018 +v 154.322998 121.086998 21.65802 +v 154.570007 122.114998 21.81802 +v 154.576004 121.235001 21.81802 +v 154.75 121.339996 22.09602 +v 154.692001 120.831001 21.73102 +v 154.742004 120.57 22.010019 +v 154.442993 120.811996 22.010019 +v 154.298004 121.988998 22.05402 +v 154.505997 122.165001 22.34602 +v 154.733994 122.447998 22.364019 +v 156.886993 122.494003 22.430019 +v 157.240997 122.462997 22.364019 +v 157.522003 122.216003 22.28702 +v 157.259995 120.976997 22.368019 +v 154.981995 120.957001 22.438019 +v 156.880005 120.944 22.44002 +v 154.716003 120.980003 22.347019 +v 154.514008 121.248001 22.350019 +v 154.914001 122.153 22.573019 +v 157.095993 122.160004 22.566019 +v 157.352005 122.142998 22.452019 +v 157.082993 121.264 22.57202 +v 154.899994 121.254997 22.566019 +v 155.117996 122.485001 22.43302 +v 154.738007 120.592003 21.657019 +v 157.276001 120.613998 21.65802 +v 157.352005 120.910004 21.750019 +v 157.235001 121.334999 22.105019 +v 157.044006 121.246002 22.205019 +v 157.048996 122.167999 22.208019 +v 157.248001 122.085999 22.092018 +v 157.309998 122.554001 21.75202 +v 157.014008 122.642998 21.750019 +v 154.830994 122.637001 21.739019 +v 154.649994 122.519997 21.746019 +v 154.757004 122.080002 22.10302 +v 154.962006 122.170998 22.20702 +v 154.957993 121.25 22.210018 +v 154.960007 120.774002 21.746019 +v 157.167999 120.779999 21.737019 +v 148.904999 119.136993 27.59602 +v 148.940002 119.207993 27.79002 +v 162.949997 119.079994 27.59602 +v 163.427002 119.51799 27.61302 +v 162.985001 119.201996 27.793018 +v -148.548004 119.55999 27.601019 +v -148.722 119.30899 27.59602 +v -148.5 124.682991 27.596022 +v -149.016998 119.201996 27.793018 +v -149.087006 119.076996 27.59602 +v -162.917007 119.18499 27.802019 +v -163.089996 119.135994 27.59602 +v -163.462997 119.516991 27.611019 +v -173.509995 126.292992 27.596022 +v -163.5 124.682991 27.596022 +v -163.5 125.804993 27.596022 +v -148.5 125.804993 27.596022 +v -148.5 126.654991 28.21002 +v -163.5 126.676994 28.215021 +v -148.5 127.179993 27.997021 +v -163.5 127.221992 27.948021 +v -148.481995 127.352989 27.50502 +v -163.520004 127.353989 27.504021 +v -163.520996 127.349998 22.350021 +v -148.479996 127.355003 22.350021 +v -148.5 127.272003 21.986021 +v -163.5 127.147003 21.805021 +v -148.5 126.695 21.63302 +v -163.5 126.669998 21.997021 +v -167.259995 122.750999 22.00202 +v -148.5 126.692001 21.996021 +v -166.886002 121.757004 22.00202 +v -167.199997 122.674004 21.64802 +v -166.886002 121.660004 21.64802 +v -167.192001 120.758003 22.00202 +v -167.251007 120.681 21.64802 +v -167.856995 120.242996 22.00202 +v -166.104996 118.385002 22.00202 +v -167.160004 117.817001 22.00202 +v -166.104996 118.385002 21.64802 +v -165.212006 119.150002 21.64802 +v -165.179993 119.166 22.00202 +v -157.720001 121.181999 22.015018 +v -157.733002 121.984001 22.018019 +v -157.227997 122.856003 22.010019 +v -157.613007 122.552002 22.012018 +v -145.119003 121.660004 22.00202 +v -154.759995 122.851997 22.00902 +v -154.451004 122.625999 22.010019 +v -154.287003 122.244003 22.02002 +v -154.296997 121.143997 22.018019 +v -148.498993 119.150002 22.019018 +v -154.483994 120.751999 22.010019 +v -154.776993 120.559998 22.010019 +v -163.5 119.138 22.017019 +v -162.940994 117.625999 21.20002 +v -149.022003 117.637001 21.206018 +v -149.065994 117.800003 20.89502 +v -148.567993 118.111 21.076019 +v -148.542999 117.985001 21.40802 +v -148.5 119.160004 21.65202 +v -163.457993 118.153 21.100019 +v -163.5 119.18 21.65202 +v -163.436005 117.936996 21.380018 +v -162.979996 117.810997 20.900019 +v -146.824997 119.166 21.64802 +v -146.792007 119.150002 22.00202 +v -144.910004 120.946999 22.00202 +v -144.815994 120.765999 21.64802 +v -145.119003 121.757004 21.64802 +v -154.320007 121.175003 21.660019 +v -154.242996 122.539001 21.64802 +v -154.455994 122.212997 21.708019 +v -154.563004 121.293999 21.806019 +v -154.720001 122.083 22.056019 +v -154.677994 122.529999 21.75602 +v -154.710007 122.823997 21.65802 +v -170.632004 126.197998 21.648022 +v -169.113998 126.629997 21.648022 +v -163.5 126.658997 21.648022 +v -144.748001 122.744003 21.64802 +v -144.910004 122.470001 22.00202 +v -144.429993 123.035004 22.002022 +v -141.367996 126.196999 22.002022 +v -143.632996 123.305 22.002022 +v -142.899994 123.211998 22.002022 +v -143.843994 123.292 21.648022 +v -142.770996 126.613998 21.648022 +v -142.809998 123.172997 21.648022 +v -142.240005 122.695 21.64802 +v -141.895004 121.922997 21.64802 +v -140.259003 119.120003 21.64802 +v -138.725998 121.740997 21.64802 +v -139.522995 119.216003 21.64802 +v -140.177994 119.166 22.00202 +v -139.462006 119.223999 22.00202 +v -139.104004 119.466003 21.64802 +v -139.072998 119.505997 22.00202 +v -141.910004 122.019997 22.00202 +v -138.561005 121.098999 22.00202 +v -138.725998 121.676003 22.00202 +v -138.574997 122.209 22.00202 +v -138.559998 122.347 21.64802 +v -138.914001 123.617996 22.002022 +v -141.222 126.124001 21.648022 +v -139.25 124.281998 21.648022 +v -142.889999 126.629997 22.002022 +v -148.5 126.966003 22.169022 +v -163.5 126.952003 22.148022 +v -163.542999 126.994003 22.350021 +v -165.134995 127.843002 22.393021 +v -163.531998 126.985992 27.50502 +v -165.052002 127.79599 27.473021 +v -165.464005 128.031998 27.084021 +v -165.475998 128.039993 22.864021 +v -165.311005 128.352997 22.914021 +v -165.300995 128.348007 26.98402 +v -164.957993 128.145996 27.458021 +v -165.001999 128.173004 22.416021 +v -148.466995 126.987 22.350021 +v -148.457001 126.994995 27.50502 +v -146.988998 127.774994 27.485022 +v -147.125 128.100006 27.473021 +v -146.559998 128.020004 27.138021 +v -146.712997 128.339005 27.082022 +v -147.044998 128.145996 22.393021 +v -146.701004 128.345993 22.864021 +v -146.539001 128.033005 22.77602 +v -146.945007 127.800003 22.38002 +v -148.5 126.928993 27.743021 +v -163.5 126.949989 27.719021 +v -163.5 126.676994 27.857021 +v -148.5 126.64299 27.860022 +v -139.901993 125.137001 22.002022 +v -140.181 125.383003 21.648022 +v -142.240005 122.695 22.00202 +v -142.052002 120.988998 22.00202 +v -142.098007 120.903 21.64802 +v -142.626999 120.369003 22.00202 +v -141.102997 118.385002 22.00202 +v -142.156998 117.818001 22.00202 +v -141.102997 118.385002 21.64802 +v -142.626999 120.369003 21.64802 +v -142.302994 117.769997 21.64802 +v -143.417999 120.095001 21.64802 +v -143.320999 120.103996 22.00202 +v -143.501007 117.609001 22.00202 +v -144.697998 117.769997 22.00202 +v -143.501007 117.609001 21.64802 +v -144.843994 117.817001 21.64802 +v -144.141006 120.242996 21.64802 +v -145.899994 118.385002 21.64802 +v -145.899994 118.385002 22.00202 +v -144.330994 120.320999 22.00202 +v -138.546997 121.079002 21.64802 +v -169.233002 126.613998 22.002022 +v -168.154999 123.291 22.002022 +v -169.104004 123.211998 21.648022 +v -168.059998 123.267998 21.648022 +v -173.279007 121.740997 22.00202 +v -170.776993 126.125999 22.002022 +v -171.820999 125.383003 22.002022 +v -172.766006 124.260002 22.002022 +v -173.445007 122.347 22.00202 +v -173.429993 122.209 21.64802 +v -173.279007 121.676003 21.64802 +v -173.457001 121.079002 22.00202 +v -173.442993 121.098999 21.64802 +v -172.929993 119.504997 21.64802 +v -172.899994 119.466003 22.00202 +v -172.542007 119.224998 21.64802 +v -172.481995 119.216003 22.00202 +v -171.824997 119.166 21.64802 +v -171.746002 119.120003 22.00202 +v -170.085999 121.375999 22.00202 +v -169.554001 120.478996 22.00202 +v -169.955994 120.994003 21.64802 +v -170.085999 122.039001 21.64802 +v -169.951996 122.435997 22.00202 +v -169.194 123.172997 22.002022 +v -169.764999 122.695 21.64802 +v -170.899994 118.385002 21.64802 +v -169.376999 120.369003 21.64802 +v -169.852005 117.82 21.64802 +v -168.684006 120.103996 21.64802 +v -168.503006 117.609001 21.64802 +v -167.306 117.769997 21.64802 +v -168.832001 117.603996 22.00202 +v -168.587006 120.096001 22.00202 +v -167.856995 120.242996 21.64802 +v -170.483002 118.098999 22.00202 +v -173.087006 123.627998 21.648022 +v -172.082993 125.152 21.648022 +v -157.227997 122.825996 21.65502 +v -157.632996 122.502998 21.660019 +v -157.679001 121.091003 21.65802 +v -157.442993 122.139999 21.802019 +v -157.429993 121.227997 21.810019 +v -157.246994 121.347 22.10302 +v -157.339996 120.865997 21.73502 +v -157.257996 120.57 22.010019 +v -157.548996 120.792 22.010019 +v -157.490005 122.156998 22.350019 +v -157.266006 122.449997 22.362019 +v -155.112 122.494003 22.430019 +v -154.755005 122.463997 22.362019 +v -154.477005 122.211998 22.285019 +v -154.522003 121.264 22.36002 +v -154.731995 120.976997 22.365019 +v -157.014008 120.957001 22.439018 +v -155.117004 120.944 22.44002 +v -157.279007 120.973999 22.34602 +v -157.082993 122.152 22.573019 +v -154.908997 122.158997 22.567019 +v -154.645004 122.142998 22.451019 +v -154.921997 121.264999 22.573019 +v -157.097 121.255997 22.566019 +v -157.479996 121.258003 22.354019 +v -156.886993 122.485001 22.43302 +v -157.268005 120.594002 21.657019 +v -154.602005 120.641998 21.656019 +v -154.641006 120.910004 21.74502 +v -154.766006 121.327003 22.102018 +v -154.960999 121.246002 22.206018 +v -154.960007 122.167 22.210018 +v -154.949997 122.650002 21.748018 +v -157.167999 122.636002 21.740019 +v -157.360001 122.516998 21.743019 +v -157.244003 122.077003 22.10302 +v -157.039993 122.171997 22.206018 +v -157.044998 121.25 22.209019 +v -157.037003 120.777 21.74902 +v -154.830002 120.780998 21.73802 +v -173.507996 126.71199 25.603022 +v -175.412994 126.328995 25.598021 +v -175.253006 125.944992 27.596022 +v -177.737 123.464989 27.596022 +v -178.082001 121.705994 27.59602 +v -178.5 121.708992 25.598019 +v -178.5 -146.789001 25.598976 +v -176.742996 -150.029999 27.595976 +v -177.737 -148.544998 27.595976 +v -177.039993 -150.326996 25.597975 +v -175.412994 -151.408997 25.597975 +v -175.253006 -151.024994 27.595976 +v -173.503006 -151.789993 25.601974 +v -173.503006 -151.373993 27.595976 +v -163.5 -150.804993 27.595976 +v -163.5 -149.505005 27.595976 +v -163.201996 -144.787994 27.595978 +v -162.880005 -144.425003 27.595978 +v -162.350998 -144.154007 27.595978 +v -162.348007 -144.283005 27.863977 +v -149.490005 -144.309998 27.849977 +v -148.779999 -144.757996 27.601976 +v 173.5 -151.373993 23.597975 +v 175.251007 -151.024994 23.597975 +v -173.503998 -151.373993 23.597975 +v -175.253006 -151.024994 23.597975 +v -176.742996 -150.029999 23.597975 +v -177.737 -148.544998 23.597975 +v -178.082001 121.703995 23.598019 +v -176.742996 124.949989 23.598021 +v -175.253006 125.944992 23.598021 +v -177.039993 125.246994 25.598021 +v -178.121002 123.624992 25.598021 +v -176.742996 124.949989 27.596022 +v -178.121002 -148.705002 25.597975 +v -178.080994 -146.787003 27.595976 +v -148.5 -150.804993 27.595976 +v -148.5 -151.705994 27.872974 +v -163.5 -151.755005 27.879974 +v -163.5 -151.660995 28.276976 +v -148.5 -149.505005 27.595976 +v -148.5 -151.729996 28.272976 +v -163.5 -152.130005 28.125975 +v -148.5 -152.292007 27.994976 +v -163.5 -152.397003 27.793976 +v -148.5 -152.037003 27.619976 +v -163.5 -152.024994 27.634975 +v -148.5 -152.039001 22.349976 +v -163.5 -151.990005 22.128975 +v -148.5 -151.897995 22.034975 +v -163.5 -152.136993 21.730976 +v -148.5 -151.882004 21.617975 +v -148.5 -152.306 21.898975 +v -171.957001 -147.283997 22.001976 +v -163.5 -151.688995 22.001976 +v -172.639999 -148.164001 22.001976 +v -174.132996 -151.660004 22.001976 +v -163.5 -151.688995 21.597975 +v -174.253006 -151.641998 21.597975 +v -175.320999 -151.339996 22.001976 +v -175.832001 -151.125 21.597975 +v -176.466995 -150.714996 22.001976 +v -177.283005 -149.938004 21.597975 +v -177.494995 -149.632996 22.001976 +v -178.113007 -148.505005 22.001976 +v -177.960999 -148.826996 21.597975 +v -178.384003 -147.380997 21.597975 +v -178.397003 -147.020004 22.001976 +v -178.304001 -145.722 22.001978 +v -178.264999 -145.559006 21.597977 +v -177.686005 -144.261993 22.001978 +v -177.671997 -144.255005 21.597977 +v -176.735001 -144.231995 22.001978 +v -176.723999 -144.227005 21.597977 +v -174.253998 -145.352997 21.597977 +v -175.005997 -146.177994 21.597977 +v -174.785004 -145.796997 22.001978 +v -175.850006 -143.406998 22.001978 +v -174.988998 -142.949997 21.597977 +v -176.087006 -143.604996 21.597977 +v -172.953003 -145.285004 22.001978 +v -170.278 -144.227005 22.001978 +v -173.850006 -145.207001 22.001978 +v -173.151993 -145.207001 21.597977 +v -172.292999 -145.710007 22.001978 +v -172.225998 -145.789993 21.597977 +v -171.923004 -146.513 22.001976 +v -171.878006 -146.847 21.597975 +v -172.302002 -147.880005 21.597975 +v -170.266998 -144.231995 21.597977 +v -163.5 -144.216995 22.019978 +v -163.5 -144.216003 21.605978 +v -148.5 -144.147003 21.589977 +v -148.5 -144.048004 21.984978 +v -163.473999 -142.815002 21.291977 +v -163.460007 -142.960007 20.914978 +v -148.522995 -143.033997 20.957977 +v -148.539001 -142.778 21.269978 +v -148.886993 -142.395004 20.588978 +v -148.949997 -142.141998 20.901978 +v -149.630005 -142.022995 20.371977 +v -149.682999 -141.811996 20.711977 +v -162.313004 -142.009995 20.364977 +v -162.382996 -141.826004 20.719976 +v -163.100998 -142.184998 20.926977 +v -163.042007 -142.332993 20.552977 +v -171.154007 -143.404999 21.597977 +v -170.914993 -143.604996 22.001978 +v -172.009995 -142.953003 22.001978 +v -172.639008 -142.761993 21.597977 +v -173.570999 -142.669998 22.001978 +v -173.899994 -142.707001 21.597977 +v -174.684998 -142.863007 22.001978 +v -173.276001 -148.395996 21.597975 +v -173.501007 -148.389999 22.001976 +v -174.268997 -148.218002 22.001976 +v -174.358002 -148.166 21.597975 +v -175.044006 -147.294998 21.597975 +v -175.009003 -147.391006 22.001976 +v -175.080002 -146.513 22.001976 +v -163.5 -152.423004 22.157976 +v -148.453003 -152.427002 22.349976 +v -148.444 -152.434998 27.518974 +v -148.132996 -152.125 27.517975 +v -144.363007 -156.432999 27.493975 +v -144.322998 -156.473007 22.389975 +v -143.542999 -157.253998 23.522976 +v -143.552994 -157.242996 26.399975 +v -144.031998 -156.197998 27.478975 +v -143.524002 -156.703995 27.064976 +v -143.257004 -156.970001 26.321976 +v -144.080002 -156.149994 22.374975 +v -143.266998 -156.960999 23.478975 +v -143.565002 -156.662994 22.747974 +v -143.800003 -156.994995 22.816975 +v -148.141006 -152.126999 22.349976 +v -143.845993 -156.949005 27.117975 +v 176.740005 -150.029999 23.597975 +v -162.882996 -144.507004 27.747976 +v 148.498993 -152.246994 28.046976 +v 163.498993 -152.350998 27.932976 +v 148.444 -152.436005 27.518974 +v 163.494995 -152.442993 27.182976 +v 163.498993 -151.998001 27.706976 +v 163.492996 -152.039001 27.179976 +v 163.391998 -152.039001 26.890976 +v 148.498993 -152.039001 27.517975 +v 148.498993 -152.041 22.272976 +v 163.410004 -152.039001 23.003975 +v 163.494995 -152.039001 22.685976 +v 163.498993 -151.979996 22.107975 +v 148.498993 -151.798004 22.011974 +v 148.498993 -151.921997 21.629974 +v 148.498993 -152.337006 21.944975 +v 163.498993 -152.091003 21.699976 +v 163.498993 -152.410004 22.116976 +v 163.498993 -151.688995 22.001976 +v 163.498993 -144.186005 22.018976 +v 148.498993 -144.048996 21.979977 +v 148.524002 -142.815002 21.290977 +v 148.498993 -144.149002 21.591976 +v 148.537994 -142.960007 20.913977 +v 149.692001 -142.009995 20.364977 +v 148.957993 -142.330994 20.552977 +v 149.619995 -141.826004 20.718977 +v 162.322998 -141.813004 20.711977 +v 162.376007 -142.022995 20.372976 +v 163.473999 -143.018005 20.949978 +v 163.100998 -142.386993 20.584976 +v 163.460007 -142.766006 21.262978 +v 163.498993 -144.225998 21.607977 +v 163.498993 -151.688995 21.597975 +v 174.134003 -151.660004 21.597975 +v 170.276001 -144.227005 21.597977 +v 171.957993 -147.298004 21.597975 +v 172.641998 -148.166 21.597975 +v 173.725998 -148.395996 21.597975 +v 174.529007 -148.016998 21.597975 +v 175.001999 -147.389999 21.597975 +v 176.731003 -144.231003 21.597977 +v 174.253998 -151.641998 22.001976 +v 170.264999 -144.231995 22.001978 +v 172.746994 -145.352997 21.597977 +v 171.996002 -146.175003 21.597977 +v 172.214005 -145.798996 22.001978 +v 171.149994 -143.406998 22.001978 +v 172.011002 -142.949997 21.597977 +v 170.912994 -143.604996 21.597977 +v 174.050003 -145.285004 22.001978 +v 176.718002 -144.225998 22.001978 +v 173.149994 -145.207001 22.001978 +v 173.850006 -145.207001 21.597977 +v 174.710007 -145.712006 22.001978 +v 174.776001 -145.792007 21.597977 +v 175.070999 -146.513 22.001976 +v 175.070999 -146.513 21.597975 +v 175.037003 -147.292999 22.001976 +v 174.362 -148.164001 22.001976 +v 177.802002 -149.173004 22.001976 +v 176.882996 -150.335007 22.001976 +v 177.158005 -150.078995 21.597975 +v 178.121994 -148.473999 21.597975 +v 178.414001 -146.638 21.597975 +v 178.128998 -145.186996 21.597977 +v 177.682007 -144.261002 21.597977 +v 175.679993 -151.201996 21.597975 +v 175.828003 -151.125 22.001976 +v 173.498993 -148.389999 22.001976 +v 172.731003 -148.218002 22.001976 +v 171.994003 -147.395004 22.001976 +v 177.669998 -144.255005 22.001978 +v 178.128998 -145.186996 22.001978 +v 176.087006 -143.604996 21.597977 +v 176.087006 -143.604996 22.001978 +v 174.977997 -142.949005 22.001978 +v 175.110001 -143.003006 21.597977 +v 173.572006 -142.669998 21.597977 +v 173.429001 -142.669998 22.001978 +v 172.315002 -142.863007 22.001978 +v 178.406006 -146.472 22.001976 +v 178.259995 -147.942993 22.001976 +v 171.923004 -146.513 22.001976 +v 163.039001 -142.132996 20.896976 +v 148.897995 -142.184006 20.925978 +v 148.425003 -152.436996 22.349976 +v 148.130997 -152.123993 22.349976 +v 148.104004 -152.141998 27.517975 +v 144.074997 -156.154999 27.492975 +v 144.315002 -156.477997 27.478975 +v 143.565002 -156.660995 27.122974 +v 143.800995 -156.990005 27.057976 +v 143.264999 -156.960999 26.384975 +v 143.539001 -157.255997 26.331976 +v 143.548996 -157.244003 23.468975 +v 143.255005 -156.970001 23.541975 +v 144.035004 -156.195007 22.389975 +v 144.363007 -156.429993 22.374975 +v 143.841995 -156.949997 22.751976 +v 143.520004 -156.707001 22.809975 +v 163.389999 -152.442993 22.969975 +v 163.410995 -152.442993 26.857975 +v 163.492996 -152.442993 22.687975 vt 0.045 0.134 vt 0.046 0.135 -vt 0.045 0.134 vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 vt 0.045 0.137 vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.133 vt 0.046 0.132 vt 0.045 0.132 -vt 0.046 0.132 -vt 0.046 0.132 vt 0.046 0.133 -vt 0.046 0.132 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.136 -vt 0.046 0.136 vt 0.046 0.136 vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.046 0.132 vt 0.046 0.131 -vt 0.046 0.132 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.133 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.043 0.136 -vt 0.044 0.136 -vt 0.043 0.136 -vt 0.043 0.136 -vt 0.046 0.136 -vt 0.043 0.136 vt 0.043 0.136 vt 0.045 0.135 vt 0.044 0.134 -vt 0.043 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.134 -vt 0.044 0.136 -vt 0.044 0.134 -vt 0.046 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.134 -vt 0.044 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.137 -vt 0.044 0.134 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.045 0.133 -vt 0.045 0.133 -vt 0.044 0.137 -vt 0.045 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 vt 0.046 0.13 vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.133 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.133 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.043 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.043 0.136 -vt 0.043 0.136 -vt 0.043 0.136 vt 0.044 0.135 -vt 0.046 0.139 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.044 0.134 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.134 -vt 0.044 0.134 -vt 0.045 0.132 -vt 0.045 0.134 -vt 0.045 0.134 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.045 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 vt 0.045 0.136 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.139 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.046 0.136 -vt 0.044 0.135 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.135 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 vt 0.044 0.128 vt 0.044 0.127 -vt 0.044 0.128 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.133 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.046 0.131 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 vt 0.044 0.138 -vt 0.045 0.137 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.136 -vt 0.046 0.133 vt 0.046 0.134 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.136 vt 0.046 0.128 vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.138 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.133 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.133 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 vt 0.043 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.135 -vt 0.045 0.136 -vt 0.046 0.135 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.044 0.136 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.138 -vt 0.044 0.138 -vt 0.045 0.137 -vt 0.044 0.138 -vt 0.045 0.138 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.138 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 vt 0.045 0.138 vt 0.044 0.139 -vt 0.044 0.138 -vt 0.044 0.138 -vt 0.044 0.132 -vt 0.045 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 vt 0.044 0.132 vt 0.044 0.133 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.139 -vt 0.044 0.138 -vt 0.044 0.138 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.138 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 vt 0.044 0.131 vt 0.044 0.13 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.043 0.132 -vt 0.044 0.132 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.046 0.128 -vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.043 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 vt 0.043 0.132 vt 0.043 0.131 -vt 0.043 0.131 vt 0.043 0.127 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.128 -vt 0.044 0.13 -vt 0.044 0.128 -vt 0.044 0.127 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.13 -vt 0.044 0.137 -vt 0.044 0.13 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 vt 0.046 0.129 -vt 0.046 0.129 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.13 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.13 -vt 0.046 0.128 -vt 0.046 0.13 -vt 0.045 0.134 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.138 -vt 0.046 0.136 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.138 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.139 -vt 0.044 0.139 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.133 -vt 0.044 0.133 -vt 0.044 0.133 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.132 -vt 0.046 0.139 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.043 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.046 0.136 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.043 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 vt 0.046 0.138 -vt 0.046 0.136 -vt 0.046 0.138 -vt 0.045 0.137 -vt 0.046 0.138 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.138 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.138 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.138 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.138 -vt 0.046 0.135 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.044 0.137 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.138 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.133 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.043 0.131 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.046 0.133 -vt 0.043 0.131 -vt 0.043 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 vt 0.045 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.128 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.127 -vt 0.046 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.045 0.132 -vt 0.045 0.134 -vt 0.045 0.134 -vt 0.044 0.135 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.134 -vt 0.045 0.134 -vt 0.045 0.133 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.045 0.134 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.134 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.134 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.135 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.133 -vt 0.044 0.133 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.133 -vt 0.044 0.133 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.133 -vt 0.045 0.136 -vt 0.045 0.138 -vt 0.045 0.138 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.134 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.135 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.138 -vt 0.046 0.128 -vt 0.044 0.133 -vt 0.046 0.128 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.129 -vt 0.046 0.129 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.129 -vt 0.046 0.129 -vt 0.044 0.139 -vt 0.044 0.136 -vt 0.044 0.139 -vt 0.044 0.139 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.139 -vt 0.044 0.139 -vt 0.044 0.139 vt 0.045 0.139 -vt 0.045 0.139 -vt 0.045 0.139 -vt 0.045 0.139 -vt 0.045 0.139 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.043 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.139 -vt 0.044 0.136 -vt 0.044 0.132 -vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.134 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.133 -vt 0.044 0.133 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.133 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.043 0.137 -vt 0.046 0.137 -vt 0.043 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.134 -vt 0.044 0.135 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.045 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.127 -vt 0.045 0.127 -vt 0.044 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.045 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.134 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.134 -vt 0.046 0.134 -vt 0.046 0.136 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.133 -vt 0.044 0.137 -vt 0.043 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.046 0.133 -vt 0.045 0.135 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.043 0.137 -vt 0.046 0.133 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.045 0.138 -vt 0.044 0.136 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.136 -vt 0.044 0.134 -vt 0.044 0.135 -vt 0.044 0.134 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.044 0.134 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.139 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.043 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.134 -vt 0.044 0.135 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.129 -vt 0.046 0.129 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.129 -vt 0.046 0.129 -vt 0.046 0.129 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.044 0.134 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.139 -vt 0.045 0.136 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.139 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.129 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.043 0.137 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.128 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.132 -vt 0.043 0.132 -vt 0.046 0.131 -vt 0.043 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.046 0.138 -vt 0.046 0.139 -vt 0.046 0.138 -vt 0.046 0.139 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.138 -vt 0.046 0.136 -vt 0.046 0.138 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.137 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.135 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.135 -vt 0.044 0.135 -vt 0.044 0.135 -vt 0.044 0.132 -vt 0.044 0.133 -vt 0.044 0.133 -vt 0.044 0.132 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.131 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.135 -vt 0.046 0.136 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.133 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.044 0.137 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.044 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.135 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.045 0.132 -vt 0.044 0.131 -vt 0.045 0.132 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.131 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.133 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.044 0.128 -vt 0.044 0.134 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.128 -vt 0.044 0.128 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.134 -vt 0.044 0.134 -vt 0.044 0.128 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.136 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.044 0.128 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.13 -vt 0.046 0.134 -vt 0.046 0.134 -vt 0.046 0.13 -vt 0.046 0.127 -vt 0.046 0.13 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.045 0.132 -vt 0.046 0.132 -vt 0.046 0.135 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.135 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.139 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.043 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.137 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.131 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.044 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.043 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.044 0.127 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.135 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.044 0.131 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.044 0.131 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.044 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.127 -vt 0.043 0.127 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.045 0.132 -vt 0.045 0.132 -vt 0.044 0.137 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.044 0.136 -vt 0.044 0.134 -vt 0.043 0.132 -vt 0.045 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.132 -vt 0.043 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.13 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.046 0.131 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.132 -vt 0.045 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.138 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.138 -vt 0.046 0.138 -vt 0.046 0.127 -vt 0.044 0.134 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.135 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.133 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.134 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.044 0.132 -vt 0.045 0.127 -vt 0.046 0.132 -vt 0.044 0.133 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.138 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.046 0.131 -vt 0.046 0.138 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.046 0.138 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.043 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.139 -vt 0.046 0.139 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.127 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.046 0.128 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.133 -vt 0.044 0.133 -vt 0.044 0.133 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.139 -vt 0.044 0.138 -vt 0.044 0.138 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.136 -vt 0.044 0.136 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.044 0.138 -vt 0.044 0.137 -vt 0.045 0.138 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.138 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.138 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.138 -vt 0.046 0.129 -vt 0.046 0.129 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.13 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.043 0.132 -vt 0.046 0.132 -vt 0.043 0.132 -vt 0.046 0.137 -vt 0.044 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.044 0.132 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.044 0.132 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.132 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.044 0.138 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.134 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.127 -vt 0.046 0.13 -vt 0.046 0.133 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.134 -vt 0.046 0.134 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.063 0.714 -vt 0.97 0.23 -vt 0.968 0.714 -vt 0.046 0.136 -vt 0.046 0.127 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.046 0.135 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.134 -vt 0.046 0.13 -vt 0.046 0.133 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.134 -vt 0.046 0.134 -vt 0.046 0.135 -vt 0.046 0.134 -vt 0.046 0.134 -vt 0.046 0.135 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.135 -vt 0.046 0.135 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.046 0.131 -vt 0.046 0.135 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.135 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.137 -vt 0.046 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.133 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.131 -vt 0.046 0.133 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.133 -vt 0.046 0.133 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.133 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.134 -vt 0.046 0.134 -vt 0.046 0.134 -vt 0.046 0.134 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.137 -vt 0.046 0.135 -vt 0.046 0.136 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.134 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.134 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.134 -vt 0.046 0.13 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.046 0.134 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.131 -vt 0.046 0.131 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.045 0.136 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.13 -vt 0.046 0.136 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.136 -vt 0.045 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.045 0.136 -vt 0.061 0.23 -vt 0.045 0.136 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.046 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.045 0.136 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.046 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.045 0.137 -vt 0.044 0.137 -vt 0.046 0.132 -vt 0.046 0.132 -vt 0.044 0.137 -vt 0.045 0.137 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.046 0.136 -vt 0.044 0.137 -vt 0.046 0.131 -vt 0.046 0.138 -vt 0.046 0.13 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.134 -vt 0.044 0.137 -vt 0.044 0.137 -vt 0.044 0.134 -vt 0.046 0.132 -vt 0.045 0.137 -vt 0.045 0.133 -vt 0.045 0.134 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -vt 0 0 -f 2/1 26/2 3/3 -f 5/4 4/5 2/1 -f 2/1 6/6 5/4 -f 2/1 3/3 6/6 -f 6/6 3/3 7/7 -f 6/6 7/7 8/8 -f 9/9 8/10 7/11 -f 7/11 10/12 9/9 -f 9/9 10/12 11/13 -f 9/9 11/13 12/14 -f 12/14 13/15 9/9 -f 12/16 14/17 13/18 -f 14/19 15/20 13/21 -f 13/21 15/20 16/22 -f 13/21 16/22 8/8 -f 8/8 16/22 5/4 -f 16/22 4/5 5/4 -f 16/22 17/23 4/5 -f 18/24 4/5 17/23 -f 17/23 19/25 18/24 -f 19/25 20/26 18/24 -f 20/26 21/27 22/28 -f 20/26 22/28 23/29 -f 20/26 23/29 18/24 -f 18/24 24/30 1/31 -f 4/5 18/24 1/31 -f 4/5 1/31 2/1 -f 18/24 23/29 24/30 -f 24/30 25/32 26/2 -f 26/2 25/32 27/33 -f 26/2 28/34 3/3 -f 29/35 30/36 31/37 -f 29/35 31/37 10/12 -f 7/11 29/35 10/12 -f 10/12 31/37 32/38 -f 10/12 32/38 33/39 -f 11/13 33/39 34/40 -f 11/13 34/40 35/41 -f 35/41 34/40 36/42 -f 12/16 35/41 37/43 -f 38/44 37/43 35/41 -f 35/41 36/42 38/44 -f 38/44 36/42 39/45 -f 38/44 39/45 40/46 -f 40/46 41/47 38/44 -f 38/44 41/47 37/43 -f 41/47 42/48 37/43 -f 37/43 42/48 14/17 -f 42/49 43/50 14/19 -f 42/49 146/51 43/50 -f 146/51 44/52 43/50 -f 43/50 44/52 17/23 -f 43/50 17/23 15/20 -f 45/53 44/52 46/54 -f 44/52 45/53 19/25 -f 44/52 19/25 17/23 -f 20/26 45/53 47/55 -f 47/55 48/56 49/57 -f 47/55 49/57 21/27 -f 21/27 49/58 50/59 -f 51/60 50/59 49/58 -f 51/60 49/58 52/61 -f 52/61 53/62 51/60 -f 51/60 53/62 54/63 -f 51/60 54/63 55/64 -f 56/65 55/64 54/63 -f 54/63 57/66 56/65 -f 58/67 56/65 57/66 -f 58/67 57/66 59/68 -f 58/67 60/69 56/65 -f 60/69 61/70 56/65 -f 61/70 55/64 56/65 -f 55/64 61/70 168/71 -f 62/72 55/64 168/71 -f 23/29 22/28 24/30 -f 24/30 22/28 64/73 -f 65/74 66/75 64/76 -f 64/73 66/77 67/78 -f 64/73 67/78 25/32 -f 25/32 67/78 68/79 -f 69/80 68/81 67/82 -f 69/80 67/82 70/83 -f 71/84 69/80 70/83 -f 73/85 72/86 71/84 -f 73/85 71/84 74/87 -f 75/88 73/89 74/90 -f 75/88 74/90 76/91 -f 76/91 1891/92 75/88 -f 75/88 1891/92 77/93 -f 79/94 1891/92 78/95 -f 79/94 80/96 81/97 -f 79/94 81/97 1891/92 -f 82/98 1891/92 81/97 -f 84/99 110/100 83/101 -f 86/102 84/99 85/103 -f 86/102 87/104 88/105 -f 88/105 90/106 89/107 -f 92/108 89/107 91/109 -f 92/108 91/109 93/110 -f 94/111 92/108 93/110 -f 95/112 94/111 93/110 -f 95/112 93/110 90/106 -f 96/113 95/112 97/114 -f 98/115 96/113 97/114 -f 98/115 97/116 99/117 -f 94/111 96/113 103/118 -f 94/111 103/118 104/119 -f 104/119 105/120 94/111 -f 104/119 106/121 105/120 -f 106/121 107/122 105/120 -f 105/120 107/122 92/108 -f 92/108 107/122 108/123 -f 89/107 108/123 109/124 -f 89/107 109/124 88/105 -f 109/124 84/99 88/105 -f 88/105 84/99 86/102 -f 109/124 110/100 84/99 -f 210/125 113/126 112/127 -f 113/126 114/128 115/129 -f 116/130 113/126 115/129 -f 111/131 112/127 116/130 -f 111/131 116/130 82/98 -f 111/131 82/98 83/101 -f 116/130 115/129 77/93 -f 1891/92 116/130 77/93 -f 115/129 117/132 77/93 -f 77/93 117/132 73/89 -f 115/129 118/133 117/134 -f 117/135 118/136 72/86 -f 72/86 118/136 119/137 -f 72/86 119/137 69/80 -f 119/138 118/133 120/139 -f 119/138 120/139 121/140 -f 121/140 122/141 119/138 -f 119/138 122/141 68/142 -f 25/32 68/79 122/143 -f 121/140 123/144 122/141 -f 122/141 123/144 124/145 -f 27/146 122/141 124/145 -f 27/146 124/145 28/34 -f 31/37 125/147 126/148 -f 30/36 125/147 31/37 -f 125/147 127/149 126/148 -f 128/150 32/38 126/148 -f 128/150 126/148 129/151 -f 130/152 33/39 32/38 -f 130/152 131/153 34/40 -f 132/154 34/40 131/153 -f 132/155 131/156 133/157 -f 133/157 134/158 132/155 -f 132/159 134/158 36/42 -f 36/42 134/158 39/45 -f 134/158 135/160 39/45 -f 39/45 135/160 136/161 -f 40/46 136/161 137/162 -f 138/163 40/46 137/162 -f 139/164 138/163 137/162 -f 139/164 140/165 138/163 -f 141/166 138/163 140/165 -f 142/167 141/166 140/165 -f 142/168 140/169 143/170 -f 143/170 144/171 145/172 -f 147/173 143/170 145/172 -f 146/51 148/174 147/173 -f 147/173 148/174 142/175 -f 138/163 141/166 40/46 -f 141/166 148/176 41/47 -f 46/54 44/52 146/51 -f 46/54 146/51 145/172 -f 45/53 46/54 145/172 -f 145/172 149/177 45/53 -f 47/55 149/177 48/56 -f 48/56 149/177 150/178 -f 48/56 150/178 52/61 -f 150/178 151/179 152/180 -f 153/181 152/180 419/182 -f 153/183 419/184 154/185 -f 153/183 154/185 155/186 -f 156/187 153/181 155/188 -f 52/61 156/187 53/62 -f 157/189 156/187 52/61 -f 158/190 53/62 156/187 -f 156/187 155/188 158/190 -f 155/186 159/191 158/192 -f 158/190 159/193 57/66 -f 59/194 57/195 159/191 -f 160/196 161/197 59/194 -f 60/69 58/67 161/198 -f 161/198 162/199 60/69 -f 60/69 162/199 163/200 -f 60/69 163/200 164/201 -f 61/70 165/202 166/203 -f 61/204 166/205 71/84 -f 71/84 168/206 61/204 -f 65/207 22/28 62/72 -f 64/73 22/28 65/207 -f 65/207 62/72 63/208 -f 65/207 63/208 66/209 -f 63/208 62/72 168/71 -f 168/206 66/210 63/211 -f 70/83 66/210 168/206 -f 74/87 166/205 167/212 -f 76/91 167/213 169/214 -f 76/91 169/214 170/215 -f 2448/216 2476/217 78/95 -f 172/218 2476/217 171/219 -f 172/218 171/219 2477/220 -f 172/218 173/221 79/94 -f 79/94 173/221 80/96 -f 80/96 173/221 174/222 -f 175/223 80/96 174/222 -f 176/224 80/225 175/226 -f 176/227 81/97 80/96 -f 176/224 1901/228 177/229 -f 176/227 177/230 81/97 -f 82/98 81/97 177/230 -f 82/98 177/230 83/101 -f 83/101 177/230 178/231 -f 83/101 178/231 179/232 -f 181/233 85/103 180/234 -f 99/117 87/104 183/235 -f 95/112 90/106 87/104 -f 97/116 87/104 99/117 -f 99/117 183/235 1909/236 -f 98/115 99/117 100/237 -f 101/238 100/239 1912/240 -f 184/241 102/242 1913/243 -f 184/241 186/244 185/245 -f 187/246 185/245 186/244 -f 185/245 187/246 188/247 -f 185/245 189/248 184/241 -f 102/242 184/241 189/248 -f 190/249 102/242 191/250 -f 192/251 190/249 191/250 -f 192/251 191/250 193/252 -f 194/253 192/254 193/255 -f 194/256 193/257 195/258 -f 195/258 196/259 194/256 -f 196/259 106/121 194/256 -f 106/121 198/260 197/261 -f 199/262 197/261 198/260 -f 200/263 199/262 1948/264 -f 200/265 1948/264 201/266 -f 202/267 200/265 201/266 -f 203/268 202/267 204/269 -f 204/269 205/270 203/268 -f 109/124 207/271 206/272 -f 206/272 207/271 202/267 -f 203/268 111/131 206/272 -f 206/272 111/131 110/100 -f 111/131 208/273 209/274 -f 111/131 209/274 112/127 -f 112/127 209/274 210/125 -f 210/125 211/275 113/126 -f 212/276 120/139 114/128 -f 214/277 120/139 212/276 -f 213/278 212/276 211/275 -f 213/278 211/275 129/151 -f 213/278 129/151 127/149 -f 213/278 127/149 212/276 -f 127/149 214/277 212/276 -f 215/279 214/277 125/147 -f 123/144 215/279 30/36 -f 124/145 123/144 30/36 -f 127/149 125/147 214/277 -f 214/277 215/279 121/140 -f 211/275 216/280 129/151 -f 129/151 216/280 128/150 -f 217/281 218/282 216/280 -f 216/280 218/282 131/156 -f 219/283 133/157 218/282 -f 218/282 209/274 219/283 -f 208/273 219/283 209/274 -f 220/284 219/283 208/273 -f 220/284 208/273 221/285 -f 222/286 220/287 221/288 -f 222/286 221/288 223/289 -f 226/290 225/291 224/292 -f 226/290 224/292 227/293 -f 228/294 226/290 227/293 -f 229/295 228/294 227/293 -f 229/295 227/293 230/296 -f 231/297 229/295 230/296 -f 231/297 230/296 232/298 -f 233/299 231/297 232/298 -f 233/299 232/298 234/300 -f 235/301 233/302 234/303 -f 235/301 234/303 236/304 -f 237/305 235/301 236/304 -f 237/305 236/304 238/306 -f 239/307 237/305 238/306 -f 239/307 238/306 240/308 -f 240/308 241/309 239/307 -f 239/307 241/309 242/310 -f 239/307 242/310 243/311 -f 239/307 243/311 244/312 -f 244/313 243/314 245/315 -f 244/313 245/315 246/316 -f 246/316 247/317 244/313 -f 244/312 247/318 237/305 -f 246/316 248/319 247/317 -f 248/319 249/320 247/317 -f 247/318 249/321 235/301 -f 248/319 250/322 249/320 -f 250/322 251/323 249/320 -f 249/321 251/324 233/302 -f 250/322 252/325 251/323 -f 252/325 253/326 251/323 -f 251/327 253/328 231/297 -f 252/325 254/329 253/326 -f 254/329 255/330 253/326 -f 253/328 255/331 229/295 -f 254/329 256/332 255/330 -f 256/332 257/333 255/330 -f 255/331 257/334 228/294 -f 258/335 228/294 257/334 -f 259/336 258/335 257/334 -f 259/337 257/333 260/338 -f 261/339 259/337 260/338 -f 261/339 260/338 262/340 -f 263/341 261/339 262/340 -f 262/340 264/342 263/341 -f 264/342 265/343 263/341 -f 265/343 266/344 263/341 -f 266/344 267/345 263/341 -f 266/344 268/346 267/345 -f 268/346 269/347 267/345 -f 267/345 269/347 261/339 -f 268/348 270/349 269/350 -f 270/349 271/351 269/350 -f 269/350 271/351 259/352 -f 270/349 272/353 271/351 -f 271/351 272/353 258/354 -f 272/353 226/290 258/354 -f 272/353 273/355 226/290 -f 226/290 273/355 225/291 -f 273/355 274/356 275/357 -f 275/357 276/358 273/355 -f 277/359 273/355 276/358 -f 276/360 278/361 277/362 -f 277/362 278/361 219/283 -f 279/363 278/361 276/360 -f 280/364 279/363 276/360 -f 280/364 281/365 279/363 -f 278/361 279/363 282/366 -f 278/361 282/366 133/157 -f 279/363 281/365 282/366 -f 283/367 282/366 281/365 -f 281/365 284/368 283/367 -f 135/160 285/369 286/370 -f 135/160 283/367 285/369 -f 285/369 287/371 286/370 -f 286/370 287/371 288/372 -f 286/373 288/374 139/375 -f 139/375 288/374 289/376 -f 289/376 290/377 140/169 -f 291/378 290/377 292/379 -f 292/379 293/380 294/381 -f 292/379 294/381 295/382 -f 296/383 292/379 295/382 -f 296/383 295/382 297/384 -f 298/385 296/383 297/384 -f 298/385 297/384 299/386 -f 298/385 299/386 300/387 -f 298/385 300/387 301/388 -f 302/389 298/385 301/388 -f 302/389 301/388 303/390 -f 302/389 303/390 304/391 -f 305/392 302/389 304/391 -f 306/393 305/392 304/391 -f 307/394 306/393 304/391 -f 308/395 307/394 304/391 -f 308/395 310/396 309/397 -f 309/397 311/398 312/399 -f 309/397 312/399 307/394 -f 313/400 307/394 314/401 -f 313/400 314/401 315/402 -f 316/403 313/404 315/405 -f 316/403 315/405 317/406 -f 319/407 316/403 320/408 -f 321/409 319/407 320/410 -f 322/411 321/412 323/413 -f 324/414 322/411 323/413 -f 326/415 325/416 324/414 -f 326/415 324/414 327/417 -f 328/418 326/415 327/417 -f 327/417 329/419 328/418 -f 329/419 330/420 328/418 -f 331/421 328/418 330/420 -f 331/421 332/422 308/423 -f 332/424 333/425 308/395 -f 334/426 308/395 333/425 -f 4308/427 334/428 333/429 -f 4308/427 333/429 335/430 -f 336/431 4308/427 335/430 -f 336/431 335/430 337/432 -f 338/433 336/431 337/432 -f 338/433 337/432 339/434 -f 339/434 340/435 338/433 -f 338/433 340/435 341/436 -f 341/436 343/437 342/438 -f 308/395 342/439 343/440 -f 308/395 343/440 310/396 -f 343/440 344/441 310/396 -f 344/441 345/442 310/396 -f 346/443 310/444 345/445 -f 345/445 347/446 346/443 -f 347/446 348/447 349/448 -f 347/446 349/448 350/449 -f 350/449 346/443 347/446 -f 351/450 346/443 350/449 -f 351/450 350/449 352/451 -f 353/452 351/450 352/451 -f 353/452 352/451 354/453 -f 354/453 355/454 353/452 -f 353/452 355/454 309/455 -f 357/456 356/457 358/458 -f 357/456 358/458 359/459 -f 359/459 360/460 357/456 -f 357/456 360/460 361/461 -f 357/456 361/461 311/398 -f 360/462 362/463 361/464 -f 361/464 362/463 363/465 -f 361/464 363/465 311/398 -f 362/463 314/401 363/465 -f 360/462 364/466 362/463 -f 364/466 314/401 362/463 -f 364/466 365/467 314/401 -f 365/467 1884/468 317/469 -f 317/469 1884/468 366/470 -f 317/469 366/470 367/471 -f 367/471 366/470 368/472 -f 367/473 368/472 369/474 -f 367/475 369/476 316/403 -f 316/403 369/476 163/477 -f 370/478 316/479 163/200 -f 370/478 163/200 371/480 -f 370/481 371/482 431/483 -f 370/481 431/483 372/484 -f 370/478 372/485 373/486 -f 316/479 370/478 373/486 -f 374/487 373/486 372/485 -f 372/485 375/488 374/487 -f 376/489 374/490 377/491 -f 377/491 378/492 376/489 -f 376/489 378/492 379/493 -f 380/494 379/493 378/492 -f 378/492 381/495 380/494 -f 382/496 380/494 381/495 -f 382/497 381/498 383/499 -f 383/499 384/500 382/497 -f 382/497 384/500 385/501 -f 385/501 386/502 382/503 -f 387/504 386/502 385/501 -f 387/504 385/501 388/505 -f 389/506 387/504 388/505 -f 389/506 388/505 390/507 -f 390/507 391/508 389/506 -f 389/509 391/510 392/511 -f 392/511 393/512 389/513 -f 392/511 394/514 393/512 -f 395/515 396/516 393/517 -f 396/516 387/504 393/517 -f 399/518 386/502 398/519 -f 399/518 398/519 400/520 -f 401/521 399/522 400/523 -f 401/521 400/523 402/524 -f 403/525 401/521 402/524 -f 403/526 402/527 404/528 -f 405/529 403/526 404/528 -f 305/530 405/529 406/531 -f 407/532 305/530 406/531 -f 298/533 407/532 408/534 -f 296/535 408/534 409/536 -f 410/537 409/536 408/534 -f 410/538 408/539 395/515 -f 395/515 408/539 411/540 -f 395/515 411/540 397/541 -f 397/541 411/540 412/542 -f 397/541 412/542 413/543 -f 413/543 412/542 414/544 -f 413/543 414/544 398/519 -f 415/545 414/544 412/542 -f 415/546 412/547 416/548 -f 415/546 416/548 404/528 -f 414/544 415/545 400/520 -f 416/548 412/547 411/549 -f 416/548 411/549 408/534 -f 410/537 394/514 409/536 -f 409/536 394/514 417/550 -f 409/536 417/550 292/379 -f 292/379 417/550 291/378 -f 418/551 291/378 417/550 -f 418/551 420/552 291/378 -f 290/377 291/378 420/552 -f 290/377 420/552 144/171 -f 143/170 290/377 144/171 -f 144/171 420/552 151/179 -f 145/172 144/171 151/179 -f 145/172 151/179 150/178 -f 418/551 151/179 420/552 -f 152/180 418/551 419/182 -f 419/182 418/551 391/510 -f 392/511 391/510 418/551 -f 392/511 418/551 417/550 -f 416/548 408/534 407/532 -f 405/529 416/548 407/532 -f 407/532 406/531 405/529 -f 404/528 416/548 405/529 -f 405/529 313/400 403/526 -f 403/525 313/553 319/407 -f 319/407 401/521 403/525 -f 318/554 401/521 322/555 -f 421/556 318/557 322/558 -f 320/559 421/560 422/561 -f 422/561 421/560 324/414 -f 316/479 318/557 421/556 -f 405/529 306/562 313/400 -f 415/546 404/528 402/527 -f 400/520 415/545 402/563 -f 423/564 399/522 401/521 -f 379/493 423/565 401/521 -f 424/566 379/493 401/521 -f 318/554 424/566 401/521 -f 318/557 373/486 424/567 -f 373/486 374/487 379/568 -f 376/489 379/493 374/490 -f 379/568 424/569 373/486 -f 400/520 398/519 414/544 -f 423/565 386/502 399/518 -f 386/502 423/565 380/494 -f 386/502 413/543 398/519 -f 396/516 413/543 386/502 -f 396/516 397/541 413/543 -f 387/504 396/516 386/502 -f 397/541 396/516 395/515 -f 395/515 393/517 410/538 -f 393/517 394/570 410/538 -f 417/550 394/514 392/511 -f 154/185 419/184 391/508 -f 154/185 384/500 427/571 -f 383/499 427/571 384/500 -f 425/572 390/507 388/505 -f 425/572 388/505 385/501 -f 154/185 390/507 425/572 -f 426/573 427/571 383/499 -f 160/196 427/571 426/573 -f 384/500 154/185 425/572 -f 390/507 154/185 391/508 -f 389/506 393/517 387/504 -f 425/572 385/501 384/500 -f 383/499 381/498 426/573 -f 428/574 426/573 381/498 -f 426/573 428/574 160/196 -f 428/574 429/575 161/197 -f 161/197 429/575 162/576 -f 162/576 429/575 430/577 -f 371/482 162/576 430/577 -f 371/482 430/577 431/483 -f 432/578 431/483 433/579 -f 434/580 432/581 433/579 -f 435/582 434/580 433/579 -f 435/583 433/584 436/585 -f 436/585 437/586 435/583 -f 438/587 435/582 437/588 -f 438/589 437/586 439/590 -f 439/590 440/591 438/589 -f 440/591 497/592 438/589 -f 441/593 438/589 497/592 -f 497/592 498/594 441/593 -f 2351/595 442/596 441/593 -f 443/597 441/593 442/596 -f 441/593 443/597 444/598 -f 445/599 505/600 438/587 -f 446/601 651/602 447/603 -f 446/604 447/605 448/606 -f 446/607 448/608 438/587 -f 378/492 448/608 429/575 -f 429/575 428/574 378/492 -f 448/606 447/605 430/609 -f 447/610 449/611 430/577 -f 450/612 449/611 447/613 -f 447/613 451/614 450/612 -f 453/615 449/616 450/617 -f 453/618 450/612 452/619 -f 449/611 433/579 430/577 -f 449/616 453/615 436/585 -f 453/615 454/620 436/585 -f 455/621 436/585 454/620 -f 456/622 455/621 454/620 -f 454/620 457/623 456/622 -f 458/624 456/622 457/623 -f 485/625 458/624 457/623 -f 459/626 485/625 457/623 -f 459/626 457/623 460/627 -f 460/627 461/628 459/626 -f 483/629 459/626 461/628 -f 462/630 483/629 461/628 -f 464/631 463/632 461/628 -f 465/633 464/634 522/635 -f 522/635 4301/636 465/633 -f 465/633 4301/636 466/637 -f 465/633 466/637 467/638 -f 471/639 538/640 469/641 -f 469/641 470/642 468/643 -f 471/639 468/643 472/644 -f 474/645 471/639 472/644 -f 476/646 477/647 475/648 -f 474/645 475/648 477/647 -f 474/645 477/647 2285/649 -f 474/645 2285/649 471/639 -f 478/650 462/630 471/639 -f 479/651 480/652 462/630 -f 462/630 480/652 481/653 -f 462/630 481/653 482/654 -f 462/630 482/654 483/629 -f 459/655 483/656 484/657 -f 485/658 459/655 484/657 -f 484/657 486/659 485/658 -f 485/625 488/660 487/661 -f 456/622 458/624 489/662 -f 489/662 490/663 456/622 -f 455/621 456/622 491/664 -f 437/586 455/621 492/665 -f 494/666 437/586 492/665 -f 494/666 492/665 493/667 -f 440/668 439/669 495/670 -f 495/670 496/671 440/668 -f 2357/672 502/673 500/674 -f 501/675 502/673 2357/672 -f 501/675 2357/672 2144/676 -f 2144/676 2143/677 501/675 -f 502/673 443/597 442/596 -f 444/598 503/678 445/599 -f 444/598 445/599 441/593 -f 445/599 2247/679 504/680 -f 504/680 2246/681 505/600 -f 505/600 2246/681 506/682 -f 506/683 507/684 505/685 -f 508/686 509/687 507/684 -f 510/688 507/684 509/687 -f 438/587 505/600 507/689 -f 438/587 507/689 511/690 -f 438/587 512/691 513/692 -f 651/693 514/694 607/695 -f 651/693 607/695 515/696 -f 451/697 515/698 516/699 -f 516/700 450/612 451/614 -f 452/701 607/702 453/615 -f 453/615 607/702 517/703 -f 454/620 453/615 517/703 -f 608/704 518/705 517/703 -f 460/627 457/623 518/705 -f 461/628 460/627 519/706 -f 461/707 519/708 520/709 -f 461/628 520/710 464/631 -f 521/711 464/634 520/709 -f 522/635 521/711 523/712 -f 524/713 522/635 523/712 -f 524/713 525/714 526/715 -f 524/713 526/715 527/716 -f 528/717 529/718 527/716 -f 530/719 527/716 529/718 -f 529/718 466/637 530/719 -f 529/720 531/721 466/722 -f 466/722 531/721 532/723 -f 534/724 532/725 533/726 -f 534/724 533/726 535/727 -f 534/728 536/729 467/730 -f 467/730 536/729 537/731 -f 467/730 537/731 465/732 -f 538/640 537/731 536/729 -f 538/640 536/729 539/733 -f 539/733 470/642 469/641 -f 4076/734 470/642 4075/735 -f 4078/736 4076/734 540/737 -f 4078/736 4079/738 541/739 -f 4079/738 542/740 541/739 -f 4096/741 544/742 543/743 -f 4096/741 545/744 544/742 -f 546/745 544/742 545/744 -f 546/745 547/746 544/742 -f 543/743 544/742 548/747 -f 543/743 548/747 4076/734 -f 541/739 543/743 4076/734 -f 4078/736 541/739 4076/734 -f 4076/734 549/748 470/642 -f 550/749 549/748 4076/734 -f 4076/734 548/747 550/749 -f 550/749 548/747 551/750 -f 550/749 552/751 549/748 -f 549/748 552/751 553/752 -f 549/748 553/752 554/753 -f 555/754 556/755 557/756 -f 555/754 557/756 558/757 -f 559/758 558/757 557/756 -f 559/758 557/756 560/759 -f 561/760 559/758 560/759 -f 561/760 562/761 563/762 -f 564/763 559/758 563/762 -f 559/758 564/763 558/757 -f 558/757 564/763 555/754 -f 564/763 473/764 472/644 -f 563/762 473/764 564/763 -f 563/762 565/765 473/764 -f 565/765 566/766 473/764 -f 473/764 566/766 474/645 -f 475/648 566/766 567/767 -f 475/648 567/767 569/768 -f 568/769 475/648 569/768 -f 570/770 568/769 569/768 -f 571/771 570/770 569/768 -f 571/771 569/768 567/767 -f 567/767 572/772 571/771 -f 652/773 571/774 572/775 -f 652/773 572/775 573/776 -f 574/777 652/773 573/776 -f 573/776 575/778 574/777 -f 582/779 583/780 581/781 -f 580/782 581/781 583/783 -f 580/782 583/783 579/784 -f 583/783 584/785 579/784 -f 578/786 584/785 585/787 -f 587/788 585/787 586/789 -f 587/788 586/789 588/790 -f 589/791 587/788 588/790 -f 589/791 588/790 590/792 -f 590/793 592/794 591/795 -f 592/796 531/797 591/795 -f 591/795 531/797 528/717 -f 591/795 528/717 526/715 -f 526/798 593/799 591/795 -f 591/795 593/799 590/793 -f 593/799 594/800 590/793 -f 594/800 595/801 590/793 -f 595/801 594/800 596/802 -f 596/802 597/803 595/801 -f 597/804 598/805 595/806 -f 595/806 598/805 589/791 -f 597/807 599/808 598/809 -f 599/810 600/811 598/805 -f 598/805 600/811 587/788 -f 599/808 577/812 600/813 -f 600/811 577/814 585/787 -f 577/814 578/786 585/787 -f 618/815 577/812 599/808 -f 601/816 618/815 599/808 -f 602/817 618/815 601/816 -f 601/816 603/818 602/817 -f 602/817 603/818 604/819 -f 602/817 604/819 605/820 -f 651/602 602/817 605/820 -f 605/821 606/822 651/693 -f 607/702 514/823 517/703 -f 514/823 606/824 517/703 -f 608/704 609/825 518/705 -f 609/825 610/826 518/705 -f 518/705 610/826 611/827 -f 611/827 612/828 460/627 -f 612/828 614/829 460/627 -f 519/708 614/830 615/831 -f 616/832 593/799 523/712 -f 615/831 594/800 616/832 -f 616/832 521/711 615/831 -f 614/830 596/833 615/831 -f 614/830 617/834 596/833 -f 614/830 603/835 617/834 -f 614/830 613/836 603/835 -f 604/819 603/818 613/837 -f 604/838 613/839 610/826 -f 604/838 610/826 609/825 -f 610/826 613/839 611/827 -f 613/836 614/830 612/840 -f 613/839 612/828 611/827 -f 460/627 518/705 611/827 -f 605/841 609/825 608/704 -f 608/842 606/822 605/821 -f 574/777 577/812 618/815 -f 574/777 618/815 652/773 -f 620/843 652/773 619/844 -f 619/845 621/846 620/847 -f 620/847 621/846 622/848 -f 620/847 622/848 623/849 -f 623/850 652/773 620/843 -f 623/849 622/848 624/851 -f 571/774 623/850 570/852 -f 568/853 570/852 623/850 -f 624/854 568/853 623/850 -f 568/769 624/851 476/646 -f 568/769 476/646 475/648 -f 622/848 621/846 476/646 -f 625/855 477/647 476/646 -f 476/646 626/856 625/855 -f 626/856 657/857 625/855 -f 625/855 657/857 627/858 -f 628/859 625/855 627/858 -f 628/859 627/858 629/860 -f 511/690 628/859 629/860 -f 629/860 630/861 511/690 -f 512/862 511/863 630/864 -f 512/862 630/864 631/865 -f 644/866 631/867 632/868 -f 633/869 644/866 632/868 -f 632/868 634/870 633/869 -f 634/871 635/872 633/869 -f 636/873 633/869 635/872 -f 635/872 637/874 636/873 -f 638/875 637/874 639/876 -f 638/875 640/877 641/878 -f 633/869 638/875 641/879 -f 641/878 640/877 642/880 -f 633/869 641/878 642/880 -f 633/869 642/880 643/881 -f 633/869 643/881 644/866 -f 645/882 513/692 644/866 -f 645/883 644/866 646/884 -f 646/884 647/885 645/886 -f 647/887 648/888 645/889 -f 649/890 645/889 648/888 -f 648/888 650/891 649/890 -f 651/602 513/892 649/890 -f 651/602 619/844 652/773 -f 652/773 602/817 651/602 -f 651/602 649/890 619/844 -f 649/890 653/893 619/844 -f 653/894 654/895 626/856 -f 653/894 476/646 621/846 -f 653/894 626/856 476/646 -f 654/895 650/896 626/856 -f 650/896 655/897 626/856 -f 626/856 655/897 657/857 -f 655/898 656/899 657/900 -f 627/858 644/866 629/860 -f 658/901 629/860 644/866 -f 658/901 644/866 643/881 -f 658/901 643/881 659/902 -f 660/903 658/901 659/902 -f 660/903 659/902 661/904 -f 662/905 660/903 663/906 -f 663/906 664/907 662/905 -f 665/908 662/909 664/910 -f 664/910 666/911 665/908 -f 667/912 665/913 666/914 -f 668/915 665/913 667/912 -f 669/916 668/917 667/918 -f 669/919 667/920 664/921 -f 668/917 669/916 663/922 -f 668/923 663/924 670/925 -f 665/913 670/926 672/927 -f 665/913 672/927 630/864 -f 672/927 631/865 630/864 -f 673/928 631/867 672/929 -f 673/928 632/868 631/867 -f 674/930 632/868 673/928 -f 673/928 675/931 674/930 -f 674/930 675/931 676/932 -f 674/930 676/932 677/933 -f 677/933 678/934 674/930 -f 679/935 674/930 678/934 -f 678/934 680/936 679/937 -f 681/938 679/937 680/936 -f 680/936 682/939 681/938 -f 637/874 681/938 682/939 -f 682/939 683/940 637/874 -f 690/941 637/874 683/940 -f 684/942 690/941 683/943 -f 683/943 685/944 684/942 -f 684/942 685/944 686/945 -f 687/946 688/947 689/948 -f 690/941 687/946 689/948 -f 637/874 690/941 639/876 -f 692/949 639/876 691/950 -f 693/951 640/877 694/952 -f 694/952 695/953 693/951 -f 699/954 697/955 698/956 -f 699/954 698/956 700/957 -f 702/958 703/959 701/960 -f 701/960 703/959 704/961 -f 701/960 704/961 705/962 -f 705/962 700/957 701/960 -f 700/957 705/962 699/954 -f 699/954 705/962 706/963 -f 707/964 708/965 706/963 -f 706/963 708/965 697/955 -f 708/965 693/966 696/967 -f 708/965 709/968 693/966 -f 693/966 709/968 710/969 -f 710/970 711/971 693/951 -f 711/971 659/902 693/951 -f 693/951 659/902 643/881 -f 693/951 643/881 642/880 -f 710/970 712/972 711/971 -f 711/973 712/974 713/975 -f 713/975 659/902 711/971 -f 713/975 712/974 714/976 -f 713/975 714/976 715/977 -f 716/978 713/975 715/977 -f 717/979 716/980 715/981 -f 718/982 719/983 717/979 -f 717/979 719/983 720/984 -f 717/979 720/984 721/985 -f 722/986 716/980 721/985 -f 723/987 722/986 724/988 -f 725/989 723/990 724/991 -f 725/989 724/992 726/993 -f 726/993 727/994 725/989 -f 725/989 727/994 728/995 -f 728/996 713/975 725/989 -f 728/996 729/997 713/975 -f 713/998 729/999 730/1000 -f 730/1000 731/1001 713/998 -f 727/994 731/1002 730/1003 -f 732/1004 727/1005 733/1006 -f 732/1004 733/1006 734/1007 -f 734/1007 735/1008 732/1004 -f 732/1004 735/1008 729/999 -f 732/1004 729/999 728/1009 -f 736/1010 729/999 735/1008 -f 730/1000 729/999 736/1010 -f 736/1010 733/1006 730/1000 -f 737/1011 733/1006 736/1010 -f 737/1011 736/1010 735/1008 -f 737/1011 735/1008 738/1012 -f 738/1012 739/1013 737/1011 -f 739/1013 740/1014 737/1011 -f 750/1015 737/1011 740/1014 -f 742/1016 743/1017 741/1018 -f 741/1019 743/1020 740/1014 -f 740/1014 743/1020 750/1015 -f 743/1020 744/1021 750/1015 -f 745/1022 750/1015 744/1021 -f 745/1023 746/1024 747/1025 -f 749/1026 750/1015 747/1027 -f 751/1028 750/1015 749/1026 -f 749/1026 752/1029 751/1028 -f 752/1029 890/1030 891/1031 -f 752/1029 891/1031 753/1032 -f 754/1033 752/1029 753/1032 -f 754/1033 753/1032 755/1034 -f 754/1033 755/1034 756/1035 -f 760/1036 754/1033 757/1037 -f 757/1037 758/1038 760/1036 -f 760/1036 758/1038 938/1039 -f 760/1036 938/1039 948/1040 -f 948/1040 751/1028 760/1036 -f 751/1028 752/1029 759/1041 -f 754/1033 759/1041 752/1029 -f 760/1036 759/1041 754/1033 -f 751/1028 759/1041 760/1036 -f 751/1028 953/1042 750/1015 -f 734/1007 733/1006 761/1043 -f 734/1007 762/1044 763/1045 -f 764/1046 734/1007 763/1045 -f 764/1046 738/1012 734/1007 -f 765/1047 738/1048 4034/1049 -f 4034/1050 766/1051 765/1052 -f 765/1052 766/1051 767/1053 -f 768/1054 765/1052 767/1053 -f 769/1055 768/1054 767/1053 -f 769/1055 1184/1056 770/1057 -f 769/1055 770/1057 1264/1058 -f 1264/1058 768/1054 769/1055 -f 1264/1058 771/1059 768/1054 -f 768/1054 771/1059 772/1060 -f 772/1061 771/1062 773/1063 -f 772/1061 773/1063 774/1064 -f 765/1047 772/1061 774/1064 -f 765/1047 774/1064 738/1048 -f 774/1064 775/1065 738/1048 -f 775/1065 776/1066 738/1048 -f 776/1066 777/1067 738/1048 -f 777/1067 778/1068 738/1048 -f 778/1068 779/1069 738/1048 -f 779/1069 780/1070 738/1048 -f 780/1070 781/1071 738/1048 -f 781/1071 782/1072 738/1048 -f 782/1072 783/1073 738/1048 -f 784/1074 738/1048 783/1073 -f 783/1073 785/1075 784/1074 -f 786/1076 784/1074 785/1075 -f 785/1075 787/1077 786/1076 -f 788/1078 786/1076 787/1077 -f 787/1077 789/1079 788/1078 -f 790/1080 788/1078 789/1079 -f 789/1079 791/1081 790/1080 -f 792/1082 790/1080 791/1081 -f 793/1083 792/1082 791/1081 -f 791/1081 794/1084 793/1083 -f 794/1084 795/1085 793/1083 -f 795/1085 796/1086 793/1083 -f 796/1086 797/1087 793/1083 -f 797/1087 798/1088 793/1083 -f 797/1087 799/1089 798/1088 -f 798/1090 801/1091 800/1092 -f 802/1093 800/1094 801/1091 -f 801/1091 1425/1095 802/1093 -f 803/1096 802/1097 804/1098 -f 804/1098 805/1099 803/1096 -f 803/1096 805/1099 806/1100 -f 809/1101 807/1102 808/1103 -f 808/1104 810/1105 809/1106 -f 815/1107 809/1106 810/1105 -f 811/1108 815/1107 810/1105 -f 813/1109 811/1108 812/1110 -f 813/1109 812/1110 814/1111 -f 815/1107 813/1109 806/1112 -f 815/1107 806/1112 809/1106 -f 813/1109 816/1113 806/1112 -f 800/1114 816/1115 817/1116 -f 817/1116 793/1083 800/1114 -f 818/1117 793/1083 817/1116 -f 819/1118 818/1117 820/1119 -f 821/1120 790/1121 819/1122 -f 822/1123 821/1124 812/1110 -f 812/1110 821/1124 823/1125 -f 821/1124 820/1126 823/1125 -f 823/1125 820/1126 814/1111 -f 814/1111 820/1126 817/1127 -f 817/1127 816/1113 814/1111 -f 817/1116 820/1119 818/1117 -f 824/1128 821/1124 822/1129 -f 825/1130 824/1128 822/1131 -f 825/1132 822/1123 811/1108 -f 826/1133 825/1132 811/1108 -f 828/1134 826/1133 827/1135 -f 829/1136 830/1137 828/1134 -f 828/1134 830/1137 826/1133 -f 831/1138 826/1133 830/1137 -f 833/1139 832/1140 824/1128 -f 832/1140 833/1141 834/1142 -f 834/1142 835/1143 832/1140 -f 832/1144 835/1145 788/1146 -f 836/1147 835/1143 834/1142 -f 837/1148 836/1147 834/1142 -f 837/1148 839/1149 838/1150 -f 838/1150 839/1149 840/1151 -f 838/1150 840/1151 841/1152 -f 838/1150 843/1153 842/1154 -f 837/1148 842/1154 844/1155 -f 844/1155 842/1154 845/1156 -f 844/1155 846/1157 836/1158 -f 846/1157 847/1159 836/1158 -f 847/1159 848/1160 836/1158 -f 786/1161 848/1160 847/1159 -f 786/1162 835/1145 848/1163 -f 846/1157 849/1164 847/1159 -f 847/1159 849/1164 784/1165 -f 784/1165 849/1164 850/1166 -f 850/1166 849/1164 846/1157 -f 850/1166 846/1157 851/1167 -f 738/1012 850/1166 851/1167 -f 852/1168 851/1167 853/1169 -f 853/1169 845/1156 852/1168 -f 845/1156 741/1019 852/1168 -f 842/1154 854/1170 845/1156 -f 854/1170 741/1019 845/1156 -f 854/1171 742/1016 741/1018 -f 855/1172 856/1173 854/1171 -f 856/1173 857/1174 854/1171 -f 854/1171 857/1174 858/1175 -f 854/1171 858/1175 742/1016 -f 742/1016 858/1175 859/1176 -f 860/1177 744/1178 743/1017 -f 860/1179 743/1017 859/1176 -f 861/1180 860/1181 859/1182 -f 862/1183 861/1180 863/1184 -f 863/1184 865/1185 864/1186 -f 864/1187 865/1188 866/1189 -f 866/1189 867/1190 864/1187 -f 864/1186 867/1191 868/1192 -f 864/1186 868/1192 862/1183 -f 862/1183 868/1192 869/1193 -f 862/1183 869/1193 861/1180 -f 869/1193 860/1181 861/1180 -f 870/1194 860/1181 869/1193 -f 870/1194 871/1195 860/1181 -f 860/1181 871/1195 872/1196 -f 875/1197 873/1198 874/1199 -f 875/1200 874/1201 876/1202 -f 876/1202 877/1203 875/1200 -f 875/1197 877/1204 878/1205 -f 878/1205 879/1206 875/1197 -f 879/1206 878/1205 880/1207 -f 879/1206 880/1207 881/1208 -f 879/1206 881/1208 873/1198 -f 881/1208 880/1207 872/1196 -f 745/1023 872/1209 880/1210 -f 745/1023 880/1210 746/1024 -f 744/1178 872/1209 745/1023 -f 746/1024 880/1210 878/1211 -f 746/1024 878/1211 882/1212 -f 883/1213 884/1214 885/1215 -f 884/1216 886/1217 885/1218 -f 885/1218 887/1219 748/1220 -f 887/1219 888/1221 748/1220 -f 748/1220 888/1221 889/1222 -f 748/1220 889/1222 749/1026 -f 889/1222 890/1030 749/1026 -f 891/1031 890/1030 1453/1223 -f 894/1224 893/1225 892/1226 -f 895/1227 894/1228 892/1229 -f 895/1230 892/1226 896/1231 -f 897/1232 898/1233 899/1234 -f 899/1234 894/1228 897/1232 -f 894/1228 755/1235 893/1236 -f 899/1234 901/1237 900/1238 -f 902/1239 756/1035 900/1240 -f 902/1239 903/1241 756/1035 -f 754/1033 756/1035 903/1241 -f 935/1242 904/1243 903/1241 -f 903/1241 905/1244 935/1242 -f 906/1245 935/1242 905/1244 -f 905/1244 907/1246 906/1245 -f 908/1247 906/1245 907/1246 -f 907/1246 909/1248 908/1247 -f 910/1249 908/1247 909/1248 -f 911/1250 910/1249 909/1248 -f 911/1250 909/1248 912/1251 -f 913/1252 911/1253 912/1254 -f 913/1252 912/1254 914/1255 -f 915/1256 913/1252 914/1255 -f 917/1257 915/1256 916/1258 -f 917/1257 916/1258 918/1259 -f 917/1257 918/1259 919/1260 -f 917/1257 919/1260 920/1261 -f 921/1262 917/1257 920/1261 -f 913/1252 921/1262 922/1263 -f 923/1264 922/1263 921/1262 -f 923/1264 924/1265 925/1266 -f 925/1266 926/1267 923/1264 -f 925/1266 927/1268 926/1267 -f 926/1267 927/1268 928/1269 -f 926/1267 928/1269 929/1270 -f 926/1267 929/1270 922/1263 -f 922/1263 929/1270 911/1253 -f 928/1269 930/1271 929/1270 -f 930/1272 931/1273 929/1274 -f 929/1274 931/1273 910/1249 -f 930/1272 932/1275 931/1273 -f 931/1273 933/1276 910/1249 -f 931/1273 934/1277 933/1276 -f 935/1242 936/1278 904/1243 -f 936/1278 937/1279 904/1243 -f 904/1243 937/1279 757/1037 -f 904/1243 757/1037 903/1241 -f 938/1039 758/1038 939/1280 -f 940/1281 938/1039 939/1280 -f 940/1281 942/1282 941/1283 -f 941/1284 943/1285 944/1286 -f 944/1287 945/1288 941/1283 -f 941/1283 945/1288 940/1281 -f 946/1289 947/1290 1513/1291 -f 1513/1291 1790/1292 946/1289 -f 1790/1292 948/1040 946/1289 -f 948/1040 949/1293 951/1294 -f 951/1294 949/1293 950/1295 -f 951/1294 950/1295 1786/1296 -f 954/1297 955/1298 956/1299 -f 954/1297 956/1299 953/1042 -f 953/1042 956/1299 957/1300 -f 953/1042 957/1300 762/1044 -f 957/1300 958/1301 762/1044 -f 959/1302 958/1303 960/1304 -f 961/1305 959/1306 960/1307 -f 960/1307 962/1308 961/1305 -f 962/1309 963/1310 961/1311 -f 961/1311 963/1310 964/1312 -f 961/1311 964/1312 965/1313 -f 965/1313 964/1312 966/1314 -f 965/1313 966/1314 967/1315 -f 968/1316 965/1317 967/1318 -f 967/1318 969/1319 968/1316 -f 969/1320 970/1321 968/1322 -f 968/1323 970/1324 971/1325 -f 968/1323 971/1325 959/1302 -f 958/1301 971/1326 763/1045 -f 971/1326 970/1327 764/1046 -f 764/1046 970/1327 972/1328 -f 764/1046 972/1328 973/1329 -f 973/1329 972/1328 974/1330 -f 974/1330 738/1048 973/1329 -f 974/1330 975/1331 738/1048 -f 976/1332 738/1048 975/1331 -f 977/1333 976/1332 975/1331 -f 977/1333 978/1334 304/1335 -f 978/1334 979/1336 1810/1337 -f 980/1338 1810/1337 979/1336 -f 980/1338 979/1336 981/1339 -f 980/1338 982/1340 954/1297 -f 982/1340 983/1341 954/1297 -f 984/1342 983/1343 985/1344 -f 985/1345 986/1346 984/1347 -f 987/1348 984/1347 986/1346 -f 986/1349 988/1350 987/1351 -f 987/1351 988/1350 989/1352 -f 987/1351 989/1352 962/1353 -f 962/1308 990/1354 987/1348 -f 988/1355 991/1356 989/1357 -f 992/1358 989/1357 991/1356 -f 993/1359 995/1360 994/1361 -f 995/1360 996/1362 994/1361 -f 994/1361 996/1362 997/1363 -f 964/1364 994/1361 997/1363 -f 998/1365 997/1363 999/1366 -f 1000/1367 998/1365 999/1366 -f 1000/1368 999/1369 1001/1370 -f 1003/1371 998/1365 1002/1372 -f 998/1365 1003/1371 966/1373 -f 966/1373 997/1363 998/1365 -f 1004/1374 966/1373 1003/1371 -f 1003/1371 1005/1375 1004/1374 -f 1004/1374 1005/1375 1007/1376 -f 1008/1377 1004/1378 1007/1379 -f 1008/1377 1007/1379 1009/1380 -f 1008/1381 1009/1382 1010/1383 -f 1010/1383 969/1319 1008/1381 -f 1010/1384 972/1385 969/1320 -f 1010/1384 1011/1386 972/1385 -f 974/1330 1011/1387 1012/1388 -f 974/1330 1012/1388 975/1331 -f 1014/1389 1012/1390 1013/1391 -f 1013/1392 1015/1393 1014/1394 -f 1016/1395 1014/1394 1015/1393 -f 1017/1396 1016/1397 1015/1398 -f 1015/1398 1018/1399 1017/1396 -f 1018/1400 1019/1401 1017/1402 -f 1020/1403 1017/1402 1019/1401 -f 1020/1403 1022/1404 1021/1405 -f 1022/1404 1023/1406 1021/1405 -f 1021/1405 1023/1406 1024/1407 -f 1025/1408 1021/1405 1024/1407 -f 1024/1407 1026/1409 1025/1408 -f 1027/1410 1025/1411 1026/1412 -f 1027/1410 1026/1412 1028/1413 -f 1029/1414 1027/1415 1028/1416 -f 1028/1416 1030/1417 1029/1414 -f 1030/1418 1031/1419 1029/1420 -f 1029/1420 1031/1419 1032/1421 -f 1029/1420 1032/1421 1033/1422 -f 1033/1422 1032/1421 1034/1423 -f 1033/1422 1034/1423 1014/1424 -f 977/1333 1012/1388 1034/1425 -f 1034/1425 1032/1426 978/1334 -f 1032/1426 1031/1427 979/1336 -f 1030/1418 1035/1428 1031/1419 -f 1031/1427 1035/1429 981/1339 -f 981/1339 1035/1429 982/1340 -f 985/1344 1035/1428 1030/1430 -f 985/1345 1030/1417 1036/1431 -f 1028/1416 1036/1431 1030/1417 -f 1028/1413 1037/1432 1036/1433 -f 1036/1433 1037/1432 1038/1434 -f 1036/1435 1038/1436 986/1349 -f 1051/1437 1038/1438 1037/1439 -f 1037/1439 1039/1440 1051/1437 -f 1051/1437 1039/1440 1040/1441 -f 1043/1442 1041/1443 1042/1444 -f 1043/1442 1045/1445 1044/1446 -f 1044/1447 1045/1448 1046/1449 -f 1046/1449 1047/1450 1044/1447 -f 1048/1451 1044/1447 1047/1450 -f 1047/1452 1049/1453 1048/1451 -f 1050/1454 1048/1451 1049/1453 -f 1051/1437 1050/1454 1049/1453 -f 1049/1453 1052/1455 1051/1437 -f 1053/1456 1051/1437 1052/1455 -f 1054/1457 1053/1456 1052/1455 -f 1052/1455 1055/1458 1054/1457 -f 1056/1459 1054/1457 1055/1458 -f 1057/1460 1056/1461 1055/1462 -f 1057/1460 1055/1462 1058/1463 -f 1060/1464 1061/1465 1059/1466 -f 1061/1465 1056/1461 1059/1466 -f 1062/1467 1061/1465 1063/1468 -f 1064/1469 1063/1468 1065/1470 -f 1064/1469 1066/1471 1062/1467 -f 1066/1472 1067/1473 1061/1474 -f 1067/1473 1054/1457 1061/1474 -f 1067/1473 1053/1456 1054/1457 -f 1050/1454 1051/1437 1040/1441 -f 1050/1454 1040/1441 1048/1451 -f 1048/1451 1040/1441 1041/1475 -f 1051/1437 1053/1456 1038/1438 -f 991/1356 1053/1456 1067/1473 -f 991/1356 1067/1473 1068/1476 -f 1068/1476 1069/1477 991/1356 -f 991/1356 1069/1477 992/1358 -f 1069/1477 1070/1478 992/1358 -f 1069/1479 1071/1480 1070/1481 -f 1071/1480 1072/1482 1070/1481 -f 1070/1481 1072/1482 995/1483 -f 1072/1482 1073/1484 995/1485 -f 1074/1486 996/1487 1073/1484 -f 999/1369 996/1487 1074/1486 -f 1074/1486 1075/1488 1001/1370 -f 1001/1370 1077/1489 1076/1490 -f 1076/1490 1077/1489 1078/1491 -f 1076/1490 1078/1491 1079/1492 -f 1076/1493 1079/1494 1002/1372 -f 1002/1372 1079/1494 1080/1495 -f 1002/1372 1080/1495 1003/1371 -f 1005/1375 1003/1371 1081/1496 -f 1082/1497 1005/1375 1081/1496 -f 1081/1496 1083/1498 1082/1497 -f 1084/1499 1082/1497 1083/1498 -f 1083/1500 1085/1501 1084/1499 -f 1086/1502 1084/1499 1085/1501 -f 1085/1501 1087/1503 1086/1502 -f 1086/1502 1087/1503 1088/1504 -f 1088/1504 1087/1503 1089/1505 -f 1088/1504 1090/1506 1084/1499 -f 1084/1499 1090/1506 1091/1507 -f 1084/1499 1091/1507 1082/1497 -f 1082/1497 1091/1507 1006/1508 -f 1093/1509 1091/1507 1092/1510 -f 1093/1509 1094/1511 1095/1512 -f 1095/1512 1094/1511 1096/1513 -f 1095/1514 1096/1515 1097/1516 -f 1097/1516 1006/1508 1095/1514 -f 1095/1514 1006/1508 1091/1507 -f 1097/1516 1096/1515 1019/1401 -f 1005/1375 1097/1516 1018/1400 -f 1096/1515 1098/1517 1019/1401 -f 1019/1401 1098/1517 1020/1403 -f 1096/1513 1099/1518 1098/1519 -f 1100/1520 1098/1519 1099/1518 -f 1099/1518 1101/1521 1100/1520 -f 1102/1522 1100/1520 1101/1521 -f 1102/1522 1101/1521 1103/1523 -f 1102/1522 1103/1523 1104/1524 -f 1105/1525 1102/1522 1104/1524 -f 1104/1524 1106/1526 1105/1525 -f 1105/1525 1106/1526 1107/1527 -f 1105/1528 1107/1529 1108/1530 -f 1108/1530 1109/1531 1105/1528 -f 1109/1531 1110/1532 1100/1533 -f 1111/1534 1023/1535 1110/1532 -f 1112/1536 1023/1535 1111/1534 -f 1113/1537 1112/1536 1111/1534 -f 1113/1537 1114/1538 1042/1444 -f 1042/1444 1114/1538 1115/1539 -f 1042/1444 1115/1539 1043/1442 -f 1116/1540 1117/1541 1118/1542 -f 1047/1450 1118/1542 1119/1543 -f 1049/1453 1119/1543 4032/1544 -f 1120/1545 1121/1546 1122/1547 -f 1122/1547 1121/1546 1123/1548 -f 1122/1547 1049/1453 4032/1544 -f 1052/1455 1122/1547 1123/1548 -f 1055/1458 1123/1548 1121/1546 -f 1055/1462 1121/1549 1124/1550 -f 1126/1551 1125/1552 1127/1553 -f 1126/1551 1127/1553 1128/1554 -f 1126/1551 1128/1554 1129/1555 -f 1129/1555 1130/1556 1126/1551 -f 1129/1555 1131/1557 1130/1556 -f 1132/1558 1130/1556 1131/1557 -f 1132/1558 1131/1557 1133/1559 -f 1132/1558 1133/1559 1134/1560 -f 1134/1560 1135/1561 1136/1562 -f 1057/1460 1136/1562 1059/1466 -f 1137/1563 1060/1464 1136/1562 -f 1138/1564 1060/1464 1137/1563 -f 1138/1564 1063/1468 1060/1464 -f 1063/1468 1138/1564 1139/1565 -f 1140/1566 1139/1565 1138/1564 -f 1141/1567 1140/1566 1138/1564 -f 1135/1561 1141/1567 1138/1564 -f 1135/1561 1138/1564 1137/1563 -f 1143/1568 1144/1569 1142/1570 -f 1141/1567 1144/1569 1145/1571 -f 1145/1571 1144/1569 1146/1572 -f 1145/1571 1146/1572 1147/1573 -f 1147/1573 1148/1574 1145/1571 -f 1145/1571 1148/1574 1065/1470 -f 1145/1571 1065/1470 1140/1566 -f 1149/1575 1065/1470 1148/1574 -f 1071/1480 1151/1576 1150/1577 -f 1150/1577 1151/1576 1152/1578 -f 1150/1577 1152/1578 1072/1482 -f 1072/1482 1152/1578 1153/1579 -f 1154/1580 1153/1579 1152/1578 -f 1154/1580 1152/1578 1155/1581 -f 1155/1581 1156/1582 1154/1580 -f 1154/1580 1156/1582 1157/1583 -f 1154/1580 1157/1583 1158/1584 -f 1158/1584 1157/1583 1159/1585 -f 1158/1586 1159/1587 1160/1588 -f 1160/1588 1161/1589 1158/1586 -f 1161/1589 1153/1579 1158/1586 -f 1073/1484 1153/1579 1161/1589 -f 1160/1588 1162/1590 1161/1589 -f 1074/1486 1161/1589 1162/1590 -f 1163/1591 1162/1590 1160/1588 -f 1160/1588 1164/1592 1163/1591 -f 1163/1591 1164/1592 1165/1593 -f 1163/1591 1165/1593 1166/1594 -f 1166/1594 1167/1595 1163/1591 -f 1167/1595 1168/1596 1163/1591 -f 1167/1595 1169/1597 1168/1596 -f 1168/1596 1169/1597 1075/1488 -f 1168/1596 1075/1488 1162/1590 -f 1253/1598 1001/1370 1169/1597 -f 1001/1370 1253/1598 1077/1489 -f 1078/1491 1077/1489 1253/1598 -f 1078/1491 1253/1598 1170/1599 -f 1170/1599 1171/1600 1078/1491 -f 1172/1601 1078/1491 1171/1600 -f 1171/1600 1173/1602 1172/1601 -f 1172/1601 1173/1602 1174/1603 -f 1172/1604 1174/1605 1175/1606 -f 1172/1604 1175/1606 1079/1494 -f 1175/1606 1174/1605 1176/1607 -f 1176/1607 1081/1496 1175/1606 -f 1178/1608 1179/1609 1177/1610 -f 1177/1610 1179/1609 1180/1611 -f 1180/1611 1176/1607 1177/1610 -f 1180/1611 1181/1612 1176/1607 -f 1085/1501 1182/1613 1183/1614 -f 1183/1614 1184/1615 1085/1501 -f 1085/1501 1184/1615 1087/1503 -f 1087/1503 1184/1615 1185/1616 -f 1185/1616 1089/1505 1087/1503 -f 1090/1506 1089/1505 1186/1617 -f 1092/1510 1186/1617 1187/1618 -f 1187/1618 1093/1509 1092/1510 -f 1188/1619 1187/1618 1186/1617 -f 1185/1616 1188/1619 1186/1617 -f 1185/1616 1186/1617 1089/1505 -f 1189/1620 1188/1619 1185/1616 -f 1190/1621 1189/1620 1185/1616 -f 1188/1619 1189/1620 1193/1622 -f 1193/1622 1189/1620 1194/1623 -f 1193/1622 1194/1623 1195/1624 -f 1195/1624 1196/1625 1193/1622 -f 1193/1622 1196/1625 1187/1618 -f 1187/1618 1094/1511 1093/1509 -f 1196/1625 1094/1511 1187/1618 -f 1103/1523 1099/1518 1094/1511 -f 1103/1523 1094/1511 1196/1625 -f 1195/1624 1103/1523 1196/1625 -f 1104/1524 1103/1523 1195/1624 -f 1195/1624 1197/1626 1104/1524 -f 1195/1624 1194/1623 1197/1626 -f 1194/1627 1198/1628 1197/1629 -f 1197/1629 1198/1628 1199/1630 -f 1197/1629 1199/1630 1106/1631 -f 1106/1631 1199/1630 1200/1632 -f 1199/1630 1201/1633 1200/1632 -f 1200/1632 1201/1633 1202/1634 -f 1200/1632 1202/1634 1203/1635 -f 1107/1636 1200/1632 1203/1635 -f 1107/1636 1203/1635 1204/1637 -f 1204/1637 1203/1635 1205/1638 -f 1204/1637 1205/1638 1206/1639 -f 1207/1640 1204/1641 1206/1642 -f 1207/1640 1206/1642 1208/1643 -f 1208/1643 1209/1644 1207/1640 -f 1207/1640 1209/1644 1210/1645 -f 1207/1640 1210/1645 1108/1530 -f 1209/1644 1111/1534 1210/1645 -f 1210/1645 1111/1534 1110/1532 -f 1210/1645 1110/1532 1109/1531 -f 1209/1644 1114/1538 1111/1534 -f 1211/1646 1209/1644 1208/1643 -f 1214/1647 1212/1648 1213/1649 -f 1213/1649 1215/1650 1214/1647 -f 1214/1647 1217/1651 1212/1648 -f 1217/1651 1218/1652 1211/1646 -f 1211/1646 1218/1652 1115/1539 -f 1218/1652 1045/1445 1115/1539 -f 1219/1653 1117/1541 1116/1540 -f 1116/1540 1220/1654 1219/1653 -f 1219/1655 1220/1656 1221/1657 -f 1219/1653 299/386 1222/1658 -f 1223/1659 1117/1541 1222/1658 -f 1225/1660 1224/1661 1223/1659 -f 1223/1659 1226/1662 1225/1660 -f 1229/1663 1228/1664 1227/1665 -f 1227/1665 2474/1666 1229/1663 -f 2474/1666 1230/1667 1229/1663 -f 1229/1663 1230/1667 1231/1668 -f 1229/1663 1231/1668 1228/1664 -f 1228/1664 1225/1660 1226/1662 -f 1232/1669 1225/1660 1228/1664 -f 1232/1669 1228/1664 1233/1670 -f 1232/1669 1233/1670 1234/1671 -f 1235/1672 1234/1671 1236/1673 -f 1237/1674 1235/1672 1236/1673 -f 1239/1675 1236/1676 1238/1677 -f 1241/1678 1240/1679 1242/1680 -f 1243/1681 1241/1678 1242/1680 -f 1244/1682 1243/1681 1245/1683 -f 1164/1684 1244/1682 1245/1683 -f 1244/1682 1164/1684 1159/1685 -f 1159/1685 1246/1686 1244/1682 -f 1245/1683 1243/1681 1247/1687 -f 1245/1683 1247/1687 1248/1688 -f 1165/1689 1245/1683 1248/1688 -f 1165/1689 1248/1688 1249/1690 -f 1249/1690 1166/1594 1165/1689 -f 1249/1690 1250/1691 1166/1594 -f 1250/1691 1251/1692 1166/1594 -f 1166/1594 1251/1692 1167/1595 -f 1251/1692 1252/1693 1167/1595 -f 1167/1595 1252/1693 1253/1598 -f 1167/1595 1253/1598 1169/1597 -f 1254/1694 1170/1599 1252/1693 -f 1171/1600 1254/1694 1255/1695 -f 1255/1695 1173/1602 1171/1600 -f 1256/1696 1178/1697 1173/1602 -f 1256/1696 1179/1698 1178/1697 -f 1256/1696 1257/1699 1179/1698 -f 1179/1698 1259/1700 1258/1701 -f 1258/1701 1259/1700 1260/1702 -f 1180/1611 1258/1703 2066/1704 -f 1180/1611 2066/1704 1181/1612 -f 1181/1705 2066/1706 1261/1707 -f 1263/1708 1261/1707 1262/1709 -f 1263/1708 1262/1709 1264/1058 -f 1264/1058 770/1057 1263/1708 -f 1263/1708 770/1057 1184/1056 -f 1263/1708 1184/1056 1183/1710 -f 771/1062 1265/1711 1266/1712 -f 771/1062 1266/1712 1267/1713 -f 1266/1714 1268/1715 1267/1716 -f 1267/1717 1268/1715 1269/1718 -f 1269/1718 773/1719 1267/1717 -f 1268/1715 1270/1720 1269/1718 -f 1269/1718 1270/1720 1271/1721 -f 1273/1722 1271/1721 1272/1723 -f 1272/1723 1274/1724 1273/1722 -f 1275/1725 1273/1722 1274/1724 -f 1276/1726 1275/1727 1274/1728 -f 1276/1726 1274/1728 1277/1729 -f 1276/1726 1277/1729 1278/1730 -f 726/993 1276/1731 1278/1732 -f 726/993 1278/1732 676/1733 -f 1278/1730 1279/1734 676/932 -f 1270/1720 1277/1735 1274/1724 -f 1271/1721 1270/1720 1274/1724 -f 1270/1720 1280/1736 1277/1735 -f 1281/1737 1277/1729 1280/1738 -f 1281/1737 1280/1738 1282/1739 -f 1282/1739 1283/1740 1281/1737 -f 1284/1741 1281/1737 1283/1740 -f 677/933 1284/1741 1283/1740 -f 1283/1740 1285/1742 677/933 -f 677/933 1285/1742 678/934 -f 1285/1742 1287/1743 1286/1744 -f 1286/1744 1287/1743 1288/1745 -f 1288/1745 1289/1746 1286/1744 -f 1286/1744 680/936 678/934 -f 1289/1746 680/936 1286/1744 -f 1289/1746 682/939 680/936 -f 1290/1747 682/939 1289/1746 -f 685/944 682/939 1290/1747 -f 685/1748 1291/1749 1292/1750 -f 685/1748 1292/1750 686/1751 -f 1293/1752 684/942 686/945 -f 1292/1750 1293/1753 686/1751 -f 1292/1750 1294/1754 1293/1753 -f 1296/1755 1295/1756 2092/1757 -f 1298/1758 1296/1755 1297/1759 -f 1298/1758 1297/1759 2099/1760 -f 1299/1761 1298/1758 2099/1760 -f 1299/1761 2099/1760 1300/1762 -f 1304/1763 1299/1761 1300/1762 -f 1301/1764 1302/1765 2101/1766 -f 1300/1762 2101/1766 1302/1765 -f 1301/1764 1303/1767 1302/1765 -f 1303/1767 1304/1763 1302/1765 -f 1304/1763 1298/1758 1299/1761 -f 1305/1768 1298/1758 1304/1763 -f 1305/1768 1293/1753 1294/1754 -f 1307/1769 1304/1763 1303/1767 -f 1308/1770 1307/1769 1303/1767 -f 1308/1770 1303/1767 1301/1764 -f 1309/1771 1310/1772 1306/1773 -f 1311/1774 1306/1773 1310/1772 -f 1311/1774 1310/1772 1312/1775 -f 1313/1776 1311/1774 1312/1775 -f 691/950 1313/1776 695/953 -f 692/949 691/950 695/953 -f 692/949 695/953 694/952 -f 639/876 1313/1776 691/950 -f 1313/1776 1314/1777 695/953 -f 1317/1778 1316/1779 3932/1780 -f 1318/1781 1317/1778 3932/1780 -f 1318/1781 3932/1780 3931/1782 -f 1318/1783 3931/1784 1319/1785 -f 1320/1786 1318/1783 1319/1785 -f 1322/1787 1320/1786 1321/1788 -f 1323/1789 1324/1790 1317/1791 -f 1325/1792 1317/1778 1324/1793 -f 1325/1792 1324/1793 1326/1794 -f 1326/1794 1327/1795 1325/1792 -f 1325/1792 1327/1795 1328/1796 -f 1325/1792 1328/1796 1329/1797 -f 1329/1797 1328/1796 1330/1798 -f 1330/1798 1315/1799 1329/1797 -f 1315/1799 1316/1779 1329/1797 -f 693/951 1330/1798 2127/1800 -f 2127/1800 697/1801 696/1802 -f 1332/1803 1331/1804 2129/1805 -f 1333/1806 1332/1803 2129/1805 -f 1334/1807 1333/1806 2129/1805 -f 1338/1808 1336/1809 1337/1810 -f 1338/1811 1337/1812 1339/1813 -f 1339/1813 1340/1814 1338/1815 -f 1338/1815 1340/1814 1341/1816 -f 1338/1808 1341/1817 1342/1818 -f 1342/1818 1341/1817 1333/1819 -f 1336/1809 1342/1818 1335/1820 -f 1333/1806 1334/1807 1335/1821 -f 1333/1806 1335/1821 1342/1822 -f 1333/1819 1343/1823 1348/1824 -f 1348/1824 1332/1825 1333/1819 -f 1348/1824 1344/1826 1332/1825 -f 1332/1825 1344/1826 1345/1827 -f 1345/1828 1346/1829 1332/1803 -f 1331/1830 1346/1831 1347/1832 -f 1348/1824 1331/1830 1347/1832 -f 1349/1833 1348/1824 1347/1832 -f 1349/1833 1347/1832 1350/1834 -f 1351/1835 1349/1833 1350/1834 -f 1351/1835 1350/1834 1352/1836 -f 1343/1823 1354/1837 1355/1838 -f 1355/1838 1331/1830 1343/1823 -f 701/960 1331/1830 1355/1838 -f 1355/1838 1356/1839 701/960 -f 701/960 1356/1839 1357/1840 -f 1358/1841 1359/1842 1357/1840 -f 1357/1840 1359/1842 702/958 -f 1360/1843 1361/1844 1359/1845 -f 1359/1845 1361/1844 703/1846 -f 1359/1842 703/959 702/958 -f 1361/1844 1362/1847 703/1846 -f 703/1846 1362/1847 1363/1848 -f 1365/1849 1363/1850 1364/1851 -f 1366/1852 1365/1853 1364/1854 -f 1367/1855 1366/1852 1364/1854 -f 1367/1855 1364/1854 1368/1856 -f 1369/1857 1367/1855 1368/1856 -f 1369/1857 1368/1856 1370/1858 -f 1369/1857 1370/1858 1371/1859 -f 1372/1860 1369/1857 1371/1859 -f 1373/1861 1372/1860 1371/1859 -f 775/1065 1373/1861 1371/1859 -f 775/1065 1371/1859 1374/1862 -f 775/1065 1374/1862 1375/1863 -f 776/1864 1375/1865 1377/1866 -f 1377/1866 777/1867 776/1864 -f 1378/1868 778/1869 1377/1866 -f 1379/1870 779/1871 1378/1868 -f 1380/1872 1379/1870 1381/1873 -f 1381/1873 1382/1874 1380/1872 -f 1380/1872 1382/1874 1383/1875 -f 1380/1872 780/1876 1379/1870 -f 1384/1877 780/1876 1380/1872 -f 1384/1877 1385/1878 780/1876 -f 780/1070 1385/1879 1386/1880 -f 780/1070 1386/1880 1387/1881 -f 780/1070 1387/1881 1388/1882 -f 1387/1883 1389/1884 1388/1885 -f 1388/1886 1389/1884 1390/1887 -f 1388/1886 1390/1887 781/1888 -f 781/1888 1390/1887 1399/1889 -f 1390/1887 1391/1890 1392/1891 -f 1392/1891 1399/1889 1390/1887 -f 1393/1892 1399/1889 1392/1891 -f 1393/1892 1392/1891 1394/1893 -f 1395/1894 1393/1892 1394/1893 -f 1395/1894 1394/1893 1396/1895 -f 1396/1895 1397/1896 1395/1894 -f 1398/1897 1395/1894 1397/1896 -f 1398/1897 1397/1896 785/1898 -f 1398/1897 783/1899 1399/1889 -f 1398/1897 1399/1889 1393/1892 -f 1396/1895 1400/1900 1397/1896 -f 787/1901 1397/1896 1400/1900 -f 787/1901 1400/1900 1401/1902 -f 1402/1903 1401/1902 1400/1900 -f 1402/1903 1400/1900 1396/1904 -f 1396/1905 1403/1906 1402/1907 -f 1402/1907 1403/1906 1404/1908 -f 1402/1907 1404/1908 1405/1909 -f 1401/1902 1402/1903 1405/1909 -f 1401/1902 1405/1909 1406/1910 -f 1406/1910 789/1911 1401/1902 -f 1406/1910 1407/1912 789/1911 -f 1407/1912 1406/1910 1408/1913 -f 1409/1914 1408/1913 1410/1915 -f 1410/1916 1411/1917 1409/1918 -f 1413/1919 1411/1917 1412/1920 -f 1414/1921 807/1102 1415/1922 -f 1415/1923 1416/1924 1414/1925 -f 1416/1924 1417/1926 1413/1919 -f 1417/1926 1411/1917 1413/1919 -f 1418/1927 1407/1912 1409/1914 -f 1409/1914 1407/1912 1408/1913 -f 1418/1927 789/1911 1407/1912 -f 794/1928 1418/1929 1409/1918 -f 794/1928 1409/1918 1411/1917 -f 794/1928 1411/1917 1419/1930 -f 794/1931 1419/1932 1420/1933 -f 1420/1933 795/1934 794/1931 -f 796/1935 1420/1933 1421/1936 -f 1421/1936 1422/1937 796/1935 -f 796/1935 1422/1937 797/1938 -f 797/1938 1422/1937 799/1939 -f 1423/1940 799/1939 1422/1937 -f 1428/1941 1426/1942 1427/1943 -f 805/1099 1428/1944 1429/1945 -f 1429/1945 1430/1946 805/1099 -f 805/1099 1430/1946 807/1947 -f 1430/1948 1441/1949 807/1102 -f 807/1102 1441/1949 1415/1922 -f 1417/1926 1431/1950 1432/1951 -f 1417/1926 1432/1951 1419/1930 -f 1434/1952 1435/1953 1426/1942 -f 1425/1954 1434/1952 1426/1942 -f 1433/1955 1434/1952 1425/1954 -f 1431/1950 1433/1955 1425/1954 -f 1425/1095 801/1091 1431/1956 -f 801/1957 1432/1951 1431/1950 -f 1422/1937 1421/1936 1423/1940 -f 1432/1958 1423/1940 1421/1936 -f 1424/1959 1423/1940 1432/1958 -f 801/1091 1424/1959 1432/1958 -f 1435/1960 1436/1961 1427/1962 -f 1436/1963 1428/1941 1427/1943 -f 1436/1963 1429/1964 1428/1941 -f 1438/1965 1437/1966 1439/1967 -f 1439/1967 1440/1968 1438/1965 -f 1438/1965 1440/1968 1436/1961 -f 1438/1969 1436/1970 1441/1971 -f 1441/1949 1430/1948 1438/1965 -f 1438/1965 1430/1948 1437/1966 -f 1436/1970 1435/1953 1441/1971 -f 1440/1968 1442/1972 1429/1973 -f 1429/1973 1436/1961 1440/1968 -f 1442/1972 1439/1967 1429/1973 -f 1442/1972 1440/1968 1439/1967 -f 1429/1973 1439/1967 1437/1966 -f 1441/1971 1435/1953 1434/1952 -f 1441/1971 1434/1952 1433/1955 -f 1433/1955 1431/1950 1417/1926 -f 1417/1926 1415/1923 1433/1955 -f 1441/1971 1433/1955 1415/1923 -f 1429/1945 1437/1974 1430/1946 -f 804/1098 1428/1944 805/1099 -f 804/1975 1426/1942 1428/1941 -f 1426/1942 1435/1953 1427/1943 -f 804/1975 1425/1954 1426/1942 -f 799/1939 1424/1959 801/1091 -f 799/1939 1423/1940 1424/1959 -f 1420/1933 1432/1958 1421/1936 -f 1432/1958 1420/1933 1419/1932 -f 1419/1930 1411/1917 1417/1926 -f 1415/1923 1417/1926 1416/1924 -f 807/1102 1414/1921 1443/1976 -f 1446/1977 1443/1976 1414/1921 -f 1444/1978 1446/1979 1414/1925 -f 808/1103 1443/1976 1447/1980 -f 810/1105 1447/1981 828/1134 -f 810/1105 828/1134 827/1135 -f 1447/1981 1455/1982 828/1134 -f 829/1136 828/1134 1455/1982 -f 1448/1983 829/1136 1455/1982 -f 1455/1984 1454/1985 1448/1986 -f 1448/1986 1454/1985 1449/1987 -f 1448/1983 1449/1988 840/1151 -f 1448/1983 840/1151 830/1137 -f 840/1151 831/1138 830/1137 -f 840/1151 1449/1988 1450/1989 -f 886/1217 840/1151 1450/1989 -f 841/1152 840/1151 886/1217 -f 1450/1989 1449/1988 1451/1990 -f 1450/1989 1451/1990 888/1991 -f 888/1991 1451/1990 1452/1992 -f 1451/1990 1471/1993 1452/1992 -f 1452/1992 1471/1993 1453/1223 -f 1452/1994 1453/1223 890/1030 -f 1469/1995 1471/1996 1454/1985 -f 1457/1997 1456/1998 2203/1999 -f 2203/1999 1458/2000 1457/1997 -f 1457/1997 1458/2000 1459/2001 -f 1457/1997 1459/2002 1460/2003 -f 1457/1997 1460/2003 1461/2004 -f 1460/2003 1463/2005 1462/2006 -f 1462/2006 1463/2005 1464/2007 -f 1462/2006 1464/2007 1465/2008 -f 1462/2006 1465/2008 1466/2009 -f 1460/2003 1462/2006 1461/2004 -f 1462/2006 1467/2010 1461/2004 -f 1461/2004 1467/2010 1468/2011 -f 1461/2004 1468/2011 1456/2012 -f 1456/2012 1468/2011 1469/2013 -f 1453/2014 1471/1996 1472/2015 -f 895/1230 896/1231 3940/2016 -f 895/1227 3940/2017 1473/2018 -f 1473/2018 3942/2019 895/1227 -f 897/1232 895/1227 3942/2019 -f 897/1232 3942/2019 1474/2020 -f 1474/2020 898/1233 897/1232 -f 1475/2021 1476/2022 901/1237 -f 1476/2022 1477/2023 901/1237 -f 1477/2023 900/1238 901/1237 -f 1477/2024 902/1239 900/1240 -f 1477/2024 905/1244 902/1239 -f 1478/2025 905/1244 1477/2024 -f 1478/2025 907/1246 905/1244 -f 912/1251 907/1246 1478/2025 -f 1476/2022 1478/2026 1477/2023 -f 914/2027 1478/2026 1476/2022 -f 1474/2020 1475/2021 898/1233 -f 1479/2028 1475/2021 1474/2020 -f 1474/2020 1480/2029 1479/2028 -f 1480/2029 1481/2030 1479/2028 -f 1481/2030 1482/2031 916/2032 -f 1483/2033 916/2032 1482/2031 -f 1483/2033 1482/2031 1484/2034 -f 1466/2009 1483/2033 1484/2034 -f 1466/2009 1484/2034 1467/2010 -f 1485/2035 1483/2033 1466/2009 -f 1466/2009 1486/2036 1485/2035 -f 1485/2037 1486/2038 1487/2039 -f 1485/2037 1487/2039 1488/2040 -f 1488/2041 1483/2033 1485/2035 -f 1488/2040 918/1259 1483/2033 -f 1489/2042 918/1259 1488/2040 -f 1488/2040 1490/2043 1489/2042 -f 1489/2042 1490/2043 1491/2044 -f 1489/2042 1491/2044 1492/2045 -f 1492/2045 918/1259 1489/2042 -f 1492/2045 1491/2044 1493/2046 -f 1492/2045 1493/2046 1494/2047 -f 1494/2047 919/1260 1492/2045 -f 1495/2048 919/1260 1494/2047 -f 1496/2049 1495/2048 1494/2047 -f 1494/2047 1497/2050 1496/2049 -f 1496/2049 1497/2050 1498/2051 -f 1496/2049 1498/2051 1499/2052 -f 1499/2052 1500/2053 1496/2049 -f 1500/2053 1501/2054 924/1265 -f 1500/2053 924/1265 1495/2048 -f 1500/2053 1502/2055 1501/2054 -f 1501/2054 1502/2055 1503/2056 -f 925/1266 1501/2054 1503/2056 -f 925/1266 1503/2056 927/1268 -f 1504/2057 1505/2058 927/1268 -f 1504/2057 1506/2059 1505/2058 -f 1507/2060 1505/2058 1506/2059 -f 1507/2060 1506/2059 1508/2061 -f 1509/2062 1507/2060 1508/2061 -f 1510/2063 1509/2062 1508/2061 -f 1508/2061 1506/2059 1511/2064 -f 1508/2061 1511/2064 1512/2065 -f 1508/2066 1512/2067 1513/1291 -f 1508/2061 1513/2068 1510/2063 -f 1510/2069 932/1275 1514/2070 -f 1514/2070 932/1275 930/1272 -f 930/1271 1515/2071 1514/2072 -f 1515/2071 1509/2062 1514/2072 -f 1509/2062 1515/2071 1516/2073 -f 1516/2073 1505/2058 1509/2062 -f 1509/2062 1505/2058 1507/2060 -f 1516/2073 928/1269 1505/2058 -f 1516/2073 1515/2071 930/1271 -f 1518/2074 934/1277 1517/2075 -f 1517/2075 1513/1291 1518/2074 -f 947/1290 1518/2074 1513/1291 -f 1518/2074 1519/2076 934/1277 -f 933/1276 934/1277 1519/2076 -f 933/2077 1519/2078 1520/2079 -f 1520/2079 1521/2080 933/2077 -f 933/2077 1521/2080 1522/2081 -f 1523/2082 1522/2081 1521/2080 -f 1523/2083 1524/2084 906/1245 -f 1524/2084 1525/2085 935/1242 -f 1525/2085 1526/2086 936/2087 -f 1527/2088 1526/2086 1528/2089 -f 1529/2090 939/1280 1527/2088 -f 1530/2091 939/1280 1529/2090 -f 1531/2092 1530/2093 1529/2094 -f 1532/2095 1531/2092 1533/2096 -f 1532/2097 1533/2096 1534/2098 -f 1534/2099 1535/2100 1532/2101 -f 1536/2102 1532/2101 1535/2100 -f 1536/2103 1535/2104 1537/2105 -f 1536/2106 1537/2105 1538/2107 -f 1536/2106 1538/2107 1539/2108 -f 1540/2109 1536/2102 1539/2110 -f 1539/2110 1541/2111 1540/2109 -f 1541/2112 1542/2113 1540/2114 -f 1540/2114 1542/2113 1531/2092 -f 1530/2093 1542/2113 1543/2115 -f 1530/2093 1543/2115 942/2116 -f 942/2116 1543/2115 1544/2117 -f 942/2116 1544/2117 1545/2118 -f 1545/2118 1544/2117 1546/2119 -f 1546/2120 943/1285 1545/2121 -f 1545/2121 943/1285 941/1284 -f 1547/2122 1548/2123 1549/2124 -f 1549/2124 947/2125 1547/2122 -f 1518/2074 947/1290 1549/2126 -f 1549/2124 1548/2123 1519/2127 -f 1550/2128 1520/2079 1548/2123 -f 1550/2129 1548/2123 1551/2130 -f 1550/2131 1551/2132 1552/2133 -f 1552/2133 1553/2134 1550/2131 -f 1550/2131 1553/2134 1554/2135 -f 1554/2136 1520/2079 1550/2128 -f 1520/2079 1554/2136 1521/2080 -f 1555/2137 1521/2080 1554/2136 -f 1554/2135 1556/2138 1555/2139 -f 1557/2140 1555/2139 1556/2138 -f 1557/2141 1556/2138 1558/2142 -f 1559/2143 1557/2141 1558/2142 -f 1560/2144 1559/2145 1558/2146 -f 1558/2146 1561/2147 1560/2144 -f 1561/2148 1562/2149 1560/2144 -f 1560/2144 1562/2149 1563/2150 -f 1560/2144 1563/2150 1564/2151 -f 1564/2151 1563/2150 1565/2152 -f 1564/2153 1565/2152 1566/2154 -f 1564/2155 1566/2156 1567/2157 -f 1564/2155 1567/2157 1559/2145 -f 1567/2158 1568/2159 1559/2160 -f 1557/2140 1568/2159 1569/2161 -f 1569/2161 1568/2159 1570/2162 -f 1570/2163 1524/2084 1569/2164 -f 1570/2162 1568/2159 1571/2165 -f 1570/2162 1571/2165 1572/2166 -f 1572/2167 1525/2085 1570/2163 -f 1571/2165 1573/2168 1572/2166 -f 1572/2166 1573/2168 1528/2169 -f 1528/2169 1573/2168 1533/2096 -f 1534/2098 1533/2096 1573/2168 -f 1534/2098 1573/2168 1574/2170 -f 1574/2171 1575/2172 1534/2099 -f 1566/2156 1575/2172 1574/2171 -f 1566/2154 1576/2173 1575/2174 -f 1575/2174 1576/2173 1577/2175 -f 1578/2176 1575/2174 1577/2175 -f 1580/2177 1578/2176 1579/2178 -f 1581/2179 1580/2177 1641/2180 -f 1581/2179 1641/2180 1582/2181 -f 1583/2182 1581/2179 1582/2181 -f 1583/2183 1582/2184 1584/2185 -f 1583/2183 1584/2185 1585/2186 -f 1583/2183 1585/2186 1586/2187 -f 1583/2182 1586/2188 1587/2189 -f 1589/2190 1590/2191 1588/2192 -f 1588/2192 1590/2191 1699/2193 -f 1699/2193 1580/2177 1588/2192 -f 1591/2194 1705/2195 1580/2177 -f 1699/2193 1591/2194 1580/2177 -f 1594/2196 1595/2197 1593/2198 -f 1593/2198 1595/2197 1596/2199 -f 1593/2200 1578/2176 1580/2177 -f 1597/2201 1593/2198 1596/2199 -f 1596/2199 1598/2202 1597/2201 -f 1598/2202 1599/2203 1597/2201 -f 1600/2204 1597/2205 1599/2206 -f 1600/2204 1599/2206 1601/2207 -f 1600/2204 1601/2207 1728/2208 -f 1597/2205 1600/2204 1602/2209 -f 1602/2209 1603/2210 1597/2205 -f 1597/2205 1603/2210 1578/2176 -f 1603/2210 1604/2211 1578/2176 -f 1604/2211 1605/2212 1578/2176 -f 1605/2212 1606/2213 1578/2176 -f 1606/2213 1535/2104 1578/2176 -f 1537/2105 1606/2213 1605/2212 -f 1605/2212 1607/2214 1537/2105 -f 1537/2105 1607/2215 1608/2216 -f 1537/2105 1608/2216 1538/2107 -f 1538/2107 1610/2217 1609/2218 -f 1609/2218 1610/2217 1611/2219 -f 1609/2218 1611/2219 1612/2220 -f 1613/2221 1609/2218 1612/2220 -f 1614/2222 1613/2221 1612/2220 -f 1612/2220 1615/2223 1614/2222 -f 1614/2224 1615/2225 1616/2226 -f 1614/2224 1616/2226 1617/2227 -f 1617/2227 1618/2228 1614/2224 -f 1617/2227 1619/2229 1618/2228 -f 1618/2230 1619/2231 1620/2232 -f 1620/2232 1621/2233 1618/2230 -f 1613/2234 1618/2230 1621/2233 -f 1613/2234 1621/2233 1541/2111 -f 1621/2235 1543/2115 1541/2112 -f 1620/2236 1544/2117 1621/2237 -f 1620/2232 1619/2231 1622/2238 -f 1622/2239 1623/2240 1620/2236 -f 1620/2236 1623/2240 1544/2117 -f 1622/2239 1552/2133 1623/2240 -f 1623/2241 1552/2133 1551/2132 -f 1546/2119 1623/2241 1551/2132 -f 1551/2130 1547/2122 1546/2120 -f 1624/2242 1552/2133 1622/2239 -f 1622/2238 1625/2243 1624/2244 -f 1626/2245 1624/2244 1625/2243 -f 1627/2246 1626/2247 1625/2248 -f 1627/2246 1625/2248 1628/2249 -f 1617/2227 1629/2250 1628/2249 -f 1628/2249 1629/2250 1759/2251 -f 1628/2252 1759/2253 1630/2254 -f 1631/2255 1632/2256 1630/2257 -f 1630/2257 1632/2256 1626/2247 -f 1626/2258 1632/2259 1633/2260 -f 1626/2258 1633/2260 1561/2148 -f 1634/2261 1626/2245 1561/2147 -f 1633/2260 1635/2262 1562/2149 -f 1562/2149 1635/2262 1636/2263 -f 1562/2149 1636/2263 1563/2150 -f 1563/2150 1636/2263 1637/2264 -f 1563/2150 1637/2264 1565/2152 -f 1565/2152 1638/2265 1576/2173 -f 1576/2173 1638/2265 1639/2266 -f 1576/2173 1639/2266 1577/2175 -f 1577/2175 1639/2266 1640/2267 -f 1577/2175 1640/2267 1579/2178 -f 1643/2268 2223/2269 1642/2270 -f 1584/2185 1643/2268 3909/2271 -f 3909/2271 1644/2272 1584/2185 -f 1584/2185 1644/2272 1645/2273 -f 1585/2186 1584/2185 1645/2273 -f 1645/2273 1646/2274 1585/2186 -f 1646/2274 1647/2275 1585/2186 -f 1585/2186 1647/2275 1586/2187 -f 1647/2276 1648/2277 1586/2188 -f 1587/2189 1648/2277 1649/2278 -f 1587/2189 1649/2278 1588/2192 -f 1588/2192 1649/2278 876/1202 -f 1649/2278 1650/2279 876/1202 -f 856/1173 883/1213 1650/2279 -f 856/1173 1650/2279 1651/2280 -f 856/1173 1651/2280 1652/2281 -f 1653/2282 856/1173 1652/2281 -f 1653/2282 1652/2281 1654/2283 -f 1655/2284 866/1189 1653/2282 -f 1656/2285 857/2286 1653/2282 -f 857/2287 1656/2288 865/1185 -f 866/1189 1656/2285 1653/2282 -f 1657/2289 866/1189 1655/2284 -f 1654/2283 1657/2290 1655/2291 -f 1652/2281 1658/2292 1654/2283 -f 1654/2283 1658/2292 1659/2293 -f 1657/2289 1659/2293 1660/2294 -f 1657/2289 1660/2294 1661/2295 -f 1660/2294 1662/2296 1661/2295 -f 1661/2295 1662/2296 1663/2297 -f 1661/2295 1663/2297 867/1190 -f 867/1191 1663/2298 1664/2299 -f 1663/2298 1665/2300 1664/2299 -f 1664/2299 1665/2300 870/1194 -f 868/1192 1664/2299 870/1194 -f 1669/2301 1668/2302 870/1194 -f 1671/2303 1670/2304 1669/2301 -f 1672/2305 1671/2303 1673/2306 -f 1674/2307 1673/2306 1675/2308 -f 1675/2308 1676/2309 1674/2307 -f 1674/2307 1676/2309 1677/2310 -f 1674/2307 1677/2310 1678/2311 -f 1678/2311 1679/2312 1674/2307 -f 1674/2307 1679/2312 1680/2313 -f 1680/2313 1679/2312 1681/2314 -f 1681/2314 1682/2315 1680/2313 -f 1680/2313 1682/2315 1672/2316 -f 1682/2317 1683/2318 1672/2305 -f 1672/2305 1683/2318 1670/2304 -f 1683/2318 1668/2302 1670/2304 -f 1684/2319 1668/2302 1683/2318 -f 1684/2319 871/1195 1668/2302 -f 1685/2320 871/1195 1684/2319 -f 1686/2321 1685/2320 1684/2319 -f 1686/2321 1684/2319 1682/2317 -f 1687/2322 1685/2320 1686/2321 -f 1688/2323 1687/2324 1686/2325 -f 1688/2323 1686/2325 1681/2314 -f 1681/2314 1689/2326 1688/2323 -f 1689/2326 1690/2327 1688/2323 -f 1688/2323 1690/2327 1691/2328 -f 1690/2327 1692/2329 1691/2328 -f 1691/2328 1692/2329 1693/2330 -f 1693/2330 1694/2331 1691/2328 -f 1691/2328 1694/2331 1687/2324 -f 1694/2332 1695/2333 1687/2322 -f 1694/2332 1696/2334 1695/2333 -f 1696/2334 1697/2335 1695/2333 -f 1695/2333 1697/2335 871/1195 -f 1695/2333 871/1195 1685/2320 -f 873/1198 881/1208 1697/2335 -f 2644/2336 1698/2337 873/1198 -f 2641/2338 1590/2339 1698/2337 -f 1700/2340 1702/2341 1701/2342 -f 1701/2342 1702/2341 1703/2343 -f 1704/2344 1701/2342 1703/2343 -f 1705/2195 1704/2344 1594/2345 -f 1594/2345 1593/2200 1580/2177 -f 1705/2195 1594/2345 1580/2177 -f 1703/2343 1594/2345 1704/2344 -f 1703/2343 1706/2346 1594/2345 -f 1707/2347 1708/2348 1706/2346 -f 1708/2348 1709/2349 1706/2346 -f 1709/2349 1710/2350 1711/2351 -f 1711/2351 1595/2352 1709/2349 -f 1711/2353 1596/2199 1595/2197 -f 1712/2354 1596/2199 1711/2353 -f 1711/2353 1713/2355 1712/2354 -f 1712/2354 1713/2355 1714/2356 -f 1715/2357 1712/2354 1714/2356 -f 1714/2356 1716/2358 1715/2357 -f 1717/2359 1715/2357 1716/2358 -f 1717/2359 1716/2358 1718/2360 -f 1719/2361 1717/2362 1718/2363 -f 1719/2361 1718/2363 1720/2364 -f 1722/2365 1601/2207 1721/2366 -f 1723/2367 1722/2365 1721/2366 -f 1723/2367 1724/2368 1725/2369 -f 1725/2369 1726/2370 1723/2367 -f 1726/2370 1727/2371 1728/2208 -f 1729/2372 1728/2208 1727/2371 -f 1730/2373 1729/2372 1727/2371 -f 1730/2373 1727/2371 1731/2374 -f 1729/2372 1730/2373 1600/2204 -f 1731/2374 1732/2375 1602/2209 -f 1602/2209 1732/2375 1733/2376 -f 1602/2377 1733/2378 1734/2379 -f 1602/2377 1734/2379 1603/2380 -f 1735/2381 1734/2379 1733/2378 -f 1735/2382 1733/2376 1736/2383 -f 1737/2384 1735/2382 1736/2383 -f 1739/2385 1738/2386 1737/2384 -f 1740/2387 1739/2385 1737/2384 -f 1740/2387 1737/2384 1741/2388 -f 1741/2388 1742/2389 1740/2387 -f 1740/2387 1742/2389 1743/2390 -f 1740/2387 1743/2390 1739/2385 -f 1745/2391 1739/2385 1744/2392 -f 1745/2391 1744/2392 1746/2393 -f 1747/2394 1748/2395 1746/2393 -f 1746/2393 1748/2395 1745/2391 -f 2720/2396 1750/2397 1749/2398 -f 1749/2398 1750/2397 1748/2399 -f 1748/2399 1750/2397 1751/2400 -f 1748/2395 1751/2401 1738/2386 -f 1738/2386 1751/2401 1737/2384 -f 1750/2397 1752/2402 1751/2400 -f 1751/2400 1752/2402 1735/2381 -f 1752/2402 1603/2380 1734/2379 -f 1753/2403 1603/2380 1752/2402 -f 1753/2403 1752/2402 1750/2397 -f 1750/2397 1754/2404 1753/2403 -f 1608/2405 1753/2403 1754/2404 -f 1608/2405 1754/2404 1610/2406 -f 1610/2406 1754/2404 1755/2407 -f 1611/2408 1755/2407 1756/2409 -f 1611/2408 1756/2409 1615/2410 -f 1615/2410 1756/2409 1757/2411 -f 1616/2412 1757/2411 1758/2413 -f 1616/2412 1758/2413 1629/2414 -f 1758/2413 1759/2251 1629/2414 -f 1759/2251 1758/2413 1631/2255 -f 1631/2255 1758/2413 1760/2415 -f 1631/2255 1760/2415 1761/2416 -f 1631/2255 1761/2416 1763/2417 -f 1631/2255 1763/2417 2216/2418 -f 1763/2417 1762/2419 2216/2418 -f 1765/2420 1763/2417 1764/2421 -f 1767/2422 1765/2423 1766/2424 -f 1767/2422 1768/2425 1762/2426 -f 1767/2422 1762/2426 1763/2427 -f 1769/2428 1762/2426 1768/2425 -f 1770/2429 1769/2428 1768/2425 -f 1771/2430 1770/2429 2766/2431 -f 1772/2432 1773/2433 1771/2430 -f 1772/2432 1774/2434 1773/2433 -f 1775/2435 1774/2434 1776/2436 -f 1777/2437 1775/2438 1776/2439 -f 1777/2437 1776/2439 1778/2440 -f 1778/2440 1502/2441 1777/2437 -f 1778/2440 1779/2442 1502/2441 -f 1780/2443 1779/2442 1778/2440 -f 1779/2442 1780/2443 1781/2444 -f 1779/2442 1781/2444 1782/2445 -f 1779/2442 1782/2445 1783/2446 -f 1779/2442 1783/2446 1784/2447 -f 1503/2056 1779/2442 1785/2448 -f 1785/2448 1786/2449 950/2450 -f 950/2450 1787/2451 1785/2448 -f 1785/2452 1787/2453 1504/2454 -f 1788/2455 1511/2456 1787/2453 -f 950/1295 1788/2455 1787/2453 -f 950/1295 949/1293 1788/2455 -f 1788/2455 949/1293 1789/2457 -f 1789/2457 1512/2067 1788/2455 -f 1513/1291 1512/2067 1789/2457 -f 1790/1292 1513/1291 1789/2457 -f 1790/1292 949/1293 948/1040 -f 1789/2457 949/1293 1790/1292 -f 1791/2458 1786/2449 1785/2448 -f 952/2459 951/1294 1793/2460 -f 952/2459 1793/2460 751/1028 -f 1802/2461 980/1338 2796/2462 -f 1795/2463 2797/2464 1794/2465 -f 1795/2466 1794/2467 1796/2468 -f 1796/2468 1797/2469 1795/2466 -f 1795/2463 1797/2469 1798/2470 -f 1795/2463 1798/2470 1799/2471 -f 1799/2471 1798/2470 1800/2472 -f 1801/2473 1799/2471 1800/2472 -f 1803/2474 1804/2475 1797/2469 -f 1797/2476 1804/2477 2809/2478 -f 1805/2479 1797/2476 2809/2478 -f 1806/2480 1807/2481 1800/2482 -f 1807/2481 1801/2483 1800/2482 -f 1807/2481 1808/2484 1801/2483 -f 1801/2473 1808/2485 1802/2461 -f 1808/2485 1809/2486 1802/2461 -f 1802/2461 1809/2486 327/417 -f 1810/1337 325/416 304/1335 -f 308/395 304/1335 325/416 -f 325/416 1810/1337 1811/2487 -f 325/416 1811/2487 422/561 -f 321/412 422/561 1811/2487 -f 323/413 1811/2487 1810/1337 -f 323/413 1810/1337 327/417 -f 1810/1337 980/1338 1802/2461 -f 1802/2461 327/417 1810/1337 -f 1813/2488 329/419 1812/2489 -f 1813/2490 1812/2491 1814/2492 -f 1814/2492 1815/2493 1813/2490 -f 1813/2488 1815/2494 1816/2495 -f 1813/2488 1816/2495 1817/2496 -f 1813/2488 330/420 329/419 -f 1813/2488 1818/2497 330/420 -f 330/420 1818/2497 1819/2498 -f 1819/2498 1818/2497 1820/2499 -f 1819/2498 1820/2499 1821/2500 -f 1822/2501 1819/2498 1821/2500 -f 1822/2501 1823/2502 1824/2503 -f 1824/2503 1823/2502 332/422 -f 1825/2504 332/424 1823/2505 -f 1823/2505 1826/2506 1825/2504 -f 1827/2507 1825/2508 1826/2509 -f 1828/2510 1827/2511 1829/2512 -f 1828/2510 1829/2512 1830/2513 -f 1831/2514 1832/2515 3105/2516 -f 1830/2517 1832/2515 1833/2518 -f 1833/2519 1834/2520 1830/2513 -f 1833/2519 1835/2521 1834/2520 -f 1834/2520 1835/2521 1836/2522 -f 1837/2523 1834/2524 1836/2525 -f 1839/2526 1840/2527 2449/2528 -f 2449/2528 1838/2529 1839/2526 -f 2449/2528 1841/2530 1838/2529 -f 1841/2530 1842/2531 1838/2529 -f 1842/2531 1843/2532 1838/2529 -f 1844/2533 1845/2534 1843/2532 -f 1843/2532 1845/2534 1837/2523 -f 1845/2534 1846/2535 1834/2524 -f 1834/2524 1846/2535 1828/2536 -f 1848/2537 1847/2538 1828/2536 -f 339/2539 1847/2538 1848/2537 -f 1848/2537 1849/2540 339/2539 -f 340/435 1849/2540 1850/2541 -f 340/435 1850/2541 1851/2542 -f 1851/2542 341/436 340/435 -f 1852/2543 344/2544 1851/2542 -f 1852/2543 1853/2545 344/2546 -f 1854/2547 1853/2545 1852/2543 -f 1854/2548 1852/2549 1850/2550 -f 1850/2551 1855/2552 1854/2553 -f 1854/2547 1855/2554 1856/2555 -f 1854/2547 1856/2555 1857/2556 -f 1857/2556 1853/2545 1854/2547 -f 1857/2556 1858/2557 1853/2545 -f 1853/2558 1858/2559 1859/2560 -f 1853/2558 1859/2560 1860/2561 -f 1853/2558 1860/2561 1861/2562 -f 1853/2558 1861/2562 345/442 -f 1861/2563 347/446 345/445 -f 1860/2561 348/2564 1861/2562 -f 1860/2561 1862/2565 348/2564 -f 348/2564 1862/2565 1863/2566 -f 348/2564 1863/2566 1864/2567 -f 1864/2567 1863/2566 1865/2568 -f 1864/2567 1865/2568 1866/2569 -f 1867/2570 1864/2567 1866/2569 -f 1867/2571 1866/2572 1868/2573 -f 1867/2571 1868/2573 1869/2574 -f 1867/2571 1869/2574 349/448 -f 352/451 350/449 1869/2574 -f 1869/2574 1870/2575 352/2576 -f 1868/2573 1870/2575 1869/2574 -f 1870/2575 1868/2573 1871/2577 -f 1872/2578 1870/2575 1871/2577 -f 1872/2578 1871/2577 1873/2579 -f 1872/2578 1873/2579 1874/2580 -f 1875/2581 1872/2578 1874/2580 -f 1874/2580 1876/2582 1875/2581 -f 1875/2581 1876/2582 1877/2583 -f 1875/2581 1877/2583 354/2584 -f 354/2584 1870/2575 1875/2581 -f 354/2584 1877/2583 355/454 -f 355/2585 1877/2586 356/457 -f 1877/2586 1876/2587 356/457 -f 1876/2587 3872/2588 356/457 -f 356/457 3872/2588 358/458 -f 358/458 3872/2588 1878/2589 -f 358/458 1878/2589 1879/2590 -f 359/459 1879/2590 1880/2591 -f 1880/2591 1881/2592 359/459 -f 1880/2591 1882/2593 1881/2592 -f 1882/2593 1883/2594 1881/2595 -f 1881/2595 1883/2594 364/466 -f 1883/2594 1884/468 364/466 -f 1883/2594 366/470 1884/468 -f 1883/2594 368/472 366/470 -f 1882/2593 368/472 1883/2594 -f 1882/2593 1885/2596 368/472 -f 1886/2597 1885/2596 1887/2598 -f 1888/2599 1886/2597 1887/2598 -f 1888/2599 1887/2598 3826/2600 -f 1888/2599 165/202 60/69 -f 60/69 1886/2597 1888/2599 -f 1888/2599 1889/2601 165/202 -f 167/213 166/203 1889/2601 -f 78/95 1891/92 2904/2602 -f 78/95 2904/2602 2448/216 -f 2477/220 2478/2603 1892/2604 -f 1894/2605 1895/2606 1896/2607 -f 1892/2604 1894/2605 1896/2607 -f 1892/2604 1896/2607 172/218 -f 1896/2607 1897/2608 172/218 -f 1897/2608 1898/2609 173/221 -f 173/221 1898/2609 1899/2610 -f 173/221 1899/2610 174/222 -f 1901/228 1900/2611 1905/2612 -f 176/224 175/226 1901/228 -f 1902/2613 177/229 1901/228 -f 1902/2613 1903/2614 178/2615 -f 1903/2614 1904/2616 178/2615 -f 1902/2613 1905/2612 1903/2614 -f 1903/2614 1905/2612 2495/2617 -f 1903/2614 2495/2617 1906/2618 -f 1903/2619 1906/2620 1907/2621 -f 1904/2622 1903/2619 1907/2621 -f 1907/2621 180/234 1904/2622 -f 1904/2622 180/234 179/2623 -f 1908/2624 183/235 182/2625 -f 1910/2626 100/237 1909/236 -f 1910/2626 1909/236 1911/2627 -f 1912/240 100/239 1910/2628 -f 186/244 1913/243 1914/2629 -f 1926/2630 1915/2631 1914/2629 -f 1916/2632 2512/2633 1917/2634 -f 1917/2634 2512/2633 3796/2635 -f 1917/2634 3796/2635 1918/2636 -f 1918/2636 1919/2637 1917/2634 -f 1917/2634 1919/2637 1920/2638 -f 1917/2634 1920/2638 1916/2632 -f 1921/2639 1926/2630 1920/2638 -f 1921/2639 1923/2640 1922/2641 -f 1924/2642 1922/2641 1923/2640 -f 1924/2642 1925/2643 1922/2641 -f 1922/2641 1927/2644 1926/2630 -f 1928/2645 1929/2646 1927/2644 -f 1915/2631 1927/2644 1929/2646 -f 1915/2631 186/244 1914/2629 -f 1915/2631 187/246 186/244 -f 1930/2647 187/246 1915/2631 -f 188/247 1932/2648 1933/2649 -f 1933/2649 1934/2650 1935/2651 -f 1933/2649 1935/2651 185/245 -f 1935/2651 1934/2652 1936/2653 -f 1936/2653 189/248 1935/2651 -f 3803/2654 1937/2655 189/248 -f 102/242 189/248 1937/2655 -f 1938/2656 1937/2655 2522/2657 -f 2522/2657 1939/2658 1938/2656 -f 1939/2658 1940/2659 195/258 -f 1940/2659 1941/2660 195/258 -f 195/2661 1941/2662 196/259 -f 1941/2662 1942/2663 196/259 -f 196/259 1942/2663 198/260 -f 1945/2664 1943/2665 1944/2666 -f 1945/2664 1944/2666 1946/2667 -f 1947/2668 1945/2664 1948/264 -f 201/266 1949/2669 2530/2670 -f 1950/2671 201/266 2530/2670 -f 2530/2670 1951/2672 1950/2671 -f 1952/2673 1950/2671 1951/2672 -f 1952/2673 1951/2672 1953/2674 -f 1954/2675 1952/2676 1953/2677 -f 1954/2675 1953/2677 1955/2678 -f 1957/2679 1958/2680 1956/2681 -f 1956/2681 1958/2682 1952/2676 -f 1957/2679 1959/2683 1958/2680 -f 1959/2684 204/269 1958/2685 -f 1958/2685 204/269 1950/2671 -f 1959/2684 205/270 204/269 -f 221/285 205/270 1959/2684 -f 223/289 1959/2683 1957/2679 -f 234/300 1957/2679 1956/2681 -f 236/304 1956/2681 1954/2675 -f 238/306 1954/2675 1955/2678 -f 240/308 1955/2678 1960/2686 -f 1955/2678 1961/2687 1960/2686 -f 1960/2686 1961/2687 1962/2688 -f 1960/2686 1962/2688 1963/2689 -f 240/308 1960/2686 1963/2689 -f 1965/2690 1964/2691 1963/2689 -f 1966/2692 1967/2693 1965/2690 -f 1965/2690 1967/2693 241/309 -f 241/309 1967/2693 1968/2694 -f 1968/2694 242/2695 241/309 -f 1968/2694 1969/2696 242/2695 -f 1970/2697 1969/2696 1968/2694 -f 1971/2698 1970/2697 1968/2694 -f 1968/2694 1967/2693 1971/2698 -f 1971/2698 1967/2693 1972/2699 -f 1971/2698 1972/2699 1973/2700 -f 1973/2700 1974/2701 1971/2698 -f 1975/2702 1974/2701 1973/2700 -f 1973/2700 1976/2703 1975/2702 -f 1976/2703 1977/2704 1975/2702 -f 1977/2705 1978/2706 1975/2707 -f 1979/2708 1975/2707 1978/2706 -f 1978/2706 1980/2709 1979/2708 -f 1980/2709 264/342 1981/2710 -f 1980/2709 1981/2710 1982/2711 -f 1982/2711 1981/2710 1983/2712 -f 1982/2711 1983/2712 1970/2713 -f 1974/2714 1982/2711 1970/2713 -f 1979/2708 1982/2711 1974/2714 -f 1984/2715 1983/2712 1981/2710 -f 264/342 1984/2715 1981/2710 -f 246/316 264/342 1985/2716 -f 264/342 1986/2717 1985/2716 -f 1985/2716 1986/2717 248/319 -f 264/342 1987/2718 1986/2717 -f 1986/2717 1987/2718 252/325 -f 1987/2718 264/342 1988/2719 -f 1987/2718 1988/2719 254/329 -f 1988/2719 260/338 256/332 -f 264/342 245/315 1984/2715 -f 1984/2715 1969/2720 1983/2712 -f 243/314 1969/2720 1984/2715 -f 264/342 1980/2709 265/343 -f 1979/2708 1980/2709 1982/2711 -f 265/343 1980/2709 1978/2706 -f 1978/2706 1989/2721 265/343 -f 1978/2706 1977/2705 1989/2721 -f 1977/2705 1990/2722 1989/2721 -f 1989/2721 1990/2722 266/344 -f 1977/2723 1991/2724 1990/2725 -f 1991/2724 1992/2726 1990/2725 -f 1990/2725 1992/2726 268/348 -f 1991/2724 1993/2727 1992/2726 -f 1993/2727 1994/2728 1992/2726 -f 1992/2726 1994/2728 270/349 -f 1994/2728 1995/2729 270/349 -f 1994/2728 1996/2730 1995/2729 -f 1995/2729 1996/2730 275/357 -f 1995/2729 275/357 272/353 -f 272/353 275/357 274/356 -f 1997/2731 1998/2732 1996/2730 -f 1996/2730 1998/2732 280/2733 -f 1996/2730 280/2733 275/357 -f 1997/2731 1999/2734 1998/2732 -f 1999/2735 284/368 1998/2736 -f 1998/2736 284/368 281/365 -f 1999/2735 2000/2737 284/368 -f 3889/2738 284/368 2000/2737 -f 2000/2737 2001/2739 3889/2738 -f 3889/2738 2001/2739 2002/2740 -f 1231/1668 2003/2741 2004/2742 -f 1231/1668 2005/2743 1228/1664 -f 2008/2744 2007/2745 2006/2746 -f 2008/2744 2006/2746 2009/2747 -f 2010/2748 2008/2744 2009/2747 -f 2009/2747 2011/2749 2010/2748 -f 2011/2749 2016/2750 2010/2748 -f 2010/2748 2016/2750 2012/2751 -f 2013/2752 2010/2748 2012/2751 -f 2014/2753 2013/2752 2012/2751 -f 2015/2754 2012/2751 2016/2750 -f 2017/2755 2015/2754 2016/2750 -f 2017/2755 2016/2750 2018/2756 -f 2019/2757 2020/2758 2021/2759 -f 2020/2758 2022/2760 2021/2759 -f 2023/2761 2021/2762 2022/2763 -f 2142/2764 2021/2762 2023/2761 -f 2024/2765 2021/2759 2025/2766 -f 771/1062 2026/2767 2024/2768 -f 2026/2767 2027/2769 2024/2768 -f 2018/2756 2024/2765 2027/2770 -f 2028/2771 2017/2755 2027/2772 -f 2028/2771 2026/2773 1260/1702 -f 1260/1702 2029/2774 2028/2771 -f 2028/2771 2029/2774 2030/2775 -f 2028/2771 2030/2775 2017/2755 -f 2030/2775 2031/2776 2015/2754 -f 2015/2754 2031/2776 2014/2753 -f 2015/2754 2014/2753 2012/2751 -f 2033/2777 2029/2774 2032/2778 -f 2033/2777 2032/2778 2034/2779 -f 2035/2780 2034/2779 2036/2781 -f 2038/2782 2036/2781 2037/2783 -f 2043/2784 2037/2783 2039/2785 -f 2041/2786 2039/2785 2040/2787 -f 2041/2786 2040/2787 1247/1687 -f 1243/1681 2041/2786 1247/1687 -f 1243/1681 1242/1680 2041/2786 -f 2041/2786 2042/2788 2043/2784 -f 2039/2785 2041/2786 2043/2784 -f 2033/2777 2035/2780 2038/2782 -f 2038/2782 2044/2789 2033/2777 -f 2044/2789 2031/2776 2033/2777 -f 2033/2777 2031/2776 2029/2774 -f 2044/2789 2045/2790 2031/2776 -f 2045/2790 2014/2753 2031/2776 -f 2013/2752 2014/2753 2045/2790 -f 2013/2752 2045/2790 2046/2791 -f 2008/2744 2013/2752 2046/2791 -f 2047/2792 2008/2744 2046/2791 -f 2047/2792 2046/2791 2048/2793 -f 2049/2794 2047/2792 2048/2793 -f 2048/2795 2050/2796 2049/2797 -f 2051/2798 2049/2797 2050/2796 -f 2050/2796 1242/1680 2051/2798 -f 1240/1679 2051/2798 1242/1680 -f 2052/2799 2051/2798 1240/1679 -f 1240/1679 1238/1677 2052/2799 -f 2052/2799 1238/1677 2053/2800 -f 2053/2800 2049/2797 2052/2799 -f 2053/2801 1236/1673 2007/2802 -f 1236/1673 2054/2803 2007/2802 -f 2007/2802 2054/2803 2006/2804 -f 2054/2803 2005/2743 2006/2804 -f 2054/2803 1233/1670 2005/2743 -f 1236/1673 1234/1671 2054/2803 -f 2007/2745 2047/2805 2053/2800 -f 1238/1677 1236/1676 2053/2800 -f 2052/2799 2049/2797 2051/2798 -f 2048/2795 2042/2788 2050/2796 -f 2048/2795 2055/2806 2042/2788 -f 2042/2788 2055/2806 2038/2782 -f 2046/2791 2045/2790 2055/2806 -f 2053/2800 2047/2805 2049/2807 -f 2046/2791 2055/2806 2048/2793 -f 2055/2806 2045/2790 2044/2789 -f 2038/2782 2055/2806 2044/2789 -f 2034/2779 2035/2780 2033/2777 -f 2043/2784 2042/2788 2038/2782 -f 2050/2796 2042/2788 2041/2786 -f 2041/2786 1242/1680 2050/2796 -f 2056/2808 1247/1687 2040/2787 -f 2056/2808 1249/1690 1248/1688 -f 1248/1688 1247/1687 2056/2808 -f 2056/2808 2040/2787 2067/2809 -f 2056/2808 2067/2809 1250/1691 -f 2057/2810 1251/1692 1250/1691 -f 2059/2811 2057/2810 2058/2812 -f 2060/2813 2059/2811 2058/2812 -f 2060/2813 2058/2812 2061/2814 -f 2061/2814 2036/2781 2060/2813 -f 2060/2813 2036/2781 2062/2815 -f 2060/2813 2062/2815 2063/2816 -f 2063/2817 2062/2818 1257/1699 -f 2063/2817 1257/1699 2064/2819 -f 2064/2819 1255/1695 2063/2817 -f 2063/2817 1255/1695 2060/2813 -f 2065/2820 1257/2821 2062/2822 -f 2032/2778 1260/1702 2065/2820 -f 2065/2820 1260/1702 1259/1700 -f 2066/1706 1258/1701 1260/1702 -f 1261/1707 2066/1706 1260/1702 -f 1259/1700 1257/2821 2065/2820 -f 2065/2820 2062/2822 2036/2781 -f 2061/2814 2037/2783 2036/2781 -f 2061/2814 2039/2785 2037/2783 -f 2061/2814 2067/2809 2039/2785 -f 2039/2785 2067/2809 2040/2787 -f 2061/2814 2058/2812 2067/2809 -f 1255/1695 2059/2811 2060/2813 -f 1255/1695 1254/1694 2059/2811 -f 1254/1694 1252/1693 1251/1692 -f 1254/1694 1251/1692 2059/2811 -f 2059/2811 1251/1692 2057/2810 -f 2058/2812 2057/2810 2067/2809 -f 1250/1691 2067/2809 2057/2810 -f 2037/2783 2043/2784 2038/2782 -f 2036/2781 2038/2782 2035/2780 -f 2065/2820 2036/2781 2034/2779 -f 2065/2820 2034/2779 2032/2778 -f 2029/2774 1260/1702 2032/2778 -f 2030/2775 2029/2774 2031/2776 -f 2026/2773 2028/2771 2068/2823 -f 2068/2823 2028/2771 2027/2772 -f 2026/2773 1262/1709 1260/1702 -f 2018/2756 2027/2770 2017/2755 -f 2019/2757 2021/2759 2018/2756 -f 2018/2756 2021/2759 2024/2765 -f 2026/2767 2068/2824 2027/2769 -f 2024/2765 2025/2766 2069/2825 -f 2024/2768 2069/2826 1265/1711 -f 2069/2826 2070/2827 1265/1711 -f 2071/2828 1265/2829 2070/2827 -f 2071/2828 2070/2827 2072/2830 -f 2071/2828 2072/2830 1291/1749 -f 2074/2831 2071/2828 2073/2832 -f 1288/2833 2074/2831 2073/2832 -f 1288/1745 2073/2834 1290/1747 -f 1290/2835 2073/2832 1291/1749 -f 1291/1749 2073/2832 2071/2828 -f 2076/2836 2071/2828 2075/2837 -f 2075/2837 2077/2838 2076/2836 -f 1268/1715 2077/2838 2078/2839 -f 1266/1714 2076/2836 2077/2838 -f 2075/2837 2078/2840 2077/2838 -f 1282/2841 2078/2840 2075/2837 -f 2074/2831 1282/2841 2075/2837 -f 1287/1743 1282/1739 2074/2842 -f 2075/2837 2071/2828 2074/2831 -f 2079/2843 2070/2827 3930/2844 -f 2080/2845 2079/2843 3930/2844 -f 2080/2845 3930/2844 2081/2846 -f 2082/2847 2080/2845 2081/2846 -f 2082/2848 2081/2849 2083/2850 -f 2085/2851 2086/2852 2084/2853 -f 2087/2854 2084/2853 2086/2852 -f 2086/2852 2088/2855 2087/2854 -f 2083/2850 2087/2854 2082/2848 -f 2089/2856 2090/2857 2082/2847 -f 2080/2845 2091/2858 2079/2843 -f 2094/2859 2092/1757 2091/2858 -f 2094/2859 2091/2858 2550/2860 -f 2095/2861 2094/2859 2550/2860 -f 2097/2862 2095/2863 2096/2864 -f 2096/2864 2098/2865 2097/2862 -f 1300/1762 2099/1760 2100/2866 -f 2100/2866 2101/1766 1300/1762 -f 1309/2867 1308/1770 2102/2868 -f 2102/2868 2103/2869 1309/2867 -f 1319/1785 2103/2869 2102/2868 -f 1321/1788 1320/1786 1308/1770 -f 2101/1766 1321/1788 1301/1764 -f 1321/1788 2104/2870 1322/1787 -f 1322/1787 2104/2870 2105/2871 -f 2107/2872 2106/2873 1322/1787 -f 1322/1787 2105/2871 2107/2872 -f 2104/2870 2108/2874 2105/2871 -f 2105/2871 2109/2875 2107/2872 -f 2107/2876 2109/2877 2110/2878 -f 2107/2876 2110/2878 2106/2879 -f 2106/2873 2110/2880 2111/2881 -f 2106/2873 2111/2881 1323/1789 -f 2112/2882 2111/2883 2110/2878 -f 2112/2882 2110/2878 2113/2884 -f 2114/2885 2112/2882 2113/2884 -f 2114/2885 2113/2884 2574/2886 -f 2114/2885 2574/2886 2115/2887 -f 2114/2885 2115/2887 2116/2888 -f 2117/2889 2114/2885 2116/2888 -f 2118/2890 2117/2891 2119/2892 -f 2120/2893 2118/2890 2119/2892 -f 2121/2894 2120/2893 2119/2892 -f 2120/2893 2121/2894 2610/2895 -f 2123/2896 2124/2897 2120/2893 -f 2124/2898 1327/1795 2118/2899 -f 1327/1795 2125/2900 2118/2899 -f 2118/2899 2125/2900 2117/2901 -f 2125/2900 1326/2902 2114/2885 -f 2114/2885 1326/2902 2112/2882 -f 1328/1796 1327/1795 2124/2898 -f 2126/2903 1328/1796 2124/2898 -f 2127/1800 1328/1796 2126/2903 -f 697/1801 2127/1800 2126/2903 -f 2243/2904 700/957 698/956 -f 2129/1805 2128/2905 2130/2906 -f 2131/2907 2129/1805 2130/2906 -f 2130/2906 2022/2763 2131/2907 -f 2132/2908 2022/2760 2020/2758 -f 2020/2758 2085/2851 2084/2853 -f 2084/2853 2132/2908 2020/2758 -f 2083/2850 2132/2908 2084/2853 -f 2022/2763 2134/2909 2133/2910 -f 2133/2910 2134/2909 2135/2911 -f 2135/2911 2136/2912 2133/2910 -f 2133/2913 2136/2914 2137/2915 -f 2137/2915 2138/2916 2133/2913 -f 2133/2910 2138/2917 2022/2763 -f 2140/2918 2023/2761 2139/2919 -f 444/598 2140/2920 2139/2921 -f 444/598 2139/2921 503/678 -f 2142/2764 2141/2922 2143/2923 -f 2143/2923 2144/2924 2142/2764 -f 2145/2925 2142/2764 2144/2924 -f 2145/2925 2021/2762 2142/2764 -f 2025/2766 2145/2926 2146/2927 -f 2147/2928 2025/2929 2146/2930 -f 2148/2931 2147/2928 2146/2930 -f 2148/2932 2146/2933 2149/2934 -f 2147/2928 2148/2931 2359/2935 -f 2359/2935 2150/2936 2147/2928 -f 2151/2937 2147/2928 2150/2936 -f 2152/2938 2151/2939 2150/2940 -f 2156/2941 2150/2940 2153/2942 -f 2156/2941 2153/2942 2154/2943 -f 2156/2941 2154/2943 2155/2944 -f 2157/2945 2161/2946 2155/2944 -f 2161/2946 2156/2941 2155/2944 -f 2151/2937 2152/2947 2159/2948 -f 2159/2948 2131/2907 2151/2937 -f 2131/2907 2025/2929 2151/2937 -f 2131/2949 2069/2825 2025/2766 -f 2159/2948 2129/1805 2131/2907 -f 2159/2950 2160/2951 2129/2952 -f 2158/2953 2162/2954 2160/2951 -f 2158/2953 2161/2946 2162/2954 -f 2163/2955 2160/2951 2162/2954 -f 2157/2945 2164/2956 2163/2955 -f 2161/2946 2157/2945 2162/2954 -f 2163/2955 2162/2954 2157/2945 -f 2166/2957 2164/2956 2165/2958 -f 2166/2957 2165/2958 2167/2959 -f 2166/2957 2163/2955 2164/2956 -f 1334/2960 2129/2952 2168/2961 -f 2160/2951 2163/2955 2168/2961 -f 2168/2961 2170/2962 1334/2960 -f 1334/2960 2170/2962 2169/2963 -f 1334/1807 2169/2964 2171/2965 -f 1335/1821 1334/1807 2171/2965 -f 2171/2965 2304/2966 1335/1821 -f 2172/2967 1335/1821 2304/2966 -f 2173/2968 2172/2967 2304/2966 -f 2304/2966 2174/2969 2173/2968 -f 2174/2970 2175/2971 2173/2972 -f 2311/2973 2176/2974 2173/2968 -f 2176/2974 2172/2967 2173/2968 -f 2176/2975 2263/2976 2172/2977 -f 2177/2978 2172/2977 2263/2976 -f 2263/2976 2178/2979 2177/2978 -f 2179/2980 2177/2978 2178/2979 -f 2177/2978 2180/2981 2181/2982 -f 2177/2978 2181/2982 2182/2983 -f 2182/2983 2172/2977 2177/2978 -f 2172/2977 2182/2983 2183/2984 -f 2172/2977 2183/2984 1336/1809 -f 2185/2985 2184/2986 1337/1812 -f 1337/1812 2183/2987 2185/2985 -f 2185/2985 2183/2987 2186/2988 -f 2186/2988 2187/2989 2188/2990 -f 2185/2985 2186/2988 2188/2990 -f 2190/2991 1416/1924 2191/2992 -f 2190/2991 2191/2992 2192/2993 -f 2192/2994 1410/1915 2193/2995 -f 2193/2995 2194/2996 2192/2994 -f 2193/2995 2195/2997 2194/2996 -f 2195/2997 2196/2998 2194/2996 -f 2192/2993 2194/2999 2190/2991 -f 2194/2999 2196/3000 2189/3001 -f 2196/2998 2197/3002 2185/2985 -f 2185/2985 2197/3003 2198/3004 -f 2198/3004 2184/2986 2185/2985 -f 1339/1813 2184/2986 2198/3004 -f 1405/1909 1339/1813 2198/3004 -f 1405/1909 2198/3004 2199/3005 -f 1405/1909 2199/3005 1406/1910 -f 2199/3005 2200/3006 1408/1913 -f 2193/2995 1408/1913 2200/3006 -f 2195/2997 2193/2995 2200/3006 -f 2200/3006 2199/3005 2197/3007 -f 2197/3002 2195/2997 2200/3006 -f 2197/3007 2199/3005 2198/3004 -f 2193/2995 1410/1915 1408/1913 -f 2196/2998 2195/2997 2197/3002 -f 1410/1916 2192/2993 1412/1920 -f 1412/1920 2192/2993 2191/2992 -f 2190/2991 1444/1978 1416/1924 -f 2190/2991 1445/3008 1444/1978 -f 2194/2999 2189/3001 2190/2991 -f 2190/2991 2189/3001 1445/3008 -f 2189/3009 2187/2989 1445/3010 -f 2201/3011 1445/3010 2187/2989 -f 2204/3012 1459/3013 1458/3014 -f 2204/3012 1463/3015 1459/3013 -f 2205/3016 1463/3015 2204/3012 -f 2204/3012 3908/3017 2205/3016 -f 2206/3018 2205/3016 2207/3019 -f 1464/3020 2206/3018 1465/3021 -f 2208/3022 1465/3021 2206/3018 -f 2206/3018 2207/3019 2208/3022 -f 2208/3022 2207/3019 2209/3023 -f 2208/3022 2209/3023 2210/3024 -f 1487/3025 2208/3022 2210/3024 -f 1487/3025 2210/3024 1490/3026 -f 2210/3024 2209/3023 2211/3027 -f 2210/3024 2211/3027 2212/3028 -f 1491/3029 2210/3024 2212/3028 -f 2212/3028 2211/3027 2213/3030 -f 1493/3031 2212/3028 2213/3030 -f 1493/3031 2213/3030 1497/3032 -f 2213/3030 2211/3027 1773/2433 -f 2213/3030 1773/2433 1774/2434 -f 1498/3033 2213/3030 1774/2434 -f 2214/3034 1773/2433 2211/3027 -f 2211/3027 1635/3035 2214/3034 -f 1635/3035 2215/3036 2214/3034 -f 2214/3034 2215/3036 1769/2428 -f 1632/2259 1769/3037 2215/3038 -f 1632/2259 2215/3038 1633/2260 -f 1762/2419 1769/3039 1632/2256 -f 1632/2256 2216/2418 1762/2419 -f 1630/2257 1759/2251 1631/2255 -f 1632/2256 1631/2255 2216/2418 -f 2207/3019 2217/3040 2209/3023 -f 2207/3019 1637/3041 2217/3040 -f 1637/3041 1636/3042 2217/3040 -f 2218/3043 1637/3041 2207/3019 -f 2207/3019 2219/3044 2218/3043 -f 2219/3044 1638/3045 2218/3043 -f 2218/3043 1638/3045 1637/3041 -f 2219/3044 2205/3016 2220/3046 -f 2220/3046 2221/3047 2219/3044 -f 2219/3044 2221/3047 2222/3048 -f 2222/3048 1639/3049 2219/3044 -f 1645/3050 2225/3051 3910/3052 -f 1645/3050 3910/3052 1646/3053 -f 2226/3054 1648/2277 1647/2276 -f 2226/3054 1647/2276 2227/3055 -f 2228/3056 2229/3057 1649/2278 -f 1651/2280 1649/2278 2229/3057 -f 2229/3057 2230/3058 1651/2280 -f 2230/3058 2231/3059 1651/2280 -f 1651/2280 2231/3059 2232/3060 -f 2232/3060 2231/3059 2233/3061 -f 2234/3062 2232/3060 2233/3061 -f 2234/3062 2235/3063 2232/3060 -f 2236/3064 2235/3065 2178/2979 -f 2237/3066 2235/3065 2236/3064 -f 2236/3064 2238/3067 2237/3066 -f 2237/3066 2238/3067 2239/3068 -f 2237/3069 2239/3070 1658/2292 -f 1658/2292 2239/3070 1659/2293 -f 2240/3071 1659/2293 2239/3070 -f 2240/3072 2239/3068 1344/1826 -f 1348/1824 2240/3072 1344/1826 -f 1349/1833 2240/3072 1348/1824 -f 1349/3073 2241/3074 2240/3071 -f 2241/3074 1659/2293 2240/3071 -f 1344/1826 2239/3068 2238/3067 -f 1346/1829 1345/1828 2242/3075 -f 2243/3076 1346/1829 2242/3075 -f 2130/2906 2243/3076 2242/3075 -f 2022/2763 2130/2906 2134/2909 -f 2134/3077 2275/3078 2276/3079 -f 2276/3080 2244/3081 2134/2909 -f 2135/2911 2244/3081 2245/3082 -f 2247/679 2137/2915 2246/681 -f 2247/679 2138/2916 2137/2915 -f 503/678 2138/2916 2247/679 -f 2138/2916 503/678 2139/2921 -f 2247/679 2246/681 504/680 -f 506/682 2246/681 2137/2915 -f 2137/2915 2136/2914 506/682 -f 509/687 508/686 2277/3083 -f 509/3084 2248/3085 2249/3086 -f 509/3084 2249/3086 510/3087 -f 2249/3086 2248/3085 2250/3088 -f 2250/3088 2251/3089 2249/3086 -f 625/855 2249/3086 2251/3089 -f 2252/3090 625/855 2251/3089 -f 2252/3090 2253/3091 625/855 -f 2253/3091 2254/3092 625/855 -f 477/647 2255/3093 2256/3094 -f 477/647 2256/3094 2257/3095 -f 2257/3095 2258/3096 477/647 -f 2259/3097 2258/3096 2257/3095 -f 2259/3097 2257/3095 2260/3098 -f 2261/3099 2259/3097 2260/3098 -f 2262/3100 2261/3099 2176/3101 -f 2176/3101 2261/3099 2263/3102 -f 2265/3103 2264/3104 2263/3105 -f 2263/3102 2261/3099 2265/3106 -f 2261/3099 2266/3107 2265/3106 -f 2266/3107 2267/3108 2265/3106 -f 2267/3109 2268/3110 2264/3104 -f 2269/3111 2264/3104 2268/3110 -f 2270/3112 2269/3111 2268/3110 -f 2272/3113 2270/3114 2271/3115 -f 2269/3111 2272/3116 2263/3105 -f 2236/3064 2263/2976 2272/3117 -f 2272/3117 2238/3067 2236/3064 -f 2242/3118 2238/3067 2272/3117 -f 1342/1818 2238/3067 2242/3118 -f 2273/3119 2283/3120 2274/3121 -f 2283/3120 2278/3122 2274/3121 -f 2274/3121 2130/3123 2273/3119 -f 2130/3123 2242/3124 2273/3119 -f 2274/3125 2275/3078 2130/3126 -f 2130/3126 2275/3078 2134/3077 -f 2248/3085 2275/3078 2250/3088 -f 2244/3081 2276/3080 2277/3083 -f 2248/3085 2277/3127 2276/3079 -f 509/3084 2277/3127 2248/3085 -f 2251/3089 2250/3088 2278/3128 -f 2252/3090 2251/3089 2278/3128 -f 2278/3122 2283/3120 2252/3129 -f 2252/3090 2279/3130 2253/3091 -f 2253/3091 2279/3130 2280/3131 -f 2281/3132 2282/3133 2254/3092 -f 2255/3093 2254/3092 2282/3133 -f 2256/3094 2266/3107 2260/3098 -f 2260/3098 2257/3095 2256/3094 -f 2282/3133 2256/3094 2255/3093 -f 2282/3133 2266/3107 2256/3094 -f 2282/3133 2281/3132 2267/3108 -f 2267/3108 2281/3132 2268/3134 -f 2268/3134 2281/3132 2280/3131 -f 2280/3131 2281/3132 2254/3092 -f 2280/3131 2254/3092 2253/3091 -f 2283/3120 2273/3119 2271/3135 -f 2283/3120 2271/3135 2279/3136 -f 2280/3131 2279/3130 2271/3115 -f 2271/3115 2270/3114 2280/3131 -f 2252/3129 2283/3120 2279/3136 -f 2275/3078 2278/3128 2250/3088 -f 2275/3078 2248/3085 2276/3079 -f 2274/3125 2278/3128 2275/3078 -f 2272/3137 2273/3119 2242/3124 -f 2238/3067 1342/1818 1344/1826 -f 2271/3135 2273/3119 2272/3137 -f 2269/3111 2270/3112 2272/3116 -f 2268/3134 2280/3131 2270/3114 -f 2264/3104 2265/3103 2267/3109 -f 2282/3133 2267/3108 2266/3107 -f 2266/3107 2261/3099 2260/3098 -f 2264/3104 2269/3111 2263/3105 -f 2284/3138 2285/649 2258/3096 -f 2288/3139 2285/649 2286/3140 -f 2286/3140 2287/3141 2288/3139 -f 2289/3142 2307/3143 471/639 -f 2307/3143 2290/3144 471/639 -f 2290/3144 2294/3145 471/639 -f 2294/3145 2291/3146 471/639 -f 2291/3146 2292/3147 471/639 -f 2155/2944 471/639 2292/3147 -f 2164/2956 2157/2945 2165/2958 -f 2165/2958 2157/2945 2292/3147 -f 2293/3148 2165/2958 2292/3147 -f 2292/3147 2291/3146 2293/3148 -f 2295/3149 2296/3150 2297/3151 -f 2295/3149 2297/3151 2298/3152 -f 2295/3149 2298/3152 2291/3146 -f 2293/3148 2167/2959 2165/2958 -f 2299/3153 2170/2962 2167/2959 -f 2166/2957 2167/2959 2170/2962 -f 2170/2962 2163/2955 2166/2957 -f 2299/3153 2169/2963 2170/2962 -f 2299/3154 2300/3155 2169/2964 -f 2171/2965 2169/2964 2301/3156 -f 2301/3156 2296/3157 2171/2965 -f 2296/3150 2302/3158 2171/3159 -f 2302/3158 2303/3160 2171/3159 -f 2171/3159 2303/3160 2304/3161 -f 2304/2966 2305/3162 2174/2969 -f 2288/3139 2305/3163 2306/3164 -f 2288/3139 2306/3164 2307/3143 -f 2288/3139 2287/3141 2305/3163 -f 2307/3143 2306/3164 2308/3165 -f 2307/3143 2308/3165 2290/3144 -f 2309/3166 2302/3158 2295/3149 -f 2309/3166 2290/3144 2308/3165 -f 2290/3144 2309/3166 2294/3145 -f 2296/3150 2295/3149 2302/3158 -f 2298/3152 2297/3151 2310/3167 -f 2310/3168 2297/3169 2300/3155 -f 2300/3155 2299/3154 2310/3168 -f 2293/3148 2310/3167 2167/2959 -f 2167/2959 2310/3167 2299/3153 -f 2301/3156 2300/3155 2297/3169 -f 2297/3169 2296/3157 2301/3156 -f 2308/3165 2303/3160 2302/3158 -f 2306/3164 2305/3163 2303/3160 -f 2303/3160 2308/3165 2306/3164 -f 2308/3165 2302/3158 2309/3166 -f 2305/3163 2287/3141 2174/2970 -f 2287/3141 2286/3140 2175/2971 -f 2286/3140 2311/3170 2175/2971 -f 2173/2972 2175/2971 2311/3170 -f 2284/3138 2311/3170 2286/3140 -f 2304/3161 2303/3160 2305/3163 -f 2300/3155 2301/3156 2169/2964 -f 2298/3152 2310/3167 2293/3148 -f 2309/3166 2295/3149 2294/3145 -f 2295/3149 2291/3146 2294/3145 -f 2298/3152 2293/3148 2291/3146 -f 2154/2943 478/650 2155/2944 -f 471/639 2155/2944 478/650 -f 2154/2943 2312/3171 478/650 -f 478/650 2312/3171 2313/3172 -f 2316/3173 2314/3174 2315/3175 -f 2316/3173 2315/3175 2362/3176 -f 2317/3177 2316/3173 2362/3176 -f 2362/3176 2318/3178 2317/3177 -f 2318/3178 2319/3179 2317/3177 -f 2319/3180 2320/3181 2317/3182 -f 2321/3183 2317/3182 2320/3181 -f 2320/3181 2374/3184 2321/3183 -f 479/651 478/650 2316/3173 -f 2316/3173 2321/3185 479/651 -f 2316/3173 2317/3177 2321/3185 -f 2321/3185 480/652 479/651 -f 481/3186 480/3187 2322/3188 -f 2322/3188 2323/3189 481/3186 -f 2324/3190 482/654 481/653 -f 483/656 482/3191 2325/3192 -f 2325/3192 2326/3193 483/656 -f 2327/3194 2328/3195 2326/3193 -f 484/657 2326/3193 2328/3195 -f 2329/3196 486/659 484/657 -f 488/3197 486/659 2329/3196 -f 2329/3196 2330/3198 488/3197 -f 2331/3199 489/3200 487/3201 -f 458/3202 487/3201 489/3200 -f 489/662 2332/3203 490/663 -f 491/3204 2333/3205 492/3206 -f 2334/3207 493/667 492/665 -f 492/3206 2333/3205 2334/3208 -f 2333/3205 2335/3209 2334/3208 -f 2336/3210 2334/3208 2335/3209 -f 2335/3209 2337/3211 2336/3210 -f 2338/3212 2336/3213 2337/3214 -f 2338/3212 2340/3215 2336/3213 -f 2336/3210 2341/3216 2334/3208 -f 2341/3217 493/667 2334/3207 -f 2342/3218 493/3219 2341/3216 -f 493/667 2342/3220 494/666 -f 2342/3220 2343/3221 494/666 -f 494/666 2343/3221 439/590 -f 439/590 2343/3221 495/3222 -f 2344/3223 496/671 495/670 -f 2344/3223 495/670 2345/3224 -f 2346/3225 2347/3226 498/3227 -f 498/3227 497/3228 2346/3225 -f 498/3227 2347/3226 2348/3229 -f 2348/3230 2349/3231 498/594 -f 2349/3231 2348/3230 2350/3232 -f 2350/3232 2351/595 2349/3231 -f 499/3233 2351/3234 2352/3235 -f 2352/3235 2353/3236 499/3233 -f 499/3237 2401/3238 442/596 -f 2313/3172 502/673 2401/3238 -f 2312/3171 2354/3239 502/673 -f 2355/3240 500/674 2354/3239 -f 2355/3240 2354/3239 2356/3241 -f 2355/3240 2357/672 500/674 -f 2144/676 2149/2934 2146/2933 -f 2355/3240 2356/3241 2149/2934 -f 2148/2932 2149/2934 2356/3241 -f 2153/2942 2358/3242 2154/2943 -f 2153/2942 2359/3243 2358/3242 -f 2153/2942 2150/2940 2359/3243 -f 2358/3242 2356/3241 2354/3239 -f 2358/3242 2359/3243 2356/3241 -f 2356/3241 2359/3243 2148/2932 -f 2149/2934 2357/672 2355/3240 -f 2144/676 2357/672 2149/2934 -f 2358/3242 2354/3239 2312/3171 -f 2313/3172 2403/3244 478/650 -f 2403/3244 2314/3174 478/650 -f 2360/3245 2315/3246 2314/3247 -f 2314/3247 2405/3248 2360/3245 -f 2405/3248 2406/3249 2360/3245 -f 2360/3245 2406/3249 2361/3250 -f 2360/3245 2361/3250 2362/3251 -f 2362/3251 2315/3246 2360/3245 -f 2318/3178 2363/3252 2410/3253 -f 2318/3178 2364/3254 2319/3179 -f 2366/3255 2365/3256 2412/3257 -f 2372/3258 2366/3259 2412/3260 -f 2412/3260 2367/3261 2372/3258 -f 2368/3262 2372/3258 2367/3261 -f 2368/3263 2367/3264 2369/3265 -f 2369/3265 2370/3266 2368/3263 -f 2371/3267 2372/3258 2368/3262 -f 2373/3268 2366/3255 2372/3269 -f 2374/3184 2371/3270 2322/3188 -f 2321/3183 2374/3184 2322/3188 -f 2322/3188 480/3187 2321/3183 -f 2322/3188 2371/3270 2323/3189 -f 2324/3190 2375/3271 2376/3272 -f 2376/3272 482/654 2324/3190 -f 2325/3192 482/3191 2376/3273 -f 2376/3273 2377/3274 2325/3192 -f 2325/3192 2377/3274 2326/3193 -f 2326/3193 2377/3274 2327/3194 -f 2328/3275 2378/3276 2329/3277 -f 2378/3276 2380/3278 2379/3279 -f 2330/3198 2329/3196 2379/3280 -f 2379/3279 2329/3277 2378/3276 -f 2381/3281 2331/3199 488/3197 -f 2381/3281 2382/3282 2331/3199 -f 489/3200 2331/3199 2382/3282 -f 2337/3211 2335/3209 2383/3283 -f 2333/3205 2383/3283 2335/3209 -f 2383/3284 490/663 2332/3203 -f 2383/3284 2332/3203 2337/3214 -f 2384/3285 2337/3214 2332/3203 -f 2384/3285 2382/3286 2385/3287 -f 2385/3287 2338/3212 2384/3285 -f 2339/3288 2386/3289 2387/3290 -f 2339/3288 2387/3290 2450/3291 -f 2339/3292 2450/3293 2388/3294 -f 2338/3295 2339/3288 2340/3296 -f 495/670 2343/3297 2345/3224 -f 2391/3298 2345/3224 2343/3297 -f 2452/3299 2345/3224 2391/3298 -f 2392/3300 2345/3301 2452/3302 -f 2452/3302 2393/3303 2392/3300 -f 2394/3304 2392/3300 2393/3303 -f 2393/3305 2395/3306 2394/3307 -f 2396/3308 2394/3307 2395/3306 -f 2395/3306 2348/3229 2396/3308 -f 2347/3226 2396/3308 2348/3229 -f 2352/3235 2454/3309 2353/3236 -f 2353/3236 2399/3310 2398/3311 -f 2400/3312 2398/3311 2399/3310 -f 2353/3236 2398/3311 2401/3313 -f 2402/3314 2465/3315 2403/3244 -f 2313/3172 2402/3314 2403/3244 -f 2314/3247 2403/3316 2404/3317 -f 2404/3317 2405/3248 2314/3247 -f 2407/3318 2408/3319 2406/3320 -f 2361/3250 2406/3249 2408/3321 -f 2409/3322 2410/3253 2363/3252 -f 2410/3253 2411/3323 2364/3324 -f 2411/3323 2412/3257 2365/3256 -f 2413/3325 2411/3323 2414/3326 -f 2411/3323 2415/3327 2414/3326 -f 2416/3328 2449/3329 2413/3330 -f 2449/3329 2417/3331 2413/3330 -f 2417/3331 2418/3332 2413/3330 -f 2412/3260 2413/3330 3113/3333 -f 2367/3261 2412/3260 3113/3333 -f 3113/3333 2419/3334 2367/3261 -f 2367/3264 2419/3335 2369/3265 -f 2370/3266 2369/3265 2375/3336 -f 2368/3263 2370/3266 2371/3270 -f 2369/3265 2376/3273 2375/3336 -f 2420/3337 2376/3273 2369/3265 -f 2421/3338 2327/3339 2377/3340 -f 2327/3339 2421/3338 2378/3276 -f 2378/3276 2328/3275 2327/3339 -f 2420/3337 2419/3335 2377/3274 -f 3113/3341 2422/3342 2380/3343 -f 2421/3338 3113/3333 2380/3278 -f 2421/3338 2380/3278 2378/3276 -f 2423/3344 2380/3343 2422/3342 -f 2423/3344 2422/3342 2424/3345 -f 2425/3346 2423/3344 2424/3345 -f 2425/3346 2424/3345 2426/3347 -f 2427/3348 2428/3349 2429/3350 -f 2427/3348 2429/3350 2430/3351 -f 2430/3352 2432/3353 2426/3347 -f 2432/3353 2425/3346 2426/3347 -f 2433/3354 2425/3346 2432/3353 -f 2432/3353 3120/3355 2433/3354 -f 2433/3354 3120/3355 2434/3356 -f 2433/3354 2423/3344 2425/3346 -f 2434/3356 2423/3344 2433/3354 -f 2434/3356 2435/3357 2423/3344 -f 2380/3343 2423/3344 2435/3357 -f 2435/3357 2379/3358 2380/3343 -f 2379/3358 2435/3357 2385/3359 -f 2385/3359 2435/3357 2436/3360 -f 2386/3289 2385/3359 2436/3360 -f 2386/3289 2436/3360 2437/3361 -f 2437/3361 2438/3362 2386/3289 -f 2437/3363 2439/3364 2438/3365 -f 2439/3364 2440/3366 2438/3367 -f 2438/3367 2440/3366 2441/3368 -f 2438/3362 2441/3368 2387/3290 -f 2387/3290 2441/3368 1839/2526 -f 2441/3368 2442/3369 2443/3370 -f 2441/3368 2443/3370 2444/3371 -f 1840/2527 2441/3368 2444/3371 -f 2444/3371 2443/3370 2445/3372 -f 1840/2527 2444/3371 2446/3373 -f 2446/3373 2444/3371 2447/3374 -f 2446/3373 2447/3374 2448/216 -f 2448/216 2449/2528 2446/3373 -f 2417/3331 2449/3329 2450/3293 -f 2450/3291 1839/2526 2417/3375 -f 2387/3290 1839/2526 2450/3291 -f 2450/3293 2451/3376 2388/3294 -f 2451/3376 1890/3377 2388/3294 -f 2388/3378 2389/3379 2340/3380 -f 2391/3298 2342/3218 2390/3381 -f 2390/3381 2452/3299 2391/3298 -f 2393/3303 2452/3302 2453/3382 -f 2393/3305 2453/3383 2395/3306 -f 2395/3306 2453/3383 2397/3384 -f 2453/3383 2454/3309 2397/3384 -f 2455/3385 2399/3310 2454/3309 -f 2453/3382 2456/3386 2455/3387 -f 2457/3388 2458/3389 2453/3390 -f 284/368 2458/3389 2457/3388 -f 2459/3391 2456/3392 2458/3389 -f 2456/3392 2460/3393 3886/3394 -f 2461/3395 2456/3386 3886/3396 -f 2455/3387 2456/3386 2461/3395 -f 2461/3395 2400/3397 2455/3387 -f 2462/3398 2400/3312 2461/3399 -f 2464/3400 2402/3401 2463/3402 -f 2467/3403 2404/3317 2466/3404 -f 2466/3404 2468/3405 2467/3403 -f 2468/3406 2466/3407 2469/3408 -f 2469/3408 2460/3409 2468/3406 -f 2407/3318 2468/3406 2460/3409 -f 2407/3318 2460/3409 2470/3410 -f 2408/3319 2407/3318 2470/3410 -f 2408/3321 2470/3411 2471/3412 -f 2408/3321 2471/3412 2409/3413 -f 2471/3412 2410/3253 2409/3413 -f 2415/3327 2410/3253 2471/3412 -f 2471/3412 2414/3326 2415/3327 -f 2388/3294 2414/3414 2470/3410 -f 2470/3410 2472/3415 2388/3294 -f 295/3416 2472/3417 2460/3393 -f 295/3416 2460/3393 2473/3418 -f 2473/3418 2460/3393 2456/3392 -f 2473/3419 2474/1666 1227/1665 -f 2473/3419 1227/1665 1226/1662 -f 2473/3419 1226/1662 297/384 -f 1230/3420 2474/3421 2459/3391 -f 2474/3421 2473/3418 2459/3391 -f 2473/3418 2456/3392 2459/3391 -f 2452/3302 2388/3294 2472/3415 -f 295/3416 2453/3390 2472/3417 -f 294/3422 288/372 295/3416 -f 287/371 295/3416 288/372 -f 289/376 288/374 2475/3423 -f 294/381 293/380 2475/3423 -f 293/380 292/379 2475/3423 -f 294/381 2475/3423 288/374 -f 295/3416 287/371 2453/3390 -f 2388/3294 1890/3377 2414/3414 -f 2416/3328 2414/3414 1890/3377 -f 3174/3424 2479/3425 1893/3426 -f 1893/3426 2478/2603 3174/3424 -f 1893/3427 2479/3428 2480/3429 -f 2480/3430 2481/3431 1893/3426 -f 2481/3432 2482/3433 2483/3434 -f 2484/3435 2481/3432 2483/3434 -f 2484/3435 2485/3436 1894/3437 -f 2485/3438 2486/3439 1895/2606 -f 2487/3440 1895/2606 2486/3439 -f 1897/2608 1896/2607 1895/2606 -f 2487/3440 2488/3441 1898/2609 -f 1898/2609 2488/3441 2489/3442 -f 2488/3441 2490/3443 2489/3442 -f 1898/3444 2489/3445 2491/3446 -f 1898/3444 2491/3446 1899/3447 -f 1899/3447 2491/3446 2492/3448 -f 2492/3448 1900/2611 1899/3447 -f 1899/2610 1900/3449 174/222 -f 2492/3448 2493/3450 1900/2611 -f 1900/2611 2493/3450 1905/2612 -f 1905/2612 2493/3450 2499/3451 -f 2499/3451 2495/2617 1905/2612 -f 1901/228 1905/2612 1902/2613 -f 182/2625 1907/2621 2496/3452 -f 2497/3453 2496/3452 2498/3454 -f 2499/3451 2500/3455 2498/3456 -f 2498/3456 2500/3455 2501/3457 -f 2498/3454 2501/3458 2497/3453 -f 2497/3453 2501/3458 2502/3459 -f 2497/3453 2503/3460 2504/3461 -f 2496/3452 2504/3461 1908/2624 -f 2504/3461 2503/3460 2505/3462 -f 2504/3461 2505/3462 1911/2627 -f 1911/2627 1909/236 2504/3461 -f 2507/3463 2505/3462 2506/3464 -f 2506/3465 2508/3466 2507/3467 -f 2507/3468 2508/3469 2509/3470 -f 2507/3468 2509/3470 2510/3471 -f 2510/3471 1910/2628 2507/3468 -f 2510/3471 2509/3470 2511/3472 -f 2510/3471 2511/3472 1913/243 -f 1913/243 1912/240 2510/3471 -f 2511/3472 1916/2632 1913/243 -f 1916/2632 2511/3472 2512/2633 -f 1918/2636 3796/2635 2513/3473 -f 2513/3473 3662/3474 1918/2636 -f 1918/3475 3662/3474 2514/3476 -f 2514/3476 2515/3477 1918/3475 -f 2514/3476 2516/3478 2515/3477 -f 2517/3479 2515/3477 2516/3478 -f 2518/3480 2519/3481 2517/3479 -f 2517/3479 2519/3481 2523/3482 -f 2523/3482 2520/3483 2517/3479 -f 2520/3483 2523/3482 2521/3484 -f 2521/3484 2515/3485 2520/3483 -f 2521/3484 1919/2637 2515/3485 -f 1920/2638 1919/2637 2521/3484 -f 2521/3484 1940/2659 2522/2657 -f 2521/3484 2523/3482 1940/2659 -f 1941/2662 2523/3482 2524/3486 -f 2524/3486 2523/3482 2519/3481 -f 2524/3486 1944/2666 1942/2663 -f 1942/2663 1944/2666 1943/2665 -f 2519/3481 2525/3487 2524/3486 -f 1946/2667 2526/3488 2527/3489 -f 2527/3489 2526/3488 3673/3490 -f 2528/3491 2527/3489 3673/3490 -f 2530/2670 2532/3492 2529/3493 -f 2529/3493 1951/2672 2530/2670 -f 2531/3494 1951/2672 2529/3493 -f 2531/3494 2532/3492 2533/3495 -f 2534/3496 2531/3494 2535/3497 -f 2121/2894 2531/3494 2534/3496 -f 2536/3498 2531/3494 2121/2894 -f 2536/3498 2121/2894 2119/2892 -f 2119/2892 2116/3499 2536/3498 -f 2116/3499 2537/3500 2536/3498 -f 2538/3501 2537/3500 2571/3502 -f 2536/3498 2537/3500 2539/3503 -f 1951/2672 2539/3503 2540/3504 -f 2540/3504 2541/3505 1951/2672 -f 2540/3504 2542/3506 2541/3505 -f 2543/3507 2541/3505 2542/3506 -f 2544/3508 2543/3507 2542/3506 -f 2544/3508 2542/3506 2088/2855 -f 2088/2855 2542/3506 2545/3509 -f 2088/2855 2545/3509 2546/3510 -f 2546/3510 2547/3511 2088/2855 -f 2088/2855 2547/3511 2087/2854 -f 2546/3512 2548/3513 2547/3514 -f 2089/3515 2547/3514 2548/3513 -f 2089/3515 2549/3516 2550/3517 -f 2090/2857 2550/2860 2091/2858 -f 2549/3516 2551/3518 2095/2863 -f 2551/3518 2549/3516 2548/3513 -f 2551/3518 2548/3513 2552/3519 -f 2551/3518 2552/3519 2553/3520 -f 2096/2864 2551/3518 2553/3520 -f 2553/3520 2554/3521 2096/2864 -f 2553/3522 2555/3523 2554/3524 -f 2555/3525 2556/3526 2554/3527 -f 2554/3527 2556/3526 2557/3528 -f 2554/3527 2557/3528 2098/3529 -f 2098/3529 2557/3528 2100/2866 -f 2098/3529 2100/2866 2099/1760 -f 2556/3526 2558/3530 2557/3528 -f 2557/3528 2558/3530 2101/1766 -f 1321/1788 2558/3530 2104/2870 -f 1321/1788 2101/1766 2558/3530 -f 2559/3531 2558/3530 2556/3526 -f 2559/3531 2104/2870 2558/3530 -f 2555/3525 2559/3531 2556/3526 -f 2560/3532 2559/3531 2555/3525 -f 2561/3533 2560/3534 2555/3523 -f 2562/3535 2560/3534 2561/3533 -f 2563/3536 2562/3535 2561/3533 -f 2563/3536 2564/3537 2565/3538 -f 2565/3538 2564/3537 2566/3539 -f 2565/3538 2566/3539 2567/3540 -f 2568/3541 2565/3538 2567/3540 -f 2569/3542 2567/3540 2570/3543 -f 2571/3502 2569/3542 2570/3543 -f 2571/3502 2570/3543 2538/3501 -f 2573/3544 2572/3545 2571/3502 -f 2573/3544 2571/3502 2579/3546 -f 2575/3547 2573/3544 2574/2886 -f 2576/3548 2577/3549 2575/3547 -f 2572/3545 2575/3547 2577/3549 -f 2572/3545 2577/3549 2569/3542 -f 2569/3542 2577/3549 2568/3541 -f 2569/3542 2568/3541 2567/3540 -f 2578/3550 2577/3549 2576/3548 -f 2113/2884 2576/3548 2574/2886 -f 2574/2886 2573/3544 2115/2887 -f 2115/2887 2573/3544 2579/3546 -f 2578/3550 2113/2884 2580/3551 -f 2109/2877 2578/3550 2110/2878 -f 2578/3550 2580/3551 2110/2878 -f 2109/2877 2581/3552 2578/3550 -f 2109/2877 2582/3553 2581/3554 -f 2582/3553 2583/3555 2581/3554 -f 2581/3554 2583/3555 2577/3549 -f 2583/3555 2568/3541 2577/3549 -f 2568/3541 2583/3555 2565/3538 -f 2565/3538 2583/3555 2562/3535 -f 2583/3555 2582/3553 2562/3535 -f 2582/3556 2108/2874 2560/3532 -f 2108/2874 2582/3556 2109/2875 -f 2113/2884 2578/3550 2576/3548 -f 2581/3552 2577/3549 2578/3550 -f 2575/3547 2572/3545 2573/3544 -f 2574/2886 2576/3548 2575/3547 -f 2538/3501 2570/3543 2584/3557 -f 2538/3501 2584/3557 2539/3503 -f 2585/3558 2584/3557 2570/3543 -f 2585/3558 2570/3543 2566/3539 -f 2564/3537 2585/3558 2566/3539 -f 2545/3509 2585/3558 2564/3537 -f 2586/3559 2545/3509 2564/3537 -f 2552/3519 2586/3559 2563/3536 -f 2546/3560 2545/3509 2586/3559 -f 2545/3509 2542/3506 2585/3558 -f 2566/3539 2570/3543 2567/3540 -f 2585/3558 2540/3504 2584/3557 -f 2572/3545 2569/3542 2571/3502 -f 2563/3536 2586/3559 2564/3537 -f 2563/3536 2561/3533 2552/3519 -f 2553/3522 2552/3519 2561/3533 -f 2565/3538 2562/3535 2563/3536 -f 2562/3535 2582/3553 2560/3534 -f 2560/3532 2108/2874 2559/3531 -f 2561/3533 2555/3523 2553/3522 -f 2552/3519 2548/3513 2586/3559 -f 2549/3516 2089/3515 2548/3513 -f 2082/3561 2547/3514 2089/3515 -f 2586/3559 2548/3513 2546/3512 -f 1961/3562 2541/3505 2543/3507 -f 1953/2674 2541/3505 1961/3562 -f 2543/3507 2544/3508 1962/3563 -f 1962/3563 2544/3508 2587/3564 -f 2587/3564 2544/3508 2086/2852 -f 2587/3564 2086/2852 2588/3565 -f 1965/2690 2587/3566 2588/3567 -f 1965/2690 2588/3567 2589/3568 -f 2589/3568 2588/3567 2590/3569 -f 2589/3568 2590/3569 2591/3570 -f 2589/3568 1972/2699 1966/2692 -f 2589/3568 2592/3571 1972/2699 -f 2591/3570 2592/3571 2589/3568 -f 2592/3571 2593/3572 1973/2700 -f 2594/3573 2593/3572 2592/3571 -f 2594/3573 2592/3571 2591/3570 -f 2591/3570 2595/3574 2594/3573 -f 2594/3573 2595/3574 2596/3575 -f 2594/3573 2596/3575 2597/3576 -f 2594/3573 2597/3576 2598/3577 -f 2599/3578 2598/3577 2597/3576 -f 2599/3578 2597/3576 1993/2727 -f 2599/3578 1993/2727 1991/3579 -f 1976/2703 2599/3578 1991/3579 -f 2593/3572 2599/3578 1976/2703 -f 1993/2727 2597/3576 2600/3580 -f 1993/2727 2600/3580 1997/2731 -f 2593/3572 2598/3577 2599/3578 -f 1997/2731 2600/3580 2597/3576 -f 2597/3576 2596/3575 1999/3581 -f 2595/3582 2601/3583 2596/3584 -f 2596/3584 2601/3583 2000/2737 -f 2595/3582 2602/3585 2601/3583 -f 2602/3585 2603/3586 2601/3583 -f 2604/3587 2601/3583 2603/3586 -f 2604/3587 2605/3588 2001/2739 -f 2003/3589 2001/2739 2605/3588 -f 2003/3589 2605/3590 2606/3591 -f 2606/3592 2006/2804 2004/2742 -f 2004/2742 2006/2804 2005/2743 -f 2606/3591 2605/3590 2009/2747 -f 2002/2740 2001/2739 2003/3589 -f 2605/3588 2604/3587 2011/3593 -f 2604/3587 2607/3594 2011/3593 -f 2604/3587 2603/3586 2607/3594 -f 2085/2851 2603/3586 2602/3585 -f 2085/2851 2019/2757 2603/3586 -f 2019/2757 2607/3594 2603/3586 -f 2018/2756 2607/3594 2019/2757 -f 2001/2739 2601/3583 2604/3587 -f 2590/3595 2085/2851 2602/3585 -f 2590/3595 2602/3585 2595/3582 -f 2598/3577 2593/3572 2594/3573 -f 2591/3570 2590/3569 2595/3574 -f 2588/3565 2085/2851 2590/3595 -f 2588/3565 2086/2852 2085/2851 -f 2542/3506 2540/3504 2585/3558 -f 2539/3503 2584/3557 2540/3504 -f 1951/2672 2531/3494 2536/3498 -f 2536/3498 2539/3503 1951/2672 -f 2537/3500 2538/3501 2539/3503 -f 2571/3502 2537/3500 2579/3596 -f 2116/3499 2579/3596 2537/3500 -f 2117/2891 2116/3499 2119/2892 -f 2608/3597 2609/3598 2122/3599 -f 2122/3599 2609/3598 2611/3600 -f 2120/2893 2610/2895 2243/2904 -f 2123/2896 2120/2893 2243/2904 -f 698/956 697/955 2123/2896 -f 697/955 2126/3601 2123/2896 -f 2611/3600 1347/1832 2610/2895 -f 1346/1831 2610/2895 1347/1832 -f 2611/3600 1350/1834 1347/1832 -f 2609/3598 1350/1834 2611/3600 -f 2609/3598 2612/3602 1350/1834 -f 1352/1836 1350/1834 2612/3602 -f 2613/3603 1352/1836 2612/3602 -f 2613/3603 2612/3602 2614/3604 -f 2614/3604 2615/3605 2613/3603 -f 2613/3603 2616/3606 1351/1835 -f 2617/3607 1351/3608 2616/3609 -f 2616/3609 2618/3610 2617/3607 -f 2617/3607 2618/3610 2619/3611 -f 2617/3607 2619/3611 1353/3612 -f 2619/3611 2241/3074 1353/3612 -f 1660/2294 2241/3074 2619/3611 -f 1662/2296 2619/3611 2618/3610 -f 1662/2296 2618/3610 2616/3609 -f 1353/3612 1351/3608 2617/3607 -f 2613/3613 1663/2297 2616/3609 -f 2613/3613 2620/3614 1663/2297 -f 2620/3615 1666/3616 1663/2298 -f 2622/3617 2620/3615 2621/3618 -f 2623/3619 2622/3617 2621/3618 -f 2621/3618 2624/3620 2623/3619 -f 1665/2300 2625/3621 1667/3622 -f 2625/3621 1665/2300 2622/3617 -f 2622/3617 1665/2300 1666/3616 -f 2626/3623 870/1194 1667/3622 -f 1669/2301 2626/3623 2627/3624 -f 1673/2306 1671/2303 2628/3625 -f 2628/3625 2627/3624 1675/2308 -f 2627/3624 2629/3626 1675/2308 -f 1675/2308 2629/3626 1676/2309 -f 1676/2309 2631/3627 2630/3628 -f 1679/2312 1678/2311 2632/3629 -f 1678/2311 2633/3630 2632/3629 -f 1689/2326 2632/3629 2634/3631 -f 1679/2312 2632/3629 1689/2326 -f 2635/3632 2634/3631 2636/3633 -f 2636/3633 2637/3634 2635/3632 -f 2635/3632 2637/3634 2638/3635 -f 1692/2329 2635/3632 2638/3635 -f 2639/3636 2638/3635 1710/2350 -f 2639/3636 1710/2350 1708/2348 -f 2640/3637 2639/3636 1708/2348 -f 2640/3637 1708/2348 1707/2347 -f 2640/3638 1707/2347 1702/2341 -f 2640/3637 1702/2341 2641/3639 -f 2641/3639 2642/3640 2640/3637 -f 2640/3637 2642/3640 2643/3641 -f 2640/3637 2643/3641 1693/2330 -f 2642/3640 2644/2336 2643/3642 -f 2643/3642 2644/2336 1696/2334 -f 2644/2336 1697/2335 1696/2334 -f 873/1198 1697/2335 2644/2336 -f 2644/2336 2642/3640 1698/2337 -f 2642/3640 2641/3639 1698/2337 -f 2641/3639 1702/2341 1590/2191 -f 1590/2191 1702/2341 1700/2340 -f 1693/2330 2639/3636 2640/3637 -f 1708/2348 1710/2350 1709/2349 -f 1692/2329 2638/3635 2639/3636 -f 2638/3635 1713/3643 1710/2350 -f 2637/3634 1713/3643 2638/3635 -f 2636/3644 2645/3645 2637/3646 -f 2645/3645 1714/2356 2637/3646 -f 2646/3647 2645/3645 2636/3644 -f 2636/3644 2647/3648 2646/3647 -f 2646/3647 2647/3648 2648/3649 -f 2649/3650 2645/3645 2646/3647 -f 2646/3647 2650/3651 2649/3650 -f 2651/3652 2649/3650 2650/3651 -f 2651/3652 2650/3651 2652/3653 -f 2653/3654 2651/3655 2652/3656 -f 2653/3654 2652/3656 2654/3657 -f 2655/3658 2653/3654 2654/3657 -f 2655/3658 2654/3657 2656/3659 -f 2657/3660 2655/3658 2656/3659 -f 2658/3661 2657/3660 2656/3659 -f 2663/3662 2661/3663 2662/3664 -f 2662/3664 2664/3665 2663/3662 -f 2663/3662 2664/3665 2665/3666 -f 2667/3667 2666/3668 2663/3662 -f 2668/3669 2669/3670 2667/3667 -f 2668/3669 2690/3671 2669/3670 -f 2669/3670 2670/3672 2666/3668 -f 2666/3668 2670/3672 2661/3663 -f 2669/3670 2671/3673 2670/3674 -f 2670/3672 2671/3675 2660/3676 -f 2669/3677 2672/3678 2671/3679 -f 2671/3679 2672/3678 2659/3680 -f 2657/3660 2672/3678 2673/3681 -f 2657/3660 2673/3681 2674/3682 -f 2674/3682 2675/3683 2657/3660 -f 2674/3682 2676/3684 2675/3683 -f 2676/3684 2677/3685 2675/3683 -f 2675/3683 2677/3685 2678/3686 -f 2675/3683 2678/3686 2655/3658 -f 2678/3686 1720/2364 2653/3654 -f 2679/3687 1720/2364 2678/3686 -f 2679/3687 2680/3688 2681/3689 -f 2681/3689 1719/2361 2679/3687 -f 2681/3689 2680/3688 2682/3690 -f 2681/3689 2682/3690 1723/2367 -f 1723/2367 1721/2366 2681/3689 -f 2683/3691 2682/3690 2680/3688 -f 2684/3692 2683/3691 2680/3688 -f 2684/3692 2680/3688 2677/3685 -f 2685/3693 2683/3694 2684/3695 -f 2686/3696 2685/3693 2684/3695 -f 2686/3696 2684/3695 2676/3697 -f 2687/3698 2686/3696 2676/3697 -f 2688/3699 2686/3696 2687/3698 -f 2689/3700 2688/3699 2687/3698 -f 2689/3700 2687/3698 2690/3671 -f 2674/3701 2673/3702 2690/3671 -f 2690/3671 2687/3698 2674/3701 -f 2668/3669 2689/3700 2690/3671 -f 3797/3703 2691/3704 2689/3700 -f 3797/3703 2692/3705 2691/3704 -f 2691/3704 2688/3699 2689/3700 -f 2688/3699 2691/3704 2693/3706 -f 2693/3706 2694/3707 2688/3699 -f 2688/3699 2694/3707 2685/3693 -f 2694/3707 2695/3708 2685/3693 -f 2694/3707 2696/3709 2695/3708 -f 2696/3709 2697/3710 2695/3708 -f 2695/3708 2697/3710 2683/3694 -f 2696/3709 2698/3711 2697/3710 -f 2698/3712 1724/3713 2697/3714 -f 2697/3714 1724/3713 2682/3690 -f 2698/3715 2699/3716 1724/3717 -f 1724/2368 2699/3718 1725/2369 -f 1725/3719 2699/3720 2700/3721 -f 1725/3719 2700/3721 2701/3722 -f 1727/2371 1725/2369 2701/3723 -f 1727/2371 2701/3723 1731/2374 -f 2703/3724 2702/3725 2701/3723 -f 2703/3724 2704/3726 2702/3725 -f 2704/3726 1736/2383 2702/3725 -f 1736/2383 1732/2375 2702/3725 -f 1732/2375 2701/3723 2702/3725 -f 1741/2388 1736/2383 2704/3726 -f 1741/2388 1737/2384 1736/2383 -f 2703/3724 2705/3727 1741/2388 -f 2706/3728 2705/3727 2703/3724 -f 2703/3724 2707/3729 2706/3728 -f 2706/3730 2707/3731 2708/3732 -f 2708/3732 2709/3733 2706/3730 -f 2708/3732 2710/3734 2709/3733 -f 2711/3735 2709/3733 2710/3734 -f 2711/3735 2710/3734 2712/3736 -f 2692/3705 2711/3735 2712/3736 -f 2713/3737 1742/2389 2711/3738 -f 1743/2390 1742/2389 2713/3737 -f 1743/2390 2664/3739 1739/2385 -f 2664/3739 1744/2392 1739/2385 -f 2714/3740 2662/3664 1746/3741 -f 1746/3741 2662/3664 2715/3742 -f 2715/3742 2716/3743 2717/3744 -f 2717/3744 1746/3741 2715/3742 -f 2717/3744 1747/3745 1746/3741 -f 2718/3746 1747/3745 2717/3744 -f 2718/3746 2720/2396 2719/3747 -f 2719/3747 2720/2396 1749/2398 -f 2719/3747 1749/2398 1747/3745 -f 2720/2396 1755/2407 1754/2404 -f 2721/3748 1755/2407 2720/2396 -f 1755/2407 2721/3748 2722/3749 -f 2722/3749 2723/3750 1755/2407 -f 2722/3749 2724/3751 2723/3750 -f 2723/3750 2726/3752 1756/2409 -f 1757/2411 1756/2409 2726/3752 -f 2726/3752 2727/3753 1757/2411 -f 2728/3754 2729/3755 2727/3753 -f 2727/3753 1760/2415 1758/2413 -f 2727/3753 2729/3755 1760/2415 -f 1761/2416 1760/2415 2730/3756 -f 2731/3757 2732/3758 2730/3759 -f 2730/3759 2732/3758 3754/3760 -f 3754/3761 2733/3762 2730/3756 -f 2730/3756 2733/3762 2734/3763 -f 2734/3764 2735/3765 2736/3766 -f 2734/3763 2736/3767 2737/3768 -f 2734/3763 2737/3768 2730/3756 -f 2730/3756 2737/3768 1761/2416 -f 1761/2416 2737/3768 2738/3769 -f 1761/2416 2738/3769 2739/3770 -f 2740/3771 1761/2416 2739/3770 -f 2739/3772 2741/3773 2740/3774 -f 2754/3775 2742/3776 2743/3777 -f 2743/3777 2744/3778 2754/3775 -f 2744/3778 2745/3779 2754/3775 -f 2754/3775 2745/3779 2746/3780 -f 2754/3775 2746/3780 2747/3781 -f 2754/3775 2747/3781 2748/3782 -f 2751/3783 2749/3784 2750/3785 -f 2751/3786 2750/3787 2752/3788 -f 2752/3788 3010/3789 2751/3786 -f 2751/3786 3010/3789 3011/3790 -f 2751/3783 3011/3791 2753/3792 -f 2753/3792 3011/3791 3012/3793 -f 2753/3792 2754/3775 2749/3784 -f 2756/3794 1761/2416 2755/3795 -f 2756/3794 2755/3795 2757/3796 -f 2756/3794 2757/3796 2758/3797 -f 2758/3797 1765/2420 2756/3794 -f 2758/3798 1766/2424 1765/2423 -f 2759/3799 1766/2424 2758/3798 -f 2758/3798 2760/3800 2759/3799 -f 2759/3799 2760/3800 2761/3801 -f 2759/3799 2761/3801 2762/3802 -f 2759/3799 2764/3803 2763/3804 -f 2763/3804 2764/3803 2765/3805 -f 2763/3804 2765/3805 1766/2424 -f 1766/2424 2766/2431 1767/2422 -f 2766/2431 1768/2425 1767/2422 -f 2766/2431 1770/2429 1768/2425 -f 1766/2424 2767/3806 2766/2431 -f 1771/2430 2766/2431 2767/3806 -f 1771/2430 2767/3806 2768/3807 -f 1772/2432 1771/2430 2768/3807 -f 1772/2432 2770/3808 2769/3809 -f 2769/3809 2770/3808 2771/3810 -f 2771/3811 1780/2443 2769/3812 -f 2771/3810 2770/3808 3025/3813 -f 2772/3814 2774/3815 2773/3816 -f 2773/3816 2774/3815 2775/3817 -f 2775/3817 2776/3818 2773/3816 -f 2773/3816 2776/3818 2777/3819 -f 2777/3819 2778/3820 2773/3816 -f 2777/3821 1783/2446 2778/3822 -f 2780/3823 1784/2447 2777/3821 -f 2780/3823 2779/3824 1784/2447 -f 1779/2442 2783/3825 1785/2448 -f 1779/2442 1784/2447 2783/3825 -f 2783/3825 1784/2447 2782/3826 -f 2783/3825 2782/3826 2784/3827 -f 2783/3825 2784/3827 2785/3828 -f 2785/3828 2786/3829 2783/3825 -f 2786/3829 2787/3830 2783/3825 -f 2788/3831 2783/3825 2787/3830 -f 2787/3830 2789/3832 2788/3831 -f 2788/3831 2789/3832 2790/3833 -f 2788/3831 2791/3834 1791/2458 -f 2791/3834 2792/3835 1791/2458 -f 1791/2458 2792/3835 1786/2449 -f 1786/1296 2792/3836 2793/3837 -f 1786/1296 2793/3837 2794/3838 -f 1786/1296 2794/3838 2795/3839 -f 1786/1296 2795/3839 1792/3840 -f 1792/3840 1793/2460 951/1294 -f 2796/2462 3085/3841 3084/3842 -f 3084/3842 2797/2464 2796/2462 -f 3086/3843 2797/2464 3084/3842 -f 3934/3844 2796/2462 2797/2464 -f 3086/3843 3084/3842 3332/3845 -f 2798/3846 3086/3843 3088/3847 -f 2798/3846 3088/3847 2799/3848 -f 2799/3848 2800/3849 2801/3850 -f 2799/3848 2801/3850 2802/3851 -f 2799/3848 2802/3851 1796/2468 -f 2803/3852 1796/2468 2802/3851 -f 2802/3851 2804/3853 2803/3852 -f 2807/3854 2803/3852 2804/3853 -f 2805/3855 2807/3854 2804/3853 -f 2804/3853 2806/3856 2805/3855 -f 2805/3855 2806/3856 1816/2495 -f 1816/2495 2807/3854 2805/3855 -f 2803/3852 2807/3854 1804/2475 -f 1803/2474 2803/3852 1804/2475 -f 1803/2474 1797/2469 1796/2468 -f 1804/2477 2807/3857 2808/3858 -f 1804/2477 2808/3858 2809/2478 -f 2810/3859 1805/2479 2809/2478 -f 2810/3859 2809/2478 2808/3858 -f 2808/3858 2811/3860 2810/3859 -f 2811/3860 2845/3861 2810/3859 -f 2810/3859 2845/3861 2812/3862 -f 2812/3862 2813/3863 2810/3859 -f 2810/3859 2813/3863 2814/3864 -f 2810/3859 2814/3864 2815/3865 -f 2815/3866 1805/2479 2810/3859 -f 2815/3867 2814/3868 2816/3869 -f 2815/3867 2816/3869 2817/3870 -f 2817/3871 1806/2480 2815/3866 -f 2817/3870 2816/3869 2818/3872 -f 2817/3870 2818/3872 2819/3873 -f 2819/3874 1807/2481 2817/3871 -f 2819/3874 1808/2484 1807/2481 -f 2820/3875 1808/2484 2819/3874 -f 2821/3876 1808/2484 2820/3875 -f 2820/3875 2822/3877 2821/3876 -f 1812/2491 2821/3876 2822/3878 -f 2822/3878 2823/3879 1812/2491 -f 1812/2489 1809/2486 2821/3880 -f 2824/3881 1815/2493 1814/2492 -f 2824/3881 1814/2492 2825/3882 -f 2826/3883 2824/3884 2825/3885 -f 2827/3886 2826/3883 2828/3887 -f 2829/3888 2827/3886 2828/3887 -f 2829/3888 2828/3887 2830/3889 -f 2831/3890 2829/3888 2830/3889 -f 2831/3890 2830/3889 2832/3891 -f 2832/3891 2899/3892 2831/3890 -f 2831/3890 2899/3892 3170/3893 -f 3170/3893 3171/3894 2831/3890 -f 3171/3894 2835/3895 2831/3890 -f 2831/3896 2835/3895 2833/3897 -f 2833/3897 2835/3895 2834/3898 -f 2834/3898 2835/3895 2442/3369 -f 2834/3898 2442/3369 2440/3366 -f 2836/3899 2834/3898 2440/3366 -f 2439/3364 2836/3900 2440/3366 -f 2439/3364 2837/3901 2836/3900 -f 2838/3902 2836/3903 2837/3904 -f 2837/3904 2833/3905 2838/3902 -f 2838/3906 2833/3897 2834/3898 -f 2837/3904 2839/3907 2833/3905 -f 2833/3905 2839/3907 2829/3908 -f 2837/3904 2840/3909 2839/3907 -f 2840/3909 2841/3910 2839/3907 -f 2839/3907 2841/3910 2827/3911 -f 2842/3912 2827/3911 2841/3910 -f 2842/3912 2843/3913 2824/3914 -f 2824/3914 2843/3913 2811/3860 -f 2811/3860 2843/3913 2844/3915 -f 2844/3915 2845/3861 2811/3860 -f 2844/3915 2846/3916 2845/3861 -f 2847/3917 2845/3861 2846/3916 -f 2848/3918 2845/3861 2847/3917 -f 2848/3918 2847/3917 2849/3919 -f 2850/3920 2848/3918 2849/3919 -f 2851/3921 2852/3922 2850/3923 -f 2851/3921 2853/3924 2852/3922 -f 2857/3925 2855/3926 2856/3927 -f 2858/3928 2859/3929 2860/3930 -f 2861/3931 2862/3932 2860/3930 -f 2860/3930 2862/3932 2857/3925 -f 2860/3930 2857/3925 2858/3928 -f 2863/3933 2857/3925 2862/3932 -f 2862/3932 2864/3934 2863/3933 -f 2864/3934 2848/3918 2863/3933 -f 2863/3933 2848/3918 2852/3935 -f 2863/3936 2852/3922 2855/3937 -f 2855/3926 2852/3935 2853/3938 -f 2848/3918 2864/3934 2845/3861 -f 2812/3862 2864/3934 2862/3932 -f 2861/3931 2812/3862 2862/3932 -f 2859/3939 2866/3940 2867/3941 -f 2867/3941 2866/3940 2868/3942 -f 2867/3943 2869/3944 2865/3945 -f 2870/3946 2871/3947 2812/3862 -f 2813/3863 2871/3947 2872/3948 -f 2871/3947 2873/3949 2872/3948 -f 2872/3948 2873/3949 2874/3950 -f 2872/3948 2874/3950 2875/3951 -f 2814/3864 2872/3948 2875/3951 -f 2875/3951 2874/3950 3150/3952 -f 2875/3953 3150/3952 2876/3954 -f 2816/3869 2875/3953 2876/3954 -f 2877/3955 2820/3875 2818/3872 -f 2877/3955 2818/3872 2879/3956 -f 2878/3957 2877/3955 2879/3956 -f 2879/3956 2818/3872 2880/3958 -f 2879/3956 2880/3958 2881/3959 -f 2882/3960 2881/3959 2880/3958 -f 2876/3954 2882/3960 2880/3958 -f 2880/3958 2818/3872 2876/3954 -f 2876/3954 3150/3952 2882/3960 -f 2883/3961 2882/3962 3149/3963 -f 2884/3964 2883/3961 3149/3963 -f 2885/3965 2884/3964 3149/3966 -f 3149/3966 2886/3967 2885/3965 -f 2885/3965 2886/3967 2887/3968 -f 2885/3965 2887/3968 2888/3969 -f 2884/3964 2885/3965 2888/3969 -f 2884/3964 2888/3969 2889/3970 -f 2890/3971 2884/3964 2889/3970 -f 2883/3961 2890/3971 2891/3972 -f 2891/3972 2892/3973 2883/3961 -f 2883/3961 2892/3973 2881/3974 -f 2892/3975 2893/3976 2881/3959 -f 2881/3959 2893/3976 2878/3957 -f 2893/3976 2894/3977 2878/3957 -f 2878/3957 2894/3977 2877/3955 -f 2877/3955 2894/3977 2820/3875 -f 2822/3978 3651/3979 2895/3980 -f 2822/3978 2895/3980 2896/3981 -f 2830/3889 2896/3981 2895/3980 -f 2832/3891 2895/3980 3651/3979 -f 2835/3895 3171/3894 3172/3982 -f 3172/3982 2900/3983 2835/3895 -f 2900/3983 2445/3372 2835/3895 -f 2835/3895 2445/3372 2443/3370 -f 2900/3983 2901/3984 2445/3372 -f 2902/3985 2903/3986 2901/3984 -f 2447/3374 2901/3984 2903/3986 -f 2903/3986 171/219 2447/3374 -f 2476/217 2448/216 2447/3374 -f 2451/3987 2448/216 2904/2602 -f 2476/217 2447/3374 171/219 -f 2477/220 171/219 2903/3986 -f 2480/3429 2479/3428 3171/3894 -f 2906/3988 2907/3989 2482/3433 -f 2482/3433 2480/3429 2906/3988 -f 2482/3433 2907/3989 2908/3990 -f 2483/3434 2482/3433 2908/3990 -f 2908/3990 2909/3991 2484/3435 -f 2909/3992 2910/3993 2485/3438 -f 2485/3438 2910/3993 2911/3994 -f 2910/3993 2912/3995 2911/3994 -f 2490/3443 2911/3994 2912/3995 -f 2490/3443 2912/3995 2913/3996 -f 3184/3997 2914/3998 2913/3996 -f 2914/3998 2915/3999 2913/3996 -f 2915/3999 2916/4000 2917/4001 -f 2917/4001 2918/4002 2915/3999 -f 2917/4003 2492/3448 2918/4004 -f 2489/3442 2913/3996 2918/4002 -f 2489/3445 2918/4004 2491/3446 -f 2491/3446 2918/4004 2492/3448 -f 2919/4005 2920/4006 2921/4007 -f 2921/4007 2920/4006 2922/4008 -f 2921/4007 2923/4009 2493/3450 -f 2924/4010 2493/3450 2923/4009 -f 2925/4011 2924/4010 2923/4009 -f 2925/4011 2923/4009 2926/4012 -f 2929/4013 2927/4014 2928/4015 -f 2929/4013 2930/4016 2931/4017 -f 2929/4013 2931/4017 2932/4018 -f 2932/4018 2931/4017 2933/4019 -f 2932/4020 2933/4021 2934/4022 -f 2934/4022 2926/4012 2932/4020 -f 2932/4020 2926/4012 2927/4023 -f 2934/4022 2925/4011 2926/4012 -f 2935/4024 2925/4011 2934/4022 -f 2936/4025 2935/4024 2937/4026 -f 2938/4027 2939/4028 2940/4029 -f 2941/4030 2938/4027 2940/4029 -f 2942/4031 2941/4030 2940/4029 -f 2942/4031 2940/4029 2943/4032 -f 2944/4033 2942/4034 2943/4035 -f 2944/4033 2943/4035 2945/4036 -f 2947/4037 2948/4038 2946/4039 -f 2946/4039 2948/4038 2942/4034 -f 2947/4037 2949/4040 2948/4038 -f 2949/4041 2950/4042 2948/4043 -f 2948/4043 2950/4042 2941/4030 -f 2949/4041 2924/4010 2950/4042 -f 2925/4011 2941/4030 2950/4042 -f 2952/4044 2951/4045 2924/4010 -f 2953/4046 2951/4045 2952/4044 -f 2954/4047 2953/4048 2952/4049 -f 2954/4047 2952/4049 2955/4050 -f 2955/4050 2956/4051 2954/4047 -f 2954/4047 2956/4051 2957/4052 -f 2954/4047 2957/4052 2958/4053 -f 2959/4054 2960/4055 2958/4053 -f 2958/4053 2960/4055 2953/4048 -f 2960/4056 2961/4057 2953/4046 -f 2951/4045 2961/4057 2962/4058 -f 2962/4058 2963/4059 2951/4045 -f 2924/4010 2951/4045 2963/4059 -f 2493/3450 2963/4059 2964/4060 -f 2493/3450 2964/4060 2965/4061 -f 2965/4061 2966/4062 2967/4063 -f 2965/4061 2967/4063 2494/4064 -f 2967/4065 2968/4066 2969/4067 -f 2967/4065 2969/4067 2970/4068 -f 2494/4064 2967/4063 2970/4069 -f 2494/4064 2970/4069 2971/4070 -f 2971/4070 2499/3451 2493/3450 -f 2500/3455 2499/3451 2971/4070 -f 2971/4070 2972/4071 2500/3455 -f 2973/4072 2500/3455 2972/4071 -f 2744/4073 2973/4072 2972/4071 -f 2745/4074 2972/4071 2974/4075 -f 2745/4074 2974/4075 2975/4076 -f 2746/3780 2745/3779 2975/4077 -f 2975/4077 2976/4078 2746/3780 -f 2746/3780 2976/4078 2977/4079 -f 2977/4079 2978/4080 2746/3780 -f 2978/4080 2979/4081 2746/3780 -f 2747/3781 2979/4081 2980/4082 -f 2747/3781 2980/4082 2981/4083 -f 2980/4082 2982/4084 2981/4083 -f 2747/4085 2981/4086 2983/4087 -f 2747/4085 2983/4087 2984/4088 -f 2984/4088 2986/4089 2985/4090 -f 2960/4056 2987/4091 2985/4090 -f 2748/3782 2985/4092 2987/4093 -f 2748/3782 2987/4093 2959/4054 -f 2988/4094 2748/3782 2959/4054 -f 2989/4095 2990/4096 2748/3782 -f 2748/3782 2990/4096 2992/4097 -f 2748/3782 2992/4097 2754/3775 -f 2754/3775 2992/4097 2749/3784 -f 2993/4098 2992/4099 2990/4100 -f 2990/4101 2991/4102 2993/4098 -f 2993/4098 2994/4103 2750/3787 -f 2996/4104 2994/4103 2995/4105 -f 2995/4105 2997/4106 2996/4104 -f 2996/4104 2999/4107 2998/4108 -f 3000/4109 2998/4108 2999/4107 -f 3001/4110 3000/4109 2999/4107 -f 3001/4110 2999/4107 3002/4111 -f 3001/4112 3002/4113 3003/4114 -f 3002/4113 3004/4115 3003/4114 -f 2752/3788 3003/4116 3004/4117 -f 3004/4117 3009/4118 2752/3788 -f 3001/4110 2752/3788 2996/4104 -f 3001/4119 2996/4104 2998/4120 -f 3005/4121 3001/4119 2998/4120 -f 3003/4122 3005/4121 2998/4120 -f 3001/4110 3005/4123 2752/3788 -f 3002/4111 3009/4118 3004/4117 -f 3007/4124 3009/4118 3002/4111 -f 3007/4124 3002/4111 3006/4125 -f 3007/4124 3006/4125 2776/3818 -f 3008/4126 2761/3801 3007/4124 -f 3010/3789 3009/4118 2761/3801 -f 3011/3790 3010/3789 2761/3801 -f 2753/3792 3012/3793 2755/3795 -f 2753/3792 1761/2416 2754/3775 -f 2755/3795 1761/2416 2753/3792 -f 2757/3796 2755/3795 3012/3793 -f 2757/3796 3011/3791 2760/4127 -f 2757/3796 3012/3793 3011/3791 -f 2760/3800 3011/3791 2761/3801 -f 2761/3801 3009/4118 3007/4124 -f 3008/4126 2762/3802 2761/3801 -f 3008/4126 3013/4128 2762/3802 -f 3013/4128 3014/4129 2762/3802 -f 2762/3802 3014/4129 3015/4130 -f 3017/4131 3015/4132 3016/4133 -f 3018/4134 3017/4131 3016/4133 -f 3019/4135 3018/4134 3016/4133 -f 3020/4136 3019/4137 3016/4138 -f 3017/4139 3021/4140 3020/4136 -f 3021/4140 3022/4141 3020/4136 -f 3022/4142 3021/4143 3023/4144 -f 3023/4145 3024/4146 3022/4147 -f 3024/4148 3017/4149 3022/4150 -f 3019/4151 3022/4152 3017/4153 -f 3017/4154 3024/4146 3019/4155 -f 3024/4146 3023/4145 3019/4155 -f 3023/4145 2764/4156 3019/4155 -f 2765/4157 2764/4156 3023/4145 -f 2774/3815 2765/3805 3023/4158 -f 3025/3813 2765/3805 2774/3815 -f 2768/3807 3025/3813 2770/3808 -f 2768/3807 2765/3805 3025/3813 -f 2767/3806 2765/3805 2768/3807 -f 3021/4143 3017/4159 3023/4144 -f 2775/3817 3023/4158 3017/4160 -f 3017/4160 3020/4161 2775/3817 -f 3020/4161 3016/4162 2775/3817 -f 3016/4162 3026/4163 2775/3817 -f 3026/4163 3027/4164 2775/3817 -f 2775/3817 3027/4164 3007/4124 -f 3014/4129 3007/4124 3027/4164 -f 3014/4165 3027/4166 3008/4167 -f 3027/4168 3026/4169 3008/4170 -f 3026/4169 3016/4171 3008/4170 -f 3019/4137 3020/4136 3022/4141 -f 3018/4172 3019/4173 2759/3799 -f 3017/4160 3018/4172 2759/3799 -f 2759/3799 3015/4130 3017/4160 -f 3016/4133 3015/4132 3027/4174 -f 3027/4174 3028/4175 3016/4133 -f 3028/4176 3014/4165 3016/4177 -f 3028/4176 3027/4166 3015/4132 -f 3014/4129 3028/4178 3015/4130 -f 3014/4179 3013/4180 3016/4171 -f 3013/4180 3008/4181 3016/4171 -f 3007/4182 3014/4183 3008/4184 -f 3006/4125 2779/3824 2780/4185 -f 3030/4186 3029/4187 3002/4111 -f 3030/4186 2781/4188 3029/4187 -f 3031/4189 2781/4188 3030/4186 -f 3030/4186 2999/4107 3031/4189 -f 3031/4189 2999/4107 3032/4190 -f 3031/4189 3032/4190 3033/4191 -f 3034/4192 3033/4191 3035/4193 -f 3036/4194 3034/4192 3035/4193 -f 3036/4194 3035/4193 3037/4195 -f 3037/4195 3038/4196 3036/4194 -f 3036/4194 3038/4196 3039/4197 -f 3039/4197 3038/4196 3040/4198 -f 3040/4198 2786/3829 3039/4199 -f 3038/4196 3041/4200 3040/4198 -f 3040/4198 3041/4201 3042/4202 -f 3040/4198 3042/4202 2786/3829 -f 3043/4203 3042/4202 3041/4201 -f 3044/4204 3043/4205 3041/4200 -f 3047/4206 3045/4207 3046/4208 -f 3048/4209 3047/4206 3046/4208 -f 3048/4209 3046/4208 3049/4210 -f 3050/4211 3048/4212 3049/4213 -f 3050/4211 3049/4213 2989/4095 -f 3052/4214 3053/4215 3051/4216 -f 3051/4216 3053/4215 3048/4212 -f 3052/4214 3054/4217 3053/4215 -f 3054/4218 3055/4219 3053/4220 -f 3053/4220 3055/4219 3048/4209 -f 3054/4218 3056/4221 3055/4219 -f 3047/4206 3055/4219 3057/4222 -f 3057/4222 3058/4223 3047/4206 -f 3047/4206 3058/4223 3044/4204 -f 3058/4223 3059/4224 3043/4205 -f 3059/4225 3060/4226 3043/4203 -f 3059/4225 3061/4227 3060/4226 -f 2789/3832 3060/4226 3061/4227 -f 2789/3832 3061/4227 3062/4228 -f 3062/4228 3063/4229 2789/3832 -f 2789/3832 3063/4229 2790/3833 -f 3063/4229 3064/4230 2790/3833 -f 2790/3833 3064/4230 3065/4231 -f 2788/3831 3065/4231 3066/4232 -f 2788/3831 3066/4232 2791/3834 -f 2791/3834 3067/4233 3068/4234 -f 3068/4234 3067/4233 3069/4235 -f 3068/4234 3069/4235 3070/4236 -f 3068/4237 3070/4238 3071/4239 -f 3068/4237 3071/4239 2793/4240 -f 3073/4241 2794/3838 3072/4242 -f 3074/4243 2795/3839 3073/4241 -f 3073/4241 3076/4244 3074/4243 -f 1793/2460 1792/3840 3074/4243 -f 3075/4245 1793/2460 3076/4244 -f 3075/4245 3076/4244 3298/4246 -f 3298/4246 3077/4247 3075/4245 -f 3078/4248 3079/4249 980/1338 -f 1793/2460 3078/4248 980/1338 -f 3081/4250 3080/4251 980/1338 -f 3082/4252 3081/4250 980/1338 -f 3082/4252 3083/4253 3081/4250 -f 3085/3841 2796/2462 3080/4251 -f 3084/3842 3085/3841 3081/4250 -f 3087/4254 3088/4255 3086/4256 -f 3088/3847 3087/4254 3457/4257 -f 3090/4258 3088/3847 3089/4259 -f 3090/4258 3091/4260 2799/3848 -f 2800/3849 3091/4260 3345/4261 -f 3345/4261 2801/3850 2800/3849 -f 2801/3850 3093/4262 2804/3853 -f 3094/4263 2804/3853 3093/4262 -f 3094/4263 3095/4264 2804/3853 -f 2804/3853 3095/4264 3096/4265 -f 3097/4266 3096/4265 3095/4264 -f 3097/4266 3095/4264 3098/4267 -f 3098/4267 3099/4268 3097/4266 -f 3097/4266 3099/4268 3100/4269 -f 3097/4266 3100/4269 1822/2501 -f 1826/2506 3100/4270 3099/4271 -f 3099/4271 3101/4272 1826/2506 -f 3102/4273 1826/2509 3101/4274 -f 3101/4274 3103/4275 3102/4273 -f 3102/4273 3103/4275 3104/4276 -f 3102/4273 3104/4276 3105/2516 -f 1830/2517 3102/4273 3105/2516 -f 1831/2514 3106/4277 3107/4278 -f 3108/4279 1831/2514 3107/4278 -f 1832/4280 3109/4281 3110/4282 -f 3110/4283 1833/4284 1832/2515 -f 3110/4285 1835/2521 1833/2519 -f 1835/2521 3110/4285 3111/4286 -f 1836/2525 3111/4287 3112/4288 -f 3112/4288 2339/3288 1836/2525 -f 2339/3288 2418/4289 1836/2525 -f 1837/2523 1836/2525 2418/4289 -f 2339/3292 3113/3333 2418/3332 -f 2413/3330 2418/3332 3113/3333 -f 2339/3288 3112/4288 3113/3341 -f 3112/4288 2422/3342 3113/3341 -f 2422/3342 3112/4288 3111/4287 -f 2422/4290 3111/4291 3114/4292 -f 3115/4293 2422/4290 3114/4292 -f 2427/3348 3115/4293 2428/3349 -f 2428/3349 3115/4293 3116/4294 -f 2428/3349 3117/4295 2429/3350 -f 3118/4296 2853/3924 2431/4297 -f 2431/4297 2853/3924 2851/3921 -f 3119/4298 2431/4297 2851/3921 -f 3119/4298 2851/3921 3120/4299 -f 3121/4300 2434/3356 3120/3355 -f 3120/4299 2850/3923 3121/4301 -f 3121/4300 2435/3357 2434/3356 -f 3123/4302 2435/3357 3122/4303 -f 3123/4302 3122/4303 3124/4304 -f 3125/4305 3123/4302 3124/4304 -f 3125/4305 2840/3909 2439/3364 -f 3125/4305 3126/4306 2840/3909 -f 3125/4305 3127/4307 3126/4306 -f 3127/4307 3124/4304 2844/3915 -f 2844/3915 3124/4304 2846/3916 -f 3127/4307 3128/4308 3126/4309 -f 2841/3910 3126/4306 3128/4310 -f 2841/3910 3128/4310 2843/3913 -f 2842/3912 2841/3910 2843/3913 -f 2843/3913 3128/4310 3127/4307 -f 3124/4304 3127/4307 3125/4305 -f 2437/3363 3123/4302 3125/4305 -f 3124/4304 3122/4303 2846/3916 -f 2436/3360 2435/3357 3123/4302 -f 3121/4300 3122/4303 2435/3357 -f 3122/4303 3121/4300 2847/3917 -f 2847/3917 3121/4300 2850/3920 -f 2849/3919 2847/3917 2850/3920 -f 3120/4299 2851/3921 2850/3923 -f 2429/4311 3117/4312 3118/4313 -f 3129/4314 2854/4315 3117/4312 -f 3129/4314 3117/4312 3130/4316 -f 2856/3927 2855/3926 3129/4314 -f 2854/4315 3129/4314 2855/3926 -f 2858/3928 3129/4314 3131/4317 -f 3133/4318 2866/4319 3132/4320 -f 3132/4320 2866/4319 3134/4321 -f 3131/4317 3132/4320 3134/4321 -f 3134/4321 2858/3928 3131/4317 -f 3135/4322 3136/4323 3133/4324 -f 3133/4324 3137/4325 2866/3940 -f 3137/4325 2868/3942 2866/3940 -f 3138/4326 3139/4327 3140/4328 -f 2868/3942 3138/4326 3140/4328 -f 3140/4328 3139/4327 3141/4329 -f 3140/4330 3141/4331 2869/3944 -f 2867/3943 3140/4330 2869/3944 -f 3139/4327 3142/4332 3141/4329 -f 3141/4329 3142/4332 3143/4333 -f 3141/4331 3143/4334 2870/3946 -f 2870/3946 3143/4334 3144/4335 -f 3142/4332 3145/4336 3143/4334 -f 3146/4337 3147/4338 3144/4335 -f 2870/3946 3144/4335 3147/4338 -f 3147/4338 2873/3949 2870/3946 -f 3155/4339 2873/3949 3147/4338 -f 2873/3949 3148/4340 2874/3950 -f 2874/3950 3149/3963 3150/3952 -f 2882/3960 3150/3952 3149/3963 -f 2886/3967 3149/3963 2874/3950 -f 3151/4341 3152/4342 2886/3967 -f 2886/3967 3152/4342 2887/3968 -f 3152/4342 3153/4343 2887/3968 -f 3154/4344 2887/3968 3153/4343 -f 3147/4338 3153/4343 3155/4339 -f 3155/4339 3152/4342 3151/4341 -f 3148/4340 3155/4339 3151/4341 -f 3148/4340 2886/3967 2874/3950 -f 3148/4340 3151/4341 2886/3967 -f 3153/4343 3147/4338 3156/4345 -f 3147/4338 3157/4346 3156/4345 -f 3158/4347 3154/4348 3156/4345 -f 3157/4346 3159/4349 3158/4347 -f 3158/4347 3159/4349 3154/4348 -f 3154/4348 3159/4349 3160/4350 -f 3154/4344 3160/4351 2888/3969 -f 2888/3969 2887/3968 3154/4344 -f 2888/3969 3160/4351 2889/3970 -f 3160/4351 3161/4352 2889/3970 -f 2889/3970 3161/4352 3162/4353 -f 3163/4354 2889/3970 3162/4353 -f 3163/4354 3162/4353 3164/4355 -f 3163/4354 3164/4355 3165/4356 -f 2891/3972 3163/4354 3165/4356 -f 3165/4356 3166/4357 2891/3972 -f 3165/4356 3167/4358 3166/4357 -f 3167/4359 3168/4360 3166/4361 -f 3166/4361 3168/4360 3169/4362 -f 3166/4361 3169/4362 2892/3975 -f 3168/4360 2897/4363 3169/4362 -f 3168/4360 2898/4364 2897/4363 -f 2906/3988 2905/4365 3651/3979 -f 2905/4365 2480/3429 2899/3892 -f 2480/3429 3170/3893 2899/3892 -f 3170/3893 2480/3429 3171/3894 -f 2479/3428 3172/3982 3171/3894 -f 3174/3424 3172/3982 2479/3425 -f 3173/4366 3174/3424 2478/2603 -f 2477/220 2903/3986 2902/3985 -f 3173/4366 2477/220 2902/3985 -f 3174/3424 3173/4366 2900/3983 -f 2900/3983 3172/3982 3174/3424 -f 3173/4366 2901/3984 2900/3983 -f 2905/4365 2899/3892 3651/3979 -f 3176/4367 2898/4364 3175/4368 -f 3177/4369 3176/4367 3175/4368 -f 3177/4369 3175/4368 3167/4359 -f 3178/4370 3177/4371 3167/4358 -f 3179/4372 3177/4371 3178/4370 -f 3178/4370 3180/4373 3179/4372 -f 3179/4372 3180/4373 3181/4374 -f 3179/4372 3181/4374 3182/4375 -f 3182/4375 3183/4376 3179/4372 -f 3182/4375 2909/3992 3183/4376 -f 3182/4375 3181/4374 2914/3998 -f 2910/3993 3182/4375 2914/3998 -f 2910/3993 2914/3998 3184/3997 -f 2914/3998 2916/4000 2915/3999 -f 3181/4374 2916/4000 2914/3998 -f 3181/4374 3185/4377 2916/4000 -f 3180/4373 3186/4378 3185/4377 -f 3164/4355 3186/4378 3180/4373 -f 3164/4355 3180/4373 3178/4370 -f 3165/4356 3164/4355 3178/4370 -f 3186/4378 3162/4353 3187/4379 -f 3187/4379 3188/4380 3186/4378 -f 3186/4378 3188/4380 3185/4377 -f 3188/4380 3189/4381 3185/4377 -f 3188/4382 3190/4383 3189/4384 -f 3191/4385 3189/4384 3190/4383 -f 2492/3448 3191/4385 3192/4386 -f 3193/4387 3192/4386 3191/4385 -f 3191/4385 3190/4383 3193/4387 -f 3194/4388 3193/4387 3190/4383 -f 3190/4383 3195/4389 3194/4388 -f 3196/4390 3194/4388 3195/4389 -f 3195/4389 3197/4391 3196/4390 -f 3198/4392 3196/4390 3197/4391 -f 3197/4391 3199/4393 3198/4392 -f 3200/4394 3198/4392 3199/4393 -f 3199/4393 3159/4349 3200/4394 -f 3200/4394 3159/4349 3201/4395 -f 3200/4394 3202/4396 3198/4392 -f 3198/4392 3202/4396 3203/4397 -f 3198/4392 3203/4397 3196/4390 -f 3196/4390 3203/4397 3204/4398 -f 3196/4390 3204/4398 3194/4388 -f 3194/4388 3204/4398 3205/4399 -f 3194/4388 3205/4399 3193/4387 -f 3193/4387 3205/4399 3206/4400 -f 3193/4387 3206/4400 3192/4386 -f 3192/4386 3206/4400 3207/4401 -f 3192/4386 3207/4401 2919/4005 -f 2919/4005 3207/4401 3208/4402 -f 3207/4403 3209/4404 3208/4405 -f 3208/4405 3209/4404 3210/4406 -f 3208/4405 3210/4406 3211/4407 -f 3208/4405 3211/4407 3212/4408 -f 2920/4006 3208/4402 3212/4409 -f 3212/4408 3211/4407 3213/4410 -f 3212/4409 2923/4009 2922/4008 -f 2927/4023 2923/4009 3214/4411 -f 2927/4014 3214/4412 3215/4413 -f 2928/4015 2927/4014 3215/4413 -f 3217/4414 2928/4015 3216/4415 -f 3217/4414 3216/4415 3218/4416 -f 3217/4414 3218/4416 3219/4417 -f 3220/4418 3217/4414 3219/4417 -f 3220/4418 3219/4417 3221/4419 -f 2930/4016 3220/4418 2931/4017 -f 2931/4017 3220/4418 3222/4420 -f 2931/4017 3222/4420 3223/4421 -f 3223/4421 3224/4422 3225/4423 -f 2937/4424 2933/4019 3225/4423 -f 3225/4423 3226/4425 2937/4424 -f 2937/4424 3226/4425 3227/4426 -f 3228/4427 2937/4424 3227/4426 -f 3201/4395 3229/4428 3228/4429 -f 2936/4025 2937/4026 3228/4429 -f 2936/4025 3228/4429 2938/4027 -f 3229/4428 2938/4027 3228/4429 -f 2938/4027 3229/4428 2939/4028 -f 3230/4430 2939/4028 3229/4428 -f 2943/4035 3230/4430 3231/4431 -f 3229/4428 3231/4431 3230/4430 -f 3232/4432 2945/4036 3231/4431 -f 3232/4432 3233/4433 2945/4036 -f 3232/4434 3234/4435 3233/4436 -f 3236/4437 3234/4435 3235/4438 -f 3237/4439 3236/4437 3235/4438 -f 3238/4440 3236/4441 3237/4442 -f 3237/4443 3239/4444 3238/4445 -f 3238/4445 3239/4444 3240/4446 -f 3238/4445 3240/4446 3241/4447 -f 3241/4448 3242/4449 3238/4450 -f 3238/4451 3242/4449 3236/4437 -f 3242/4449 3243/4452 3236/4437 -f 3242/4449 3244/4453 3243/4452 -f 3244/4454 3245/4455 3243/4456 -f 3243/4456 3245/4455 3234/4435 -f 3245/4455 3244/4454 3246/4457 -f 3246/4458 2946/4039 3245/4459 -f 3246/4458 2947/4037 2946/4039 -f 2947/4037 3246/4458 2955/4460 -f 2955/4460 3246/4458 2956/4461 -f 2956/4462 3246/4457 3247/4463 -f 3247/4463 3248/4464 2956/4462 -f 3248/4465 3247/4466 3249/4467 -f 3249/4467 3250/4468 3248/4465 -f 3250/4468 3251/4469 3252/4470 -f 3252/4471 3253/4472 3250/4468 -f 3254/4473 3253/4472 3252/4471 -f 3252/4470 3255/4474 3254/4473 -f 3257/4475 3256/4476 3254/4473 -f 3257/4475 3258/4477 3256/4476 -f 3259/4478 3256/4479 3258/4480 -f 3260/4481 3259/4478 3258/4480 -f 3258/4482 3257/4483 3260/4484 -f 3257/4483 3261/4485 3260/4484 -f 3262/4486 3261/4485 3263/4487 -f 3263/4488 3264/4489 3262/4490 -f 3262/4490 3264/4489 3265/4491 -f 3262/4490 3265/4491 3266/4492 -f 3267/4493 3262/4490 3266/4492 -f 3267/4494 3268/4495 3261/4485 -f 3261/4485 3268/4495 3260/4484 -f 3268/4496 3269/4497 3260/4481 -f 3269/4497 3268/4496 3270/4498 -f 3270/4499 3051/4216 3269/4500 -f 3271/4501 3270/4498 3268/4496 -f 3272/4502 3270/4498 3271/4501 -f 3272/4502 3271/4501 3273/4503 -f 3273/4503 3274/4504 3272/4502 -f 3274/4505 3275/4506 3272/4507 -f 3272/4507 3275/4506 3052/4508 -f 3276/4509 3277/4510 3275/4506 -f 3275/4506 3277/4510 3054/4511 -f 3276/4509 3278/4512 3277/4510 -f 3278/4512 3279/4513 3277/4514 -f 3277/4514 3279/4513 3056/4221 -f 3056/4221 3279/4513 3280/4515 -f 3056/4221 3280/4515 3281/4516 -f 3055/4219 3056/4221 3281/4516 -f 3055/4219 3281/4516 3057/4222 -f 3281/4516 3282/4517 3057/4222 -f 3057/4222 3282/4517 3058/4223 -f 3282/4517 3283/4518 3058/4223 -f 3282/4517 3284/4519 3283/4518 -f 3284/4520 3285/4521 3283/4522 -f 3283/4522 3285/4521 3061/4227 -f 3284/4520 3286/4523 3285/4521 -f 3287/4524 3285/4521 3286/4523 -f 3288/4525 3063/4229 3287/4524 -f 3288/4525 3289/4526 3063/4229 -f 3289/4526 3064/4230 3063/4229 -f 3289/4526 3290/4527 3064/4230 -f 3064/4230 3291/4528 3065/4231 -f 3065/4231 3291/4528 3292/4529 -f 3065/4231 3292/4529 3293/4530 -f 3293/4530 3294/4531 3065/4231 -f 3294/4531 3295/4532 3067/4233 -f 3297/4533 3500/4534 3298/4246 -f 3298/4246 3071/4535 3296/4536 -f 3071/4239 3070/4238 3296/4537 -f 3296/4537 3070/4238 3299/4538 -f 3299/4538 3295/4539 3296/4537 -f 3295/4532 3299/4540 3067/4233 -f 3069/4235 3067/4233 3299/4540 -f 3073/4241 3072/4242 3071/4535 -f 3298/4246 3073/4241 3071/4535 -f 3076/4244 3073/4241 3298/4246 -f 3077/4247 3298/4246 3300/4541 -f 3300/4541 3301/4542 3302/4543 -f 3302/4543 3077/4247 3300/4541 -f 3302/4544 3303/4545 3077/4546 -f 3304/4547 3077/4546 3303/4545 -f 3304/4548 3305/4549 3306/4550 -f 3306/4550 3305/4549 3078/4248 -f 3306/4550 3078/4248 3075/4245 -f 3075/4245 3077/4247 3306/4550 -f 3305/4551 3240/4446 3078/4552 -f 3078/4552 3240/4446 3307/4553 -f 3239/4444 3307/4553 3240/4446 -f 3308/4554 3307/4553 3239/4444 -f 3309/4555 3308/4554 3239/4444 -f 3237/4556 3310/4557 3309/4558 -f 3237/4556 3311/4559 3310/4557 -f 3310/4557 3311/4559 3312/4560 -f 3310/4557 3312/4560 3313/4561 -f 3313/4562 3314/4563 3310/4557 -f 3313/4562 3315/4564 3314/4563 -f 3315/4564 3316/4565 3317/4566 -f 3317/4567 3318/4568 3319/4569 -f 3319/4570 3320/4571 3317/4566 -f 3317/4566 3320/4571 3315/4564 -f 3320/4571 3321/4572 3315/4564 -f 3320/4573 3322/4574 3321/4575 -f 3322/4574 3323/4576 3321/4575 -f 3321/4575 3323/4576 3324/4577 -f 3321/4572 3324/4578 3314/4563 -f 3314/4563 3324/4578 3309/4558 -f 3323/4576 3325/4579 3324/4577 -f 3308/4580 3324/4577 3325/4579 -f 3325/4579 3079/4249 3308/4580 -f 3079/4249 3325/4579 980/1338 -f 3325/4579 3082/4252 980/1338 -f 3325/4579 3323/4576 3082/4252 -f 3323/4576 3326/4581 3082/4252 -f 3082/4252 3326/4581 3327/4582 -f 3327/4582 3326/4581 3328/4583 -f 3327/4584 3453/4585 3083/4586 -f 3083/4253 3453/4587 3329/4588 -f 3329/4588 3330/4589 3083/4253 -f 3083/4253 3330/4589 3331/4590 -f 3083/4253 3331/4590 3081/4250 -f 3332/3845 3331/4590 3330/4589 -f 3332/3845 3330/4589 3333/4591 -f 3086/3843 3333/4591 3334/4592 -f 3337/4593 3335/4594 3336/4595 -f 3338/4596 3339/4597 3337/4593 -f 3335/4594 3337/4593 3339/4597 -f 3335/4594 3339/4597 3092/4598 -f 3116/4294 3092/4598 3339/4597 -f 3339/4597 3117/4295 3116/4294 -f 3117/4295 3339/4597 3130/4599 -f 3341/4600 3092/4598 3116/4294 -f 3341/4601 3116/4602 3342/4603 -f 3343/4604 3341/4600 3344/4605 -f 3343/4606 3344/4607 3345/4608 -f 3345/4608 3344/4607 3346/4609 -f 3347/4610 3348/4611 3349/4612 -f 2801/3850 3347/4613 3349/4614 -f 3348/4611 3350/4615 3349/4612 -f 3349/4612 3350/4615 3351/4616 -f 3349/4614 3351/4617 3093/4262 -f 3093/4262 3351/4617 3094/4263 -f 3352/4618 3098/4267 3094/4263 -f 3352/4618 3353/4619 3099/4268 -f 3376/4620 3378/4621 3353/4619 -f 3354/4622 3106/4623 3104/4624 -f 3355/4625 3106/4623 3354/4622 -f 3355/4625 3356/4626 3106/4623 -f 3107/4627 3356/4626 3357/4628 -f 3107/4629 3357/4630 3358/4631 -f 3108/4632 3107/4627 3358/4633 -f 3110/4282 3108/4634 3358/4631 -f 3110/4282 3358/4631 3114/4292 -f 3358/4631 3357/4630 3340/4635 -f 3357/4630 3359/4636 3340/4635 -f 3342/4637 3340/4635 3359/4636 -f 3360/4638 3341/4601 3342/4603 -f 3342/4603 3361/4639 3360/4638 -f 3360/4638 3361/4639 3362/4640 -f 3364/4641 3363/4642 3365/4643 -f 3366/4644 3367/4645 3365/4646 -f 3368/4647 3365/4646 3367/4645 -f 3402/4648 3368/4647 3369/4649 -f 3402/4650 3370/4651 3365/4643 -f 3365/4643 3370/4651 3364/4641 -f 3364/4641 3370/4651 3371/4652 -f 3372/4653 3364/4641 3371/4652 -f 3371/4652 3407/4654 3372/4653 -f 3408/4655 3373/4656 3407/4654 -f 3374/4657 3407/4658 3373/4659 -f 3346/4609 3347/4610 3345/4608 -f 3347/4610 3346/4609 3348/4611 -f 3346/4609 3375/4660 3348/4611 -f 3375/4660 3374/4657 3348/4611 -f 3350/4615 3348/4611 3374/4657 -f 3373/4659 3350/4615 3374/4657 -f 3376/4661 3377/4662 3350/4615 -f 3377/4662 3376/4661 3352/4663 -f 3376/4661 3373/4659 3378/4664 -f 3376/4661 3350/4615 3373/4659 -f 3375/4660 3372/4665 3374/4657 -f 3408/4655 3378/4621 3373/4656 -f 3379/4666 3353/4619 3378/4621 -f 3379/4666 3378/4621 3380/4667 -f 3381/4668 3379/4669 3380/4670 -f 3381/4671 3104/4276 3103/4275 -f 3381/4671 3103/4275 3101/4274 -f 3382/4672 3104/4276 3381/4671 -f 3383/4673 3382/4672 3381/4671 -f 3386/4674 3384/4675 3385/4676 -f 3387/4677 3388/4678 3389/4679 -f 3389/4679 3385/4676 3387/4677 -f 3391/4680 3386/4674 3385/4676 -f 3386/4674 3382/4672 3384/4675 -f 3392/4681 3386/4674 3391/4680 -f 3382/4672 3392/4681 3367/4645 -f 3392/4681 3382/4672 3386/4674 -f 3368/4647 3393/4682 3369/4649 -f 3394/4683 3369/4649 3393/4682 -f 3394/4684 3393/4685 3395/4686 -f 3396/4687 3394/4683 3395/4688 -f 3397/4689 3398/4690 3399/4691 -f 3400/4692 3401/4693 3396/4687 -f 3394/4683 3402/4648 3369/4649 -f 3398/4694 3404/4695 3403/4696 -f 3403/4696 3404/4695 3370/4651 -f 3405/4697 3371/4652 3370/4651 -f 3405/4698 3393/4685 3416/4699 -f 3405/4698 3416/4699 3406/4700 -f 3406/4701 3407/4654 3371/4652 -f 3380/4667 3378/4621 3408/4655 -f 3408/4655 3409/4702 3380/4667 -f 3380/4667 3409/4702 3410/4703 -f 3412/4704 3411/4705 3380/4667 -f 3412/4706 3413/4707 3411/4708 -f 3414/4709 3413/4707 3388/4678 -f 3380/4670 3413/4710 3414/4711 -f 3380/4670 3414/4711 3383/4712 -f 3380/4670 3411/4713 3413/4710 -f 3414/4709 3385/4676 3383/4673 -f 3414/4709 3388/4678 3387/4677 -f 3388/4678 3413/4707 3412/4706 -f 3389/4679 3388/4678 3412/4706 -f 3391/4680 3390/4714 3415/4715 -f 3415/4715 3416/4716 3367/4645 -f 3367/4645 3392/4681 3415/4715 -f 3415/4715 3392/4681 3391/4680 -f 3412/4706 3415/4715 3390/4714 -f 3410/4717 3409/4718 3412/4706 -f 3412/4706 3409/4718 3415/4715 -f 3409/4719 3406/4720 3415/4715 -f 3412/4706 3390/4714 3389/4679 -f 3380/4667 3410/4703 3412/4704 -f 3408/4655 3406/4701 3409/4702 -f 3407/4654 3406/4701 3408/4655 -f 3416/4716 3415/4715 3406/4720 -f 3405/4698 3404/4721 3393/4685 -f 3406/4701 3371/4652 3405/4697 -f 3370/4651 3404/4695 3405/4697 -f 3393/4685 3404/4721 3395/4686 -f 3398/4694 3397/4722 3404/4695 -f 3397/4723 3396/4724 3404/4721 -f 3401/4693 3418/4725 3417/4726 -f 3400/4692 3418/4725 3401/4693 -f 3419/4727 3418/4725 3400/4692 -f 3399/4691 3398/4690 3418/4725 -f 3399/4691 3418/4725 3419/4727 -f 3418/4725 3398/4690 3417/4726 -f 3417/4728 3398/4694 3403/4696 -f 3403/4696 3402/4650 3417/4728 -f 3370/4651 3402/4650 3403/4696 -f 3394/4683 3417/4726 3402/4648 -f 3401/4693 3417/4726 3394/4683 -f 3419/4727 3400/4692 3397/4689 -f 3399/4691 3419/4727 3397/4689 -f 3397/4689 3400/4692 3396/4687 -f 3404/4721 3396/4724 3395/4686 -f 3401/4693 3394/4683 3396/4687 -f 3416/4716 3393/4682 3368/4647 -f 3367/4645 3416/4716 3368/4647 -f 3366/4644 3354/4729 3382/4672 -f 3363/4730 3360/4638 3366/4731 -f 3360/4732 3362/4733 3366/4644 -f 3354/4729 3366/4644 3362/4733 -f 3354/4622 3362/4640 3355/4625 -f 3362/4640 3356/4626 3355/4625 -f 3391/4680 3385/4676 3390/4714 -f 3390/4714 3385/4676 3389/4679 -f 3385/4676 3414/4709 3387/4677 -f 3385/4676 3384/4675 3383/4673 -f 3384/4675 3382/4672 3383/4673 -f 3382/4672 3354/4729 3104/4276 -f 3380/4670 3383/4712 3381/4668 -f 3379/4669 3381/4668 3101/4272 -f 3101/4272 3099/4271 3379/4669 -f 3353/4619 3379/4666 3099/4268 -f 3374/4657 3372/4665 3407/4658 -f 3372/4665 3375/4660 3364/4734 -f 3364/4734 3375/4660 3344/4607 -f 3364/4641 3344/4605 3341/4600 -f 3365/4646 3368/4647 3402/4648 -f 3366/4644 3382/4672 3367/4645 -f 3363/4735 3366/4644 3365/4646 -f 3341/4600 3363/4642 3364/4641 -f 3362/4640 3361/4639 3356/4626 -f 3361/4639 3359/4736 3357/4628 -f 3342/4603 3359/4736 3361/4639 -f 3341/4601 3360/4638 3363/4730 -f 3340/4635 3114/4292 3358/4631 -f 3340/4635 3115/4293 3114/4292 -f 3356/4626 3361/4639 3357/4628 -f 3352/4663 3376/4661 3353/4737 -f 3094/4263 3377/4738 3352/4618 -f 3351/4617 3377/4738 3094/4263 -f 3350/4615 3377/4662 3351/4616 -f 3346/4609 3344/4607 3375/4660 -f 3091/4260 3341/4600 3343/4604 -f 3116/4602 3340/4739 3342/4603 -f 3130/4599 3339/4597 3338/4596 -f 3130/4599 3338/4596 3420/4740 -f 3338/4596 3421/4741 3420/4740 -f 3420/4742 3421/4743 3132/4320 -f 3421/4741 3135/4744 3132/4745 -f 3136/4323 3422/4746 3139/4327 -f 3142/4332 3422/4746 3423/4747 -f 3425/4748 3145/4336 3423/4747 -f 3426/4749 3145/4336 3425/4748 -f 3426/4749 3425/4748 3427/4750 -f 3145/4336 3426/4749 3143/4334 -f 3144/4335 3428/4751 3146/4337 -f 3229/4428 3157/4346 3147/4338 -f 3146/4337 3229/4428 3147/4338 -f 3146/4337 3429/4752 3229/4428 -f 3229/4428 3429/4752 3430/4753 -f 3229/4428 3430/4753 3232/4754 -f 3431/4755 3232/4434 3430/4756 -f 3430/4756 3432/4757 3431/4755 -f 3433/4758 3431/4759 3432/4760 -f 3316/4761 3313/4561 3433/4758 -f 3433/4758 3434/4762 3316/4763 -f 3316/4764 3434/4762 3435/4765 -f 3435/4766 3434/4762 3436/4767 -f 3435/4768 3436/4769 3266/4770 -f 3266/4492 3318/4568 3435/4771 -f 3435/4771 3318/4568 3317/4567 -f 3265/4491 3437/4772 3318/4568 -f 3438/4773 3437/4772 3265/4491 -f 3265/4491 3264/4489 3438/4773 -f 3438/4773 3264/4489 3439/4774 -f 3440/4775 3441/4776 3319/4777 -f 3442/4778 3319/4777 3441/4776 -f 3443/4779 3442/4778 3441/4776 -f 3443/4779 3441/4776 3444/4780 -f 3290/4527 3443/4781 3444/4782 -f 3445/4783 3443/4781 3290/4527 -f 3290/4527 3446/4784 3445/4783 -f 3447/4785 3448/4786 3445/4783 -f 3447/4785 3449/4787 3448/4786 -f 3449/4787 3452/4788 3448/4786 -f 3452/4789 3450/4790 3448/4791 -f 3448/4791 3450/4790 3442/4778 -f 3452/4789 3328/4583 3450/4790 -f 3450/4790 3451/4792 3442/4778 -f 3451/4792 3450/4790 3326/4581 -f 3326/4581 3322/4574 3451/4792 -f 3319/4777 3437/4793 3440/4775 -f 3322/4574 3326/4581 3323/4576 -f 3329/4794 3453/4585 3454/4795 -f 3330/4589 3455/4796 3333/4591 -f 3334/4592 3333/4591 3455/4796 -f 3334/4797 3455/4798 3456/4799 -f 3334/4797 3456/4799 3087/4254 -f 3087/4254 3456/4799 3457/4257 -f 3089/4259 3458/4800 3090/4258 -f 3335/4594 3091/4260 3482/4801 -f 3336/4595 3335/4594 3459/4802 -f 3336/4803 3459/4802 3135/4322 -f 3135/4322 3459/4802 3460/4804 -f 3136/4323 3135/4322 3460/4804 -f 3424/4805 3423/4747 3422/4746 -f 3460/4804 3424/4805 3136/4323 -f 3424/4805 3460/4804 3461/4806 -f 3423/4747 3424/4805 3461/4806 -f 3461/4806 3462/4807 3425/4748 -f 3279/4513 3462/4807 3280/4515 -f 3462/4807 3463/4808 3280/4515 -f 3280/4515 3463/4808 3464/4809 -f 3463/4808 3465/4810 3464/4809 -f 3464/4809 3465/4810 3466/4811 -f 3464/4809 3466/4811 3284/4519 -f 3465/4812 3467/4813 3466/4814 -f 3466/4814 3467/4813 3286/4523 -f 3465/4812 3468/4815 3467/4813 -f 3469/4816 3467/4813 3468/4815 -f 3470/4817 3469/4816 3471/4818 -f 3445/4783 3470/4817 3471/4818 -f 3469/4816 3472/4819 3471/4818 -f 3471/4818 3472/4819 3473/4820 -f 3447/4785 3471/4818 3473/4820 -f 3475/4821 3474/4822 3476/4823 -f 3449/4787 3477/4824 3453/4585 -f 3453/4585 3452/4788 3449/4787 -f 3477/4824 3449/4787 3474/4822 -f 3475/4821 3454/4795 3477/4824 -f 3455/4798 3454/4795 3475/4821 -f 3475/4821 3476/4823 3456/4799 -f 3456/4799 3476/4823 3478/4825 -f 3456/4799 3478/4825 3479/4826 -f 3479/4826 3478/4825 3480/4827 -f 3479/4826 3480/4827 3481/4828 -f 3457/4257 3479/4826 3481/4828 -f 3089/4259 3481/4828 3458/4800 -f 3458/4800 3091/4260 3090/4258 -f 3482/4801 3091/4260 3458/4800 -f 3482/4801 3459/4802 3335/4594 -f 3460/4804 3484/4829 3483/4830 -f 3461/4806 3483/4830 3485/4831 -f 3485/4831 3462/4807 3461/4806 -f 3486/4832 3487/4833 3485/4831 -f 3463/4808 3485/4831 3487/4833 -f 3463/4808 3487/4833 3488/4834 -f 3487/4835 3489/4836 3488/4837 -f 3488/4837 3489/4836 3468/4838 -f 3489/4836 3472/4819 3468/4838 -f 3487/4835 3490/4839 3489/4836 -f 3490/4839 3472/4819 3489/4836 -f 3490/4839 3491/4840 3472/4819 -f 3492/4841 3491/4840 3490/4839 -f 3486/4842 3492/4841 3490/4839 -f 3493/4843 3492/4841 3486/4842 -f 3494/4844 3493/4843 3483/4830 -f 3494/4844 3495/4845 3493/4843 -f 3496/4846 3493/4843 3495/4845 -f 3497/4847 3496/4846 3495/4845 -f 3495/4845 3498/4848 3497/4847 -f 3494/4844 3484/4849 3498/4848 -f 3482/4801 3498/4848 3484/4849 -f 3459/4802 3482/4801 3484/4849 -f 3498/4848 3482/4801 3497/4847 -f 3482/4801 3458/4800 3497/4847 -f 3497/4847 3481/4828 3496/4846 -f 3498/4848 3495/4845 3494/4844 -f 3493/4843 3496/4846 3492/4841 -f 3492/4841 3496/4846 3491/4840 -f 3496/4846 3480/4827 3491/4840 -f 3473/4820 3491/4840 3480/4827 -f 3486/4842 3490/4839 3487/4835 -f 3485/4831 3493/4843 3486/4832 -f 3483/4830 3493/4843 3485/4831 -f 3483/4830 3484/4829 3494/4850 -f 3459/4802 3484/4829 3460/4804 -f 3497/4847 3458/4800 3481/4828 -f 3496/4846 3481/4828 3480/4827 -f 3480/4827 3478/4825 3473/4820 -f 3447/4785 3478/4825 3476/4823 -f 3475/4821 3477/4824 3474/4822 -f 3476/4823 3474/4822 3447/4785 -f 3447/4785 3473/4820 3478/4825 -f 3445/4783 3471/4818 3447/4785 -f 3473/4820 3472/4819 3491/4840 -f 3288/4525 3469/4816 3470/4851 -f 3446/4784 3288/4525 3470/4851 -f 3289/4526 3288/4525 3446/4784 -f 3469/4816 3468/4838 3472/4819 -f 3287/4524 3467/4813 3469/4816 -f 3488/4837 3468/4838 3465/4852 -f 3463/4808 3488/4834 3465/4810 -f 3462/4807 3485/4831 3463/4808 -f 3278/4512 3462/4807 3279/4513 -f 3425/4748 3462/4807 3278/4512 -f 3460/4804 3483/4830 3461/4806 -f 3424/4805 3422/4746 3136/4323 -f 3457/4257 3481/4828 3089/4259 -f 3457/4257 3456/4799 3479/4826 -f 3475/4821 3456/4799 3455/4798 -f 3330/4853 3454/4795 3455/4798 -f 3453/4585 3477/4824 3454/4795 -f 3327/4584 3452/4788 3453/4585 -f 3328/4583 3326/4581 3450/4790 -f 3474/4822 3449/4787 3447/4785 -f 3446/4784 3470/4851 3445/4783 -f 3290/4527 3289/4526 3446/4784 -f 3445/4783 3448/4786 3443/4781 -f 3291/4854 3499/4855 3292/4856 -f 3297/4533 3292/4856 3499/4855 -f 3499/4855 3500/4534 3297/4533 -f 3438/4857 3301/4542 3500/4534 -f 3500/4534 3499/4855 3438/4857 -f 3440/4775 3438/4857 3499/4855 -f 3499/4855 3501/4858 3440/4775 -f 3292/4856 3297/4533 3293/4859 -f 3291/4854 3501/4858 3499/4855 -f 3444/4780 3501/4858 3291/4854 -f 3444/4780 3441/4776 3501/4858 -f 3448/4791 3442/4778 3443/4779 -f 3319/4777 3442/4778 3451/4792 -f 3441/4776 3440/4775 3501/4858 -f 3438/4857 3439/4860 3301/4542 -f 3502/4861 3439/4862 3264/4863 -f 3251/4864 3303/4545 3255/4865 -f 3251/4864 3304/4547 3303/4545 -f 3502/4861 3255/4865 3303/4545 -f 3255/4865 3502/4861 3263/4866 -f 3263/4487 3257/4483 3255/4867 -f 3302/4544 3439/4862 3502/4861 -f 3438/4857 3440/4775 3437/4793 -f 3266/4868 3436/4767 3503/4869 -f 3436/4767 3271/4870 3503/4869 -f 3503/4869 3271/4870 3267/4494 -f 3434/4762 3273/4871 3436/4767 -f 3273/4871 3434/4762 3504/4872 -f 3504/4872 3434/4762 3433/4758 -f 3504/4872 3433/4758 3432/4760 -f 3312/4560 3431/4759 3433/4758 -f 3430/4756 3504/4873 3432/4757 -f 3504/4873 3430/4756 3274/4504 -f 3430/4753 3276/4509 3274/4505 -f 3430/4753 3429/4752 3276/4509 -f 3429/4752 3146/4337 3428/4751 -f 3428/4751 3427/4874 3429/4752 -f 3429/4752 3427/4874 3278/4512 -f 3426/4749 3428/4751 3144/4335 -f 3428/4751 3426/4749 3427/4750 -f 3427/4750 3425/4748 3278/4512 -f 3461/4806 3425/4748 3423/4747 -f 3142/4332 3423/4747 3145/4336 -f 3421/4741 3336/4595 3135/4744 -f 3337/4593 3336/4595 3421/4741 -f 3338/4596 3337/4593 3421/4741 -f 3089/4259 3088/3847 3457/4257 -f 3087/4254 3086/4256 3334/4797 -f 3332/3845 3333/4591 3086/3843 -f 3084/3842 3331/4590 3332/3845 -f 3329/4794 3454/4795 3330/4853 -f 3327/4582 3328/4583 3452/4789 -f 3451/4792 3322/4574 3320/4573 -f 3319/4777 3451/4792 3320/4573 -f 3319/4569 3318/4568 3437/4772 -f 3435/4875 3317/4566 3316/4565 -f 3316/4565 3315/4564 3313/4562 -f 3315/4564 3321/4572 3314/4563 -f 3313/4561 3312/4560 3433/4758 -f 3312/4560 3234/4435 3431/4759 -f 3311/4876 3234/4435 3312/4560 -f 3235/4438 3311/4559 3237/4556 -f 3310/4557 3314/4563 3309/4558 -f 3324/4877 3308/4554 3309/4555 -f 3308/4580 3079/4249 3307/4878 -f 3241/4447 3305/4551 3505/4879 -f 3505/4880 3249/4881 3241/4448 -f 3249/4881 3242/4449 3241/4448 -f 3249/4881 3244/4453 3242/4449 -f 3249/4881 3247/4882 3244/4453 -f 3305/4551 3304/4883 3505/4879 -f 3505/4884 3304/4547 3251/4864 -f 3306/4885 3077/4546 3304/4547 -f 3502/4861 3303/4545 3302/4544 -f 3302/4543 3301/4542 3439/4860 -f 3500/4534 3301/4542 3300/4541 -f 3300/4541 3298/4246 3500/4534 -f 3297/4533 3296/4536 3293/4859 -f 3295/4532 3293/4530 3296/4886 -f 3298/4246 3296/4536 3297/4533 -f 3293/4530 3295/4532 3294/4531 -f 3064/4230 3444/4782 3291/4528 -f 3290/4527 3444/4782 3064/4230 -f 3288/4525 3287/4524 3469/4816 -f 3287/4524 3286/4523 3467/4813 -f 3062/4228 3285/4521 3287/4524 -f 3466/4814 3286/4523 3284/4520 -f 3464/4809 3284/4519 3282/4517 -f 3281/4516 3464/4809 3282/4517 -f 3280/4515 3464/4809 3281/4516 -f 3429/4752 3278/4512 3276/4509 -f 3274/4505 3276/4509 3275/4506 -f 3274/4504 3273/4503 3504/4873 -f 3436/4767 3273/4887 3271/4870 -f 3272/4888 3052/4214 3270/4499 -f 3270/4499 3052/4214 3051/4216 -f 3267/4494 3271/4870 3268/4495 -f 3266/4770 3503/4889 3267/4493 -f 3261/4485 3262/4486 3267/4494 -f 3318/4568 3266/4492 3265/4491 -f 3263/4866 3502/4861 3264/4863 -f 3263/4487 3261/4485 3257/4483 -f 3259/4478 3260/4481 3269/4497 -f 3269/4500 3050/4211 3259/4890 -f 3259/4890 3050/4211 2989/4095 -f 2988/4094 3259/4891 2989/4095 -f 2988/4094 2989/4095 2748/3782 -f 2958/4053 3506/4892 2988/4094 -f 2988/4094 3506/4892 3259/4891 -f 3256/4479 3259/4478 3506/4893 -f 3506/4893 3253/4894 3256/4479 -f 3253/4894 3506/4893 2957/4895 -f 2957/4895 3248/4464 3253/4894 -f 3255/4896 3257/4475 3254/4473 -f 3254/4473 3256/4476 3253/4472 -f 3252/4897 3251/4864 3255/4865 -f 3250/4898 3505/4884 3251/4864 -f 3250/4468 3253/4472 3248/4465 -f 3250/4899 3249/4881 3505/4880 -f 3247/4463 3246/4457 3244/4454 -f 3241/4447 3240/4446 3305/4551 -f 3309/4555 3239/4444 3237/4443 -f 3236/4437 3243/4452 3234/4435 -f 3311/4900 3235/4438 3234/4435 -f 3233/4436 3234/4435 3245/4455 -f 3245/4459 2944/4033 3233/4433 -f 3232/4434 3431/4755 3234/4435 -f 3232/4754 3231/4431 3229/4428 -f 2940/4029 2939/4028 3230/4430 -f 3157/4346 3229/4428 3201/4395 -f 3228/4429 3227/4901 3201/4395 -f 3201/4395 3227/4901 3507/4902 -f 3509/4903 3507/4902 3508/4904 -f 3508/4904 3510/4905 3509/4903 -f 3510/4906 3511/4907 3509/4908 -f 3511/4907 3512/4909 3509/4908 -f 3509/4908 3512/4909 3513/4910 -f 3507/4902 3513/4911 3514/4912 -f 3507/4902 3514/4912 3201/4395 -f 3514/4912 3515/4913 3200/4394 -f 3515/4914 3514/4915 3513/4910 -f 3513/4910 3512/4909 3515/4914 -f 3515/4914 3512/4909 3516/4916 -f 3515/4914 3516/4916 3202/4917 -f 3202/4917 3516/4916 3517/4918 -f 3511/4907 3516/4916 3512/4909 -f 3518/4919 3519/4920 3511/4907 -f 3518/4919 3520/4921 3519/4920 -f 3520/4921 3521/4922 3519/4920 -f 3521/4922 3517/4918 3519/4920 -f 3519/4920 3517/4918 3516/4916 -f 3203/4923 3517/4918 3522/4924 -f 3204/4925 3522/4924 3523/4926 -f 3205/4927 3523/4926 3524/4928 -f 3206/4929 3524/4928 3525/4930 -f 3525/4930 3535/4931 3526/4932 -f 3526/4932 3535/4931 3534/4933 -f 3526/4932 3534/4933 3209/4404 -f 3209/4404 3534/4933 3533/4934 -f 3209/4404 3533/4934 3210/4406 -f 3210/4406 3532/4935 3211/4407 -f 3211/4407 3531/4936 3213/4410 -f 3527/4937 3213/4410 3531/4936 -f 3529/4938 3527/4937 3528/4939 -f 3529/4938 3214/4412 3213/4410 -f 3529/4938 3528/4939 3215/4413 -f 3215/4413 3528/4939 3216/4415 -f 3215/4413 3216/4415 2928/4015 -f 3218/4416 3216/4415 3528/4939 -f 3530/4940 3218/4416 3528/4939 -f 3536/4941 3534/4933 3535/4931 -f 3537/4942 3536/4941 3535/4931 -f 3538/4943 3537/4942 3535/4931 -f 3538/4943 3535/4931 3524/4928 -f 3538/4943 3539/4944 3537/4942 -f 3540/4945 3537/4942 3539/4944 -f 3540/4945 3539/4944 3541/4946 -f 3542/4947 3540/4948 3541/4949 -f 3543/4950 3542/4947 3541/4949 -f 3543/4950 3541/4949 3544/4951 -f 3545/4952 3543/4950 3544/4951 -f 3545/4952 3544/4951 3546/4953 -f 3547/4954 3545/4952 3546/4953 -f 3547/4954 3546/4953 3548/4955 -f 3549/4956 3547/4954 3548/4955 -f 3551/4957 3547/4954 3549/4956 -f 3551/4957 3550/4958 3552/4959 -f 3551/4957 3552/4959 3545/4952 -f 3553/4960 3552/4959 3550/4958 -f 3554/4961 3553/4960 3550/4958 -f 3554/4961 3550/4958 3555/4962 -f 3554/4961 3555/4962 3556/4963 -f 3554/4961 3556/4963 3557/4964 -f 3557/4964 3558/4965 3554/4961 -f 3554/4961 3558/4965 3553/4960 -f 3559/4966 3553/4960 3558/4965 -f 3558/4965 3560/4967 3559/4966 -f 3561/4968 3559/4966 3560/4967 -f 3562/4969 3564/4970 3563/4971 -f 3563/4971 3564/4970 3565/4972 -f 3563/4971 3565/4972 3566/4973 -f 3567/4974 3563/4971 3566/4973 -f 3559/4966 3567/4974 3553/4960 -f 3567/4974 3559/4966 3562/4969 -f 3552/4959 3553/4960 3567/4974 -f 3567/4974 3542/4947 3552/4959 -f 3567/4974 3566/4973 3542/4947 -f 3562/4969 3563/4971 3567/4974 -f 3566/4973 3565/4972 3540/4948 -f 3565/4972 3564/4970 3568/4975 -f 3565/4976 3568/4975 3537/4942 -f 3568/4975 3536/4941 3537/4942 -f 3568/4975 3569/4977 3536/4941 -f 3570/4978 3569/4979 3568/4975 -f 3570/4978 3571/4980 3569/4979 -f 3569/4981 3571/4982 3534/4933 -f 3570/4978 3572/4983 3571/4982 -f 3572/4983 3573/4984 3571/4982 -f 3571/4982 3573/4984 3533/4934 -f 3572/4983 3574/4985 3573/4984 -f 3573/4984 3574/4985 3532/4935 -f 3574/4985 3575/4986 3530/4940 -f 3564/4970 3562/4969 3561/4968 -f 3570/4978 3564/4970 3561/4968 -f 3570/4978 3568/4975 3564/4970 -f 3561/4968 3575/4986 3572/4983 -f 3561/4968 3560/4967 3575/4986 -f 3560/4967 3576/4987 3575/4986 -f 3575/4986 3576/4987 3530/4940 -f 3219/4417 3218/4416 3576/4987 -f 3219/4417 3576/4987 3577/4988 -f 3577/4989 3576/4987 3560/4967 -f 3577/4989 3560/4967 3558/4965 -f 3572/4983 3575/4986 3574/4985 -f 3561/4968 3572/4983 3570/4978 -f 3562/4969 3559/4966 3561/4968 -f 3557/4964 3577/4989 3558/4965 -f 3221/4419 3577/4988 3557/4990 -f 3557/4990 3578/4991 3221/4419 -f 3221/4419 3578/4991 3222/4420 -f 3223/4421 3222/4420 3578/4991 -f 3224/4422 3223/4421 3579/4992 -f 3579/4992 3580/4993 3224/4422 -f 3224/4422 3580/4993 3226/4425 -f 3224/4422 3226/4425 3225/4423 -f 3580/4993 3581/4994 3226/4425 -f 3581/4994 3227/4426 3226/4425 -f 3507/4995 3581/4994 3582/4996 -f 3507/4995 3227/4426 3581/4994 -f 3582/4996 3581/4994 3580/4993 -f 3580/4997 3510/4905 3582/4998 -f 3583/4999 3510/4905 3580/4997 -f 3518/4919 3583/5000 3584/5001 -f 3518/4919 3584/5001 3548/5002 -f 3586/5003 3584/5001 3585/5004 -f 3578/4991 3586/5003 3585/5005 -f 3579/4992 3578/4991 3585/5005 -f 3583/5000 3579/4992 3585/5004 -f 3556/5006 3586/5003 3578/4991 -f 3556/4963 3555/4962 3586/5003 -f 3555/4962 3549/4956 3586/5003 -f 3586/5003 3549/4956 3584/5001 -f 3583/5000 3585/5004 3584/5001 -f 3583/5000 3580/4993 3579/4992 -f 3583/5000 3511/4907 3510/4906 -f 3223/4421 3578/4991 3579/4992 -f 3557/4990 3556/5006 3578/4991 -f 3555/4962 3550/4958 3549/4956 -f 3550/4958 3551/4957 3549/4956 -f 3548/4955 3584/5001 3549/4956 -f 3548/5002 3546/5007 3520/4921 -f 3546/5007 3587/5008 3520/4921 -f 3551/4957 3545/4952 3547/4954 -f 3546/5007 3544/5009 3587/5008 -f 3544/5009 3588/5010 3587/5008 -f 3587/5008 3588/5010 3589/5011 -f 3587/5008 3589/5011 3521/4922 -f 3589/5011 3522/4924 3521/4922 -f 3589/5011 3588/5010 3590/5012 -f 3590/5012 3523/4926 3589/5011 -f 3590/5012 3588/5010 3539/4944 -f 3552/4959 3543/4950 3545/4952 -f 3544/5009 3541/4946 3588/5010 -f 3552/4959 3542/4947 3543/4950 -f 3566/4973 3540/4948 3542/4947 -f 3541/4946 3539/4944 3588/5010 -f 3565/4976 3537/4942 3540/4945 -f 3590/5012 3539/4944 3538/4943 -f 3538/4943 3524/4928 3590/5012 -f 3569/4977 3534/4933 3536/4941 -f 3571/4982 3533/4934 3534/4933 -f 3573/4984 3532/4935 3533/4934 -f 3574/4985 3531/4936 3532/4935 -f 3531/4936 3530/4940 3527/4937 -f 3574/4985 3530/4940 3531/4936 -f 3530/4940 3528/4939 3527/4937 -f 3576/4987 3218/4416 3530/4940 -f 3529/4938 3213/4410 3527/4937 -f 3211/4407 3532/4935 3531/4936 -f 3210/4406 3533/4934 3532/4935 -f 3207/4403 3525/4930 3526/4932 -f 3535/4931 3525/4930 3524/4928 -f 3590/5012 3524/4928 3523/4926 -f 3589/5011 3523/4926 3522/4924 -f 3521/4922 3522/4924 3517/4918 -f 3520/4921 3587/5008 3521/4922 -f 3548/5002 3520/4921 3518/4919 -f 3583/5000 3518/4919 3511/4907 -f 3519/4920 3516/4916 3511/4907 -f 3582/4998 3510/4905 3508/4904 -f 3513/4911 3507/4902 3509/4903 -f 3508/5013 3507/4995 3582/4996 -f 3223/4421 3225/4423 2931/4017 -f 3221/4419 3222/4420 3220/4418 -f 3221/4419 3219/4417 3577/4988 -f 3217/4414 3220/4418 2930/4016 -f 2929/4013 2928/4015 3217/4414 -f 3215/4413 3214/4412 3529/4938 -f 2926/4012 2923/4009 2927/4023 -f 3212/4409 3214/4411 2923/4009 -f 3212/4408 3213/4410 3214/4412 -f 3207/4403 3526/4932 3209/4404 -f 3206/4929 3525/4930 3207/4403 -f 3205/4927 3524/4928 3206/4929 -f 3204/4925 3523/4926 3205/4927 -f 3203/4923 3522/4924 3204/4925 -f 3202/4917 3517/4918 3203/4923 -f 3200/4394 3515/4913 3202/4396 -f 3201/4395 3514/4912 3200/4394 -f 3197/4391 3161/5014 3199/4393 -f 3187/5015 3161/5014 3197/4391 -f 3197/4391 3195/4389 3187/5015 -f 2917/4003 3189/4384 3191/4385 -f 3195/4389 3190/4383 3188/4382 -f 3187/5015 3195/4389 3188/4382 -f 3185/4377 3189/4381 2916/4000 -f 3180/4373 3185/4377 3181/4374 -f 3179/4372 3183/4376 3177/4371 -f 3183/5016 3176/4367 3177/4369 -f 3183/5016 2908/3990 3176/4367 -f 2908/3990 2907/3989 3176/4367 -f 3176/4367 2907/3989 2898/4364 -f 3175/4368 2898/4364 3168/4360 -f 3167/4359 3175/4368 3168/4360 -f 3178/4370 3167/4358 3165/4356 -f 3164/4355 3162/4353 3186/4378 -f 2890/3971 2889/3970 3163/4354 -f 3187/4379 3162/4353 3161/4352 -f 3160/4350 3199/4393 3161/5014 -f 3159/4349 3199/4393 3160/4350 -f 3157/4346 3201/4395 3159/4349 -f 3158/4347 3156/4345 3157/4346 -f 3156/4345 3154/4348 3153/4343 -f 3152/4342 3155/4339 3153/4343 -f 3148/4340 2873/3949 3155/4339 -f 3426/4749 3144/4335 3143/4334 -f 3139/4327 3422/4746 3142/4332 -f 3139/4327 3138/4326 3136/4323 -f 3137/4325 3136/4323 3138/4326 -f 3133/4324 3136/4323 3137/4325 -f 3137/4325 3138/4326 2868/3942 -f 3133/4324 3132/5017 3135/4322 -f 3420/4742 3132/4320 3131/4317 -f 3129/4314 3420/4742 3131/4317 -f 3130/4316 3420/4742 3129/4314 -f 2428/3349 3116/4294 3117/4295 -f 3116/4294 3115/4293 3340/4635 -f 2424/5018 2422/4290 3115/4293 -f 2426/5019 2424/5018 3115/4293 -f 3114/4292 3111/4291 3110/4282 -f 3110/4282 3109/4281 3108/4634 -f 3109/5020 1831/2514 3108/4279 -f 3107/4278 3106/4277 3356/5021 -f 3104/4276 3106/4277 3105/2516 -f 1826/2509 3102/4273 1829/5022 -f 3099/4268 3098/4267 3352/4618 -f 3094/4263 3098/4267 3095/4264 -f 3097/4266 1821/5023 3096/4265 -f 1821/5023 2806/3856 3096/4265 -f 1821/5023 1820/2499 2806/3856 -f 2806/3856 1820/2499 1817/5024 -f 3349/4614 3093/4262 2801/3850 -f 3345/4261 3347/4613 2801/3850 -f 3345/4608 3091/5025 3343/4606 -f 3091/4260 3092/4598 3341/4600 -f 3091/4260 3335/4594 3092/4598 -f 3084/3842 3081/4250 3331/4590 -f 3083/4253 3082/4252 3327/4582 -f 3081/4250 3085/3841 3080/4251 -f 3078/4248 3307/4878 3079/4249 -f 1793/2460 3075/4245 3078/4248 -f 3074/4243 3076/4244 1793/2460 -f 1792/3840 2795/3839 3074/4243 -f 2793/3837 3071/4535 3072/4242 -f 3069/5026 3299/4538 3070/4238 -f 3294/4531 3067/4233 2791/3834 -f 3294/4531 2791/3834 3066/4232 -f 3065/4231 3294/4531 3066/4232 -f 3287/4524 3063/4229 3062/4228 -f 3062/4228 3061/4227 3285/4521 -f 2789/3832 3042/4202 3060/4226 -f 3283/4522 3061/4227 3059/4225 -f 3058/4223 3283/4518 3059/4224 -f 3277/4514 3056/4221 3054/4218 -f 3275/4506 3054/4511 3052/4508 -f 3269/4500 3051/4216 3050/4211 -f 2989/4095 3049/5027 2991/5028 -f 3049/4210 3591/5029 2991/4102 -f 2993/4098 2991/4102 3591/5029 -f 2994/4103 2993/4098 3592/5030 -f 3592/5030 3591/5029 3045/4207 -f 3045/4207 3593/5031 3592/5030 -f 3593/5031 3038/4196 3594/5032 -f 3592/5030 3593/5031 3594/5032 -f 3594/5032 2994/4103 3592/5030 -f 3595/5033 2995/4105 3594/5032 -f 2997/5034 3595/5035 3596/5036 -f 3032/4190 3596/5037 3595/5033 -f 3032/4190 3595/5033 3035/4193 -f 3037/4195 3035/4193 3595/5033 -f 3594/5032 3037/4195 3595/5033 -f 3594/5032 2995/4105 2994/4103 -f 3593/5031 3044/4204 3038/4196 -f 3591/5029 3592/5030 2993/4098 -f 3051/4216 3048/4212 3050/4211 -f 3049/4210 3046/4208 3591/5029 -f 3055/4219 3047/4206 3048/4209 -f 3045/4207 3591/5029 3046/4208 -f 3593/5031 3045/4207 3044/4204 -f 3047/4206 3044/4204 3045/4207 -f 3058/4223 3043/4205 3044/4204 -f 3043/4203 3060/4226 3042/4202 -f 3038/4196 3044/4204 3041/4200 -f 3037/4195 3594/5032 3038/4196 -f 3039/4199 3034/4192 3036/5038 -f 2785/3828 3034/4192 3039/4199 -f 3033/4191 3034/4192 2785/3828 -f 3597/5039 3031/5040 3033/4191 -f 2784/3827 3597/5039 3033/4191 -f 3597/5039 2781/4188 3031/5040 -f 3597/5039 2782/3826 2781/4188 -f 3033/4191 3032/4190 3035/4193 -f 2999/4107 3596/5037 3032/4190 -f 2779/3824 3006/4125 3029/4187 -f 3029/4187 3006/4125 3002/4111 -f 3005/4123 3003/4116 2752/3788 -f 3030/4186 3002/4111 2999/4107 -f 3000/5041 3001/4112 3003/4114 -f 2998/5042 3000/5041 3003/4114 -f 3596/5037 2999/4107 2996/4104 -f 3596/5036 2996/4104 2997/5034 -f 2995/4105 3595/5033 2997/4106 -f 2752/3788 2994/4103 2996/4104 -f 2993/4098 2750/3787 2992/4099 -f 2992/4097 2750/3785 2749/3784 -f 2989/4095 2991/5028 2990/4096 -f 2961/4057 2985/4090 2986/4089 -f 2962/4058 2986/4089 3598/5043 -f 3649/5044 2962/4058 3598/5043 -f 3649/5044 3598/5045 3599/5046 -f 3599/5046 3601/5047 3600/5048 -f 3600/5048 3603/5049 3602/5050 -f 3602/5050 3605/5051 3604/5052 -f 3605/5051 3606/5053 3604/5052 -f 3604/5052 3606/5053 3607/5054 -f 2966/5055 3607/5056 3608/5057 -f 2966/5055 3608/5057 3609/5058 -f 3610/5059 3609/5058 3608/5057 -f 3606/5060 3610/5059 3608/5057 -f 3606/5053 3611/5061 3610/5062 -f 3612/5063 3610/5059 3613/5064 -f 3612/5063 3613/5064 3614/5065 -f 3614/5065 2968/4066 3612/5063 -f 3612/5063 2968/4066 3609/5058 -f 3614/5065 2969/4067 2968/4066 -f 3615/5066 2969/4067 3614/5065 -f 3615/5066 3614/5065 3616/5067 -f 3619/5068 3618/5069 3617/5070 -f 3621/5071 3620/5072 3619/5068 -f 3622/5073 3621/5071 3619/5068 -f 3623/5074 3621/5075 3622/5076 -f 3624/5077 3623/5074 3622/5076 -f 3624/5078 3622/5073 3617/5070 -f 3626/5079 3623/5074 3625/5080 -f 3626/5079 3625/5080 3627/5081 -f 3627/5081 3628/5082 3626/5079 -f 3626/5079 3628/5082 3629/5083 -f 3623/5074 3629/5083 3630/5084 -f 3632/5085 3633/5086 3631/5087 -f 3633/5086 3634/5088 3631/5087 -f 2978/4080 2977/4079 3633/5086 -f 2977/4079 3634/5088 3633/5086 -f 2977/4079 3635/5089 3634/5088 -f 3620/5090 3634/5091 3635/5092 -f 3620/5090 3635/5092 3636/5093 -f 3636/5094 3637/5095 3638/5096 -f 3636/5094 3638/5096 3619/5068 -f 3638/5096 3618/5069 3619/5068 -f 3617/5070 3618/5069 3638/5096 -f 3617/5070 3638/5096 3615/5066 -f 3639/5097 3640/5098 3615/5066 -f 3640/5098 3639/5097 2970/4068 -f 2970/4068 3639/5097 3641/5099 -f 3639/5100 3642/5101 3641/5102 -f 3641/5102 3642/5101 2974/4075 -f 2975/4076 2974/4075 3642/5101 -f 3639/5100 3643/5103 3642/5101 -f 3637/5104 3642/5101 3643/5103 -f 3637/5095 3643/5105 3644/5106 -f 3644/5107 3638/5096 3637/5095 -f 3615/5066 3638/5096 3644/5107 -f 3644/5108 3643/5103 3639/5100 -f 3644/5109 3639/5097 3615/5066 -f 3637/5104 3636/5093 3642/5101 -f 3636/5093 2976/5110 3642/5101 -f 3636/5093 3635/5092 2976/5110 -f 2978/4080 3633/5086 3632/5085 -f 3630/5111 3632/5085 3631/5087 -f 3631/5087 3634/5088 3630/5111 -f 3630/5111 3634/5112 3621/5113 -f 3630/5111 2982/4084 3632/5085 -f 2982/4084 2980/4082 3632/5085 -f 3645/5114 2982/5115 3630/5084 -f 3628/5082 3646/5116 3645/5114 -f 2983/4087 3646/5116 2986/4089 -f 2981/4086 3646/5116 2983/4087 -f 2981/4086 3645/5114 3646/5116 -f 3598/5045 3646/5116 3628/5082 -f 3629/5083 3645/5114 3630/5084 -f 3628/5082 3645/5114 3629/5083 -f 3627/5081 3599/5046 3628/5082 -f 3611/5061 3605/5051 3603/5049 -f 3611/5061 3603/5049 3601/5047 -f 3625/5080 3611/5061 3601/5047 -f 3647/5117 3611/5061 3625/5080 -f 3617/5070 3647/5118 3624/5078 -f 3617/5070 3613/5064 3647/5118 -f 3647/5117 3610/5062 3611/5061 -f 3625/5080 3601/5047 3627/5081 -f 3629/5083 3623/5074 3626/5079 -f 3624/5077 3647/5117 3625/5080 -f 3625/5080 3623/5074 3624/5077 -f 3623/5074 3630/5084 3621/5075 -f 3621/5119 3634/5120 3620/5121 -f 3636/5094 3619/5068 3620/5072 -f 3617/5070 3622/5073 3619/5068 -f 3617/5070 3616/5067 3613/5064 -f 3615/5066 3616/5067 3617/5070 -f 3616/5067 3614/5065 3613/5064 -f 3640/5098 2969/4067 3615/5066 -f 3647/5117 3613/5122 3610/5062 -f 3606/5053 3605/5051 3611/5061 -f 3610/5059 3612/5063 3609/5058 -f 2966/4062 3604/5052 3607/5054 -f 2966/4062 3648/5123 3604/5052 -f 3604/5052 3648/5123 3602/5050 -f 3648/5123 3649/5044 3602/5050 -f 3602/5050 3649/5044 3600/5048 -f 3600/5048 3649/5044 3599/5046 -f 3648/5123 3650/5124 3649/5044 -f 2964/4060 3650/5124 3648/5123 -f 2964/4060 2963/4059 3650/5124 -f 2965/4061 3648/5123 2966/4062 -f 3606/5060 3608/5057 3607/5056 -f 3602/5050 3603/5049 3605/5051 -f 3600/5048 3601/5047 3603/5049 -f 3599/5046 3627/5081 3601/5047 -f 3599/5046 3598/5045 3628/5082 -f 3650/5124 2962/4058 3649/5044 -f 3598/5043 2986/4089 3646/5116 -f 2984/4088 2983/4087 2986/4089 -f 2748/3782 2984/5125 2985/4092 -f 2982/5115 3645/5114 2981/4086 -f 3632/5085 2980/4082 2979/4081 -f 3632/5085 2979/4081 2978/4080 -f 2976/4078 3635/5089 2977/4079 -f 2975/4076 3642/5101 2976/5110 -f 3641/5102 2974/4075 2972/4071 -f 2971/4070 3641/5102 2972/4071 -f 2970/4069 3641/5102 2971/4070 -f 2970/4068 2969/4067 3640/5098 -f 2967/4065 3609/5058 2968/4066 -f 2966/5055 3609/5058 2967/4065 -f 2965/4061 2964/4060 3648/5123 -f 2963/4059 2962/4058 3650/5124 -f 2986/4089 2962/4058 2961/4057 -f 2960/4056 2985/4090 2961/4057 -f 2959/5126 2987/4091 2960/4056 -f 2988/4094 2959/4054 2958/4053 -f 2958/4053 2957/4052 3506/4892 -f 2957/4895 2956/4462 3248/4464 -f 2955/4460 2952/5127 2949/4040 -f 2958/4053 2953/4048 2954/4047 -f 2953/4046 2961/4057 2951/4045 -f 2952/4044 2924/4010 2949/4041 -f 2955/4460 2949/4040 2947/4037 -f 3245/4459 2946/4039 2944/4033 -f 3233/4433 2944/4033 2945/4036 -f 2945/4036 2943/4035 3231/4431 -f 2946/4039 2942/4034 2944/4033 -f 2943/4032 2940/4029 3230/4430 -f 2948/4043 2941/4030 2942/4031 -f 2925/4011 2938/4027 2941/4030 -f 2937/4026 2935/4024 2933/4021 -f 2938/4027 2935/4024 2936/4025 -f 2938/4027 2925/4011 2935/4024 -f 2934/4022 2933/4021 2935/4024 -f 3225/4423 2933/4019 2931/4017 -f 2930/4016 2929/4013 3217/4414 -f 2932/4018 2927/4014 2929/4013 -f 2950/4042 2924/4010 2925/4011 -f 2493/3450 2924/4010 2963/4059 -f 2922/4008 2923/4009 2921/4007 -f 2920/4006 3212/4409 2922/4008 -f 2919/4005 3208/4402 2920/4006 -f 2921/4007 2492/3448 2919/4005 -f 3192/4386 2919/4005 2492/3448 -f 3191/4385 2492/3448 2917/4003 -f 2917/4001 2916/4000 3189/4381 -f 2915/3999 2918/4002 2913/3996 -f 2913/3996 2912/3995 3184/3997 -f 2488/3441 2911/3994 2490/3443 -f 2488/3441 2486/3439 2911/3994 -f 2910/3993 3184/3997 2912/3995 -f 2910/3993 2909/3992 3182/4375 -f 3183/5016 2909/3991 2908/3990 -f 2898/4364 2907/3989 2906/3988 -f 2480/3429 2905/4365 2906/3988 -f 3173/4366 2478/2603 2477/220 -f 2902/3985 2901/3984 3173/4366 -f 3651/3979 2898/4364 2906/3988 -f 3169/4362 2897/4363 2893/3976 -f 2897/4363 3651/3979 2894/3977 -f 2894/3977 3651/3979 2820/3875 -f 3651/3979 2897/4363 2898/4364 -f 2820/3875 3651/3979 2822/3978 -f 2893/3976 2897/4363 2894/3977 -f 2892/3975 3169/4362 2893/3976 -f 2891/3972 3166/4357 2892/3973 -f 2891/3972 2890/3971 3163/4354 -f 2884/3964 2890/3971 2883/3961 -f 2883/3961 2881/3974 2882/3962 -f 2881/3959 2878/3957 2879/3956 -f 2870/3946 2873/3949 2871/3947 -f 2869/3944 3141/4331 2870/3946 -f 2812/3862 2869/3944 2870/3946 -f 2861/3931 2869/3944 2812/3862 -f 2868/3942 3140/4328 2867/3941 -f 2859/3929 3134/4321 2866/4319 -f 2867/3943 2865/3945 2859/3929 -f 2860/3930 2865/3945 2861/3931 -f 2865/3945 2869/3944 2861/3931 -f 2860/3930 2859/3929 2865/3945 -f 2858/3928 3134/4321 2859/3929 -f 2856/3927 3129/4314 2858/3928 -f 2858/3928 2857/3925 2856/3927 -f 2857/3925 2863/3933 2855/3926 -f 2854/4315 2855/3926 2853/3938 -f 3118/4313 3117/4312 2854/4315 -f 2854/4315 2853/3938 3118/4313 -f 2850/3920 2852/3935 2848/3918 -f 2846/3916 3122/4303 2847/3917 -f 2843/3913 3127/4307 2844/3915 -f 2826/3883 2842/3912 2824/3884 -f 2826/3883 2827/3886 2842/3912 -f 2840/3909 3126/4306 2841/3910 -f 2439/3364 2840/3909 2837/3904 -f 2834/3898 2836/5128 2838/3906 -f 2835/3895 2443/3370 2442/3369 -f 2832/3891 3651/3979 2899/3892 -f 2832/3891 2830/3889 2895/3980 -f 2833/3905 2829/3908 2831/5129 -f 2830/3889 2828/3887 2896/3981 -f 2896/3981 2828/3887 3652/5130 -f 2896/3981 3652/5130 2825/3885 -f 2823/5131 2896/3981 2825/3885 -f 2825/3885 3652/5130 2826/3883 -f 2828/3887 2826/3883 3652/5130 -f 2839/3907 2827/3911 2829/3908 -f 2825/3882 1814/2492 2823/3879 -f 2811/3860 1815/2493 2824/3881 -f 2811/3860 2808/3858 1815/2493 -f 2823/3879 1814/2492 1812/2491 -f 2822/3978 2896/3981 2823/5131 -f 2819/3873 2818/3872 2820/3875 -f 2816/3869 2876/3954 2818/3872 -f 2814/3868 2875/3953 2816/3869 -f 2813/3863 2872/3948 2814/3864 -f 2812/3862 2871/3947 2813/3863 -f 2845/3861 2864/3934 2812/3862 -f 1816/2495 2808/5132 2807/3854 -f 1816/2495 2806/3856 1817/2496 -f 3096/4265 2806/3856 2804/3853 -f 1803/2474 1796/2468 2803/3852 -f 2804/3853 2802/3851 2801/3850 -f 2799/3848 3091/4260 2800/3849 -f 1796/2468 2798/3846 2799/3848 -f 2799/3848 3088/3847 3090/4258 -f 1794/2467 3086/3843 2798/3846 -f 3080/4251 2796/2462 980/1338 -f 1792/3840 951/1294 1786/1296 -f 3073/4241 2795/3839 2794/3838 -f 3072/4242 2794/3838 2793/3837 -f 2792/3836 3068/5133 2793/3837 -f 3068/4234 2792/3835 2791/3834 -f 2788/3831 2790/3833 3065/4231 -f 2787/3830 3042/4202 2789/3832 -f 2788/3831 1791/2458 2783/3825 -f 3042/4202 2787/3830 2786/3829 -f 3039/4199 2786/3829 2785/3828 -f 2784/3827 3033/4191 2785/3828 -f 2784/3827 2782/3826 3597/5039 -f 1784/2447 2779/3824 2782/3826 -f 2779/3824 2781/4188 2782/3826 -f 2781/4188 2779/3824 3029/4187 -f 2777/3819 3006/4125 2780/4185 -f 2776/3818 3006/4125 2777/3819 -f 2775/3817 3007/4124 2776/3818 -f 2774/3815 3023/4158 2775/3817 -f 2772/3814 3025/3813 2774/3815 -f 2773/3816 2778/3820 2772/3814 -f 1782/2445 2772/5134 2778/3822 -f 1782/5135 2771/5136 2772/5137 -f 2772/3814 2771/3810 3025/3813 -f 1780/2443 1776/2439 2769/3812 -f 1772/2432 2768/3807 2770/3808 -f 1766/2424 2765/3805 2767/3806 -f 2759/3799 3019/4173 2764/3803 -f 3015/4130 2759/3799 2762/3802 -f 2759/3799 2763/3804 1766/2424 -f 2758/3797 2757/3796 2760/4127 -f 2756/3794 1764/2421 1761/2416 -f 1761/2416 2740/3771 2754/3775 -f 2752/3788 3009/4118 3010/3789 -f 2752/3788 2750/3787 2994/4103 -f 2753/3792 2749/3784 2751/3783 -f 2747/3781 2984/5125 2748/3782 -f 2747/3781 2746/3780 2979/4081 -f 2744/4073 2972/4071 2745/4074 -f 2743/5138 2973/4072 2744/4073 -f 2743/5138 3653/5139 2973/4072 -f 2501/3457 2973/4072 3653/5139 -f 2742/3776 3653/5140 2743/3777 -f 2742/3776 3654/5141 3653/5140 -f 2502/3459 3653/5140 3654/5141 -f 2502/3459 3655/5142 3656/5143 -f 2502/3459 3656/5144 2503/3460 -f 3655/5142 3657/5145 3656/5143 -f 3656/5143 3657/5145 2506/3465 -f 2503/3460 3656/5144 2506/3464 -f 3655/5142 3658/5146 3657/5145 -f 3658/5146 3659/5147 3657/5145 -f 3657/5145 3659/5147 2508/3466 -f 2508/3466 3659/5147 3660/5148 -f 2508/3469 3660/5149 3661/5150 -f 3664/5151 2514/3476 3663/5152 -f 3663/5152 3794/5153 3664/5151 -f 3664/5151 3794/5153 3795/5154 -f 3795/5154 3665/5155 3664/5151 -f 3664/5151 3665/5155 2741/3773 -f 3664/5151 2741/3773 3666/5156 -f 3664/5151 3666/5156 3667/5157 -f 3664/5151 3667/5157 2516/3478 -f 3668/5158 2516/3478 3667/5157 -f 3669/5159 2525/3487 2518/3480 -f 3669/5159 2518/3480 3670/5160 -f 2533/3495 2528/5161 3673/5162 -f 3674/5163 2533/3495 3673/5162 -f 3675/5164 3674/5163 3673/5162 -f 3675/5165 3673/3490 3676/5166 -f 3675/5165 3676/5166 3677/5167 -f 3675/5165 3677/5167 3678/5168 -f 3675/5165 3678/5168 3674/5169 -f 3674/5169 3679/5170 2535/5171 -f 2535/5171 3679/5170 3680/5172 -f 3681/5173 3682/5174 3680/5172 -f 3680/5175 2122/3599 2534/3496 -f 3680/5175 3682/5176 2122/3599 -f 3682/5174 3683/5177 2608/5178 -f 3685/5179 3686/5180 2614/3604 -f 3686/5180 3685/5179 3687/5181 -f 3686/5180 3687/5181 2615/3605 -f 2615/3605 3687/5181 2621/5182 -f 3687/5181 3685/5179 3688/5183 -f 3688/5183 3683/5184 3684/5185 -f 3683/5184 3689/5186 2609/3598 -f 3688/5183 3690/5187 3689/5186 -f 3689/5186 3690/5187 2609/3598 -f 3690/5187 3688/5183 3685/5179 -f 3689/5186 3683/5184 3688/5183 -f 3690/5187 3685/5179 2614/3604 -f 3687/5181 3688/5183 3684/5185 -f 3684/5188 2624/3620 3687/5189 -f 3683/5177 3691/5190 3684/5188 -f 3691/5190 2624/3620 3684/5188 -f 3682/5174 3691/5190 3683/5177 -f 3681/5173 3691/5190 3682/5174 -f 3681/5173 3693/5191 3692/5192 -f 3692/5192 3693/5191 3694/5193 -f 3692/5192 3695/5194 3681/5173 -f 3695/5195 3696/5196 3697/5197 -f 3695/5195 3697/5197 3698/5198 -f 3691/5190 3695/5194 3698/5199 -f 3698/5199 3699/5200 3691/5190 -f 3691/5190 3699/5200 3700/5201 -f 3691/5190 3700/5201 2624/3620 -f 2624/3620 3700/5201 3701/5202 -f 2624/3620 3701/5202 3702/5203 -f 2627/3624 2625/3621 2629/3626 -f 2623/3619 3702/5203 2629/3626 -f 3702/5203 3701/5202 3703/5204 -f 3702/5203 3703/5204 2631/3627 -f 3700/5201 3703/5204 3701/5202 -f 3700/5201 3699/5200 3704/5205 -f 3704/5205 2631/3627 3703/5204 -f 3705/5206 2631/3627 3704/5205 -f 3705/5206 2630/3628 2631/3627 -f 3706/5207 2630/3628 3705/5206 -f 3706/5207 3705/5206 3697/5208 -f 3707/5209 3706/5207 3697/5208 -f 3707/5210 3697/5197 3708/5211 -f 3722/5212 3709/5213 3708/5211 -f 3708/5211 3709/5213 3707/5210 -f 3707/5210 3709/5213 3710/5214 -f 3707/5209 3710/5215 2633/3630 -f 2633/3630 1677/2310 3706/5207 -f 2633/3630 3710/5215 2632/3629 -f 3710/5215 2647/5216 2632/3629 -f 3709/5213 2648/3649 3710/5214 -f 3711/5217 2648/3649 3709/5213 -f 3709/5213 3721/5218 3711/5217 -f 3711/5217 3721/5218 3712/5219 -f 3713/5220 3711/5217 3712/5219 -f 3713/5220 3712/5219 3714/5221 -f 3715/5222 3713/5223 3714/5224 -f 3715/5222 3714/5224 3716/5225 -f 2656/3659 3715/5222 3716/5225 -f 2658/3661 2656/3659 3716/5225 -f 3717/5226 2658/3661 3716/5225 -f 3718/5227 3717/5226 3719/5228 -f 2718/3746 3719/5229 3720/5230 -f 2718/3746 3720/5230 3721/5218 -f 3721/5218 2721/3748 2718/3746 -f 3722/5212 2721/3748 3721/5218 -f 3722/5212 3696/5196 3695/5195 -f 3692/5231 3722/5212 3695/5195 -f 3708/5211 3696/5196 3722/5212 -f 3720/5230 3712/5219 3721/5218 -f 3720/5230 3714/5221 3712/5219 -f 3719/5229 3714/5221 3720/5230 -f 2721/3748 3722/5212 3694/5232 -f 3724/5233 3723/5234 2721/3748 -f 2721/3748 3694/5232 3725/5235 -f 3725/5235 3694/5232 3726/5236 -f 3725/5235 3726/5236 3727/5237 -f 3728/5238 3725/5235 3727/5237 -f 3728/5238 3727/5237 3729/5239 -f 3666/5156 3729/5240 3670/5160 -f 3666/5156 2741/3773 3730/5241 -f 3730/5241 2741/3773 3731/5242 -f 3730/5243 3731/5244 3732/5245 -f 3732/5245 3728/5238 3730/5243 -f 3730/5243 3728/5238 3729/5239 -f 3732/5245 3725/5235 3728/5238 -f 3733/5246 3724/5233 2721/3748 -f 3733/5246 3734/5247 3724/5233 -f 3734/5247 3735/5248 3724/5233 -f 3734/5249 3736/5250 3735/5251 -f 3736/5250 3737/5252 3735/5251 -f 3735/5248 3737/5253 2722/3749 -f 3735/5248 2722/3749 3723/5234 -f 3737/5253 2725/5254 2722/3749 -f 2722/3749 2725/5254 2724/3751 -f 3737/5252 3738/5255 2725/5256 -f 3739/5257 2725/5256 3738/5255 -f 3741/5258 3740/5259 3739/5257 -f 3741/5260 3739/5257 3742/5261 -f 3741/5260 3742/5261 3743/5262 -f 3741/5260 3743/5262 3744/5263 -f 3745/5264 3741/5260 3744/5263 -f 3745/5264 3744/5263 3746/5265 -f 3745/5264 3746/5265 3747/5266 -f 3745/5264 3748/5267 3740/5259 -f 3749/5268 3750/5269 3748/5267 -f 3749/5270 2726/3752 3750/5271 -f 2726/3752 2724/3751 3750/5271 -f 2728/3754 2726/3752 3749/5270 -f 3749/5270 3751/5272 2728/3754 -f 3749/5268 3747/5266 3751/5273 -f 3747/5266 3752/5274 3751/5273 -f 3752/5274 2731/3757 3751/5273 -f 3751/5273 2731/3757 1760/5275 -f 3752/5274 3753/5276 2731/3757 -f 2731/3757 3753/5276 2732/3758 -f 2732/3758 3753/5276 3754/3760 -f 3755/5277 3756/5278 3754/3761 -f 3756/5279 3755/5280 3757/5281 -f 3756/5279 3757/5281 2735/3765 -f 2735/3765 2733/5282 3756/5279 -f 2735/3765 3757/5281 3758/5283 -f 2735/3765 3758/5283 3759/5284 -f 2735/3765 3759/5284 3760/5285 -f 3760/5285 3761/5286 3762/5287 -f 2736/3766 3760/5285 3762/5287 -f 3762/5287 3761/5286 3763/5288 -f 2736/3767 3762/5289 3764/5290 -f 2737/3768 2736/3767 3764/5290 -f 3764/5290 3725/5235 3732/5245 -f 3764/5290 3732/5245 3765/5291 -f 3765/5291 2737/3768 3764/5290 -f 3762/5289 3733/5246 3764/5290 -f 3762/5289 3763/5292 3733/5246 -f 3766/5293 3767/5294 3763/5288 -f 3763/5288 3767/5294 3734/5249 -f 3767/5294 3768/5295 3734/5249 -f 3768/5295 3769/5296 3736/5250 -f 3769/5296 3771/5297 3770/5298 -f 3770/5298 3773/5299 3772/5300 -f 3774/5301 3772/5300 3773/5299 -f 3773/5299 3743/5262 3774/5301 -f 3774/5301 3743/5262 3742/5261 -f 3775/5302 3772/5300 3774/5301 -f 3776/5303 3775/5302 3737/5252 -f 3769/5296 3776/5303 3736/5250 -f 3776/5303 3769/5296 3772/5300 -f 3775/5302 3774/5301 3738/5255 -f 3776/5303 3772/5300 3775/5302 -f 3738/5255 3774/5301 3742/5261 -f 3773/5299 3777/5304 3743/5262 -f 3744/5263 3743/5262 3777/5304 -f 3777/5304 3778/5305 3744/5306 -f 3744/5306 3778/5305 3746/5265 -f 3746/5307 3755/5277 3753/5308 -f 3746/5307 3757/5309 3755/5277 -f 3778/5305 3757/5281 3746/5265 -f 3779/5310 3757/5281 3778/5305 -f 3779/5310 3780/5311 3757/5281 -f 3758/5283 3757/5281 3780/5312 -f 3781/5313 3758/5283 3780/5311 -f 3781/5313 3782/5314 3783/5315 -f 3781/5313 3783/5315 3758/5283 -f 3759/5284 3758/5283 3783/5316 -f 3782/5314 3760/5285 3783/5316 -f 3760/5285 3782/5314 3761/5286 -f 3784/5317 3761/5286 3782/5314 -f 3785/5318 3784/5317 3782/5314 -f 3784/5317 3786/5319 3766/5293 -f 3786/5319 3767/5294 3766/5293 -f 3773/5299 3771/5297 3787/5320 -f 3787/5320 3785/5318 3777/5304 -f 3777/5304 3785/5318 3779/5310 -f 3788/5321 3779/5310 3785/5318 -f 3788/5321 3780/5311 3779/5310 -f 3788/5321 3785/5318 3781/5313 -f 3787/5320 3786/5319 3785/5318 -f 3770/5298 3771/5297 3773/5299 -f 3771/5297 3768/5295 3786/5319 -f 3787/5320 3771/5297 3786/5319 -f 3785/5318 3786/5319 3784/5317 -f 3784/5317 3766/5293 3761/5286 -f 3781/5313 3785/5318 3782/5314 -f 3780/5311 3788/5321 3781/5313 -f 3779/5310 3778/5305 3777/5304 -f 3787/5320 3777/5304 3773/5299 -f 3772/5300 3769/5296 3770/5298 -f 3771/5297 3769/5296 3768/5295 -f 3786/5319 3768/5295 3767/5294 -f 3761/5286 3766/5293 3763/5288 -f 3783/5316 3760/5285 3759/5284 -f 3755/5277 3754/3761 3753/5308 -f 3752/5274 3747/5266 3753/5276 -f 3748/5267 3747/5266 3749/5268 -f 3748/5267 3750/5269 3740/5259 -f 3750/5269 2725/5256 3740/5259 -f 3740/5322 2725/5254 3739/5323 -f 3748/5267 3745/5264 3747/5266 -f 3753/5276 3747/5266 3746/5265 -f 3745/5264 3740/5259 3741/5260 -f 3738/5255 3742/5261 3739/5257 -f 3775/5302 3738/5255 3737/5252 -f 3736/5250 3776/5303 3737/5252 -f 3768/5324 3736/5325 3734/5247 -f 3763/5292 3734/5247 3733/5246 -f 3725/5235 3764/5290 3733/5246 -f 3725/5235 3733/5246 2721/3748 -f 3732/5245 3731/5244 3765/5291 -f 3765/5291 3731/5244 2739/3770 -f 3666/5156 3670/5160 3667/5157 -f 3667/5157 3670/5160 3668/5158 -f 3730/5241 3729/5240 3666/5156 -f 3729/5240 3789/5326 3670/5160 -f 3729/5239 3727/5237 3789/5327 -f 3790/5328 3671/5329 3789/5326 -f 3790/5328 3789/5326 3677/5167 -f 3678/5168 3726/5330 3679/5170 -f 3679/5170 3726/5330 3694/5193 -f 3677/5167 3727/5331 3726/5330 -f 3677/5167 3726/5330 3678/5168 -f 3677/5167 3789/5326 3727/5331 -f 3790/5328 3672/5332 3671/5329 -f 3676/5166 3672/5332 3790/5328 -f 3679/5170 3694/5193 3693/5191 -f 3724/5233 3735/5248 3723/5234 -f 3694/5232 3722/5212 3692/5231 -f 3791/5333 3718/5334 3719/5229 -f 2717/3744 3791/5333 3719/5229 -f 2716/3743 3791/5333 2717/3744 -f 3791/5333 2660/3676 3718/5334 -f 3718/5334 2660/3676 2659/5335 -f 3718/5227 2659/3680 3717/5226 -f 3791/5333 2661/3663 2660/3676 -f 2716/3743 2661/3663 3791/5333 -f 2716/3743 2662/3664 2661/3663 -f 3719/5228 3717/5226 3714/5224 -f 3717/5226 3716/5225 3714/5224 -f 3717/5226 2659/3680 2658/3661 -f 2654/3657 3713/5223 3715/5222 -f 2652/3653 3711/5217 3713/5220 -f 2648/3649 3711/5217 2650/3651 -f 3721/5218 3709/5213 3722/5212 -f 3708/5211 3697/5197 3696/5196 -f 2633/3630 3706/5207 3707/5209 -f 3704/5205 3697/5208 3705/5206 -f 3698/5199 3697/5208 3704/5205 -f 3704/5205 3703/5204 3700/5201 -f 3698/5198 3704/5336 3699/5337 -f 3680/5172 3693/5191 3681/5173 -f 3681/5173 3695/5194 3691/5190 -f 3680/5172 3679/5170 3693/5191 -f 3678/5168 3679/5170 3674/5169 -f 3677/5167 3676/5166 3790/5328 -f 3676/5166 3673/3490 2526/3488 -f 2526/3488 1946/2667 3672/5332 -f 2526/3488 3672/5332 3676/5166 -f 3672/5332 1946/2667 3671/5329 -f 3671/5329 1946/2667 1944/2666 -f 2525/3487 3671/5329 1944/2666 -f 3669/5159 3789/5326 3671/5329 -f 3670/5160 3789/5326 3669/5159 -f 3671/5329 2525/3487 3669/5159 -f 3670/5160 2518/3480 3668/5158 -f 3665/5338 2740/3774 2741/3773 -f 3793/5339 3655/5142 3792/5340 -f 3654/5141 3792/5340 3655/5142 -f 3654/5141 3655/5142 2502/3459 -f 2742/3776 3792/5340 3654/5141 -f 2740/3771 3665/5341 2742/3776 -f 3659/5342 3663/5152 3660/5149 -f 3795/5343 3792/5340 3665/5341 -f 3793/5339 3792/5340 3795/5154 -f 3794/5153 3663/5152 3659/5147 -f 3658/5344 3795/5154 3659/5342 -f 3662/3474 3660/5149 3663/5152 -f 3659/5147 3795/5154 3794/5153 -f 3795/5154 3658/5146 3793/5339 -f 3792/5340 2742/3776 3665/5341 -f 3660/5149 3662/3474 2513/3473 -f 2513/3473 3661/5150 3660/5149 -f 2513/3473 2509/3470 3661/5150 -f 3796/2635 2511/3472 2513/3473 -f 2512/2633 2511/3472 3796/2635 -f 2511/3472 2509/3470 2513/3473 -f 3793/5339 3658/5146 3655/5142 -f 2740/3771 2742/3776 2754/3775 -f 2739/3772 3731/5345 2741/3773 -f 3765/5291 2739/3770 2738/3769 -f 3765/5291 2738/3769 2737/3768 -f 2735/3765 3760/5285 2736/3766 -f 2733/5282 2735/3765 2734/3764 -f 3754/3761 3756/5278 2733/3762 -f 2731/3757 2730/3759 1760/5275 -f 3751/5272 1760/2415 2729/3755 -f 2728/3754 3751/5272 2729/3755 -f 2727/3753 2726/3752 2728/3754 -f 2726/3752 2723/3750 2724/3751 -f 3750/5271 2724/3751 2725/5254 -f 3723/5234 2722/3749 2721/3748 -f 2720/2396 2718/3746 2721/3748 -f 2717/3744 3719/5229 2718/3746 -f 2718/3746 2719/3747 1747/3745 -f 2715/3742 2662/3664 2716/3743 -f 2662/3664 2714/3740 2664/3665 -f 1746/3741 1744/5346 2714/3740 -f 2664/3665 2714/3740 1744/5346 -f 2665/5347 2664/3739 1743/2390 -f 2713/3737 2665/5347 1743/2390 -f 2692/3705 2665/3666 2713/5348 -f 2692/3705 3797/3703 2665/3666 -f 2665/3666 3797/3703 2667/3667 -f 2692/3705 2712/3736 2691/3704 -f 2691/3704 2712/3736 2693/3706 -f 2693/3706 3798/5349 2694/3707 -f 3798/5349 2693/3706 3799/5350 -f 3799/5350 3800/5351 3798/5349 -f 3800/5351 3801/5352 3798/5349 -f 3798/5349 3801/5352 2696/3709 -f 3801/5352 3800/5351 3802/5353 -f 3801/5352 3802/5353 2698/3711 -f 3802/5353 3799/5350 2708/3732 -f 3802/5353 2708/3732 2699/3720 -f 3799/5350 2710/3734 2708/3732 -f 3799/5350 2693/3706 2710/3734 -f 3800/5351 3799/5350 3802/5353 -f 2713/5348 2711/3735 2692/3705 -f 2712/3736 2710/3734 2693/3706 -f 1742/2389 2709/5354 2711/3738 -f 1742/2389 2705/3727 2709/5354 -f 2699/3720 2708/3732 2707/3731 -f 2700/3721 2699/3720 2707/3731 -f 2703/3724 2700/5355 2707/3729 -f 2706/3728 2709/5354 2705/3727 -f 2703/3724 1741/2388 2704/3726 -f 2701/3723 2700/5355 2703/3724 -f 3802/5353 2699/3720 2698/3711 -f 3801/5352 2698/3711 2696/3709 -f 3798/5349 2696/3709 2694/3707 -f 2668/3669 3797/3703 2689/3700 -f 2688/3699 2685/3693 2686/3696 -f 2685/3693 2695/3708 2683/3694 -f 2697/3714 2682/3690 2683/3691 -f 2677/3685 2680/3688 2679/3687 -f 2677/3685 2679/3687 2678/3686 -f 2676/3684 2684/3692 2677/3685 -f 2687/3698 2676/3697 2674/3701 -f 2673/3681 2672/3678 2669/3677 -f 2690/3671 2673/3702 2669/3670 -f 2667/3667 3797/3703 2668/3669 -f 2667/3667 2669/3670 2666/3668 -f 2665/3666 2667/3667 2663/3662 -f 2666/3668 2661/3663 2663/3662 -f 2670/3672 2660/3676 2661/3663 -f 2671/3675 2659/5335 2660/3676 -f 2672/3678 2658/3661 2659/3680 -f 2672/3678 2657/3660 2658/3661 -f 2657/3660 2675/3683 2655/3658 -f 2656/3659 2654/3657 3715/5222 -f 2678/3686 2653/3654 2655/3658 -f 2654/3657 2652/3656 3713/5223 -f 1720/2364 2651/3655 2653/3654 -f 2652/3653 2650/3651 3711/5217 -f 1718/2360 2649/3650 2651/3652 -f 2650/3651 2646/3647 2648/3649 -f 2645/3645 2649/3650 1716/2358 -f 3710/5214 2648/3649 2647/3648 -f 2636/3633 2634/3631 2647/5216 -f 1690/2327 2634/3631 2635/3632 -f 2632/3629 2647/5216 2634/3631 -f 2633/3630 1678/2311 1677/2310 -f 3706/5207 1677/2310 2630/3628 -f 1676/2309 3702/5203 2631/3627 -f 2629/3626 3702/5203 1676/2309 -f 2628/3625 1669/2301 2627/3624 -f 2627/3624 2626/3623 2625/3621 -f 2626/3623 1667/3622 2625/3621 -f 2623/3619 2629/3626 2625/3621 -f 2624/3620 3702/5203 2623/3619 -f 2621/3618 3687/5189 2624/3620 -f 2625/3621 2622/3617 2623/3619 -f 2622/3617 1666/3616 2620/3615 -f 2621/5182 2620/3615 2615/3605 -f 2615/3605 2620/3615 2613/3603 -f 2614/3604 3686/5180 2615/3605 -f 2614/3604 2612/3602 3690/5187 -f 2613/3603 1351/1835 1352/1836 -f 3690/5187 2612/3602 2609/3598 -f 698/956 2123/2896 2243/2904 -f 2122/3599 2611/3600 2610/2895 -f 2608/5356 3683/5184 2609/3598 -f 3682/5176 2608/3597 2122/3599 -f 2534/3496 2122/3599 2121/2894 -f 2534/3496 2535/3497 3680/5175 -f 2535/3497 2531/3494 3674/5163 -f 2531/3494 2533/3495 3674/5163 -f 2532/3492 2528/5161 2533/3495 -f 2531/3494 2529/3493 2532/3492 -f 1949/2669 2532/3492 2530/2670 -f 1949/2669 2528/5161 2532/3492 -f 1948/5357 2528/5161 1949/2669 -f 1945/2664 2527/3489 2528/3491 -f 2524/3486 2525/3487 1944/2666 -f 1940/2659 2523/3482 1941/2660 -f 1923/2640 1920/2638 2522/2657 -f 1920/2638 2521/3484 2522/2657 -f 1923/2640 2522/2657 3803/2654 -f 3804/5358 1924/2642 1923/2640 -f 3804/5358 1923/2640 3803/2654 -f 3804/5358 3805/5359 1924/2642 -f 3805/5360 3806/5361 1925/2643 -f 1925/2643 3806/5361 3807/5362 -f 3807/5362 1928/5363 1927/2644 -f 3808/5364 1928/5363 3809/5365 -f 1929/2646 1928/2645 3810/5366 -f 1929/2646 3810/5366 1930/2647 -f 1930/2647 3810/5366 187/246 -f 187/246 3810/5366 3819/5367 -f 187/246 3819/5367 3811/5368 -f 3811/5369 1932/2648 1931/5370 -f 3813/5371 1932/2648 3812/5372 -f 1934/2652 3814/5373 3816/5374 -f 1936/2653 3816/5374 3804/5358 -f 3804/5358 3816/5374 3815/5375 -f 3804/5358 3815/5375 3805/5359 -f 3805/5359 3815/5375 3817/5376 -f 3806/5361 3818/5377 3809/5365 -f 3820/5378 3811/5368 3819/5367 -f 1932/2648 3811/5369 3812/5372 -f 3820/5379 3812/5372 3811/5369 -f 3812/5380 3820/5378 3821/5381 -f 3822/5382 3821/5381 3820/5378 -f 3809/5383 3822/5382 3819/5367 -f 3822/5382 3809/5383 3818/5384 -f 3818/5384 3823/5385 3822/5382 -f 3821/5381 3822/5382 3823/5385 -f 3823/5385 3813/5386 3821/5381 -f 3814/5373 3813/5386 3815/5375 -f 3815/5375 3816/5374 3814/5373 -f 3813/5386 3823/5385 3815/5375 -f 3823/5385 3817/5376 3815/5375 -f 3818/5377 3817/5387 3823/5388 -f 3822/5382 3820/5378 3819/5367 -f 3810/5366 3808/5389 3819/5367 -f 3809/5383 3819/5367 3808/5389 -f 3817/5387 3818/5377 3806/5361 -f 1934/2650 3813/5371 3814/5390 -f 1933/2649 3813/5371 1934/2650 -f 1933/2649 1932/2648 3813/5371 -f 3813/5371 3812/5372 3821/5391 -f 3810/5366 1928/2645 3808/5389 -f 3807/5362 3806/5361 3809/5365 -f 3809/5365 1928/5363 3807/5362 -f 3806/5361 3805/5360 3817/5387 -f 1936/2653 3804/5358 3803/2654 -f 3803/2654 2522/2657 1937/2655 -f 2518/3480 2525/3487 2519/3481 -f 2518/3480 2517/3479 3668/5158 -f 2517/3479 2516/3478 3668/5158 -f 2520/3483 2515/3477 2517/3479 -f 3664/5151 2516/3478 2514/3476 -f 2514/5392 3662/3474 3663/5152 -f 3661/5150 2509/3470 2508/3469 -f 2506/3465 3657/5145 2508/3466 -f 2507/3463 1910/2626 2505/3462 -f 2506/3464 2505/3462 2503/3460 -f 2503/3460 2497/3453 2502/3459 -f 2501/5393 3653/5140 2502/3459 -f 2500/3455 2973/4072 2501/3457 -f 2498/3456 1906/2618 2499/3451 -f 2499/3451 1906/2618 2495/2617 -f 2498/3454 2496/3452 1906/2620 -f 2497/3453 2504/3461 2496/3452 -f 2493/3450 2494/4064 2971/4070 -f 2493/3450 2965/4061 2494/4064 -f 2493/3450 2492/3448 2921/4007 -f 2490/3443 2913/3996 2489/3442 -f 2487/3440 2486/3439 2488/3441 -f 1897/2608 1895/2606 2487/3440 -f 2485/3438 2911/3994 2486/3439 -f 2484/3435 2909/3991 2485/3436 -f 2483/3434 2908/3990 2484/3435 -f 1894/3437 2481/3432 2484/3435 -f 2480/3429 2482/3433 2481/3432 -f 2904/2602 170/215 1890/5394 -f 2416/5395 1890/5394 170/215 -f 169/214 1889/5396 3824/5397 -f 169/214 3824/5397 170/215 -f 2416/5395 3824/5397 3833/5398 -f 3825/5399 3824/5397 1889/5396 -f 3825/5400 1889/2601 3826/2600 -f 3828/5401 3827/5402 3826/2600 -f 3829/5403 3828/5401 3826/2600 -f 3826/2600 1887/2598 3829/5403 -f 3830/5404 1880/2591 3828/5401 -f 3830/5404 3828/5401 1887/2598 -f 1887/2598 3828/5401 3829/5403 -f 3827/5402 1878/2589 3831/5405 -f 3831/5405 3825/5400 3827/5402 -f 3827/5402 3825/5400 3826/2600 -f 3831/5406 3832/5407 3825/5399 -f 3832/5407 3833/5398 3824/5397 -f 3834/5408 3835/5409 3836/5410 -f 2449/2528 3834/5408 1841/2530 -f 3837/5411 3838/5412 3839/5413 -f 3837/5411 3839/5413 1843/2532 -f 1845/2534 1844/2533 1846/2535 -f 1844/2533 3840/5414 1846/2535 -f 1857/2556 3843/5415 1858/2557 -f 3843/5415 3857/5416 1858/2557 -f 1858/2559 3857/5417 3844/5418 -f 3857/5417 3845/5419 3844/5418 -f 3845/5419 3846/5420 3844/5418 -f 3846/5420 3847/5421 3844/5418 -f 3847/5421 3848/5422 3844/5418 -f 3844/5418 3849/5423 1859/2560 -f 1859/2560 3849/5423 3850/5424 -f 3852/5425 3851/5426 3850/5424 -f 3853/5427 3852/5425 3849/5423 -f 3853/5428 3848/5429 3836/5410 -f 3836/5410 3848/5429 3854/5430 -f 3836/5410 3854/5430 3834/5408 -f 3854/5430 1841/2530 3834/5408 -f 3846/5431 3854/5430 3847/5432 -f 1841/2530 3854/5430 3855/5433 -f 3855/5433 3845/5434 3857/5416 -f 3855/5433 3857/5416 3858/5435 -f 3859/5436 3855/5433 3858/5435 -f 3859/5436 3858/5437 3860/5438 -f 3856/5439 3859/5436 3837/5411 -f 3859/5436 3861/5440 3837/5411 -f 3859/5436 3860/5438 3861/5440 -f 3862/5441 3861/5440 3860/5438 -f 3862/5441 1856/2555 3861/5440 -f 3861/5440 3842/5442 3838/5412 -f 3838/5412 3842/5442 3841/5443 -f 3838/5412 3841/5443 3839/5413 -f 3862/5441 3860/5438 3843/5415 -f 3860/5438 3858/5437 3843/5415 -f 3858/5437 3857/5416 3843/5415 -f 3856/5439 3855/5433 3859/5436 -f 3856/5439 1841/2530 3855/5433 -f 3855/5433 3854/5430 3845/5434 -f 3847/5432 3854/5430 3848/5429 -f 3853/5427 3849/5423 3848/5422 -f 3863/5444 3852/5425 3853/5427 -f 3835/5409 3863/5445 3853/5428 -f 3863/5444 3865/5446 3864/5447 -f 3866/5448 1866/2569 3865/5446 -f 3865/5446 1866/2569 1865/2568 -f 3865/5446 1865/2568 3864/5447 -f 3864/5447 1865/2568 3851/5426 -f 3867/5449 1871/2577 3866/5450 -f 1873/2579 3867/5449 3868/5451 -f 3869/5452 1873/2579 3868/5451 -f 3869/5453 3868/5454 3870/5455 -f 3871/5456 3869/5453 3870/5455 -f 3873/5457 3871/5458 3872/2588 -f 1876/2587 3873/5457 3872/2588 -f 1878/2589 3872/2588 3874/5459 -f 1878/2589 3874/5459 3875/5460 -f 3875/5461 3874/5462 3876/5463 -f 3877/5464 3875/5461 3876/5463 -f 3877/5464 3833/5398 3832/5407 -f 3878/5465 3833/5398 3877/5464 -f 3877/5464 3870/5455 3878/5465 -f 3879/5466 3835/5409 3834/5408 -f 3879/5466 3880/5467 3863/5445 -f 3880/5468 3866/5448 3865/5446 -f 3878/5465 3880/5467 3879/5466 -f 3868/5454 3880/5467 3878/5465 -f 3881/5469 3882/5470 3872/2588 -f 3882/5470 3874/5459 3872/2588 -f 3876/5463 3874/5462 3882/5471 -f 3881/5472 3876/5463 3882/5471 -f 3876/5463 3881/5472 3870/5455 -f 3870/5455 3877/5464 3876/5463 -f 3833/5398 3878/5465 3879/5466 -f 3831/5406 3875/5461 3877/5464 -f 1876/2582 3883/5473 3873/5474 -f 1874/2580 3883/5473 1876/2582 -f 3873/5474 3883/5473 3871/5456 -f 3871/5456 3883/5473 3869/5452 -f 3871/5458 3881/5469 3872/2588 -f 3871/5456 3870/5455 3881/5472 -f 3870/5455 3868/5454 3878/5465 -f 3883/5473 1873/2579 3869/5452 -f 3868/5451 3867/5449 3880/5467 -f 3880/5467 3867/5449 3866/5450 -f 3866/5450 1871/2577 1866/2572 -f 3880/5468 3865/5446 3863/5444 -f 3879/5466 3863/5445 3835/5409 -f 3863/5444 3864/5447 3852/5425 -f 3864/5447 3851/5426 3852/5425 -f 1862/2565 3850/5424 3851/5426 -f 1863/2566 1862/2565 3851/5426 -f 1862/2565 1860/2561 3850/5424 -f 3852/5425 3850/5424 3849/5423 -f 3848/5422 3849/5423 3844/5418 -f 3845/5434 3854/5430 3846/5431 -f 3862/5441 3843/5415 1857/2556 -f 3862/5441 1857/2556 1856/2555 -f 3861/5440 1856/2555 3842/5442 -f 3884/5475 3841/5443 3842/5442 -f 1855/2554 3884/5475 3842/5442 -f 1850/2541 3884/5475 1855/2554 -f 1850/2541 3885/5476 3884/5475 -f 3885/5476 1848/2537 3840/5414 -f 3884/5475 3885/5476 3841/5443 -f 3885/5476 3840/5414 3841/5443 -f 3840/5414 1848/2537 1846/2535 -f 3840/5414 1844/2533 3841/5443 -f 3839/5413 3841/5443 1844/2533 -f 3837/5411 3861/5440 3838/5412 -f 3856/5439 3837/5411 1842/2531 -f 1841/2530 3856/5439 1842/2531 -f 3835/5409 3853/5428 3836/5410 -f 3834/5408 3833/5398 3879/5466 -f 3834/5408 2449/2528 3833/5398 -f 3877/5464 3832/5407 3831/5406 -f 3831/5405 1878/2589 3875/5460 -f 1879/2590 3827/5402 3828/5401 -f 3826/2600 1889/2601 1888/2599 -f 3832/5407 3824/5397 3825/5399 -f 2416/5395 170/215 3824/5397 -f 2470/3411 2414/3326 2471/3412 -f 2460/3409 2472/3415 2470/3410 -f 2468/3406 2407/3318 2467/5477 -f 3886/5478 2469/5479 3887/5480 -f 3886/5478 3887/5480 2462/3398 -f 3886/3396 2462/5481 2461/3395 -f 3887/5480 2464/3400 2462/3398 -f 2463/3402 2462/3398 2464/3400 -f 2464/3400 3887/5480 3888/5482 -f 2466/3404 2465/5483 3888/5482 -f 2465/5483 2466/3404 2404/3317 -f 3886/3394 2460/3393 2469/5484 -f 3887/5480 2469/5479 3888/5482 -f 2466/3404 3888/5482 2469/5479 -f 2467/3403 2405/3248 2404/3317 -f 2464/3400 3888/5482 2465/5483 -f 2402/3401 2464/3400 2465/5483 -f 2462/3398 2463/3402 2398/3311 -f 2462/3398 2398/3311 2400/3312 -f 2398/3311 2463/3402 2313/5485 -f 2453/3390 2458/3389 2456/3392 -f 2458/3389 3889/2738 2459/3391 -f 2459/3391 3889/2738 2002/2740 -f 2459/3391 2002/2740 1230/3420 -f 1230/3420 2002/2740 2003/3589 -f 2458/3389 284/368 3889/2738 -f 2457/3388 2453/3390 287/371 -f 2400/3312 2399/3310 2455/3385 -f 2397/3384 2454/3309 2350/5486 -f 2454/5487 2453/3382 2455/3387 -f 2472/3415 2453/3382 2452/3302 -f 2388/3378 2452/3299 2390/3381 -f 2391/3298 2343/3297 2342/3218 -f 2389/3379 2388/3378 2390/3381 -f 2390/3381 2342/3218 2389/3379 -f 2451/3987 2904/2602 1890/5394 -f 2451/3376 2450/3293 2449/3329 -f 2449/2528 2448/216 2451/3987 -f 2444/3371 2901/3984 2447/3374 -f 2444/3371 2445/3372 2901/3984 -f 2441/3368 2440/3366 2442/3369 -f 3125/4305 2439/3364 2437/3363 -f 2437/3361 2436/3360 3123/4302 -f 2330/3198 2385/5488 2381/3281 -f 2379/3280 2385/5488 2330/3198 -f 2432/5489 3119/4298 3120/4299 -f 2431/4297 3119/4298 2432/5489 -f 2430/5490 3118/4296 2431/4297 -f 2432/5489 2430/5490 2431/4297 -f 2430/5490 2429/5491 3118/4296 -f 3115/4293 2427/3348 2426/5019 -f 2430/3351 2426/5019 2427/3348 -f 2421/3338 2419/3334 3113/3333 -f 2377/3340 2419/3334 2421/3338 -f 2369/3265 2419/3335 2420/3337 -f 2417/3375 1838/2529 2418/4289 -f 2416/5395 3833/5398 2449/2528 -f 2413/3330 2414/3414 2416/3328 -f 2413/3325 2412/3257 2411/3323 -f 2365/3256 2319/3180 2411/3323 -f 2411/3323 2319/3180 2364/3324 -f 2415/3327 2411/3323 2410/3253 -f 2409/3322 2363/3252 2362/3176 -f 2409/3322 2362/3176 2361/5492 -f 2409/3413 2361/3250 2408/3321 -f 2406/3320 2467/5477 2407/3318 -f 2465/5483 2404/3317 2403/3316 -f 2313/5485 2463/3402 2402/3401 -f 2313/5485 2401/3313 2398/3311 -f 2353/3236 2454/3309 2399/3310 -f 2352/3235 2350/5486 2454/3309 -f 2397/3384 2350/5486 2395/3306 -f 2395/3306 2350/5486 2348/3229 -f 2394/3307 2396/3308 3890/5493 -f 3890/5494 2344/5495 2394/3304 -f 2392/3300 2394/3304 2344/5495 -f 3890/5493 496/671 2344/3223 -f 2347/3226 3890/5493 2396/3308 -f 2342/3218 2341/3216 2389/3379 -f 2340/3215 2339/3292 2388/3294 -f 2386/3289 2438/3362 2387/3290 -f 2385/3359 2386/3289 2338/3295 -f 2385/5488 2382/3282 2381/3281 -f 2382/3286 2384/3285 2332/3203 -f 2381/3281 488/3197 2330/3198 -f 2377/3274 2376/3273 2420/3337 -f 2375/3271 2324/3190 481/653 -f 2375/3336 481/3186 2323/3189 -f 2375/3336 2323/3189 2370/3266 -f 2323/3189 2371/3270 2370/3266 -f 2366/3255 2319/3180 2365/3256 -f 2319/3180 2366/3255 2320/3181 -f 2320/3181 2373/3268 2374/3184 -f 2320/3181 2366/3255 2373/3268 -f 2374/3184 2373/3268 2371/3270 -f 2373/3268 2372/3269 2371/3270 -f 2410/3253 2364/3254 2318/3178 -f 2363/3252 2318/3178 2362/3176 -f 2405/3248 2467/3403 2406/3249 -f 502/673 2313/3172 2312/3171 -f 499/3237 2353/5496 2401/3238 -f 2351/3234 2350/5486 2352/3235 -f 2346/3225 3890/5493 2347/3226 -f 2346/3225 496/671 3890/5493 -f 2346/3225 440/668 496/671 -f 2345/3301 2392/3300 2344/5495 -f 2389/3379 2341/3216 2336/3210 -f 2336/3210 2340/3380 2389/3379 -f 2386/3289 2339/3288 2338/3295 -f 2337/3214 2384/3285 2338/3212 -f 491/3204 2383/3283 2333/3205 -f 491/664 490/663 2383/3284 -f 491/664 456/622 490/663 -f 489/662 2382/3286 2332/3203 -f 488/3197 2331/3199 487/3201 -f 2329/3196 484/657 2328/3195 -f 478/650 2314/3174 2316/3173 -f 2312/3171 2154/2943 2358/3242 -f 2288/3139 2307/3143 2289/3142 -f 2285/649 2288/3139 2289/3142 -f 2284/3138 2286/3140 2285/649 -f 2262/3100 2284/3138 2259/3097 -f 2284/3138 2262/3100 2311/3170 -f 2262/3100 2259/3097 2261/3099 -f 2258/3096 2259/3097 2284/3138 -f 2254/3092 2255/3093 477/647 -f 625/855 510/3087 2249/3086 -f 2277/3083 508/686 2245/3082 -f 506/683 2245/3082 508/686 -f 506/683 2136/2912 2245/3082 -f 2136/2912 2135/2911 2245/3082 -f 2277/3083 2245/3082 2244/3081 -f 2243/2904 2610/2895 1346/1831 -f 1345/1828 1342/1822 2242/3075 -f 1345/1827 1344/1826 1342/1818 -f 1658/2292 3891/5497 2237/3069 -f 3891/5497 1651/2280 2232/3060 -f 2237/3069 3891/5497 2235/3063 -f 3891/5497 2232/3060 2235/3063 -f 2179/5498 2235/3063 2234/3062 -f 2234/3062 3892/5499 2179/5498 -f 3892/5500 3893/5501 2179/2980 -f 3894/5502 2180/2981 3893/5501 -f 2181/2982 3894/5502 3895/5503 -f 2181/2982 3895/5503 3896/5504 -f 2182/2983 3896/5504 3897/5505 -f 3897/5505 3896/5504 3898/5506 -f 3897/5505 3898/5506 3899/5507 -f 3897/5508 3899/5509 3900/5510 -f 2186/2988 3897/5508 3900/5510 -f 3900/5510 3899/5509 3901/5511 -f 3900/5510 2201/3011 2186/2988 -f 3900/5510 3901/5511 2201/3011 -f 2201/3011 3901/5511 3902/5512 -f 3902/5512 3922/5513 2201/3011 -f 3903/5514 3904/5515 2202/5516 -f 2202/5516 3904/5515 3905/5517 -f 1458/2000 2203/1999 3906/5518 -f 3905/5517 3906/5518 2203/1999 -f 2204/3012 1458/3014 3907/5519 -f 2221/3047 2223/2269 2222/3048 -f 1642/2270 2223/2269 2221/3047 -f 1642/2270 2221/3047 2220/3046 -f 2224/5520 3908/3017 3909/2271 -f 2225/5521 3907/5519 3910/5522 -f 3910/3052 3926/5523 3911/5524 -f 2227/3055 3910/3052 3911/5524 -f 2226/3054 3912/5525 3913/5526 -f 2228/3056 3913/5526 2229/3057 -f 3913/5526 2230/3058 2229/3057 -f 3915/5527 2230/3058 3914/5528 -f 3915/5527 3914/5528 3916/5529 -f 2233/3061 2231/3059 3915/5527 -f 2233/3061 3915/5527 3917/5530 -f 3892/5499 3916/5529 3918/5531 -f 3918/5531 3893/5532 3892/5499 -f 3893/5532 3918/5531 3894/5533 -f 3899/5509 3920/5534 3901/5511 -f 3920/5534 3902/5512 3901/5511 -f 3921/5535 3922/5513 3902/5512 -f 3903/5514 3922/5513 3923/5536 -f 3923/5536 3924/5537 3903/5514 -f 3911/5524 3903/5514 3924/5537 -f 3912/5525 3911/5524 3924/5537 -f 3925/5538 3903/5514 3911/5524 -f 3904/5515 3903/5514 3925/5538 -f 3925/5538 3926/5523 3904/5515 -f 3904/5515 3926/5523 3927/5539 -f 3906/5518 3905/5517 3927/5539 -f 3905/5517 3904/5515 3927/5539 -f 3906/5518 3927/5539 3926/5523 -f 3923/5536 3912/5525 3924/5537 -f 3912/5525 3923/5536 3928/5540 -f 3912/5525 3928/5540 3914/5528 -f 3919/5541 3923/5536 3921/5535 -f 3919/5541 3916/5529 3923/5536 -f 3928/5540 3923/5536 3916/5529 -f 3921/5542 3923/5543 3922/5544 -f 3920/5534 3921/5535 3902/5512 -f 3896/5504 3920/5545 3899/5507 -f 3898/5506 3896/5504 3899/5507 -f 3918/5531 3921/5535 3920/5534 -f 3895/5546 3918/5531 3920/5534 -f 3918/5531 3919/5541 3921/5535 -f 3918/5531 3916/5529 3919/5541 -f 3917/5530 3916/5529 3892/5499 -f 3917/5530 3915/5527 3916/5529 -f 3916/5529 3914/5528 3928/5540 -f 2231/3059 2230/3058 3915/5527 -f 2230/3058 3913/5526 3914/5528 -f 3914/5528 3913/5526 3912/5525 -f 2227/3055 3911/5524 3912/5525 -f 1647/2276 3910/3052 2227/3055 -f 1646/3053 3910/3052 1647/2276 -f 3926/5523 3925/5538 3911/5524 -f 3907/5547 3926/5523 3910/3052 -f 3926/5523 3907/5547 3906/5518 -f 1458/3014 3906/5548 3907/5519 -f 3908/3017 3907/5519 3909/2271 -f 3908/3017 2224/5520 2220/3046 -f 3907/5519 3908/3017 2204/3012 -f 2203/1999 2202/5516 3905/5517 -f 2202/5516 3922/5513 3903/5514 -f 2182/2983 2181/2982 3896/5504 -f 3896/5504 3895/5503 3920/5545 -f 3894/5533 3918/5531 3895/5546 -f 2181/2982 2180/2981 3894/5502 -f 3917/5530 3892/5499 2234/3062 -f 2233/3061 3917/5530 2234/3062 -f 2226/3054 3913/5526 2228/3056 -f 2227/3055 3912/5525 2226/3054 -f 2228/3056 1648/2277 2226/3054 -f 2225/5521 3909/2271 3907/5519 -f 1645/2273 1644/2272 2225/5521 -f 1644/2272 3909/2271 2225/5521 -f 2224/5520 1642/2270 2220/3046 -f 1640/2267 2222/5549 1641/2180 -f 2217/3040 1635/3035 2211/3027 -f 1773/2433 2214/3034 1770/2429 -f 2217/3040 2211/3027 2209/3023 -f 1465/3021 2208/3022 1486/5550 -f 1464/3020 1463/3015 2206/3018 -f 2207/3019 2205/3016 2219/3044 -f 3908/3017 2220/3046 2205/3016 -f 2206/3018 1463/3015 2205/3016 -f 1455/1984 2202/5516 2203/1999 -f 2202/5516 1455/1984 1446/1977 -f 2201/3011 3922/5513 2202/5516 -f 1446/1977 2201/3011 2202/5516 -f 1444/1978 1445/3008 2201/5551 -f 2196/2998 2188/2990 2189/3009 -f 2188/2990 2187/2989 2189/3009 -f 2196/2998 2185/2985 2188/2990 -f 2186/2988 2201/3011 2187/2989 -f 2183/2987 3897/5508 2186/2988 -f 1336/1809 2183/2984 1337/1810 -f 2182/2983 3897/5505 2183/2984 -f 2179/2980 3893/5501 2180/2981 -f 2179/2980 2178/2979 2235/3065 -f 2180/2981 2177/2978 2179/2980 -f 2236/3064 2178/2979 2263/2976 -f 2176/3101 2311/3170 2262/3100 -f 2175/2971 2174/2970 2287/3141 -f 2172/2977 1336/1809 1335/1820 -f 2168/2961 2163/2955 2170/2962 -f 2161/2946 2158/2953 2156/2941 -f 2168/2961 2129/2952 2160/2951 -f 2131/2949 2022/2760 2069/2825 -f 2069/2825 2081/2849 3929/5552 -f 2069/2826 3929/5553 2070/2827 -f 3929/5553 2081/2849 2070/2827 -f 3930/2844 2070/2827 2081/2846 -f 2069/2825 2132/2908 2081/2849 -f 2132/2908 2069/2825 2022/2760 -f 2158/2953 2160/2951 2159/2950 -f 2152/2938 2158/2953 2159/2950 -f 2152/2938 2156/2941 2158/2953 -f 2292/3147 2157/2945 2155/2944 -f 2156/2941 2152/2938 2150/2940 -f 2147/2928 2151/2937 2025/2929 -f 2144/2924 2146/2930 2145/2925 -f 501/675 2143/677 443/597 -f 443/597 2143/677 2141/5554 -f 2141/2922 2142/2764 2023/2761 -f 2023/2761 2140/2918 2141/2922 -f 2141/5554 2140/2920 443/597 -f 2138/2917 2139/2919 2023/2761 -f 2244/3081 2135/2911 2134/2909 -f 2020/2758 2019/2757 2085/2851 -f 2243/3076 2130/2906 2128/2905 -f 1331/1804 2128/2905 2129/1805 -f 1331/1830 700/957 2128/5555 -f 2243/2904 2128/5555 700/957 -f 2126/3601 2124/2897 2123/2896 -f 2610/2895 2121/2894 2122/3599 -f 2124/2897 2118/2890 2120/2893 -f 2125/2900 2114/2885 2117/2889 -f 2116/2888 2115/2887 2579/3546 -f 2113/2884 2110/2878 2580/3551 -f 1326/2902 2111/2883 2112/2882 -f 2105/2871 2108/2874 2109/2875 -f 2108/2874 2104/2870 2559/3531 -f 2102/2868 1320/1786 1319/1785 -f 3931/1784 2103/2869 1319/1785 -f 2103/5556 3931/1782 3932/1780 -f 2103/5556 1316/1779 1315/1799 -f 2103/5556 3932/1780 1316/1779 -f 1312/1775 2103/5556 1314/1777 -f 1320/1786 2102/2868 1308/1770 -f 1321/1788 1308/1770 1301/1764 -f 2557/3528 2101/1766 2100/2866 -f 2099/1760 1297/1759 2097/5557 -f 2097/5557 1297/1759 2095/2861 -f 2099/1760 2097/5557 2098/3529 -f 2096/2864 2554/3521 2098/2865 -f 2096/2864 2095/2863 2551/3518 -f 2095/2863 2550/3517 2549/3516 -f 1297/1759 2094/2859 2095/2861 -f 1297/1759 1296/1755 2094/2859 -f 1296/1755 2092/1757 2094/2859 -f 2092/1757 2093/5558 2079/2843 -f 2079/2843 2091/2858 2092/1757 -f 2079/2843 2093/5558 2072/2830 -f 1292/1750 2072/2830 2093/5558 -f 2090/2857 2091/2858 2080/2845 -f 2089/3515 2550/3517 2090/5559 -f 2082/2848 2087/2854 2547/3511 -f 2088/2855 2086/2852 2544/3508 -f 2084/2853 2087/2854 2083/2850 -f 2083/2850 2081/2849 2132/2908 -f 2090/2857 2080/2845 2082/2847 -f 2079/2843 2072/2830 2070/2827 -f 2076/2836 1265/2829 2071/2828 -f 2025/2766 2021/2759 2145/2926 -f 2023/2761 2022/2763 2138/2917 -f 2018/2756 2016/2750 2607/3594 -f 2030/2775 2015/2754 2017/2755 -f 2011/3593 2607/3594 2016/2750 -f 2009/2747 2605/5560 2011/2749 -f 2008/2744 2010/2748 2013/2752 -f 2006/2746 2606/3591 2009/2747 -f 2008/2744 2047/2805 2007/2745 -f 2004/2742 2005/2743 1231/1668 -f 2004/2742 2003/2741 2606/3592 -f 2001/2739 2000/2737 2601/3583 -f 2596/3584 2000/2737 1999/2735 -f 2597/3576 1999/3581 1997/2731 -f 1994/2728 1997/2731 1996/2730 -f 1993/2727 1997/2731 1994/2728 -f 1976/2703 1991/3579 1977/2704 -f 1973/2700 2593/3572 1976/2703 -f 1975/2707 1979/2708 1974/2714 -f 1973/2700 1972/2699 2592/3571 -f 1972/2699 1967/2693 1966/2692 -f 1974/2701 1970/2697 1971/2698 -f 1970/2713 1983/2712 1969/2720 -f 2589/3568 1966/2692 1965/2690 -f 1965/2690 1963/2689 2587/5561 -f 1965/2690 241/309 1964/2691 -f 1964/2691 241/309 1963/2689 -f 1962/2688 2587/5561 1963/2689 -f 1961/3562 2543/3507 1962/3563 -f 1955/2678 1953/2677 1961/2687 -f 1956/2681 1952/2676 1954/2675 -f 1953/2674 1951/2672 2541/3505 -f 1958/2685 1950/2671 1952/2673 -f 201/266 1950/2671 204/269 -f 199/262 1947/2668 1948/264 -f 1948/264 1945/2664 2528/3491 -f 1947/2668 1943/2665 1945/2664 -f 1947/2668 198/260 1943/2665 -f 1945/2664 1946/2667 2527/3489 -f 1942/2663 1943/2665 198/260 -f 1941/2662 2524/3486 1942/2663 -f 2522/2657 1940/2659 1939/2658 -f 1939/2658 195/258 193/252 -f 193/252 1938/2656 1939/2658 -f 191/250 1937/2655 1938/2656 -f 189/248 1936/2653 3803/2654 -f 1934/2652 3816/5374 1936/2653 -f 188/247 1931/5370 1932/2648 -f 187/246 3811/5368 1931/5562 -f 1929/2646 1930/2647 1915/2631 -f 1915/2631 1926/2630 1927/2644 -f 1926/2630 1914/2629 1916/2632 -f 3807/5362 1927/2644 1922/2641 -f 1925/2643 3807/5362 1922/2641 -f 1925/2643 1924/2642 3805/5360 -f 1920/2638 1923/2640 1921/2639 -f 1922/2641 1926/2630 1921/2639 -f 1920/2638 1926/2630 1916/2632 -f 1918/2636 2515/3485 1919/2637 -f 1914/2629 1913/243 1916/2632 -f 2510/3471 1912/240 1910/2628 -f 1911/2627 2505/3462 1910/2626 -f 1909/236 183/235 1908/2624 -f 2504/3461 1909/236 1908/2624 -f 2496/3452 1908/2624 182/2625 -f 1907/2621 182/2625 181/233 -f 180/234 1907/2621 181/233 -f 1907/2621 1906/2620 2496/3452 -f 1902/2613 178/2615 177/229 -f 175/226 1900/2611 1901/228 -f 175/226 174/5563 1900/2611 -f 1897/5564 2487/5565 1898/3444 -f 1894/2605 2485/3438 1895/2606 -f 1893/3426 2481/3431 1894/2605 -f 1893/3426 1894/2605 1892/2604 -f 1893/3426 1892/2604 2478/2603 -f 2904/2602 1891/92 170/215 -f 167/213 1889/5396 169/214 -f 1887/2598 1885/2596 3830/5404 -f 164/201 1885/2596 1886/2597 -f 164/201 369/474 1885/2596 -f 1882/2593 3830/5404 1885/2596 -f 3830/5404 1882/2593 1880/2591 -f 1880/2591 1879/2590 3828/5401 -f 1879/2590 1878/2589 3827/5402 -f 1875/2581 1870/2575 1872/2578 -f 1874/2580 1873/2579 3883/5473 -f 1871/2577 3867/5449 1873/2579 -f 1868/2573 1866/2572 1871/2577 -f 349/448 1864/5566 1867/5567 -f 1863/2566 3851/5426 1865/2568 -f 3850/5424 1860/2561 1859/2560 -f 1858/2559 3844/5418 1859/2560 -f 1855/2554 3842/5442 1856/2555 -f 1851/2542 1850/2541 1852/2543 -f 1849/2540 3885/5476 1850/2541 -f 1848/2537 3885/5476 1849/2540 -f 1848/2537 1828/2536 1846/2535 -f 1843/2532 3839/5413 1844/2533 -f 1842/2531 3837/5411 1843/2532 -f 2449/2528 1840/2527 2446/3373 -f 1839/2526 2441/3368 1840/2527 -f 1838/2529 2417/3375 1839/2526 -f 1838/2529 1837/2523 2418/4289 -f 1843/2532 1837/2523 1838/2529 -f 1845/2534 1834/2524 1837/2523 -f 1836/2522 1835/2521 3111/4286 -f 3109/5020 1832/2515 1831/2514 -f 1831/2514 3105/2516 3106/4277 -f 1832/2515 1830/2517 3105/2516 -f 1834/2520 1828/2510 1830/2513 -f 1829/5022 3102/4273 1830/2517 -f 1847/5568 1827/2511 1828/2510 -f 1847/5568 3933/5569 1827/2511 -f 1827/2507 3933/5570 1825/5571 -f 1825/5571 3933/5570 333/429 -f 333/429 3933/5570 335/430 -f 337/432 335/430 3933/5570 -f 337/5572 3933/5570 1847/5573 -f 1826/2509 1829/5022 1827/2507 -f 1826/2506 1823/2505 3100/4270 -f 1822/2501 3100/5574 1823/2502 -f 1822/2501 1821/5023 3097/4266 -f 1824/2503 1819/2498 1822/2501 -f 331/421 1819/2498 1824/2503 -f 1813/2488 1820/2499 1818/2497 -f 1817/2496 1820/2499 1813/2488 -f 1815/5575 2808/5132 1816/2495 -f 329/419 1809/2486 1812/2489 -f 1808/2485 2821/3880 1809/2486 -f 2817/3871 1807/2481 1806/2480 -f 2815/3866 1806/2480 1805/2479 -f 1806/2480 1797/2476 1805/2479 -f 1806/2480 1800/2482 1797/2476 -f 1800/2472 1798/2470 1797/2469 -f 1801/2473 1802/2461 3934/3844 -f 1799/2471 3934/3844 2797/2464 -f 3934/3844 1799/2471 1801/2473 -f 1796/2468 1794/2467 2798/3846 -f 1799/2471 2797/2464 1795/2463 -f 1794/2465 2797/2464 3086/3843 -f 3934/3844 1802/2461 2796/2462 -f 980/1338 751/1028 1793/2460 -f 1791/2458 1785/2448 2783/3825 -f 2777/3821 1784/2447 1783/2446 -f 1782/2445 2778/3822 1783/2446 -f 1781/5576 2771/5136 1782/5135 -f 1781/2444 1780/2443 2771/3811 -f 1780/2443 1778/2440 1776/2439 -f 1499/2052 1775/5577 1777/5578 -f 2769/3809 1776/2436 1774/2434 -f 1498/3033 1774/2434 1775/2435 -f 2769/3809 1774/2434 1772/2432 -f 1770/2429 1771/2430 1773/2433 -f 2214/3034 1769/2428 1770/2429 -f 1763/2427 1765/2423 1767/2422 -f 2756/3794 1765/2420 1764/2421 -f 1761/2416 1764/2421 1763/2417 -f 1758/2413 1757/2411 2727/3753 -f 1756/2409 1755/2407 2723/3750 -f 1607/5579 3935/5580 1753/2403 -f 1605/5581 3935/5580 1607/5579 -f 1603/2380 1753/2403 3935/5580 -f 1604/5582 1603/2380 3935/5580 -f 1754/2404 1750/2397 2720/2396 -f 1738/2386 1745/2391 1748/2395 -f 1747/3745 1749/2398 1748/2399 -f 1738/2386 1739/2385 1745/2391 -f 1741/2388 2705/3727 1742/2389 -f 1751/2401 1735/2382 1737/2384 -f 1736/2383 1733/2376 1732/2375 -f 1752/2402 1734/2379 1735/2381 -f 2701/3723 1732/2375 1731/2374 -f 1731/2374 1602/2209 1730/2373 -f 1728/2208 1722/5583 1726/2370 -f 1726/2370 1725/2369 1727/2371 -f 1723/2367 2682/3690 1724/3713 -f 1726/2370 1722/2365 1723/2367 -f 2681/3689 1721/2366 1719/2361 -f 2679/3687 1719/2361 1720/2364 -f 1720/2364 1718/2363 2651/3655 -f 1721/2366 1717/2362 1719/2361 -f 1721/2366 3936/5584 1717/2362 -f 1599/2206 3936/5585 1721/2366 -f 1718/2360 1716/2358 2649/3650 -f 3936/5586 1715/2357 1717/2359 -f 3936/5586 1598/2202 1715/2357 -f 1599/2203 1598/2202 3936/5586 -f 1716/2358 1714/2356 2645/3645 -f 1712/2354 1715/2357 1598/2202 -f 2637/3646 1714/2356 1713/2355 -f 1711/2351 1710/2350 1713/3643 -f 1709/2349 1595/2352 1706/2346 -f 1706/2346 1702/2341 1707/2347 -f 1592/5587 1704/2344 1705/2195 -f 1704/2344 1592/5587 1701/2342 -f 1702/2341 1706/2346 1703/2343 -f 1592/5587 1700/2340 1701/2342 -f 1591/2194 1699/2193 1700/2340 -f 1700/2340 1699/2193 1590/2191 -f 1697/2335 872/1196 871/1195 -f 2643/3642 1696/2334 1694/2332 -f 1693/2330 2643/3641 1694/2331 -f 1693/2330 1692/2329 2639/3636 -f 1690/2327 2635/3632 1692/2329 -f 1689/2326 2634/3631 1690/2327 -f 1691/2328 1687/2324 1688/2323 -f 1687/2322 1695/2333 1685/2320 -f 1682/2317 1684/2319 1683/2318 -f 1681/2314 1686/2325 1682/2315 -f 1681/2314 1679/2312 1689/2326 -f 1676/2309 2630/3628 1677/2310 -f 1675/2308 1673/2306 2628/3625 -f 1673/2306 1674/2307 1680/2313 -f 1680/2313 1672/2316 1673/2306 -f 2628/3625 1671/2303 1669/2301 -f 1672/2305 1670/2304 1671/2303 -f 1670/2304 1668/2302 1669/2301 -f 2626/3623 1669/2301 870/1194 -f 1668/2302 871/1195 870/1194 -f 1667/3622 870/1194 1665/2300 -f 1663/2298 1666/3616 1665/2300 -f 2616/3609 1663/2297 1662/2296 -f 1660/2294 2619/3611 1662/2296 -f 1660/2294 1659/2293 2241/3074 -f 1652/2281 3891/5497 1658/2292 -f 1652/2281 1651/2280 3891/5497 -f 1654/2283 1659/2293 1657/2289 -f 1657/2289 1661/2295 866/1189 -f 1654/2283 1655/2284 1653/2282 -f 883/1213 856/1173 3937/5588 -f 3937/5588 856/1173 855/1172 -f 1649/2278 1651/2280 1650/2279 -f 1649/2278 1648/2277 2228/3056 -f 2224/5520 3909/2271 1643/2268 -f 1643/2268 1642/2270 2224/5520 -f 1582/2184 2223/2269 1643/2268 -f 2222/5589 2223/5590 1641/2180 -f 1640/2267 1641/2180 1579/2178 -f 1579/2178 1641/2180 1580/2177 -f 1639/5591 2222/5549 1640/5592 -f 2219/3044 1639/3049 1638/3045 -f 1565/2152 1637/5593 1638/2265 -f 2217/3040 1636/3042 1635/3035 -f 1633/2260 2215/3038 1635/2262 -f 1628/2249 1619/2229 1617/2227 -f 1630/2257 1627/2246 1628/2249 -f 1628/2249 1625/2248 1619/2229 -f 1630/2257 1626/2247 1627/2246 -f 1626/2245 1634/2261 1624/2244 -f 1624/5594 1634/5595 1553/2134 -f 1625/2243 1622/2238 1619/2231 -f 1617/2227 1616/2226 1629/2250 -f 1615/2410 1757/2411 1616/2412 -f 1614/2222 1618/5596 1613/2221 -f 1539/2108 1609/2218 1613/2221 -f 1612/2220 1611/2219 1615/2223 -f 1610/2406 1755/2407 1611/2408 -f 1538/2107 1608/2216 1610/2217 -f 1607/5579 1753/2403 1608/2405 -f 3935/5580 1605/5581 1604/5582 -f 1600/2204 1730/2373 1602/2209 -f 1728/2208 1729/2372 1600/2204 -f 1728/2208 1601/2207 1722/5583 -f 1721/2366 1601/2207 1599/2206 -f 1598/2202 1596/2199 1712/2354 -f 1594/2345 1706/2346 1595/2352 -f 1591/2194 1592/5587 1705/2195 -f 1592/5587 1591/2194 1700/2340 -f 1589/2190 1698/5597 1590/2191 -f 874/1201 1698/5597 1589/2190 -f 876/1202 1589/2190 1588/2192 -f 1588/2192 1580/2177 1581/2179 -f 1588/2192 1581/2179 1587/2189 -f 1587/2189 1586/2188 1648/2277 -f 1584/2185 1582/2184 1643/2268 -f 1587/2189 1581/2179 1583/2182 -f 1582/2181 1641/2180 2223/5590 -f 1593/2200 1597/2205 1578/2176 -f 1579/2178 1578/2176 1577/2175 -f 1578/2176 1535/2104 1575/2174 -f 1573/2168 1571/5598 1574/2170 -f 1574/2170 1571/5598 1567/2158 -f 1567/2158 1571/5598 1568/2159 -f 1574/2171 1567/2157 1566/2156 -f 1566/2154 1565/2152 1576/2173 -f 1561/2148 1633/2260 1562/2149 -f 1561/2147 1558/2146 1634/2261 -f 1558/2142 1556/2138 1634/5595 -f 1553/2134 1634/5595 1556/2138 -f 1559/2145 1560/2144 1564/2155 -f 1568/2159 1557/2141 1559/2143 -f 1555/2139 1557/2140 1569/2161 -f 1569/5599 1523/2082 1555/2137 -f 1555/2137 1523/2082 1521/2080 -f 1554/2135 1553/2134 1556/2138 -f 1552/2133 1624/2242 1553/2134 -f 1551/2130 1548/2123 1547/2122 -f 1547/2122 947/2125 943/1285 -f 943/1285 1546/2120 1547/2122 -f 1546/2119 1544/2117 1623/2241 -f 1543/2115 1621/2235 1544/2117 -f 1541/2112 1543/2115 1542/2113 -f 1541/2111 1539/2110 1613/2234 -f 1539/2108 1538/2107 1609/2218 -f 1606/2213 1537/2105 1535/2104 -f 1536/2102 1540/2109 1532/2101 -f 1535/2100 1534/2099 1575/2172 -f 1531/2092 1528/2169 1533/2096 -f 1540/2114 1531/2092 1532/2095 -f 1531/2092 1529/2094 1528/2169 -f 1542/2113 1530/2093 1531/2092 -f 1530/2091 940/1281 939/1280 -f 1528/5600 1529/2090 1527/2088 -f 1528/2089 1526/2086 1572/2167 -f 1527/2088 937/5601 1526/2086 -f 758/1038 937/5601 1527/2088 -f 1572/2167 1526/2086 1525/2085 -f 1570/2163 1525/2085 1524/2084 -f 1524/2084 1523/2083 1569/2164 -f 906/5602 1522/2081 1523/2082 -f 1520/2079 1519/2078 1548/2123 -f 1549/2126 1519/2076 1518/2074 -f 1510/2069 1513/1291 1517/2075 -f 1510/2069 1517/2075 932/1275 -f 1788/2455 1512/2067 1511/2456 -f 1787/2453 1511/2456 1506/5603 -f 1514/2072 1509/2062 1510/2063 -f 1787/2451 1506/2059 1504/2057 -f 1503/2056 1785/2448 1504/2057 -f 1504/2057 927/1268 1503/2056 -f 1502/2441 1779/2442 1503/2056 -f 1777/5578 1502/2055 1500/2053 -f 1777/5578 1500/2053 1499/2052 -f 1499/2052 1498/2051 1775/5577 -f 1497/3032 2213/3030 1498/3033 -f 1496/2049 1500/2053 1495/2048 -f 1495/2048 924/1265 919/1260 -f 920/1261 919/1260 924/1265 -f 1494/2047 1493/2046 1497/2050 -f 1491/3029 2212/3028 1493/3031 -f 1490/3026 2210/3024 1491/3029 -f 1488/2040 1487/2039 1490/2043 -f 1486/5550 2208/3022 1487/3025 -f 1484/2034 1482/2031 1467/2010 -f 3938/5604 1467/2010 1482/2031 -f 3938/5604 3939/5605 1468/2011 -f 3939/5605 1470/5606 1468/2011 -f 1468/2011 1470/5606 1469/2013 -f 1471/1996 1470/5607 3941/5608 -f 1472/2015 1471/1996 3941/5608 -f 1472/5609 3941/5610 3939/5605 -f 3939/5605 1473/2018 1472/5609 -f 3939/5605 1480/2029 1473/2018 -f 1480/2029 3942/2019 1473/2018 -f 3938/5604 1480/2029 3939/5605 -f 1480/2029 3938/5604 1482/2031 -f 3940/5611 896/5612 1453/2014 -f 3939/5605 3941/5610 1470/5606 -f 3938/5604 1468/2011 1467/2010 -f 1481/2030 1480/2029 1482/2031 -f 1474/2020 3942/2019 1480/2029 -f 1479/2028 1481/2030 1475/2021 -f 1475/2021 1481/2030 1476/2022 -f 915/1256 1476/2022 1481/2030 -f 901/1237 898/1233 1475/2021 -f 1472/5609 1473/2018 3940/2017 -f 1453/2014 1472/2015 3940/5611 -f 1469/1995 1470/5607 1471/1996 -f 1456/1998 1469/1995 1454/1985 -f 1456/1998 1454/1985 1455/1984 -f 1462/2006 1466/2009 1467/2010 -f 1466/2009 1465/2008 1486/2036 -f 1460/2003 1459/2002 1463/2005 -f 1457/1997 1461/2004 1456/2012 -f 1455/1984 2203/1999 1456/1998 -f 1451/1990 1454/5613 1471/1993 -f 1449/1988 1454/5613 1451/1990 -f 1443/1976 1455/1984 1447/1980 -f 1446/1977 1455/1984 1443/1976 -f 1446/1979 1444/1978 2201/5551 -f 1414/1925 1416/1924 1444/1978 -f 2191/2992 1416/1924 1413/1919 -f 2191/2992 1413/1919 1412/1920 -f 1410/1916 1412/1920 1411/1917 -f 1408/1913 1406/1910 2199/3005 -f 1404/1908 1339/1813 1405/1909 -f 1404/1908 1340/1814 1339/1813 -f 3943/5614 3944/5615 3945/5616 -f 1341/1816 3943/5614 3945/5616 -f 3945/5617 3946/5618 1343/1823 -f 3945/5616 3947/5619 3946/5620 -f 3947/5619 3948/5621 3946/5620 -f 3946/5618 3949/5622 1354/1837 -f 1354/1837 3949/5622 3950/5623 -f 1354/1837 3950/5623 1355/1838 -f 1355/1838 3951/5624 1356/1839 -f 3953/5625 3951/5624 3952/5626 -f 3953/5627 3952/5628 3954/5629 -f 3960/5630 3953/5627 3954/5629 -f 1385/1879 3960/5630 3954/5629 -f 3955/5631 3960/5632 1385/1878 -f 1384/1877 3955/5631 1385/1878 -f 3956/5633 1384/1877 1383/1875 -f 3957/5634 3956/5633 3958/5635 -f 3958/5635 3959/5636 3957/5634 -f 3957/5634 3959/5636 3955/5631 -f 3959/5636 3960/5632 3955/5631 -f 3958/5637 1358/1841 1356/1839 -f 1356/1839 1358/1841 1357/1840 -f 3958/5635 3962/5638 1358/5639 -f 3962/5638 3963/5640 1358/5639 -f 3963/5641 3964/5642 1358/5643 -f 3965/5644 1361/1844 1360/1843 -f 3966/5645 3965/5644 1360/1843 -f 3963/5640 3968/5646 3967/5647 -f 3963/5641 3967/5648 3964/5642 -f 3962/5638 3968/5646 3963/5640 -f 3962/5638 1383/1875 3968/5646 -f 3964/5642 3967/5648 3966/5645 -f 3969/5649 3967/5647 3968/5646 -f 1382/1874 3969/5649 3968/5646 -f 1381/1873 3969/5650 1382/5651 -f 1381/5652 3970/5653 3969/5654 -f 3970/5653 3971/5655 3966/5645 -f 3971/5655 3970/5653 3972/5656 -f 3971/5655 3972/5656 3973/5657 -f 3973/5657 3974/5658 3971/5655 -f 3971/5655 3974/5658 3975/5659 -f 3971/5655 3975/5659 3965/5644 -f 3965/5644 1362/1847 1361/1844 -f 3975/5659 1368/1856 1362/1847 -f 3975/5659 1362/1847 3965/5644 -f 1370/1858 3975/5659 3974/5658 -f 3973/5657 1376/5660 3974/5658 -f 1376/5660 1374/1862 3974/5658 -f 3976/5661 1376/5662 3973/5663 -f 3973/5663 3977/5664 3976/5661 -f 3976/5661 3977/5664 1377/1866 -f 1378/1868 1377/1866 3977/5664 -f 3977/5664 1381/1873 1378/1868 -f 3977/5664 3972/5665 1381/1873 -f 3973/5663 3972/5665 3977/5664 -f 3972/5656 3970/5653 1381/5652 -f 3969/5654 3970/5653 3967/5648 -f 3970/5653 3966/5645 3967/5648 -f 3966/5645 3971/5655 3965/5644 -f 3964/5642 3966/5645 1360/1843 -f 3956/5633 3962/5638 3958/5635 -f 1356/1839 3961/5666 3958/5637 -f 3959/5667 3961/5666 3953/5625 -f 3960/5668 3959/5667 3953/5625 -f 3958/5637 3961/5666 3959/5667 -f 3956/5633 1383/1875 3962/5638 -f 3957/5634 1384/1877 3956/5633 -f 3957/5634 3955/5631 1384/1877 -f 3978/5669 1386/5670 3954/5671 -f 3978/5669 3979/5672 1386/5670 -f 3984/5673 3982/5674 3983/5675 -f 3983/5675 1403/1906 3984/5673 -f 3985/5676 3984/5673 3986/5677 -f 3985/5676 3986/5677 1391/1890 -f 1394/1893 1392/1891 3986/5677 -f 3986/5677 1403/1906 1394/5678 -f 3984/5673 1403/1906 3986/5677 -f 3983/5675 1404/1908 1403/1906 -f 1404/1908 3983/5675 3943/5614 -f 3944/5615 3983/5675 3982/5674 -f 3944/5615 3982/5674 3947/5619 -f 3947/5619 3981/5679 3948/5621 -f 3949/5680 3987/5681 3978/5669 -f 3949/5680 3978/5669 3988/5682 -f 3949/5622 3988/5683 3950/5623 -f 3950/5623 3988/5683 3951/5624 -f 3952/5626 3951/5624 3988/5683 -f 3954/5671 3952/5684 3988/5685 -f 3987/5681 3980/5686 3979/5672 -f 3948/5621 3980/5686 3987/5681 -f 3948/5621 3981/5679 3980/5686 -f 3947/5619 3982/5674 3981/5679 -f 3985/5676 3982/5674 3984/5673 -f 3985/5676 3989/5687 3982/5674 -f 1391/1890 3989/5687 3985/5676 -f 1391/1890 1389/1884 3989/5688 -f 1389/1884 3990/5689 3989/5688 -f 3989/5687 3990/5689 3981/5679 -f 3990/5689 1387/1883 3979/5672 -f 3989/5687 3981/5679 3982/5674 -f 3990/5689 3980/5686 3981/5679 -f 3990/5689 3979/5672 3980/5686 -f 3987/5681 3979/5672 3978/5669 -f 3954/5671 3988/5682 3978/5669 -f 3961/5666 3951/5624 3953/5625 -f 3961/5666 1356/1839 3951/5624 -f 3950/5623 3951/5624 1355/1838 -f 3946/5620 3987/5681 3949/5680 -f 3948/5621 3987/5681 3946/5620 -f 3944/5615 3947/5619 3945/5616 -f 3943/5614 3983/5675 3944/5615 -f 3943/5614 1340/1814 1404/1908 -f 1396/1905 1394/5678 1403/1906 -f 1398/1897 1393/1892 1395/1894 -f 1392/1891 1391/1890 3986/5677 -f 1390/1887 1389/1884 1391/1890 -f 1387/1883 3990/5689 1389/1884 -f 3979/5672 1387/1883 1386/5670 -f 1385/1879 3954/5629 1386/1880 -f 1380/1872 1383/1875 1384/1877 -f 1382/1874 3968/5646 1383/1875 -f 1378/1868 1381/1873 1379/1870 -f 1377/1866 1375/1865 3976/5661 -f 3976/5661 1375/1865 1376/5662 -f 1376/5662 1375/1865 1374/5690 -f 3974/5658 1374/1862 1371/1859 -f 3991/5691 1373/1861 775/1065 -f 3992/5692 1373/1861 3991/5691 -f 3993/5693 3992/5692 3991/5691 -f 3993/5693 3991/5691 3994/5694 -f 3995/5695 3993/5693 3994/5694 -f 3994/5694 722/986 3995/5695 -f 722/986 721/985 3995/5695 -f 3995/5695 721/985 720/984 -f 3995/5695 720/984 3996/5696 -f 3996/5697 720/984 719/983 -f 3996/5697 719/983 3997/5698 -f 3997/5698 3998/5699 3996/5697 -f 3996/5696 3998/5700 3993/5693 -f 3997/5698 3999/5701 3998/5699 -f 3999/5701 4000/5702 3998/5699 -f 3998/5700 4000/5703 3992/5692 -f 4000/5703 1372/5704 3992/5692 -f 3999/5701 4001/5705 4000/5702 -f 4001/5705 1369/5706 4000/5702 -f 4002/5707 4001/5705 3999/5701 -f 4002/5707 4003/5708 4004/5709 -f 4004/5709 4003/5708 1367/5710 -f 4003/5708 4005/5711 4006/5712 -f 4003/5708 4006/5712 1366/5713 -f 1366/5713 4006/5714 4007/5715 -f 4006/5714 4008/5716 4007/5715 -f 4007/5715 4008/5716 705/962 -f 1366/5713 4007/5715 704/961 -f 4006/5712 4005/5711 4008/5717 -f 707/964 4008/5717 4005/5711 -f 707/964 4009/5718 4010/5719 -f 4010/5719 4009/5718 4011/5720 -f 4011/5720 4012/5721 4010/5719 -f 4010/5719 4012/5721 709/968 -f 708/965 4010/5719 709/968 -f 709/968 4012/5721 4013/5722 -f 709/968 4013/5722 710/969 -f 4013/5723 712/972 710/970 -f 718/5724 714/5725 4013/5723 -f 718/982 4013/5722 4012/5721 -f 4011/5720 3997/5698 4012/5721 -f 4009/5718 4005/5711 4011/5720 -f 4011/5720 4005/5711 4002/5707 -f 4009/5718 707/964 4005/5711 -f 706/963 4008/5717 707/964 -f 4002/5707 4005/5711 4003/5708 -f 4011/5720 4002/5707 3999/5701 -f 4002/5707 4004/5709 4001/5705 -f 4004/5709 1369/5706 4001/5705 -f 4011/5720 3999/5701 3997/5698 -f 3997/5698 719/983 4012/5721 -f 3996/5696 3993/5693 3995/5695 -f 3991/5691 724/988 3994/5694 -f 774/5726 724/988 3991/5691 -f 774/5726 1271/1721 724/988 -f 4014/5727 724/988 1271/1721 -f 1271/1721 774/5726 1269/1718 -f 3998/5700 3992/5692 3993/5693 -f 3992/5692 1372/5704 1373/1861 -f 1369/5706 1372/5704 4000/5702 -f 1370/1858 3974/5658 1371/1859 -f 1370/1858 1368/1856 3975/5659 -f 4004/5709 1367/5710 1369/5706 -f 1368/1856 1364/1854 1363/1848 -f 1366/5713 1367/5710 4003/5708 -f 1366/5713 704/961 1365/1849 -f 704/961 1363/1850 1365/1849 -f 1362/1847 1368/1856 1363/1848 -f 3964/5642 1360/1843 1359/1845 -f 1358/5643 3964/5642 1359/1845 -f 1331/1830 701/960 700/957 -f 1343/1823 3946/5618 1354/1837 -f 1343/1823 1331/1830 1348/1824 -f 1353/3612 2241/3074 1349/3073 -f 1353/3612 1349/3073 1351/3608 -f 1333/1819 3945/5617 1343/1823 -f 1341/1817 3945/5617 1333/1819 -f 1340/1814 3943/5614 1341/1816 -f 1339/1813 1337/1812 2184/2986 -f 1342/1818 1336/1809 1338/1808 -f 1331/1804 1332/1803 1346/1829 -f 1330/1798 693/951 695/953 -f 695/953 1314/1777 1330/1798 -f 1330/1798 1328/1796 2127/1800 -f 1326/1794 2125/2900 1327/1795 -f 1326/1794 1324/1793 2111/5728 -f 1329/1797 1317/1778 1325/1792 -f 1323/1789 2111/2881 1324/1790 -f 1322/1787 2106/2873 1323/1789 -f 1322/1787 1323/1789 1320/1786 -f 1320/1786 1323/1789 1318/1783 -f 1323/5729 1317/1778 1318/1781 -f 1329/1797 1316/1779 1317/1778 -f 2103/5556 1315/1799 1314/1777 -f 1315/1799 1330/1798 1314/1777 -f 689/948 1311/1774 1313/1776 -f 689/948 688/947 1311/1774 -f 1313/1776 1312/1775 1314/1777 -f 1312/1775 1310/1772 2103/5556 -f 688/947 1306/1773 1311/1774 -f 1309/2867 2103/2869 1310/5730 -f 1308/1770 1309/2867 1307/1769 -f 1306/1773 1305/5731 1307/5732 -f 1309/1771 1306/1773 1307/5732 -f 688/947 1293/1752 1306/1773 -f 687/946 1293/1752 688/947 -f 1306/1773 1293/1752 1305/5731 -f 1307/1769 1305/1768 1304/1763 -f 1295/1756 1298/1758 1305/1768 -f 1300/1762 1302/1765 1304/1763 -f 1296/1755 1298/1758 1295/1756 -f 2092/1757 1295/1756 2093/5558 -f 1305/1768 1294/1754 1295/1756 -f 1295/1756 1294/1754 2093/5558 -f 2093/5558 1294/1754 1292/1750 -f 1291/1749 2072/2830 1292/1750 -f 685/1748 1290/2835 1291/1749 -f 1288/1745 1290/1747 1289/1746 -f 1287/5733 2074/2831 1288/2833 -f 1283/1740 1287/1743 1285/1742 -f 1286/1744 678/934 1285/1742 -f 677/933 1279/1734 1284/1741 -f 1282/1739 1287/1743 1283/1740 -f 1282/1739 1280/1738 2078/5734 -f 1270/1720 2078/2839 1280/1736 -f 1284/1741 1277/1729 1281/1737 -f 1284/1741 1279/1734 1277/1729 -f 1278/1730 1277/1729 1279/1734 -f 1275/5735 1276/1731 726/993 -f 726/993 1273/5736 1275/5735 -f 713/975 731/1002 661/904 -f 673/928 671/5737 675/931 -f 4015/5738 675/931 671/5737 -f 675/931 4015/5739 731/1002 -f 672/929 671/5737 673/928 -f 671/5737 661/904 4015/5738 -f 661/904 671/5737 670/925 -f 670/925 660/903 661/904 -f 4015/5740 661/904 731/1002 -f 726/993 675/931 731/1002 -f 726/993 4014/5741 1273/5736 -f 1274/1724 1272/1723 1271/1721 -f 4014/5727 1271/1721 1273/1722 -f 1268/1715 2078/2839 1270/1720 -f 1266/1714 2077/2838 1268/1715 -f 1265/2829 2076/2836 1266/1714 -f 771/1062 2024/2768 1265/1711 -f 2026/2773 771/1059 1264/1058 -f 1264/1058 1262/1709 2026/2773 -f 1263/1708 1182/5742 1261/1707 -f 1260/1702 1262/1709 1261/1707 -f 1182/5742 1181/1705 1261/1707 -f 1179/1698 1257/1699 1259/1700 -f 1256/1696 2064/2819 1257/1699 -f 2064/2819 1256/1696 1173/1602 -f 2064/2819 1173/1602 1255/1695 -f 1252/1693 1170/1599 1253/1598 -f 2056/2808 1250/1691 1249/1690 -f 1246/1686 1243/1681 1244/1682 -f 1246/1686 1241/1678 1243/1681 -f 4016/5743 1241/1678 1246/1686 -f 1157/5744 4016/5743 1246/1686 -f 4016/5743 4017/5745 1241/1678 -f 4018/5746 4017/5745 4016/5743 -f 4018/5746 4016/5743 1156/5747 -f 1156/5747 4019/5748 4018/5746 -f 4019/5748 4020/5749 4018/5746 -f 4020/5749 4017/5745 4018/5746 -f 4020/5749 4021/5750 4017/5745 -f 4022/5751 4017/5745 4021/5750 -f 4023/5752 4022/5751 4021/5750 -f 4025/5753 4023/5752 4024/5754 -f 4025/5753 4024/5754 1133/1559 -f 4025/5753 1133/1559 4026/5755 -f 4026/5755 4027/5756 4025/5753 -f 4025/5753 4027/5756 4028/5757 -f 4025/5753 4028/5757 4023/5752 -f 4023/5752 4028/5757 4022/5751 -f 1240/1679 4022/5751 4028/5757 -f 4027/5756 1239/5758 4028/5757 -f 1237/5759 1239/1675 4027/5756 -f 4029/5760 1237/5759 4027/5756 -f 1235/1672 1237/1674 4029/5761 -f 1128/5762 1235/1672 4029/5761 -f 1128/5762 4029/5763 4026/5764 -f 4026/5755 4029/5760 4027/5756 -f 1143/1568 1142/1570 4024/5754 -f 4024/5754 1142/1570 1133/1559 -f 1143/1568 4024/5754 4023/5752 -f 1143/1568 4023/5752 4021/5750 -f 1240/1679 4017/5745 4022/5751 -f 1143/1568 4021/5750 4020/5749 -f 1146/5765 1143/1568 4020/5749 -f 1144/1569 1143/1568 1146/5765 -f 1146/5765 4020/5749 4019/5748 -f 1241/1678 4017/5745 1240/1679 -f 1240/1679 4028/5757 1238/1677 -f 1238/1677 4028/5757 1239/1675 -f 1236/1673 1239/5766 1237/1674 -f 1234/1671 1235/1672 1232/1669 -f 1232/1669 1235/1672 1128/5762 -f 1128/5762 4030/5767 1232/1669 -f 1232/1669 4030/5767 1225/1660 -f 1225/1660 4031/5768 1224/1661 -f 1224/1661 4031/5768 4032/1544 -f 4032/1544 1119/1543 1224/1661 -f 4032/1544 4031/5768 1120/1545 -f 4030/5767 4031/5768 1225/1660 -f 1127/1553 4031/5769 4030/5770 -f 1127/1553 1121/1549 4031/5769 -f 1124/1550 1121/1549 1127/1553 -f 1234/1671 1233/1670 2054/2803 -f 1233/1670 1228/1664 2005/2743 -f 1228/1664 1226/1662 1227/1665 -f 1230/1667 2003/2741 1231/1668 -f 1223/1659 297/384 1226/1662 -f 1118/1542 1223/1659 1224/1661 -f 1222/1658 297/384 1223/1659 -f 1221/1657 300/5771 1219/1655 -f 1216/5772 4033/5773 303/5774 -f 4034/1049 304/391 303/390 -f 4034/1050 303/5774 1202/1634 -f 1201/1633 4034/1050 1202/1634 -f 766/1051 1201/1633 1192/5775 -f 1192/5775 767/1053 766/1051 -f 767/1053 1192/5775 1191/5776 -f 1198/1628 1192/5775 1201/1633 -f 4034/1049 976/5777 304/391 -f 303/5774 4035/5778 1202/1634 -f 1205/1638 1202/1634 4035/5778 -f 1205/1638 4035/5778 4036/5779 -f 4036/5779 4035/5778 4033/5773 -f 4036/5779 4033/5773 1215/1650 -f 1215/1650 4033/5773 1216/5772 -f 4037/5780 1214/1647 1216/5772 -f 4037/5780 1216/5772 1221/1657 -f 1220/1656 1214/1647 4037/5780 -f 1220/1656 1217/1651 1214/1647 -f 303/5774 4033/5773 4035/5778 -f 1216/5772 303/5774 1221/1657 -f 1221/1657 1220/1656 4037/5780 -f 1116/1540 1217/5781 1220/1654 -f 1219/1653 1222/1658 1117/1541 -f 1116/1540 1218/5782 1217/5781 -f 1216/5772 1214/1647 1215/1650 -f 1213/1649 4036/5779 1215/1650 -f 1206/1639 4036/5779 1213/1649 -f 1208/1643 1213/5783 1212/1648 -f 1212/1648 1217/1651 1211/1646 -f 1212/1648 1211/1646 1208/1643 -f 1211/1646 1114/1538 1209/1644 -f 1208/1643 1206/1642 1213/5783 -f 1108/1530 1204/1641 1207/1640 -f 1206/1639 1205/1638 4036/5779 -f 1203/1635 1202/1634 1205/1638 -f 1198/1628 1201/1633 1199/1630 -f 1194/1627 1191/5776 1198/1628 -f 1189/5784 1191/5776 1194/1627 -f 1191/5776 1192/5775 1198/1628 -f 769/1055 1191/5776 1190/5785 -f 1184/1615 1190/1621 1185/1616 -f 1191/5776 1189/5784 1190/5785 -f 1188/1619 1193/1622 1187/1618 -f 1090/1506 1186/1617 1092/1510 -f 1183/1710 1182/5742 1263/1708 -f 1182/1613 1081/1496 1181/1612 -f 1179/1698 1258/1701 1180/5786 -f 1174/1605 1178/1608 1177/1610 -f 1181/1612 1081/1496 1176/1607 -f 1174/1605 1177/1610 1176/1607 -f 1173/1602 1178/1697 1174/1603 -f 1078/1491 1172/1601 1079/1492 -f 1170/1599 1254/1694 1171/1600 -f 1164/1684 1245/1683 1165/1689 -f 1163/1591 1168/1596 1162/1590 -f 1160/1588 1159/1587 1164/1592 -f 1157/5744 1246/1686 1159/1685 -f 1156/5747 4016/5743 1157/5744 -f 1155/1581 4019/5787 1156/1582 -f 4019/5787 1155/1581 1147/1573 -f 1155/1581 1151/1576 1147/1573 -f 1158/1584 1153/1579 1154/1580 -f 1152/1578 1151/1576 1155/1581 -f 1149/1575 1151/1576 1071/1480 -f 1149/1575 1148/1574 1151/1576 -f 1147/1573 1151/1576 1148/1574 -f 1147/1573 1146/1572 4019/5787 -f 1134/1560 1142/1570 1135/1561 -f 1142/1570 1144/1569 1135/1561 -f 1144/1569 1141/1567 1135/1561 -f 1141/1567 1145/1571 1140/1566 -f 1065/1470 1139/1565 1140/1566 -f 1057/1460 1134/1560 1136/1562 -f 1135/1561 1137/1563 1136/1562 -f 1133/1559 1142/1570 1134/1560 -f 4026/5755 1133/1559 1131/1557 -f 1058/1463 1132/1558 1134/1560 -f 1058/1463 1130/1556 1132/1558 -f 1125/1552 1130/1556 1058/1463 -f 1125/1552 1058/1463 1124/1550 -f 4026/5755 1131/1557 1129/1555 -f 1129/5788 1128/5762 4026/5789 -f 1127/1553 4030/5770 1128/1554 -f 1130/1556 1125/1552 1126/1551 -f 1125/1552 1124/1550 1127/1553 -f 1120/1545 4031/5768 1121/1546 -f 1122/1547 4032/1544 1120/1545 -f 1118/1542 1224/1661 1119/1543 -f 1046/1449 1116/1540 1118/1542 -f 1118/1542 1117/1541 1223/1659 -f 1218/5782 1116/1540 1045/1448 -f 1211/1646 1115/1539 1114/1538 -f 1114/1538 1113/1537 1111/1534 -f 1041/1443 1112/1536 1113/1537 -f 1041/1475 1039/1440 1112/5790 -f 1039/1440 1024/1407 1112/5790 -f 1040/1441 1039/1440 1041/1475 -f 1210/1645 1109/1531 1108/1530 -f 1108/1530 1107/1529 1204/1641 -f 1106/1631 1200/1632 1107/1636 -f 1104/1524 1197/1626 1106/1526 -f 1105/1528 1109/1531 1102/5791 -f 1103/1523 1101/1521 1099/1518 -f 1109/1531 1100/1533 1102/5791 -f 1100/1533 1110/1532 1022/5792 -f 1100/1520 1022/5793 1098/1519 -f 1094/1511 1099/1518 1096/1513 -f 1095/1512 1091/1507 1093/1509 -f 1090/1506 1092/1510 1091/1507 -f 1088/1504 1089/1505 1090/1506 -f 1086/1502 1088/1504 1084/1499 -f 1083/5794 1182/1613 1085/1501 -f 1081/1496 1182/1613 1083/1498 -f 1175/1606 1081/1496 1003/1371 -f 1003/1371 1080/1495 1175/1606 -f 1080/1495 1079/1494 1175/1606 -f 1169/1597 1001/1370 1075/1488 -f 1074/1486 1162/1590 1075/1488 -f 1073/1484 1161/1589 1074/1486 -f 1072/1482 1153/1579 1073/1484 -f 1072/1482 1071/1480 1150/1577 -f 1149/1575 1071/1480 1069/1479 -f 1068/5795 1149/1575 1069/1479 -f 1064/1469 1149/1575 1068/5795 -f 1068/1476 1067/1473 1066/1472 -f 988/1355 1038/1438 1053/1456 -f 1068/5795 1066/1471 1064/1469 -f 1064/1469 1065/1470 1149/1575 -f 1065/1470 1063/1468 1139/1565 -f 1064/1469 1062/1467 1063/1468 -f 1063/1468 1061/1465 1060/1464 -f 1066/1471 1061/1465 1062/1467 -f 1061/1474 1054/1457 1056/1459 -f 1136/1562 1060/1464 1059/1466 -f 1058/1463 1134/1560 1057/1460 -f 1124/1550 1058/1463 1055/1462 -f 1056/1461 1057/1460 1059/1466 -f 1052/1455 1123/1548 1055/1458 -f 1049/1453 1122/1547 1052/1455 -f 1047/1452 1119/1543 1049/1453 -f 1044/1446 1048/5796 1043/1442 -f 1046/1449 1118/1542 1047/1450 -f 1046/1449 1045/1448 1116/1540 -f 1043/1442 1115/1539 1045/1445 -f 1048/5796 1041/1443 1043/1442 -f 1042/1444 1041/1443 1113/1537 -f 1039/1440 1037/1439 1026/1409 -f 1027/1415 1029/1414 1033/5797 -f 1033/5797 1016/1395 1027/1415 -f 1028/1413 1026/1412 1037/1432 -f 1016/5798 1025/1411 1027/1410 -f 1026/1409 1024/1407 1039/1440 -f 1021/1405 1025/1408 1020/1403 -f 1112/5790 1024/1407 1023/1406 -f 1022/5792 1110/1532 1023/1535 -f 1022/1404 1020/1403 1098/1517 -f 1017/1402 1020/1403 1025/1408 -f 1019/1401 1018/1400 1097/1516 -f 1009/1380 1018/1399 1015/1398 -f 1017/1396 1025/5799 1016/1397 -f 1016/1395 1033/5797 1014/1394 -f 1015/1393 1013/1392 1009/1382 -f 1034/1423 1012/1390 1014/1424 -f 1013/1391 1012/1390 1011/1386 -f 1013/1391 1011/1386 1010/1384 -f 1010/1383 1009/1382 1013/1392 -f 1009/1380 1007/1379 1018/1399 -f 967/5800 1004/1378 1008/1377 -f 1018/1400 1007/1376 1005/1375 -f 1097/1516 1005/1375 1006/1508 -f 1082/1497 1006/1508 1005/1375 -f 1000/1367 1076/1493 1002/1372 -f 1001/1370 1076/1490 1000/1368 -f 1001/1370 999/1369 1074/1486 -f 1002/1372 998/1365 1000/1367 -f 999/1366 997/1363 996/1362 -f 995/1485 1073/1484 996/1487 -f 995/1360 993/1359 1070/1478 -f 994/1361 963/5801 993/1359 -f 989/1357 993/1359 963/5801 -f 992/1358 1070/1478 993/1359 -f 993/1359 989/1357 992/1358 -f 1053/1456 991/1356 988/1355 -f 986/1349 1038/1436 988/1350 -f 984/1347 987/1348 990/1354 -f 990/5802 955/5803 984/1342 -f 1036/1431 986/1346 985/1345 -f 985/1344 983/1343 1035/1428 -f 984/1342 955/5803 983/1343 -f 1035/1429 983/1341 982/1340 -f 980/1338 981/1339 982/1340 -f 979/1336 1031/1427 981/1339 -f 978/1334 1032/1426 979/1336 -f 978/1334 1810/1337 304/1335 -f 977/1333 1034/1425 978/1334 -f 975/1331 1012/1388 977/1333 -f 977/1333 304/1335 976/1332 -f 976/5777 4034/1049 738/1048 -f 974/1330 972/1328 1011/1387 -f 969/1320 972/1385 970/1321 -f 967/1318 1008/1381 969/1319 -f 965/1317 968/1316 959/1306 -f 967/1315 966/1314 1004/5804 -f 997/1363 966/1373 964/1364 -f 994/1361 964/1364 963/5801 -f 962/1353 989/1352 963/5805 -f 962/1308 960/1307 990/1354 -f 957/5806 990/5807 960/1304 -f 959/1306 961/1305 965/1317 -f 959/1302 971/1325 958/1303 -f 960/1304 958/1303 957/5806 -f 957/5806 956/5808 990/5807 -f 990/5802 956/5809 955/5803 -f 954/1297 983/1341 955/1298 -f 980/1338 954/1297 953/1042 -f 953/1042 751/1028 980/1338 -f 952/2459 948/1040 951/1294 -f 944/5810 947/1290 946/1289 -f 945/1288 946/1289 948/1040 -f 946/1289 945/1288 944/5810 -f 944/1286 943/1285 947/2125 -f 1545/5811 941/1283 942/1282 -f 942/1282 940/1281 1530/2091 -f 945/1288 938/1039 940/1281 -f 939/1280 758/1038 1527/2088 -f 937/1279 758/1038 757/1037 -f 936/2087 1526/2086 937/5601 -f 935/1242 1525/2085 936/2087 -f 906/1245 1524/2084 935/1242 -f 906/1245 908/1247 1522/5812 -f 933/1276 1522/5812 908/1247 -f 934/1277 931/1273 1517/2075 -f 932/1275 1517/2075 931/1273 -f 930/1271 928/1269 1516/2073 -f 928/1269 927/1268 1505/2058 -f 925/1266 924/1265 1501/2054 -f 923/1264 920/1261 924/1265 -f 923/1264 926/1267 922/1263 -f 4038/5813 921/1262 913/1252 -f 921/1262 920/1261 923/1264 -f 4038/5813 917/1257 921/1262 -f 1492/2045 919/1260 918/1259 -f 918/1259 916/1258 1483/2033 -f 4038/5813 915/1256 917/1257 -f 1481/2030 916/2032 915/1256 -f 915/1256 914/2027 1476/2022 -f 4038/5813 913/1252 915/1256 -f 914/1255 912/1254 1478/2026 -f 922/1263 911/1253 913/1252 -f 912/1251 909/1248 907/1246 -f 929/1274 910/1249 911/1250 -f 908/1247 910/1249 933/1276 -f 905/1244 903/1241 902/1239 -f 899/1234 898/1233 901/1237 -f 900/1240 756/1035 899/5814 -f 755/1034 753/5815 893/5816 -f 899/1234 755/1235 894/1228 -f 895/1227 897/1232 894/1228 -f 753/1032 892/1226 893/1225 -f 896/1231 892/1226 1453/1223 -f 891/1031 1453/1223 892/1226 -f 890/1030 752/1029 749/1026 -f 889/1222 1452/1994 890/1030 -f 888/1221 1452/1994 889/1222 -f 887/5817 1450/1989 888/1991 -f 885/1218 1450/5818 887/1219 -f 886/1217 1450/1989 885/1218 -f 884/1216 841/1152 886/1217 -f 884/1214 3937/5588 843/5819 -f 855/1172 843/5819 3937/5588 -f 842/5820 843/5819 855/1172 -f 883/1213 3937/5588 884/1214 -f 884/1216 843/1153 841/1152 -f 748/1220 746/5821 885/1218 -f 746/1024 882/1212 885/1215 -f 883/1213 885/1215 882/1212 -f 1650/2279 883/1213 882/1212 -f 882/1212 877/5822 1650/2279 -f 882/1212 878/1211 877/5822 -f 876/1202 1650/2279 877/1203 -f 876/1202 874/1201 1589/2190 -f 879/1206 873/1198 875/1197 -f 874/1199 873/1198 1698/2337 -f 881/1208 872/1196 1697/2335 -f 868/1192 870/1194 869/1193 -f 867/1191 1664/2299 868/1192 -f 866/1189 1661/2295 867/1190 -f 866/5823 865/1185 1656/2288 -f 863/1184 858/5824 865/1185 -f 863/1184 864/1186 862/1183 -f 861/1180 858/5824 863/1184 -f 872/5825 744/1178 860/1177 -f 742/1016 859/1176 743/1017 -f 861/1180 859/1182 858/5824 -f 865/1185 858/5824 857/2287 -f 1653/2282 857/2286 856/1173 -f 855/5826 854/1170 842/1154 -f 851/1167 846/1157 853/1169 -f 741/1019 851/1167 852/1168 -f 741/1019 739/1013 851/1167 -f 853/1169 846/1157 844/1155 -f 844/1155 845/1156 853/1169 -f 841/1152 843/1153 838/1150 -f 839/1149 831/1138 840/1151 -f 839/1149 833/1141 831/1138 -f 837/1148 833/1141 839/1149 -f 838/1150 842/1154 837/1148 -f 844/1155 836/1147 837/1148 -f 836/1147 848/5827 835/1143 -f 837/1148 834/1142 833/1141 -f 831/1138 833/1141 824/1128 -f 829/1136 1448/1983 830/1137 -f 827/1135 826/1133 810/1105 -f 826/1133 831/1138 825/1130 -f 831/1138 824/1128 825/1130 -f 824/1128 832/1140 821/1124 -f 832/1144 790/1121 821/1120 -f 821/1124 819/5828 820/1126 -f 792/1082 818/1117 819/1118 -f 814/1111 816/1113 813/1109 -f 823/1125 814/1111 812/1110 -f 811/1108 813/1109 815/1107 -f 811/1108 822/1123 812/1110 -f 811/1108 810/1105 826/1133 -f 808/1104 1447/1981 810/1105 -f 809/1106 806/1112 807/5829 -f 1443/1976 808/1103 807/1102 -f 806/1100 816/1115 803/1096 -f 806/5830 805/5831 807/1102 -f 816/1115 802/1097 803/1096 -f 802/5832 1425/1954 804/1975 -f 802/1097 816/1115 800/1114 -f 799/1939 801/1091 798/1090 -f 800/1114 793/1083 798/1088 -f 1420/1933 796/1935 795/1934 -f 791/5833 1418/1929 794/1928 -f 793/1083 818/1117 792/1082 -f 792/1082 819/1118 790/1080 -f 791/5833 789/5834 1418/1929 -f 788/1146 790/1121 832/1144 -f 787/5835 1401/1902 789/1911 -f 788/1146 835/1145 786/1162 -f 785/1898 1397/1896 787/1901 -f 784/1165 786/1161 847/1159 -f 783/1899 1398/1897 785/1898 -f 784/1165 850/1166 738/1012 -f 782/5836 1399/1889 783/1899 -f 1399/1889 782/5836 781/1888 -f 780/1070 1388/1882 781/1071 -f 1379/1870 780/1876 779/5837 -f 1378/1868 779/1871 778/1869 -f 1377/1866 778/1869 777/1867 -f 775/1065 1375/1863 776/1066 -f 774/5726 3991/5691 775/1065 -f 1269/1718 774/5726 773/1719 -f 771/1062 1267/1713 773/1063 -f 769/5838 1190/1621 1184/1615 -f 767/1053 1191/5776 769/1055 -f 768/1054 772/5839 765/1052 -f 1201/1633 766/1051 4034/1050 -f 973/1329 738/1012 764/1046 -f 763/1045 971/1326 764/1046 -f 762/1044 958/1301 763/1045 -f 734/1007 953/1042 762/1044 -f 761/1043 953/1042 734/1007 -f 953/1042 761/1043 750/1015 -f 750/1015 761/1043 737/1011 -f 948/1040 952/2459 751/1028 -f 938/1039 945/1288 948/1040 -f 754/1033 903/1241 757/1037 -f 756/1035 755/1034 899/5814 -f 753/1032 891/1031 892/1226 -f 748/1220 749/1026 747/1027 -f 747/1027 746/5821 748/1220 -f 747/1025 750/5840 745/1023 -f 739/1013 741/1019 740/1014 -f 738/1012 851/1167 739/1013 -f 735/1008 734/1007 738/1012 -f 737/1011 761/1043 733/1006 -f 727/1005 730/1000 733/1006 -f 728/1009 727/1005 732/1004 -f 726/993 731/1002 727/994 -f 4014/5741 726/993 724/992 -f 725/989 713/975 723/990 -f 3994/5694 724/988 722/986 -f 722/986 723/987 716/980 -f 718/982 4012/5721 719/983 -f 717/979 715/981 718/982 -f 721/985 716/980 717/979 -f 723/990 713/975 716/978 -f 718/5724 715/5841 714/5725 -f 4013/5723 714/5725 712/972 -f 707/964 4010/5719 708/965 -f 706/963 705/962 4008/5716 -f 4007/5715 705/962 704/961 -f 703/959 1363/1850 704/961 -f 1357/1840 702/958 701/960 -f 706/963 697/955 699/954 -f 708/965 696/967 697/955 -f 2127/1800 696/1802 693/951 -f 692/949 694/952 640/877 -f 638/875 639/876 692/949 -f 639/876 690/941 1313/1776 -f 690/941 689/948 1313/1776 -f 1293/1752 687/946 684/942 -f 690/941 684/942 687/946 -f 682/939 685/944 683/940 -f 681/938 634/871 679/937 -f 632/868 674/930 679/5842 -f 676/932 1279/1734 677/933 -f 675/931 726/993 676/932 -f 671/5737 672/929 670/925 -f 660/903 670/925 663/924 -f 665/913 668/915 670/926 -f 664/921 667/920 666/5843 -f 662/5844 665/5845 630/861 -f 629/860 662/5844 630/861 -f 662/905 629/860 658/901 -f 669/5846 664/907 663/906 -f 713/975 661/904 659/902 -f 662/905 658/901 660/903 -f 656/899 648/888 647/887 -f 656/5847 627/858 657/857 -f 656/5847 646/884 627/858 -f 646/884 644/866 627/858 -f 655/898 648/888 656/899 -f 649/890 654/5848 653/893 -f 649/890 650/891 654/5848 -f 650/891 648/888 655/898 -f 647/885 646/884 656/5847 -f 645/889 649/890 513/892 -f 693/951 642/880 640/877 -f 692/949 640/877 638/875 -f 638/875 636/873 637/874 -f 637/874 635/872 681/938 -f 636/873 638/875 633/869 -f 634/871 681/938 635/872 -f 679/5842 634/5849 632/868 -f 644/866 513/692 631/867 -f 625/855 628/859 510/3087 -f 477/647 625/855 2254/3092 -f 624/851 622/848 476/646 -f 653/894 621/846 619/845 -f 618/815 602/817 652/773 -f 604/838 609/825 605/841 -f 603/818 601/816 617/5850 -f 597/807 617/5850 601/816 -f 601/816 599/808 597/807 -f 617/5850 597/807 596/5851 -f 615/831 596/833 594/800 -f 616/832 594/800 593/799 -f 528/717 531/797 529/718 -f 531/721 4039/5852 533/5853 -f 4039/5852 4040/5854 533/5853 -f 533/5853 4040/5854 4041/5855 -f 4042/5856 4041/5855 4040/5854 -f 4042/5856 4040/5854 4043/5857 -f 4043/5857 4044/5858 4042/5856 -f 4045/5859 4042/5856 4044/5858 -f 4044/5858 4046/5860 4045/5859 -f 4047/5861 4045/5859 4046/5860 -f 4046/5860 4048/5862 4047/5861 -f 4048/5862 4049/5863 4047/5861 -f 4159/5864 4047/5861 4049/5863 -f 4061/5865 4159/5864 4049/5866 -f 4049/5866 4050/5867 4061/5865 -f 4061/5865 582/779 4051/5868 -f 4052/5869 4061/5865 4051/5868 -f 4053/5870 4052/5869 4051/5868 -f 4051/5871 4054/5872 4053/5873 -f 4053/5873 4054/5872 4055/5874 -f 4053/5873 4055/5874 4056/5875 -f 4056/5875 4057/5876 4053/5873 -f 4053/5873 4057/5876 4058/5877 -f 4057/5878 4059/5879 4058/5880 -f 4058/5880 4059/5879 4060/5881 -f 4058/5880 4060/5881 4160/5882 -f 4160/5882 4052/5869 4058/5880 -f 4159/5864 4062/5883 4165/5884 -f 4063/5885 4159/5864 4165/5884 -f 4165/5886 4064/5887 4063/5888 -f 4063/5885 4065/5889 4159/5864 -f 4063/5885 4066/5890 4065/5889 -f 4068/5891 4069/5892 4070/5893 -f 4068/5891 4070/5893 4071/5894 -f 4072/5895 4068/5896 4071/5897 -f 4072/5895 4071/5897 4045/5898 -f 4047/5899 4072/5895 4045/5898 -f 4045/5898 4070/5900 4073/5901 -f 535/5902 4073/5903 4074/5904 -f 535/5902 4074/5904 4075/735 -f 535/5902 4075/735 536/729 -f 536/729 4075/735 539/733 -f 470/642 539/733 4075/735 -f 4186/5905 4076/734 4185/5906 -f 540/737 4186/5905 4077/5907 -f 4205/5908 4079/738 4078/736 -f 4081/5909 4082/5910 4080/5911 -f 4079/738 4080/5911 4082/5910 -f 4079/738 4083/5912 542/740 -f 542/740 4084/5913 541/739 -f 4085/5914 4084/5913 542/740 -f 4086/5915 4085/5914 542/740 -f 4086/5915 542/740 4083/5912 -f 4087/5916 4086/5915 4083/5912 -f 4083/5912 4088/5917 4087/5916 -f 4087/5918 4088/5919 4089/5920 -f 4090/5921 4085/5914 4091/5922 -f 4094/5923 4092/5924 4093/5925 -f 4096/741 4095/5926 4097/5927 -f 4099/5928 4098/5929 4100/5930 -f 4099/5928 4100/5930 4101/5931 -f 4099/5932 4101/5933 4102/5934 -f 4102/5934 4103/5935 4099/5932 -f 4099/5932 4103/5935 546/745 -f 4099/5932 546/745 4098/5936 -f 4103/5935 4102/5934 4104/5937 -f 546/745 4103/5935 4104/5937 -f 4107/5938 4106/5939 4105/5940 -f 4107/5938 4105/5940 4108/5941 -f 4109/5942 4110/5943 4108/5941 -f 551/750 4110/5943 550/749 -f 550/749 4110/5943 4111/5944 -f 4112/5945 4111/5944 4110/5943 -f 4110/5943 4113/5946 4112/5945 -f 4114/5947 4112/5948 4113/5949 -f 4114/5947 4113/5949 4057/5876 -f 4115/5950 4114/5947 4056/5875 -f 4056/5875 4116/5951 4115/5950 -f 4115/5950 4116/5951 4117/5952 -f 4115/5950 4117/5952 4118/5953 -f 4112/5948 4118/5953 4119/5954 -f 4119/5954 4118/5953 4120/5955 -f 4120/5955 4121/5956 4119/5954 -f 4122/5957 4119/5958 4121/5959 -f 4122/5960 4121/5961 4123/5962 -f 4119/5963 4124/5964 4125/5965 -f 4119/5963 4125/5965 4111/5944 -f 553/752 552/751 4125/5965 -f 4125/5965 4124/5964 553/752 -f 4124/5964 4122/5957 553/752 -f 553/752 4122/5957 4126/5966 -f 553/752 4126/5966 4127/5967 -f 4127/5967 4126/5966 556/755 -f 4127/5967 556/755 555/754 -f 4126/5966 4129/5968 4128/5969 -f 4130/5970 4128/5971 4129/5972 -f 4130/5970 4129/5972 4120/5955 -f 4130/5970 4120/5955 4131/5973 -f 4132/5974 4130/5970 4131/5973 -f 4132/5974 4131/5973 4133/5975 -f 4132/5974 4133/5975 4134/5976 -f 4130/5970 4132/5974 4134/5976 -f 4130/5970 4134/5976 4135/5977 -f 4135/5977 4136/5978 4130/5970 -f 4130/5970 4136/5978 4137/5979 -f 4130/5970 4137/5979 4138/5980 -f 556/755 4138/5981 4137/5982 -f 4139/5983 560/759 557/756 -f 4139/5983 557/756 4136/5984 -f 556/755 4137/5982 557/756 -f 556/755 4128/5969 4138/5981 -f 4136/5984 557/756 4137/5982 -f 4135/5977 4139/5985 4136/5978 -f 4140/5986 4139/5985 4135/5977 -f 4140/5987 4135/5988 562/761 -f 562/761 4135/5988 4141/5989 -f 562/761 4141/5989 565/765 -f 4141/5989 567/767 565/765 -f 567/767 4142/5990 572/772 -f 567/767 4134/5976 4142/5990 -f 4141/5989 4134/5976 567/767 -f 4140/5991 561/760 4139/5983 -f 4141/5989 4135/5988 4134/5976 -f 4142/5992 4134/5976 4133/5975 -f 573/776 4142/5993 4133/5994 -f 4133/5994 4143/5995 573/776 -f 4133/5975 4131/5973 4143/5996 -f 4131/5973 4144/5997 4143/5996 -f 4143/5996 4144/5997 4145/5998 -f 4143/5996 4145/5998 575/5999 -f 575/5999 4145/5998 4146/6000 -f 575/778 4146/6001 576/6002 -f 576/6003 578/786 577/814 -f 579/6004 4152/6005 4147/6006 -f 580/782 4148/6007 581/781 -f 582/779 4054/6008 4051/5868 -f 4148/6007 4147/6009 4055/5874 -f 4055/5874 4149/6010 4116/5951 -f 4150/6011 4116/5951 4149/6010 -f 4146/6000 4149/6010 4151/6012 -f 4146/6000 4151/6012 576/6003 -f 576/6003 4151/6012 4152/6013 -f 4147/6009 580/782 579/784 -f 4152/6013 578/786 576/6003 -f 4145/5998 4150/6011 4149/6010 -f 4120/5955 4117/5952 4150/6011 -f 4116/5951 4150/6011 4117/5952 -f 4149/6010 4055/5874 4151/6012 -f 4151/6012 4055/5874 4147/6009 -f 580/782 4147/6009 4148/6007 -f 582/779 581/781 4054/6008 -f 4054/5872 581/781 4148/6007 -f 4145/5998 4149/6010 4146/6000 -f 4144/5997 4150/6011 4145/5998 -f 4144/5997 4120/5955 4150/6011 -f 4131/5973 4120/5955 4144/5997 -f 4120/5955 4129/5972 4123/6014 -f 4138/5980 4128/5971 4130/5970 -f 4126/5966 4123/6015 4129/5968 -f 4126/5966 4128/5969 556/755 -f 4125/5965 552/751 4111/5944 -f 4122/5957 4123/6015 4126/5966 -f 4120/5955 4123/6014 4121/5956 -f 4124/5964 4119/5963 4122/5957 -f 4120/5955 4118/5953 4117/5952 -f 4118/5953 4114/5947 4115/5950 -f 4112/5948 4114/5947 4118/5953 -f 4111/5944 4112/5945 4119/5963 -f 4107/5938 4110/5943 551/750 -f 551/750 4153/6016 4107/5938 -f 4110/5943 4059/6017 4113/5946 -f 4107/5938 4108/5941 4110/5943 -f 4059/6017 4110/5943 4109/5942 -f 4108/5941 4154/6018 4109/5942 -f 4102/5934 4160/6019 4109/5942 -f 4102/5934 4109/5942 4154/6018 -f 4154/6018 4104/5937 4102/5934 -f 4160/6019 4102/5934 4155/6020 -f 4211/6021 4160/6019 4155/6020 -f 4283/6022 4156/6023 4211/6024 -f 4211/6021 4157/6025 4158/6026 -f 4160/5882 4159/5864 4052/5869 -f 4161/6027 4160/6019 4158/6026 -f 4160/6019 4161/6027 4162/6028 -f 4160/6019 4162/6028 4159/5864 -f 4062/5883 4159/5864 4162/6028 -f 4162/6028 4163/6029 4062/5883 -f 4062/5883 4163/6029 4164/6030 -f 4167/6031 4168/6032 4169/6033 -f 4167/6031 4169/6033 4170/6034 -f 4064/5887 4167/6035 4170/6036 -f 4064/5887 4170/6036 4066/6037 -f 4065/6038 4171/6039 4067/6040 -f 4172/6041 4067/6040 4171/6039 -f 4172/6041 4171/6039 4173/6042 -f 4174/6043 4172/6041 4173/6042 -f 4174/6043 4173/6042 4175/6044 -f 4175/6044 4176/6045 4177/6046 -f 4175/6044 4177/6046 4174/6043 -f 4075/735 4074/5904 4178/6047 -f 4178/6047 4238/6048 4075/735 -f 4075/735 4238/6048 4179/6049 -f 4075/735 4179/6049 4180/6050 -f 4075/735 4180/6050 4181/6051 -f 4076/734 4181/6051 4185/5906 -f 4185/5906 4181/6051 4182/6052 -f 4184/6053 4264/6054 4185/6055 -f 4269/6056 4187/6057 4186/5905 -f 4269/6056 4188/6058 4187/6057 -f 4189/6059 4187/6057 4188/6058 -f 4189/6059 4190/6060 4187/6057 -f 4187/6057 4191/6061 4077/5907 -f 4191/6061 4192/6062 4077/5907 -f 4192/6062 540/737 4077/5907 -f 4192/6062 4193/6063 540/737 -f 4194/6064 4192/6062 4195/6065 -f 4196/6066 4194/6064 4195/6065 -f 4195/6065 4197/6067 4196/6066 -f 4196/6068 4197/6069 4198/6070 -f 4196/6066 4198/6071 4157/6025 -f 4199/6072 4192/6062 4200/6073 -f 4203/6074 4201/6075 4202/6076 -f 4205/5908 4204/6077 4206/6078 -f 4208/6079 4207/6080 4209/6081 -f 4208/6079 4209/6081 4210/6082 -f 4208/6083 4210/6084 4211/6021 -f 4211/6021 4212/6085 4208/6083 -f 4208/6083 4212/6085 4081/5909 -f 4208/6083 4081/5909 4207/6086 -f 4212/6087 4211/6024 4156/6023 -f 4081/5909 4212/6085 4156/6088 -f 4157/6025 4213/6089 4214/6090 -f 4214/6090 4196/6066 4157/6025 -f 4200/6073 4214/6090 4215/6091 -f 4200/6092 4215/6093 4202/6076 -f 4203/6074 4202/6076 4215/6093 -f 4215/6093 4209/6081 4203/6074 -f 4213/6094 4210/6082 4209/6081 -f 4209/6081 4215/6093 4213/6094 -f 4213/6089 4215/6091 4214/6090 -f 4211/6021 4213/6089 4157/6025 -f 4211/6021 4210/6084 4213/6089 -f 4209/6081 4207/6080 4203/6074 -f 4207/6086 4204/6077 4203/6095 -f 4080/5911 4206/6078 4207/6086 -f 4207/6086 4206/6078 4204/6077 -f 4193/6063 4204/6077 4205/5908 -f 4204/6096 4201/6075 4203/6074 -f 4201/6097 4200/6073 4202/6098 -f 4199/6072 4200/6073 4201/6097 -f 4193/6063 4201/6097 4204/6077 -f 540/737 4193/6063 4205/5908 -f 4201/6097 4193/6063 4199/6072 -f 4200/6073 4194/6064 4214/6090 -f 4200/6073 4192/6062 4194/6064 -f 4214/6090 4194/6064 4196/6066 -f 4216/6099 4158/6100 4198/6070 -f 4218/6101 4219/6102 4220/6103 -f 4218/6101 4220/6103 4221/6104 -f 4163/6029 4218/6101 4221/6104 -f 4165/5886 4222/6105 4166/6106 -f 4223/6107 4166/6106 4222/6105 -f 4224/6108 4225/6109 4226/6110 -f 4224/6108 4227/6111 4228/6112 -f 4224/6108 4228/6112 4223/6107 -f 4229/6113 4166/6106 4228/6112 -f 4168/6114 4229/6113 4228/6112 -f 4231/6115 4230/6116 4179/6049 -f 4231/6115 4232/6117 4230/6116 -f 4232/6117 4169/6033 4230/6116 -f 4170/6034 4233/6118 4066/5890 -f 4066/5890 4233/6118 4234/6119 -f 4066/5890 4234/6119 4065/5889 -f 4234/6119 4235/6120 4065/5889 -f 4065/6038 4235/6121 4171/6039 -f 4171/6039 4235/6121 4236/6122 -f 4236/6122 4173/6042 4171/6039 -f 4236/6122 4175/6044 4173/6042 -f 4237/6123 4175/6044 4236/6122 -f 4231/6115 4239/6124 4240/6125 -f 4240/6125 4241/6126 4232/6117 -f 4232/6117 4241/6126 4169/6033 -f 4235/6121 4234/6127 4242/6128 -f 4242/6128 4243/6129 4235/6121 -f 4235/6121 4243/6129 4236/6122 -f 4243/6129 4237/6123 4236/6122 -f 4243/6129 4244/6130 4237/6123 -f 4176/6045 4237/6123 4244/6130 -f 4238/6048 4177/6131 4231/6115 -f 4177/6131 4239/6124 4231/6115 -f 4177/6131 4176/6132 4239/6124 -f 4245/6133 4242/6128 4241/6134 -f 4240/6125 4245/6135 4241/6126 -f 4241/6134 4242/6128 4233/6136 -f 4245/6133 4244/6130 4243/6129 -f 4245/6133 4176/6045 4244/6130 -f 4239/6137 4176/6045 4245/6133 -f 4243/6129 4242/6128 4245/6133 -f 4233/6136 4242/6128 4234/6127 -f 4239/6124 4245/6135 4240/6125 -f 4238/6048 4231/6115 4179/6049 -f 4170/6034 4241/6126 4233/6118 -f 4169/6033 4241/6126 4170/6034 -f 4240/6125 4232/6117 4231/6115 -f 4227/6138 4179/6049 4230/6116 -f 4230/6116 4228/6139 4227/6138 -f 4246/6140 4182/6052 4181/6051 -f 4220/6141 4248/6142 4221/6143 -f 4221/6143 4248/6142 4249/6144 -f 4221/6143 4249/6144 4164/6145 -f 4164/6145 4249/6144 4250/6146 -f 4249/6147 4251/6148 4250/6149 -f 4252/6150 4250/6149 4251/6148 -f 4251/6148 4253/6151 4252/6150 -f 4252/6152 4253/6153 4254/6154 -f 4222/6105 4252/6152 4254/6154 -f 4254/6154 4223/6107 4222/6105 -f 4254/6154 4224/6108 4223/6107 -f 4255/6155 4224/6108 4254/6154 -f 4257/6156 4225/6157 4256/6158 -f 4246/6140 4258/6159 4259/6160 -f 4259/6161 4248/6142 4247/6162 -f 4258/6159 4248/6163 4259/6160 -f 4226/6164 4258/6159 4246/6140 -f 4180/6050 4226/6164 4246/6140 -f 4258/6159 4257/6156 4248/6163 -f 4257/6156 4251/6148 4248/6163 -f 4257/6156 4256/6158 4253/6151 -f 4258/6159 4225/6157 4257/6156 -f 4225/6109 4255/6155 4256/6165 -f 4253/6151 4256/6158 4255/6166 -f 4226/6164 4225/6157 4258/6159 -f 4253/6153 4255/6155 4254/6154 -f 4253/6151 4251/6148 4257/6156 -f 4250/6149 4252/6150 4165/5884 -f 4248/6163 4251/6148 4249/6147 -f 4247/6162 4248/6142 4220/6141 -f 4259/6160 4247/6167 4246/6140 -f 4246/6140 4247/6167 4182/6052 -f 4247/6167 4220/6103 4182/6052 -f 4219/6102 4260/6168 4261/6169 -f 4260/6168 4217/6170 4261/6169 -f 4261/6171 4217/6172 4262/6173 -f 4184/6053 4261/6171 4262/6173 -f 4184/6053 4263/6174 4264/6054 -f 4265/6175 4264/6054 4263/6174 -f 4263/6174 4266/6176 4265/6175 -f 4265/6175 4266/6176 4267/6177 -f 4264/6178 4265/6179 4268/6180 -f 4264/6178 4268/6180 4269/6056 -f 4185/5906 4264/6178 4269/6056 -f 4185/5906 4269/6056 4186/5905 -f 4269/6056 4268/6180 4270/6181 -f 4272/6182 4271/6183 4273/6184 -f 4272/6182 4273/6184 4274/6185 -f 4272/6186 4274/6187 4161/6027 -f 4161/6027 4275/6188 4272/6186 -f 4272/6186 4275/6188 4189/6059 -f 4272/6186 4189/6059 4271/6189 -f 4162/6190 4276/6191 4217/6172 -f 4277/6192 4184/6053 4262/6173 -f 4266/6176 4184/6053 4277/6192 -f 4274/6187 4278/6193 4162/6028 -f 4161/6027 4274/6187 4162/6028 -f 4278/6194 4274/6185 4273/6184 -f 4273/6184 4279/6195 4278/6194 -f 4278/6196 4279/6197 4277/6192 -f 4279/6197 4266/6176 4277/6192 -f 4268/6198 4265/6199 4280/6200 -f 4267/6201 4280/6200 4265/6199 -f 4280/6200 4267/6201 4279/6195 -f 4279/6195 4273/6184 4280/6200 -f 4162/6190 4278/6196 4276/6191 -f 4276/6191 4278/6196 4277/6192 -f 4277/6192 4262/6173 4276/6191 -f 4273/6184 4271/6183 4280/6200 -f 4271/6189 4268/6180 4280/6202 -f 4188/6058 4270/6181 4271/6189 -f 4271/6189 4270/6181 4268/6180 -f 4279/6195 4267/6201 4266/6203 -f 4263/6174 4184/6053 4266/6176 -f 4262/6173 4217/6172 4276/6191 -f 4260/6168 4219/6102 4218/6101 -f 4261/6169 4182/6052 4219/6102 -f 4180/6050 4246/6140 4181/6051 -f 4224/6108 4180/6204 4227/6111 -f 4180/6050 4179/6049 4227/6138 -f 4228/6139 4230/6116 4168/6032 -f 4229/6113 4168/6114 4167/6035 -f 4224/6108 4226/6110 4180/6204 -f 4225/6109 4224/6108 4255/6155 -f 4228/6112 4166/6106 4223/6107 -f 4165/5886 4252/6152 4222/6105 -f 4164/6030 4250/6149 4165/5884 -f 4182/6052 4220/6103 4219/6102 -f 4260/6168 4218/6101 4217/6170 -f 4218/6101 4162/6028 4217/6170 -f 4275/6205 4161/6206 4281/6207 -f 4189/6059 4275/6188 4281/6208 -f 4281/6207 4161/6206 4216/6099 -f 4281/6207 4197/6069 4190/6209 -f 4197/6069 4281/6207 4216/6099 -f 4190/6209 4197/6069 4195/6210 -f 4195/6065 4191/6061 4190/6060 -f 4197/6069 4216/6099 4198/6070 -f 4192/6062 4199/6072 4193/6063 -f 4195/6065 4192/6062 4191/6061 -f 4191/6061 4187/6057 4190/6060 -f 4281/6208 4190/6060 4189/6059 -f 4271/6189 4189/6059 4188/6058 -f 4270/6181 4188/6058 4269/6056 -f 4184/6053 4183/6211 4261/6171 -f 4184/6053 4185/6055 4183/6211 -f 4182/6052 4261/6169 4183/6212 -f 4182/6052 4183/6212 4185/5906 -f 4172/6213 4174/6214 4069/5892 -f 4172/6041 4069/6215 4068/5896 -f 4174/6214 4074/5904 4069/5892 -f 4178/6047 4074/5904 4174/6214 -f 4174/6043 4238/6216 4178/6217 -f 4174/6043 4177/6046 4238/6216 -f 4176/6045 4175/6044 4237/6123 -f 4230/6116 4169/6033 4168/6032 -f 4229/6113 4167/6035 4166/6106 -f 4167/6035 4165/5886 4166/6106 -f 4163/6029 4221/6104 4164/6030 -f 4162/6028 4218/6101 4163/6029 -f 4161/6206 4158/6100 4216/6099 -f 4211/6021 4158/6026 4160/6019 -f 4158/6100 4157/6218 4198/6070 -f 4156/6023 4282/6219 4082/6220 -f 4283/6022 4155/6221 4089/5920 -f 4156/6023 4283/6022 4088/5919 -f 4088/5919 4282/6219 4156/6023 -f 4282/6219 4088/5919 4082/6220 -f 4082/6220 4088/5919 4083/6222 -f 4083/5912 4079/738 4082/5910 -f 4211/6024 4155/6221 4283/6022 -f 4108/5941 4105/5940 4154/6018 -f 4153/6016 4106/5939 4107/5938 -f 4153/6016 548/747 4106/5939 -f 4105/5940 4104/5937 4154/6018 -f 4106/5939 547/746 4105/5940 -f 4105/5940 547/746 4104/5937 -f 4155/6020 4284/6223 4089/6224 -f 4089/6224 4284/6223 4285/6225 -f 4285/6225 4087/5916 4089/6224 -f 4091/5922 4285/6225 4286/6226 -f 4091/6227 4286/6228 4093/5925 -f 4094/5923 4093/5925 4286/6228 -f 4286/6228 4100/5930 4094/5923 -f 4284/6229 4101/5931 4100/5930 -f 4100/5930 4286/6228 4284/6229 -f 4284/6223 4286/6226 4285/6225 -f 4102/5934 4284/6223 4155/6020 -f 4102/5934 4101/5933 4284/6223 -f 4100/5930 4098/5929 4094/5923 -f 4098/5936 4095/5926 4094/6230 -f 545/744 4097/5927 4098/5936 -f 4098/5936 4097/5927 4095/5926 -f 541/739 4096/741 543/743 -f 541/739 4084/5913 4096/741 -f 4084/5913 4095/5926 4096/741 -f 4095/6231 4092/5924 4094/5923 -f 4092/6232 4091/5922 4093/6233 -f 4090/5921 4091/5922 4092/6232 -f 4084/5913 4092/6232 4095/5926 -f 4092/6232 4084/5913 4090/5921 -f 4091/5922 4086/5915 4285/6225 -f 4091/5922 4085/5914 4086/5915 -f 4285/6225 4086/5915 4087/5916 -f 4283/6022 4089/5920 4088/5919 -f 4085/5914 4090/5921 4084/5913 -f 4156/6088 4082/5910 4081/5909 -f 4207/6086 4081/5909 4080/5911 -f 4206/6078 4080/5911 4205/5908 -f 4205/5908 4080/5911 4079/738 -f 540/737 4205/5908 4078/736 -f 4077/5907 4186/5905 4187/6057 -f 4181/6051 4076/734 4075/735 -f 4073/5903 4070/5893 4074/5904 -f 4073/5901 535/727 4042/6234 -f 535/727 4041/6235 4042/6234 -f 4071/6236 4070/5900 4045/5898 -f 4074/5904 4070/5893 4069/5892 -f 4065/6038 4068/5896 4072/5895 -f 4047/5899 4065/6038 4072/5895 -f 4067/6040 4172/6041 4068/5896 -f 4067/6040 4068/5896 4065/6038 -f 4063/5888 4064/5887 4066/6037 -f 4165/5886 4167/6035 4064/5887 -f 4062/5883 4164/6030 4165/5884 -f 4061/5865 4052/5869 4159/5864 -f 4060/6237 4109/5942 4160/6019 -f 4109/5942 4060/6237 4059/6017 -f 4057/5876 4113/5949 4059/6238 -f 4056/5875 4114/5947 4057/5876 -f 4056/5875 4055/5874 4116/5951 -f 4054/5872 4148/6007 4055/5874 -f 4058/5880 4052/5869 4053/5870 -f 582/779 4061/5865 4050/5867 -f 4049/5866 4287/6239 4050/5867 -f 4287/6240 4288/6241 4050/6242 -f 4050/6242 4288/6241 583/783 -f 4288/6241 4289/6243 583/783 -f 4288/6241 4290/6244 4289/6243 -f 586/789 4289/6243 4290/6244 -f 586/789 4290/6244 4291/6245 -f 4043/6246 4293/6247 4292/6248 -f 4293/6247 4294/6249 4292/6248 -f 4292/6248 4294/6249 4295/6250 -f 4292/6248 4295/6250 590/793 -f 4294/6251 4039/6252 4295/6253 -f 4293/6254 4039/5852 4294/6255 -f 4293/6254 4296/6256 4039/5852 -f 4040/5854 4296/6256 4043/5857 -f 4043/5857 4296/6256 4293/6254 -f 588/790 4291/6245 4292/6257 -f 4291/6245 4297/6258 4292/6257 -f 4297/6259 4044/6260 4292/6248 -f 4298/6261 4297/6258 4290/6244 -f 4299/6262 4297/6258 4298/6261 -f 4299/6262 4298/6261 4287/6240 -f 4048/6263 4299/6262 4287/6240 -f 4300/6264 4297/6258 4299/6262 -f 4046/6265 4300/6266 4299/6267 -f 4297/6259 4300/6266 4044/6260 -f 4291/6245 4290/6244 4297/6258 -f 4289/6243 586/789 585/787 -f 4298/6261 4290/6244 4288/6241 -f 4287/6240 4298/6261 4288/6241 -f 4047/5861 4159/5864 4065/5889 -f 4048/6268 4287/6239 4049/5866 -f 4046/6269 4299/6262 4048/6263 -f 4044/6260 4300/6266 4046/6265 -f 4045/5898 4073/5901 4042/6234 -f 4043/6246 4292/6248 4044/6260 -f 4039/5852 4296/6256 4040/5854 -f 4295/6253 4039/6252 531/797 -f 4295/6253 531/797 592/796 -f 590/793 4295/6250 592/794 -f 595/801 589/6270 590/793 -f 590/792 588/790 4292/6257 -f 598/805 587/788 589/791 -f 588/790 586/789 4291/6245 -f 600/811 585/787 587/788 -f 585/787 584/785 4289/6243 -f 583/783 4289/6243 584/785 -f 4050/5867 583/780 582/779 -f 4152/6005 579/6004 578/6271 -f 577/812 574/777 576/6002 -f 576/6002 574/777 575/778 -f 573/776 4143/5995 575/778 -f 573/776 572/775 4142/5993 -f 571/774 652/773 623/850 -f 565/765 567/767 566/766 -f 562/761 565/765 563/762 -f 562/761 561/760 4140/5987 -f 4139/5983 561/760 560/759 -f 563/762 559/758 561/760 -f 554/753 4127/5967 555/754 -f 555/754 564/763 472/644 -f 555/754 472/644 554/753 -f 468/643 549/748 554/753 -f 554/753 553/752 4127/5967 -f 550/749 4111/5944 552/751 -f 551/750 548/747 4153/6016 -f 548/747 544/742 4106/5939 -f 4106/5939 544/742 547/746 -f 4104/5937 547/746 546/745 -f 4098/5936 546/745 545/744 -f 4097/5927 545/744 4096/741 -f 4186/5905 540/737 4076/734 -f 538/640 462/630 537/731 -f 539/733 469/641 538/640 -f 534/728 535/5902 536/729 -f 535/727 533/726 4041/6235 -f 467/638 532/725 534/724 -f 531/721 533/5853 532/723 -f 530/719 4301/636 527/716 -f 527/716 4301/636 524/713 -f 527/716 526/715 528/717 -f 525/6272 593/799 526/798 -f 524/713 593/799 525/714 -f 523/712 593/799 524/713 -f 4301/636 522/635 524/713 -f 523/712 521/711 616/832 -f 520/709 615/831 521/711 -f 522/635 464/634 521/711 -f 519/708 615/831 520/709 -f 460/627 614/829 519/706 -f 517/703 518/705 457/623 -f 608/704 517/703 606/824 -f 452/619 450/612 516/700 -f 516/6273 515/6274 452/701 -f 607/702 452/701 515/6274 -f 651/693 606/822 514/694 -f 513/892 651/602 446/601 -f 513/692 446/607 438/587 -f 513/892 512/862 631/865 -f 438/587 511/690 512/6275 -f 628/859 511/690 507/689 -f 507/689 510/3087 628/859 -f 506/683 508/686 507/684 -f 445/599 504/680 505/600 -f 503/678 2247/679 445/599 -f 444/598 443/597 2140/2920 -f 501/675 443/597 502/673 -f 500/674 502/673 2354/3239 -f 2401/3238 502/673 442/596 -f 2349/3231 2351/595 498/594 -f 497/3228 440/668 2346/3225 -f 492/665 455/621 491/664 -f 486/659 488/3197 485/658 -f 2326/3193 484/657 483/656 -f 479/651 462/630 478/650 -f 2285/649 2289/3142 471/639 -f 477/647 2258/3096 2285/649 -f 475/648 474/645 566/766 -f 474/645 472/644 473/764 -f 472/644 468/643 554/753 -f 468/643 470/642 549/748 -f 471/639 469/641 468/643 -f 538/640 471/639 462/630 -f 463/632 537/731 462/630 -f 465/732 537/731 463/632 -f 467/638 466/637 532/725 -f 4301/636 530/719 466/637 -f 464/634 465/633 463/6276 -f 461/628 463/632 462/630 -f 485/625 487/661 458/624 -f 457/623 454/620 517/703 -f 437/586 436/585 455/621 -f 447/603 515/698 451/697 -f 377/491 438/587 448/608 -f 447/603 651/602 515/698 -f 445/599 438/587 441/593 -f 499/3237 442/596 2351/595 -f 2351/595 441/593 498/594 -f 494/666 439/590 437/586 -f 436/6277 433/579 449/611 -f 438/587 434/6278 435/582 -f 438/587 4302/6279 434/6278 -f 4302/6279 438/587 377/491 -f 432/6280 434/6281 4302/6282 -f 4302/6282 4303/6283 432/6280 -f 4303/6284 4304/6285 432/578 -f 432/578 4304/6285 4305/6286 -f 432/578 4305/6286 372/484 -f 4306/6287 4305/6288 4304/6289 -f 4306/6290 4304/6291 4302/6292 -f 4307/6293 4306/6294 4302/6279 -f 4302/6279 375/6295 4307/6293 -f 4302/6279 377/491 375/6295 -f 4305/6288 4306/6287 4307/6296 -f 4305/6297 4307/6298 375/488 -f 4302/6292 4304/6291 4303/6299 -f 431/483 430/577 433/579 -f 448/608 430/577 429/575 -f 386/502 380/494 382/503 -f 428/574 381/6300 378/492 -f 423/565 379/493 380/494 -f 377/491 448/608 378/492 -f 375/6295 377/491 374/490 -f 4305/6297 375/488 372/485 -f 432/578 372/484 431/483 -f 163/200 369/474 164/201 -f 369/474 368/472 1885/2596 -f 1884/468 365/467 364/466 -f 1881/2595 364/466 360/462 -f 359/459 1881/2592 360/460 -f 358/458 1879/2590 359/459 -f 311/398 356/457 357/456 -f 309/397 355/2585 356/457 -f 354/2584 352/2576 1870/2575 -f 309/455 351/450 353/452 -f 309/455 346/443 351/450 -f 350/449 349/448 1869/2574 -f 349/6301 348/2564 1864/2567 -f 1861/2563 348/447 347/446 -f 344/441 1853/2558 345/442 -f 1851/2542 344/2544 343/437 -f 1851/2542 343/437 341/436 -f 334/428 341/436 342/438 -f 334/428 4308/427 341/436 -f 341/436 4308/427 336/431 -f 339/434 1849/2540 340/435 -f 339/2539 337/6302 1847/2538 -f 341/436 336/431 338/433 -f 308/395 334/426 342/439 -f 332/424 1825/2504 333/425 -f 1824/2503 332/422 331/421 -f 331/421 330/420 1819/2498 -f 331/421 308/423 328/418 -f 327/417 1809/2486 329/419 -f 326/415 328/418 308/423 -f 325/416 326/415 308/423 -f 422/561 324/414 325/416 -f 324/414 323/413 327/417 -f 421/560 322/411 324/414 -f 323/413 321/412 1811/2487 -f 401/521 321/6303 322/555 -f 321/412 320/559 422/561 -f 401/521 319/407 321/409 -f 320/408 316/403 421/6304 -f 316/479 373/486 318/557 -f 316/403 317/406 367/475 -f 315/402 365/467 317/469 -f 316/403 319/407 313/404 -f 315/402 314/401 365/467 -f 363/465 314/401 307/394 -f 363/465 307/394 312/399 -f 311/398 363/465 312/399 -f 309/397 356/457 311/398 -f 310/444 346/443 309/455 -f 308/395 309/397 307/394 -f 307/394 313/400 306/562 -f 306/562 405/529 305/530 -f 407/532 302/6305 305/530 -f 1221/1657 303/5774 301/6306 -f 298/533 302/6307 407/532 -f 1221/1657 301/6306 300/5771 -f 1219/1653 300/387 299/386 -f 1222/1658 299/386 297/384 -f 298/533 408/534 296/535 -f 295/382 2473/3419 297/384 -f 292/379 296/535 409/536 -f 292/379 290/377 2475/3423 -f 2475/3423 290/377 289/376 -f 285/369 2457/3388 287/371 -f 283/367 2457/3388 285/369 -f 284/368 2457/3388 283/367 -f 282/366 283/367 135/160 -f 134/158 282/366 135/160 -f 1998/2736 281/365 280/364 -f 273/355 277/359 224/292 -f 224/292 277/6308 220/287 -f 275/357 280/2733 276/358 -f 272/353 274/356 273/355 -f 1995/2729 272/353 270/349 -f 1992/2726 270/349 268/348 -f 1990/2722 268/346 266/344 -f 1989/2721 266/344 265/343 -f 1988/2719 264/342 262/340 -f 267/345 261/339 263/341 -f 262/340 260/338 1988/2719 -f 269/347 259/337 261/339 -f 271/351 258/354 259/352 -f 256/332 260/338 257/333 -f 1988/2719 256/332 254/329 -f 1987/2718 254/329 252/325 -f 1986/2717 252/325 250/322 -f 1986/2717 250/322 248/319 -f 1985/2716 248/319 246/316 -f 246/316 245/315 264/342 -f 1984/2715 245/315 243/314 -f 243/6309 242/2695 1969/2696 -f 1963/2689 241/309 240/308 -f 238/306 1955/2678 240/308 -f 244/312 237/305 239/307 -f 236/304 1954/2675 238/306 -f 247/318 235/301 237/305 -f 234/303 1956/2681 236/304 -f 249/321 233/302 235/301 -f 232/298 1957/2679 234/300 -f 251/327 231/297 233/299 -f 232/298 223/289 1957/2679 -f 230/296 223/289 232/298 -f 253/328 229/295 231/297 -f 227/293 222/286 230/296 -f 255/331 228/294 229/295 -f 258/335 226/290 228/294 -f 224/292 225/291 273/355 -f 227/293 224/292 222/286 -f 230/296 222/286 223/289 -f 223/289 221/288 1959/2683 -f 224/292 220/287 222/286 -f 221/285 208/273 205/270 -f 277/362 219/283 220/284 -f 208/273 203/268 205/270 -f 133/157 219/283 278/361 -f 209/274 218/282 217/281 -f 211/6310 217/281 216/280 -f 210/125 217/281 211/6310 -f 121/140 120/139 214/277 -f 114/128 211/275 212/276 -f 114/128 113/126 211/275 -f 210/125 209/274 217/281 -f 208/273 111/131 203/268 -f 201/266 204/269 202/267 -f 206/272 202/267 203/268 -f 200/265 202/267 207/271 -f 207/6311 107/122 200/6312 -f 108/123 107/122 207/6311 -f 201/266 1948/264 1949/2669 -f 107/122 199/262 200/263 -f 197/261 199/262 107/122 -f 199/262 198/260 1947/2668 -f 198/260 106/121 196/259 -f 104/119 192/254 194/253 -f 193/252 191/250 1938/2656 -f 103/6313 190/249 192/251 -f 103/6313 101/238 190/249 -f 191/250 102/242 1937/2655 -f 185/245 1935/2651 189/248 -f 188/247 1933/2649 185/245 -f 1931/5370 188/247 187/246 -f 1913/243 186/244 184/241 -f 102/242 1912/240 1913/243 -f 101/238 98/115 100/239 -f 100/237 99/117 1909/236 -f 182/2625 183/235 181/233 -f 181/233 183/235 86/102 -f 179/2623 180/234 85/103 -f 84/99 179/2623 85/103 -f 83/101 179/232 84/99 -f 179/6314 178/2615 1904/2616 -f 172/218 1897/2608 173/221 -f 2477/220 1892/2604 172/218 -f 79/94 2476/217 172/218 -f 165/202 1889/2601 166/203 -f 60/69 164/201 1886/2597 -f 162/199 371/480 163/200 -f 58/6315 59/194 161/197 -f 428/574 161/197 160/196 -f 160/196 159/191 427/571 -f 59/194 159/191 160/196 -f 155/186 427/571 159/191 -f 153/181 156/187 157/189 -f 427/571 155/186 154/185 -f 157/189 152/180 153/181 -f 157/189 150/178 152/180 -f 152/180 151/179 418/551 -f 52/61 150/178 157/189 -f 150/178 149/177 145/172 -f 145/172 146/51 147/173 -f 147/173 142/168 143/170 -f 143/170 140/169 290/377 -f 148/174 141/6316 142/175 -f 289/376 140/169 139/375 -f 137/162 286/370 139/164 -f 136/161 286/370 137/162 -f 135/160 286/370 136/161 -f 133/157 282/366 134/158 -f 133/157 131/156 218/282 -f 36/42 34/40 132/154 -f 216/280 131/153 130/152 -f 128/150 216/280 130/152 -f 130/152 32/38 128/150 -f 129/151 126/148 127/149 -f 30/36 215/279 125/147 -f 28/34 124/145 29/35 -f 3/3 28/34 29/6317 -f 215/279 123/144 121/140 -f 115/129 120/139 118/133 -f 114/128 120/139 115/129 -f 116/130 112/127 113/126 -f 111/131 83/101 110/100 -f 206/272 110/100 109/124 -f 109/124 108/123 207/6311 -f 106/121 197/261 107/122 -f 194/253 106/121 104/119 -f 104/119 103/118 192/254 -f 95/112 96/113 94/111 -f 96/113 101/238 103/6313 -f 101/238 102/242 190/249 -f 1912/240 102/242 101/238 -f 101/238 96/113 98/115 -f 97/116 95/112 87/104 -f 94/111 105/120 92/108 -f 93/110 91/109 90/106 -f 108/123 89/107 92/108 -f 89/107 90/106 91/109 -f 88/105 87/104 90/106 -f 86/102 183/235 87/104 -f 86/102 85/103 181/233 -f 82/98 116/130 1891/92 -f 79/94 78/95 2476/217 -f 170/215 1891/92 76/91 -f 76/91 74/90 167/213 -f 77/93 73/89 75/88 -f 74/87 71/84 166/205 -f 117/135 72/86 73/85 -f 71/84 70/83 168/206 -f 72/86 69/80 71/84 -f 119/137 68/81 69/80 -f 70/83 67/82 66/210 -f 21/27 62/72 22/28 -f 21/27 50/59 62/72 -f 55/64 62/72 50/59 -f 61/70 60/69 165/202 -f 158/190 57/66 54/63 -f 158/190 54/63 53/62 -f 55/64 50/59 51/60 -f 52/61 49/58 48/56 -f 47/55 45/53 149/177 -f 148/174 146/51 42/49 -f 41/47 148/176 42/48 -f 40/46 141/166 41/47 -f 40/46 39/45 136/161 -f 33/39 130/152 34/40 -f 31/37 126/148 32/38 -f 124/145 30/36 29/35 -f 26/2 27/33 28/34 -f 25/32 122/143 27/33 -f 24/30 64/73 25/32 -f 24/30 26/2 1/31 -f 20/26 47/55 21/27 -f 20/26 19/25 45/53 -f 15/20 17/23 16/22 -f 14/19 43/50 15/20 -f 37/43 14/17 12/16 -f 11/13 35/41 12/14 -f 33/39 11/13 10/12 -f 9/9 13/15 8/10 -f 3/3 29/6317 7/7 -f 8/8 5/4 6/6 -f 2/1 1/31 26/2 -f 4310/6318 4311/6319 4309/6320 -f 4311/6319 4312/6321 4309/6320 -f 4318/6322 4316/6323 4317/6324 -f 4318/6322 4317/6324 4319/6325 -f 4318/6322 4326/6326 4322/6327 -f 4322/6327 4320/6328 4325/6329 -f 4344/6330 4322/6327 4325/6329 -f 4321/6331 4325/6329 4320/6328 -f 4322/6327 4321/6331 4320/6328 -f 4321/6331 4322/6327 4323/6332 -f 4323/6332 4324/6333 4321/6331 -f 4325/6329 4321/6331 4324/6333 -f 4324/6333 4314/6334 4325/6329 -f 4326/6326 4314/6334 4324/6333 -f 4327/6335 4314/6334 4326/6326 -f 4327/6335 4328/6336 4329/6337 -f 4327/6335 4329/6337 4330/6338 -f 4316/6323 4330/6338 4329/6337 -f 4344/6330 4330/6338 4316/6323 -f 4344/6330 4331/6339 4330/6338 -f 4331/6339 4314/6334 4330/6338 -f 4314/6334 4332/6340 4315/6341 -f 4332/6340 4333/6342 4315/6341 -f 4844/6343 4309/6320 4352/6344 -f 4335/6345 4334/6346 4355/6347 -f 4336/6348 4335/6345 4355/6347 -f 4336/6348 4355/6347 4337/6349 -f 4337/6349 4314/6334 4336/6348 -f 4339/6350 4314/6334 4338/6351 -f 4338/6351 4340/6352 4339/6350 -f 4339/6350 4340/6352 4335/6345 -f 4340/6352 4310/6318 4335/6345 -f 4338/6351 4341/6353 4340/6352 -f 4341/6353 4311/6319 4340/6352 -f 4342/6354 4341/6353 4338/6351 -f 4342/6354 4313/6355 4341/6353 -f 4313/6355 4312/6321 4341/6353 -f 4314/6334 4313/6355 4342/6354 -f 4838/6356 4314/6334 4343/6357 -f 4331/6339 4344/6330 4345/6358 -f 4331/6339 4345/6358 4346/6359 -f 4331/6339 4346/6359 4347/6360 -f 4347/6360 4346/6359 4348/6361 -f 4347/6360 4348/6361 4349/6362 -f 4314/6334 4347/6360 4349/6362 -f 4314/6334 4349/6362 4332/6340 -f 4349/6362 4350/6363 4332/6340 -f 4349/6362 4348/6361 4350/6363 -f 4348/6361 4351/6364 4350/6363 -f 4350/6363 4351/6364 4352/6344 -f 4350/6363 4352/6344 4333/6342 -f 4309/6320 4844/6343 4353/6365 -f 4354/6366 4309/6320 4353/6365 -f 4337/6349 4355/6347 4356/6367 -f 4357/6368 4337/6349 4356/6367 -f 4358/6369 4359/6370 4357/6368 -f 4360/6371 4357/6368 4359/6370 -f 4360/6371 4359/6370 4361/6372 -f 4361/6372 4337/6349 4360/6371 -f 4586/6373 4337/6349 4361/6372 -f 4357/6368 4820/6374 4362/6375 -f 4357/6368 4362/6375 4363/6376 -f 4363/6376 4358/6369 4357/6368 -f 4359/6370 4358/6369 4364/6377 -f 4364/6377 4365/6378 4359/6370 -f 4366/6379 4359/6370 4365/6378 -f 4366/6379 4365/6378 4363/6376 -f 4363/6376 4362/6375 4366/6379 -f 4366/6379 4361/6372 4359/6370 -f 4367/6380 4363/6376 4365/6378 -f 4365/6378 4368/6381 4367/6380 -f 4369/6382 4367/6380 4368/6381 -f 4370/6383 4369/6382 4368/6381 -f 4368/6381 4371/6384 4370/6383 -f 4371/6384 4372/6385 4370/6383 -f 4373/6386 4370/6383 4372/6385 -f 4373/6386 4372/6385 4374/6387 -f 4375/6388 4377/6389 4376/6390 -f 4378/6391 4379/6392 4377/6389 -f 4380/6393 4377/6389 4379/6392 -f 4379/6392 4381/6394 4380/6393 -f 4382/6395 4380/6393 4381/6394 -f 4381/6394 4383/6396 4382/6395 -f 4382/6395 4383/6396 4384/6397 -f 4385/6398 4382/6395 4384/6397 -f 4384/6397 4386/6399 4385/6398 -f 4385/6398 4386/6399 4387/6400 -f 4387/6400 4388/6401 4385/6398 -f 4389/6402 4385/6398 4388/6401 -f 4380/6393 4389/6402 4545/6403 -f 4545/6403 4390/6404 4380/6393 -f 4392/6405 4380/6393 4390/6404 -f 4393/6406 4380/6393 4392/6405 -f 4396/6407 4394/6408 4395/6409 -f 4396/6407 4395/6409 4399/6410 -f 4399/6410 4397/6411 4396/6407 -f 4398/6412 4552/6413 4397/6411 -f 4401/6414 4397/6411 4400/6415 -f 4401/6414 4400/6415 4402/6416 -f 4401/6414 4402/6416 4403/6417 -f 4403/6417 4404/6418 4401/6414 -f 4405/6419 4401/6414 4404/6418 -f 4405/6419 4404/6418 4406/6420 -f 4406/6420 4407/6421 4405/6419 -f 4408/6422 4405/6419 4407/6421 -f 4407/6421 4409/6423 4408/6422 -f 4401/6414 4408/6422 4409/6423 -f 4407/6421 4410/6424 4409/6423 -f 4411/6425 4409/6423 4410/6424 -f 4403/6417 4411/6425 4410/6424 -f 4410/6424 4412/6426 4403/6417 -f 4410/6424 4413/6427 4412/6426 -f 4404/6418 4412/6426 4413/6427 -f 4406/6420 4413/6427 4410/6424 -f 4409/6423 4414/6428 4401/6414 -f 4415/6429 4401/6414 4414/6428 -f 4396/6407 4415/6429 4416/6430 -f 4416/6430 4417/6431 4396/6407 -f 4418/6432 4396/6407 4417/6431 -f 4418/6432 4417/6431 4414/6428 -f 4414/6428 4565/6433 4418/6432 -f 4565/6433 4419/6434 4418/6432 -f 4565/6433 4420/6435 4419/6434 -f 4421/6436 4419/6434 4420/6435 -f 4421/6436 4422/6437 4419/6434 -f 4418/6432 4419/6434 4422/6437 -f 4418/6432 4422/6437 4423/6438 -f 4418/6432 4423/6438 4424/6439 -f 4424/6439 4425/6440 4418/6432 -f 4425/6440 4426/6441 4418/6432 -f 4426/6441 4427/6442 4418/6432 -f 4396/6407 4418/6432 4427/6442 -f 4394/6408 4396/6407 4427/6442 -f 4394/6408 4427/6442 4428/6443 -f 4429/6444 4394/6408 4428/6443 -f 4429/6444 4428/6443 4430/6445 -f 4430/6445 4432/6446 4431/6447 -f 4374/6387 4431/6447 4432/6446 -f 4425/6440 4374/6387 4432/6446 -f 4374/6387 4425/6440 4373/6386 -f 4374/6387 4433/6448 4431/6447 -f 4434/6449 4431/6447 4433/6448 -f 4435/6450 4434/6449 4433/6448 -f 4436/6451 4435/6450 4433/6448 -f 4437/6452 4436/6451 4433/6448 -f 4433/6448 4438/6453 4437/6452 -f 4438/6453 4439/6454 4437/6452 -f 4440/6455 4437/6452 4439/6454 -f 4441/6456 4440/6455 4439/6454 -f 4439/6454 4442/6457 4441/6456 -f 4443/6458 4441/6456 4442/6457 -f 4444/6459 4443/6458 4445/6460 -f 4444/6459 4445/6460 4446/6461 -f 4447/6462 4444/6459 4446/6461 -f 4446/6461 4438/6453 4447/6462 -f 4448/6463 4447/6462 4438/6453 -f 4449/6464 4448/6463 4438/6453 -f 4449/6464 4447/6462 4448/6463 -f 4447/6462 4449/6464 4450/6465 -f 4447/6462 4450/6465 4444/6459 -f 4451/6466 4450/6465 4449/6464 -f 4452/6467 4451/6466 4449/6464 -f 4433/6448 4452/6467 4449/6464 -f 4453/6468 4380/6393 4429/6444 -f 4429/6444 4380/6393 4393/6406 -f 4376/6390 4380/6393 4453/6468 -f 4374/6387 4376/6390 4453/6468 -f 4374/6387 4454/6469 4376/6390 -f 4455/6470 4376/6390 4454/6469 -f 4455/6470 4454/6469 4456/6471 -f 4456/6471 4370/6383 4455/6470 -f 4457/6472 4370/6383 4456/6471 -f 4458/6473 4457/6472 4456/6471 -f 4457/6472 4458/6473 4459/6474 -f 4459/6474 4460/6475 4457/6472 -f 4461/6476 4457/6472 4460/6475 -f 4462/6477 4461/6476 4460/6475 -f 4460/6475 4463/6478 4462/6477 -f 4463/6478 4476/6479 4462/6477 -f 4476/6479 4370/6383 4462/6477 -f 4464/6480 4462/6477 4370/6383 -f 4464/6480 4457/6472 4461/6476 -f 4461/6476 4462/6477 4464/6480 -f 4369/6382 4370/6383 4476/6479 -f 4476/6479 4458/6473 4369/6382 -f 4456/6471 4465/6481 4458/6473 -f 4466/6482 4458/6473 4465/6481 -f 4465/6481 4467/6483 4466/6482 -f 4466/6482 4467/6483 4368/6381 -f 4468/6484 4368/6381 4467/6483 -f 4469/6485 4470/6486 4468/6484 -f 4468/6484 4467/6483 4469/6485 -f 4474/6487 4468/6484 4470/6486 -f 4470/6486 4471/6488 4474/6487 -f 4472/6489 4473/6490 4471/6488 -f 4474/6487 4471/6488 4473/6490 -f 4474/6487 4473/6490 4465/6481 -f 4465/6481 4371/6384 4474/6487 -f 4371/6384 4368/6381 4474/6487 -f 4368/6381 4364/6377 4466/6482 -f 4364/6377 4475/6491 4466/6482 -f 4473/6490 4472/6489 4467/6483 -f 4471/6488 4470/6486 4472/6489 -f 4469/6485 4472/6489 4470/6486 -f 4469/6485 4467/6483 4472/6489 -f 4468/6484 4474/6487 4368/6381 -f 4467/6483 4465/6481 4473/6490 -f 4458/6473 4466/6482 4475/6491 -f 4458/6473 4475/6491 4367/6380 -f 4460/6475 4476/6479 4463/6478 -f 4459/6474 4476/6479 4460/6475 -f 4458/6473 4476/6479 4459/6474 -f 4370/6383 4457/6472 4464/6480 -f 4465/6481 4456/6471 4454/6469 -f 4372/6385 4465/6481 4454/6469 -f 4376/6390 4455/6470 4375/6388 -f 4433/6448 4453/6468 4429/6444 -f 4429/6444 4452/6467 4433/6448 -f 4452/6467 4429/6444 4477/6492 -f 4477/6492 4451/6466 4452/6467 -f 4477/6492 4478/6493 4450/6465 -f 4429/6444 4478/6493 4477/6492 -f 4478/6493 4429/6444 4430/6445 -f 4434/6449 4478/6493 4430/6445 -f 4450/6465 4451/6466 4477/6492 -f 4444/6459 4450/6465 4478/6493 -f 4444/6459 4478/6493 4435/6450 -f 4479/6494 4444/6459 4436/6451 -f 4436/6451 4480/6495 4479/6494 -f 4479/6494 4480/6495 4481/6496 -f 4482/6497 4479/6494 4481/6496 -f 4481/6496 4483/6498 4482/6497 -f 4482/6497 4483/6498 4484/6499 -f 4484/6499 4437/6452 4482/6497 -f 4440/6455 4482/6497 4437/6452 -f 4437/6452 4485/6500 4480/6495 -f 4485/6500 4437/6452 4484/6499 -f 4485/6500 4484/6499 4486/6501 -f 4486/6501 4487/6502 4485/6500 -f 4487/6502 4488/6503 4485/6500 -f 4481/6496 4485/6500 4488/6503 -f 4489/6504 4488/6503 4490/6505 -f 4489/6504 4490/6505 4491/6506 -f 4491/6506 4486/6501 4489/6504 -f 4483/6498 4489/6504 4486/6501 -f 4487/6502 4486/6501 4491/6506 -f 4491/6506 4492/6507 4487/6502 -f 4493/6508 4487/6502 4492/6507 -f 4492/6507 4494/6509 4493/6508 -f 4417/6431 4493/6508 4494/6509 -f 4494/6509 4414/6428 4417/6431 -f 4414/6428 4494/6509 4415/6429 -f 4496/6510 4495/6511 4415/6429 -f 4490/6505 4495/6511 4496/6510 -f 4490/6505 4496/6510 4492/6507 -f 4496/6510 4415/6429 4494/6509 -f 4417/6431 4495/6511 4493/6508 -f 4495/6511 4417/6431 4416/6430 -f 4494/6509 4492/6507 4496/6510 -f 4493/6508 4495/6511 4487/6502 -f 4488/6503 4487/6502 4495/6511 -f 4492/6507 4491/6506 4490/6505 -f 4495/6511 4490/6505 4488/6503 -f 4488/6503 4489/6504 4483/6498 -f 4486/6501 4484/6499 4483/6498 -f 4483/6498 4481/6496 4488/6503 -f 4479/6494 4482/6497 4440/6455 -f 4485/6500 4481/6496 4480/6495 -f 4437/6452 4480/6495 4436/6451 -f 4440/6455 4444/6459 4479/6494 -f 4438/6453 4446/6461 4497/6512 -f 4445/6460 4497/6512 4446/6461 -f 4443/6458 4497/6512 4445/6460 -f 4497/6512 4443/6458 4442/6457 -f 4497/6512 4442/6457 4439/6454 -f 4444/6459 4441/6456 4443/6458 -f 4441/6456 4444/6459 4440/6455 -f 4438/6453 4497/6512 4439/6454 -f 4433/6448 4449/6464 4438/6453 -f 4435/6450 4436/6451 4444/6459 -f 4478/6493 4434/6449 4435/6450 -f 4453/6468 4433/6448 4374/6387 -f 4430/6445 4431/6447 4434/6449 -f 4432/6446 4430/6445 4428/6443 -f 4394/6408 4429/6444 4393/6406 -f 4432/6446 4428/6443 4426/6441 -f 4427/6442 4426/6441 4428/6443 -f 4425/6440 4432/6446 4426/6441 -f 4375/6388 4425/6440 4424/6439 -f 4424/6439 4498/6513 4375/6388 -f 4498/6513 4499/6514 4375/6388 -f 4502/6515 4501/6516 4503/6517 -f 4502/6515 4503/6517 4504/6518 -f 4502/6515 4504/6518 4505/6519 -f 4502/6515 4505/6519 4506/6520 -f 4506/6520 4507/6521 4502/6515 -f 4508/6522 4502/6515 4507/6521 -f 4507/6521 4509/6523 4508/6522 -f 4509/6523 4510/6524 4508/6522 -f 4511/6525 4508/6522 4510/6524 -f 4510/6524 4512/6526 4511/6525 -f 4513/6527 4511/6525 4512/6526 -f 4512/6526 4514/6528 4513/6527 -f 4514/6528 4515/6529 4513/6527 -f 4515/6529 4502/6515 4513/6527 -f 4517/6530 4515/6529 4516/6531 -f 4516/6531 4518/6532 4517/6530 -f 4519/6533 4518/6532 4514/6528 -f 4519/6533 4520/6534 4518/6532 -f 4498/6513 4515/6529 4520/6534 -f 4498/6513 4520/6534 4521/6535 -f 4498/6513 4521/6535 4522/6536 -f 4523/6537 4522/6536 4521/6535 -f 4500/6538 4523/6537 4507/6521 -f 4523/6537 4519/6533 4507/6521 -f 4523/6537 4521/6535 4519/6533 -f 4522/6536 4523/6537 4500/6538 -f 4520/6534 4519/6533 4521/6535 -f 4515/6529 4498/6513 4502/6515 -f 4509/6523 4507/6521 4519/6533 -f 4524/6539 4514/6528 4518/6532 -f 4518/6532 4525/6540 4524/6539 -f 4526/6541 4524/6539 4525/6540 -f 4525/6540 4527/6542 4526/6541 -f 4528/6543 4526/6541 4527/6542 -f 4527/6542 4529/6544 4528/6543 -f 4528/6543 4529/6544 4530/6545 -f 4530/6545 4531/6546 4528/6543 -f 4530/6545 4532/6547 4531/6546 -f 4527/6542 4532/6547 4533/6548 -f 4384/6397 4533/6548 4532/6547 -f 4386/6399 4384/6397 4532/6547 -f 4516/6531 4531/6546 4532/6547 -f 4532/6547 4527/6542 4516/6531 -f 4531/6546 4516/6531 4534/6549 -f 4531/6546 4534/6549 4526/6541 -f 4534/6549 4516/6531 4515/6529 -f 4534/6549 4515/6529 4524/6539 -f 4532/6547 4530/6545 4386/6399 -f 4386/6399 4530/6545 4529/6544 -f 4533/6548 4387/6400 4529/6544 -f 4387/6400 4533/6548 4383/6396 -f 4529/6544 4527/6542 4533/6548 -f 4526/6541 4528/6543 4531/6546 -f 4525/6540 4516/6531 4527/6542 -f 4524/6539 4526/6541 4534/6549 -f 4514/6528 4524/6539 4515/6529 -f 4517/6530 4518/6532 4520/6534 -f 4518/6532 4516/6531 4525/6540 -f 4520/6534 4515/6529 4517/6530 -f 4514/6528 4512/6526 4519/6533 -f 4512/6526 4510/6524 4519/6533 -f 4513/6527 4508/6522 4511/6525 -f 4510/6524 4509/6523 4519/6533 -f 4513/6527 4502/6515 4508/6522 -f 4507/6521 4506/6520 4500/6538 -f 4535/6550 4500/6538 4506/6520 -f 4535/6550 4506/6520 4504/6518 -f 4500/6538 4535/6550 4536/6551 -f 4536/6551 4535/6550 4503/6517 -f 4505/6519 4504/6518 4506/6520 -f 4504/6518 4503/6517 4535/6550 -f 4536/6551 4503/6517 4501/6516 -f 4502/6515 4498/6513 4501/6516 -f 4501/6516 4423/6438 4536/6551 -f 4423/6438 4501/6516 4498/6513 -f 4500/6538 4536/6551 4423/6438 -f 4378/6391 4500/6538 4423/6438 -f 4422/6437 4378/6391 4423/6438 -f 4537/6552 4538/6553 4381/6394 -f 4539/6554 4381/6394 4538/6553 -f 4538/6553 4540/6555 4539/6554 -f 4541/6556 4539/6554 4540/6555 -f 4540/6555 4542/6557 4541/6556 -f 4541/6556 4578/6558 4539/6554 -f 4388/6401 4383/6396 4539/6554 -f 4411/6425 4388/6401 4539/6554 -f 4388/6401 4411/6425 4389/6402 -f 4403/6417 4389/6402 4411/6425 -f 4403/6417 4543/6559 4389/6402 -f 4544/6560 4389/6402 4543/6559 -f 4391/6561 4545/6403 4547/6562 -f 4390/6404 4547/6562 4392/6405 -f 4546/6563 4392/6405 4547/6562 -f 4546/6563 4393/6406 4392/6405 -f 4394/6408 4549/6564 4550/6565 -f 4394/6408 4550/6565 4395/6409 -f 4550/6565 4551/6566 4395/6409 -f 4395/6409 4551/6566 4399/6410 -f 4397/6411 4399/6410 4398/6412 -f 4552/6413 4399/6410 4551/6566 -f 4553/6567 4400/6415 4552/6413 -f 4397/6411 4552/6413 4400/6415 -f 4543/6559 4402/6416 4554/6568 -f 4554/6568 4402/6416 4555/6569 -f 4554/6568 4556/6570 4543/6559 -f 4557/6571 4545/6403 4544/6560 -f 4558/6572 4546/6563 4547/6562 -f 4550/6565 4561/6573 4562/6574 -f 4550/6565 4562/6574 4551/6566 -f 4562/6574 4552/6413 4551/6566 -f 4552/6413 4562/6574 4560/6575 -f 4553/6567 4552/6413 4560/6575 -f 4561/6573 4560/6575 4562/6574 -f 4558/6572 4561/6573 4549/6564 -f 4558/6572 4560/6575 4561/6573 -f 4555/6569 4553/6567 4560/6575 -f 4554/6568 4555/6569 4560/6575 -f 4560/6575 4559/6576 4554/6568 -f 4554/6568 4559/6576 4556/6570 -f 4559/6576 4558/6572 4557/6571 -f 4560/6575 4558/6572 4559/6576 -f 4547/6562 4557/6571 4558/6572 -f 4556/6570 4559/6576 4557/6571 -f 4557/6571 4544/6560 4556/6570 -f 4555/6569 4402/6416 4553/6567 -f 4553/6567 4402/6416 4400/6415 -f 4399/6410 4552/6413 4398/6412 -f 4550/6565 4549/6564 4561/6573 -f 4549/6564 4548/6577 4558/6572 -f 4393/6406 4548/6577 4549/6564 -f 4393/6406 4549/6564 4394/6408 -f 4558/6572 4548/6577 4546/6563 -f 4548/6577 4393/6406 4546/6563 -f 4557/6571 4547/6562 4545/6403 -f 4543/6559 4556/6570 4544/6560 -f 4545/6403 4389/6402 4544/6560 -f 4539/6554 4563/6578 4411/6425 -f 4409/6423 4411/6425 4563/6578 -f 4563/6578 4564/6579 4409/6423 -f 4409/6423 4564/6579 4565/6433 -f 4420/6435 4565/6433 4566/6580 -f 4569/6581 4566/6580 4567/6582 -f 4569/6581 4567/6582 4577/6583 -f 4577/6583 4570/6584 4569/6581 -f 4569/6581 4570/6584 4420/6435 -f 4569/6581 4420/6435 4566/6580 -f 4421/6436 4420/6435 4570/6584 -f 4421/6436 4570/6584 4571/6585 -f 4572/6586 4422/6437 4571/6585 -f 4537/6552 4572/6586 4573/6587 -f 4574/6588 4537/6552 4573/6587 -f 4540/6555 4538/6553 4574/6588 -f 4575/6589 4576/6590 4568/6591 -f 4568/6591 4542/6557 4575/6589 -f 4567/6582 4568/6591 4577/6583 -f 4576/6590 4577/6583 4568/6591 -f 4575/6589 4540/6555 4574/6588 -f 4571/6585 4570/6584 4577/6583 -f 4577/6583 4572/6586 4571/6585 -f 4573/6587 4572/6586 4577/6583 -f 4573/6587 4577/6583 4576/6590 -f 4575/6589 4574/6588 4576/6590 -f 4574/6588 4538/6553 4537/6552 -f 4576/6590 4574/6588 4573/6587 -f 4572/6586 4537/6552 4422/6437 -f 4578/6558 4542/6557 4568/6591 -f 4579/6592 4563/6578 4578/6558 -f 4579/6592 4564/6579 4563/6578 -f 4566/6580 4564/6579 4580/6593 -f 4567/6582 4566/6580 4580/6593 -f 4568/6591 4579/6592 4578/6558 -f 4579/6592 4568/6591 4580/6593 -f 4564/6579 4579/6592 4580/6593 -f 4568/6591 4567/6582 4580/6593 -f 4566/6580 4565/6433 4564/6579 -f 4539/6554 4578/6558 4563/6578 -f 4541/6556 4542/6557 4578/6558 -f 4542/6557 4540/6555 4575/6589 -f 4422/6437 4537/6552 4378/6391 -f 4500/6538 4499/6514 4522/6536 -f 4499/6514 4500/6538 4378/6391 -f 4378/6391 4377/6389 4499/6514 -f 4498/6513 4522/6536 4499/6514 -f 4498/6513 4424/6439 4423/6438 -f 4421/6436 4571/6585 4422/6437 -f 4416/6430 4415/6429 4495/6511 -f 4415/6429 4396/6407 4401/6414 -f 4414/6428 4409/6423 4565/6433 -f 4410/6424 4407/6421 4406/6420 -f 4413/6427 4406/6420 4404/6418 -f 4401/6414 4405/6419 4408/6422 -f 4404/6418 4403/6417 4412/6426 -f 4543/6559 4403/6417 4402/6416 -f 4401/6414 4396/6407 4397/6411 -f 4391/6561 4547/6562 4390/6404 -f 4391/6561 4390/6404 4545/6403 -f 4383/6396 4388/6401 4387/6400 -f 4529/6544 4387/6400 4386/6399 -f 4382/6395 4385/6398 4389/6402 -f 4533/6548 4384/6397 4383/6396 -f 4381/6394 4539/6554 4383/6396 -f 4389/6402 4380/6393 4382/6395 -f 4381/6394 4379/6392 4537/6552 -f 4379/6392 4378/6391 4537/6552 -f 4380/6393 4376/6390 4377/6389 -f 4377/6389 4375/6388 4499/6514 -f 4375/6388 4373/6386 4425/6440 -f 4373/6386 4375/6388 4455/6470 -f 4454/6469 4374/6387 4372/6385 -f 4373/6386 4455/6470 4370/6383 -f 4465/6481 4372/6385 4371/6384 -f 4369/6382 4458/6473 4367/6380 -f 4368/6381 4365/6378 4364/6377 -f 4363/6376 4367/6380 4475/6491 -f 4475/6491 4358/6369 4363/6376 -f 4475/6491 4364/6377 4358/6369 -f 4362/6375 4820/6374 4361/6372 -f 4361/6372 4366/6379 4362/6375 -f 4361/6372 4820/6374 4586/6373 -f 4820/6374 4582/6594 4586/6373 -f 4586/6373 4582/6594 4581/6595 -f 4582/6594 4583/6596 4581/6595 -f 4585/6597 4584/6598 4583/6596 -f 4583/6596 4337/6349 4585/6597 -f 4584/6598 4585/6597 4581/6595 -f 4586/6373 4581/6595 4585/6597 -f 4586/6373 4585/6597 4337/6349 -f 4314/6334 4337/6349 4583/6596 -f 4584/6598 4581/6595 4583/6596 -f 4582/6594 4314/6334 4583/6596 -f 4582/6594 4820/6374 4314/6334 -f 4343/6357 4314/6334 4820/6374 -f 4588/6599 4587/6600 4356/6367 -f 4588/6599 4356/6367 4589/6601 -f 4588/6599 4590/6602 4587/6600 -f 4591/6603 4587/6600 4590/6602 -f 4356/6367 4587/6600 4591/6603 -f 4590/6602 4592/6604 4591/6603 -f 4356/6367 4591/6603 4820/6374 -f 4593/6605 4820/6374 4591/6603 -f 4592/6604 4594/6606 4593/6605 -f 4595/6607 4593/6605 4594/6606 -f 4595/6607 4594/6606 4596/6608 -f 4595/6607 4596/6608 4597/6609 -f 4598/6610 4595/6607 4597/6609 -f 4594/6606 4588/6599 4589/6601 -f 4594/6606 4592/6604 4588/6599 -f 4596/6608 4594/6606 4589/6601 -f 4589/6601 4599/6611 4596/6608 -f 4600/6612 4596/6608 4599/6611 -f 4599/6611 4601/6613 4600/6612 -f 4602/6614 4600/6612 4601/6613 -f 4601/6613 4603/6615 4602/6614 -f 4604/6616 4602/6614 4603/6615 -f 4605/6617 4604/6616 4603/6615 -f 4603/6615 4606/6618 4605/6617 -f 4606/6618 4607/6619 4605/6617 -f 4608/6620 4605/6617 4607/6619 -f 4608/6620 4607/6619 4609/6621 -f 4610/6622 4612/6623 4611/6624 -f 4614/6625 4612/6623 4613/6626 -f 4613/6626 4615/6627 4614/6625 -f 4616/6628 4614/6625 4615/6627 -f 4615/6627 4617/6629 4616/6628 -f 4616/6628 4617/6629 4618/6630 -f 4619/6631 4616/6628 4618/6630 -f 4618/6630 4620/6632 4619/6631 -f 4619/6631 4620/6632 4621/6633 -f 4621/6633 4622/6634 4619/6631 -f 4623/6635 4619/6631 4622/6634 -f 4614/6625 4623/6635 4782/6636 -f 4782/6636 4624/6637 4614/6625 -f 4626/6638 4614/6625 4625/6639 -f 4629/6640 4627/6641 4628/6642 -f 4629/6640 4628/6642 4631/6643 -f 4631/6643 4630/6644 4629/6640 -f 4633/6645 4630/6644 4632/6646 -f 4633/6645 4632/6646 4634/6647 -f 4633/6645 4634/6647 4635/6648 -f 4635/6648 4636/6649 4633/6645 -f 4637/6650 4633/6645 4636/6649 -f 4637/6650 4636/6649 4638/6651 -f 4638/6651 4639/6652 4637/6650 -f 4640/6653 4637/6650 4639/6652 -f 4639/6652 4641/6654 4640/6653 -f 4633/6645 4640/6653 4641/6654 -f 4639/6652 4642/6655 4641/6654 -f 4643/6656 4641/6654 4642/6655 -f 4635/6648 4643/6656 4642/6655 -f 4642/6655 4644/6657 4635/6648 -f 4642/6655 4645/6658 4644/6657 -f 4636/6649 4644/6657 4645/6658 -f 4638/6651 4645/6658 4642/6655 -f 4641/6654 4646/6659 4633/6645 -f 4647/6660 4633/6645 4646/6659 -f 4629/6640 4647/6660 4648/6661 -f 4648/6661 4649/6662 4629/6640 -f 4650/6663 4629/6640 4649/6662 -f 4650/6663 4649/6662 4646/6659 -f 4646/6659 4651/6664 4650/6663 -f 4651/6664 4655/6665 4650/6663 -f 4652/6666 4655/6665 4651/6664 -f 4651/6664 4653/6667 4652/6666 -f 4653/6667 4806/6668 4652/6666 -f 4652/6666 4654/6669 4656/6670 -f 4652/6666 4656/6670 4655/6665 -f 4650/6663 4655/6665 4656/6670 -f 4650/6663 4656/6670 4657/6671 -f 4650/6663 4657/6671 4658/6672 -f 4658/6672 4659/6673 4650/6663 -f 4659/6673 4660/6674 4650/6663 -f 4660/6674 4661/6675 4650/6663 -f 4629/6640 4650/6663 4661/6675 -f 4627/6641 4629/6640 4661/6675 -f 4627/6641 4661/6675 4662/6676 -f 4663/6677 4627/6641 4662/6676 -f 4663/6677 4662/6676 4664/6678 -f 4665/6679 4663/6677 4664/6678 -f 4666/6680 4665/6679 4664/6678 -f 4609/6621 4666/6680 4660/6674 -f 4659/6673 4609/6621 4660/6674 -f 4609/6621 4659/6673 4608/6620 -f 4662/6676 4660/6674 4666/6680 -f 4609/6621 4667/6681 4666/6680 -f 4668/6682 4666/6680 4667/6681 -f 4669/6683 4668/6682 4667/6681 -f 4670/6684 4669/6683 4667/6681 -f 4671/6685 4670/6684 4667/6681 -f 4667/6681 4672/6686 4671/6685 -f 4672/6686 4673/6687 4671/6685 -f 4674/6688 4671/6685 4673/6687 -f 4675/6689 4674/6688 4673/6687 -f 4673/6687 4676/6690 4675/6689 -f 4677/6691 4675/6689 4676/6690 -f 4678/6692 4677/6691 4679/6693 -f 4678/6692 4679/6693 4680/6694 -f 4681/6695 4678/6692 4680/6694 -f 4680/6694 4672/6686 4681/6695 -f 4682/6696 4681/6695 4672/6686 -f 4681/6695 4682/6696 4683/6697 -f 4681/6695 4683/6697 4678/6692 -f 4667/6681 4685/6698 4684/6699 -f 4667/6681 4684/6699 4682/6696 -f 4686/6700 4614/6625 4663/6677 -f 4663/6677 4614/6625 4626/6638 -f 4611/6624 4614/6625 4686/6700 -f 4609/6621 4611/6624 4686/6700 -f 4609/6621 4687/6701 4611/6624 -f 4688/6702 4611/6624 4687/6701 -f 4688/6702 4687/6701 4689/6703 -f 4689/6703 4605/6617 4688/6702 -f 4690/6704 4605/6617 4689/6703 -f 4691/6705 4690/6704 4689/6703 -f 4690/6704 4691/6705 4692/6706 -f 4692/6706 4693/6707 4690/6704 -f 4694/6708 4690/6704 4693/6707 -f 4695/6709 4694/6708 4693/6707 -f 4693/6707 4696/6710 4695/6709 -f 4696/6710 4712/6711 4695/6709 -f 4712/6711 4605/6617 4695/6709 -f 4697/6712 4695/6709 4605/6617 -f 4697/6712 4690/6704 4694/6708 -f 4694/6708 4695/6709 4697/6712 -f 4604/6616 4605/6617 4712/6711 -f 4712/6711 4691/6705 4604/6616 -f 4689/6703 4698/6713 4691/6705 -f 4699/6714 4691/6705 4698/6713 -f 4698/6713 4700/6715 4699/6714 -f 4699/6714 4700/6715 4603/6615 -f 4701/6716 4603/6615 4700/6715 -f 4702/6717 4703/6718 4701/6716 -f 4701/6716 4700/6715 4702/6717 -f 4706/6719 4701/6716 4703/6718 -f 4703/6718 4704/6720 4706/6719 -f 4706/6719 4704/6720 4705/6721 -f 4706/6719 4705/6721 4707/6722 -f 4706/6719 4707/6722 4698/6713 -f 4698/6713 4606/6618 4706/6719 -f 4606/6618 4603/6615 4706/6719 -f 4603/6615 4708/6723 4699/6714 -f 4708/6723 4709/6724 4699/6714 -f 4709/6724 4708/6723 4710/6725 -f 4709/6724 4710/6725 4600/6612 -f 4711/6726 4710/6725 4708/6723 -f 4708/6723 4601/6613 4711/6726 -f 4600/6612 4710/6725 4597/6609 -f 4710/6725 4711/6726 4597/6609 -f 4707/6722 4705/6721 4700/6715 -f 4704/6720 4703/6718 4705/6721 -f 4702/6717 4705/6721 4703/6718 -f 4702/6717 4700/6715 4705/6721 -f 4701/6716 4706/6719 4603/6615 -f 4700/6715 4698/6713 4707/6722 -f 4691/6705 4699/6714 4709/6724 -f 4691/6705 4709/6724 4602/6614 -f 4693/6707 4712/6711 4696/6710 -f 4692/6706 4712/6711 4693/6707 -f 4691/6705 4712/6711 4692/6706 -f 4605/6617 4690/6704 4697/6712 -f 4698/6713 4689/6703 4687/6701 -f 4607/6619 4698/6713 4687/6701 -f 4611/6624 4688/6702 4610/6622 -f 4667/6681 4686/6700 4663/6677 -f 4663/6677 4685/6698 4667/6681 -f 4685/6698 4663/6677 4713/6727 -f 4713/6727 4714/6728 4685/6698 -f 4713/6727 4715/6729 4683/6697 -f 4715/6729 4713/6727 4665/6679 -f 4668/6682 4715/6729 4665/6679 -f 4714/6728 4713/6727 4684/6699 -f 4663/6677 4665/6679 4713/6727 -f 4685/6698 4714/6728 4684/6699 -f 4683/6697 4684/6699 4713/6727 -f 4678/6692 4683/6697 4715/6729 -f 4678/6692 4715/6729 4669/6683 -f 4684/6699 4683/6697 4682/6696 -f 4716/6730 4678/6692 4670/6684 -f 4670/6684 4717/6731 4716/6730 -f 4716/6730 4717/6731 4718/6732 -f 4719/6733 4716/6730 4718/6732 -f 4718/6732 4720/6734 4719/6733 -f 4719/6733 4720/6734 4721/6735 -f 4721/6735 4671/6685 4719/6733 -f 4674/6688 4719/6733 4671/6685 -f 4671/6685 4722/6736 4717/6731 -f 4722/6736 4671/6685 4721/6735 -f 4722/6736 4721/6735 4723/6737 -f 4723/6737 4724/6738 4722/6736 -f 4724/6738 4725/6739 4722/6736 -f 4718/6732 4722/6736 4725/6739 -f 4726/6740 4725/6739 4727/6741 -f 4726/6740 4727/6741 4728/6742 -f 4728/6742 4723/6737 4726/6740 -f 4720/6734 4726/6740 4723/6737 -f 4724/6738 4723/6737 4728/6742 -f 4728/6742 4729/6743 4724/6738 -f 4730/6744 4724/6738 4729/6743 -f 4729/6743 4731/6745 4730/6744 -f 4649/6662 4730/6744 4731/6745 -f 4731/6745 4646/6659 4649/6662 -f 4646/6659 4731/6745 4647/6660 -f 4733/6746 4732/6747 4647/6660 -f 4727/6741 4732/6747 4733/6746 -f 4727/6741 4733/6746 4729/6743 -f 4733/6746 4647/6660 4731/6745 -f 4649/6662 4732/6747 4730/6744 -f 4732/6747 4649/6662 4648/6661 -f 4731/6745 4729/6743 4733/6746 -f 4730/6744 4732/6747 4724/6738 -f 4725/6739 4724/6738 4732/6747 -f 4729/6743 4728/6742 4727/6741 -f 4732/6747 4727/6741 4725/6739 -f 4725/6739 4726/6740 4720/6734 -f 4723/6737 4721/6735 4720/6734 -f 4720/6734 4718/6732 4725/6739 -f 4716/6730 4719/6733 4674/6688 -f 4722/6736 4718/6732 4717/6731 -f 4671/6685 4717/6731 4670/6684 -f 4674/6688 4678/6692 4716/6730 -f 4672/6686 4680/6694 4734/6748 -f 4679/6693 4734/6748 4680/6694 -f 4677/6691 4734/6748 4679/6693 -f 4734/6748 4677/6691 4676/6690 -f 4734/6748 4676/6690 4673/6687 -f 4678/6692 4675/6689 4677/6691 -f 4675/6689 4678/6692 4674/6688 -f 4672/6686 4734/6748 4673/6687 -f 4667/6681 4682/6696 4672/6686 -f 4669/6683 4670/6684 4678/6692 -f 4715/6729 4668/6682 4669/6683 -f 4686/6700 4667/6681 4609/6621 -f 4665/6679 4666/6680 4668/6682 -f 4666/6680 4664/6678 4662/6676 -f 4627/6641 4663/6677 4626/6638 -f 4661/6675 4660/6674 4662/6676 -f 4610/6622 4659/6673 4658/6672 -f 4658/6672 4735/6749 4610/6622 -f 4735/6749 4736/6750 4610/6622 -f 4736/6750 4738/6751 4737/6752 -f 4657/6671 4737/6752 4738/6751 -f 4740/6753 4739/6754 4741/6755 -f 4740/6753 4741/6755 4742/6756 -f 4740/6753 4742/6756 4743/6757 -f 4740/6753 4743/6757 4744/6758 -f 4744/6758 4745/6759 4740/6753 -f 4746/6760 4740/6753 4745/6759 -f 4745/6759 4747/6761 4746/6760 -f 4747/6761 4748/6762 4746/6760 -f 4749/6763 4746/6760 4748/6762 -f 4748/6762 4750/6764 4749/6763 -f 4751/6765 4749/6763 4750/6764 -f 4750/6764 4752/6766 4751/6765 -f 4752/6766 4753/6767 4751/6765 -f 4753/6767 4740/6753 4751/6765 -f 4755/6768 4753/6767 4754/6769 -f 4754/6769 4756/6770 4755/6768 -f 4757/6771 4756/6770 4752/6766 -f 4757/6771 4755/6768 4756/6770 -f 4755/6768 4757/6771 4758/6772 -f 4758/6772 4753/6767 4755/6768 -f 4735/6749 4753/6767 4758/6772 -f 4735/6749 4758/6772 4759/6773 -f 4759/6773 4760/6774 4738/6751 -f 4738/6751 4760/6774 4745/6759 -f 4760/6774 4757/6771 4745/6759 -f 4760/6774 4758/6772 4757/6771 -f 4760/6774 4759/6773 4758/6772 -f 4753/6767 4735/6749 4740/6753 -f 4747/6761 4745/6759 4757/6771 -f 4761/6775 4752/6766 4756/6770 -f 4756/6770 4762/6776 4761/6775 -f 4763/6777 4761/6775 4762/6776 -f 4762/6776 4764/6778 4763/6777 -f 4765/6779 4763/6777 4764/6778 -f 4764/6778 4766/6780 4765/6779 -f 4765/6779 4766/6780 4767/6781 -f 4764/6778 4768/6782 4769/6783 -f 4618/6630 4769/6783 4768/6782 -f 4620/6632 4618/6630 4768/6782 -f 4767/6781 4768/6782 4770/6784 -f 4767/6781 4770/6784 4763/6777 -f 4754/6769 4770/6784 4768/6782 -f 4768/6782 4764/6778 4754/6769 -f 4770/6784 4754/6769 4753/6767 -f 4770/6784 4753/6767 4761/6775 -f 4768/6782 4767/6781 4620/6632 -f 4620/6632 4767/6781 4766/6780 -f 4769/6783 4621/6633 4766/6780 -f 4621/6633 4769/6783 4617/6629 -f 4766/6780 4764/6778 4769/6783 -f 4763/6777 4765/6779 4767/6781 -f 4762/6776 4754/6769 4764/6778 -f 4761/6775 4763/6777 4770/6784 -f 4752/6766 4761/6775 4753/6767 -f 4756/6770 4754/6769 4762/6776 -f 4752/6766 4750/6764 4757/6771 -f 4750/6764 4748/6762 4757/6771 -f 4751/6765 4746/6760 4749/6763 -f 4748/6762 4747/6761 4757/6771 -f 4751/6765 4740/6753 4746/6760 -f 4745/6759 4744/6758 4738/6751 -f 4744/6758 4771/6785 4738/6751 -f 4738/6751 4771/6785 4772/6786 -f 4772/6786 4771/6785 4742/6756 -f 4771/6785 4744/6758 4743/6757 -f 4743/6757 4742/6756 4771/6785 -f 4742/6756 4741/6755 4772/6786 -f 4772/6786 4741/6755 4739/6754 -f 4740/6753 4735/6749 4739/6754 -f 4739/6754 4657/6671 4772/6786 -f 4657/6671 4739/6754 4735/6749 -f 4738/6751 4772/6786 4657/6671 -f 4656/6670 4737/6752 4657/6671 -f 4773/6787 4774/6788 4615/6627 -f 4775/6789 4615/6627 4774/6788 -f 4774/6788 4776/6790 4775/6789 -f 4777/6791 4775/6789 4776/6790 -f 4776/6790 4778/6792 4777/6791 -f 4777/6791 4779/6793 4775/6789 -f 4622/6634 4617/6629 4775/6789 -f 4643/6656 4622/6634 4775/6789 -f 4622/6634 4643/6656 4623/6635 -f 4635/6648 4623/6635 4643/6656 -f 4635/6648 4780/6794 4623/6635 -f 4781/6795 4623/6635 4780/6794 -f 4624/6637 4782/6636 4784/6796 -f 4783/6797 4625/6639 4784/6796 -f 4783/6797 4626/6638 4625/6639 -f 4627/6641 4786/6798 4787/6799 -f 4627/6641 4787/6799 4628/6642 -f 4787/6799 4788/6800 4628/6642 -f 4628/6642 4788/6800 4631/6643 -f 4789/6801 4631/6643 4788/6800 -f 4790/6802 4632/6646 4789/6801 -f 4630/6644 4789/6801 4632/6646 -f 4780/6794 4634/6647 4791/6803 -f 4791/6803 4634/6647 4792/6804 -f 4791/6803 4793/6805 4780/6794 -f 4795/6806 4783/6797 4784/6796 -f 4787/6799 4798/6807 4799/6808 -f 4787/6799 4799/6808 4788/6800 -f 4799/6808 4789/6801 4788/6800 -f 4789/6801 4799/6808 4797/6809 -f 4790/6802 4789/6801 4797/6809 -f 4798/6807 4797/6809 4799/6808 -f 4795/6806 4798/6807 4786/6798 -f 4795/6806 4797/6809 4798/6807 -f 4792/6804 4790/6802 4797/6809 -f 4791/6803 4792/6804 4797/6809 -f 4797/6809 4796/6810 4791/6803 -f 4791/6803 4796/6810 4793/6805 -f 4796/6810 4795/6806 4794/6811 -f 4797/6809 4795/6806 4796/6810 -f 4784/6796 4794/6811 4795/6806 -f 4793/6805 4796/6810 4794/6811 -f 4781/6795 4793/6805 4794/6811 -f 4792/6804 4634/6647 4790/6802 -f 4790/6802 4634/6647 4632/6646 -f 4631/6643 4789/6801 4630/6644 -f 4787/6799 4786/6798 4798/6807 -f 4786/6798 4785/6812 4795/6806 -f 4626/6638 4785/6812 4786/6798 -f 4626/6638 4786/6798 4627/6641 -f 4795/6806 4785/6812 4783/6797 -f 4785/6812 4626/6638 4783/6797 -f 4794/6811 4784/6796 4782/6636 -f 4782/6636 4781/6795 4794/6811 -f 4780/6794 4793/6805 4781/6795 -f 4782/6636 4623/6635 4781/6795 -f 4775/6789 4800/6813 4643/6656 -f 4641/6654 4643/6656 4800/6813 -f 4800/6813 4801/6814 4641/6654 -f 4641/6654 4801/6814 4651/6664 -f 4653/6667 4651/6664 4801/6814 -f 4653/6667 4801/6814 4802/6815 -f 4805/6816 4802/6815 4803/6817 -f 4805/6816 4803/6817 4811/6818 -f 4811/6818 4806/6668 4805/6816 -f 4805/6816 4806/6668 4653/6667 -f 4805/6816 4653/6667 4802/6815 -f 4807/6819 4656/6670 4654/6669 -f 4808/6820 4774/6788 4773/6787 -f 4809/6821 4774/6788 4808/6820 -f 4776/6790 4774/6788 4809/6821 -f 4812/6822 4810/6823 4804/6824 -f 4804/6824 4778/6792 4812/6822 -f 4812/6822 4776/6790 4809/6821 -f 4803/6817 4804/6824 4811/6818 -f 4810/6823 4811/6818 4804/6824 -f 4813/6825 4800/6813 4779/6793 -f 4813/6825 4801/6814 4800/6813 -f 4802/6815 4801/6814 4814/6826 -f 4803/6817 4802/6815 4814/6826 -f 4804/6824 4813/6825 4779/6793 -f 4813/6825 4804/6824 4814/6826 -f 4801/6814 4813/6825 4814/6826 -f 4779/6793 4778/6792 4804/6824 -f 4654/6669 4806/6668 4811/6818 -f 4811/6818 4807/6819 4654/6669 -f 4808/6820 4811/6818 4810/6823 -f 4812/6822 4809/6821 4810/6823 -f 4810/6823 4809/6821 4808/6820 -f 4773/6787 4807/6819 4808/6820 -f 4807/6819 4773/6787 4656/6670 -f 4808/6820 4807/6819 4811/6818 -f 4804/6824 4803/6817 4814/6826 -f 4775/6789 4779/6793 4800/6813 -f 4777/6791 4778/6792 4779/6793 -f 4778/6792 4776/6790 4812/6822 -f 4656/6670 4773/6787 4737/6752 -f 4737/6752 4773/6787 4613/6626 -f 4738/6751 4736/6750 4759/6773 -f 4737/6752 4612/6623 4736/6750 -f 4735/6749 4759/6773 4736/6750 -f 4735/6749 4658/6672 4657/6671 -f 4652/6666 4806/6668 4654/6669 -f 4648/6661 4647/6660 4732/6747 -f 4647/6660 4629/6640 4633/6645 -f 4646/6659 4641/6654 4651/6664 -f 4642/6655 4639/6652 4638/6651 -f 4645/6658 4638/6651 4636/6649 -f 4633/6645 4637/6650 4640/6653 -f 4636/6649 4635/6648 4644/6657 -f 4780/6794 4635/6648 4634/6647 -f 4633/6645 4629/6640 4630/6644 -f 4624/6637 4784/6796 4625/6639 -f 4625/6639 4614/6625 4624/6637 -f 4617/6629 4622/6634 4621/6633 -f 4766/6780 4621/6633 4620/6632 -f 4616/6628 4619/6631 4623/6635 -f 4769/6783 4618/6630 4617/6629 -f 4615/6627 4775/6789 4617/6629 -f 4623/6635 4614/6625 4616/6628 -f 4615/6627 4613/6626 4773/6787 -f 4612/6623 4737/6752 4613/6626 -f 4614/6625 4611/6624 4612/6623 -f 4612/6623 4610/6622 4736/6750 -f 4610/6622 4608/6620 4659/6673 -f 4608/6620 4610/6622 4688/6702 -f 4687/6701 4609/6621 4607/6619 -f 4608/6620 4688/6702 4605/6617 -f 4698/6713 4607/6619 4606/6618 -f 4604/6616 4691/6705 4602/6614 -f 4603/6615 4601/6613 4708/6723 -f 4600/6612 4602/6614 4709/6724 -f 4599/6611 4711/6726 4601/6613 -f 4599/6611 4589/6601 4711/6726 -f 4598/6610 4711/6726 4589/6601 -f 4598/6610 4597/6609 4711/6726 -f 4598/6610 4356/6367 4595/6607 -f 4595/6607 4815/6827 4816/6828 -f 4595/6607 4816/6828 4817/6829 -f 4820/6374 4595/6607 4817/6829 -f 4820/6374 4819/6830 4818/6831 -f 4819/6830 4821/6832 4818/6831 -f 4820/6374 4818/6831 4821/6832 -f 4822/6833 4343/6357 4821/6832 -f 4825/6834 4343/6357 4824/6835 -f 4824/6835 4826/6836 4825/6834 -f 4825/6834 4826/6836 4827/6837 -f 4825/6834 4827/6837 4828/6838 -f 4828/6838 4827/6837 4829/6839 -f 4828/6838 4829/6839 4830/6840 -f 4830/6840 4343/6357 4828/6838 -f 4343/6357 4830/6840 4854/6841 -f 4343/6357 4854/6841 4837/6842 -f 4343/6357 4837/6842 4835/6843 -f 4343/6357 4835/6843 4831/6844 -f 4343/6357 4831/6844 4832/6845 -f 4838/6356 4343/6357 4832/6845 -f 4832/6845 4833/6846 4838/6356 -f 4834/6847 4838/6356 4833/6846 -f 4833/6846 4835/6843 4834/6847 -f 4836/6848 4834/6847 4835/6843 -f 4836/6848 4835/6843 4837/6842 -f 4837/6842 4325/6329 4836/6848 -f 4834/6847 4836/6848 4838/6356 -f 4345/6358 4954/6849 4839/6850 -f 4352/6344 4839/6850 4954/6849 -f 4841/6851 4842/6852 4840/6853 -f 4843/6854 4844/6343 4840/6853 -f 4844/6343 4845/6855 4353/6365 -f 4353/6365 4846/6856 4847/6857 -f 4353/6365 4847/6857 4354/6366 -f 4815/6827 4354/6366 4847/6857 -f 4355/6347 4815/6827 4595/6607 -f 4815/6827 4355/6347 4334/6346 -f 4334/6346 4354/6366 4815/6827 -f 4595/6607 4356/6367 4355/6347 -f 4816/6828 4847/6857 4846/6856 -f 4816/6828 4846/6856 4848/6858 -f 4848/6858 4846/6856 4353/6365 -f 4848/6858 4353/6365 4849/6859 -f 4850/6860 4848/6858 4849/6859 -f 4850/6860 4849/6859 4819/6830 -f 4820/6374 4850/6860 4819/6830 -f 4817/6829 4848/6858 4850/6860 -f 4849/6859 4353/6365 4845/6855 -f 4849/6859 4845/6855 4821/6832 -f 4844/6343 4821/6832 4845/6855 -f 4822/6833 4821/6832 4844/6343 -f 4352/6344 4840/6853 4844/6343 -f 4822/6833 4844/6343 4843/6854 -f 4822/6833 4843/6854 4851/6861 -f 4823/6862 4822/6833 4851/6861 -f 4823/6862 4851/6861 4824/6835 -f 4343/6357 4822/6833 4823/6862 -f 4851/6861 4843/6854 4840/6853 -f 4851/6861 4840/6853 4826/6836 -f 4826/6836 4840/6853 4842/6852 -f 4827/6837 4842/6852 4841/6851 -f 4830/6840 4829/6839 4344/6330 -f 4852/6863 4830/6840 4344/6330 -f 4852/6863 4344/6330 4325/6329 -f 4854/6841 4852/6863 4853/6864 -f 4853/6864 4855/6865 4854/6841 -f 4837/6842 4855/6865 4856/6866 -f 4837/6842 4857/6867 4325/6329 -f 4857/6867 4858/6868 4853/6864 -f 4856/6866 4859/6869 4858/6868 -f 4860/6870 4858/6868 4859/6869 -f 4861/6871 4860/6870 4859/6869 -f 4855/6865 4861/6871 4859/6869 -f 4862/6872 4855/6865 4853/6864 -f 4863/6873 4855/6865 4862/6872 -f 4862/6872 4864/6874 4863/6873 -f 4865/6875 4863/6873 4864/6874 -f 4864/6874 4866/6876 4865/6875 -f 4867/6877 4869/6878 4868/6879 -f 4869/6878 4866/6876 4868/6879 -f 4866/6876 4871/6880 4870/6881 -f 4870/6881 4871/6880 4872/6882 -f 4870/6881 4872/6882 4873/6883 -f 4870/6881 4873/6883 4874/6884 -f 4865/6875 4870/6881 4874/6884 -f 4875/6885 4874/6884 4873/6883 -f 4873/6883 4876/6886 4875/6885 -f 4877/6887 4875/6885 4876/6886 -f 4876/6886 4878/6888 4877/6887 -f 4879/6889 4877/6887 4878/6888 -f 4878/6888 4880/6890 4879/6889 -f 4880/6890 4881/6891 4879/6889 -f 4882/6892 4879/6889 4881/6891 -f 4883/6893 4882/6892 4881/6891 -f 4881/6891 4884/6894 4883/6893 -f 4884/6894 4885/6895 4883/6893 -f 4886/6896 4883/6893 4885/6895 -f 4885/6895 4887/6897 4886/6896 -f 4888/6898 4886/6896 4887/6897 -f 4888/6898 4887/6897 4889/6899 -f 4889/6899 4890/6900 4888/6898 -f 4888/6898 4890/6900 4877/6887 -f 4890/6900 4892/6901 4891/6902 -f 4892/6901 4893/6903 4891/6902 -f 4894/6904 4896/6905 4895/6906 -f 4892/6901 4895/6906 4896/6905 -f 4899/6907 4898/6908 4897/6909 -f 4900/6910 4899/6907 4897/6909 -f 4900/6910 4901/6911 4899/6907 -f 4901/6911 4900/6910 4902/6912 -f 4903/6913 4901/6911 4902/6912 -f 4902/6912 4904/6914 4903/6913 -f 4871/6880 4903/6913 4904/6914 -f 4906/6915 4904/6914 4905/6916 -f 4875/6885 4906/6915 4905/6916 -f 4905/6916 4898/6908 4907/6917 -f 4907/6917 4908/6918 4905/6916 -f 4905/6916 4908/6918 4874/6884 -f 4869/6878 4874/6884 4908/6918 -f 4908/6918 4909/6919 4869/6878 -f 4909/6919 4866/6876 4869/6878 -f 4866/6876 4909/6919 4910/6920 -f 4866/6876 4910/6920 4903/6913 -f 4907/6917 4903/6913 4910/6920 -f 4910/6920 4911/6921 4907/6917 -f 4911/6921 4908/6918 4907/6917 -f 4908/6918 4911/6921 4912/6922 -f 4909/6919 4908/6918 4912/6922 -f 4912/6922 4913/6923 4909/6919 -f 4913/6923 4910/6920 4909/6919 -f 4910/6920 4913/6923 4914/6924 -f 4915/6925 4914/6924 4913/6923 -f 4914/6924 4915/6925 4916/6926 -f 4916/6926 4915/6925 4917/6927 -f 4917/6927 4918/6928 4916/6926 -f 4918/6928 4914/6924 4916/6926 -f 4918/6928 4917/6927 4919/6929 -f 4919/6929 4920/6930 4918/6928 -f 4920/6930 4911/6921 4918/6928 -f 4911/6921 4920/6930 4921/6931 -f 4911/6921 4921/6931 4912/6922 -f 4922/6932 4919/6929 4912/6922 -f 4920/6930 4919/6929 4922/6932 -f 4922/6932 4912/6922 4921/6931 -f 4922/6932 4921/6931 4920/6930 -f 4919/6929 4917/6927 4913/6923 -f 4914/6924 4918/6928 4911/6921 -f 4913/6923 4917/6927 4915/6925 -f 4913/6923 4912/6922 4919/6929 -f 4911/6921 4910/6920 4914/6924 -f 4898/6908 4901/6911 4907/6917 -f 4923/6933 4905/6916 4902/6912 -f 4898/6908 4905/6916 4923/6933 -f 4923/6933 4924/6934 4898/6908 -f 4924/6934 4897/6909 4898/6908 -f 4925/6935 4897/6909 4924/6934 -f 4923/6933 4925/6935 4924/6934 -f 4925/6935 4923/6933 4926/6936 -f 4926/6936 4927/6937 4925/6935 -f 4927/6937 4897/6909 4925/6935 -f 4927/6937 4928/6938 4896/6905 -f 4896/6905 4929/6939 4927/6937 -f 4892/6901 4896/6905 4928/6938 -f 4928/6938 4900/6910 4892/6901 -f 4928/6938 4926/6936 4900/6910 -f 4897/6909 4927/6937 4929/6939 -f 4897/6909 4929/6939 4894/6904 -f 4927/6937 4926/6936 4928/6938 -f 4926/6936 4923/6933 4900/6910 -f 4930/6940 4872/6882 4906/6915 -f 4872/6882 4930/6940 4931/6941 -f 4873/6883 4872/6882 4931/6941 -f 4932/6942 4873/6883 4931/6941 -f 4931/6941 4930/6940 4932/6942 -f 4933/6943 4932/6942 4930/6940 -f 4933/6943 4930/6940 4875/6885 -f 4934/6944 4933/6943 4875/6885 -f 4890/6900 4934/6944 4875/6885 -f 4889/6899 4935/6945 4936/6946 -f 4889/6899 4936/6946 4893/6903 -f 4936/6946 4891/6902 4893/6903 -f 4891/6902 4936/6946 4934/6944 -f 4889/6899 4873/6883 4935/6945 -f 4935/6945 4873/6883 4932/6942 -f 4932/6942 4933/6943 4935/6945 -f 4935/6945 4934/6944 4936/6946 -f 4890/6900 4891/6902 4934/6944 -f 4934/6944 4935/6945 4933/6943 -f 4875/6885 4930/6940 4906/6915 -f 4904/6914 4906/6915 4871/6880 -f 4904/6914 4902/6912 4905/6916 -f 4903/6913 4907/6917 4901/6911 -f 4902/6912 4900/6910 4923/6933 -f 4901/6911 4898/6908 4899/6907 -f 4897/6909 4892/6901 4900/6910 -f 4896/6905 4894/6904 4929/6939 -f 4894/6904 4895/6906 4890/6900 -f 4890/6900 4889/6899 4894/6904 -f 4894/6904 4893/6903 4897/6909 -f 4893/6903 4894/6904 4889/6899 -f 4892/6901 4897/6909 4893/6903 -f 4892/6901 4890/6900 4895/6906 -f 4887/6897 4878/6888 4889/6899 -f 4882/6892 4886/6896 4888/6898 -f 4881/6891 4887/6897 4885/6895 -f 4881/6891 4885/6895 4884/6894 -f 4882/6892 4883/6893 4886/6896 -f 4879/6889 4882/6892 4888/6898 -f 4880/6890 4887/6897 4881/6891 -f 4878/6888 4887/6897 4880/6890 -f 4877/6887 4879/6889 4888/6898 -f 4876/6886 4889/6899 4878/6888 -f 4875/6885 4877/6887 4890/6900 -f 4873/6883 4889/6899 4876/6886 -f 4874/6884 4875/6885 4905/6916 -f 4872/6882 4871/6880 4906/6915 -f 4866/6876 4903/6913 4871/6880 -f 4866/6876 4870/6881 4865/6875 -f 4869/6878 4867/6877 4874/6884 -f 4867/6877 4868/6879 4937/6947 -f 4867/6877 4937/6947 4865/6875 -f 4938/6948 4937/6947 4868/6879 -f 4938/6948 4868/6879 4866/6876 -f 4865/6875 4937/6947 4861/6871 -f 4937/6947 4939/6949 4861/6871 -f 4860/6870 4861/6871 4939/6949 -f 4862/6872 4860/6870 4939/6949 -f 4862/6872 4939/6949 4940/6950 -f 4941/6951 4940/6950 4939/6949 -f 4941/6951 4939/6949 4938/6948 -f 4938/6948 4942/6952 4941/6951 -f 4942/6952 4943/6953 4941/6951 -f 4943/6953 4944/6954 4941/6951 -f 4945/6955 4946/6956 4947/6957 -f 4948/6958 4945/6955 4947/6957 -f 4947/6957 4949/6959 4948/6958 -f 4950/6960 4942/6952 4948/6958 -f 4942/6952 4950/6960 4951/6961 -f 4942/6952 4951/6961 4943/6953 -f 4943/6953 4951/6961 4949/6959 -f 4950/6960 4949/6959 4951/6961 -f 4948/6958 4949/6959 4950/6960 -f 4947/6957 4943/6953 4949/6959 -f 4945/6955 4948/6958 4940/6950 -f 4952/6962 4940/6950 4948/6958 -f 4948/6958 4938/6948 4952/6962 -f 4864/6874 4952/6962 4938/6948 -f 4940/6950 4952/6962 4864/6874 -f 4953/6963 4944/6954 4946/6956 -f 4947/6957 4946/6956 4944/6954 -f 4945/6955 4953/6963 4946/6956 -f 4953/6963 4945/6955 4941/6951 -f 4944/6954 4953/6963 4941/6951 -f 4943/6953 4947/6957 4944/6954 -f 4938/6948 4948/6958 4942/6952 -f 4940/6950 4941/6951 4945/6955 -f 4939/6949 4937/6947 4938/6948 -f 4874/6884 4867/6877 4865/6875 -f 4938/6948 4866/6876 4864/6874 -f 4861/6871 4863/6873 4865/6875 -f 4864/6874 4862/6872 4940/6950 -f 4861/6871 4855/6865 4863/6873 -f 4862/6872 4858/6868 4860/6870 -f 4858/6868 4862/6872 4853/6864 -f 4858/6868 4857/6867 4856/6866 -f 4837/6842 4856/6866 4857/6867 -f 4855/6865 4859/6869 4856/6866 -f 4854/6841 4830/6840 4852/6863 -f 4857/6867 4853/6864 4852/6863 -f 4852/6863 4325/6329 4857/6867 -f 4840/6853 4954/6849 4841/6851 -f 4829/6839 4841/6851 4345/6358 -f 4954/6849 4840/6853 4352/6344 -f 4841/6851 4954/6849 4345/6358 -f 4829/6839 4345/6358 4344/6330 -f 4352/6344 4351/6364 4955/6964 -f 4352/6344 4955/6964 4839/6850 -f 4346/6359 4839/6850 4955/6964 -f 4325/6329 4838/6356 4836/6848 -f 4835/6843 4833/6846 4956/6965 -f 4833/6846 4831/6844 4956/6965 -f 4833/6846 4832/6845 4831/6844 -f 4831/6844 4835/6843 4956/6965 -f 4837/6842 4854/6841 4855/6865 -f 4827/6837 4841/6851 4829/6839 -f 4826/6836 4842/6852 4827/6837 -f 4824/6835 4851/6861 4826/6836 -f 4828/6838 4343/6357 4825/6834 -f 4824/6835 4343/6357 4823/6862 -f 4821/6832 4343/6357 4820/6374 -f 4819/6830 4849/6859 4821/6832 -f 4820/6374 4817/6829 4850/6860 -f 4817/6829 4816/6828 4848/6858 -f 4815/6827 4847/6857 4816/6828 -f 4597/6609 4596/6608 4600/6612 -f 4595/6607 4820/6374 4593/6605 -f 4593/6605 4591/6603 4592/6604 -f 4590/6602 4588/6599 4592/6604 -f 4598/6610 4589/6601 4356/6367 -f 4360/6371 4337/6349 4357/6368 -f 4357/6368 4356/6367 4820/6374 -f 4334/6346 4309/6320 4354/6366 -f 4348/6361 4955/6964 4351/6364 -f 4346/6359 4955/6964 4348/6361 -f 4345/6358 4839/6850 4346/6359 -f 4838/6356 4325/6329 4314/6334 -f 4338/6351 4314/6334 4342/6354 -f 4336/6348 4314/6334 4339/6350 -f 4339/6350 4335/6345 4336/6348 -f 4335/6345 4310/6318 4334/6346 -f 4352/6344 4309/6320 4313/6355 -f 4313/6355 4314/6334 4333/6342 -f 4315/6341 4333/6342 4314/6334 -f 4313/6355 4333/6342 4352/6344 -f 4332/6340 4350/6363 4333/6342 -f 4314/6334 4331/6339 4347/6360 -f 4317/6324 4957/6966 4319/6325 -f 4319/6325 4957/6966 4328/6336 -f 4958/6967 4328/6336 4957/6966 -f 4957/6966 4317/6324 4959/6968 -f 4959/6968 4958/6967 4957/6966 -f 4958/6967 4961/6969 4960/6970 -f 4962/6971 4960/6970 4961/6969 -f 4961/6969 4963/6972 4962/6971 -f 4962/6971 4963/6972 4964/6973 -f 4965/6974 4964/6973 4963/6972 -f 4963/6972 4966/6975 4965/6974 -f 4965/6974 4966/6975 4967/6976 -f 4967/6976 4968/6977 4965/6974 -f 4968/6977 4969/6978 4965/6974 -f 4965/6974 4969/6978 4970/6979 -f 4970/6979 4971/6980 4965/6974 -f 4972/6981 4971/6980 4970/6979 -f 4972/6981 4968/6977 4973/6982 -f 4968/6977 4972/6981 4974/6983 -f 4969/6978 4968/6977 4974/6983 -f 4974/6983 4975/6984 4969/6978 -f 4976/6985 4969/6978 4975/6984 -f 4975/6984 4977/6986 4976/6985 -f 4977/6986 4978/6987 4976/6985 -f 4978/6987 4977/6986 4979/6988 -f 4980/6989 4978/6987 4979/6988 -f 4980/6989 4979/6988 4981/6990 -f 4980/6989 4982/6991 4983/6992 -f 4983/6992 4984/6993 4980/6989 -f 4980/6989 4984/6993 4985/6994 -f 4984/6993 4986/6995 4985/6994 -f 4975/6984 4985/6994 4987/6996 -f 4985/6994 4975/6984 4988/6997 -f 4988/6997 4978/6987 4985/6994 -f 4978/6987 4970/6979 4976/6985 -f 4989/6998 4970/6979 4978/6987 -f 4978/6987 4988/6997 4989/6998 -f 4990/6999 4989/6998 4988/6997 -f 4988/6997 4991/7000 4990/6999 -f 4991/7000 4992/7001 4990/6999 -f 4992/7001 4993/7002 4990/6999 -f 4993/7002 4994/7003 4990/6999 -f 4990/6999 4994/7003 4995/7004 -f 4990/6999 4995/7004 4996/7005 -f 4990/6999 4996/7005 4997/7006 -f 4998/7007 4974/6983 4990/6999 -f 4998/7007 4999/7008 4974/6983 -f 4991/7000 5001/7009 5000/7010 -f 5001/7009 5002/7011 5000/7010 -f 5003/7012 5005/7013 5004/7014 -f 5001/7009 5004/7014 5005/7013 -f 5008/7015 5007/7016 5006/7017 -f 5009/7018 5008/7015 5006/7017 -f 5009/7018 5010/7019 5008/7015 -f 5010/7019 5009/7018 5011/7020 -f 5012/7021 5010/7019 5011/7020 -f 5011/7020 5013/7022 5012/7021 -f 5014/7023 5012/7021 5013/7022 -f 5013/7022 4996/7005 5014/7023 -f 5015/7024 5014/7023 4996/7005 -f 5016/7025 5014/7023 5015/7024 -f 5015/7024 5017/7026 5016/7025 -f 5017/7026 5018/7027 5016/7025 -f 5019/7028 5016/7025 5018/7027 -f 5020/7029 5019/7028 5018/7027 -f 5021/7030 5020/7029 5018/7027 -f 5022/7031 5021/7030 5018/7027 -f 4997/7006 5022/7031 5018/7027 -f 4997/7006 5018/7027 5023/7032 -f 5024/7033 4998/7007 5023/7032 -f 4990/6999 5023/7032 4998/7007 -f 5015/7024 4998/7007 5024/7033 -f 4998/7007 5015/7024 5025/7034 -f 5026/7035 4998/7007 5025/7034 -f 5025/7034 4994/7003 5026/7035 -f 5027/7036 4998/7007 5026/7035 -f 5026/7035 4993/7002 5027/7036 -f 5015/7024 4994/7003 5025/7034 -f 4997/7006 5007/7016 5028/7037 -f 5007/7016 5010/7019 5028/7037 -f 5028/7037 5010/7019 5029/7038 -f 5029/7038 5022/7031 5028/7037 -f 5030/7039 4997/7006 5011/7020 -f 5030/7039 5007/7016 4997/7006 -f 5007/7016 5030/7039 5031/7040 -f 5031/7040 5006/7017 5007/7016 -f 5032/7041 5006/7017 5031/7040 -f 5033/7042 5032/7041 5031/7040 -f 5032/7041 5033/7042 5034/7043 -f 5034/7043 5035/7044 5032/7041 -f 5035/7044 5006/7017 5032/7041 -f 5035/7044 5034/7043 5005/7013 -f 5005/7013 5036/7045 5035/7044 -f 5001/7009 5005/7013 5034/7043 -f 5034/7043 5009/7018 5001/7009 -f 5006/7017 5035/7044 5036/7045 -f 5006/7017 5036/7045 5003/7012 -f 5034/7043 5033/7042 5009/7018 -f 5031/7040 5030/7039 5033/7042 -f 5033/7042 5030/7039 5011/7020 -f 5023/7032 5018/7027 5024/7033 -f 5017/7026 5024/7033 5018/7027 -f 5028/7037 5022/7031 4997/7006 -f 5022/7031 5029/7038 5021/7030 -f 5037/7046 5021/7030 5029/7038 -f 5029/7038 5012/7021 5037/7046 -f 5021/7030 5037/7046 5020/7029 -f 5038/7047 5020/7029 5037/7046 -f 5038/7047 5037/7046 5014/7023 -f 5014/7023 5016/7025 5038/7047 -f 5016/7025 5019/7028 5038/7047 -f 5020/7029 5038/7047 5019/7028 -f 5015/7024 5024/7033 5017/7026 -f 4996/7005 5013/7022 4997/7006 -f 5012/7021 5014/7023 5037/7046 -f 5013/7022 5011/7020 4997/7006 -f 5012/7021 5029/7038 5010/7019 -f 5011/7020 5009/7018 5033/7042 -f 5010/7019 5007/7016 5008/7015 -f 5006/7017 5001/7009 5009/7018 -f 5005/7013 5003/7012 5036/7045 -f 5003/7012 5004/7014 4991/7000 -f 4991/7000 4999/7008 5003/7012 -f 5003/7012 5002/7011 5006/7017 -f 5002/7011 5003/7012 4999/7008 -f 4999/7008 5039/7048 5002/7011 -f 5039/7048 5000/7010 5002/7011 -f 5000/7010 5039/7048 4992/7001 -f 4991/7000 5000/7010 4992/7001 -f 5027/7036 4992/7001 5039/7048 -f 4999/7008 5027/7036 5039/7048 -f 5001/7009 5006/7017 5002/7011 -f 5001/7009 4991/7000 5004/7014 -f 4999/7008 4998/7007 5027/7036 -f 4997/7006 5023/7032 4990/6999 -f 4996/7005 4995/7004 5015/7024 -f 4994/7003 5015/7024 4995/7004 -f 4993/7002 5026/7035 4994/7003 -f 4992/7001 5027/7036 4993/7002 -f 4999/7008 4991/7000 4988/6997 -f 4988/6997 4975/6984 4999/7008 -f 4989/6998 4990/6999 4974/6983 -f 4970/6979 4989/6998 4972/6981 -f 4987/6996 4986/6995 5040/7049 -f 5040/7049 4983/6992 4987/6996 -f 4987/6996 4983/6992 4977/6986 -f 4984/6993 4983/6992 5040/7049 -f 4986/6995 4987/6996 4985/6994 -f 5040/7049 4986/6995 4984/6993 -f 4982/6991 4977/6986 4983/6992 -f 4977/6986 4982/6991 5041/7050 -f 4977/6986 5041/7050 4979/6988 -f 4981/6990 5041/7050 4982/6991 -f 4982/6991 4980/6989 4981/6990 -f 4981/6990 4979/6988 5041/7050 -f 4978/6987 4980/6989 4985/6994 -f 4977/6986 4975/6984 4987/6996 -f 4969/6978 4976/6985 4970/6979 -f 4975/6984 4974/6983 4999/7008 -f 4989/6998 4974/6983 4972/6981 -f 4973/6982 4971/6980 4972/6981 -f 4971/6980 4973/6982 5042/7051 -f 5042/7051 4965/6974 4971/6980 -f 5042/7051 5043/7052 4965/6974 -f 5044/7053 5045/7054 4959/6968 -f 5046/7055 4959/6968 5045/7054 -f 5045/7054 5047/7056 5046/7055 -f 5048/7057 5046/7055 5047/7056 -f 5048/7057 5047/7056 5049/7058 -f 5049/7058 5050/7059 5048/7057 -f 5051/7060 5046/7055 5050/7059 -f 5052/7061 5051/7060 5050/7059 -f 5052/7061 5043/7052 5053/7062 -f 5054/7063 5053/7062 5043/7052 -f 5043/7052 5042/7051 5054/7063 -f 5054/7063 5042/7051 5051/7060 -f 5054/7063 5051/7060 5055/7064 -f 5053/7062 5054/7063 5055/7064 -f 5055/7064 5056/7065 5053/7062 -f 5056/7065 5055/7064 5051/7060 -f 5051/7060 5052/7061 5056/7065 -f 5042/7051 4959/6968 5051/7060 -f 4959/6968 4964/6973 5044/7053 -f 5053/7062 5056/7065 5052/7061 -f 5050/7059 5049/7058 5052/7061 -f 5052/7061 5049/7058 5044/7053 -f 5050/7059 5046/7055 5048/7057 -f 5049/7058 5047/7056 5045/7054 -f 5051/7060 4959/6968 5046/7055 -f 5049/7058 5045/7054 5044/7053 -f 5043/7052 5052/7061 5044/7053 -f 5043/7052 5044/7053 4964/6973 -f 5042/7051 5057/7066 4959/6968 -f 5058/7067 4959/6968 5057/7066 -f 4966/6975 5058/7067 5057/7066 -f 4961/6969 4959/6968 5058/7067 -f 5042/7051 5059/7068 5057/7066 -f 4967/6976 5057/7066 5059/7068 -f 5059/7068 5042/7051 4973/6982 -f 5059/7068 4973/6982 4967/6976 -f 4968/6977 4967/6976 4973/6982 -f 5057/7066 4967/6976 4966/6975 -f 5058/7067 4966/6975 4963/6972 -f 4964/6973 4965/6974 5043/7052 -f 4963/6972 4961/6969 5058/7067 -f 4960/6970 4962/6971 4964/6973 -f 4964/6973 4317/6324 4960/6970 -f 4958/6967 4959/6968 4961/6969 -f 4964/6973 4959/6968 4317/6324 -f 4960/6970 4317/6324 4329/6337 -f 4328/6336 4960/6970 4329/6337 -f 4960/6970 4328/6336 4958/6967 -f 4328/6336 4327/6335 4319/6325 -f 4330/6338 4314/6334 4327/6335 -f 4323/6332 4326/6326 4324/6333 -f 4326/6326 4323/6332 4322/6327 -f 4327/6335 4326/6326 4318/6322 -f 4318/6322 4319/6325 4327/6335 -f 4344/6330 4316/6323 4318/6322 -f 4329/6337 4317/6324 4316/6323 -f 4344/6330 4318/6322 4322/6327 -f 4313/6355 4309/6320 4312/6321 -f 4341/6353 4312/6321 4311/6319 -f 4340/6352 4311/6319 4310/6318 -f 4334/6346 4310/6318 4309/6320 -f 578/7069 579/7070 584/7071 -f 4151/7072 4147/7073 4152/7074 \ No newline at end of file +vt 0.003589 0.959348 +vt 0.99992 0.051433 +vt 0.997469 0.94268 +vt 0.001094 0.051433 +vt 0.0 0.0 +f 1/1 2/2 3/1 +f 4/3 5/3 1/1 +f 1/1 6/3 4/3 +f 1/1 3/1 6/3 +f 6/3 3/1 7/3 +f 6/3 7/3 8/3 +f 9/4 8/4 7/4 +f 7/4 10/4 9/4 +f 9/4 10/4 11/4 +f 9/4 11/4 12/4 +f 12/4 13/4 9/4 +f 12/5 14/5 13/5 +f 14/3 15/3 13/3 +f 13/3 15/3 16/3 +f 13/3 16/3 8/3 +f 8/3 16/3 4/3 +f 16/3 5/3 4/3 +f 16/3 17/3 5/3 +f 18/6 5/3 17/3 +f 17/3 19/7 18/6 +f 19/7 20/6 18/6 +f 20/6 21/6 22/8 +f 20/6 22/8 23/6 +f 20/6 23/6 18/6 +f 18/6 24/2 25/2 +f 5/3 18/6 25/2 +f 5/3 25/2 1/1 +f 18/6 23/6 24/2 +f 24/2 26/9 2/2 +f 2/2 26/9 27/9 +f 2/2 28/9 3/1 +f 29/10 30/10 31/10 +f 29/10 31/10 10/4 +f 7/4 29/10 10/4 +f 10/4 31/10 32/4 +f 10/4 32/4 33/4 +f 11/4 33/4 34/4 +f 11/4 34/4 35/4 +f 35/4 34/4 36/4 +f 12/5 35/4 37/5 +f 38/5 37/5 35/4 +f 35/4 36/4 38/5 +f 38/5 36/4 39/5 +f 38/5 39/5 40/5 +f 40/5 41/5 38/5 +f 38/5 41/5 37/5 +f 41/5 42/5 37/5 +f 37/5 42/5 14/5 +f 42/3 43/3 14/3 +f 42/3 44/3 43/3 +f 44/3 45/3 43/3 +f 43/3 45/3 17/3 +f 43/3 17/3 15/3 +f 46/7 45/3 47/7 +f 45/3 46/7 19/7 +f 45/3 19/7 17/3 +f 20/6 46/7 48/6 +f 48/6 49/11 50/6 +f 48/6 50/6 21/6 +f 21/6 50/8 51/8 +f 52/8 51/8 50/8 +f 52/8 50/8 53/8 +f 53/8 54/8 52/8 +f 52/8 54/8 55/8 +f 52/8 55/8 56/8 +f 57/8 56/8 55/8 +f 55/8 58/8 57/8 +f 59/6 57/8 58/8 +f 59/6 58/8 60/6 +f 59/6 61/6 57/8 +f 61/6 62/9 57/8 +f 62/9 56/8 57/8 +f 56/8 62/9 63/9 +f 64/8 56/8 63/9 +f 23/6 22/8 24/2 +f 24/2 22/8 65/9 +f 66/6 67/6 65/6 +f 65/9 67/9 68/9 +f 65/9 68/9 26/9 +f 26/9 68/9 69/9 +f 70/6 69/6 68/6 +f 70/6 68/6 71/6 +f 72/6 70/6 71/6 +f 73/6 74/6 72/6 +f 73/6 72/6 75/6 +f 76/12 73/12 75/12 +f 76/12 75/12 77/12 +f 77/12 78/13 76/12 +f 76/12 78/13 79/12 +f 80/13 78/13 81/13 +f 80/13 82/9 83/13 +f 80/13 83/13 78/13 +f 84/13 78/13 83/13 +f 85/14 86/15 87/13 +f 88/9 85/14 89/9 +f 88/9 90/9 91/9 +f 91/9 92/5 93/5 +f 94/5 93/5 95/5 +f 94/5 95/5 96/5 +f 97/5 94/5 96/5 +f 98/5 97/5 96/5 +f 98/5 96/5 92/5 +f 99/15 98/5 100/15 +f 101/9 99/15 100/15 +f 101/9 100/9 102/9 +f 97/5 99/15 103/5 +f 97/5 103/5 104/5 +f 104/5 105/5 97/5 +f 104/5 106/5 105/5 +f 106/5 107/4 105/5 +f 105/5 107/4 94/5 +f 94/5 107/4 108/5 +f 93/5 108/5 109/5 +f 93/5 109/5 91/9 +f 109/5 85/14 91/9 +f 91/9 85/14 88/9 +f 109/5 86/15 85/14 +f 110/15 111/12 112/15 +f 111/12 113/9 114/12 +f 115/12 111/12 114/12 +f 116/15 112/15 115/12 +f 116/15 115/12 84/13 +f 116/15 84/13 87/13 +f 115/12 114/12 79/12 +f 78/13 115/12 79/12 +f 114/12 117/12 79/12 +f 79/12 117/12 73/12 +f 114/12 118/9 117/9 +f 117/6 118/6 74/6 +f 74/6 118/6 119/6 +f 74/6 119/6 70/6 +f 119/9 118/9 120/9 +f 119/9 120/9 121/9 +f 121/9 122/9 119/9 +f 119/9 122/9 69/9 +f 26/9 69/9 122/9 +f 121/9 123/9 122/9 +f 122/9 123/9 124/9 +f 27/9 122/9 124/9 +f 27/9 124/9 28/9 +f 31/10 125/10 126/10 +f 30/10 125/10 31/10 +f 125/10 127/10 126/10 +f 128/10 32/4 126/10 +f 128/10 126/10 129/10 +f 130/4 33/4 32/4 +f 130/4 131/4 34/4 +f 132/4 34/4 131/4 +f 132/15 131/15 133/15 +f 133/15 134/15 132/15 +f 132/5 134/15 36/4 +f 36/4 134/15 39/5 +f 134/15 135/15 39/5 +f 39/5 135/15 136/5 +f 40/5 136/5 137/5 +f 138/5 40/5 137/5 +f 139/5 138/5 137/5 +f 139/5 140/5 138/5 +f 141/5 138/5 140/5 +f 142/5 141/5 140/5 +f 142/6 140/6 143/6 +f 143/6 144/16 145/16 +f 146/6 143/6 145/16 +f 44/3 147/3 146/6 +f 146/6 147/3 142/3 +f 138/5 141/5 40/5 +f 141/5 147/5 41/5 +f 47/7 45/3 44/3 +f 47/7 44/3 145/16 +f 46/7 47/7 145/16 +f 145/16 148/7 46/7 +f 48/6 148/7 49/11 +f 49/11 148/7 149/16 +f 49/11 149/16 53/8 +f 149/16 150/16 151/16 +f 152/16 151/16 153/16 +f 152/17 153/17 154/17 +f 152/17 154/17 155/9 +f 156/16 152/16 155/11 +f 53/8 156/16 54/8 +f 157/16 156/16 53/8 +f 158/8 54/8 156/16 +f 156/16 155/11 158/8 +f 155/9 159/9 158/9 +f 158/8 159/8 58/8 +f 60/4 58/9 159/9 +f 160/9 161/4 60/4 +f 61/6 59/6 161/6 +f 161/6 162/6 61/6 +f 61/6 162/6 163/6 +f 61/6 163/6 164/6 +f 62/9 165/6 166/9 +f 62/6 166/6 72/6 +f 72/6 63/6 62/6 +f 66/2 22/8 64/8 +f 65/9 22/8 66/2 +f 66/2 64/8 167/2 +f 66/2 167/2 67/9 +f 167/2 64/8 63/9 +f 63/6 67/6 167/6 +f 71/6 67/6 63/6 +f 75/6 166/6 168/6 +f 77/12 168/9 169/12 +f 77/12 169/12 170/12 +f 171/12 172/12 81/13 +f 173/9 172/12 174/9 +f 173/9 174/9 175/9 +f 173/9 176/9 80/13 +f 80/13 176/9 82/9 +f 82/9 176/9 177/9 +f 178/9 82/9 177/9 +f 179/6 82/6 178/6 +f 179/13 83/13 82/9 +f 179/6 180/6 181/6 +f 179/13 181/13 83/13 +f 84/13 83/13 181/13 +f 84/13 181/13 87/13 +f 87/13 181/13 182/13 +f 87/13 182/13 183/13 +f 184/18 89/9 185/10 +f 102/9 90/9 186/9 +f 98/5 92/5 90/9 +f 100/9 90/9 102/9 +f 102/9 186/9 187/10 +f 101/9 102/9 188/10 +f 189/15 188/7 190/7 +f 191/1 192/15 193/7 +f 191/1 194/1 195/1 +f 196/5 195/1 194/1 +f 195/1 196/5 197/6 +f 195/1 198/1 191/1 +f 192/15 191/1 198/1 +f 199/15 192/15 200/15 +f 201/15 199/15 200/15 +f 201/15 200/15 202/15 +f 203/5 201/5 202/5 +f 203/4 202/4 204/7 +f 204/7 205/4 203/4 +f 205/4 106/5 203/4 +f 106/5 206/4 207/4 +f 208/4 207/4 206/4 +f 209/4 208/4 210/19 +f 209/15 210/19 211/15 +f 212/15 209/15 211/15 +f 213/15 212/15 214/15 +f 214/15 215/15 213/15 +f 109/5 216/15 217/15 +f 217/15 216/15 212/15 +f 213/15 116/15 217/15 +f 217/15 116/15 86/15 +f 116/15 218/15 219/15 +f 116/15 219/15 112/15 +f 112/15 219/15 110/15 +f 110/15 220/10 111/12 +f 221/9 120/9 113/9 +f 222/9 120/9 221/9 +f 223/10 221/9 220/10 +f 223/10 220/10 129/10 +f 223/10 129/10 127/10 +f 223/10 127/10 221/9 +f 127/10 222/9 221/9 +f 224/9 222/9 125/10 +f 123/9 224/9 30/10 +f 124/9 123/9 30/10 +f 127/10 125/10 222/9 +f 222/9 224/9 121/9 +f 220/10 225/18 129/10 +f 129/10 225/18 128/10 +f 226/15 227/15 225/18 +f 225/18 227/15 131/15 +f 228/15 133/15 227/15 +f 227/15 219/15 228/15 +f 218/15 228/15 219/15 +f 229/15 228/15 218/15 +f 229/15 218/15 230/15 +f 231/5 229/5 230/5 +f 231/5 230/5 232/5 +f 233/5 234/5 235/5 +f 233/5 235/5 236/5 +f 237/5 233/5 236/5 +f 238/5 237/5 236/5 +f 238/5 236/5 239/5 +f 240/5 238/5 239/5 +f 240/5 239/5 241/5 +f 242/5 240/5 241/5 +f 242/5 241/5 243/5 +f 244/5 242/5 243/5 +f 244/5 243/5 245/5 +f 246/5 244/5 245/5 +f 246/5 245/5 247/5 +f 248/5 246/5 247/5 +f 248/5 247/5 249/5 +f 249/5 250/5 248/5 +f 248/5 250/5 251/5 +f 248/5 251/5 252/5 +f 248/5 252/5 253/5 +f 253/5 252/5 254/5 +f 253/5 254/5 255/5 +f 255/5 256/5 253/5 +f 253/5 256/5 246/5 +f 255/5 257/5 256/5 +f 257/5 258/5 256/5 +f 256/5 258/5 244/5 +f 257/5 259/5 258/5 +f 259/5 260/5 258/5 +f 258/5 260/5 242/5 +f 259/5 261/5 260/5 +f 261/5 262/5 260/5 +f 260/5 262/5 240/5 +f 261/5 263/5 262/5 +f 263/5 264/5 262/5 +f 262/5 264/5 238/5 +f 263/5 265/5 264/5 +f 265/5 266/5 264/5 +f 264/5 266/5 237/5 +f 267/5 237/5 266/5 +f 268/5 267/5 266/5 +f 268/5 266/5 269/5 +f 270/5 268/5 269/5 +f 270/5 269/5 271/5 +f 272/5 270/5 271/5 +f 271/5 273/5 272/5 +f 273/5 274/5 272/5 +f 274/5 275/5 272/5 +f 275/5 276/5 272/5 +f 275/5 277/5 276/5 +f 277/5 278/5 276/5 +f 276/5 278/5 270/5 +f 277/5 279/5 278/5 +f 279/5 280/5 278/5 +f 278/5 280/5 268/5 +f 279/5 281/5 280/5 +f 280/5 281/5 267/5 +f 281/5 233/5 267/5 +f 281/5 282/5 233/5 +f 233/5 282/5 234/5 +f 282/5 283/5 284/5 +f 284/5 285/5 282/5 +f 286/5 282/5 285/5 +f 285/15 287/15 286/15 +f 286/15 287/15 228/15 +f 288/15 287/15 285/15 +f 289/15 288/15 285/15 +f 289/15 290/15 288/15 +f 287/15 288/15 291/15 +f 287/15 291/15 133/15 +f 288/15 290/15 291/15 +f 292/15 291/15 290/15 +f 290/15 293/15 292/15 +f 135/15 294/15 295/18 +f 135/15 292/15 294/15 +f 294/15 296/15 295/18 +f 295/18 296/15 297/15 +f 295/6 297/6 139/6 +f 139/6 297/6 298/6 +f 298/6 299/6 140/6 +f 300/16 299/6 301/16 +f 301/16 302/16 303/16 +f 301/16 303/16 304/16 +f 305/16 301/16 304/16 +f 305/16 304/16 306/16 +f 307/16 305/16 306/16 +f 307/16 306/16 308/16 +f 307/16 308/16 309/16 +f 307/16 309/16 310/16 +f 311/16 307/16 310/16 +f 311/16 310/16 312/16 +f 311/16 312/16 313/16 +f 314/16 311/16 313/16 +f 315/16 314/16 313/16 +f 316/11 315/16 313/16 +f 317/16 316/11 313/16 +f 317/16 318/16 319/16 +f 319/16 320/16 321/16 +f 319/16 321/16 316/11 +f 322/11 316/11 323/11 +f 322/11 323/11 324/16 +f 325/5 322/5 324/5 +f 325/5 324/5 326/5 +f 327/17 325/5 328/5 +f 329/17 327/17 328/17 +f 330/20 329/20 331/20 +f 332/20 330/20 331/20 +f 333/21 334/20 332/20 +f 333/21 332/20 335/21 +f 336/21 333/21 335/21 +f 335/21 337/21 336/21 +f 337/21 338/21 336/21 +f 339/21 336/21 338/21 +f 339/21 340/21 317/21 +f 340/16 341/16 317/16 +f 342/16 317/16 341/16 +f 343/4 342/4 341/4 +f 343/4 341/4 344/4 +f 345/4 343/4 344/4 +f 345/4 344/4 346/4 +f 347/4 345/4 346/4 +f 347/4 346/4 348/4 +f 348/4 349/4 347/4 +f 347/4 349/4 350/4 +f 350/4 351/4 352/4 +f 317/16 352/16 351/16 +f 317/16 351/16 318/16 +f 351/16 353/16 318/16 +f 353/16 354/16 318/16 +f 355/5 318/5 354/5 +f 354/5 356/5 355/5 +f 356/5 357/5 358/5 +f 356/5 358/5 359/5 +f 359/5 355/5 356/5 +f 360/5 355/5 359/5 +f 360/5 359/5 361/5 +f 362/5 360/5 361/5 +f 362/5 361/5 363/5 +f 363/5 364/4 362/5 +f 362/5 364/4 319/5 +f 365/6 366/16 367/6 +f 365/6 367/6 368/6 +f 368/6 369/6 365/6 +f 365/6 369/6 370/6 +f 365/6 370/6 320/16 +f 369/11 371/11 370/11 +f 370/11 371/11 372/11 +f 370/11 372/11 320/16 +f 371/11 323/11 372/11 +f 369/11 373/16 371/11 +f 373/16 323/11 371/11 +f 373/16 374/16 323/11 +f 374/16 375/16 326/16 +f 326/16 375/16 376/16 +f 326/16 376/16 377/16 +f 377/16 376/16 378/6 +f 377/6 378/6 379/6 +f 377/5 379/5 325/5 +f 325/5 379/5 163/5 +f 380/6 325/6 163/6 +f 380/6 163/6 381/6 +f 380/4 381/4 382/4 +f 380/4 382/4 383/17 +f 380/6 383/6 384/6 +f 325/6 380/6 384/6 +f 385/6 384/6 383/6 +f 383/6 386/6 385/6 +f 387/4 385/17 388/4 +f 388/4 389/17 387/4 +f 387/4 389/17 390/17 +f 391/17 390/17 389/17 +f 389/17 392/17 391/17 +f 393/17 391/17 392/17 +f 393/9 392/9 394/9 +f 394/9 395/9 393/9 +f 393/9 395/9 396/5 +f 396/5 397/5 393/9 +f 398/4 397/5 396/5 +f 398/4 396/5 399/17 +f 400/17 398/4 399/17 +f 400/17 399/17 401/17 +f 401/17 402/17 400/17 +f 400/6 402/16 403/16 +f 403/16 404/16 400/16 +f 403/16 405/16 404/16 +f 406/5 407/5 404/5 +f 407/5 398/4 404/5 +f 408/9 397/5 409/9 +f 408/9 409/9 410/9 +f 411/17 408/17 410/17 +f 411/17 410/17 412/17 +f 413/17 411/17 412/17 +f 413/11 412/11 414/6 +f 415/6 413/11 414/6 +f 314/11 415/6 416/6 +f 417/11 314/11 416/6 +f 307/16 417/11 418/16 +f 305/16 418/16 419/16 +f 420/16 419/16 418/16 +f 420/5 418/5 406/5 +f 406/5 418/5 421/5 +f 406/5 421/5 422/5 +f 422/5 421/5 423/5 +f 422/5 423/5 424/5 +f 424/5 423/5 425/5 +f 424/5 425/5 409/9 +f 426/5 425/5 423/5 +f 426/6 423/6 427/6 +f 426/6 427/6 414/6 +f 425/5 426/5 410/9 +f 427/6 423/6 421/6 +f 427/6 421/6 418/16 +f 420/16 405/16 419/16 +f 419/16 405/16 428/16 +f 419/16 428/16 301/16 +f 301/16 428/16 300/16 +f 429/16 300/16 428/16 +f 429/16 430/16 300/16 +f 299/6 300/16 430/16 +f 299/6 430/16 144/16 +f 143/6 299/6 144/16 +f 144/16 430/16 150/16 +f 145/16 144/16 150/16 +f 145/16 150/16 149/16 +f 429/16 150/16 430/16 +f 151/16 429/16 153/16 +f 153/16 429/16 402/16 +f 403/16 402/16 429/16 +f 403/16 429/16 428/16 +f 427/6 418/16 417/11 +f 415/6 427/6 417/11 +f 417/11 416/6 415/6 +f 414/6 427/6 415/6 +f 415/6 322/11 413/11 +f 413/17 322/17 327/17 +f 327/17 411/17 413/17 +f 431/17 411/17 330/17 +f 432/6 431/6 330/8 +f 328/20 432/20 433/20 +f 433/20 432/20 332/20 +f 325/6 431/6 432/6 +f 415/6 315/11 322/11 +f 426/6 414/6 412/11 +f 410/9 426/5 412/9 +f 434/17 408/17 411/17 +f 390/17 434/9 411/17 +f 435/17 390/17 411/17 +f 431/17 435/17 411/17 +f 431/6 384/6 435/6 +f 384/6 385/6 390/6 +f 387/4 390/17 385/17 +f 390/6 435/6 384/6 +f 410/9 409/9 425/5 +f 434/9 397/5 408/9 +f 397/5 434/9 391/17 +f 397/5 424/5 409/9 +f 407/5 424/5 397/5 +f 407/5 422/5 424/5 +f 398/4 407/5 397/5 +f 422/5 407/5 406/5 +f 406/5 404/5 420/5 +f 404/5 405/5 420/5 +f 428/16 405/16 403/16 +f 154/17 153/17 402/17 +f 154/17 395/9 436/9 +f 394/9 436/9 395/9 +f 437/17 401/17 399/17 +f 437/17 399/17 396/5 +f 154/17 401/17 437/17 +f 438/9 436/9 394/9 +f 160/9 436/9 438/9 +f 395/9 154/17 437/17 +f 401/17 154/17 402/17 +f 400/17 404/5 398/4 +f 437/17 396/5 395/9 +f 394/9 392/9 438/9 +f 439/9 438/9 392/9 +f 438/9 439/9 160/9 +f 439/9 440/4 161/4 +f 161/4 440/4 162/4 +f 162/4 440/4 441/4 +f 381/4 162/4 441/4 +f 381/4 441/4 382/4 +f 442/17 382/4 443/5 +f 444/5 442/5 443/5 +f 445/5 444/5 443/5 +f 445/8 443/8 446/8 +f 446/8 447/8 445/8 +f 448/22 445/5 447/4 +f 448/8 447/8 449/8 +f 449/8 450/8 448/8 +f 450/8 451/8 448/8 +f 452/9 448/8 451/8 +f 451/8 453/8 452/9 +f 454/23 455/9 452/9 +f 456/19 452/9 455/9 +f 452/9 456/19 457/5 +f 458/9 459/9 448/22 +f 460/24 461/25 462/24 +f 460/6 462/6 463/6 +f 460/22 463/4 448/22 +f 389/17 463/4 440/4 +f 440/4 439/9 389/17 +f 463/6 462/6 441/6 +f 462/17 464/4 441/4 +f 465/4 464/4 462/4 +f 462/4 466/4 465/4 +f 467/6 464/8 465/6 +f 467/4 465/4 468/4 +f 464/4 443/5 441/4 +f 464/8 467/6 446/8 +f 467/6 469/6 446/8 +f 470/6 446/8 469/6 +f 471/6 470/6 469/6 +f 469/6 472/6 471/6 +f 473/6 471/6 472/6 +f 474/6 473/6 472/6 +f 475/6 474/6 472/6 +f 475/6 472/6 476/6 +f 476/6 477/6 475/6 +f 478/6 475/6 477/6 +f 479/6 478/6 477/6 +f 480/6 481/6 477/6 +f 482/19 480/4 483/4 +f 483/4 484/4 482/19 +f 482/19 484/4 485/19 +f 482/19 485/19 486/19 +f 487/17 488/6 489/17 +f 489/17 490/19 491/19 +f 487/17 491/19 492/19 +f 493/17 487/17 492/19 +f 494/17 495/17 496/17 +f 493/17 496/17 495/17 +f 493/17 495/17 497/17 +f 493/17 497/17 487/17 +f 498/9 479/6 487/17 +f 499/6 500/6 479/6 +f 479/6 500/6 501/6 +f 479/6 501/6 502/6 +f 479/6 502/6 478/6 +f 475/5 478/17 503/5 +f 474/5 475/5 503/5 +f 503/5 504/5 474/5 +f 474/6 505/6 506/6 +f 471/6 473/6 507/16 +f 507/16 508/16 471/6 +f 470/6 471/6 509/6 +f 447/8 470/6 510/6 +f 511/8 447/8 510/6 +f 511/8 510/6 512/6 +f 450/5 449/5 513/5 +f 513/5 514/5 450/5 +f 515/5 516/9 517/9 +f 518/4 516/9 515/5 +f 518/4 515/5 519/26 +f 519/26 520/4 518/4 +f 516/9 456/19 455/9 +f 457/5 521/5 458/9 +f 457/5 458/9 452/9 +f 458/9 522/5 523/9 +f 523/9 524/4 459/9 +f 459/9 524/4 525/9 +f 525/16 526/16 459/16 +f 527/16 528/16 526/16 +f 529/16 526/16 528/16 +f 448/22 459/9 526/9 +f 448/22 526/9 530/9 +f 448/22 531/12 532/12 +f 461/9 533/9 534/9 +f 461/9 534/9 535/9 +f 466/25 535/25 536/25 +f 536/4 465/4 466/4 +f 468/6 534/6 467/6 +f 467/6 534/6 537/6 +f 469/6 467/6 537/6 +f 538/6 539/6 537/6 +f 476/6 472/6 539/6 +f 477/6 476/6 540/6 +f 477/4 540/4 541/4 +f 477/6 541/6 480/6 +f 542/4 480/4 541/4 +f 483/4 542/4 543/17 +f 544/17 483/4 543/17 +f 544/17 545/17 546/17 +f 544/17 546/17 547/17 +f 548/17 549/17 547/17 +f 550/4 547/17 549/17 +f 549/17 485/19 550/4 +f 549/6 551/6 485/6 +f 485/6 551/6 552/6 +f 553/19 552/19 554/19 +f 553/19 554/19 555/19 +f 553/6 556/6 486/6 +f 486/6 556/6 557/6 +f 486/6 557/6 482/6 +f 488/6 557/6 556/6 +f 488/6 556/6 558/6 +f 558/6 490/19 489/17 +f 559/19 490/19 560/6 +f 561/2 559/19 562/19 +f 561/2 563/2 564/19 +f 563/2 565/19 564/19 +f 566/9 567/9 568/9 +f 566/9 569/19 567/9 +f 570/9 567/9 569/19 +f 570/9 571/4 567/9 +f 568/9 567/9 572/19 +f 568/9 572/19 559/19 +f 564/19 568/9 559/19 +f 561/2 564/19 559/19 +f 559/19 573/19 490/19 +f 574/19 573/19 559/19 +f 559/19 572/19 574/19 +f 574/19 572/19 575/19 +f 574/19 576/19 573/19 +f 573/19 576/19 577/19 +f 573/19 577/19 578/19 +f 579/19 580/17 581/17 +f 579/19 581/17 582/19 +f 583/17 582/19 581/17 +f 583/17 581/17 584/17 +f 585/17 583/17 584/17 +f 585/17 586/17 587/17 +f 588/4 583/17 587/17 +f 583/17 588/4 582/19 +f 582/19 588/4 579/19 +f 588/4 589/17 492/19 +f 587/17 589/17 588/4 +f 587/17 590/17 589/17 +f 590/17 591/17 589/17 +f 589/17 591/17 493/17 +f 496/17 591/17 592/17 +f 496/17 592/17 593/17 +f 594/17 496/17 593/17 +f 595/17 594/17 593/17 +f 596/17 595/17 593/17 +f 596/17 593/17 592/17 +f 592/17 597/17 596/17 +f 598/6 596/6 597/6 +f 598/6 597/6 599/6 +f 600/6 598/6 599/6 +f 599/6 601/6 600/6 +f 602/6 603/6 604/6 +f 605/6 604/6 603/6 +f 605/6 603/6 606/6 +f 603/6 607/6 606/6 +f 608/6 607/6 609/6 +f 610/6 609/6 611/6 +f 610/6 611/6 612/6 +f 613/6 610/6 612/6 +f 613/6 612/6 614/6 +f 614/19 615/19 616/17 +f 615/17 551/17 616/17 +f 616/17 551/17 548/17 +f 616/17 548/17 546/17 +f 546/19 617/5 616/17 +f 616/17 617/5 614/19 +f 617/5 618/19 614/19 +f 618/19 619/19 614/19 +f 619/19 618/19 620/19 +f 620/19 621/19 619/19 +f 621/6 622/6 619/6 +f 619/6 622/6 613/6 +f 621/25 623/25 622/25 +f 623/6 624/6 622/6 +f 622/6 624/6 610/6 +f 623/25 625/25 624/25 +f 624/6 625/6 609/6 +f 625/6 608/6 609/6 +f 626/25 625/25 623/25 +f 627/25 626/25 623/25 +f 628/25 626/25 627/25 +f 627/25 629/25 628/25 +f 628/25 629/25 630/25 +f 628/25 630/25 631/25 +f 461/25 628/25 631/25 +f 631/9 632/9 461/9 +f 534/6 533/6 537/6 +f 533/6 632/6 537/6 +f 538/6 633/6 539/6 +f 633/6 634/6 539/6 +f 539/6 634/6 635/6 +f 635/6 636/6 476/6 +f 636/6 637/6 476/6 +f 540/4 637/5 638/4 +f 639/4 617/5 543/17 +f 638/4 618/19 639/4 +f 639/4 542/4 638/4 +f 637/5 620/5 638/4 +f 637/5 640/5 620/5 +f 637/5 629/5 640/5 +f 637/5 641/5 629/5 +f 630/25 629/25 641/25 +f 630/6 641/6 634/6 +f 630/6 634/6 633/6 +f 634/6 641/6 635/6 +f 641/5 637/5 636/5 +f 641/6 636/6 635/6 +f 476/6 539/6 635/6 +f 631/6 633/6 538/6 +f 538/12 632/9 631/9 +f 600/6 625/25 626/25 +f 600/6 626/25 598/6 +f 642/6 598/6 643/11 +f 643/9 644/17 642/9 +f 642/9 644/17 645/9 +f 642/9 645/9 646/9 +f 646/6 598/6 642/6 +f 646/9 645/9 647/17 +f 596/6 646/6 595/6 +f 594/6 595/6 646/6 +f 647/6 594/6 646/6 +f 594/17 647/17 494/17 +f 594/17 494/17 496/17 +f 645/9 644/17 494/17 +f 648/17 495/17 494/17 +f 494/17 649/17 648/17 +f 649/17 650/17 648/17 +f 648/17 650/17 651/9 +f 652/4 648/17 651/9 +f 652/4 651/9 653/5 +f 530/9 652/4 653/5 +f 653/5 654/5 530/9 +f 531/6 530/6 654/6 +f 531/6 654/6 655/6 +f 656/4 655/4 657/4 +f 658/4 656/4 657/4 +f 657/4 659/4 658/4 +f 659/19 660/19 658/4 +f 661/4 658/4 660/19 +f 660/19 662/4 661/4 +f 663/4 662/4 664/4 +f 663/4 665/22 666/22 +f 658/4 663/4 666/4 +f 666/22 665/22 667/22 +f 658/4 666/22 667/22 +f 658/4 667/22 668/27 +f 658/4 668/27 656/4 +f 669/5 532/12 656/4 +f 669/4 656/4 670/4 +f 670/4 671/17 669/17 +f 671/6 672/6 669/11 +f 673/6 669/11 672/6 +f 672/6 674/6 673/6 +f 461/25 532/16 673/6 +f 461/25 643/11 598/6 +f 598/6 628/25 461/25 +f 461/25 673/6 643/11 +f 673/6 675/6 643/11 +f 675/9 676/17 649/17 +f 675/9 494/17 644/17 +f 675/9 649/17 494/17 +f 676/17 674/17 649/17 +f 674/17 677/17 649/17 +f 649/17 677/17 650/17 +f 677/6 678/6 650/6 +f 651/9 656/4 653/5 +f 679/4 653/5 656/4 +f 679/4 656/4 668/27 +f 679/4 668/27 680/4 +f 681/4 679/4 680/4 +f 681/4 680/4 682/22 +f 683/19 681/4 684/4 +f 684/4 685/19 683/19 +f 686/19 683/19 685/19 +f 685/19 687/19 686/19 +f 688/6 686/6 687/6 +f 689/6 686/6 688/6 +f 690/17 689/17 688/17 +f 690/5 688/5 685/5 +f 689/17 690/17 684/17 +f 689/19 684/19 691/19 +f 686/6 691/6 692/6 +f 686/6 692/6 654/6 +f 692/6 655/6 654/6 +f 693/17 655/4 692/4 +f 693/17 657/4 655/4 +f 694/9 657/4 693/17 +f 693/17 695/17 694/9 +f 694/9 695/17 696/9 +f 694/9 696/9 697/17 +f 697/17 698/17 694/9 +f 699/9 694/9 698/17 +f 698/17 700/19 699/19 +f 701/19 699/19 700/19 +f 700/19 702/19 701/19 +f 662/4 701/19 702/19 +f 702/19 703/19 662/4 +f 704/9 662/4 703/19 +f 705/17 704/9 703/17 +f 703/17 706/19 705/17 +f 705/17 706/19 707/17 +f 708/9 709/9 710/9 +f 704/9 708/9 710/9 +f 662/4 704/9 664/4 +f 711/4 664/4 712/27 +f 713/28 665/22 714/22 +f 714/22 715/22 713/28 +f 716/29 717/7 718/29 +f 716/29 718/29 719/29 +f 720/29 721/29 722/29 +f 722/29 721/29 723/30 +f 722/29 723/30 724/29 +f 724/29 719/29 722/29 +f 719/29 724/29 716/29 +f 716/29 724/29 725/29 +f 726/6 727/6 725/29 +f 725/29 727/6 717/7 +f 727/6 713/6 728/6 +f 727/6 729/6 713/6 +f 713/6 729/6 730/6 +f 730/28 731/22 713/28 +f 731/22 680/4 713/28 +f 713/28 680/4 668/27 +f 713/28 668/27 667/22 +f 730/28 732/22 731/22 +f 731/5 732/5 733/22 +f 733/22 680/4 731/22 +f 733/22 732/5 734/5 +f 733/22 734/5 735/5 +f 736/5 733/22 735/5 +f 737/16 736/16 735/16 +f 738/6 739/6 737/16 +f 737/16 739/6 740/11 +f 737/16 740/11 741/16 +f 742/16 736/16 741/16 +f 743/16 742/16 744/16 +f 745/5 743/5 744/5 +f 745/5 744/5 746/5 +f 746/5 747/5 745/5 +f 745/5 747/5 748/5 +f 748/5 733/22 745/5 +f 748/5 749/5 733/22 +f 733/31 749/31 750/31 +f 750/31 751/31 733/31 +f 747/5 751/4 750/9 +f 752/32 747/32 753/32 +f 752/32 753/32 754/32 +f 754/32 755/31 752/32 +f 752/32 755/31 749/31 +f 752/32 749/31 748/32 +f 756/31 749/31 755/31 +f 750/31 749/31 756/31 +f 756/31 753/32 750/31 +f 757/31 753/32 756/31 +f 757/31 756/31 755/31 +f 757/31 755/31 758/29 +f 758/29 759/29 757/31 +f 759/29 760/29 757/31 +f 761/29 757/31 760/29 +f 762/5 763/5 764/5 +f 764/29 763/29 760/29 +f 760/29 763/29 761/29 +f 763/29 765/29 761/29 +f 766/29 761/29 765/29 +f 766/4 767/4 768/4 +f 769/29 761/29 768/29 +f 770/29 761/29 769/29 +f 769/29 771/29 770/29 +f 771/29 772/29 773/29 +f 771/29 773/29 774/29 +f 775/29 771/29 774/29 +f 775/29 774/29 776/29 +f 775/29 776/29 777/29 +f 778/29 775/29 779/29 +f 779/29 780/29 778/29 +f 778/29 780/29 781/29 +f 778/29 781/29 782/33 +f 782/33 770/29 778/29 +f 770/29 771/29 783/29 +f 775/29 783/29 771/29 +f 778/29 783/29 775/29 +f 770/29 783/29 778/29 +f 770/29 784/32 761/29 +f 754/32 753/32 785/32 +f 754/32 786/32 787/32 +f 788/32 754/32 787/32 +f 788/32 758/29 754/32 +f 789/24 758/25 790/24 +f 790/9 791/19 789/9 +f 789/9 791/19 792/19 +f 793/19 789/9 792/19 +f 794/19 793/19 792/19 +f 794/19 795/27 796/27 +f 794/19 796/27 797/27 +f 797/27 793/19 794/19 +f 797/27 798/27 793/19 +f 793/19 798/27 799/27 +f 799/24 798/24 800/24 +f 799/24 800/24 801/24 +f 789/24 799/24 801/24 +f 789/24 801/24 758/25 +f 801/24 802/24 758/25 +f 802/24 803/24 758/25 +f 803/24 804/24 758/25 +f 804/24 805/24 758/25 +f 805/24 806/25 758/25 +f 806/25 807/25 758/25 +f 807/25 808/25 758/25 +f 808/25 809/25 758/25 +f 809/25 810/25 758/25 +f 811/25 758/25 810/25 +f 810/25 812/25 811/25 +f 813/25 811/25 812/25 +f 812/25 814/25 813/25 +f 815/25 813/25 814/25 +f 814/25 816/25 815/25 +f 817/25 815/25 816/25 +f 816/25 818/25 817/25 +f 819/25 817/25 818/25 +f 820/25 819/25 818/25 +f 818/25 821/25 820/25 +f 821/25 822/25 820/25 +f 822/25 823/25 820/25 +f 823/25 824/25 820/25 +f 824/25 825/25 820/25 +f 824/25 826/25 825/25 +f 825/17 827/5 828/17 +f 829/5 828/5 827/5 +f 827/5 830/5 829/5 +f 831/25 829/25 832/25 +f 832/25 833/25 831/25 +f 831/25 833/25 834/25 +f 835/9 836/9 837/9 +f 837/16 838/16 835/16 +f 839/16 835/16 838/16 +f 840/16 839/16 838/16 +f 841/16 840/16 842/16 +f 841/16 842/16 843/16 +f 839/16 841/16 834/16 +f 839/16 834/16 835/16 +f 841/16 844/16 834/16 +f 828/25 844/25 845/25 +f 845/25 820/25 828/25 +f 846/25 820/25 845/25 +f 847/25 846/25 848/25 +f 849/4 817/4 847/4 +f 850/16 849/6 842/16 +f 842/16 849/6 851/16 +f 849/6 848/16 851/16 +f 851/16 848/16 843/16 +f 843/16 848/16 845/16 +f 845/16 844/16 843/16 +f 845/25 848/25 846/25 +f 852/16 849/6 850/6 +f 853/16 852/16 850/16 +f 853/16 850/16 840/16 +f 854/16 853/16 840/16 +f 855/16 854/16 856/16 +f 857/16 858/16 855/16 +f 855/16 858/16 854/16 +f 859/16 854/16 858/16 +f 860/6 861/16 852/16 +f 861/16 860/16 862/16 +f 862/16 863/16 861/16 +f 861/4 863/4 815/4 +f 864/16 863/16 862/16 +f 865/16 864/16 862/16 +f 865/16 866/16 867/16 +f 867/16 866/16 868/16 +f 867/16 868/16 869/6 +f 867/16 870/11 871/16 +f 865/16 871/16 872/29 +f 872/29 871/16 873/29 +f 872/29 874/29 864/29 +f 874/29 875/29 864/29 +f 875/29 876/29 864/29 +f 813/29 876/29 875/29 +f 813/4 863/4 876/4 +f 874/29 877/29 875/29 +f 875/29 877/29 811/29 +f 811/29 877/29 878/29 +f 878/29 877/29 874/29 +f 878/29 874/29 879/29 +f 758/29 878/29 879/29 +f 880/29 879/29 881/29 +f 881/29 873/29 880/29 +f 873/29 764/29 880/29 +f 871/16 882/29 873/29 +f 882/29 764/29 873/29 +f 882/5 762/5 764/5 +f 883/5 884/19 882/5 +f 884/19 885/5 882/5 +f 882/5 885/5 886/5 +f 882/5 886/5 762/5 +f 762/5 886/5 887/5 +f 888/5 765/4 763/5 +f 888/5 763/5 887/5 +f 889/6 888/6 887/6 +f 890/6 889/6 891/6 +f 891/6 892/6 893/6 +f 893/19 892/19 894/19 +f 894/19 895/19 893/19 +f 893/6 895/6 896/6 +f 893/6 896/6 890/6 +f 890/6 896/6 897/6 +f 890/6 897/6 889/6 +f 897/6 888/6 889/6 +f 898/6 888/6 897/6 +f 898/6 899/9 888/6 +f 888/6 899/9 900/6 +f 901/6 902/6 903/6 +f 901/19 903/4 904/19 +f 904/19 905/19 901/19 +f 901/6 905/6 906/6 +f 906/6 907/6 901/6 +f 907/6 906/6 908/6 +f 907/6 908/6 909/6 +f 907/6 909/6 902/6 +f 909/6 908/6 900/6 +f 766/4 900/4 908/4 +f 766/4 908/4 767/4 +f 765/4 900/4 766/4 +f 767/4 908/4 906/4 +f 767/4 906/4 910/4 +f 911/4 912/5 913/4 +f 912/16 914/16 913/16 +f 913/16 915/29 916/29 +f 915/29 917/29 916/29 +f 916/29 917/29 918/29 +f 916/29 918/29 769/29 +f 918/29 772/29 769/29 +f 773/29 772/29 919/29 +f 920/29 921/29 922/29 +f 923/5 920/5 922/5 +f 923/29 922/29 924/29 +f 925/5 926/5 927/5 +f 927/5 920/5 925/5 +f 920/5 776/5 921/5 +f 927/5 928/5 929/5 +f 930/29 777/29 929/29 +f 930/29 931/29 777/29 +f 775/29 777/29 931/29 +f 932/33 933/29 931/29 +f 931/29 934/29 932/33 +f 935/33 932/33 934/29 +f 934/29 936/33 935/33 +f 937/33 935/33 936/33 +f 936/33 938/33 937/33 +f 939/33 937/33 938/33 +f 940/33 939/33 938/33 +f 940/33 938/33 941/33 +f 942/17 940/17 941/17 +f 942/17 941/17 943/17 +f 944/17 942/17 943/17 +f 945/17 944/17 946/17 +f 945/17 946/17 947/17 +f 945/17 947/17 948/17 +f 945/17 948/17 949/17 +f 950/17 945/17 949/17 +f 942/17 950/17 951/17 +f 952/17 951/17 950/17 +f 952/17 953/17 954/17 +f 954/17 955/17 952/17 +f 954/17 956/17 955/17 +f 955/17 956/17 957/17 +f 955/17 957/17 958/17 +f 955/17 958/17 951/17 +f 951/17 958/17 940/17 +f 957/17 959/9 958/17 +f 959/33 960/33 958/33 +f 958/33 960/33 939/33 +f 959/33 961/33 960/33 +f 960/33 962/33 939/33 +f 960/33 963/33 962/33 +f 932/33 964/29 933/29 +f 964/29 965/29 933/29 +f 933/29 965/29 779/29 +f 933/29 779/29 931/29 +f 781/29 780/29 966/6 +f 967/6 781/29 966/6 +f 967/6 968/6 969/6 +f 969/5 970/5 971/5 +f 971/6 972/33 969/6 +f 969/6 972/33 967/6 +f 973/33 974/33 975/33 +f 975/33 976/33 973/33 +f 976/33 782/33 973/33 +f 782/33 977/33 978/34 +f 978/34 977/33 979/34 +f 978/34 979/34 980/35 +f 981/32 982/32 983/32 +f 981/32 983/32 784/32 +f 784/32 983/32 984/32 +f 784/32 984/32 786/32 +f 984/32 985/32 786/32 +f 986/5 985/5 987/5 +f 988/16 986/16 987/16 +f 987/16 989/16 988/16 +f 989/4 990/4 988/4 +f 988/4 990/4 991/4 +f 988/4 991/4 992/4 +f 992/4 991/4 993/4 +f 992/4 993/4 994/4 +f 995/16 992/16 994/16 +f 994/16 996/16 995/16 +f 996/17 997/17 995/17 +f 995/5 997/5 998/5 +f 995/5 998/5 986/5 +f 985/32 998/32 787/32 +f 998/32 997/32 788/32 +f 788/32 997/32 999/32 +f 788/32 999/32 1000/32 +f 1000/32 999/32 1001/32 +f 1001/32 758/25 1000/32 +f 1001/32 1002/32 758/25 +f 1003/32 758/25 1002/32 +f 1004/32 1003/32 1002/32 +f 1004/32 1005/32 313/20 +f 1005/32 1006/32 1007/20 +f 1008/21 1007/20 1006/32 +f 1008/21 1006/32 1009/32 +f 1008/21 1010/32 981/32 +f 1010/32 1011/32 981/32 +f 1012/5 1011/5 1013/5 +f 1013/16 1014/16 1012/16 +f 1015/16 1012/16 1014/16 +f 1014/5 1016/5 1015/5 +f 1015/5 1016/5 1017/5 +f 1015/5 1017/5 989/5 +f 989/16 1018/16 1015/16 +f 1016/16 1019/16 1017/16 +f 1020/16 1017/16 1019/16 +f 1021/16 1022/16 1023/16 +f 1022/16 1024/16 1023/16 +f 1023/16 1024/16 1025/16 +f 991/16 1023/16 1025/16 +f 1026/16 1025/16 1027/16 +f 1028/16 1026/16 1027/16 +f 1028/4 1027/4 1029/4 +f 1030/16 1026/16 1031/16 +f 1026/16 1030/16 993/16 +f 993/16 1025/16 1026/16 +f 1032/16 993/16 1030/16 +f 1030/16 1033/16 1032/16 +f 1032/16 1033/16 1034/16 +f 1035/6 1032/6 1034/6 +f 1035/6 1034/6 1036/6 +f 1035/16 1036/16 1037/16 +f 1037/16 996/16 1035/16 +f 1037/17 999/17 996/17 +f 1037/17 1038/17 999/17 +f 1001/32 1038/32 1039/32 +f 1001/32 1039/32 1002/32 +f 1040/17 1039/17 1041/17 +f 1041/16 1042/16 1040/16 +f 1043/16 1040/16 1042/16 +f 1044/6 1043/6 1042/6 +f 1042/6 1045/6 1044/6 +f 1045/16 1046/16 1044/16 +f 1047/16 1044/16 1046/16 +f 1047/16 1048/16 1049/16 +f 1048/16 1050/16 1049/16 +f 1049/16 1050/16 1051/16 +f 1052/16 1049/16 1051/16 +f 1051/16 1053/16 1052/16 +f 1054/4 1052/4 1053/4 +f 1054/4 1053/4 1055/4 +f 1056/16 1054/16 1055/16 +f 1055/16 1057/16 1056/16 +f 1057/4 1058/4 1056/4 +f 1056/4 1058/4 1059/4 +f 1056/4 1059/4 1060/4 +f 1060/4 1059/4 1061/4 +f 1060/4 1061/4 1040/4 +f 1004/32 1039/32 1061/32 +f 1061/32 1059/32 1005/32 +f 1059/32 1058/32 1006/32 +f 1057/4 1062/5 1058/4 +f 1058/32 1062/32 1009/32 +f 1009/32 1062/32 1010/32 +f 1013/5 1062/5 1057/5 +f 1013/16 1057/16 1063/16 +f 1055/16 1063/16 1057/16 +f 1055/4 1064/4 1063/4 +f 1063/4 1064/4 1065/4 +f 1063/5 1065/5 1014/5 +f 1066/16 1065/16 1064/16 +f 1064/16 1067/16 1066/16 +f 1066/16 1067/16 1068/16 +f 1069/17 1070/17 1071/17 +f 1069/17 1072/17 1073/17 +f 1073/36 1072/36 1074/16 +f 1074/16 1075/16 1073/36 +f 1076/16 1073/36 1075/16 +f 1075/16 1077/16 1076/16 +f 1078/16 1076/16 1077/16 +f 1066/16 1078/16 1077/16 +f 1077/16 1079/16 1066/16 +f 1080/16 1066/16 1079/16 +f 1081/16 1080/16 1079/16 +f 1079/16 1082/16 1081/16 +f 1083/16 1081/16 1082/16 +f 1084/5 1083/17 1082/5 +f 1084/5 1082/5 1085/5 +f 1086/17 1087/17 1088/17 +f 1087/17 1083/17 1088/17 +f 1089/17 1087/17 1090/17 +f 1091/17 1090/17 1092/17 +f 1091/17 1093/17 1089/17 +f 1093/16 1094/16 1087/16 +f 1094/16 1081/16 1087/16 +f 1094/16 1080/16 1081/16 +f 1078/16 1066/16 1068/16 +f 1078/16 1068/16 1076/16 +f 1076/16 1068/16 1070/16 +f 1066/16 1080/16 1065/16 +f 1019/16 1080/16 1094/16 +f 1019/16 1094/16 1095/16 +f 1095/16 1096/16 1019/16 +f 1019/16 1096/16 1020/16 +f 1096/16 1097/16 1020/16 +f 1096/17 1098/17 1097/17 +f 1098/17 1099/4 1097/17 +f 1097/17 1099/4 1022/17 +f 1099/4 1100/4 1022/4 +f 1101/4 1024/4 1100/4 +f 1027/4 1024/4 1101/4 +f 1101/4 1102/4 1029/4 +f 1029/4 1103/4 1104/4 +f 1104/4 1103/4 1105/17 +f 1104/4 1105/17 1106/17 +f 1104/16 1106/16 1031/16 +f 1031/16 1106/16 1107/16 +f 1031/16 1107/16 1030/16 +f 1033/16 1030/16 1108/6 +f 1109/16 1033/16 1108/6 +f 1108/6 1110/6 1109/16 +f 1111/6 1109/16 1110/6 +f 1110/16 1112/16 1111/6 +f 1113/6 1111/6 1112/16 +f 1112/16 1114/6 1113/6 +f 1113/6 1114/6 1115/6 +f 1115/6 1114/6 1116/6 +f 1115/6 1117/6 1111/6 +f 1111/6 1117/6 1118/11 +f 1111/6 1118/11 1109/16 +f 1109/16 1118/11 1119/16 +f 1120/6 1118/11 1121/6 +f 1120/6 1122/6 1123/6 +f 1123/6 1122/6 1124/6 +f 1123/16 1124/16 1125/16 +f 1125/16 1119/16 1123/16 +f 1123/16 1119/16 1118/11 +f 1125/16 1124/16 1046/16 +f 1033/16 1125/16 1045/16 +f 1124/16 1126/16 1046/16 +f 1046/16 1126/16 1047/16 +f 1124/6 1127/6 1126/6 +f 1128/6 1126/6 1127/6 +f 1127/6 1129/6 1128/6 +f 1130/6 1128/6 1129/6 +f 1130/6 1129/6 1131/6 +f 1130/6 1131/6 1132/6 +f 1133/6 1130/6 1132/6 +f 1132/6 1134/6 1133/6 +f 1133/6 1134/6 1135/6 +f 1133/17 1135/17 1136/17 +f 1136/17 1137/17 1133/17 +f 1137/17 1138/17 1128/17 +f 1139/17 1050/17 1138/17 +f 1140/17 1050/17 1139/17 +f 1141/17 1140/17 1139/17 +f 1141/17 1142/17 1071/17 +f 1071/17 1142/17 1143/17 +f 1071/17 1143/17 1069/17 +f 1144/16 1145/16 1146/16 +f 1075/16 1146/16 1147/16 +f 1077/16 1147/16 1148/16 +f 1149/16 1150/16 1151/16 +f 1151/16 1150/16 1152/16 +f 1151/16 1077/16 1148/16 +f 1079/16 1151/16 1152/16 +f 1082/16 1152/16 1150/16 +f 1082/5 1150/5 1153/5 +f 1154/5 1155/5 1156/5 +f 1154/5 1156/5 1157/5 +f 1154/5 1157/5 1158/5 +f 1158/5 1159/5 1154/5 +f 1158/5 1160/5 1159/5 +f 1161/5 1159/5 1160/5 +f 1161/5 1160/5 1162/5 +f 1161/5 1162/5 1163/19 +f 1163/19 1164/17 1165/9 +f 1084/5 1165/9 1088/17 +f 1166/17 1086/17 1165/9 +f 1167/17 1086/17 1166/17 +f 1167/17 1090/17 1086/17 +f 1090/17 1167/17 1168/17 +f 1169/17 1168/17 1167/17 +f 1170/17 1169/17 1167/17 +f 1164/17 1170/17 1167/17 +f 1164/17 1167/17 1166/17 +f 1171/4 1172/4 1173/17 +f 1170/17 1172/4 1174/17 +f 1174/17 1172/4 1175/17 +f 1174/17 1175/17 1176/17 +f 1176/17 1177/17 1174/17 +f 1174/17 1177/17 1092/17 +f 1174/17 1092/17 1169/17 +f 1178/17 1092/17 1177/17 +f 1098/17 1179/17 1180/17 +f 1180/17 1179/17 1181/17 +f 1180/17 1181/17 1099/4 +f 1099/4 1181/17 1182/4 +f 1183/17 1182/4 1181/17 +f 1183/17 1181/17 1184/17 +f 1184/17 1185/17 1183/17 +f 1183/17 1185/17 1186/17 +f 1183/17 1186/17 1187/17 +f 1187/17 1186/17 1188/17 +f 1187/4 1188/4 1189/4 +f 1189/4 1190/4 1187/4 +f 1190/4 1182/4 1187/4 +f 1100/4 1182/4 1190/4 +f 1189/4 1191/4 1190/4 +f 1101/4 1190/4 1191/4 +f 1192/4 1191/4 1189/4 +f 1189/4 1193/4 1192/4 +f 1192/4 1193/4 1194/4 +f 1192/4 1194/4 1195/4 +f 1195/4 1196/4 1192/4 +f 1196/4 1197/4 1192/4 +f 1196/4 1198/4 1197/4 +f 1197/4 1198/4 1102/4 +f 1197/4 1102/4 1191/4 +f 1199/4 1029/4 1198/4 +f 1029/4 1199/4 1103/4 +f 1105/17 1103/4 1199/4 +f 1105/17 1199/4 1200/17 +f 1200/17 1201/9 1105/17 +f 1202/9 1105/17 1201/9 +f 1201/9 1203/9 1202/9 +f 1202/9 1203/9 1204/9 +f 1202/6 1204/6 1205/6 +f 1202/6 1205/6 1106/16 +f 1205/6 1204/6 1206/6 +f 1206/6 1108/6 1205/6 +f 1207/6 1208/6 1209/6 +f 1209/6 1208/6 1210/6 +f 1210/6 1206/6 1209/6 +f 1210/6 1211/6 1206/6 +f 1112/16 1212/6 1213/16 +f 1213/16 795/16 1112/16 +f 1112/16 795/16 1114/6 +f 1114/6 795/16 1214/6 +f 1214/6 1116/6 1114/6 +f 1117/6 1116/6 1215/6 +f 1121/6 1215/6 1216/6 +f 1216/6 1120/6 1121/6 +f 1217/6 1216/6 1215/6 +f 1214/6 1217/6 1215/6 +f 1214/6 1215/6 1116/6 +f 1218/6 1217/6 1214/6 +f 1219/6 1218/6 1214/6 +f 1217/6 1218/6 1220/6 +f 1220/6 1218/6 1221/6 +f 1220/6 1221/6 1222/6 +f 1222/6 1223/6 1220/6 +f 1220/6 1223/6 1216/6 +f 1216/6 1122/6 1120/6 +f 1223/6 1122/6 1216/6 +f 1131/6 1127/6 1122/6 +f 1131/6 1122/6 1223/6 +f 1222/6 1131/6 1223/6 +f 1132/6 1131/6 1222/6 +f 1222/6 1224/6 1132/6 +f 1222/6 1221/6 1224/6 +f 1221/4 1225/4 1224/4 +f 1224/4 1225/4 1226/4 +f 1224/4 1226/4 1134/4 +f 1134/4 1226/4 1227/4 +f 1226/4 1228/4 1227/4 +f 1227/4 1228/4 1229/4 +f 1227/4 1229/4 1230/4 +f 1135/4 1227/4 1230/4 +f 1135/4 1230/4 1231/4 +f 1231/4 1230/4 1232/4 +f 1231/4 1232/4 1233/4 +f 1234/17 1231/17 1233/17 +f 1234/17 1233/17 1235/17 +f 1235/17 1236/17 1234/17 +f 1234/17 1236/17 1237/17 +f 1234/17 1237/17 1136/17 +f 1236/17 1139/17 1237/17 +f 1237/17 1139/17 1138/17 +f 1237/17 1138/17 1137/17 +f 1236/17 1142/17 1139/17 +f 1238/17 1236/17 1235/17 +f 1239/4 1240/17 1241/4 +f 1241/4 1242/4 1239/4 +f 1239/4 1243/4 1240/17 +f 1243/4 1244/17 1238/17 +f 1238/17 1244/17 1143/17 +f 1244/17 1072/17 1143/17 +f 1245/16 1145/16 1144/16 +f 1144/16 1246/16 1245/16 +f 1245/27 1246/27 1247/27 +f 1245/16 308/16 1248/16 +f 1249/16 1145/16 1248/16 +f 1250/16 1251/16 1249/16 +f 1249/16 1252/16 1250/16 +f 1253/24 1254/24 1255/16 +f 1255/16 1256/16 1253/24 +f 1256/16 1257/24 1253/24 +f 1253/24 1257/24 1258/24 +f 1253/24 1258/24 1254/24 +f 1254/24 1250/16 1252/16 +f 1259/16 1250/16 1254/24 +f 1259/16 1254/24 1260/24 +f 1259/16 1260/24 1261/24 +f 1262/16 1261/24 1263/24 +f 1264/16 1262/16 1263/24 +f 1265/1 1263/19 1266/19 +f 1267/19 1268/19 1269/19 +f 1270/19 1267/19 1269/19 +f 1271/19 1270/19 1272/19 +f 1193/19 1271/19 1272/19 +f 1271/19 1193/19 1188/19 +f 1188/19 1273/19 1271/19 +f 1272/19 1270/19 1274/19 +f 1272/19 1274/19 1275/19 +f 1194/19 1272/19 1275/19 +f 1194/19 1275/19 1276/19 +f 1276/19 1195/4 1194/19 +f 1276/19 1277/19 1195/4 +f 1277/19 1278/19 1195/4 +f 1195/4 1278/19 1196/4 +f 1278/19 1279/4 1196/4 +f 1196/4 1279/4 1199/4 +f 1196/4 1199/4 1198/4 +f 1280/9 1200/17 1279/4 +f 1201/9 1280/9 1281/9 +f 1281/9 1203/9 1201/9 +f 1282/9 1207/9 1203/9 +f 1282/9 1208/9 1207/9 +f 1282/9 1283/9 1208/9 +f 1208/9 1284/4 1285/4 +f 1285/4 1284/4 1286/4 +f 1210/6 1285/6 1287/6 +f 1210/6 1287/6 1211/6 +f 1211/27 1287/9 1288/27 +f 1289/27 1288/27 1290/27 +f 1289/27 1290/27 797/27 +f 797/27 796/27 1289/27 +f 1289/27 796/27 795/27 +f 1289/27 795/27 1213/27 +f 798/24 1291/24 1292/24 +f 798/24 1292/24 1293/24 +f 1292/16 1294/16 1293/16 +f 1293/16 1294/16 1295/16 +f 1295/16 800/16 1293/16 +f 1294/16 1296/16 1295/16 +f 1295/16 1296/16 1297/16 +f 1298/16 1297/16 1299/16 +f 1299/16 1300/16 1298/16 +f 1301/16 1298/16 1300/16 +f 1302/9 1301/9 1300/17 +f 1302/9 1300/17 1303/17 +f 1302/9 1303/17 1304/9 +f 746/5 1302/5 1304/5 +f 746/5 1304/5 696/5 +f 1304/9 1305/17 696/9 +f 1296/16 1303/16 1300/16 +f 1297/16 1296/16 1300/16 +f 1296/16 1306/16 1303/16 +f 1307/17 1303/17 1306/17 +f 1307/17 1306/17 1308/17 +f 1308/17 1309/17 1307/17 +f 1310/17 1307/17 1309/17 +f 697/17 1310/17 1309/17 +f 1309/17 1311/17 697/17 +f 697/17 1311/17 698/17 +f 1311/17 1312/17 1313/19 +f 1313/19 1312/17 1314/19 +f 1314/19 1315/19 1313/19 +f 1313/19 700/19 698/17 +f 1315/19 700/19 1313/19 +f 1315/19 702/19 700/19 +f 1316/19 702/19 1315/19 +f 706/19 702/19 1316/19 +f 706/16 1317/16 1318/16 +f 706/16 1318/16 707/16 +f 1319/17 705/17 707/17 +f 1318/16 1319/16 707/16 +f 1318/16 1320/16 1319/16 +f 1321/6 1322/16 1323/6 +f 1324/16 1321/6 1325/16 +f 1324/16 1325/16 1326/16 +f 1327/16 1324/16 1326/16 +f 1327/16 1326/16 1328/16 +f 1329/16 1327/16 1328/16 +f 1330/16 1331/16 1332/16 +f 1328/16 1332/16 1331/16 +f 1330/16 1333/16 1331/16 +f 1333/16 1329/16 1331/16 +f 1329/16 1324/16 1327/16 +f 1334/16 1324/16 1329/16 +f 1334/16 1319/16 1320/16 +f 1335/16 1329/16 1333/16 +f 1336/16 1335/16 1333/16 +f 1336/16 1333/16 1330/16 +f 1337/9 1338/9 1339/9 +f 1340/9 1339/9 1338/9 +f 1340/9 1338/9 1341/9 +f 1342/9 1340/9 1341/9 +f 712/27 1342/9 715/22 +f 711/4 712/27 715/22 +f 711/4 715/22 714/22 +f 664/4 1342/9 712/27 +f 1342/9 1343/22 715/22 +f 1344/12 1345/12 1346/12 +f 1347/12 1344/12 1346/12 +f 1347/12 1346/12 1348/12 +f 1347/25 1348/25 1349/25 +f 1350/25 1347/25 1349/25 +f 1351/25 1350/25 1352/25 +f 1353/25 1354/25 1344/25 +f 1355/12 1344/12 1354/12 +f 1355/12 1354/12 1356/12 +f 1356/12 1357/12 1355/12 +f 1355/12 1357/12 1358/12 +f 1355/12 1358/12 1359/12 +f 1359/12 1358/12 1360/12 +f 1360/12 1361/12 1359/12 +f 1361/12 1345/12 1359/12 +f 713/28 1360/12 1362/12 +f 1362/12 717/28 728/28 +f 1363/25 1364/25 1365/24 +f 1366/25 1363/25 1365/24 +f 1367/25 1366/25 1365/24 +f 1368/29 1369/29 1370/29 +f 1368/17 1370/4 1371/17 +f 1371/17 1372/5 1368/5 +f 1368/5 1372/5 1373/5 +f 1368/29 1373/29 1374/29 +f 1374/29 1373/29 1366/29 +f 1369/29 1374/29 1375/29 +f 1366/25 1367/25 1375/25 +f 1366/25 1375/25 1374/25 +f 1366/29 1376/29 1377/29 +f 1377/29 1363/29 1366/29 +f 1377/29 1378/29 1363/29 +f 1363/29 1378/29 1379/29 +f 1379/25 1380/25 1363/25 +f 1364/29 1380/29 1381/29 +f 1377/29 1364/29 1381/29 +f 1382/29 1377/29 1381/29 +f 1382/29 1381/29 1383/29 +f 1384/16 1382/29 1383/29 +f 1384/16 1383/29 1385/16 +f 1376/29 1386/29 1387/29 +f 1387/29 1364/29 1376/29 +f 722/29 1364/29 1387/29 +f 1387/29 1388/29 722/29 +f 722/29 1388/29 1389/29 +f 1390/29 1391/29 1389/29 +f 1389/29 1391/29 720/29 +f 1392/25 1393/24 1391/25 +f 1391/25 1393/24 721/24 +f 1391/29 721/29 720/29 +f 1393/24 1394/24 721/24 +f 721/24 1394/24 1395/24 +f 1396/30 1395/30 1397/30 +f 1398/24 1396/24 1397/24 +f 1399/24 1398/24 1397/24 +f 1399/24 1397/24 1400/24 +f 1401/24 1399/24 1400/24 +f 1401/24 1400/24 1402/24 +f 1401/24 1402/24 1403/24 +f 1404/24 1401/24 1403/24 +f 1405/24 1404/24 1403/24 +f 802/24 1405/24 1403/24 +f 802/24 1403/24 1406/24 +f 802/24 1406/24 1407/24 +f 803/5 1407/5 1408/5 +f 1408/5 804/5 803/5 +f 1409/5 805/5 1408/5 +f 1410/5 806/5 1409/5 +f 1411/5 1410/5 1412/5 +f 1412/5 1413/5 1411/5 +f 1411/5 1413/5 1414/5 +f 1411/5 807/5 1410/5 +f 1415/5 807/5 1411/5 +f 1415/5 1416/5 807/5 +f 807/25 1416/25 1417/25 +f 807/25 1417/25 1418/25 +f 807/25 1418/25 1419/25 +f 1418/5 1420/5 1419/5 +f 1419/17 1420/5 1421/17 +f 1419/17 1421/17 808/17 +f 808/17 1421/17 1422/17 +f 1421/17 1423/17 1424/17 +f 1424/17 1422/17 1421/17 +f 1425/17 1422/17 1424/17 +f 1425/17 1424/17 1426/17 +f 1427/17 1425/17 1426/17 +f 1427/17 1426/17 1428/17 +f 1428/17 1429/17 1427/17 +f 1430/17 1427/17 1429/17 +f 1430/17 1429/17 812/17 +f 1430/17 810/17 1422/17 +f 1430/17 1422/17 1425/17 +f 1428/17 1431/17 1429/17 +f 814/17 1429/17 1431/17 +f 814/17 1431/17 1432/19 +f 1433/17 1432/19 1431/17 +f 1433/17 1431/17 1428/17 +f 1428/5 1434/5 1433/5 +f 1433/5 1434/5 1435/5 +f 1433/5 1435/5 1436/17 +f 1432/19 1433/17 1436/17 +f 1432/19 1436/17 1437/17 +f 1437/17 816/17 1432/19 +f 1437/17 1438/17 816/17 +f 1438/17 1437/17 1439/17 +f 1440/19 1439/17 1441/17 +f 1441/6 1442/6 1440/6 +f 1443/6 1442/6 1444/6 +f 1445/9 836/9 1446/9 +f 1446/6 1447/6 1445/6 +f 1447/6 1448/6 1443/6 +f 1448/6 1442/6 1443/6 +f 1449/17 1438/17 1440/19 +f 1440/19 1438/17 1439/17 +f 1449/17 816/17 1438/17 +f 821/6 1449/6 1440/6 +f 821/6 1440/6 1442/6 +f 821/6 1442/6 1450/6 +f 821/17 1450/17 1451/17 +f 1451/17 822/17 821/17 +f 823/17 1451/17 1452/17 +f 1452/17 1453/17 823/17 +f 823/17 1453/17 824/17 +f 824/17 1453/17 826/17 +f 1454/17 826/17 1453/17 +f 1455/6 1456/6 1457/6 +f 833/25 1455/25 1458/25 +f 1458/25 1459/25 833/25 +f 833/25 1459/25 836/25 +f 1459/9 1460/9 836/9 +f 836/9 1460/9 1446/9 +f 1448/6 1461/6 1462/6 +f 1448/6 1462/6 1450/6 +f 1463/6 1464/6 1456/6 +f 830/6 1463/6 1456/6 +f 1465/6 1463/6 830/6 +f 1461/6 1465/6 830/6 +f 830/5 827/5 1461/5 +f 827/6 1462/6 1461/6 +f 1453/17 1452/17 1454/17 +f 1462/17 1454/17 1452/17 +f 1466/19 1454/17 1462/17 +f 827/5 1466/19 1462/17 +f 1464/4 1467/4 1457/4 +f 1467/6 1455/6 1457/6 +f 1467/6 1458/6 1455/6 +f 1468/4 1469/4 1470/4 +f 1470/4 1471/4 1468/4 +f 1468/4 1471/4 1467/4 +f 1468/6 1467/6 1460/6 +f 1460/9 1459/9 1468/4 +f 1468/4 1459/9 1469/4 +f 1467/6 1464/6 1460/6 +f 1471/4 1472/4 1458/4 +f 1458/4 1467/4 1471/4 +f 1472/4 1470/4 1458/4 +f 1472/4 1471/4 1470/4 +f 1458/4 1470/4 1469/4 +f 1460/6 1464/6 1463/6 +f 1460/6 1463/6 1465/6 +f 1465/6 1461/6 1448/6 +f 1448/6 1446/6 1465/6 +f 1460/6 1465/6 1446/6 +f 1458/25 1469/25 1459/25 +f 832/25 1455/25 833/25 +f 832/6 1456/6 1455/6 +f 1456/6 1464/6 1457/6 +f 832/6 830/6 1456/6 +f 826/17 1466/19 827/5 +f 826/17 1454/17 1466/19 +f 1451/17 1462/17 1452/17 +f 1462/17 1451/17 1450/17 +f 1450/6 1442/6 1448/6 +f 1446/6 1448/6 1447/6 +f 836/9 1445/9 1473/9 +f 1474/9 1473/9 1445/9 +f 1475/6 1474/6 1445/6 +f 837/9 1473/9 1476/9 +f 838/16 1476/16 855/16 +f 838/16 855/16 856/16 +f 1476/16 1477/16 855/16 +f 857/16 855/16 1477/16 +f 1478/16 857/16 1477/16 +f 1477/9 1479/9 1478/9 +f 1478/9 1479/9 1480/9 +f 1478/16 1480/16 868/16 +f 1478/16 868/16 858/16 +f 868/16 859/16 858/16 +f 868/16 1480/16 1481/16 +f 914/16 868/16 1481/16 +f 869/6 868/16 914/16 +f 1481/16 1480/16 1482/16 +f 1481/16 1482/16 917/16 +f 917/16 1482/16 1483/16 +f 1482/16 1484/16 1483/16 +f 1483/16 1484/16 919/29 +f 1483/29 919/29 772/29 +f 1485/10 1484/9 1479/9 +f 1486/10 1487/10 1488/10 +f 1488/10 1489/10 1486/10 +f 1486/10 1489/10 1490/10 +f 1486/10 1490/5 1491/5 +f 1486/10 1491/5 1492/5 +f 1491/5 1493/5 1494/5 +f 1494/5 1493/5 1495/5 +f 1494/5 1495/5 1496/5 +f 1494/5 1496/5 1497/5 +f 1491/5 1494/5 1492/5 +f 1494/5 1498/5 1492/5 +f 1492/5 1498/5 1499/5 +f 1492/5 1499/5 1487/5 +f 1487/5 1499/5 1485/5 +f 919/9 1484/9 1500/10 +f 923/29 924/29 1501/29 +f 923/5 1501/5 1502/5 +f 1502/5 1503/5 923/5 +f 925/5 923/5 1503/5 +f 925/5 1503/5 1504/5 +f 1504/5 926/5 925/5 +f 1505/5 1506/5 928/5 +f 1506/5 1507/5 928/5 +f 1507/5 929/5 928/5 +f 1507/29 930/29 929/29 +f 1507/29 934/29 930/29 +f 1508/33 934/29 1507/29 +f 1508/33 936/33 934/29 +f 941/33 936/33 1508/33 +f 1506/5 1508/5 1507/5 +f 943/5 1508/5 1506/5 +f 1504/5 1505/5 926/5 +f 1509/5 1505/5 1504/5 +f 1504/5 1510/5 1509/5 +f 1510/5 1511/9 1509/5 +f 1511/9 1512/5 946/5 +f 1513/5 946/5 1512/5 +f 1513/5 1512/5 1514/5 +f 1497/5 1513/5 1514/5 +f 1497/5 1514/5 1498/5 +f 1515/5 1513/5 1497/5 +f 1497/5 1516/5 1515/5 +f 1515/17 1516/17 1517/17 +f 1515/17 1517/17 1518/17 +f 1518/5 1513/5 1515/5 +f 1518/17 947/17 1513/5 +f 1519/17 947/17 1518/17 +f 1518/17 1520/17 1519/17 +f 1519/17 1520/17 1521/17 +f 1519/17 1521/17 1522/17 +f 1522/17 947/17 1519/17 +f 1522/17 1521/17 1523/17 +f 1522/17 1523/17 1524/17 +f 1524/17 948/17 1522/17 +f 1525/17 948/17 1524/17 +f 1526/17 1525/17 1524/17 +f 1524/17 1527/17 1526/17 +f 1526/17 1527/17 1528/17 +f 1526/17 1528/17 1529/17 +f 1529/17 1530/17 1526/17 +f 1530/17 1531/17 953/17 +f 1530/17 953/17 1525/17 +f 1530/17 1532/17 1531/17 +f 1531/17 1532/17 1533/17 +f 954/17 1531/17 1533/17 +f 954/17 1533/17 956/17 +f 1534/9 1535/9 956/17 +f 1534/9 1536/9 1535/9 +f 1537/9 1535/9 1536/9 +f 1537/9 1536/9 1538/9 +f 1539/9 1537/9 1538/9 +f 1540/9 1539/9 1538/9 +f 1538/9 1536/9 1541/9 +f 1538/9 1541/9 1542/9 +f 1538/33 1542/33 975/33 +f 1538/9 975/9 1540/9 +f 1540/33 961/33 1543/33 +f 1543/33 961/33 959/33 +f 959/9 1544/9 1543/9 +f 1544/9 1539/9 1543/9 +f 1539/9 1544/9 1545/9 +f 1545/9 1535/9 1539/9 +f 1539/9 1535/9 1537/9 +f 1545/9 957/17 1535/9 +f 1545/9 1544/9 959/9 +f 1546/33 963/33 1547/33 +f 1547/33 975/33 1546/33 +f 974/33 1546/33 975/33 +f 1546/33 1548/33 963/33 +f 962/33 963/33 1548/33 +f 962/5 1548/5 1549/5 +f 1549/5 1550/5 962/5 +f 962/5 1550/5 1551/5 +f 1552/5 1551/5 1550/5 +f 1552/6 1553/6 935/33 +f 1553/6 1554/6 932/33 +f 1554/6 1555/6 964/6 +f 1556/6 1555/6 1557/6 +f 1558/6 966/6 1556/6 +f 1559/6 966/6 1558/6 +f 1560/5 1559/5 1558/5 +f 1561/5 1560/5 1562/5 +f 1561/4 1562/5 1563/4 +f 1563/4 1564/4 1561/4 +f 1565/4 1561/4 1564/4 +f 1565/4 1564/4 1566/4 +f 1565/5 1566/4 1567/5 +f 1565/5 1567/5 1568/5 +f 1569/4 1565/4 1568/4 +f 1568/4 1570/4 1569/4 +f 1570/5 1571/5 1569/5 +f 1569/5 1571/5 1560/5 +f 1559/5 1571/5 1572/5 +f 1559/5 1572/5 968/5 +f 968/5 1572/5 1573/5 +f 968/5 1573/5 1574/5 +f 1574/5 1573/5 1575/5 +f 1575/5 970/5 1574/5 +f 1574/5 970/5 969/5 +f 1576/5 1577/5 1578/5 +f 1578/5 974/5 1576/5 +f 1546/33 974/33 1578/33 +f 1578/5 1577/5 1548/5 +f 1579/5 1549/5 1577/5 +f 1579/5 1577/5 1580/5 +f 1579/5 1580/5 1581/5 +f 1581/5 1582/5 1579/5 +f 1579/5 1582/5 1583/5 +f 1583/5 1549/5 1579/5 +f 1549/5 1583/5 1550/5 +f 1584/5 1550/5 1583/5 +f 1583/5 1585/5 1584/5 +f 1586/5 1584/5 1585/5 +f 1586/4 1585/5 1587/4 +f 1588/4 1586/4 1587/4 +f 1589/4 1588/4 1587/4 +f 1587/4 1590/4 1589/4 +f 1590/4 1591/4 1589/4 +f 1589/4 1591/4 1592/4 +f 1589/4 1592/4 1593/4 +f 1593/4 1592/4 1594/4 +f 1593/4 1594/4 1595/4 +f 1593/4 1595/4 1596/4 +f 1593/4 1596/4 1588/4 +f 1596/4 1597/5 1588/4 +f 1586/5 1597/5 1598/5 +f 1598/5 1597/5 1599/5 +f 1599/6 1553/6 1598/6 +f 1599/5 1597/5 1600/5 +f 1599/5 1600/5 1601/5 +f 1601/6 1554/6 1599/6 +f 1600/5 1602/5 1601/5 +f 1601/5 1602/5 1557/5 +f 1557/5 1602/5 1562/5 +f 1563/4 1562/5 1602/5 +f 1563/4 1602/5 1603/4 +f 1603/4 1604/4 1563/4 +f 1595/4 1604/4 1603/4 +f 1595/4 1605/4 1604/4 +f 1604/4 1605/4 1606/4 +f 1607/37 1604/4 1606/4 +f 1608/9 1607/37 1609/37 +f 1610/4 1608/9 1611/37 +f 1610/4 1611/37 1612/4 +f 1613/19 1610/4 1612/4 +f 1613/25 1612/25 1614/25 +f 1613/25 1614/25 1615/25 +f 1613/25 1615/25 1616/25 +f 1613/19 1616/19 1617/19 +f 1618/4 1619/9 1620/4 +f 1620/4 1619/9 1621/9 +f 1621/9 1608/9 1620/4 +f 1622/37 1623/37 1608/9 +f 1621/9 1622/37 1608/9 +f 1624/6 1625/6 1626/6 +f 1626/6 1625/6 1627/6 +f 1626/37 1607/37 1608/9 +f 1628/6 1626/6 1627/6 +f 1627/6 1629/11 1628/6 +f 1629/11 1630/11 1628/6 +f 1631/37 1628/37 1630/37 +f 1631/37 1630/37 1632/37 +f 1631/37 1632/37 1633/37 +f 1628/37 1631/37 1634/37 +f 1634/37 1635/37 1628/37 +f 1628/37 1635/37 1607/37 +f 1635/37 1636/37 1607/37 +f 1636/37 1637/37 1607/37 +f 1637/37 1638/4 1607/37 +f 1638/4 1564/4 1607/37 +f 1566/4 1638/4 1637/37 +f 1637/37 1639/4 1566/4 +f 1566/4 1639/5 1640/5 +f 1566/4 1640/5 1567/5 +f 1567/5 1641/5 1642/5 +f 1642/5 1641/5 1643/5 +f 1642/5 1643/5 1644/5 +f 1645/5 1642/5 1644/5 +f 1646/5 1645/5 1644/5 +f 1644/5 1647/5 1646/5 +f 1646/29 1647/29 1648/29 +f 1646/29 1648/29 1649/29 +f 1649/29 1650/29 1646/29 +f 1649/29 1651/29 1650/29 +f 1650/4 1651/4 1652/4 +f 1652/4 1653/4 1650/4 +f 1645/4 1650/4 1653/4 +f 1645/4 1653/4 1570/4 +f 1653/5 1572/5 1570/5 +f 1652/4 1573/5 1653/4 +f 1652/4 1651/4 1654/4 +f 1654/4 1655/4 1652/4 +f 1652/4 1655/4 1573/5 +f 1654/4 1581/5 1655/4 +f 1655/5 1581/5 1580/5 +f 1575/5 1655/5 1580/5 +f 1580/5 1576/5 1575/5 +f 1656/4 1581/5 1654/4 +f 1654/4 1657/4 1656/4 +f 1658/4 1656/4 1657/4 +f 1659/29 1658/29 1657/29 +f 1659/29 1657/29 1660/29 +f 1649/29 1661/29 1660/29 +f 1660/29 1661/29 1662/7 +f 1660/4 1662/4 1663/4 +f 1664/29 1665/29 1663/29 +f 1663/29 1665/29 1658/29 +f 1658/4 1665/4 1666/4 +f 1658/4 1666/4 1590/4 +f 1667/4 1658/4 1590/4 +f 1666/4 1668/4 1591/4 +f 1591/4 1668/4 1669/4 +f 1591/4 1669/4 1592/4 +f 1592/4 1669/4 1670/4 +f 1592/4 1670/4 1594/4 +f 1594/4 1671/4 1605/4 +f 1605/4 1671/4 1672/4 +f 1605/4 1672/4 1606/4 +f 1606/4 1672/4 1673/37 +f 1606/4 1673/37 1609/37 +f 1674/25 1675/25 1676/25 +f 1614/25 1674/25 1677/25 +f 1677/25 1678/25 1614/25 +f 1614/25 1678/25 1679/25 +f 1615/25 1614/25 1679/25 +f 1679/25 1680/25 1615/25 +f 1680/25 1681/25 1615/25 +f 1615/25 1681/25 1616/25 +f 1681/5 1682/4 1616/19 +f 1617/19 1682/4 1683/19 +f 1617/19 1683/19 1620/4 +f 1620/4 1683/19 904/19 +f 1683/19 1684/19 904/19 +f 884/19 911/4 1684/19 +f 884/19 1684/19 1685/19 +f 884/19 1685/19 1686/19 +f 1687/19 884/19 1686/19 +f 1687/19 1686/19 1688/19 +f 1689/19 894/19 1687/19 +f 1690/19 885/19 1687/19 +f 885/6 1690/6 892/6 +f 894/19 1690/19 1687/19 +f 1691/19 894/19 1689/19 +f 1688/19 1691/4 1689/19 +f 1686/19 1692/19 1688/19 +f 1688/19 1692/19 1693/19 +f 1691/19 1693/19 1694/19 +f 1691/19 1694/19 1695/19 +f 1694/19 1696/19 1695/19 +f 1695/19 1696/19 1697/19 +f 1695/19 1697/19 895/19 +f 895/6 1697/6 1698/6 +f 1697/6 1699/6 1698/6 +f 1698/6 1699/6 898/6 +f 896/6 1698/6 898/6 +f 1700/9 1701/9 898/6 +f 1702/9 1703/9 1700/9 +f 1704/9 1702/9 1705/9 +f 1706/37 1705/9 1707/9 +f 1707/9 1708/9 1706/37 +f 1706/37 1708/9 1709/10 +f 1706/37 1709/10 1710/10 +f 1710/10 1711/10 1706/37 +f 1706/37 1711/10 1712/37 +f 1712/37 1711/10 1713/37 +f 1713/37 1714/37 1712/37 +f 1712/37 1714/37 1704/37 +f 1714/9 1715/9 1704/9 +f 1704/9 1715/9 1703/9 +f 1715/9 1701/9 1703/9 +f 1716/9 1701/9 1715/9 +f 1716/9 899/9 1701/9 +f 1717/9 899/9 1716/9 +f 1718/9 1717/9 1716/9 +f 1718/9 1716/9 1714/9 +f 1719/9 1717/9 1718/9 +f 1720/37 1719/37 1718/37 +f 1720/37 1718/37 1713/37 +f 1713/37 1721/37 1720/37 +f 1721/37 1722/37 1720/37 +f 1720/37 1722/37 1723/37 +f 1722/37 1724/37 1723/37 +f 1723/37 1724/37 1725/37 +f 1725/37 1726/37 1723/37 +f 1723/37 1726/37 1719/37 +f 1726/9 1727/9 1719/9 +f 1726/9 1728/9 1727/9 +f 1728/9 1729/9 1727/9 +f 1727/9 1729/9 899/9 +f 1727/9 899/9 1717/9 +f 902/6 909/6 1729/9 +f 1730/9 1731/6 902/6 +f 1732/16 1619/6 1731/6 +f 1733/37 1734/2 1735/37 +f 1735/37 1734/2 1736/37 +f 1737/37 1735/37 1736/37 +f 1623/37 1737/37 1624/37 +f 1624/37 1626/37 1608/9 +f 1623/37 1624/37 1608/9 +f 1736/37 1624/37 1737/37 +f 1736/37 1738/37 1624/37 +f 1739/5 1740/37 1738/37 +f 1740/37 1741/37 1738/37 +f 1741/37 1742/37 1743/37 +f 1743/37 1625/37 1741/37 +f 1743/6 1627/6 1625/6 +f 1744/6 1627/6 1743/6 +f 1743/6 1745/6 1744/6 +f 1744/6 1745/6 1746/6 +f 1747/11 1744/6 1746/6 +f 1746/6 1748/11 1747/11 +f 1749/11 1747/11 1748/11 +f 1749/11 1748/11 1750/11 +f 1751/9 1749/9 1750/9 +f 1751/9 1750/9 1752/9 +f 1753/4 1632/37 1754/17 +f 1755/17 1753/4 1754/17 +f 1755/17 1756/4 1757/4 +f 1757/4 1758/4 1755/17 +f 1758/4 1759/37 1633/37 +f 1760/37 1633/37 1759/37 +f 1761/37 1760/37 1759/37 +f 1761/37 1759/37 1762/37 +f 1760/37 1761/37 1631/37 +f 1762/37 1763/37 1634/37 +f 1634/37 1763/37 1764/37 +f 1634/11 1764/11 1765/11 +f 1634/11 1765/11 1635/11 +f 1766/11 1765/11 1764/11 +f 1766/37 1764/37 1767/37 +f 1768/37 1766/37 1767/37 +f 1769/37 1770/37 1768/37 +f 1771/37 1769/37 1768/37 +f 1771/37 1768/37 1772/37 +f 1772/37 1773/37 1771/37 +f 1771/37 1773/37 1774/37 +f 1771/37 1774/37 1769/37 +f 1775/37 1769/37 1776/37 +f 1775/37 1776/37 1777/37 +f 1778/37 1779/37 1777/37 +f 1777/37 1779/37 1775/37 +f 1780/16 1781/11 1782/16 +f 1782/16 1781/11 1779/16 +f 1779/16 1781/11 1783/11 +f 1779/37 1783/37 1770/37 +f 1770/37 1783/37 1768/37 +f 1781/11 1784/11 1783/11 +f 1783/11 1784/11 1766/11 +f 1784/11 1635/11 1765/11 +f 1785/16 1635/11 1784/11 +f 1785/16 1784/11 1781/11 +f 1781/11 1786/16 1785/16 +f 1640/16 1785/16 1786/16 +f 1640/16 1786/16 1641/16 +f 1641/16 1786/16 1787/16 +f 1643/16 1787/16 1788/16 +f 1643/16 1788/16 1647/16 +f 1647/16 1788/16 1789/16 +f 1648/16 1789/16 1790/16 +f 1648/16 1790/16 1661/16 +f 1790/16 1662/7 1661/16 +f 1662/7 1790/16 1664/29 +f 1664/29 1790/16 1791/16 +f 1664/29 1791/16 1792/29 +f 1664/29 1792/29 1793/29 +f 1664/29 1793/29 1794/7 +f 1793/29 1795/29 1794/7 +f 1796/29 1793/29 1797/29 +f 1798/21 1796/21 1799/21 +f 1798/21 1800/21 1795/21 +f 1798/21 1795/21 1793/21 +f 1801/21 1795/21 1800/21 +f 1802/21 1801/21 1800/21 +f 1803/21 1802/21 1804/21 +f 1805/21 1806/21 1803/21 +f 1805/21 1807/21 1806/21 +f 1808/21 1807/21 1809/21 +f 1810/9 1808/9 1809/9 +f 1810/9 1809/9 1811/9 +f 1811/9 1532/9 1810/9 +f 1811/9 1812/9 1532/9 +f 1813/9 1812/9 1811/9 +f 1812/9 1813/9 1814/9 +f 1812/9 1814/9 1815/9 +f 1812/9 1815/9 1816/9 +f 1812/9 1816/9 1817/9 +f 1533/17 1812/9 1818/9 +f 1818/9 980/8 979/9 +f 979/9 1819/9 1818/9 +f 1818/34 1819/33 1534/33 +f 1820/33 1541/33 1819/33 +f 979/34 1820/33 1819/33 +f 979/34 977/33 1820/33 +f 1820/33 977/33 1821/33 +f 1821/33 1542/33 1820/33 +f 975/33 1542/33 1821/33 +f 976/33 975/33 1821/33 +f 976/33 977/33 782/33 +f 1821/33 977/33 976/33 +f 1822/8 980/8 1818/9 +f 1823/34 978/34 1824/35 +f 1823/34 1824/35 770/29 +f 1825/21 1008/21 1826/21 +f 1827/21 1828/21 1829/21 +f 1827/25 1829/25 1830/25 +f 1830/25 1831/38 1827/25 +f 1827/21 1831/38 1832/21 +f 1827/21 1832/21 1833/21 +f 1833/21 1832/21 1834/21 +f 1835/21 1833/21 1834/21 +f 1836/25 1837/25 1831/38 +f 1831/4 1837/5 1838/4 +f 1839/4 1831/4 1838/4 +f 1840/4 1841/4 1834/4 +f 1841/4 1835/4 1834/4 +f 1841/4 1842/5 1835/4 +f 1835/21 1842/21 1825/21 +f 1842/21 1843/21 1825/21 +f 1825/21 1843/21 335/21 +f 1007/20 334/20 313/20 +f 317/16 313/20 334/20 +f 334/20 1007/20 1844/20 +f 334/20 1844/20 433/20 +f 329/20 433/20 1844/20 +f 331/20 1844/20 1007/20 +f 331/20 1007/20 335/21 +f 1007/20 1008/21 1825/21 +f 1825/21 335/21 1007/20 +f 1845/21 337/21 1846/21 +f 1845/5 1846/5 1847/5 +f 1847/5 1848/5 1845/5 +f 1845/21 1848/21 1849/25 +f 1845/21 1849/25 1850/21 +f 1845/21 338/21 337/21 +f 1845/21 1851/21 338/21 +f 338/21 1851/21 1852/21 +f 1852/21 1851/21 1853/21 +f 1852/21 1853/21 1854/21 +f 1855/21 1852/21 1854/21 +f 1855/21 1856/21 1857/21 +f 1857/21 1856/21 340/21 +f 1858/16 340/16 1856/16 +f 1856/16 1859/16 1858/16 +f 1860/19 1858/9 1859/19 +f 1861/16 1860/16 1862/16 +f 1861/16 1862/16 1863/16 +f 1864/4 1865/4 1866/4 +f 1863/4 1865/4 1867/19 +f 1867/16 1868/16 1863/16 +f 1867/16 1869/16 1868/16 +f 1868/16 1869/16 1870/16 +f 1871/12 1868/5 1870/12 +f 1872/12 1873/12 1874/12 +f 1874/12 1875/12 1872/12 +f 1874/12 1876/12 1875/12 +f 1876/12 1877/12 1875/12 +f 1877/12 1878/12 1875/12 +f 1879/5 1880/5 1878/12 +f 1878/12 1880/5 1871/12 +f 1880/5 1881/5 1868/5 +f 1868/5 1881/5 1861/5 +f 1882/5 1883/5 1861/5 +f 348/5 1883/5 1882/5 +f 1882/5 1884/4 348/5 +f 349/4 1884/4 1885/4 +f 349/4 1885/4 1886/4 +f 1886/4 350/4 349/4 +f 1887/4 353/4 1886/4 +f 1887/4 1888/5 353/5 +f 1889/5 1888/5 1887/4 +f 1889/6 1887/6 1885/6 +f 1885/6 1890/6 1889/6 +f 1889/5 1890/5 1891/5 +f 1889/5 1891/5 1892/5 +f 1892/5 1888/5 1889/5 +f 1892/5 1893/5 1888/5 +f 1888/16 1893/16 1894/16 +f 1888/16 1894/16 1895/16 +f 1888/16 1895/16 1896/16 +f 1888/16 1896/16 354/16 +f 1896/5 356/5 354/5 +f 1895/16 357/16 1896/16 +f 1895/16 1897/16 357/16 +f 357/16 1897/16 1898/16 +f 357/16 1898/16 1899/16 +f 1899/16 1898/16 1900/16 +f 1899/16 1900/16 1901/16 +f 1902/16 1899/16 1901/16 +f 1902/4 1901/4 1903/4 +f 1902/4 1903/4 1904/5 +f 1902/4 1904/5 358/5 +f 361/5 359/5 1904/5 +f 1904/5 1905/4 361/4 +f 1903/4 1905/4 1904/5 +f 1905/4 1903/4 1906/4 +f 1907/4 1905/4 1906/4 +f 1907/4 1906/4 1908/4 +f 1907/4 1908/4 1909/4 +f 1910/4 1907/4 1909/4 +f 1909/4 1911/4 1910/4 +f 1910/4 1911/4 1912/4 +f 1910/4 1912/4 363/4 +f 363/4 1905/4 1910/4 +f 363/4 1912/4 364/4 +f 364/16 1912/16 366/16 +f 1912/16 1911/16 366/16 +f 1911/16 1913/16 366/16 +f 366/16 1913/16 367/6 +f 367/6 1913/16 1914/6 +f 367/6 1914/6 1915/6 +f 368/6 1915/6 1916/6 +f 1916/6 1917/6 368/6 +f 1916/6 1918/6 1917/6 +f 1918/6 1919/16 1917/16 +f 1917/16 1919/16 373/16 +f 1919/16 375/16 373/16 +f 1919/16 376/16 375/16 +f 1919/16 378/6 376/16 +f 1918/6 378/6 1919/16 +f 1918/6 1920/6 378/6 +f 1921/6 1920/6 1922/6 +f 1923/6 1921/6 1922/6 +f 1923/6 1922/6 1924/6 +f 1923/6 165/6 61/6 +f 61/6 1921/6 1923/6 +f 1923/6 1925/6 165/6 +f 168/9 166/9 1925/6 +f 81/13 78/13 1926/12 +f 81/13 1926/12 171/12 +f 175/9 1927/9 1928/9 +f 1929/9 1930/9 1931/9 +f 1928/9 1929/9 1931/9 +f 1928/9 1931/9 173/9 +f 1931/9 1932/9 173/9 +f 1932/9 1933/9 176/9 +f 176/9 1933/9 1934/9 +f 176/9 1934/9 177/9 +f 180/6 1935/16 1936/11 +f 179/6 178/6 180/6 +f 1937/6 181/6 180/6 +f 1937/6 1938/6 182/6 +f 1938/6 1939/6 182/6 +f 1937/6 1936/11 1938/6 +f 1938/6 1936/11 1940/16 +f 1938/6 1940/16 1941/6 +f 1938/10 1941/10 1942/10 +f 1939/10 1938/10 1942/10 +f 1942/10 185/10 1939/10 +f 1939/10 185/10 183/10 +f 1943/10 186/9 1944/10 +f 1945/10 188/10 187/10 +f 1945/10 187/10 1946/10 +f 190/7 188/7 1945/7 +f 194/1 193/7 1947/1 +f 1948/1 1949/18 1947/1 +f 1950/19 1951/19 1952/19 +f 1952/19 1951/19 1953/19 +f 1952/19 1953/19 1954/19 +f 1954/19 1955/19 1952/19 +f 1952/19 1955/19 1956/19 +f 1952/19 1956/19 1950/19 +f 1957/1 1948/1 1956/19 +f 1957/1 1958/1 1959/3 +f 1960/4 1959/3 1958/1 +f 1960/4 1961/6 1959/3 +f 1959/3 1962/1 1948/1 +f 1963/5 1964/5 1962/1 +f 1949/18 1962/1 1964/5 +f 1949/18 194/1 1947/1 +f 1949/18 196/5 194/1 +f 1965/5 196/5 1949/18 +f 197/6 1966/6 1967/6 +f 1967/6 1968/6 1969/1 +f 1967/6 1969/1 195/1 +f 1969/1 1968/4 1970/19 +f 1970/19 198/1 1969/1 +f 1971/1 1972/15 198/1 +f 192/15 198/1 1972/15 +f 1973/15 1972/15 1974/15 +f 1974/15 1975/15 1973/15 +f 1975/15 1976/15 204/7 +f 1976/15 1977/15 204/7 +f 204/10 1977/10 205/4 +f 1977/10 1978/10 205/4 +f 205/4 1978/10 206/4 +f 1979/10 1980/10 1981/10 +f 1979/10 1981/10 1982/10 +f 1983/10 1979/10 210/19 +f 211/15 1984/15 1985/15 +f 1986/15 211/15 1985/15 +f 1985/15 1987/15 1986/15 +f 1988/15 1986/15 1987/15 +f 1988/15 1987/15 1989/15 +f 1990/5 1988/5 1989/5 +f 1990/5 1989/5 1991/5 +f 1992/5 1993/5 1994/5 +f 1994/5 1993/5 1988/5 +f 1992/5 1995/5 1993/5 +f 1995/15 214/15 1993/15 +f 1993/15 214/15 1986/15 +f 1995/15 215/15 214/15 +f 230/15 215/15 1995/15 +f 232/5 1995/5 1992/5 +f 243/5 1992/5 1994/5 +f 245/5 1994/5 1990/5 +f 247/5 1990/5 1991/5 +f 249/5 1991/5 1996/5 +f 1991/5 1997/5 1996/5 +f 1996/5 1997/5 1998/5 +f 1996/5 1998/5 1999/5 +f 249/5 1996/5 1999/5 +f 2000/5 2001/5 1999/5 +f 2002/5 2003/5 2000/5 +f 2000/5 2003/5 250/5 +f 250/5 2003/5 2004/5 +f 2004/5 251/5 250/5 +f 2004/5 2005/5 251/5 +f 2006/26 2005/5 2004/5 +f 2007/26 2006/26 2004/5 +f 2004/5 2003/5 2007/26 +f 2007/26 2003/5 2008/26 +f 2007/26 2008/26 2009/26 +f 2009/26 2010/26 2007/26 +f 2011/26 2010/26 2009/26 +f 2009/26 2012/26 2011/26 +f 2012/26 2013/26 2011/26 +f 2013/5 2014/5 2011/5 +f 2015/5 2011/5 2014/5 +f 2014/5 2016/5 2015/5 +f 2016/5 273/5 2017/5 +f 2016/5 2017/5 2018/5 +f 2018/5 2017/5 2019/5 +f 2018/5 2019/5 2006/5 +f 2010/5 2018/5 2006/5 +f 2015/5 2018/5 2010/5 +f 2020/5 2019/5 2017/5 +f 273/5 2020/5 2017/5 +f 255/5 273/5 2021/5 +f 273/5 2022/5 2021/5 +f 2021/5 2022/5 257/5 +f 273/5 2023/5 2022/5 +f 2022/5 2023/5 261/5 +f 2023/5 273/5 2024/5 +f 2023/5 2024/5 263/5 +f 2024/5 269/5 265/5 +f 273/5 254/5 2020/5 +f 2020/5 2005/5 2019/5 +f 252/5 2005/5 2020/5 +f 273/5 2016/5 274/5 +f 2015/5 2016/5 2018/5 +f 274/5 2016/5 2014/5 +f 2014/5 2025/5 274/5 +f 2014/5 2013/5 2025/5 +f 2013/5 2026/5 2025/5 +f 2025/5 2026/5 275/5 +f 2013/5 2027/5 2026/5 +f 2027/5 2028/5 2026/5 +f 2026/5 2028/5 277/5 +f 2027/5 2029/5 2028/5 +f 2029/5 2030/5 2028/5 +f 2028/5 2030/5 279/5 +f 2030/5 2031/5 279/5 +f 2030/5 2032/5 2031/5 +f 2031/5 2032/5 284/5 +f 2031/5 284/5 281/5 +f 281/5 284/5 283/5 +f 2033/5 2034/5 2032/5 +f 2032/5 2034/5 289/5 +f 2032/5 289/5 284/5 +f 2033/5 2035/5 2034/5 +f 2035/15 293/15 2034/15 +f 2034/15 293/15 290/15 +f 2035/15 2036/15 293/15 +f 2037/15 293/15 2036/15 +f 2036/15 2038/15 2037/15 +f 2037/15 2038/15 2039/15 +f 1258/24 2040/24 2041/24 +f 1258/24 2042/24 1254/24 +f 2043/4 2044/17 2045/17 +f 2043/4 2045/17 2046/4 +f 2047/4 2043/4 2046/4 +f 2046/4 2048/4 2047/4 +f 2048/4 2049/15 2047/4 +f 2047/4 2049/15 2050/4 +f 2051/4 2047/4 2050/4 +f 2052/19 2051/4 2050/4 +f 2053/19 2050/4 2049/15 +f 2054/18 2053/19 2049/15 +f 2054/18 2049/15 2055/15 +f 2056/15 2057/15 2058/30 +f 2057/15 2059/30 2058/30 +f 2060/24 2058/24 2059/24 +f 2061/24 2058/24 2060/24 +f 2062/30 2058/30 2063/30 +f 798/24 2064/24 2062/24 +f 2064/24 2065/24 2062/24 +f 2055/15 2062/30 2065/30 +f 2066/19 2054/18 2065/27 +f 2066/19 2064/27 1286/4 +f 1286/4 2067/19 2066/19 +f 2066/19 2067/19 2068/19 +f 2066/19 2068/19 2054/18 +f 2068/19 2069/19 2053/19 +f 2053/19 2069/19 2052/19 +f 2053/19 2052/19 2050/4 +f 2070/19 2067/19 2071/4 +f 2070/19 2071/4 2072/4 +f 2073/19 2072/4 2074/4 +f 2075/19 2074/4 2076/1 +f 2077/19 2076/1 2078/19 +f 2079/19 2078/19 2080/19 +f 2079/19 2080/19 1274/19 +f 1270/19 2079/19 1274/19 +f 1270/19 1269/19 2079/19 +f 2079/19 2081/19 2077/19 +f 2078/19 2079/19 2077/19 +f 2070/19 2073/19 2075/19 +f 2075/19 2082/19 2070/19 +f 2082/19 2069/19 2070/19 +f 2070/19 2069/19 2067/19 +f 2082/19 2083/4 2069/19 +f 2083/4 2052/19 2069/19 +f 2051/4 2052/19 2083/4 +f 2051/4 2083/4 2084/4 +f 2043/4 2051/4 2084/4 +f 2085/4 2043/4 2084/4 +f 2085/4 2084/4 2086/4 +f 2087/4 2085/4 2086/4 +f 2086/19 2088/19 2087/19 +f 2089/19 2087/19 2088/19 +f 2088/19 1269/19 2089/19 +f 1268/19 2089/19 1269/19 +f 2090/19 2089/19 1268/19 +f 1268/19 1266/19 2090/19 +f 2090/19 1266/19 2091/19 +f 2091/19 2087/19 2090/19 +f 2091/24 1263/24 2044/24 +f 1263/24 2092/24 2044/24 +f 2044/24 2092/24 2045/24 +f 2092/24 2042/24 2045/24 +f 2092/24 1260/24 2042/24 +f 1263/24 1261/24 2092/24 +f 2044/17 2085/17 2091/19 +f 1266/19 1263/19 2091/19 +f 2090/19 2087/19 2089/19 +f 2086/19 2081/19 2088/19 +f 2086/19 2093/19 2081/19 +f 2081/19 2093/19 2075/19 +f 2084/4 2083/4 2093/19 +f 2091/19 2085/17 2087/17 +f 2084/4 2093/19 2086/4 +f 2093/19 2083/4 2082/19 +f 2075/19 2093/19 2082/19 +f 2072/4 2073/19 2070/19 +f 2077/19 2081/19 2075/19 +f 2088/19 2081/19 2079/19 +f 2079/19 1269/19 2088/19 +f 2094/19 1274/19 2080/19 +f 2094/19 1276/19 1275/19 +f 1275/19 1274/19 2094/19 +f 2094/19 2080/19 2095/19 +f 2094/19 2095/19 1277/19 +f 2096/18 1278/19 1277/19 +f 2097/19 2096/18 2098/19 +f 2099/19 2097/19 2098/19 +f 2099/19 2098/19 2100/19 +f 2100/19 2074/4 2099/19 +f 2099/19 2074/4 2101/19 +f 2099/19 2101/19 2102/19 +f 2102/9 2101/9 1283/9 +f 2102/9 1283/9 2103/9 +f 2103/9 1281/9 2102/9 +f 2102/9 1281/9 2099/19 +f 2104/4 1283/4 2101/4 +f 2071/4 1286/4 2104/4 +f 2104/4 1286/4 1284/4 +f 1287/9 1285/4 1286/4 +f 1288/27 1287/9 1286/4 +f 1284/4 1283/4 2104/4 +f 2104/4 2101/4 2074/4 +f 2100/19 2076/1 2074/4 +f 2100/19 2078/19 2076/1 +f 2100/19 2095/19 2078/19 +f 2078/19 2095/19 2080/19 +f 2100/19 2098/19 2095/19 +f 1281/9 2097/19 2099/19 +f 1281/9 1280/9 2097/19 +f 1280/9 1279/4 1278/19 +f 1280/9 1278/19 2097/19 +f 2097/19 1278/19 2096/18 +f 2098/19 2096/18 2095/19 +f 1277/19 2095/19 2096/18 +f 2076/1 2077/19 2075/19 +f 2074/4 2075/19 2073/19 +f 2104/4 2074/4 2072/4 +f 2104/4 2072/4 2071/4 +f 2067/19 1286/4 2071/4 +f 2068/19 2067/19 2069/19 +f 2064/27 2066/19 2105/27 +f 2105/27 2066/19 2065/27 +f 2064/27 1290/27 1286/4 +f 2055/15 2065/30 2054/18 +f 2056/15 2058/30 2055/15 +f 2055/15 2058/30 2062/30 +f 2064/24 2105/24 2065/24 +f 2062/30 2063/30 2106/30 +f 2062/24 2106/24 1291/24 +f 2106/24 2107/16 1291/24 +f 2108/16 1291/16 2107/16 +f 2108/16 2107/16 2109/16 +f 2108/16 2109/16 1317/16 +f 2110/16 2108/16 2111/16 +f 1314/16 2110/16 2111/16 +f 1314/19 2111/19 1316/19 +f 1316/16 2111/16 1317/16 +f 1317/16 2111/16 2108/16 +f 2112/16 2108/16 2113/16 +f 2113/16 2114/16 2112/16 +f 1294/16 2114/16 2115/16 +f 1292/16 2112/16 2114/16 +f 2113/16 2115/16 2114/16 +f 1308/16 2115/16 2113/16 +f 2110/16 1308/16 2113/16 +f 1312/17 1308/17 2110/17 +f 2113/16 2108/16 2110/16 +f 2116/6 2107/16 2117/6 +f 2118/6 2116/6 2117/6 +f 2118/6 2117/6 2119/6 +f 2120/6 2118/6 2119/6 +f 2120/15 2119/15 2121/15 +f 2122/15 2123/15 2124/15 +f 2125/15 2124/15 2123/15 +f 2123/15 2126/15 2125/15 +f 2121/15 2125/15 2120/15 +f 2127/6 2128/6 2120/6 +f 2118/6 2129/6 2116/6 +f 2130/6 1323/6 2129/6 +f 2130/6 2129/6 2131/6 +f 2132/6 2130/6 2131/6 +f 2133/17 2132/17 2134/17 +f 2134/17 2135/17 2133/17 +f 1328/16 1326/16 2136/16 +f 2136/16 1332/16 1328/16 +f 1337/16 1336/16 2137/16 +f 2137/16 2138/16 1337/16 +f 1349/25 2138/16 2137/16 +f 1352/25 1350/25 1336/16 +f 1332/16 1352/25 1330/16 +f 1352/25 2139/36 1351/25 +f 1351/25 2139/36 2140/36 +f 2141/25 2142/25 1351/25 +f 1351/25 2140/36 2141/25 +f 2139/36 2143/36 2140/36 +f 2140/36 2144/36 2141/25 +f 2141/28 2144/12 2145/28 +f 2141/28 2145/28 2142/28 +f 2142/25 2145/25 2146/25 +f 2142/25 2146/25 1353/25 +f 2147/28 2146/28 2145/28 +f 2147/28 2145/28 2148/28 +f 2149/39 2147/28 2148/28 +f 2149/39 2148/28 2150/39 +f 2149/39 2150/39 2151/39 +f 2149/39 2151/39 2152/39 +f 2153/39 2149/39 2152/39 +f 2154/29 2153/29 2155/29 +f 2156/29 2154/29 2155/29 +f 2157/33 2156/29 2155/29 +f 2156/29 2157/33 2158/29 +f 2159/29 2160/29 2156/29 +f 2160/12 1357/12 2154/12 +f 1357/12 2161/12 2154/12 +f 2154/12 2161/12 2153/12 +f 2161/12 1356/28 2149/39 +f 2149/39 1356/28 2147/28 +f 1358/12 1357/12 2160/12 +f 2162/12 1358/12 2160/12 +f 1362/12 1358/12 2162/12 +f 717/28 1362/12 2162/12 +f 2163/29 719/29 718/29 +f 1365/24 2164/25 2165/24 +f 2166/24 1365/24 2165/24 +f 2165/24 2059/24 2166/24 +f 2167/15 2059/30 2057/15 +f 2057/15 2122/15 2124/15 +f 2124/15 2167/15 2057/15 +f 2121/15 2167/15 2124/15 +f 2059/24 2168/24 2169/24 +f 2169/24 2168/24 2170/24 +f 2170/24 2171/16 2169/24 +f 2169/5 2171/5 2172/5 +f 2172/5 2173/5 2169/5 +f 2169/24 2173/24 2059/24 +f 2174/24 2060/24 2175/24 +f 457/5 2174/5 2175/5 +f 457/5 2175/5 521/5 +f 2061/24 2176/24 520/24 +f 520/24 519/24 2061/24 +f 2177/24 2061/24 519/24 +f 2177/24 2058/24 2061/24 +f 2063/30 2177/30 2178/30 +f 2179/24 2063/24 2178/24 +f 2180/24 2179/24 2178/24 +f 2180/26 2178/26 2181/26 +f 2179/24 2180/24 2182/24 +f 2182/24 2183/24 2179/24 +f 2184/24 2179/24 2183/24 +f 2185/4 2184/4 2183/4 +f 2186/4 2183/4 2187/4 +f 2186/4 2187/4 2188/19 +f 2186/4 2188/19 2189/9 +f 2190/9 2191/4 2189/9 +f 2191/4 2186/4 2189/9 +f 2184/24 2185/24 2192/24 +f 2192/24 2166/24 2184/24 +f 2166/24 2063/24 2184/24 +f 2166/30 2106/30 2063/30 +f 2192/24 1365/24 2166/24 +f 2192/4 2193/4 1365/4 +f 2194/4 2195/4 2193/4 +f 2194/4 2191/4 2195/4 +f 2196/5 2193/4 2195/4 +f 2190/9 2197/17 2196/5 +f 2191/4 2190/9 2195/4 +f 2196/5 2195/4 2190/9 +f 2198/26 2197/17 2199/17 +f 2198/26 2199/17 2200/26 +f 2198/26 2196/5 2197/17 +f 1367/5 1365/4 2201/5 +f 2193/4 2196/5 2201/5 +f 2201/5 2202/5 1367/5 +f 1367/5 2202/5 2203/5 +f 1367/25 2203/25 2204/25 +f 1375/25 1367/25 2204/25 +f 2204/25 2205/25 1375/25 +f 2206/25 1375/25 2205/25 +f 2207/25 2206/25 2205/25 +f 2205/25 2208/25 2207/25 +f 2208/5 2209/17 2207/17 +f 2210/25 2211/25 2207/25 +f 2211/25 2206/25 2207/25 +f 2211/29 2212/29 2206/29 +f 2213/29 2206/29 2212/29 +f 2212/29 2214/29 2213/29 +f 2215/29 2213/29 2214/29 +f 2213/29 2216/29 2217/15 +f 2213/29 2217/15 2218/18 +f 2218/18 2206/29 2213/29 +f 2206/29 2218/18 2219/29 +f 2206/29 2219/29 1369/29 +f 2220/4 2221/4 1370/4 +f 1370/4 2219/4 2220/4 +f 2220/4 2219/4 2222/4 +f 2222/4 2223/4 2224/4 +f 2220/4 2222/4 2224/4 +f 2225/6 1447/6 2226/6 +f 2225/6 2226/6 2227/6 +f 2227/17 1441/17 2228/17 +f 2228/17 2229/17 2227/17 +f 2228/17 2230/4 2229/17 +f 2230/4 2231/4 2229/17 +f 2227/6 2229/6 2225/6 +f 2229/6 2231/6 2232/6 +f 2231/4 2233/4 2220/4 +f 2220/4 2233/19 2234/4 +f 2234/4 2221/4 2220/4 +f 1371/17 2221/4 2234/4 +f 1436/17 1371/17 2234/4 +f 1436/17 2234/4 2235/17 +f 1436/17 2235/17 1437/17 +f 2235/17 2236/19 1439/17 +f 2228/17 1439/17 2236/19 +f 2230/4 2228/17 2236/19 +f 2236/19 2235/17 2233/17 +f 2233/4 2230/4 2236/19 +f 2233/17 2235/17 2234/4 +f 2228/17 1441/17 1439/17 +f 2231/4 2230/4 2233/4 +f 1441/6 2227/6 1444/6 +f 1444/6 2227/6 2226/6 +f 2225/6 1475/6 1447/6 +f 2225/6 2237/6 1475/6 +f 2229/6 2232/6 2225/6 +f 2225/6 2232/6 2237/6 +f 2232/4 2223/4 2237/4 +f 2238/4 2237/4 2223/4 +f 2239/38 1490/38 1489/38 +f 2239/38 1493/38 1490/38 +f 2240/38 1493/38 2239/38 +f 2239/38 2241/38 2240/38 +f 2242/38 2240/38 2243/38 +f 1495/38 2242/38 1496/38 +f 2244/38 1496/38 2242/38 +f 2242/38 2243/38 2244/38 +f 2244/38 2243/38 2245/21 +f 2244/38 2245/21 2246/21 +f 1517/38 2244/38 2246/21 +f 1517/38 2246/21 1520/21 +f 2246/21 2245/21 2247/21 +f 2246/21 2247/21 2248/21 +f 1521/21 2246/21 2248/21 +f 2248/21 2247/21 2249/21 +f 1523/21 2248/21 2249/21 +f 1523/21 2249/21 1527/21 +f 2249/21 2247/21 1806/21 +f 2249/21 1806/21 1807/21 +f 1528/21 2249/21 1807/21 +f 2250/21 1806/21 2247/21 +f 2247/21 1668/21 2250/21 +f 1668/21 2251/21 2250/21 +f 2250/21 2251/21 1801/21 +f 1665/4 1801/4 2251/4 +f 1665/4 2251/4 1666/4 +f 1795/29 1801/29 1665/29 +f 1665/29 1794/7 1795/29 +f 1663/29 1662/7 1664/29 +f 1665/29 1664/29 1794/7 +f 2243/38 2252/21 2245/21 +f 2243/38 1670/38 2252/21 +f 1670/38 1669/21 2252/21 +f 2253/38 1670/38 2243/38 +f 2243/38 2254/38 2253/38 +f 2254/38 1671/38 2253/38 +f 2253/38 1671/38 1670/38 +f 2254/38 2240/38 2255/38 +f 2255/38 2256/38 2254/38 +f 2254/38 2256/38 2257/38 +f 2257/38 1672/38 2254/38 +f 1679/5 2258/5 2259/5 +f 1679/5 2259/5 1680/5 +f 2260/5 1682/4 1681/5 +f 2260/5 1681/5 2261/5 +f 2262/19 2263/19 1683/19 +f 1685/19 1683/19 2263/19 +f 2263/19 2264/19 1685/19 +f 2264/19 2265/19 1685/19 +f 1685/19 2265/19 2266/19 +f 2266/19 2265/19 2267/19 +f 2268/19 2266/19 2267/19 +f 2268/19 2269/19 2266/19 +f 2270/29 2269/29 2214/29 +f 2271/29 2269/29 2270/29 +f 2270/29 2272/29 2271/29 +f 2271/29 2272/29 2273/29 +f 2271/19 2273/19 1692/19 +f 1692/19 2273/19 1693/19 +f 2274/19 1693/19 2273/19 +f 2274/29 2273/29 1378/29 +f 1377/29 2274/29 1378/29 +f 1382/29 2274/29 1377/29 +f 1382/19 2275/19 2274/19 +f 2275/19 1693/19 2274/19 +f 1378/29 2273/29 2272/29 +f 1380/25 1379/25 2276/25 +f 2163/25 1380/25 2276/25 +f 2165/24 2163/25 2276/25 +f 2059/24 2165/24 2168/24 +f 2168/5 2277/5 2278/5 +f 2278/24 2279/24 2168/24 +f 2170/24 2279/24 2280/16 +f 522/5 2172/5 524/4 +f 522/5 2173/5 2172/5 +f 521/5 2173/5 522/5 +f 2173/5 521/5 2175/5 +f 522/5 524/4 523/9 +f 525/9 524/4 2172/5 +f 2172/5 2171/5 525/9 +f 528/16 527/16 2281/16 +f 528/5 2282/5 2283/9 +f 528/5 2283/9 529/9 +f 2283/9 2282/5 2284/5 +f 2284/5 2285/9 2283/9 +f 648/17 2283/9 2285/9 +f 2286/17 648/17 2285/9 +f 2286/17 2287/17 648/17 +f 2287/17 2288/17 648/17 +f 495/17 2289/17 2290/17 +f 495/17 2290/17 2291/17 +f 2291/17 2292/17 495/17 +f 2293/4 2292/17 2291/17 +f 2293/4 2291/17 2294/5 +f 2295/5 2293/4 2294/5 +f 2296/5 2295/5 2211/5 +f 2211/5 2295/5 2212/5 +f 2297/25 2298/25 2212/25 +f 2212/5 2295/5 2297/5 +f 2295/5 2299/5 2297/5 +f 2299/5 2300/5 2297/5 +f 2300/25 2301/25 2298/25 +f 2302/25 2298/25 2301/25 +f 2303/25 2302/25 2301/25 +f 2304/4 2303/5 2305/4 +f 2302/25 2304/25 2212/25 +f 2270/29 2212/29 2304/29 +f 2304/29 2272/29 2270/29 +f 2276/29 2272/29 2304/29 +f 1374/29 2272/29 2276/29 +f 2306/6 2307/6 2308/6 +f 2307/6 2309/11 2308/6 +f 2308/6 2165/11 2306/6 +f 2165/11 2276/6 2306/6 +f 2308/19 2277/5 2165/5 +f 2165/5 2277/5 2168/5 +f 2282/5 2277/5 2284/5 +f 2279/24 2278/24 2281/16 +f 2282/5 2281/5 2278/5 +f 528/5 2281/5 2282/5 +f 2285/9 2284/5 2309/5 +f 2286/17 2285/9 2309/5 +f 2309/11 2307/6 2286/6 +f 2286/17 2310/4 2287/17 +f 2287/17 2310/4 2311/5 +f 2312/5 2313/5 2288/17 +f 2289/17 2288/17 2313/5 +f 2290/17 2299/5 2294/5 +f 2294/5 2291/17 2290/17 +f 2313/5 2290/17 2289/17 +f 2313/5 2299/5 2290/17 +f 2313/5 2312/5 2300/5 +f 2300/5 2312/5 2301/5 +f 2301/5 2312/5 2311/5 +f 2311/5 2312/5 2288/17 +f 2311/5 2288/17 2287/17 +f 2307/6 2306/6 2305/6 +f 2307/6 2305/6 2310/6 +f 2311/5 2310/4 2305/4 +f 2305/4 2303/5 2311/5 +f 2286/6 2307/6 2310/6 +f 2277/5 2309/5 2284/5 +f 2277/5 2282/5 2278/5 +f 2308/19 2309/5 2277/5 +f 2304/6 2306/6 2276/6 +f 2272/29 1374/29 1378/29 +f 2305/6 2306/6 2304/6 +f 2302/25 2303/25 2304/25 +f 2301/5 2311/5 2303/5 +f 2298/25 2297/25 2300/25 +f 2313/5 2300/5 2299/5 +f 2299/5 2295/5 2294/5 +f 2298/25 2302/25 2212/25 +f 2314/4 497/17 2292/17 +f 2315/5 497/17 2316/17 +f 2316/17 2317/5 2315/5 +f 2318/17 2319/4 487/17 +f 2319/4 2320/17 487/17 +f 2320/17 2321/17 487/17 +f 2321/17 2322/17 487/17 +f 2322/17 2323/17 487/17 +f 2189/9 487/17 2323/17 +f 2197/17 2190/9 2199/17 +f 2199/17 2190/9 2323/17 +f 2324/4 2199/17 2323/17 +f 2323/17 2322/17 2324/4 +f 2325/4 2326/5 2327/5 +f 2325/4 2327/5 2328/5 +f 2325/4 2328/5 2322/17 +f 2324/4 2200/26 2199/17 +f 2329/5 2202/5 2200/26 +f 2198/26 2200/26 2202/5 +f 2202/5 2196/5 2198/26 +f 2329/5 2203/5 2202/5 +f 2329/25 2330/25 2203/25 +f 2204/25 2203/25 2331/25 +f 2331/25 2326/25 2204/25 +f 2326/5 2332/5 2204/5 +f 2332/5 2333/5 2204/5 +f 2204/5 2333/5 2205/5 +f 2205/25 2334/25 2208/25 +f 2315/5 2334/5 2335/5 +f 2315/5 2335/5 2319/4 +f 2315/5 2317/5 2334/5 +f 2319/4 2335/5 2336/5 +f 2319/4 2336/5 2320/17 +f 2337/5 2332/5 2325/4 +f 2337/5 2320/17 2336/5 +f 2320/17 2337/5 2321/17 +f 2326/5 2325/4 2332/5 +f 2328/5 2327/5 2338/5 +f 2338/25 2327/25 2330/25 +f 2330/25 2329/25 2338/25 +f 2324/4 2338/5 2200/26 +f 2200/26 2338/5 2329/5 +f 2331/25 2330/25 2327/25 +f 2327/25 2326/25 2331/25 +f 2336/5 2333/5 2332/5 +f 2335/5 2334/5 2333/5 +f 2333/5 2336/5 2335/5 +f 2336/5 2332/5 2337/5 +f 2334/5 2317/5 2208/5 +f 2317/5 2316/17 2209/17 +f 2316/17 2210/4 2209/17 +f 2207/17 2209/17 2210/4 +f 2314/4 2210/4 2316/17 +f 2205/5 2333/5 2334/5 +f 2330/25 2331/25 2203/25 +f 2328/5 2338/5 2324/4 +f 2337/5 2325/4 2321/17 +f 2325/4 2322/17 2321/17 +f 2328/5 2324/4 2322/17 +f 2188/19 498/9 2189/9 +f 487/17 2189/9 498/9 +f 2188/19 2339/9 498/9 +f 498/9 2339/9 2340/23 +f 2341/8 2342/8 2343/8 +f 2341/8 2343/8 2344/8 +f 2345/6 2341/8 2344/8 +f 2344/8 2346/6 2345/6 +f 2346/6 2347/6 2345/6 +f 2347/17 2348/4 2345/4 +f 2349/4 2345/4 2348/4 +f 2348/4 2350/4 2349/4 +f 499/6 498/9 2341/8 +f 2341/8 2349/6 499/6 +f 2341/8 2345/6 2349/6 +f 2349/6 500/6 499/6 +f 501/5 500/5 2351/5 +f 2351/5 2352/5 501/5 +f 2353/6 502/6 501/6 +f 478/17 502/17 2354/4 +f 2354/4 2355/17 478/17 +f 2356/17 2357/5 2355/17 +f 503/5 2355/17 2357/5 +f 2358/5 504/5 503/5 +f 505/5 504/5 2358/5 +f 2358/5 2359/5 505/5 +f 2360/5 507/5 506/5 +f 473/5 506/5 507/5 +f 507/16 2361/16 508/16 +f 509/5 2362/5 510/5 +f 2363/6 512/6 510/6 +f 510/5 2362/5 2363/5 +f 2362/5 2364/5 2363/5 +f 2365/5 2363/5 2364/5 +f 2364/5 2366/5 2365/5 +f 2367/11 2365/11 2366/6 +f 2367/11 2368/11 2365/11 +f 2365/5 2369/4 2363/5 +f 2369/6 512/6 2363/6 +f 2370/17 512/9 2369/4 +f 512/6 2370/8 511/8 +f 2370/8 2371/8 511/8 +f 511/8 2371/8 449/8 +f 449/8 2371/8 513/8 +f 2372/5 514/5 513/5 +f 2372/5 513/5 2373/5 +f 2374/5 2375/5 453/5 +f 453/5 451/5 2374/5 +f 453/5 2375/5 2376/5 +f 2376/8 2377/8 453/8 +f 2377/8 2376/8 2378/8 +f 2378/8 454/23 2377/8 +f 2379/17 454/17 2380/4 +f 2380/4 2381/17 2379/17 +f 2379/23 2382/23 455/9 +f 2340/23 516/9 2382/23 +f 2339/9 2383/9 516/9 +f 2384/26 517/9 2383/9 +f 2384/26 2383/9 2385/26 +f 2384/26 515/5 517/9 +f 519/26 2181/26 2178/26 +f 2384/26 2385/26 2181/26 +f 2180/26 2181/26 2385/26 +f 2187/4 2386/5 2188/19 +f 2187/4 2182/5 2386/5 +f 2187/4 2183/4 2182/5 +f 2386/5 2385/26 2383/9 +f 2386/5 2182/5 2385/26 +f 2385/26 2182/5 2180/26 +f 2181/26 515/5 2384/26 +f 519/26 515/5 2181/26 +f 2386/5 2383/9 2339/9 +f 2340/23 2387/8 498/9 +f 2387/8 2342/8 498/9 +f 2388/5 2343/26 2342/4 +f 2342/4 2389/4 2388/5 +f 2389/4 2390/26 2388/5 +f 2388/5 2390/26 2391/26 +f 2388/5 2391/26 2344/26 +f 2344/26 2343/26 2388/5 +f 2346/6 2392/8 2393/14 +f 2346/6 2394/6 2347/6 +f 2395/4 2396/4 2397/4 +f 2398/6 2395/6 2397/11 +f 2397/11 2399/6 2398/6 +f 2400/6 2398/6 2399/6 +f 2400/5 2399/5 2401/5 +f 2401/5 2402/5 2400/5 +f 2403/6 2398/6 2400/6 +f 2404/4 2395/4 2398/4 +f 2350/4 2403/5 2351/5 +f 2349/4 2350/4 2351/5 +f 2351/5 500/5 2349/4 +f 2351/5 2403/5 2352/5 +f 2353/6 2405/6 2406/6 +f 2406/6 502/6 2353/6 +f 2354/4 502/17 2406/5 +f 2406/5 2407/4 2354/4 +f 2354/4 2407/4 2355/17 +f 2355/17 2407/4 2356/17 +f 2357/6 2408/6 2358/6 +f 2408/6 2409/6 2410/6 +f 2359/5 2358/5 2410/5 +f 2410/6 2358/6 2408/6 +f 2411/5 2360/5 505/5 +f 2411/5 2412/5 2360/5 +f 507/5 2360/5 2412/5 +f 2366/5 2364/5 2413/5 +f 2362/5 2413/5 2364/5 +f 2413/16 508/16 2361/16 +f 2413/16 2361/16 2366/6 +f 2414/6 2366/6 2361/16 +f 2414/6 2412/16 2415/6 +f 2415/6 2367/11 2414/6 +f 2416/12 2417/12 2418/12 +f 2416/12 2418/12 2419/12 +f 2416/11 2419/11 2420/16 +f 2367/5 2416/12 2368/5 +f 513/5 2371/17 2373/5 +f 2421/4 2373/5 2371/17 +f 2422/4 2373/5 2421/4 +f 2423/16 2373/16 2422/16 +f 2422/16 2424/16 2423/16 +f 2425/16 2423/16 2424/16 +f 2424/5 2426/5 2425/5 +f 2427/5 2425/5 2426/5 +f 2426/5 2376/5 2427/5 +f 2375/5 2427/5 2376/5 +f 2380/4 2428/4 2381/17 +f 2381/17 2429/17 2430/5 +f 2431/5 2430/5 2429/17 +f 2381/17 2430/5 2382/5 +f 2432/8 2433/8 2387/8 +f 2340/23 2432/8 2387/8 +f 2342/4 2387/4 2434/4 +f 2434/4 2389/4 2342/4 +f 2435/16 2436/16 2390/16 +f 2391/26 2390/26 2436/26 +f 2437/8 2393/14 2392/8 +f 2393/14 2438/17 2394/17 +f 2438/17 2397/4 2396/4 +f 2439/17 2438/17 2440/5 +f 2438/17 2441/5 2440/5 +f 2442/11 1874/11 2439/11 +f 1874/11 2443/11 2439/11 +f 2443/11 2444/11 2439/11 +f 2397/11 2439/11 2445/11 +f 2399/6 2397/11 2445/11 +f 2445/11 2446/6 2399/6 +f 2399/5 2446/5 2401/5 +f 2402/5 2401/5 2405/5 +f 2400/5 2402/5 2403/5 +f 2401/5 2406/5 2405/5 +f 2447/5 2406/5 2401/5 +f 2448/6 2356/6 2407/6 +f 2356/6 2448/6 2408/6 +f 2408/6 2357/6 2356/6 +f 2447/5 2446/5 2407/4 +f 2445/5 2449/5 2409/5 +f 2448/6 2445/11 2409/6 +f 2448/6 2409/6 2408/6 +f 2450/5 2409/5 2449/5 +f 2450/5 2449/5 2451/5 +f 2452/5 2450/5 2451/5 +f 2452/5 2451/5 2453/5 +f 2454/25 2455/25 2456/25 +f 2454/25 2456/25 2457/25 +f 2457/5 2458/5 2453/5 +f 2458/5 2452/5 2453/5 +f 2459/5 2452/5 2458/5 +f 2458/5 2460/5 2459/5 +f 2459/5 2460/5 2461/5 +f 2459/5 2450/5 2452/5 +f 2461/5 2450/5 2459/5 +f 2461/5 2462/5 2450/5 +f 2409/5 2450/5 2462/5 +f 2462/5 2410/5 2409/5 +f 2410/5 2462/5 2415/5 +f 2415/5 2462/5 2463/5 +f 2417/12 2415/5 2463/5 +f 2417/12 2463/5 2464/12 +f 2464/12 2465/12 2417/12 +f 2464/4 2466/17 2465/4 +f 2466/17 2467/17 2465/17 +f 2465/17 2467/17 2468/12 +f 2465/12 2468/12 2418/12 +f 2418/12 2468/12 1872/12 +f 2468/12 2469/5 2470/5 +f 2468/12 2470/5 2471/5 +f 1873/12 2468/12 2471/5 +f 2471/5 2470/5 2472/5 +f 1873/12 2471/5 2473/12 +f 2473/12 2471/5 2474/27 +f 2473/12 2474/27 171/12 +f 171/12 1874/12 2473/12 +f 2443/11 1874/11 2419/11 +f 2419/12 1872/12 2443/12 +f 2418/12 1872/12 2419/12 +f 2419/11 2475/11 2420/16 +f 2475/11 2476/11 2420/16 +f 2420/17 2477/4 2368/4 +f 2421/4 2370/17 2478/17 +f 2478/17 2422/4 2421/4 +f 2424/16 2422/16 2479/16 +f 2424/5 2479/5 2426/5 +f 2426/5 2479/5 2480/5 +f 2479/5 2428/4 2480/5 +f 2481/17 2429/17 2428/4 +f 2479/16 2482/16 2481/16 +f 2483/15 2484/15 2479/12 +f 293/15 2484/15 2483/15 +f 2485/15 2482/18 2484/15 +f 2482/18 2486/15 2487/12 +f 2488/16 2482/16 2487/16 +f 2481/16 2482/16 2488/16 +f 2488/16 2431/16 2481/16 +f 2489/5 2431/5 2488/5 +f 2490/5 2432/5 2491/5 +f 2492/4 2434/4 2493/4 +f 2493/4 2494/4 2492/4 +f 2494/16 2493/16 2495/16 +f 2495/16 2486/16 2494/16 +f 2435/16 2494/16 2486/16 +f 2435/16 2486/16 2496/16 +f 2436/16 2435/16 2496/16 +f 2436/26 2496/26 2497/26 +f 2436/26 2497/26 2437/26 +f 2497/26 2393/14 2437/26 +f 2441/5 2393/14 2497/26 +f 2497/26 2440/5 2441/5 +f 2420/16 2440/16 2496/16 +f 2496/16 2498/16 2420/16 +f 304/12 2498/12 2486/15 +f 304/12 2486/15 2499/12 +f 2499/12 2486/15 2482/18 +f 2499/16 1256/16 1255/16 +f 2499/16 1255/16 1252/16 +f 2499/16 1252/16 306/16 +f 1257/15 1256/12 2485/15 +f 1256/12 2499/12 2485/15 +f 2499/12 2482/18 2485/15 +f 2422/16 2420/16 2498/16 +f 304/12 2479/12 2498/12 +f 303/12 297/15 304/12 +f 296/15 304/12 297/15 +f 298/6 297/6 2500/6 +f 303/16 302/16 2500/6 +f 302/16 301/16 2500/6 +f 303/16 2500/6 297/6 +f 304/12 296/15 2479/12 +f 2420/16 2476/11 2440/16 +f 2442/11 2440/16 2476/11 +f 2501/9 2502/9 2503/9 +f 2503/9 1927/9 2501/9 +f 2503/6 2502/6 2504/6 +f 2504/9 2505/9 2503/9 +f 2505/6 2506/6 2507/6 +f 2508/6 2505/6 2507/6 +f 2508/6 2509/6 1929/6 +f 2509/9 2510/9 1930/9 +f 2511/9 1930/9 2510/9 +f 1932/9 1931/9 1930/9 +f 2511/9 2512/9 1933/9 +f 1933/9 2512/9 2513/9 +f 2512/9 2514/9 2513/9 +f 1933/11 2513/16 2515/16 +f 1933/11 2515/16 1934/16 +f 1934/16 2515/16 2516/16 +f 2516/16 1935/16 1934/16 +f 1934/9 1935/9 177/9 +f 2516/16 2517/16 1935/16 +f 1935/16 2517/16 1936/11 +f 1936/11 2517/16 2518/16 +f 2518/16 1940/16 1936/11 +f 180/6 1936/11 1937/6 +f 1944/10 1942/10 2519/10 +f 2520/10 2519/10 2521/10 +f 2518/16 2522/16 2521/16 +f 2521/16 2522/16 2523/16 +f 2521/10 2523/4 2520/10 +f 2520/10 2523/4 2524/5 +f 2520/10 2525/4 2526/10 +f 2519/10 2526/10 1943/10 +f 2526/10 2525/4 2527/10 +f 2526/10 2527/10 1946/10 +f 1946/10 187/10 2526/10 +f 2528/4 2527/10 2529/4 +f 2529/5 2530/5 2528/5 +f 2528/7 2530/7 2531/7 +f 2528/7 2531/7 2532/7 +f 2532/7 1945/7 2528/7 +f 2532/7 2531/7 2533/7 +f 2532/7 2533/7 193/7 +f 193/7 190/7 2532/7 +f 2533/7 1950/19 193/7 +f 1950/19 2533/7 1951/19 +f 1954/19 1953/19 2534/19 +f 2534/19 2535/19 1954/19 +f 1954/5 2535/19 2536/5 +f 2536/5 2537/5 1954/5 +f 2536/5 2538/5 2537/5 +f 2539/5 2537/5 2538/5 +f 2540/5 2541/9 2539/5 +f 2539/5 2541/9 2542/19 +f 2542/19 2543/19 2539/5 +f 2543/19 2542/19 2544/19 +f 2544/19 2537/19 2543/19 +f 2544/19 1955/19 2537/19 +f 1956/19 1955/19 2544/19 +f 2544/19 1976/15 1974/15 +f 2544/19 2542/19 1976/15 +f 1977/10 2542/19 2545/10 +f 2545/10 2542/19 2541/9 +f 2545/10 1981/10 1978/10 +f 1978/10 1981/10 1980/10 +f 2541/9 2546/9 2545/10 +f 1982/10 2547/9 2548/10 +f 2548/10 2547/9 2549/9 +f 2550/10 2548/10 2549/9 +f 1985/15 2551/15 2552/15 +f 2552/15 1987/15 1985/15 +f 2553/33 1987/15 2552/15 +f 2553/33 2551/15 2554/33 +f 2555/33 2553/33 2556/33 +f 2157/33 2553/33 2555/33 +f 2557/29 2553/33 2157/33 +f 2557/29 2157/33 2155/29 +f 2155/29 2152/29 2557/29 +f 2152/29 2558/29 2557/29 +f 2559/15 2558/29 2560/18 +f 2557/29 2558/29 2561/15 +f 1987/15 2561/15 2562/15 +f 2562/15 2563/15 1987/15 +f 2562/15 2564/15 2563/15 +f 2565/15 2563/15 2564/15 +f 2566/15 2565/15 2564/15 +f 2566/15 2564/15 2126/15 +f 2126/15 2564/15 2567/15 +f 2126/15 2567/15 2568/15 +f 2568/15 2569/15 2126/15 +f 2126/15 2569/15 2125/15 +f 2568/17 2570/17 2569/17 +f 2127/17 2569/17 2570/17 +f 2127/17 2571/17 2131/17 +f 2128/6 2131/6 2129/6 +f 2571/17 2572/17 2132/17 +f 2572/17 2571/17 2570/17 +f 2572/17 2570/17 2573/17 +f 2572/17 2573/17 2574/17 +f 2134/17 2572/17 2574/17 +f 2574/17 2575/17 2134/17 +f 2574/5 2576/5 2575/5 +f 2576/36 2577/36 2575/16 +f 2575/16 2577/36 2578/16 +f 2575/16 2578/16 2135/16 +f 2135/16 2578/16 2136/16 +f 2135/16 2136/16 1326/16 +f 2577/36 2579/36 2578/16 +f 2578/16 2579/36 1332/16 +f 1352/25 2579/36 2139/36 +f 1352/25 1332/16 2579/36 +f 2580/36 2579/36 2577/36 +f 2580/36 2139/36 2579/36 +f 2576/36 2580/36 2577/36 +f 2581/36 2580/36 2576/36 +f 2582/5 2581/5 2576/5 +f 2583/5 2581/5 2582/5 +f 2584/5 2583/5 2582/5 +f 2584/5 2585/5 2586/5 +f 2586/5 2585/5 2587/5 +f 2586/5 2587/5 2588/5 +f 2589/5 2586/5 2588/5 +f 2590/19 2588/5 2591/15 +f 2560/18 2590/19 2591/15 +f 2560/18 2591/15 2559/15 +f 2592/19 2593/19 2560/18 +f 2592/19 2560/18 2594/39 +f 2595/19 2592/19 2150/39 +f 2596/12 2597/5 2595/19 +f 2593/19 2595/19 2597/5 +f 2593/19 2597/5 2590/19 +f 2590/19 2597/5 2589/5 +f 2590/19 2589/5 2588/5 +f 2598/12 2597/5 2596/12 +f 2148/28 2596/12 2150/39 +f 2150/39 2592/19 2151/39 +f 2151/39 2592/19 2594/39 +f 2598/12 2148/28 2599/28 +f 2144/12 2598/12 2145/28 +f 2598/12 2599/28 2145/28 +f 2144/12 2600/12 2598/12 +f 2144/12 2601/5 2600/5 +f 2601/5 2602/5 2600/5 +f 2600/5 2602/5 2597/5 +f 2602/5 2589/5 2597/5 +f 2589/5 2602/5 2586/5 +f 2586/5 2602/5 2583/5 +f 2602/5 2601/5 2583/5 +f 2601/36 2143/36 2581/36 +f 2143/36 2601/36 2144/36 +f 2148/28 2598/12 2596/12 +f 2600/12 2597/5 2598/12 +f 2595/19 2593/19 2592/19 +f 2150/39 2596/12 2595/19 +f 2559/15 2591/15 2603/15 +f 2559/15 2603/15 2561/15 +f 2604/15 2603/15 2591/15 +f 2604/15 2591/15 2587/5 +f 2585/5 2604/15 2587/5 +f 2567/15 2604/15 2585/5 +f 2605/4 2567/15 2585/5 +f 2573/17 2605/4 2584/5 +f 2568/5 2567/15 2605/4 +f 2567/15 2564/15 2604/15 +f 2587/5 2591/15 2588/5 +f 2604/15 2562/15 2603/15 +f 2593/19 2590/19 2560/18 +f 2584/5 2605/4 2585/5 +f 2584/5 2582/5 2573/17 +f 2574/5 2573/17 2582/5 +f 2586/5 2583/5 2584/5 +f 2583/5 2601/5 2581/5 +f 2581/36 2143/36 2580/36 +f 2582/5 2576/5 2574/5 +f 2573/17 2570/17 2605/4 +f 2571/17 2127/17 2570/17 +f 2120/17 2569/17 2127/17 +f 2605/4 2570/17 2568/17 +f 1997/15 2563/15 2565/15 +f 1989/15 2563/15 1997/15 +f 2565/15 2566/15 1998/15 +f 1998/15 2566/15 2606/15 +f 2606/15 2566/15 2123/15 +f 2606/15 2123/15 2607/15 +f 2000/5 2606/5 2607/5 +f 2000/5 2607/5 2608/5 +f 2608/5 2607/5 2609/26 +f 2608/5 2609/26 2610/26 +f 2608/5 2008/26 2002/5 +f 2608/5 2611/26 2008/26 +f 2610/26 2611/26 2608/5 +f 2611/26 2612/26 2009/26 +f 2613/26 2612/26 2611/26 +f 2613/26 2611/26 2610/26 +f 2610/26 2614/26 2613/26 +f 2613/26 2614/26 2615/26 +f 2613/26 2615/26 2616/26 +f 2613/26 2616/26 2617/26 +f 2618/26 2617/26 2616/26 +f 2618/26 2616/26 2029/5 +f 2618/26 2029/5 2027/26 +f 2012/26 2618/26 2027/26 +f 2612/26 2618/26 2012/26 +f 2029/5 2616/26 2619/26 +f 2029/5 2619/26 2033/5 +f 2612/26 2617/26 2618/26 +f 2033/5 2619/26 2616/26 +f 2616/26 2615/26 2035/26 +f 2614/15 2620/15 2615/15 +f 2615/15 2620/15 2036/15 +f 2614/15 2621/15 2620/15 +f 2621/15 2622/15 2620/15 +f 2623/15 2620/15 2622/15 +f 2623/15 2624/15 2038/15 +f 2040/19 2038/15 2624/15 +f 2040/19 2624/17 2625/17 +f 2625/24 2045/24 2041/24 +f 2041/24 2045/24 2042/24 +f 2625/17 2624/17 2046/4 +f 2039/15 2038/15 2040/19 +f 2624/15 2623/15 2048/15 +f 2623/15 2626/15 2048/15 +f 2623/15 2622/15 2626/15 +f 2122/15 2622/15 2621/15 +f 2122/15 2056/15 2622/15 +f 2056/15 2626/15 2622/15 +f 2055/15 2626/15 2056/15 +f 2038/15 2620/15 2623/15 +f 2609/15 2122/15 2621/15 +f 2609/15 2621/15 2614/15 +f 2617/26 2612/26 2613/26 +f 2610/26 2609/26 2614/26 +f 2607/15 2122/15 2609/15 +f 2607/15 2123/15 2122/15 +f 2564/15 2562/15 2604/15 +f 2561/15 2603/15 2562/15 +f 1987/15 2553/33 2557/29 +f 2557/29 2561/15 1987/15 +f 2558/29 2559/15 2561/15 +f 2560/18 2558/29 2594/29 +f 2152/29 2594/29 2558/29 +f 2153/29 2152/29 2155/29 +f 2627/33 2628/11 2629/33 +f 2629/33 2628/11 2630/29 +f 2156/29 2158/29 2163/29 +f 2159/29 2156/29 2163/29 +f 718/29 717/7 2159/29 +f 717/7 2162/29 2159/29 +f 2630/29 1381/29 2158/29 +f 1380/29 2158/29 1381/29 +f 2630/29 1383/29 1381/29 +f 2628/11 1383/29 2630/29 +f 2628/11 2631/16 1383/29 +f 1385/16 1383/29 2631/16 +f 2632/16 1385/16 2631/16 +f 2632/16 2631/16 2633/16 +f 2633/16 2634/16 2632/16 +f 2632/16 2635/16 1384/16 +f 2636/19 1384/19 2635/19 +f 2635/19 2637/19 2636/19 +f 2636/19 2637/19 2638/19 +f 2636/19 2638/19 2639/19 +f 2638/19 2275/19 2639/19 +f 1694/19 2275/19 2638/19 +f 1696/19 2638/19 2637/19 +f 1696/19 2637/19 2635/19 +f 2639/19 1384/19 2636/19 +f 2632/19 1697/19 2635/19 +f 2632/19 2640/19 1697/19 +f 2640/6 2641/6 1697/6 +f 2642/9 2640/6 2643/9 +f 2644/5 2642/9 2643/9 +f 2643/9 2645/5 2644/5 +f 1699/6 2646/9 2647/9 +f 2646/9 1699/6 2642/9 +f 2642/9 1699/6 2641/6 +f 2648/9 898/6 2647/9 +f 1700/9 2648/9 2649/9 +f 1705/9 1702/9 2650/9 +f 2650/9 2649/9 1707/9 +f 2649/9 2651/19 1707/9 +f 1707/9 2651/19 1708/9 +f 1708/9 2652/37 2653/10 +f 1711/10 1710/10 2654/37 +f 1710/10 2655/10 2654/37 +f 1721/37 2654/37 2656/37 +f 1711/10 2654/37 1721/37 +f 2657/37 2656/37 2658/37 +f 2658/37 2659/37 2657/37 +f 2657/37 2659/37 2660/37 +f 1724/37 2657/37 2660/37 +f 2661/37 2660/37 1742/37 +f 2661/37 1742/37 1740/37 +f 2662/37 2661/37 1740/37 +f 2662/37 1740/37 1739/5 +f 2662/5 1739/5 1734/2 +f 2662/37 1734/2 1732/9 +f 1732/9 2663/9 2662/37 +f 2662/37 2663/9 2664/37 +f 2662/37 2664/37 1725/37 +f 2663/9 1730/9 2664/9 +f 2664/9 1730/9 1728/9 +f 1730/9 1729/9 1728/9 +f 902/6 1729/9 1730/9 +f 1730/9 2663/9 1731/6 +f 2663/9 1732/9 1731/6 +f 1732/9 1734/2 1619/9 +f 1619/9 1734/2 1733/37 +f 1725/37 2661/37 2662/37 +f 1740/37 1742/37 1741/37 +f 1724/37 2660/37 2661/37 +f 2660/37 1745/37 1742/37 +f 2659/37 1745/37 2660/37 +f 2658/11 2665/11 2659/11 +f 2665/11 1746/6 2659/11 +f 2666/11 2665/11 2658/11 +f 2658/11 2667/11 2666/11 +f 2666/11 2667/11 2668/11 +f 2669/11 2665/11 2666/11 +f 2666/11 2670/11 2669/11 +f 2671/11 2669/11 2670/11 +f 2671/11 2670/11 2672/11 +f 2673/9 2671/9 2672/9 +f 2673/9 2672/9 2674/9 +f 2675/9 2673/9 2674/9 +f 2675/9 2674/9 2676/9 +f 2677/9 2675/9 2676/9 +f 2678/9 2677/9 2676/9 +f 2679/6 2680/6 2681/6 +f 2681/6 2682/6 2679/6 +f 2679/6 2682/6 2683/6 +f 2684/6 2685/6 2679/6 +f 2686/6 2687/6 2684/6 +f 2686/6 2688/6 2687/6 +f 2687/6 2689/6 2685/6 +f 2685/6 2689/6 2680/6 +f 2687/6 2690/6 2689/6 +f 2689/6 2690/6 2691/6 +f 2687/9 2692/9 2690/9 +f 2690/9 2692/9 2693/9 +f 2677/9 2692/9 2694/9 +f 2677/9 2694/9 2695/9 +f 2695/9 2696/9 2677/9 +f 2695/9 2697/9 2696/9 +f 2697/9 2698/9 2696/9 +f 2696/9 2698/9 2699/9 +f 2696/9 2699/9 2675/9 +f 2699/9 1752/9 2673/9 +f 2700/9 1752/9 2699/9 +f 2700/9 2701/9 2702/9 +f 2702/9 1751/9 2700/9 +f 2702/9 2701/9 2703/9 +f 2702/9 2703/9 1755/17 +f 1755/17 1754/17 2702/9 +f 2704/9 2703/9 2701/9 +f 2705/9 2704/9 2701/9 +f 2705/9 2701/9 2698/9 +f 2706/6 2704/6 2705/6 +f 2707/6 2706/6 2705/6 +f 2707/6 2705/6 2697/6 +f 2708/6 2707/6 2697/6 +f 2709/6 2707/6 2708/6 +f 2710/6 2709/6 2708/6 +f 2710/6 2708/6 2688/6 +f 2695/6 2694/6 2688/6 +f 2688/6 2708/6 2695/6 +f 2686/6 2710/6 2688/6 +f 2711/6 2712/6 2710/6 +f 2711/6 2713/6 2712/6 +f 2712/6 2709/6 2710/6 +f 2709/6 2712/6 2714/6 +f 2714/6 2715/6 2709/6 +f 2709/6 2715/6 2706/6 +f 2715/6 2716/6 2706/6 +f 2715/6 2717/6 2716/6 +f 2717/6 2718/6 2716/6 +f 2716/6 2718/6 2704/6 +f 2717/6 2719/6 2718/6 +f 2719/17 1756/17 2718/9 +f 2718/9 1756/17 2703/9 +f 2719/5 2720/5 1756/5 +f 1756/4 2720/4 1757/4 +f 1757/6 2720/6 2721/6 +f 1757/6 2721/6 2722/6 +f 1759/37 1757/4 2722/37 +f 1759/37 2722/37 1762/37 +f 2723/37 2724/17 2722/37 +f 2723/37 2725/37 2724/17 +f 2725/37 1767/37 2724/17 +f 1767/37 1763/37 2724/17 +f 1763/37 2722/37 2724/17 +f 1772/37 1767/37 2725/37 +f 1772/37 1768/37 1767/37 +f 2723/37 2726/37 1772/37 +f 2727/37 2726/37 2723/37 +f 2723/37 2728/37 2727/37 +f 2727/6 2728/6 2729/6 +f 2729/6 2730/6 2727/6 +f 2729/6 2731/6 2730/6 +f 2732/6 2730/6 2731/6 +f 2732/6 2731/6 2733/6 +f 2713/6 2732/6 2733/6 +f 2734/37 1773/37 2732/37 +f 1774/37 1773/37 2734/37 +f 1774/37 2682/37 1769/37 +f 2682/37 1776/37 1769/37 +f 2735/6 2681/6 1777/6 +f 1777/6 2681/6 2736/6 +f 2736/6 2737/6 2738/11 +f 2738/11 1777/6 2736/6 +f 2738/11 1778/16 1777/6 +f 2739/11 1778/16 2738/11 +f 2739/11 1780/16 2740/16 +f 2740/16 1780/16 1782/16 +f 2740/16 1782/16 1778/16 +f 1780/16 1787/16 1786/16 +f 2741/11 1787/16 1780/16 +f 1787/16 2741/11 2742/16 +f 2742/16 2743/16 1787/16 +f 2742/16 2744/16 2743/16 +f 2743/16 2745/16 1788/16 +f 1789/16 1788/16 2745/16 +f 2745/16 2746/16 1789/16 +f 2747/16 2748/16 2746/16 +f 2746/16 1791/16 1790/16 +f 2746/16 2748/16 1791/16 +f 1792/29 1791/16 2749/29 +f 2750/17 2751/17 2749/17 +f 2749/17 2751/17 2752/17 +f 2752/29 2753/29 2749/29 +f 2749/29 2753/29 2754/7 +f 2754/5 2755/5 2756/5 +f 2754/7 2756/16 2757/29 +f 2754/7 2757/29 2749/29 +f 2749/29 2757/29 1792/29 +f 1792/29 2757/29 2758/29 +f 1792/29 2758/29 2759/29 +f 2760/29 1792/29 2759/29 +f 2759/5 2761/5 2760/5 +f 2762/18 2763/12 2764/12 +f 2764/12 2765/12 2762/18 +f 2765/12 2766/12 2762/18 +f 2762/18 2766/12 2767/12 +f 2762/18 2767/12 2768/12 +f 2762/18 2768/12 2769/4 +f 2770/9 2771/9 2772/9 +f 2770/31 2772/31 2773/31 +f 2773/31 2774/31 2770/31 +f 2770/31 2774/31 2775/31 +f 2770/9 2775/18 2776/18 +f 2776/18 2775/18 2777/18 +f 2776/18 2762/18 2771/9 +f 2778/29 1792/29 2779/30 +f 2778/29 2779/30 2780/30 +f 2778/29 2780/30 2781/29 +f 2781/29 1796/29 2778/29 +f 2781/20 1799/21 1796/21 +f 2782/20 1799/21 2781/20 +f 2781/20 2783/20 2782/20 +f 2782/20 2783/20 2784/20 +f 2782/20 2784/20 2785/20 +f 2782/20 2786/20 2787/20 +f 2787/20 2786/20 2788/21 +f 2787/20 2788/21 1799/21 +f 1799/21 1804/21 1798/21 +f 1804/21 1800/21 1798/21 +f 1804/21 1802/21 1800/21 +f 1799/21 2789/21 1804/21 +f 1803/21 1804/21 2789/21 +f 1803/21 2789/21 2790/21 +f 1805/21 1803/21 2790/21 +f 1805/21 2791/21 2792/21 +f 2792/21 2791/21 2793/21 +f 2793/9 1813/9 2792/9 +f 2793/21 2791/21 2794/20 +f 2795/20 2796/20 2797/20 +f 2797/20 2796/20 2798/20 +f 2798/20 2799/20 2797/20 +f 2797/20 2799/20 2800/20 +f 2800/20 2801/20 2797/20 +f 2800/9 1816/9 2801/9 +f 2802/9 1817/9 2800/9 +f 2802/9 2803/31 1817/9 +f 1812/9 2804/8 1818/9 +f 1812/9 1817/9 2804/8 +f 2804/8 1817/9 2805/8 +f 2804/8 2805/8 2806/8 +f 2804/8 2806/8 2807/8 +f 2807/8 2808/8 2804/8 +f 2808/8 2809/6 2804/8 +f 2810/6 2804/8 2809/6 +f 2809/6 2811/6 2810/6 +f 2810/6 2811/6 2812/6 +f 2810/6 2813/6 1822/8 +f 2813/6 2814/6 1822/8 +f 1822/8 2814/6 980/8 +f 980/35 2814/35 2815/35 +f 980/35 2815/35 2816/35 +f 980/35 2816/35 2817/35 +f 980/35 2817/35 2818/35 +f 2818/35 1824/35 978/34 +f 1826/21 2819/21 2820/21 +f 2820/21 1828/21 1826/21 +f 2821/25 1828/21 2820/21 +f 2822/21 1826/21 1828/21 +f 2821/25 2820/21 2823/21 +f 2824/25 2821/25 2825/25 +f 2824/25 2825/25 2826/25 +f 2826/25 2827/25 2828/25 +f 2826/25 2828/25 2829/25 +f 2826/25 2829/25 1830/25 +f 2830/25 1830/25 2829/25 +f 2829/25 2831/25 2830/25 +f 2832/25 2830/25 2831/25 +f 2833/25 2832/25 2831/25 +f 2831/25 2834/25 2833/25 +f 2833/25 2834/25 1849/25 +f 1849/25 2832/25 2833/25 +f 2830/25 2832/25 1837/25 +f 1836/25 2830/25 1837/25 +f 1836/25 1831/38 1830/25 +f 1837/5 2832/5 2835/5 +f 1837/5 2835/5 1838/4 +f 2836/9 1839/4 1838/4 +f 2836/9 1838/4 2835/5 +f 2835/5 2837/9 2836/9 +f 2837/9 2838/9 2836/9 +f 2836/9 2838/9 2839/2 +f 2839/2 2840/2 2836/9 +f 2836/9 2840/2 2841/2 +f 2836/9 2841/2 2842/2 +f 2842/4 1839/4 2836/9 +f 2842/9 2841/9 2843/9 +f 2842/9 2843/9 2844/9 +f 2844/4 1840/4 2842/4 +f 2844/9 2843/9 2845/9 +f 2844/9 2845/9 2846/9 +f 2846/4 1841/4 2844/4 +f 2846/4 1842/5 1841/4 +f 2847/9 1842/5 2846/4 +f 2848/5 1842/5 2847/9 +f 2847/9 2849/5 2848/5 +f 1846/5 2848/5 2849/5 +f 2849/5 2850/5 1846/5 +f 1846/21 1843/21 2848/21 +f 2851/5 1848/5 1847/5 +f 2851/5 1847/5 2852/5 +f 2853/9 2851/9 2852/9 +f 2854/9 2853/9 2855/9 +f 2856/9 2854/9 2855/9 +f 2856/9 2855/9 2857/9 +f 2858/9 2856/9 2857/9 +f 2858/9 2857/9 2859/9 +f 2859/9 2860/9 2858/9 +f 2858/9 2860/9 2861/9 +f 2861/9 2862/9 2858/9 +f 2862/9 2863/5 2858/9 +f 2858/5 2863/5 2864/5 +f 2864/5 2863/5 2865/5 +f 2865/5 2863/5 2469/5 +f 2865/5 2469/5 2467/17 +f 2866/5 2865/5 2467/17 +f 2466/17 2866/17 2467/17 +f 2466/17 2867/17 2866/17 +f 2868/4 2866/4 2867/4 +f 2867/4 2864/4 2868/4 +f 2868/5 2864/5 2865/5 +f 2867/4 2869/4 2864/4 +f 2864/4 2869/4 2856/4 +f 2867/4 2870/4 2869/4 +f 2870/4 2871/4 2869/4 +f 2869/4 2871/4 2854/4 +f 2872/9 2854/4 2871/4 +f 2872/9 2873/9 2851/9 +f 2851/9 2873/9 2837/9 +f 2837/9 2873/9 2874/9 +f 2874/9 2838/9 2837/9 +f 2874/9 2875/4 2838/9 +f 2876/9 2838/9 2875/4 +f 2877/9 2838/9 2876/9 +f 2877/9 2876/9 2878/9 +f 2879/9 2877/9 2878/9 +f 2880/16 2881/16 2879/16 +f 2880/16 2882/16 2881/16 +f 2883/9 2884/4 2885/4 +f 2886/4 2887/4 2888/4 +f 2889/9 2890/9 2888/4 +f 2888/4 2890/9 2883/9 +f 2888/4 2883/9 2886/4 +f 2891/9 2883/9 2890/9 +f 2890/9 2892/9 2891/9 +f 2892/9 2877/9 2891/9 +f 2891/9 2877/9 2881/9 +f 2891/6 2881/16 2884/6 +f 2884/4 2881/9 2882/4 +f 2877/9 2892/9 2838/9 +f 2839/2 2892/9 2890/9 +f 2889/9 2839/2 2890/9 +f 2887/6 2893/6 2894/6 +f 2894/6 2893/6 2895/6 +f 2894/9 2896/2 2897/9 +f 2898/2 2899/2 2839/2 +f 2840/2 2899/2 2900/2 +f 2899/2 2901/2 2900/2 +f 2900/2 2901/2 2902/2 +f 2900/2 2902/2 2903/2 +f 2841/2 2900/2 2903/2 +f 2903/2 2902/2 2904/9 +f 2903/9 2904/9 2905/9 +f 2843/9 2903/9 2905/9 +f 2906/6 2847/9 2845/9 +f 2906/6 2845/9 2907/6 +f 2908/6 2906/6 2907/6 +f 2907/6 2845/9 2909/6 +f 2907/6 2909/6 2910/6 +f 2911/6 2910/6 2909/6 +f 2905/9 2911/6 2909/6 +f 2909/6 2845/9 2905/9 +f 2905/9 2904/9 2911/6 +f 2912/9 2911/9 2913/6 +f 2914/9 2912/9 2913/6 +f 2915/9 2914/9 2913/9 +f 2913/9 2916/8 2915/9 +f 2915/9 2916/8 2917/9 +f 2915/9 2917/9 2918/9 +f 2914/9 2915/9 2918/9 +f 2914/9 2918/9 2919/9 +f 2920/9 2914/9 2919/9 +f 2912/9 2920/9 2921/9 +f 2921/9 2922/9 2912/9 +f 2912/9 2922/9 2910/9 +f 2922/6 2923/6 2910/6 +f 2910/6 2923/6 2908/6 +f 2923/6 2924/6 2908/6 +f 2908/6 2924/6 2906/6 +f 2906/6 2924/6 2847/9 +f 2849/9 2925/9 2926/9 +f 2849/9 2926/9 2927/9 +f 2857/9 2927/9 2926/9 +f 2859/9 2926/9 2925/9 +f 2863/5 2862/9 2928/10 +f 2928/10 2929/10 2863/5 +f 2929/10 2472/5 2863/5 +f 2863/5 2472/5 2470/5 +f 2929/10 2930/5 2472/5 +f 2931/10 2932/10 2930/5 +f 2474/27 2930/5 2932/10 +f 2932/10 174/9 2474/27 +f 172/12 171/12 2474/27 +f 2475/12 171/12 1926/12 +f 172/12 2474/27 174/9 +f 175/9 174/9 2932/10 +f 2504/6 2502/6 2862/9 +f 2933/6 2934/6 2506/6 +f 2506/6 2504/6 2933/6 +f 2506/6 2934/6 2935/6 +f 2507/6 2506/6 2935/6 +f 2935/6 2936/6 2508/6 +f 2936/9 2937/9 2509/9 +f 2509/9 2937/9 2938/9 +f 2937/9 2939/9 2938/9 +f 2514/9 2938/9 2939/9 +f 2514/9 2939/9 2940/9 +f 2941/9 2942/9 2940/9 +f 2942/9 2943/9 2940/9 +f 2943/9 2944/9 2945/9 +f 2945/9 2946/9 2943/9 +f 2945/16 2516/16 2946/16 +f 2513/9 2940/9 2946/9 +f 2513/16 2946/16 2515/16 +f 2515/16 2946/16 2516/16 +f 2947/16 2948/16 2949/16 +f 2949/16 2948/16 2950/16 +f 2949/16 2951/16 2517/16 +f 2952/16 2517/16 2951/16 +f 2953/16 2952/16 2951/16 +f 2953/16 2951/16 2954/16 +f 2955/5 2956/5 2957/5 +f 2955/5 2958/5 2959/5 +f 2955/5 2959/5 2960/5 +f 2960/5 2959/5 2961/5 +f 2960/16 2961/16 2962/16 +f 2962/16 2954/16 2960/16 +f 2960/16 2954/16 2956/16 +f 2962/16 2953/16 2954/16 +f 2963/16 2953/16 2962/16 +f 2964/16 2963/16 2965/16 +f 2966/6 2967/6 2968/16 +f 2969/16 2966/6 2968/16 +f 2970/16 2969/16 2968/16 +f 2970/16 2968/16 2971/16 +f 2972/6 2970/6 2971/6 +f 2972/6 2971/6 2973/6 +f 2974/6 2975/6 2976/6 +f 2976/6 2975/6 2970/6 +f 2974/6 2977/6 2975/6 +f 2977/16 2978/16 2975/16 +f 2975/16 2978/16 2969/16 +f 2977/16 2952/16 2978/16 +f 2953/16 2969/16 2978/16 +f 2979/16 2980/16 2952/16 +f 2981/16 2980/16 2979/16 +f 2982/4 2981/4 2979/4 +f 2982/4 2979/4 2983/4 +f 2983/4 2984/4 2982/4 +f 2982/4 2984/4 2985/4 +f 2982/4 2985/4 2986/4 +f 2987/19 2988/4 2986/4 +f 2986/4 2988/4 2981/4 +f 2988/16 2989/16 2981/16 +f 2980/16 2989/16 2990/16 +f 2990/16 2991/16 2980/16 +f 2952/16 2980/16 2991/16 +f 2517/16 2991/16 2992/16 +f 2517/16 2992/16 2993/16 +f 2993/16 2994/16 2995/16 +f 2993/16 2995/16 2996/16 +f 2995/17 2997/17 2998/17 +f 2995/17 2998/17 2999/17 +f 2996/16 2995/16 2999/16 +f 2996/16 2999/16 3000/16 +f 3000/16 2518/16 2517/16 +f 2522/16 2518/16 3000/16 +f 3000/16 3001/16 2522/16 +f 3002/16 2522/16 3001/16 +f 2765/16 3002/16 3001/16 +f 2766/16 3001/16 3003/16 +f 2766/16 3003/16 3004/11 +f 2767/12 2766/12 3004/12 +f 3004/12 3005/12 2767/12 +f 2767/12 3005/12 3006/12 +f 3006/12 3007/12 2767/12 +f 3007/12 3008/12 2767/12 +f 2768/12 3008/12 3009/12 +f 2768/12 3009/12 3010/12 +f 3009/12 3011/12 3010/12 +f 2768/16 3010/16 3012/16 +f 2768/16 3012/16 3013/16 +f 3013/16 3014/16 3015/16 +f 2988/16 3016/16 3015/16 +f 2769/4 3015/12 3016/12 +f 2769/4 3016/12 2987/19 +f 3017/18 2769/4 2987/19 +f 3018/4 3019/4 2769/4 +f 2769/4 3019/4 3020/9 +f 2769/4 3020/9 2762/18 +f 2762/18 3020/9 2771/9 +f 3021/31 3020/31 3019/29 +f 3019/6 3022/7 3021/31 +f 3021/31 3023/31 2772/31 +f 3024/7 3023/31 3025/31 +f 3025/31 3026/31 3024/7 +f 3024/7 3027/31 3028/31 +f 3029/31 3028/31 3027/31 +f 3030/31 3029/31 3027/31 +f 3030/31 3027/31 3031/31 +f 3030/12 3031/5 3032/12 +f 3031/5 3033/5 3032/12 +f 2773/31 3032/31 3033/31 +f 3033/31 3034/31 2773/31 +f 3030/31 2773/31 3024/7 +f 3030/6 3024/7 3028/6 +f 3035/6 3030/6 3028/6 +f 3032/6 3035/6 3028/6 +f 3030/31 3035/31 2773/31 +f 3031/31 3034/31 3033/31 +f 3036/20 3034/31 3031/31 +f 3036/20 3031/31 3037/20 +f 3036/20 3037/20 2799/20 +f 3038/20 2784/20 3036/20 +f 2774/31 3034/31 2784/20 +f 2775/31 2774/31 2784/20 +f 2776/18 2777/18 2779/30 +f 2776/18 1792/29 2762/18 +f 2779/30 1792/29 2776/18 +f 2780/30 2779/30 2777/18 +f 2780/30 2775/18 2783/30 +f 2780/30 2777/18 2775/18 +f 2783/20 2775/18 2784/20 +f 2784/20 3034/31 3036/20 +f 3038/20 2785/20 2784/20 +f 3038/20 3039/20 2785/20 +f 3039/20 3040/20 2785/20 +f 2785/20 3040/20 3041/20 +f 3042/6 3041/6 3043/6 +f 3044/6 3042/6 3043/6 +f 3045/6 3044/6 3043/6 +f 3046/6 3045/6 3043/6 +f 3042/6 3047/6 3046/6 +f 3047/6 3048/6 3046/6 +f 3048/15 3047/15 3049/15 +f 3049/9 3050/9 3048/9 +f 3050/15 3042/15 3048/15 +f 3045/15 3048/15 3042/15 +f 3042/9 3050/9 3045/9 +f 3050/9 3049/9 3045/9 +f 3049/9 2786/9 3045/9 +f 2788/17 2786/9 3049/9 +f 2796/20 2788/21 3049/20 +f 2794/20 2788/21 2796/20 +f 2790/21 2794/20 2791/21 +f 2790/21 2788/21 2794/20 +f 2789/21 2788/21 2790/21 +f 3047/15 3042/15 3049/15 +f 2798/20 3049/20 3042/20 +f 3042/20 3046/20 2798/20 +f 3046/20 3043/20 2798/20 +f 3043/20 3051/20 2798/20 +f 3051/20 3052/20 2798/20 +f 2798/20 3052/20 3036/20 +f 3040/20 3036/20 3052/20 +f 3040/15 3052/15 3038/15 +f 3052/12 3051/12 3038/12 +f 3051/12 3043/12 3038/12 +f 3045/6 3046/6 3048/6 +f 3044/20 3045/20 2782/20 +f 3042/20 3044/20 2782/20 +f 2782/20 3041/20 3042/20 +f 3043/6 3041/6 3052/6 +f 3052/6 3053/6 3043/6 +f 3053/15 3040/15 3043/15 +f 3053/15 3052/15 3041/6 +f 3040/20 3053/20 3041/20 +f 3040/12 3039/12 3043/12 +f 3039/12 3038/12 3043/12 +f 3036/9 3040/17 3038/9 +f 3037/20 2803/31 2802/20 +f 3054/31 3055/31 3031/31 +f 3054/31 3056/31 3055/31 +f 3057/31 3056/31 3054/31 +f 3054/31 3027/31 3057/31 +f 3057/31 3027/31 3058/31 +f 3057/31 3058/31 3059/8 +f 3060/8 3059/8 3061/31 +f 3062/31 3060/8 3061/31 +f 3062/31 3061/31 3063/31 +f 3063/31 3064/31 3062/31 +f 3062/31 3064/31 3065/31 +f 3065/31 3064/31 3066/8 +f 3066/8 2808/8 3065/8 +f 3064/31 3067/29 3066/8 +f 3066/8 3067/6 3068/6 +f 3066/8 3068/6 2808/8 +f 3069/6 3068/6 3067/6 +f 3070/29 3069/29 3067/29 +f 3071/29 3072/29 3073/29 +f 3074/29 3071/29 3073/29 +f 3074/29 3073/29 3075/29 +f 3076/4 3074/4 3075/4 +f 3076/4 3075/4 3018/4 +f 3077/4 3078/4 3079/4 +f 3079/4 3078/4 3074/4 +f 3077/4 3080/4 3078/4 +f 3080/29 3081/29 3078/29 +f 3078/29 3081/29 3074/29 +f 3080/29 3082/29 3081/29 +f 3071/29 3081/29 3083/29 +f 3083/29 3084/29 3071/29 +f 3071/29 3084/29 3070/29 +f 3084/29 3085/29 3069/29 +f 3085/6 3086/6 3069/6 +f 3085/6 3087/6 3086/6 +f 2811/6 3086/6 3087/6 +f 2811/6 3087/6 3088/6 +f 3088/6 3089/6 2811/6 +f 2811/6 3089/6 2812/6 +f 3089/6 3090/6 2812/6 +f 2812/6 3090/6 3091/6 +f 2810/6 3091/6 3092/6 +f 2810/6 3092/6 2813/6 +f 2813/6 3093/6 3094/6 +f 3094/6 3093/6 3095/6 +f 3094/6 3095/6 3096/6 +f 3094/4 3096/4 3097/4 +f 3094/4 3097/4 2815/4 +f 3098/35 2816/35 3099/35 +f 3100/35 2817/35 3098/35 +f 3098/35 3101/35 3100/35 +f 1824/35 2818/35 3100/35 +f 3102/35 1824/35 3101/35 +f 3102/35 3101/35 3103/35 +f 3103/35 3104/35 3102/35 +f 3105/35 3106/21 1008/21 +f 1824/35 3105/35 1008/21 +f 3107/21 3108/21 1008/21 +f 3109/21 3107/21 1008/21 +f 3109/21 3110/21 3107/21 +f 2819/21 1826/21 3108/21 +f 2820/21 2819/21 3107/21 +f 3111/16 2825/23 2821/23 +f 2825/25 3111/16 3112/16 +f 3113/25 2825/25 3114/16 +f 3113/25 3115/25 2826/25 +f 2827/25 3115/25 3116/25 +f 3116/25 2828/25 2827/25 +f 2828/25 3117/25 2831/25 +f 3118/25 2831/25 3117/25 +f 3118/25 3119/25 2831/25 +f 2831/25 3119/25 3120/25 +f 3121/25 3120/25 3119/25 +f 3121/25 3119/25 3122/25 +f 3122/25 3123/25 3121/25 +f 3121/25 3123/25 3124/25 +f 3121/25 3124/25 1855/21 +f 1859/16 3124/16 3123/16 +f 3123/16 3125/16 1859/16 +f 3126/4 1859/19 3125/19 +f 3125/19 3127/19 3126/4 +f 3126/4 3127/19 3128/19 +f 3126/4 3128/19 1866/4 +f 1863/4 3126/4 1866/4 +f 1864/4 3129/4 3130/4 +f 3131/4 1864/4 3130/4 +f 1865/25 3132/25 3133/25 +f 3133/12 1867/12 1865/4 +f 3133/16 1869/16 1867/16 +f 1869/16 3133/16 3134/16 +f 1870/12 3134/5 3135/5 +f 3135/5 2416/12 1870/12 +f 2416/12 2444/12 1870/12 +f 1871/12 1870/12 2444/12 +f 2416/11 2445/11 2444/11 +f 2439/11 2444/11 2445/11 +f 2416/12 3135/5 2445/5 +f 3135/5 2449/5 2445/5 +f 2449/5 3135/5 3134/5 +f 2449/25 3134/25 3136/25 +f 3137/25 2449/25 3136/25 +f 2454/25 3137/25 2455/25 +f 2455/25 3137/25 3138/25 +f 2455/25 3139/25 2456/25 +f 3140/16 2882/16 3141/16 +f 3141/16 2882/16 2880/16 +f 3142/16 3141/16 2880/16 +f 3142/16 2880/16 2460/16 +f 3143/19 2461/5 2460/5 +f 2460/16 2879/16 3143/16 +f 3143/19 2462/5 2461/5 +f 3144/4 2462/5 3145/9 +f 3144/4 3145/9 3146/4 +f 3147/4 3144/4 3146/4 +f 3147/4 2870/4 2466/17 +f 3147/4 3148/4 2870/4 +f 3147/4 3149/4 3148/4 +f 3149/4 3146/4 2874/9 +f 2874/9 3146/4 2875/4 +f 3149/4 3150/9 3148/9 +f 2871/4 3148/4 3150/4 +f 2871/4 3150/4 2873/9 +f 2872/9 2871/4 2873/9 +f 2873/9 3150/4 3149/4 +f 3146/4 3149/4 3147/4 +f 2464/4 3144/4 3147/4 +f 3146/4 3145/9 2875/4 +f 2463/5 2462/5 3144/4 +f 3143/19 3145/9 2462/5 +f 3145/9 3143/19 2876/9 +f 2876/9 3143/19 2879/9 +f 2878/9 2876/9 2879/9 +f 2460/16 2880/16 2879/16 +f 2456/4 3139/4 3140/4 +f 3151/4 3152/4 3139/4 +f 3151/4 3139/4 3153/4 +f 2885/4 2884/4 3151/4 +f 3152/4 3151/4 2884/4 +f 2886/4 3151/4 3154/4 +f 3155/4 2893/4 3156/4 +f 3156/4 2893/4 3157/4 +f 3154/4 3156/4 3157/4 +f 3157/4 2886/4 3154/4 +f 3158/6 3159/6 3155/6 +f 3155/6 3160/6 2893/6 +f 3160/6 2895/6 2893/6 +f 3161/6 3162/6 3163/6 +f 2895/6 3161/6 3163/6 +f 3163/6 3162/6 3164/6 +f 3163/2 3164/2 2896/2 +f 2894/9 3163/2 2896/2 +f 3162/6 3165/6 3164/6 +f 3164/6 3165/6 3166/6 +f 3164/2 3166/2 2898/2 +f 2898/2 3166/2 3167/2 +f 3165/6 3168/7 3166/2 +f 3169/6 3170/2 3167/2 +f 2898/2 3167/2 3170/2 +f 3170/2 2901/2 2898/2 +f 3171/8 2901/2 3170/2 +f 2901/2 3172/8 2902/2 +f 2902/2 2913/6 2904/9 +f 2911/6 2904/9 2913/6 +f 2916/8 2913/6 2902/2 +f 3173/9 3174/9 2916/8 +f 2916/8 3174/9 2917/9 +f 3174/9 3175/2 2917/9 +f 3176/9 2917/9 3175/2 +f 3170/2 3175/2 3171/8 +f 3171/8 3174/9 3173/9 +f 3172/8 3171/8 3173/9 +f 3172/8 2916/8 2902/2 +f 3172/8 3173/9 2916/8 +f 3175/2 3170/2 3177/6 +f 3170/2 3178/6 3177/6 +f 3179/16 3176/16 3177/6 +f 3178/6 3180/16 3179/16 +f 3179/16 3180/16 3176/16 +f 3176/16 3180/16 3181/16 +f 3176/9 3181/9 2918/9 +f 2918/9 2917/9 3176/9 +f 2918/9 3181/9 2919/9 +f 3181/9 3182/9 2919/9 +f 2919/9 3182/9 3183/9 +f 3184/9 2919/9 3183/9 +f 3184/9 3183/9 3185/9 +f 3184/9 3185/9 3186/9 +f 2921/9 3184/9 3186/9 +f 3186/9 3187/9 2921/9 +f 3186/9 3188/9 3187/9 +f 3188/6 3189/6 3187/6 +f 3187/6 3189/6 3190/6 +f 3187/6 3190/6 2922/6 +f 3189/6 3191/6 3190/6 +f 3189/6 3192/6 3191/6 +f 2933/6 3193/6 2925/9 +f 3193/6 2504/6 2860/9 +f 2504/6 2861/9 2860/9 +f 2861/9 2504/6 2862/9 +f 2502/6 2928/10 2862/9 +f 2501/9 2928/10 2502/9 +f 3194/10 2501/9 1927/9 +f 175/9 2932/10 2931/10 +f 3194/10 175/9 2931/10 +f 2501/9 3194/10 2929/10 +f 2929/10 2928/10 2501/9 +f 3194/10 2930/5 2929/10 +f 3193/6 2860/9 2925/9 +f 3195/6 3192/6 3196/6 +f 3197/6 3195/6 3196/6 +f 3197/6 3196/6 3188/6 +f 3198/9 3197/9 3188/9 +f 3199/9 3197/9 3198/9 +f 3198/9 3200/9 3199/9 +f 3199/9 3200/9 3201/9 +f 3199/9 3201/9 3202/9 +f 3202/9 3203/9 3199/9 +f 3202/9 2936/9 3203/9 +f 3202/9 3201/9 2942/9 +f 2937/9 3202/9 2942/9 +f 2937/9 2942/9 2941/9 +f 2942/9 2944/9 2943/9 +f 3201/9 2944/9 2942/9 +f 3201/9 3204/9 2944/9 +f 3200/9 3205/9 3204/9 +f 3185/9 3205/9 3200/9 +f 3185/9 3200/9 3198/9 +f 3186/9 3185/9 3198/9 +f 3205/9 3183/9 3206/9 +f 3206/9 3207/9 3205/9 +f 3205/9 3207/9 3204/9 +f 3207/9 3208/9 3204/9 +f 3207/16 3209/16 3208/16 +f 3210/16 3208/16 3209/16 +f 2516/16 3210/16 3211/16 +f 3212/16 3211/16 3210/16 +f 3210/16 3209/16 3212/16 +f 3213/16 3212/16 3209/16 +f 3209/16 3214/16 3213/16 +f 3215/16 3213/16 3214/16 +f 3214/16 3216/16 3215/16 +f 3217/16 3215/16 3216/16 +f 3216/16 3218/16 3217/16 +f 3219/16 3217/16 3218/16 +f 3218/16 3180/16 3219/16 +f 3219/16 3180/16 3220/16 +f 3219/16 3221/16 3217/16 +f 3217/16 3221/16 3222/16 +f 3217/16 3222/16 3215/16 +f 3215/16 3222/16 3223/16 +f 3215/16 3223/16 3213/16 +f 3213/16 3223/16 3224/16 +f 3213/16 3224/16 3212/16 +f 3212/16 3224/16 3225/16 +f 3212/16 3225/16 3211/16 +f 3211/16 3225/16 3226/16 +f 3211/16 3226/16 2947/16 +f 2947/16 3226/16 3227/16 +f 3226/19 3228/4 3227/4 +f 3227/4 3228/4 3229/4 +f 3227/4 3229/4 3230/4 +f 3227/4 3230/4 3231/4 +f 2948/16 3227/16 3231/16 +f 3231/4 3230/4 3232/4 +f 3231/16 2951/16 2950/16 +f 2956/16 2951/16 3233/16 +f 2956/5 3233/19 3234/5 +f 2957/5 2956/5 3234/5 +f 3235/5 2957/5 3236/5 +f 3235/5 3236/5 3237/5 +f 3235/5 3237/5 3238/5 +f 3239/5 3235/5 3238/5 +f 3239/5 3238/5 3240/5 +f 2958/5 3239/5 2959/5 +f 2959/5 3239/5 3241/5 +f 2959/5 3241/5 3242/5 +f 3242/5 3243/5 3244/5 +f 2965/5 2961/5 3244/5 +f 3244/5 3245/5 2965/5 +f 2965/5 3245/5 3246/5 +f 3247/5 2965/5 3246/5 +f 3220/16 3248/6 3247/6 +f 2964/16 2965/16 3247/6 +f 2964/16 3247/6 2966/6 +f 3248/6 2966/6 3247/6 +f 2966/6 3248/6 2967/6 +f 3249/6 2967/6 3248/6 +f 2971/6 3249/6 3250/6 +f 3248/6 3250/6 3249/6 +f 3251/6 2973/6 3250/6 +f 3251/6 3252/6 2973/6 +f 3251/5 3253/5 3252/5 +f 3254/4 3253/5 3255/4 +f 3256/4 3254/4 3255/4 +f 3257/6 3254/6 3256/6 +f 3256/6 3258/6 3257/6 +f 3257/6 3258/6 3259/6 +f 3257/6 3259/6 3260/6 +f 3260/4 3261/4 3257/4 +f 3257/4 3261/4 3254/4 +f 3261/4 3262/4 3254/4 +f 3261/4 3263/4 3262/4 +f 3263/5 3264/5 3262/5 +f 3262/5 3264/5 3253/5 +f 3264/5 3263/5 3265/5 +f 3265/6 2976/6 3264/6 +f 3265/6 2974/6 2976/6 +f 2974/6 3265/6 2983/6 +f 2983/6 3265/6 2984/6 +f 2984/5 3265/5 3266/5 +f 3266/5 3267/5 2984/5 +f 3267/16 3266/16 3268/16 +f 3268/16 3269/16 3267/16 +f 3269/16 3270/6 3271/6 +f 3271/16 3272/16 3269/16 +f 3273/6 3272/16 3271/16 +f 3271/6 3274/6 3273/6 +f 3275/16 3276/16 3273/6 +f 3275/16 3277/16 3276/16 +f 3278/5 3276/5 3277/5 +f 3279/5 3278/5 3277/5 +f 3277/4 3275/5 3279/4 +f 3275/5 3280/5 3279/4 +f 3281/5 3280/5 3282/5 +f 3282/6 3283/6 3281/6 +f 3281/6 3283/6 3284/6 +f 3281/6 3284/6 3285/6 +f 3286/6 3281/6 3285/6 +f 3286/4 3287/4 3280/5 +f 3280/5 3287/4 3279/4 +f 3287/5 3288/5 3279/5 +f 3288/5 3287/5 3289/5 +f 3289/4 3079/4 3288/4 +f 3290/5 3289/5 3287/5 +f 3291/5 3289/5 3290/5 +f 3291/5 3290/5 3292/5 +f 3292/5 3293/5 3291/5 +f 3293/6 3294/6 3291/6 +f 3291/6 3294/6 3077/6 +f 3295/6 3296/6 3294/6 +f 3294/6 3296/6 3080/6 +f 3295/6 3297/7 3296/6 +f 3297/7 3298/7 3296/7 +f 3296/7 3298/7 3082/29 +f 3082/29 3298/7 3299/7 +f 3082/29 3299/7 3300/29 +f 3081/29 3082/29 3300/29 +f 3081/29 3300/29 3083/29 +f 3300/29 3301/29 3083/29 +f 3083/29 3301/29 3084/29 +f 3301/29 3302/29 3084/29 +f 3301/29 3303/29 3302/29 +f 3303/6 3304/6 3302/6 +f 3302/6 3304/6 3087/6 +f 3303/6 3305/6 3304/6 +f 3306/6 3304/6 3305/6 +f 3307/6 3089/6 3306/6 +f 3307/6 3308/6 3089/6 +f 3308/6 3090/6 3089/6 +f 3308/6 3309/6 3090/6 +f 3090/6 3310/6 3091/6 +f 3091/6 3310/6 3311/6 +f 3091/6 3311/6 3312/6 +f 3312/6 3313/6 3091/6 +f 3313/6 3314/6 3093/6 +f 3315/35 3316/35 3103/35 +f 3103/35 3097/35 3317/35 +f 3097/4 3096/4 3317/4 +f 3317/4 3096/4 3318/4 +f 3318/4 3314/4 3317/4 +f 3314/6 3318/6 3093/6 +f 3095/6 3093/6 3318/6 +f 3098/35 3099/35 3097/35 +f 3103/35 3098/35 3097/35 +f 3101/35 3098/35 3103/35 +f 3104/35 3103/35 3319/35 +f 3319/35 3320/35 3321/35 +f 3321/35 3104/35 3319/35 +f 3321/5 3322/5 3104/5 +f 3323/5 3104/5 3322/5 +f 3323/35 3324/35 3325/35 +f 3325/35 3324/35 3105/35 +f 3325/35 3105/35 3102/35 +f 3102/35 3104/35 3325/35 +f 3324/6 3259/6 3105/6 +f 3105/6 3259/6 3326/6 +f 3258/6 3326/6 3259/6 +f 3327/6 3326/6 3258/6 +f 3328/6 3327/6 3258/6 +f 3256/17 3329/17 3328/17 +f 3256/17 3330/17 3329/17 +f 3329/17 3330/17 3331/17 +f 3329/17 3331/17 3332/17 +f 3332/17 3333/17 3329/17 +f 3332/17 3334/17 3333/17 +f 3334/17 3335/17 3336/17 +f 3336/6 3337/6 3338/6 +f 3338/17 3339/17 3336/17 +f 3336/17 3339/17 3334/17 +f 3339/17 3340/17 3334/17 +f 3339/35 3341/21 3340/21 +f 3341/21 3342/21 3340/21 +f 3340/21 3342/21 3343/21 +f 3340/17 3343/17 3333/17 +f 3333/17 3343/17 3328/17 +f 3342/21 3344/21 3343/21 +f 3327/21 3343/21 3344/21 +f 3344/21 3106/21 3327/21 +f 3106/21 3344/21 1008/21 +f 3344/21 3109/21 1008/21 +f 3344/21 3342/21 3109/21 +f 3342/21 3345/21 3109/21 +f 3109/21 3345/21 3346/21 +f 3346/21 3345/21 3347/21 +f 3346/16 3348/16 3110/16 +f 3110/21 3348/21 3349/21 +f 3349/21 3350/21 3110/21 +f 3110/21 3350/21 3351/21 +f 3110/21 3351/21 3107/21 +f 2823/21 3351/21 3350/21 +f 2823/21 3350/21 3352/21 +f 2821/25 3352/21 3353/21 +f 3354/25 3355/25 3356/25 +f 3357/25 3358/25 3354/25 +f 3355/25 3354/25 3358/25 +f 3355/25 3358/25 3359/25 +f 3138/25 3359/25 3358/25 +f 3358/25 3139/25 3138/25 +f 3139/25 3358/25 3153/25 +f 3360/25 3359/25 3138/25 +f 3360/6 3138/6 3361/6 +f 3362/25 3360/25 3363/25 +f 3362/6 3363/11 3116/11 +f 3116/11 3363/11 3364/11 +f 3365/11 3366/11 3367/11 +f 2828/25 3365/25 3367/25 +f 3366/11 3368/11 3367/11 +f 3367/11 3368/11 3369/11 +f 3367/25 3369/25 3117/25 +f 3117/25 3369/25 3118/25 +f 3370/25 3122/25 3118/25 +f 3370/25 3371/25 3123/25 +f 3372/25 3373/25 3371/25 +f 3374/6 3129/6 3128/6 +f 3375/6 3129/6 3374/6 +f 3375/6 3376/6 3129/6 +f 3130/6 3376/6 3377/6 +f 3130/25 3377/25 3378/25 +f 3131/6 3130/6 3378/6 +f 3133/25 3131/25 3378/25 +f 3133/25 3378/25 3136/25 +f 3378/25 3377/25 3379/25 +f 3377/25 3380/25 3379/25 +f 3361/25 3379/25 3380/25 +f 3381/6 3360/6 3361/6 +f 3361/6 3382/6 3381/6 +f 3381/6 3382/6 3383/6 +f 3384/25 3385/25 3386/25 +f 3387/19 3388/4 3386/4 +f 3389/4 3386/4 3388/4 +f 3390/4 3389/4 3391/4 +f 3390/25 3392/25 3386/25 +f 3386/25 3392/25 3384/25 +f 3384/25 3392/25 3393/25 +f 3394/25 3384/25 3393/25 +f 3393/25 3395/25 3394/25 +f 3396/25 3397/25 3395/25 +f 3398/11 3395/11 3397/16 +f 3364/11 3365/11 3116/11 +f 3365/11 3364/11 3366/11 +f 3364/11 3399/11 3366/11 +f 3399/11 3398/11 3366/11 +f 3368/11 3366/11 3398/11 +f 3397/16 3368/11 3398/11 +f 3372/16 3400/11 3368/11 +f 3400/11 3372/16 3370/11 +f 3372/16 3397/16 3373/16 +f 3372/16 3368/11 3397/16 +f 3399/11 3394/11 3398/11 +f 3396/25 3373/25 3397/25 +f 3401/25 3371/25 3373/25 +f 3401/25 3373/25 3402/25 +f 3403/16 3401/16 3402/16 +f 3403/19 3128/19 3127/19 +f 3403/19 3127/19 3125/19 +f 3404/19 3128/19 3403/19 +f 3405/4 3404/19 3403/19 +f 3406/4 3407/4 3408/4 +f 3409/4 3410/4 3411/4 +f 3411/4 3408/4 3409/4 +f 3412/19 3406/4 3408/4 +f 3406/4 3404/19 3407/4 +f 3413/4 3406/4 3412/19 +f 3404/19 3413/4 3388/4 +f 3413/4 3404/19 3406/4 +f 3389/4 3414/4 3391/4 +f 3415/4 3391/4 3414/4 +f 3415/6 3414/6 3416/6 +f 3417/4 3415/4 3416/4 +f 3418/4 3419/4 3420/4 +f 3421/4 3422/4 3417/4 +f 3415/4 3390/4 3391/4 +f 3419/25 3423/25 3424/25 +f 3424/25 3423/25 3392/25 +f 3425/25 3393/25 3392/25 +f 3425/6 3414/6 3426/6 +f 3425/6 3426/6 3427/6 +f 3427/25 3395/25 3393/25 +f 3402/25 3373/25 3396/25 +f 3396/25 3428/25 3402/25 +f 3402/25 3428/25 3429/25 +f 3430/25 3431/25 3402/25 +f 3430/17 3432/4 3431/4 +f 3433/4 3432/4 3410/4 +f 3402/16 3432/16 3433/16 +f 3402/16 3433/16 3405/16 +f 3402/16 3431/16 3432/16 +f 3433/4 3408/4 3405/4 +f 3433/4 3410/4 3409/4 +f 3410/4 3432/4 3430/17 +f 3411/4 3410/4 3430/17 +f 3412/19 3434/17 3435/17 +f 3435/17 3426/4 3388/4 +f 3388/4 3413/4 3435/17 +f 3435/17 3413/4 3412/19 +f 3430/17 3435/17 3434/17 +f 3429/17 3428/17 3430/17 +f 3430/17 3428/17 3435/17 +f 3428/4 3427/4 3435/17 +f 3430/17 3434/17 3411/4 +f 3402/25 3429/25 3430/25 +f 3396/25 3427/25 3428/25 +f 3395/25 3427/25 3396/25 +f 3426/4 3435/17 3427/4 +f 3425/6 3423/6 3414/6 +f 3427/25 3393/25 3425/25 +f 3392/25 3423/25 3425/25 +f 3414/6 3423/6 3416/6 +f 3419/25 3418/25 3423/25 +f 3418/6 3417/6 3423/6 +f 3422/4 3436/4 3437/4 +f 3421/4 3436/4 3422/4 +f 3438/4 3436/4 3421/4 +f 3420/4 3419/4 3436/4 +f 3420/4 3436/4 3438/4 +f 3436/4 3419/4 3437/4 +f 3437/25 3419/25 3424/25 +f 3424/25 3390/25 3437/25 +f 3392/25 3390/25 3424/25 +f 3415/4 3437/4 3390/4 +f 3422/4 3437/4 3415/4 +f 3438/4 3421/4 3418/4 +f 3420/4 3438/4 3418/4 +f 3418/4 3421/4 3417/4 +f 3423/6 3417/6 3416/6 +f 3422/4 3415/4 3417/4 +f 3426/4 3414/4 3389/4 +f 3388/4 3426/4 3389/4 +f 3387/19 3374/19 3404/19 +f 3385/6 3381/6 3387/6 +f 3381/19 3383/19 3387/19 +f 3374/19 3387/19 3383/19 +f 3374/6 3383/6 3375/6 +f 3383/6 3376/6 3375/6 +f 3412/19 3408/4 3434/17 +f 3434/17 3408/4 3411/4 +f 3408/4 3433/4 3409/4 +f 3408/4 3407/4 3405/4 +f 3407/4 3404/19 3405/4 +f 3404/19 3374/19 3128/19 +f 3402/16 3405/16 3403/16 +f 3401/16 3403/16 3125/16 +f 3125/16 3123/16 3401/16 +f 3371/25 3401/25 3123/25 +f 3398/11 3394/11 3395/11 +f 3394/11 3399/11 3384/11 +f 3384/11 3399/11 3363/11 +f 3384/25 3363/25 3360/25 +f 3386/4 3389/4 3390/4 +f 3387/19 3404/19 3388/4 +f 3385/4 3387/19 3386/4 +f 3360/25 3385/25 3384/25 +f 3383/6 3382/6 3376/6 +f 3382/6 3380/6 3377/6 +f 3361/6 3380/6 3382/6 +f 3360/6 3381/6 3385/6 +f 3379/25 3136/25 3378/25 +f 3379/25 3137/25 3136/25 +f 3376/6 3382/6 3377/6 +f 3370/11 3372/16 3371/16 +f 3118/25 3400/25 3370/25 +f 3369/25 3400/25 3118/25 +f 3368/11 3400/11 3369/11 +f 3364/11 3363/11 3399/11 +f 3115/25 3360/25 3362/25 +f 3138/6 3379/6 3361/6 +f 3153/25 3358/25 3357/25 +f 3153/25 3357/25 3439/25 +f 3357/25 3440/25 3439/25 +f 3439/4 3440/4 3156/4 +f 3440/25 3158/25 3156/25 +f 3159/6 3441/6 3162/6 +f 3165/6 3441/6 3442/7 +f 3443/7 3168/7 3442/7 +f 3444/7 3168/7 3443/7 +f 3444/7 3443/7 3445/7 +f 3168/7 3444/7 3166/2 +f 3167/2 3446/7 3169/6 +f 3248/6 3178/6 3170/2 +f 3169/6 3248/6 3170/2 +f 3169/6 3447/6 3248/6 +f 3248/6 3447/6 3448/6 +f 3248/6 3448/6 3251/6 +f 3449/5 3251/5 3448/5 +f 3448/5 3450/5 3449/5 +f 3451/5 3449/5 3450/5 +f 3335/17 3332/17 3451/5 +f 3451/5 3452/19 3335/5 +f 3335/19 3452/19 3453/4 +f 3453/5 3452/19 3454/4 +f 3453/6 3454/6 3285/6 +f 3285/6 3337/6 3453/6 +f 3453/6 3337/6 3336/6 +f 3284/6 3455/6 3337/6 +f 3456/6 3455/6 3284/6 +f 3284/6 3283/6 3456/6 +f 3456/6 3283/6 3457/6 +f 3458/35 3459/35 3338/35 +f 3460/35 3338/35 3459/35 +f 3461/35 3460/35 3459/35 +f 3461/35 3459/35 3462/35 +f 3309/6 3461/6 3462/6 +f 3463/6 3461/6 3309/6 +f 3309/6 3464/6 3463/6 +f 3465/16 3466/16 3463/6 +f 3465/16 3467/16 3466/16 +f 3467/16 3468/16 3466/16 +f 3468/21 3469/21 3466/21 +f 3466/21 3469/21 3460/35 +f 3468/21 3347/21 3469/21 +f 3469/21 3470/35 3460/35 +f 3470/35 3469/21 3345/21 +f 3345/21 3341/21 3470/35 +f 3338/35 3455/35 3458/35 +f 3341/21 3345/21 3342/21 +f 3349/16 3348/16 3471/16 +f 3350/21 3472/21 3352/21 +f 3353/21 3352/21 3472/21 +f 3353/16 3472/16 3473/16 +f 3353/16 3473/16 3111/16 +f 3111/16 3473/16 3112/16 +f 3114/16 3474/16 3113/25 +f 3355/25 3115/25 3475/16 +f 3356/25 3355/25 3476/16 +f 3356/6 3476/16 3158/6 +f 3158/6 3476/16 3477/7 +f 3159/6 3158/6 3477/7 +f 3478/7 3442/7 3441/6 +f 3477/7 3478/7 3159/6 +f 3478/7 3477/7 3479/7 +f 3442/7 3478/7 3479/7 +f 3479/7 3480/7 3443/7 +f 3298/7 3480/7 3299/7 +f 3480/7 3481/7 3299/7 +f 3299/7 3481/7 3482/29 +f 3481/7 3483/29 3482/29 +f 3482/29 3483/29 3484/29 +f 3482/29 3484/29 3303/29 +f 3483/6 3485/6 3484/6 +f 3484/6 3485/6 3305/6 +f 3483/6 3486/6 3485/6 +f 3487/16 3485/6 3486/6 +f 3488/16 3487/16 3489/16 +f 3463/6 3488/16 3489/16 +f 3487/16 3490/16 3489/16 +f 3489/16 3490/16 3491/16 +f 3465/16 3489/16 3491/16 +f 3492/16 3493/16 3494/16 +f 3467/16 3495/16 3348/16 +f 3348/16 3468/16 3467/16 +f 3495/16 3467/16 3493/16 +f 3492/16 3471/16 3495/16 +f 3472/16 3471/16 3492/16 +f 3492/16 3494/16 3473/16 +f 3473/16 3494/16 3496/16 +f 3473/16 3496/16 3497/16 +f 3497/16 3496/16 3498/16 +f 3497/16 3498/16 3499/16 +f 3112/16 3497/16 3499/16 +f 3114/16 3499/16 3474/16 +f 3474/16 3115/25 3113/25 +f 3475/16 3115/25 3474/16 +f 3475/16 3476/16 3355/25 +f 3477/7 3500/7 3501/7 +f 3479/7 3501/7 3502/7 +f 3502/7 3480/7 3479/7 +f 3503/7 3504/7 3502/7 +f 3481/7 3502/7 3504/7 +f 3481/7 3504/7 3505/7 +f 3504/16 3506/16 3505/16 +f 3505/16 3506/16 3486/16 +f 3506/16 3490/16 3486/16 +f 3504/16 3507/16 3506/16 +f 3507/16 3490/16 3506/16 +f 3507/16 3508/16 3490/16 +f 3509/16 3508/16 3507/16 +f 3503/16 3509/16 3507/16 +f 3510/16 3509/16 3503/16 +f 3511/16 3510/16 3501/7 +f 3511/16 3512/16 3510/16 +f 3513/16 3510/16 3512/16 +f 3514/16 3513/16 3512/16 +f 3512/16 3515/16 3514/16 +f 3511/16 3500/16 3515/16 +f 3475/16 3515/16 3500/16 +f 3476/16 3475/16 3500/16 +f 3515/16 3475/16 3514/16 +f 3475/16 3474/16 3514/16 +f 3514/16 3499/16 3513/16 +f 3515/16 3512/16 3511/16 +f 3510/16 3513/16 3509/16 +f 3509/16 3513/16 3508/16 +f 3513/16 3498/16 3508/16 +f 3491/16 3508/16 3498/16 +f 3503/16 3507/16 3504/16 +f 3502/7 3510/16 3503/7 +f 3501/7 3510/16 3502/7 +f 3501/7 3500/7 3511/7 +f 3476/16 3500/7 3477/7 +f 3514/16 3474/16 3499/16 +f 3513/16 3499/16 3498/16 +f 3498/16 3496/16 3491/16 +f 3465/16 3496/16 3494/16 +f 3492/16 3495/16 3493/16 +f 3494/16 3493/16 3465/16 +f 3465/16 3491/16 3496/16 +f 3463/6 3489/16 3465/16 +f 3491/16 3490/16 3508/16 +f 3307/6 3487/16 3488/6 +f 3464/6 3307/6 3488/6 +f 3308/6 3307/6 3464/6 +f 3487/16 3486/16 3490/16 +f 3306/6 3485/6 3487/16 +f 3505/16 3486/16 3483/16 +f 3481/7 3505/7 3483/29 +f 3480/7 3502/7 3481/7 +f 3297/7 3480/7 3298/7 +f 3443/7 3480/7 3297/7 +f 3477/7 3501/7 3479/7 +f 3478/7 3441/6 3159/6 +f 3112/16 3499/16 3114/16 +f 3112/16 3473/16 3497/16 +f 3492/16 3473/16 3472/16 +f 3350/16 3471/16 3472/16 +f 3348/16 3495/16 3471/16 +f 3346/16 3468/16 3348/16 +f 3347/21 3345/21 3469/21 +f 3493/16 3467/16 3465/16 +f 3464/6 3488/6 3463/6 +f 3309/6 3308/6 3464/6 +f 3463/6 3466/16 3461/6 +f 3310/35 3516/35 3311/35 +f 3315/35 3311/35 3516/35 +f 3516/35 3316/35 3315/35 +f 3456/35 3320/35 3316/35 +f 3316/35 3516/35 3456/35 +f 3458/35 3456/35 3516/35 +f 3516/35 3517/35 3458/35 +f 3311/35 3315/35 3312/35 +f 3310/35 3517/35 3516/35 +f 3462/35 3517/35 3310/35 +f 3462/35 3459/35 3517/35 +f 3466/21 3460/35 3461/35 +f 3338/35 3460/35 3470/35 +f 3459/35 3458/35 3517/35 +f 3456/35 3457/35 3320/35 +f 3518/5 3457/5 3283/5 +f 3270/5 3322/5 3274/5 +f 3270/5 3323/5 3322/5 +f 3518/5 3274/5 3322/5 +f 3274/5 3518/5 3282/5 +f 3282/5 3275/5 3274/5 +f 3321/5 3457/5 3518/5 +f 3456/35 3458/35 3455/35 +f 3285/4 3454/4 3519/4 +f 3454/4 3290/4 3519/4 +f 3519/4 3290/4 3286/4 +f 3452/19 3292/5 3454/4 +f 3292/5 3452/19 3520/5 +f 3520/5 3452/19 3451/5 +f 3520/5 3451/5 3450/5 +f 3331/17 3449/5 3451/5 +f 3448/5 3520/5 3450/5 +f 3520/5 3448/5 3293/5 +f 3448/6 3295/6 3293/6 +f 3448/6 3447/6 3295/6 +f 3447/6 3169/6 3446/7 +f 3446/7 3445/6 3447/6 +f 3447/6 3445/6 3297/7 +f 3444/7 3446/7 3167/2 +f 3446/7 3444/7 3445/7 +f 3445/7 3443/7 3297/7 +f 3479/7 3443/7 3442/7 +f 3165/6 3442/7 3168/7 +f 3440/25 3356/25 3158/25 +f 3354/25 3356/25 3440/25 +f 3357/25 3354/25 3440/25 +f 3114/16 2825/25 3112/16 +f 3111/16 2821/23 3353/16 +f 2823/21 3352/21 2821/25 +f 2820/21 3351/21 2823/21 +f 3349/16 3471/16 3350/16 +f 3346/21 3347/21 3468/21 +f 3470/35 3341/21 3339/35 +f 3338/35 3470/35 3339/35 +f 3338/6 3337/6 3455/6 +f 3453/17 3336/17 3335/17 +f 3335/17 3334/17 3332/17 +f 3334/17 3340/17 3333/17 +f 3332/17 3331/17 3451/5 +f 3331/17 3253/5 3449/5 +f 3330/5 3253/5 3331/17 +f 3255/4 3330/17 3256/17 +f 3329/17 3333/17 3328/17 +f 3343/6 3327/6 3328/6 +f 3327/21 3106/21 3326/21 +f 3260/6 3324/6 3521/6 +f 3521/4 3268/4 3260/4 +f 3268/4 3261/4 3260/4 +f 3268/4 3263/4 3261/4 +f 3268/4 3266/4 3263/4 +f 3324/6 3323/6 3521/6 +f 3521/5 3323/5 3270/5 +f 3325/5 3104/5 3323/5 +f 3518/5 3322/5 3321/5 +f 3321/35 3320/35 3457/35 +f 3316/35 3320/35 3319/35 +f 3319/35 3103/35 3316/35 +f 3315/35 3317/35 3312/35 +f 3314/6 3312/6 3317/6 +f 3103/35 3317/35 3315/35 +f 3312/6 3314/6 3313/6 +f 3090/6 3462/6 3310/6 +f 3309/6 3462/6 3090/6 +f 3307/6 3306/6 3487/16 +f 3306/6 3305/6 3485/6 +f 3088/6 3304/6 3306/6 +f 3484/6 3305/6 3303/6 +f 3482/29 3303/29 3301/29 +f 3300/29 3482/29 3301/29 +f 3299/7 3482/29 3300/29 +f 3447/6 3297/7 3295/6 +f 3293/6 3295/6 3294/6 +f 3293/5 3292/5 3520/5 +f 3454/4 3292/4 3290/4 +f 3291/4 3077/4 3289/4 +f 3289/4 3077/4 3079/4 +f 3286/4 3290/4 3287/4 +f 3285/6 3519/6 3286/6 +f 3280/5 3281/5 3286/4 +f 3337/6 3285/6 3284/6 +f 3282/5 3518/5 3283/5 +f 3282/5 3280/5 3275/5 +f 3278/5 3279/5 3288/5 +f 3288/4 3076/4 3278/4 +f 3278/4 3076/4 3018/4 +f 3017/18 3278/4 3018/4 +f 3017/18 3018/4 2769/4 +f 2986/4 3522/4 3017/18 +f 3017/18 3522/4 3278/4 +f 3276/5 3278/5 3522/5 +f 3522/5 3272/5 3276/5 +f 3272/5 3522/5 2985/5 +f 2985/5 3267/5 3272/5 +f 3274/16 3275/16 3273/6 +f 3273/6 3276/16 3272/16 +f 3271/5 3270/5 3274/5 +f 3269/5 3521/5 3270/5 +f 3269/16 3272/16 3267/16 +f 3269/4 3268/4 3521/4 +f 3266/5 3265/5 3263/5 +f 3260/6 3259/6 3324/6 +f 3328/6 3258/6 3256/6 +f 3254/4 3262/4 3253/5 +f 3330/4 3255/4 3253/5 +f 3252/5 3253/5 3264/5 +f 3264/6 2972/6 3252/6 +f 3251/5 3449/5 3253/5 +f 3251/6 3250/6 3248/6 +f 2968/16 2967/6 3249/6 +f 3178/6 3248/6 3220/16 +f 3247/6 3246/6 3220/16 +f 3220/16 3246/6 3523/6 +f 3524/6 3523/6 3525/6 +f 3525/6 3526/6 3524/6 +f 3526/19 3527/19 3524/19 +f 3527/19 3528/19 3524/19 +f 3524/19 3528/19 3529/19 +f 3523/6 3529/6 3530/6 +f 3523/6 3530/6 3220/16 +f 3530/6 3531/16 3219/16 +f 3531/19 3530/19 3529/19 +f 3529/19 3528/19 3531/19 +f 3531/19 3528/19 3532/19 +f 3531/19 3532/19 3221/19 +f 3221/19 3532/19 3533/19 +f 3527/19 3532/19 3528/19 +f 3534/19 3535/19 3527/19 +f 3534/19 3536/19 3535/19 +f 3536/19 3537/19 3535/19 +f 3537/19 3533/19 3535/19 +f 3535/19 3533/19 3532/19 +f 3222/19 3533/19 3538/19 +f 3223/19 3538/19 3539/19 +f 3224/19 3539/19 3540/19 +f 3225/19 3540/19 3541/19 +f 3541/19 3542/19 3543/4 +f 3543/4 3542/19 3544/4 +f 3543/4 3544/4 3228/4 +f 3228/4 3544/4 3545/4 +f 3228/4 3545/4 3229/4 +f 3229/4 3546/4 3230/4 +f 3230/4 3547/4 3232/4 +f 3548/4 3232/4 3547/4 +f 3549/4 3548/4 3550/5 +f 3549/4 3233/19 3232/4 +f 3549/4 3550/5 3234/5 +f 3234/5 3550/5 3236/5 +f 3234/5 3236/5 2957/5 +f 3237/5 3236/5 3550/5 +f 3551/4 3237/5 3550/5 +f 3552/18 3544/4 3542/19 +f 3553/19 3552/18 3542/19 +f 3554/19 3553/19 3542/19 +f 3554/19 3542/19 3540/19 +f 3554/19 3555/19 3553/19 +f 3556/19 3553/19 3555/19 +f 3556/19 3555/19 3557/19 +f 3558/19 3556/19 3557/19 +f 3559/19 3558/19 3557/19 +f 3559/19 3557/19 3560/19 +f 3561/19 3559/19 3560/19 +f 3561/19 3560/19 3562/19 +f 3563/19 3561/19 3562/19 +f 3563/19 3562/19 3564/19 +f 3565/19 3563/19 3564/19 +f 3566/19 3563/19 3565/19 +f 3566/19 3567/19 3568/19 +f 3566/19 3568/19 3561/19 +f 3569/19 3568/19 3567/19 +f 3570/19 3569/19 3567/19 +f 3570/19 3567/19 3571/19 +f 3570/19 3571/19 3572/19 +f 3570/19 3572/19 3573/19 +f 3573/19 3574/19 3570/19 +f 3570/19 3574/19 3569/19 +f 3575/19 3569/19 3574/19 +f 3574/19 3576/19 3575/19 +f 3577/19 3575/19 3576/19 +f 3578/19 3579/19 3580/19 +f 3580/19 3579/19 3581/19 +f 3580/19 3581/19 3582/19 +f 3583/19 3580/19 3582/19 +f 3575/19 3583/19 3569/19 +f 3583/19 3575/19 3578/19 +f 3568/19 3569/19 3583/19 +f 3583/19 3558/19 3568/19 +f 3583/19 3582/19 3558/19 +f 3578/19 3580/19 3583/19 +f 3582/19 3581/19 3556/19 +f 3581/19 3579/19 3584/19 +f 3581/19 3584/19 3553/19 +f 3584/19 3552/18 3553/19 +f 3584/19 3585/19 3552/18 +f 3586/19 3585/19 3584/19 +f 3586/19 3587/19 3585/19 +f 3585/4 3587/4 3544/4 +f 3586/19 3588/4 3587/4 +f 3588/4 3589/4 3587/4 +f 3587/4 3589/4 3545/4 +f 3588/4 3590/4 3589/4 +f 3589/4 3590/4 3546/4 +f 3590/4 3591/19 3551/4 +f 3579/19 3578/19 3577/19 +f 3586/19 3579/19 3577/19 +f 3586/19 3584/19 3579/19 +f 3577/19 3591/19 3588/4 +f 3577/19 3576/19 3591/19 +f 3576/19 3592/19 3591/19 +f 3591/19 3592/19 3551/4 +f 3238/5 3237/5 3592/19 +f 3238/5 3592/19 3593/5 +f 3593/19 3592/19 3576/19 +f 3593/19 3576/19 3574/19 +f 3588/4 3591/19 3590/4 +f 3577/19 3588/4 3586/19 +f 3578/19 3575/19 3577/19 +f 3573/19 3593/19 3574/19 +f 3240/5 3593/5 3573/5 +f 3573/5 3594/5 3240/5 +f 3240/5 3594/5 3241/5 +f 3242/5 3241/5 3594/5 +f 3243/5 3242/5 3595/5 +f 3595/5 3596/9 3243/5 +f 3243/5 3596/9 3245/5 +f 3243/5 3245/5 3244/5 +f 3596/9 3597/5 3245/5 +f 3597/5 3246/5 3245/5 +f 3523/5 3597/5 3598/5 +f 3523/5 3246/5 3597/5 +f 3598/5 3597/5 3596/9 +f 3596/6 3526/6 3598/6 +f 3599/6 3526/6 3596/6 +f 3534/19 3599/19 3600/19 +f 3534/19 3600/19 3564/19 +f 3601/19 3600/19 3602/19 +f 3594/5 3601/19 3602/5 +f 3595/5 3594/5 3602/5 +f 3599/19 3595/5 3602/19 +f 3572/5 3601/19 3594/5 +f 3572/19 3571/19 3601/19 +f 3571/19 3565/19 3601/19 +f 3601/19 3565/19 3600/19 +f 3599/19 3602/19 3600/19 +f 3599/19 3596/9 3595/5 +f 3599/19 3527/19 3526/19 +f 3242/5 3594/5 3595/5 +f 3573/5 3572/5 3594/5 +f 3571/19 3567/19 3565/19 +f 3567/19 3566/19 3565/19 +f 3564/19 3600/19 3565/19 +f 3564/19 3562/19 3536/19 +f 3562/19 3603/19 3536/19 +f 3566/19 3561/19 3563/19 +f 3562/19 3560/19 3603/19 +f 3560/19 3604/19 3603/19 +f 3603/19 3604/19 3605/19 +f 3603/19 3605/19 3537/19 +f 3605/19 3538/19 3537/19 +f 3605/19 3604/19 3606/19 +f 3606/19 3539/19 3605/19 +f 3606/19 3604/19 3555/19 +f 3568/19 3559/19 3561/19 +f 3560/19 3557/19 3604/19 +f 3568/19 3558/19 3559/19 +f 3582/19 3556/19 3558/19 +f 3557/19 3555/19 3604/19 +f 3581/19 3553/19 3556/19 +f 3606/19 3555/19 3554/19 +f 3554/19 3540/19 3606/19 +f 3585/19 3544/4 3552/18 +f 3587/4 3545/4 3544/4 +f 3589/4 3546/4 3545/4 +f 3590/4 3547/4 3546/4 +f 3547/4 3551/4 3548/4 +f 3590/4 3551/4 3547/4 +f 3551/4 3550/5 3548/4 +f 3592/19 3237/5 3551/4 +f 3549/4 3232/4 3548/4 +f 3230/4 3546/4 3547/4 +f 3229/4 3545/4 3546/4 +f 3226/19 3541/19 3543/4 +f 3542/19 3541/19 3540/19 +f 3606/19 3540/19 3539/19 +f 3605/19 3539/19 3538/19 +f 3537/19 3538/19 3533/19 +f 3536/19 3603/19 3537/19 +f 3564/19 3536/19 3534/19 +f 3599/19 3534/19 3527/19 +f 3535/19 3532/19 3527/19 +f 3598/6 3526/6 3525/6 +f 3529/6 3523/6 3524/6 +f 3525/5 3523/5 3598/5 +f 3242/5 3244/5 2959/5 +f 3240/5 3241/5 3239/5 +f 3240/5 3238/5 3593/5 +f 3235/5 3239/5 2958/5 +f 2955/5 2957/5 3235/5 +f 3234/5 3233/19 3549/4 +f 2954/16 2951/16 2956/16 +f 3231/16 3233/16 2951/16 +f 3231/4 3232/4 3233/19 +f 3226/19 3543/4 3228/4 +f 3225/19 3541/19 3226/19 +f 3224/19 3540/19 3225/19 +f 3223/19 3539/19 3224/19 +f 3222/19 3538/19 3223/19 +f 3221/19 3533/19 3222/19 +f 3219/16 3531/16 3221/16 +f 3220/16 3530/6 3219/16 +f 3216/16 3182/16 3218/16 +f 3206/16 3182/16 3216/16 +f 3216/16 3214/16 3206/16 +f 2945/16 3208/16 3210/16 +f 3214/16 3209/16 3207/16 +f 3206/16 3214/16 3207/16 +f 3204/9 3208/9 2944/9 +f 3200/9 3204/9 3201/9 +f 3199/9 3203/9 3197/9 +f 3203/6 3195/6 3197/6 +f 3203/6 2935/6 3195/6 +f 2935/6 2934/6 3195/6 +f 3195/6 2934/6 3192/6 +f 3196/6 3192/6 3189/6 +f 3188/6 3196/6 3189/6 +f 3198/9 3188/9 3186/9 +f 3185/9 3183/9 3205/9 +f 2920/9 2919/9 3184/9 +f 3206/9 3183/9 3182/9 +f 3181/16 3218/16 3182/16 +f 3180/16 3218/16 3181/16 +f 3178/6 3220/16 3180/16 +f 3179/16 3177/6 3178/6 +f 3177/6 3176/16 3175/2 +f 3174/9 3171/8 3175/2 +f 3172/8 2901/2 3171/8 +f 3444/7 3167/2 3166/2 +f 3162/6 3441/6 3165/6 +f 3162/6 3161/6 3159/6 +f 3160/6 3159/6 3161/6 +f 3155/6 3159/6 3160/6 +f 3160/6 3161/6 2895/6 +f 3155/6 3156/6 3158/6 +f 3439/4 3156/4 3154/4 +f 3151/4 3439/4 3154/4 +f 3153/4 3439/4 3151/4 +f 2455/25 3138/25 3139/25 +f 3138/25 3137/25 3379/25 +f 2451/25 2449/25 3137/25 +f 2453/25 2451/25 3137/25 +f 3136/25 3134/25 3133/25 +f 3133/25 3132/25 3131/25 +f 3132/4 1864/4 3131/4 +f 3130/4 3129/4 3376/4 +f 3128/19 3129/4 1866/4 +f 1859/19 3126/4 1862/4 +f 3123/25 3122/25 3370/25 +f 3118/25 3122/25 3119/25 +f 3121/25 1854/25 3120/25 +f 1854/25 2834/25 3120/25 +f 1854/25 1853/21 2834/25 +f 2834/25 1853/21 1850/25 +f 3367/25 3117/25 2828/25 +f 3116/25 3365/25 2828/25 +f 3116/11 3115/6 3362/6 +f 3115/25 3359/25 3360/25 +f 3115/25 3355/25 3359/25 +f 2820/21 3107/21 3351/21 +f 3110/21 3109/21 3346/21 +f 3107/21 2819/21 3108/21 +f 3105/35 3326/21 3106/21 +f 1824/35 3102/35 3105/35 +f 3100/35 3101/35 1824/35 +f 2818/35 2817/35 3100/35 +f 2815/35 3097/35 3099/35 +f 3095/4 3318/4 3096/4 +f 3313/6 3093/6 2813/6 +f 3313/6 2813/6 3092/6 +f 3091/6 3313/6 3092/6 +f 3306/6 3089/6 3088/6 +f 3088/6 3087/6 3304/6 +f 2811/6 3068/6 3086/6 +f 3302/6 3087/6 3085/6 +f 3084/29 3302/29 3085/29 +f 3296/7 3082/29 3080/29 +f 3294/6 3080/6 3077/6 +f 3288/4 3079/4 3076/4 +f 3018/4 3075/4 3022/4 +f 3075/29 3607/29 3022/7 +f 3021/31 3022/7 3607/29 +f 3023/31 3021/31 3608/31 +f 3608/31 3607/29 3072/29 +f 3072/29 3609/31 3608/31 +f 3609/31 3064/31 3610/31 +f 3608/31 3609/31 3610/31 +f 3610/31 3023/31 3608/31 +f 3611/31 3025/31 3610/31 +f 3026/4 3611/19 3612/4 +f 3058/31 3612/31 3611/31 +f 3058/31 3611/31 3061/31 +f 3063/31 3061/31 3611/31 +f 3610/31 3063/31 3611/31 +f 3610/31 3025/31 3023/31 +f 3609/31 3070/29 3064/31 +f 3607/29 3608/31 3021/31 +f 3079/4 3074/4 3076/4 +f 3075/29 3073/29 3607/29 +f 3081/29 3071/29 3074/29 +f 3072/29 3607/29 3073/29 +f 3609/31 3072/29 3070/29 +f 3071/29 3070/29 3072/29 +f 3084/29 3069/29 3070/29 +f 3069/6 3086/6 3068/6 +f 3064/31 3070/29 3067/29 +f 3063/31 3610/31 3064/31 +f 3065/8 3060/8 3062/8 +f 2807/8 3060/8 3065/8 +f 3059/8 3060/8 2807/8 +f 3613/8 3057/8 3059/8 +f 2806/8 3613/8 3059/8 +f 3613/8 3056/31 3057/8 +f 3613/8 2805/8 3056/31 +f 3059/8 3058/31 3061/31 +f 3027/31 3612/31 3058/31 +f 2803/31 3037/20 3055/31 +f 3055/31 3037/20 3031/31 +f 3035/31 3032/31 2773/31 +f 3054/31 3031/31 3027/31 +f 3029/12 3030/12 3032/12 +f 3028/12 3029/12 3032/12 +f 3612/31 3027/31 3024/7 +f 3612/4 3024/7 3026/4 +f 3025/31 3611/31 3026/31 +f 2773/31 3023/31 3024/7 +f 3021/31 2772/31 3020/31 +f 3020/9 2772/9 2771/9 +f 3018/4 3022/4 3019/4 +f 2989/16 3015/16 3014/16 +f 2990/16 3014/16 3614/16 +f 3615/11 2990/16 3614/16 +f 3615/11 3614/6 3616/6 +f 3616/6 3617/6 3618/6 +f 3618/6 3619/6 3620/6 +f 3620/6 3621/6 3622/6 +f 3621/6 3623/6 3622/6 +f 3622/6 3623/6 3624/6 +f 2994/17 3624/17 3625/17 +f 2994/17 3625/17 3626/17 +f 3627/17 3626/17 3625/17 +f 3623/17 3627/17 3625/17 +f 3623/6 3628/6 3627/6 +f 3629/17 3627/17 3630/4 +f 3629/17 3630/4 3631/17 +f 3631/17 2997/17 3629/17 +f 3629/17 2997/17 3626/17 +f 3631/17 2998/17 2997/17 +f 3632/4 2998/17 3631/17 +f 3632/4 3631/17 3633/17 +f 3634/4 3635/4 3636/4 +f 3637/4 3638/4 3634/4 +f 3639/4 3637/4 3634/4 +f 3640/6 3637/6 3639/6 +f 3641/6 3640/6 3639/6 +f 3641/4 3639/4 3636/4 +f 3642/6 3640/6 3643/6 +f 3642/6 3643/6 3644/6 +f 3644/6 3645/6 3642/6 +f 3642/6 3645/6 3646/6 +f 3640/6 3646/6 3647/6 +f 3648/12 3649/12 3650/12 +f 3649/12 3651/12 3650/12 +f 3007/12 3006/12 3649/12 +f 3006/12 3651/12 3649/12 +f 3006/12 3652/12 3651/12 +f 3638/6 3651/6 3652/6 +f 3638/6 3652/6 3653/6 +f 3653/4 3654/4 3655/4 +f 3653/4 3655/4 3634/4 +f 3655/4 3635/4 3634/4 +f 3636/4 3635/4 3655/4 +f 3636/4 3655/4 3632/4 +f 3656/17 3657/17 3632/4 +f 3657/17 3656/17 2999/17 +f 2999/17 3656/17 3658/17 +f 3656/6 3659/6 3658/16 +f 3658/16 3659/6 3003/16 +f 3004/11 3003/16 3659/6 +f 3656/6 3660/6 3659/6 +f 3654/6 3659/6 3660/6 +f 3654/4 3660/17 3661/17 +f 3661/4 3655/4 3654/4 +f 3632/4 3655/4 3661/4 +f 3661/6 3660/6 3656/6 +f 3661/17 3656/17 3632/4 +f 3654/6 3653/6 3659/6 +f 3653/6 3005/6 3659/6 +f 3653/6 3652/6 3005/6 +f 3007/12 3649/12 3648/12 +f 3647/12 3648/12 3650/12 +f 3650/12 3651/12 3647/12 +f 3647/12 3651/9 3637/9 +f 3647/12 3011/12 3648/12 +f 3011/12 3009/12 3648/12 +f 3662/6 3011/6 3647/6 +f 3645/6 3663/6 3662/6 +f 3012/16 3663/6 3014/16 +f 3010/16 3663/6 3012/16 +f 3010/16 3662/6 3663/6 +f 3614/6 3663/6 3645/6 +f 3646/6 3662/6 3647/6 +f 3645/6 3662/6 3646/6 +f 3644/6 3616/6 3645/6 +f 3628/6 3621/6 3619/6 +f 3628/6 3619/6 3617/6 +f 3643/6 3628/6 3617/6 +f 3664/6 3628/6 3643/6 +f 3636/4 3664/4 3641/4 +f 3636/4 3630/4 3664/4 +f 3664/6 3627/6 3628/6 +f 3643/6 3617/6 3644/6 +f 3646/6 3640/6 3642/6 +f 3641/6 3664/6 3643/6 +f 3643/6 3640/6 3641/6 +f 3640/6 3647/6 3637/6 +f 3637/9 3651/9 3638/9 +f 3653/4 3634/4 3638/4 +f 3636/4 3639/4 3634/4 +f 3636/4 3633/17 3630/4 +f 3632/4 3633/17 3636/4 +f 3633/17 3631/17 3630/4 +f 3657/17 2998/17 3632/4 +f 3664/6 3630/6 3627/6 +f 3623/6 3621/6 3628/6 +f 3627/17 3629/17 3626/17 +f 2994/16 3622/6 3624/6 +f 2994/16 3665/6 3622/6 +f 3622/6 3665/6 3620/6 +f 3665/6 3615/11 3620/6 +f 3620/6 3615/11 3618/6 +f 3618/6 3615/11 3616/6 +f 3665/6 3666/16 3615/11 +f 2992/16 3666/16 3665/6 +f 2992/16 2991/16 3666/16 +f 2993/16 3665/6 2994/16 +f 3623/17 3625/17 3624/17 +f 3620/6 3619/6 3621/6 +f 3618/6 3617/6 3619/6 +f 3616/6 3644/6 3617/6 +f 3616/6 3614/6 3645/6 +f 3666/16 2990/16 3615/11 +f 3614/16 3014/16 3663/6 +f 3013/16 3012/16 3014/16 +f 2769/4 3013/12 3015/12 +f 3011/6 3662/6 3010/16 +f 3648/12 3009/12 3008/12 +f 3648/12 3008/12 3007/12 +f 3005/12 3652/12 3006/12 +f 3004/11 3659/6 3005/6 +f 3658/16 3003/16 3001/16 +f 3000/16 3658/16 3001/16 +f 2999/16 3658/16 3000/16 +f 2999/17 2998/17 3657/17 +f 2995/17 3626/17 2997/17 +f 2994/17 3626/17 2995/17 +f 2993/16 2992/16 3665/6 +f 2991/16 2990/16 3666/16 +f 3014/16 2990/16 2989/16 +f 2988/16 3015/16 2989/16 +f 2987/16 3016/16 2988/16 +f 3017/18 2987/19 2986/4 +f 2986/4 2985/4 3522/4 +f 2985/5 2984/5 3267/5 +f 2983/6 2979/6 2977/6 +f 2986/4 2981/4 2982/4 +f 2981/16 2989/16 2980/16 +f 2979/16 2952/16 2977/16 +f 2983/6 2977/6 2974/6 +f 3264/6 2976/6 2972/6 +f 3252/6 2972/6 2973/6 +f 2973/6 2971/6 3250/6 +f 2976/6 2970/6 2972/6 +f 2971/16 2968/16 3249/6 +f 2975/16 2969/16 2970/16 +f 2953/16 2966/6 2969/16 +f 2965/16 2963/16 2961/16 +f 2966/6 2963/16 2964/16 +f 2966/6 2953/16 2963/16 +f 2962/16 2961/16 2963/16 +f 3244/5 2961/5 2959/5 +f 2958/5 2955/5 3235/5 +f 2960/5 2956/5 2955/5 +f 2978/16 2952/16 2953/16 +f 2517/16 2952/16 2991/16 +f 2950/16 2951/16 2949/16 +f 2948/16 3231/16 2950/16 +f 2947/16 3227/16 2948/16 +f 2949/16 2516/16 2947/16 +f 3211/16 2947/16 2516/16 +f 3210/16 2516/16 2945/16 +f 2945/9 2944/9 3208/9 +f 2943/9 2946/9 2940/9 +f 2940/9 2939/9 2941/9 +f 2512/9 2938/9 2514/9 +f 2512/9 2510/9 2938/9 +f 2937/9 2941/9 2939/9 +f 2937/9 2936/9 3202/9 +f 3203/6 2936/6 2935/6 +f 3192/6 2934/6 2933/6 +f 2504/6 3193/6 2933/6 +f 3194/10 1927/9 175/9 +f 2931/10 2930/5 3194/10 +f 2925/9 3192/6 2933/6 +f 3190/6 3191/6 2923/6 +f 3191/6 2925/9 2924/6 +f 2924/6 2925/9 2847/9 +f 2925/9 3191/6 3192/6 +f 2847/9 2925/9 2849/9 +f 2923/6 3191/6 2924/6 +f 2922/6 3190/6 2923/6 +f 2921/9 3187/9 2922/9 +f 2921/9 2920/9 3184/9 +f 2914/9 2920/9 2912/9 +f 2912/9 2910/9 2911/9 +f 2910/6 2908/6 2907/6 +f 2898/2 2901/2 2899/2 +f 2896/2 3164/2 2898/2 +f 2839/2 2896/2 2898/2 +f 2889/9 2896/2 2839/2 +f 2895/6 3163/6 2894/6 +f 2887/4 3157/4 2893/4 +f 2894/9 2897/9 2887/4 +f 2888/4 2897/9 2889/9 +f 2897/9 2896/2 2889/9 +f 2888/4 2887/4 2897/9 +f 2886/4 3157/4 2887/4 +f 2885/4 3151/4 2886/4 +f 2886/4 2883/9 2885/4 +f 2883/9 2891/9 2884/4 +f 3152/4 2884/4 2882/4 +f 3140/4 3139/4 3152/4 +f 3152/4 2882/4 3140/4 +f 2879/9 2881/9 2877/9 +f 2875/4 3145/9 2876/9 +f 2873/9 3149/4 2874/9 +f 2853/9 2872/9 2851/9 +f 2853/9 2854/9 2872/9 +f 2870/4 3148/4 2871/4 +f 2466/17 2870/4 2867/4 +f 2865/5 2866/5 2868/5 +f 2863/5 2470/5 2469/5 +f 2859/9 2925/9 2860/9 +f 2859/9 2857/9 2926/9 +f 2864/4 2856/4 2858/4 +f 2857/9 2855/9 2927/9 +f 2927/9 2855/9 3667/9 +f 2927/9 3667/9 2852/9 +f 2850/9 2927/9 2852/9 +f 2852/9 3667/9 2853/9 +f 2855/9 2853/9 3667/9 +f 2869/4 2854/4 2856/4 +f 2852/5 1847/5 2850/5 +f 2837/9 1848/5 2851/5 +f 2837/9 2835/5 1848/5 +f 2850/5 1847/5 1846/5 +f 2849/9 2927/9 2850/9 +f 2846/9 2845/9 2847/9 +f 2843/9 2905/9 2845/9 +f 2841/9 2903/9 2843/9 +f 2840/2 2900/2 2841/2 +f 2839/2 2899/2 2840/2 +f 2838/9 2892/9 2839/2 +f 1849/25 2835/25 2832/25 +f 1849/25 2834/25 1850/21 +f 3120/25 2834/25 2831/25 +f 1836/25 1830/25 2830/25 +f 2831/25 2829/25 2828/25 +f 2826/25 3115/25 2827/25 +f 1830/25 2824/25 2826/25 +f 2826/25 2825/25 3113/25 +f 1829/25 2821/25 2824/25 +f 3108/21 1826/21 1008/21 +f 2818/35 978/34 980/35 +f 3098/35 2817/35 2816/35 +f 3099/35 2816/35 2815/35 +f 2814/35 3094/35 2815/35 +f 3094/6 2814/6 2813/6 +f 2810/6 2812/6 3091/6 +f 2809/6 3068/6 2811/6 +f 2810/6 1822/8 2804/8 +f 3068/6 2809/6 2808/8 +f 3065/8 2808/8 2807/8 +f 2806/8 3059/8 2807/8 +f 2806/8 2805/8 3613/8 +f 1817/9 2803/31 2805/8 +f 2803/31 3056/31 2805/8 +f 3056/31 2803/31 3055/31 +f 2800/20 3037/20 2802/20 +f 2799/20 3037/20 2800/20 +f 2798/20 3036/20 2799/20 +f 2796/20 3049/20 2798/20 +f 2795/20 2794/20 2796/20 +f 2797/20 2801/20 2795/20 +f 1815/9 2795/9 2801/9 +f 1815/6 2793/6 2795/6 +f 2795/20 2793/21 2794/20 +f 1813/9 1809/9 2792/9 +f 1805/21 2790/21 2791/21 +f 1799/21 2788/21 2789/21 +f 2782/20 3045/20 2786/20 +f 3041/20 2782/20 2785/20 +f 2782/20 2787/20 1799/21 +f 2781/29 2780/30 2783/30 +f 2778/29 1797/29 1792/29 +f 1792/29 2760/29 2762/18 +f 2773/31 3034/31 2774/31 +f 2773/31 2772/31 3023/31 +f 2776/18 2771/9 2770/9 +f 2768/12 3013/12 2769/4 +f 2768/12 2767/12 3008/12 +f 2765/16 3001/16 2766/16 +f 2764/16 3002/16 2765/16 +f 2764/16 3668/16 3002/16 +f 2523/16 3002/16 3668/16 +f 2763/12 3668/5 2764/12 +f 2763/12 3669/5 3668/5 +f 2524/5 3668/5 3669/5 +f 2524/5 3670/5 3671/5 +f 2524/5 3671/4 2525/4 +f 3670/5 3672/5 3671/5 +f 3671/5 3672/5 2529/5 +f 2525/4 3671/4 2529/4 +f 3670/5 3673/12 3672/5 +f 3673/12 3674/9 3672/5 +f 3672/5 3674/9 2530/5 +f 2530/5 3674/9 3675/5 +f 2530/7 3675/7 3676/7 +f 3677/5 2536/5 3678/37 +f 3678/37 3679/37 3677/5 +f 3677/5 3679/37 3680/37 +f 3680/37 3681/5 3677/5 +f 3677/5 3681/5 2761/5 +f 3677/5 2761/5 3682/5 +f 3677/5 3682/5 3683/5 +f 3677/5 3683/5 2538/5 +f 3684/5 2538/5 3683/5 +f 3685/9 2546/9 2540/5 +f 3685/9 2540/5 3686/12 +f 2554/33 2550/15 2549/33 +f 3687/7 2554/33 2549/33 +f 3688/6 3687/7 2549/33 +f 3688/4 2549/9 3689/9 +f 3688/4 3689/9 3690/4 +f 3688/4 3690/4 3691/4 +f 3688/4 3691/4 3687/4 +f 3687/4 3692/4 2556/4 +f 2556/4 3692/4 3693/4 +f 3694/5 3695/5 3693/4 +f 3693/7 2629/33 2555/33 +f 3693/7 3695/33 2629/33 +f 3695/5 3696/5 2627/5 +f 3697/16 3698/16 2633/16 +f 3698/16 3697/16 3699/25 +f 3698/16 3699/25 2634/16 +f 2634/16 3699/25 2643/25 +f 3699/25 3697/16 3700/16 +f 3700/16 3696/25 3701/25 +f 3696/25 3702/16 2628/11 +f 3700/16 3703/16 3702/16 +f 3702/16 3703/16 2628/11 +f 3703/16 3700/16 3697/16 +f 3702/16 3696/25 3700/16 +f 3703/16 3697/16 2633/16 +f 3699/25 3700/16 3701/25 +f 3701/5 2645/5 3699/5 +f 3696/5 3704/5 3701/5 +f 3704/5 2645/5 3701/5 +f 3695/5 3704/5 3696/5 +f 3694/5 3704/5 3695/5 +f 3694/5 3705/4 3706/5 +f 3706/5 3705/4 3707/4 +f 3706/5 3708/5 3694/5 +f 3708/11 3709/11 3710/11 +f 3708/11 3710/11 3711/11 +f 3704/5 3708/5 3711/5 +f 3711/5 3712/5 3704/5 +f 3704/5 3712/5 3713/5 +f 3704/5 3713/5 2645/5 +f 2645/5 3713/5 3714/5 +f 2645/5 3714/5 3715/5 +f 2649/9 2646/9 2651/19 +f 2644/5 3715/5 2651/19 +f 3715/5 3714/5 3716/5 +f 3715/5 3716/5 2652/37 +f 3713/5 3716/5 3714/5 +f 3713/5 3712/5 3717/5 +f 3717/5 2652/37 3716/5 +f 3718/10 2652/37 3717/5 +f 3718/10 2653/10 2652/37 +f 3719/10 2653/10 3718/10 +f 3719/10 3718/10 3710/10 +f 3720/10 3719/10 3710/10 +f 3720/11 3710/11 3721/11 +f 3722/11 3723/11 3721/11 +f 3721/11 3723/11 3720/11 +f 3720/11 3723/11 3724/11 +f 3720/10 3724/37 2655/10 +f 2655/10 1709/10 3719/10 +f 2655/10 3724/37 2654/37 +f 3724/37 2667/37 2654/37 +f 3723/11 2668/11 3724/11 +f 3725/11 2668/11 3723/11 +f 3723/11 3726/11 3725/11 +f 3725/11 3726/11 3727/11 +f 3728/11 3725/11 3727/11 +f 3728/11 3727/11 3729/11 +f 3730/9 3728/9 3729/9 +f 3730/9 3729/9 3731/9 +f 2676/9 3730/9 3731/9 +f 2678/9 2676/9 3731/9 +f 3732/9 2678/9 3731/9 +f 3733/9 3732/9 3734/9 +f 2739/11 3734/6 3735/11 +f 2739/11 3735/11 3726/11 +f 3726/11 2741/11 2739/11 +f 3722/11 2741/11 3726/11 +f 3722/11 3709/11 3708/11 +f 3706/11 3722/11 3708/11 +f 3721/11 3709/11 3722/11 +f 3735/11 3727/11 3726/11 +f 3735/11 3729/11 3727/11 +f 3734/6 3729/11 3735/11 +f 2741/11 3722/11 3707/11 +f 3736/11 3737/11 2741/11 +f 2741/11 3707/11 3738/11 +f 3738/11 3707/11 3739/11 +f 3738/11 3739/11 3740/11 +f 3741/11 3738/11 3740/11 +f 3741/11 3740/11 3742/11 +f 3682/5 3742/5 3686/12 +f 3682/5 2761/5 3743/5 +f 3743/5 2761/5 3744/5 +f 3743/16 3744/16 3745/16 +f 3745/16 3741/11 3743/16 +f 3743/16 3741/11 3742/11 +f 3745/16 3738/11 3741/11 +f 3746/11 3736/11 2741/11 +f 3746/11 3747/11 3736/11 +f 3747/11 3748/11 3736/11 +f 3747/5 3749/19 3748/19 +f 3749/19 3750/4 3748/19 +f 3748/11 3750/16 2742/16 +f 3748/11 2742/16 3737/11 +f 3750/16 3751/16 2742/16 +f 2742/16 3751/16 2744/16 +f 3750/4 3752/4 3751/4 +f 3753/4 3751/4 3752/4 +f 3754/9 3755/4 3753/4 +f 3754/4 3753/4 3756/4 +f 3754/4 3756/4 3757/4 +f 3754/4 3757/4 3758/4 +f 3759/4 3754/4 3758/4 +f 3759/4 3758/4 3760/4 +f 3759/4 3760/4 3761/17 +f 3759/4 3762/4 3755/4 +f 3763/4 3764/4 3762/4 +f 3763/16 2745/16 3764/16 +f 2745/16 2744/16 3764/16 +f 2747/16 2745/16 3763/16 +f 3763/16 3765/16 2747/16 +f 3763/4 3761/17 3765/17 +f 3761/17 3766/17 3765/17 +f 3766/17 2750/17 3765/17 +f 3765/17 2750/17 1791/17 +f 3766/17 3767/17 2750/17 +f 2750/17 3767/17 2751/17 +f 2751/17 3767/17 2752/17 +f 3768/29 3769/29 2752/29 +f 3769/5 3768/5 3770/5 +f 3769/5 3770/5 2755/5 +f 2755/5 2753/5 3769/5 +f 2755/5 3770/5 3771/19 +f 2755/5 3771/19 3772/5 +f 2755/5 3772/5 3773/5 +f 3773/5 3774/5 3775/5 +f 2756/5 3773/5 3775/5 +f 3775/5 3774/5 3776/5 +f 2756/16 3775/16 3777/16 +f 2757/29 2756/16 3777/16 +f 3777/16 3738/11 3745/16 +f 3777/16 3745/16 3778/16 +f 3778/16 2757/29 3777/16 +f 3775/16 3746/11 3777/16 +f 3775/16 3776/11 3746/11 +f 3779/5 3780/5 3776/5 +f 3776/5 3780/5 3747/5 +f 3780/5 3781/5 3747/5 +f 3781/5 3782/19 3749/19 +f 3782/19 3783/5 3784/19 +f 3784/19 3785/4 3786/4 +f 3787/4 3786/4 3785/4 +f 3785/4 3757/4 3787/4 +f 3787/4 3757/4 3756/4 +f 3788/4 3786/4 3787/4 +f 3789/4 3788/4 3750/4 +f 3782/19 3789/4 3749/19 +f 3789/4 3782/19 3786/4 +f 3788/4 3787/4 3752/4 +f 3789/4 3786/4 3788/4 +f 3752/4 3787/4 3756/4 +f 3785/4 3790/4 3757/4 +f 3758/4 3757/4 3790/4 +f 3790/4 3791/4 3758/4 +f 3758/4 3791/4 3760/4 +f 3760/29 3768/29 3767/29 +f 3760/29 3770/29 3768/29 +f 3791/4 3770/5 3760/4 +f 3792/4 3770/5 3791/4 +f 3792/4 3793/19 3770/5 +f 3771/19 3770/5 3793/5 +f 3794/4 3771/19 3793/19 +f 3794/4 3795/5 3796/19 +f 3794/4 3796/19 3771/19 +f 3772/5 3771/19 3796/5 +f 3795/5 3773/5 3796/5 +f 3773/5 3795/5 3774/5 +f 3797/19 3774/5 3795/5 +f 3798/4 3797/19 3795/5 +f 3797/19 3799/5 3779/5 +f 3799/5 3780/5 3779/5 +f 3785/4 3783/5 3800/4 +f 3800/4 3798/4 3790/4 +f 3790/4 3798/4 3792/4 +f 3801/4 3792/4 3798/4 +f 3801/4 3793/19 3792/4 +f 3801/4 3798/4 3794/4 +f 3800/4 3799/5 3798/4 +f 3784/19 3783/5 3785/4 +f 3783/5 3781/5 3799/5 +f 3800/4 3783/5 3799/5 +f 3798/4 3799/5 3797/19 +f 3797/19 3779/5 3774/5 +f 3794/4 3798/4 3795/5 +f 3793/19 3801/4 3794/4 +f 3792/4 3791/4 3790/4 +f 3800/4 3790/4 3785/4 +f 3786/4 3782/19 3784/19 +f 3783/5 3782/19 3781/5 +f 3799/5 3781/5 3780/5 +f 3774/5 3779/5 3776/5 +f 3796/5 3773/5 3772/5 +f 3768/29 2752/29 3767/29 +f 3766/17 3761/17 3767/17 +f 3762/4 3761/17 3763/4 +f 3762/4 3764/4 3755/4 +f 3764/4 3751/4 3755/4 +f 3755/6 3751/16 3753/6 +f 3762/4 3759/4 3761/17 +f 3767/17 3761/17 3760/4 +f 3759/4 3755/4 3754/4 +f 3752/4 3756/4 3753/4 +f 3788/4 3752/4 3750/4 +f 3749/19 3789/4 3750/4 +f 3781/6 3749/6 3747/11 +f 3776/11 3747/11 3746/11 +f 3738/11 3777/16 3746/11 +f 3738/11 3746/11 2741/11 +f 3745/16 3744/16 3778/16 +f 3778/16 3744/16 2759/29 +f 3682/5 3686/12 3683/5 +f 3683/5 3686/12 3684/5 +f 3743/5 3742/5 3682/5 +f 3742/5 3802/19 3686/12 +f 3742/11 3740/11 3802/11 +f 3803/9 3804/9 3802/19 +f 3803/9 3802/19 3690/4 +f 3691/4 3739/4 3692/4 +f 3692/4 3739/4 3707/4 +f 3690/4 3740/4 3739/4 +f 3690/4 3739/4 3691/4 +f 3690/4 3802/19 3740/4 +f 3803/9 3805/9 3804/9 +f 3689/9 3805/9 3803/9 +f 3692/4 3707/4 3705/4 +f 3736/11 3748/11 3737/11 +f 3707/11 3722/11 3706/11 +f 3806/6 3733/6 3734/6 +f 2738/11 3806/6 3734/6 +f 2737/6 3806/6 2738/11 +f 3806/6 2691/6 3733/6 +f 3733/6 2691/6 2693/6 +f 3733/9 2693/9 3732/9 +f 3806/6 2680/6 2691/6 +f 2737/6 2680/6 3806/6 +f 2737/6 2681/6 2680/6 +f 3734/9 3732/9 3729/9 +f 3732/9 3731/9 3729/9 +f 3732/9 2693/9 2678/9 +f 2674/9 3728/9 3730/9 +f 2672/11 3725/11 3728/11 +f 2668/11 3725/11 2670/11 +f 3726/11 3723/11 3722/11 +f 3721/11 3710/11 3709/11 +f 2655/10 3719/10 3720/10 +f 3717/5 3710/10 3718/10 +f 3711/5 3710/10 3717/5 +f 3717/5 3716/5 3713/5 +f 3711/11 3717/6 3712/6 +f 3693/4 3705/4 3694/5 +f 3694/5 3708/5 3704/5 +f 3693/4 3692/4 3705/4 +f 3691/4 3692/4 3687/4 +f 3690/4 3689/9 3803/9 +f 3689/9 2549/9 2547/9 +f 2547/9 1982/10 3805/9 +f 2547/9 3805/9 3689/9 +f 3805/9 1982/10 3804/9 +f 3804/9 1982/10 1981/10 +f 2546/9 3804/9 1981/10 +f 3685/9 3802/19 3804/9 +f 3686/12 3802/19 3685/9 +f 3804/9 2546/9 3685/9 +f 3686/12 2540/5 3684/5 +f 3681/5 2760/5 2761/5 +f 3807/12 3670/5 3808/12 +f 3669/5 3808/12 3670/5 +f 3669/5 3670/5 2524/5 +f 2763/12 3808/12 3669/5 +f 2760/29 3681/29 2763/12 +f 3674/7 3678/37 3675/7 +f 3680/29 3808/12 3681/29 +f 3807/12 3808/12 3680/37 +f 3679/37 3678/37 3674/9 +f 3673/29 3680/37 3674/7 +f 2535/19 3675/7 3678/37 +f 3674/9 3680/37 3679/37 +f 3680/37 3673/12 3807/12 +f 3808/12 2763/12 3681/29 +f 3675/7 2535/19 2534/19 +f 2534/19 3676/7 3675/7 +f 2534/19 2531/7 3676/7 +f 1953/19 2533/7 2534/19 +f 1951/19 2533/7 1953/19 +f 2533/7 2531/7 2534/19 +f 3807/12 3673/12 3670/5 +f 2760/29 2763/12 2762/18 +f 2759/5 3744/5 2761/5 +f 3778/16 2759/29 2758/29 +f 3778/16 2758/29 2757/29 +f 2755/5 3773/5 2756/5 +f 2753/5 2755/5 2754/5 +f 2752/29 3769/29 2753/29 +f 2750/17 2749/17 1791/17 +f 3765/16 1791/16 2748/16 +f 2747/16 3765/16 2748/16 +f 2746/16 2745/16 2747/16 +f 2745/16 2743/16 2744/16 +f 3764/16 2744/16 3751/16 +f 3737/11 2742/16 2741/11 +f 1780/16 2739/11 2741/11 +f 2738/11 3734/6 2739/11 +f 2739/11 2740/16 1778/16 +f 2736/6 2681/6 2737/6 +f 2681/6 2735/6 2682/6 +f 1777/6 1776/6 2735/6 +f 2682/6 2735/6 1776/6 +f 2683/37 2682/37 1774/37 +f 2734/37 2683/37 1774/37 +f 2713/6 2683/6 2734/6 +f 2713/6 2711/6 2683/6 +f 2683/6 2711/6 2684/6 +f 2713/6 2733/6 2712/6 +f 2712/6 2733/6 2714/6 +f 2714/6 3809/6 2715/6 +f 3809/6 2714/6 3810/6 +f 3810/6 3811/6 3809/6 +f 3811/6 3812/6 3809/6 +f 3809/6 3812/6 2717/6 +f 3812/6 3811/6 3813/6 +f 3812/6 3813/6 2719/6 +f 3813/6 3810/6 2729/6 +f 3813/6 2729/6 2720/6 +f 3810/6 2731/6 2729/6 +f 3810/6 2714/6 2731/6 +f 3811/6 3810/6 3813/6 +f 2734/6 2732/6 2713/6 +f 2733/6 2731/6 2714/6 +f 1773/37 2730/37 2732/37 +f 1773/37 2726/37 2730/37 +f 2720/6 2729/6 2728/6 +f 2721/6 2720/6 2728/6 +f 2723/37 2721/37 2728/37 +f 2727/37 2730/37 2726/37 +f 2723/37 1772/37 2725/37 +f 2722/37 2721/37 2723/37 +f 3813/6 2720/6 2719/6 +f 3812/6 2719/6 2717/6 +f 3809/6 2717/6 2715/6 +f 2686/6 2711/6 2710/6 +f 2709/6 2706/6 2707/6 +f 2706/6 2716/6 2704/6 +f 2718/9 2703/9 2704/9 +f 2698/9 2701/9 2700/9 +f 2698/9 2700/9 2699/9 +f 2697/9 2705/9 2698/9 +f 2708/6 2697/6 2695/6 +f 2694/9 2692/9 2687/9 +f 2688/6 2694/6 2687/6 +f 2684/6 2711/6 2686/6 +f 2684/6 2687/6 2685/6 +f 2683/6 2684/6 2679/6 +f 2685/6 2680/6 2679/6 +f 2689/6 2691/6 2680/6 +f 2690/6 2693/6 2691/6 +f 2692/9 2678/9 2693/9 +f 2692/9 2677/9 2678/9 +f 2677/9 2696/9 2675/9 +f 2676/9 2674/9 3730/9 +f 2699/9 2673/9 2675/9 +f 2674/9 2672/9 3728/9 +f 1752/9 2671/9 2673/9 +f 2672/11 2670/11 3725/11 +f 1750/11 2669/11 2671/11 +f 2670/11 2666/11 2668/11 +f 2665/11 2669/11 1748/11 +f 3724/11 2668/11 2667/11 +f 2658/37 2656/37 2667/37 +f 1722/37 2656/37 2657/37 +f 2654/37 2667/37 2656/37 +f 2655/10 1710/10 1709/10 +f 3719/10 1709/10 2653/10 +f 1708/9 3715/5 2652/37 +f 2651/19 3715/5 1708/9 +f 2650/9 1700/9 2649/9 +f 2649/9 2648/9 2646/9 +f 2648/9 2647/9 2646/9 +f 2644/5 2651/19 2646/9 +f 2645/5 3715/5 2644/5 +f 2643/9 3699/5 2645/5 +f 2646/9 2642/9 2644/5 +f 2642/9 2641/6 2640/6 +f 2643/25 2640/6 2634/16 +f 2634/16 2640/6 2632/16 +f 2633/16 3698/16 2634/16 +f 2633/16 2631/16 3703/16 +f 2632/16 1384/16 1385/16 +f 3703/16 2631/16 2628/11 +f 718/29 2159/29 2163/29 +f 2629/33 2630/29 2158/29 +f 2627/25 3696/25 2628/11 +f 3695/33 2627/33 2629/33 +f 2555/33 2629/33 2157/33 +f 2555/33 2556/33 3693/7 +f 2556/33 2553/33 3687/7 +f 2553/33 2554/33 3687/7 +f 2551/15 2550/15 2554/33 +f 2553/33 2552/15 2551/15 +f 1984/15 2551/15 1985/15 +f 1984/15 2550/15 2551/15 +f 210/15 2550/15 1984/15 +f 1979/10 2548/10 2550/10 +f 2545/10 2546/9 1981/10 +f 1976/15 2542/19 1977/15 +f 1958/1 1956/19 1974/15 +f 1956/19 2544/19 1974/15 +f 1958/1 1974/15 1971/1 +f 3814/4 1960/4 1958/1 +f 3814/4 1958/1 1971/1 +f 3814/4 3815/4 1960/4 +f 3815/6 3816/6 1961/6 +f 1961/6 3816/6 3817/6 +f 3817/6 1963/6 1962/1 +f 3818/6 1963/6 3819/6 +f 1964/5 1963/5 3820/5 +f 1964/5 3820/5 1965/5 +f 1965/5 3820/5 196/5 +f 196/5 3820/5 3821/4 +f 196/5 3821/4 3822/5 +f 3822/6 1966/6 3823/6 +f 3824/6 1966/6 3825/6 +f 1968/4 3826/4 3827/4 +f 1970/19 3827/4 3814/4 +f 3814/4 3827/4 3828/4 +f 3814/4 3828/4 3815/4 +f 3815/4 3828/4 3829/4 +f 3816/6 3830/6 3819/6 +f 3831/5 3822/5 3821/4 +f 1966/6 3822/6 3825/6 +f 3831/6 3825/6 3822/6 +f 3825/17 3831/5 3832/17 +f 3833/17 3832/17 3831/5 +f 3819/17 3833/17 3821/4 +f 3833/17 3819/17 3830/17 +f 3830/17 3834/17 3833/17 +f 3832/17 3833/17 3834/17 +f 3834/17 3824/17 3832/17 +f 3826/4 3824/17 3828/4 +f 3828/4 3827/4 3826/4 +f 3824/17 3834/17 3828/4 +f 3834/17 3829/4 3828/4 +f 3830/6 3829/6 3834/6 +f 3833/17 3831/5 3821/4 +f 3820/5 3818/12 3821/4 +f 3819/17 3821/4 3818/12 +f 3829/6 3830/6 3816/6 +f 1968/6 3824/6 3826/6 +f 1967/6 3824/6 1968/6 +f 1967/6 1966/6 3824/6 +f 3824/6 3825/6 3832/6 +f 3820/5 1963/5 3818/12 +f 3817/6 3816/6 3819/6 +f 3819/6 1963/6 3817/6 +f 3816/6 3815/6 3829/6 +f 1970/19 3814/4 1971/1 +f 1971/1 1974/15 1972/15 +f 2540/5 2546/9 2541/9 +f 2540/5 2539/5 3684/5 +f 2539/5 2538/5 3684/5 +f 2543/19 2537/5 2539/5 +f 3677/5 2538/5 2536/5 +f 2536/19 2535/19 3678/37 +f 3676/7 2531/7 2530/7 +f 2529/5 3672/5 2530/5 +f 2528/4 1945/10 2527/10 +f 2529/4 2527/10 2525/4 +f 2525/4 2520/10 2524/5 +f 2523/5 3668/5 2524/5 +f 2522/16 3002/16 2523/16 +f 2521/16 1941/6 2518/16 +f 2518/16 1941/6 1940/16 +f 2521/10 2519/10 1941/10 +f 2520/10 2526/10 2519/10 +f 2517/16 2996/16 3000/16 +f 2517/16 2993/16 2996/16 +f 2517/16 2516/16 2949/16 +f 2514/9 2940/9 2513/9 +f 2511/9 2510/9 2512/9 +f 1932/9 1930/9 2511/9 +f 2509/9 2938/9 2510/9 +f 2508/6 2936/6 2509/6 +f 2507/6 2935/6 2508/6 +f 1929/6 2505/6 2508/6 +f 2504/6 2506/6 2505/6 +f 1926/12 170/12 2476/12 +f 2442/12 2476/12 170/12 +f 169/12 1925/12 3835/12 +f 169/12 3835/12 170/12 +f 2442/12 3835/12 3836/12 +f 3837/12 3835/12 1925/12 +f 3837/6 1925/6 1924/6 +f 3838/6 3839/6 1924/6 +f 3840/6 3838/6 1924/6 +f 1924/6 1922/6 3840/6 +f 3841/6 1916/6 3838/6 +f 3841/6 3838/6 1922/6 +f 1922/6 3838/6 3840/6 +f 3839/6 1914/6 3842/6 +f 3842/6 3837/6 3839/6 +f 3839/6 3837/6 1924/6 +f 3842/12 3843/12 3837/12 +f 3843/12 3836/12 3835/12 +f 3844/12 3845/12 3846/12 +f 1874/12 3844/12 1876/12 +f 3847/12 3848/5 3849/5 +f 3847/12 3849/5 1878/12 +f 1880/5 1879/5 1881/5 +f 1879/5 3850/5 1881/5 +f 1892/5 3851/5 1893/5 +f 3851/5 3852/5 1893/5 +f 1893/16 3852/16 3853/16 +f 3852/16 3854/16 3853/16 +f 3854/16 3855/16 3853/16 +f 3855/16 3856/16 3853/16 +f 3856/16 3857/16 3853/16 +f 3853/16 3858/16 1894/16 +f 1894/16 3858/16 3859/16 +f 3860/16 3861/16 3859/16 +f 3862/16 3860/16 3858/16 +f 3862/12 3857/12 3846/12 +f 3846/12 3857/12 3863/18 +f 3846/12 3863/18 3844/12 +f 3863/18 1876/12 3844/12 +f 3855/12 3863/18 3856/12 +f 1876/12 3863/18 3864/12 +f 3864/12 3854/12 3852/5 +f 3864/12 3852/5 3865/12 +f 3866/5 3864/12 3865/12 +f 3866/5 3865/5 3867/5 +f 3868/12 3866/5 3847/12 +f 3866/5 3869/5 3847/12 +f 3866/5 3867/5 3869/5 +f 3870/5 3869/5 3867/5 +f 3870/5 1891/5 3869/5 +f 3869/5 3871/5 3848/5 +f 3848/5 3871/5 3872/5 +f 3848/5 3872/5 3849/5 +f 3870/5 3867/5 3851/5 +f 3867/5 3865/5 3851/5 +f 3865/5 3852/5 3851/5 +f 3868/12 3864/12 3866/5 +f 3868/12 1876/12 3864/12 +f 3864/12 3863/18 3854/12 +f 3856/12 3863/18 3857/12 +f 3862/16 3858/16 3857/16 +f 3873/16 3860/16 3862/16 +f 3845/12 3873/12 3862/12 +f 3873/16 3874/16 3875/16 +f 3876/16 1901/16 3874/16 +f 3874/16 1901/16 1900/16 +f 3874/16 1900/16 3875/16 +f 3875/16 1900/16 3861/16 +f 3877/4 1906/4 3876/4 +f 1908/4 3877/4 3878/4 +f 3879/4 1908/4 3878/4 +f 3879/12 3878/12 3880/12 +f 3881/12 3879/12 3880/12 +f 3882/16 3881/16 1913/16 +f 1911/16 3882/16 1913/16 +f 1914/6 1913/16 3883/16 +f 1914/6 3883/16 3884/6 +f 3884/12 3883/12 3885/12 +f 3886/12 3884/12 3885/12 +f 3886/12 3836/12 3843/12 +f 3887/12 3836/12 3886/12 +f 3886/12 3880/12 3887/12 +f 3888/12 3845/12 3844/12 +f 3888/12 3889/12 3873/12 +f 3889/16 3876/16 3874/16 +f 3887/12 3889/12 3888/12 +f 3878/12 3889/12 3887/12 +f 3890/16 3891/16 1913/16 +f 3891/16 3883/16 1913/16 +f 3885/12 3883/12 3891/12 +f 3890/12 3885/12 3891/12 +f 3885/12 3890/12 3880/12 +f 3880/12 3886/12 3885/12 +f 3836/12 3887/12 3888/12 +f 3842/12 3884/12 3886/12 +f 1911/4 3892/4 3882/4 +f 1909/4 3892/4 1911/4 +f 3882/4 3892/4 3881/12 +f 3881/12 3892/4 3879/4 +f 3881/16 3890/16 1913/16 +f 3881/12 3880/12 3890/12 +f 3880/12 3878/12 3887/12 +f 3892/4 1908/4 3879/4 +f 3878/4 3877/4 3889/12 +f 3889/12 3877/4 3876/4 +f 3876/4 1906/4 1901/4 +f 3889/16 3874/16 3873/16 +f 3888/12 3873/12 3845/12 +f 3873/16 3875/16 3860/16 +f 3875/16 3861/16 3860/16 +f 1897/16 3859/16 3861/16 +f 1898/16 1897/16 3861/16 +f 1897/16 1895/16 3859/16 +f 3860/16 3859/16 3858/16 +f 3857/16 3858/16 3853/16 +f 3854/12 3863/18 3855/12 +f 3870/5 3851/5 1892/5 +f 3870/5 1892/5 1891/5 +f 3869/5 1891/5 3871/5 +f 3893/5 3872/5 3871/5 +f 1890/5 3893/5 3871/5 +f 1885/4 3893/5 1890/5 +f 1885/4 3894/5 3893/5 +f 3894/5 1882/5 3850/5 +f 3893/5 3894/5 3872/5 +f 3894/5 3850/5 3872/5 +f 3850/5 1882/5 1881/5 +f 3850/5 1879/5 3872/5 +f 3849/5 3872/5 1879/5 +f 3847/12 3869/5 3848/5 +f 3868/12 3847/12 1877/12 +f 1876/12 3868/12 1877/12 +f 3845/12 3862/12 3846/12 +f 3844/12 3836/12 3888/12 +f 3844/12 1874/12 3836/12 +f 3886/12 3843/12 3842/12 +f 3842/6 1914/6 3884/6 +f 1915/6 3839/6 3838/6 +f 1924/6 1925/6 1923/6 +f 3843/12 3835/12 3837/12 +f 2442/12 170/12 3835/12 +f 2496/26 2440/5 2497/26 +f 2486/16 2498/16 2496/16 +f 2494/16 2435/16 2492/16 +f 2487/5 2495/5 3895/5 +f 2487/5 3895/5 2489/5 +f 2487/16 2489/16 2488/16 +f 3895/5 2490/5 2489/5 +f 2491/5 2489/5 2490/5 +f 2490/5 3895/5 3896/5 +f 2493/4 2433/5 3896/5 +f 2433/5 2493/4 2434/4 +f 2487/12 2486/15 2495/12 +f 3895/5 2495/5 3896/5 +f 2493/4 3896/5 2495/5 +f 2492/4 2389/4 2434/4 +f 2490/5 3896/5 2433/5 +f 2432/5 2490/5 2433/5 +f 2489/5 2491/5 2430/5 +f 2489/5 2430/5 2431/5 +f 2430/5 2491/5 2340/5 +f 2479/12 2484/15 2482/18 +f 2484/15 2037/15 2485/15 +f 2485/15 2037/15 2039/15 +f 2485/15 2039/15 1257/15 +f 1257/15 2039/15 2040/19 +f 2484/15 293/15 2037/15 +f 2483/15 2479/12 296/15 +f 2431/5 2429/17 2481/17 +f 2480/5 2428/4 2378/5 +f 2428/16 2479/16 2481/16 +f 2498/16 2479/16 2422/16 +f 2420/17 2422/4 2478/17 +f 2421/4 2371/17 2370/17 +f 2477/4 2420/17 2478/17 +f 2478/17 2370/17 2477/4 +f 2475/12 1926/12 2476/12 +f 2475/11 2419/11 1874/11 +f 1874/12 171/12 2475/12 +f 2471/5 2930/5 2474/27 +f 2471/5 2472/5 2930/5 +f 2468/12 2467/17 2469/5 +f 3147/4 2466/17 2464/4 +f 2464/12 2463/5 3144/4 +f 2359/5 2415/5 2411/5 +f 2410/5 2415/5 2359/5 +f 2458/16 3142/16 2460/16 +f 3141/16 3142/16 2458/16 +f 2457/16 3140/16 3141/16 +f 2458/16 2457/16 3141/16 +f 2457/16 2456/16 3140/16 +f 3137/25 2454/25 2453/25 +f 2457/25 2453/25 2454/25 +f 2448/6 2446/6 2445/11 +f 2407/6 2446/6 2448/6 +f 2401/5 2446/5 2447/5 +f 2443/12 1875/12 2444/12 +f 2442/12 3836/12 1874/12 +f 2439/11 2440/16 2442/11 +f 2439/17 2397/4 2438/17 +f 2396/4 2347/17 2438/17 +f 2438/17 2347/17 2394/17 +f 2441/5 2438/17 2393/14 +f 2437/8 2392/8 2344/8 +f 2437/8 2344/8 2391/8 +f 2437/26 2391/26 2436/26 +f 2390/16 2492/16 2435/16 +f 2433/5 2434/4 2387/4 +f 2340/5 2491/5 2432/5 +f 2340/5 2382/5 2430/5 +f 2381/17 2428/4 2429/17 +f 2380/4 2378/5 2428/4 +f 2480/5 2378/5 2426/5 +f 2426/5 2378/5 2376/5 +f 2425/5 2427/5 3897/5 +f 3897/16 2372/16 2425/16 +f 2423/16 2425/16 2372/16 +f 3897/5 514/5 2372/5 +f 2375/5 3897/5 2427/5 +f 2370/17 2369/4 2477/4 +f 2368/11 2416/11 2420/16 +f 2417/12 2465/12 2418/12 +f 2415/5 2417/12 2367/5 +f 2415/5 2412/5 2411/5 +f 2412/16 2414/6 2361/16 +f 2411/5 505/5 2359/5 +f 2407/4 2406/5 2447/5 +f 2405/6 2353/6 501/6 +f 2405/5 501/5 2352/5 +f 2405/5 2352/5 2402/5 +f 2352/5 2403/5 2402/5 +f 2395/4 2347/17 2396/4 +f 2347/17 2395/4 2348/4 +f 2348/4 2404/4 2350/4 +f 2348/4 2395/4 2404/4 +f 2350/4 2404/4 2403/5 +f 2404/4 2398/4 2403/5 +f 2393/14 2394/6 2346/6 +f 2392/8 2346/6 2344/8 +f 2389/4 2492/4 2390/26 +f 516/9 2340/23 2339/9 +f 2379/23 2381/23 2382/23 +f 454/17 2378/5 2380/4 +f 2374/5 3897/5 2375/5 +f 2374/5 514/5 3897/5 +f 2374/5 450/5 514/5 +f 2373/16 2423/16 2372/16 +f 2477/4 2369/4 2365/5 +f 2365/5 2368/4 2477/4 +f 2417/12 2416/12 2367/5 +f 2366/6 2414/6 2367/11 +f 509/5 2413/5 2362/5 +f 509/6 508/16 2413/16 +f 509/6 471/6 508/16 +f 507/16 2412/16 2361/16 +f 505/5 2360/5 506/5 +f 2358/5 503/5 2357/5 +f 498/9 2342/8 2341/8 +f 2339/9 2188/19 2386/5 +f 2315/5 2319/4 2318/17 +f 497/17 2315/5 2318/17 +f 2314/4 2316/17 497/17 +f 2296/5 2314/4 2293/4 +f 2314/4 2296/5 2210/4 +f 2296/5 2293/4 2295/5 +f 2292/17 2293/4 2314/4 +f 2288/17 2289/17 495/17 +f 648/17 529/9 2283/9 +f 2281/16 527/16 2280/16 +f 525/16 2280/16 527/16 +f 525/16 2171/16 2280/16 +f 2171/16 2170/24 2280/16 +f 2281/16 2280/16 2279/24 +f 2163/29 2158/29 1380/29 +f 1379/25 1374/25 2276/25 +f 1379/29 1378/29 1374/29 +f 1692/19 3898/19 2271/19 +f 3898/19 1685/19 2266/19 +f 2271/19 3898/19 2269/19 +f 3898/19 2266/19 2269/19 +f 2215/19 2269/19 2268/19 +f 2268/19 3899/4 2215/19 +f 3899/29 3900/29 2215/29 +f 3901/29 2216/29 3900/29 +f 2217/15 3901/29 3902/29 +f 2217/15 3902/29 3903/29 +f 2218/18 3903/29 3904/29 +f 3904/29 3903/29 3905/29 +f 3904/29 3905/29 3906/29 +f 3904/4 3906/4 3907/17 +f 2222/4 3904/4 3907/17 +f 3907/17 3906/4 3908/4 +f 3907/17 2238/4 2222/4 +f 3907/17 3908/4 2238/4 +f 2238/4 3908/4 3909/4 +f 3909/4 3910/4 2238/4 +f 3911/5 3912/4 3913/9 +f 3913/9 3912/4 3914/9 +f 1489/10 1488/10 3915/19 +f 3914/9 3915/19 1488/10 +f 2239/38 1489/38 3916/25 +f 2256/38 1675/25 2257/38 +f 1676/25 1675/25 2256/38 +f 1676/25 2256/38 2255/38 +f 3917/25 2241/38 1677/25 +f 2258/25 3916/25 2259/25 +f 2259/5 3918/4 3919/5 +f 2261/5 2259/5 3919/5 +f 2260/5 3920/5 3921/5 +f 2262/19 3921/5 2263/19 +f 3921/5 2264/19 2263/19 +f 3922/4 2264/19 3923/5 +f 3922/4 3923/5 3924/5 +f 2267/19 2265/19 3922/4 +f 2267/19 3922/4 3925/4 +f 3899/4 3924/5 3926/4 +f 3926/4 3900/4 3899/4 +f 3900/4 3926/4 3901/19 +f 3906/4 3927/4 3908/4 +f 3927/4 3909/4 3908/4 +f 3928/4 3910/4 3909/4 +f 3911/5 3910/4 3929/5 +f 3929/5 3930/5 3911/5 +f 3919/5 3911/5 3930/5 +f 3920/5 3919/5 3930/5 +f 3931/5 3911/5 3919/5 +f 3912/4 3911/5 3931/5 +f 3931/5 3918/4 3912/4 +f 3912/4 3918/4 3932/4 +f 3915/19 3914/9 3932/4 +f 3914/9 3912/4 3932/4 +f 3915/19 3932/4 3918/4 +f 3929/5 3920/5 3930/5 +f 3920/5 3929/5 3933/5 +f 3920/5 3933/5 3923/5 +f 3934/5 3929/5 3928/4 +f 3934/5 3924/5 3929/5 +f 3933/5 3929/5 3924/5 +f 3928/6 3929/6 3910/6 +f 3927/4 3928/4 3909/4 +f 3903/29 3927/29 3906/29 +f 3905/29 3903/29 3906/29 +f 3926/4 3928/4 3927/4 +f 3902/4 3926/4 3927/4 +f 3926/4 3934/5 3928/4 +f 3926/4 3924/5 3934/5 +f 3925/4 3924/5 3899/4 +f 3925/4 3922/4 3924/5 +f 3924/5 3923/5 3933/5 +f 2265/19 2264/19 3922/4 +f 2264/19 3921/5 3923/5 +f 3923/5 3921/5 3920/5 +f 2261/5 3919/5 3920/5 +f 1681/5 2259/5 2261/5 +f 1680/5 2259/5 1681/5 +f 3918/4 3931/5 3919/5 +f 3916/4 3918/4 2259/5 +f 3918/4 3916/4 3915/19 +f 1489/38 3915/25 3916/25 +f 2241/38 3916/25 1677/25 +f 2241/38 3917/25 2255/38 +f 3916/25 2241/38 2239/38 +f 1488/10 3913/9 3914/9 +f 3913/9 3910/4 3911/5 +f 2218/18 2217/15 3903/29 +f 3903/29 3902/29 3927/29 +f 3901/19 3926/4 3902/4 +f 2217/15 2216/29 3901/29 +f 3925/4 3899/4 2268/19 +f 2267/19 3925/4 2268/19 +f 2260/5 3921/5 2262/19 +f 2261/5 3920/5 2260/5 +f 2262/19 1682/4 2260/5 +f 2258/25 1677/25 3916/25 +f 1679/25 1678/25 2258/25 +f 1678/25 1677/25 2258/25 +f 3917/25 1676/25 2255/38 +f 1673/37 2257/29 1611/37 +f 2252/21 1668/21 2247/21 +f 1806/21 2250/21 1802/21 +f 2252/21 2247/21 2245/21 +f 1496/38 2244/38 1516/38 +f 1495/38 1493/38 2242/38 +f 2243/38 2240/38 2254/38 +f 2241/38 2255/38 2240/38 +f 2242/38 1493/38 2240/38 +f 1477/9 3913/9 1488/10 +f 3913/9 1477/9 1474/9 +f 2238/4 3910/4 3913/9 +f 1474/9 2238/4 3913/9 +f 1475/6 2237/6 2238/6 +f 2231/4 2224/4 2232/4 +f 2224/4 2223/4 2232/4 +f 2231/4 2220/4 2224/4 +f 2222/4 2238/4 2223/4 +f 2219/4 3904/4 2222/4 +f 1369/29 2219/29 1370/29 +f 2218/18 3904/29 2219/29 +f 2215/29 3900/29 2216/29 +f 2215/29 2214/29 2269/29 +f 2216/29 2213/29 2215/29 +f 2270/29 2214/29 2212/29 +f 2211/5 2210/4 2296/5 +f 2209/17 2208/5 2317/5 +f 2206/29 1369/29 1375/29 +f 2201/5 2196/5 2202/5 +f 2191/4 2194/4 2186/4 +f 2201/5 1365/4 2193/4 +f 2166/30 2059/30 2106/30 +f 2106/30 2119/15 3935/30 +f 2106/24 3935/16 2107/16 +f 3935/16 2119/15 2107/16 +f 2117/6 2107/16 2119/6 +f 2106/30 2167/15 2119/15 +f 2167/15 2106/30 2059/30 +f 2194/4 2193/4 2192/4 +f 2185/4 2194/4 2192/4 +f 2185/4 2186/4 2194/4 +f 2323/17 2190/9 2189/9 +f 2186/4 2185/4 2183/4 +f 2179/24 2184/24 2063/24 +f 519/24 2178/24 2177/24 +f 518/4 520/4 456/19 +f 456/19 520/4 2176/4 +f 2176/24 2061/24 2060/24 +f 2060/24 2174/24 2176/24 +f 2176/4 2174/5 456/19 +f 2173/24 2175/24 2060/24 +f 2279/24 2170/24 2168/24 +f 2057/15 2056/15 2122/15 +f 2163/25 2165/24 2164/25 +f 1364/25 2164/25 1365/24 +f 1364/29 719/29 2164/29 +f 2163/29 2164/29 719/29 +f 2162/29 2160/29 2159/29 +f 2158/29 2157/33 2629/33 +f 2160/29 2154/29 2156/29 +f 2161/12 2149/39 2153/39 +f 2152/39 2151/39 2594/39 +f 2148/28 2145/28 2599/28 +f 1356/28 2146/28 2147/28 +f 2140/36 2143/36 2144/36 +f 2143/36 2139/36 2580/36 +f 2137/16 1350/25 1349/25 +f 1348/25 2138/16 1349/25 +f 2138/4 1348/12 1346/12 +f 2138/4 1345/12 1361/12 +f 2138/4 1346/12 1345/12 +f 1341/9 2138/4 1343/22 +f 1350/25 2137/16 1336/16 +f 1352/25 1336/16 1330/16 +f 2578/16 1332/16 2136/16 +f 1326/16 1325/16 2133/16 +f 2133/16 1325/16 2132/6 +f 1326/16 2133/16 2135/16 +f 2134/17 2575/17 2135/17 +f 2134/17 2132/17 2572/17 +f 2132/17 2131/17 2571/17 +f 1325/16 2130/6 2132/6 +f 1325/16 1321/6 2130/6 +f 1321/6 1323/6 2130/6 +f 1323/6 3936/16 2116/6 +f 2116/6 2129/6 1323/6 +f 2116/6 3936/16 2109/16 +f 1318/16 2109/16 3936/16 +f 2128/6 2129/6 2118/6 +f 2127/17 2131/17 2128/4 +f 2120/15 2125/15 2569/15 +f 2126/15 2123/15 2566/15 +f 2124/15 2125/15 2121/15 +f 2121/15 2119/15 2167/15 +f 2128/6 2118/6 2120/6 +f 2116/6 2109/16 2107/16 +f 2112/16 1291/16 2108/16 +f 2063/30 2058/30 2177/30 +f 2060/24 2059/24 2173/24 +f 2055/15 2049/15 2626/15 +f 2068/19 2053/19 2054/18 +f 2048/15 2626/15 2049/15 +f 2046/4 2624/4 2048/4 +f 2043/4 2047/4 2051/4 +f 2045/17 2625/17 2046/4 +f 2043/4 2085/17 2044/17 +f 2041/24 2042/24 1258/24 +f 2041/24 2040/24 2625/24 +f 2038/15 2036/15 2620/15 +f 2615/15 2036/15 2035/15 +f 2616/26 2035/26 2033/5 +f 2030/5 2033/5 2032/5 +f 2029/5 2033/5 2030/5 +f 2012/26 2027/26 2013/26 +f 2009/26 2612/26 2012/26 +f 2011/5 2015/5 2010/5 +f 2009/26 2008/26 2611/26 +f 2008/26 2003/5 2002/5 +f 2010/26 2006/26 2007/26 +f 2006/5 2019/5 2005/5 +f 2608/5 2002/5 2000/5 +f 2000/5 1999/5 2606/5 +f 2000/5 250/5 2001/5 +f 2001/5 250/5 1999/5 +f 1998/5 2606/5 1999/5 +f 1997/15 2565/15 1998/15 +f 1991/5 1989/5 1997/5 +f 1994/5 1988/5 1990/5 +f 1989/15 1987/15 2563/15 +f 1993/15 1986/15 1988/15 +f 211/15 1986/15 214/15 +f 208/4 1983/10 210/19 +f 210/19 1979/10 2550/10 +f 1983/10 1980/10 1979/10 +f 1983/10 206/4 1980/10 +f 1979/10 1982/10 2548/10 +f 1978/10 1980/10 206/4 +f 1977/10 2545/10 1978/10 +f 1974/15 1976/15 1975/15 +f 1975/15 204/7 202/15 +f 202/15 1973/15 1975/15 +f 200/15 1972/15 1973/15 +f 198/1 1970/19 1971/1 +f 1968/4 3827/4 1970/19 +f 197/6 3823/6 1966/6 +f 196/5 3822/5 3823/5 +f 1964/5 1965/5 1949/18 +f 1949/18 1948/1 1962/1 +f 1948/1 1947/1 1950/19 +f 3817/6 1962/1 1959/3 +f 1961/6 3817/6 1959/3 +f 1961/6 1960/4 3815/6 +f 1956/19 1958/1 1957/1 +f 1959/3 1948/1 1957/1 +f 1956/19 1948/1 1950/19 +f 1954/19 2537/19 1955/19 +f 1947/1 193/7 1950/19 +f 2532/7 190/7 1945/7 +f 1946/10 2527/10 1945/10 +f 187/10 186/9 1943/10 +f 2526/10 187/10 1943/10 +f 2519/10 1943/10 1944/10 +f 1942/10 1944/10 184/18 +f 185/10 1942/10 184/18 +f 1942/10 1941/10 2519/10 +f 1937/6 182/6 181/6 +f 178/6 1935/16 180/6 +f 178/6 177/6 1935/16 +f 1932/6 2511/6 1933/11 +f 1929/9 2509/9 1930/9 +f 2503/9 2505/9 1929/9 +f 2503/9 1929/9 1928/9 +f 2503/9 1928/9 1927/9 +f 1926/12 78/13 170/12 +f 168/9 1925/12 169/12 +f 1922/6 1920/6 3841/6 +f 164/6 1920/6 1921/6 +f 164/6 379/6 1920/6 +f 1918/6 3841/6 1920/6 +f 3841/6 1918/6 1916/6 +f 1916/6 1915/6 3838/6 +f 1915/6 1914/6 3839/6 +f 1910/4 1905/4 1907/4 +f 1909/4 1908/4 3892/4 +f 1906/4 3877/4 1908/4 +f 1903/4 1901/4 1906/4 +f 358/5 1899/5 1902/5 +f 1898/16 3861/16 1900/16 +f 3859/16 1895/16 1894/16 +f 1893/16 3853/16 1894/16 +f 1890/5 3871/5 1891/5 +f 1886/4 1885/4 1887/4 +f 1884/4 3894/5 1885/4 +f 1882/5 3894/5 1884/4 +f 1882/5 1861/5 1881/5 +f 1878/12 3849/5 1879/5 +f 1877/12 3847/12 1878/12 +f 1874/12 1873/12 2473/12 +f 1872/12 2468/12 1873/12 +f 1875/12 2443/12 1872/12 +f 1875/12 1871/12 2444/12 +f 1878/12 1871/12 1875/12 +f 1880/5 1868/5 1871/12 +f 1870/16 1869/16 3134/16 +f 3132/4 1865/4 1864/4 +f 1864/4 1866/4 3129/4 +f 1865/4 1863/4 1866/4 +f 1868/16 1861/16 1863/16 +f 1862/4 3126/4 1863/4 +f 1883/16 1860/16 1861/16 +f 1883/16 3937/16 1860/16 +f 1860/19 3937/4 1858/4 +f 1858/4 3937/4 341/4 +f 341/4 3937/4 344/4 +f 346/4 344/4 3937/4 +f 346/4 3937/4 1883/4 +f 1859/19 1862/4 1860/19 +f 1859/16 1856/16 3124/16 +f 1855/21 3124/21 1856/21 +f 1855/21 1854/25 3121/25 +f 1857/21 1852/21 1855/21 +f 339/21 1852/21 1857/21 +f 1845/21 1853/21 1851/21 +f 1850/21 1853/21 1845/21 +f 1848/25 2835/25 1849/25 +f 337/21 1843/21 1846/21 +f 1842/21 2848/21 1843/21 +f 2844/4 1841/4 1840/4 +f 2842/4 1840/4 1839/4 +f 1840/4 1831/4 1839/4 +f 1840/4 1834/4 1831/4 +f 1834/21 1832/21 1831/38 +f 1835/21 1825/21 2822/21 +f 1833/21 2822/21 1828/21 +f 2822/21 1833/21 1835/21 +f 1830/25 1829/25 2824/25 +f 1833/21 1828/21 1827/21 +f 1829/21 1828/21 2821/25 +f 2822/21 1825/21 1826/21 +f 1008/21 770/29 1824/35 +f 1822/8 1818/9 2804/8 +f 2800/9 1817/9 1816/9 +f 1815/9 2801/9 1816/9 +f 1814/6 2793/6 1815/6 +f 1814/9 1813/9 2793/9 +f 1813/9 1811/9 1809/9 +f 1529/17 1808/17 1810/17 +f 2792/21 1809/21 1807/21 +f 1528/21 1807/21 1808/21 +f 2792/21 1807/21 1805/21 +f 1802/21 1803/21 1806/21 +f 2250/21 1801/21 1802/21 +f 1793/21 1796/21 1798/21 +f 2778/29 1796/29 1797/29 +f 1792/29 1797/29 1793/29 +f 1790/16 1789/16 2746/16 +f 1788/16 1787/16 2743/16 +f 1639/16 3938/11 1785/16 +f 1637/16 3938/11 1639/16 +f 1635/11 1785/16 3938/11 +f 1636/11 1635/11 3938/11 +f 1786/16 1781/11 1780/16 +f 1770/37 1775/37 1779/37 +f 1778/16 1782/16 1779/16 +f 1770/37 1769/37 1775/37 +f 1772/37 2726/37 1773/37 +f 1783/37 1766/37 1768/37 +f 1767/37 1764/37 1763/37 +f 1784/11 1765/11 1766/11 +f 2722/37 1763/37 1762/37 +f 1762/37 1634/37 1761/37 +f 1633/37 1753/37 1758/4 +f 1758/4 1757/4 1759/37 +f 1755/17 2703/9 1756/17 +f 1758/4 1753/4 1755/17 +f 2702/9 1754/17 1751/9 +f 2700/9 1751/9 1752/9 +f 1752/9 1750/9 2671/9 +f 1754/17 1749/9 1751/9 +f 1754/17 3939/17 1749/9 +f 1630/37 3939/4 1754/17 +f 1750/11 1748/11 2669/11 +f 3939/11 1747/11 1749/11 +f 3939/11 1629/11 1747/11 +f 1630/11 1629/11 3939/11 +f 1748/11 1746/6 2665/11 +f 1744/6 1747/11 1629/11 +f 2659/11 1746/6 1745/6 +f 1743/37 1742/37 1745/37 +f 1741/37 1625/37 1738/37 +f 1738/37 1734/2 1739/5 +f 3940/37 1737/37 1623/37 +f 1737/37 3940/37 1735/37 +f 1734/2 1738/37 1736/37 +f 3940/37 1733/37 1735/37 +f 1622/37 1621/9 1733/37 +f 1733/37 1621/9 1619/9 +f 1729/9 900/6 899/9 +f 2664/9 1728/9 1726/9 +f 1725/37 2664/37 1726/37 +f 1725/37 1724/37 2661/37 +f 1722/37 2657/37 1724/37 +f 1721/37 2656/37 1722/37 +f 1723/37 1719/37 1720/37 +f 1719/9 1727/9 1717/9 +f 1714/9 1716/9 1715/9 +f 1713/37 1718/37 1714/37 +f 1713/37 1711/10 1721/37 +f 1708/9 2653/10 1709/10 +f 1707/9 1705/9 2650/9 +f 1705/9 1706/37 1712/37 +f 1712/37 1704/37 1705/9 +f 2650/9 1702/9 1700/9 +f 1704/9 1703/9 1702/9 +f 1703/9 1701/9 1700/9 +f 2648/9 1700/9 898/6 +f 1701/9 899/9 898/6 +f 2647/9 898/6 1699/6 +f 1697/6 2641/6 1699/6 +f 2635/19 1697/19 1696/19 +f 1694/19 2638/19 1696/19 +f 1694/19 1693/19 2275/19 +f 1686/19 3898/19 1692/19 +f 1686/19 1685/19 3898/19 +f 1688/19 1693/19 1691/19 +f 1691/19 1695/19 894/19 +f 1688/19 1689/19 1687/19 +f 911/4 884/19 3941/5 +f 3941/5 884/19 883/5 +f 1683/19 1685/19 1684/19 +f 1683/19 1682/4 2262/19 +f 3917/25 1677/25 1674/25 +f 1674/25 1676/25 3917/25 +f 1612/25 1675/25 1674/25 +f 2257/19 1675/37 1611/37 +f 1673/37 1611/37 1609/37 +f 1609/37 1611/37 1608/9 +f 1672/29 2257/29 1673/29 +f 2254/38 1672/38 1671/38 +f 1594/4 1670/4 1671/4 +f 2252/21 1669/21 1668/21 +f 1666/4 2251/4 1668/4 +f 1660/29 1651/29 1649/29 +f 1663/29 1659/29 1660/29 +f 1660/29 1657/29 1651/29 +f 1663/29 1658/29 1659/29 +f 1658/4 1667/4 1656/4 +f 1656/4 1667/4 1582/5 +f 1657/4 1654/4 1651/4 +f 1649/29 1648/29 1661/29 +f 1647/16 1789/16 1648/16 +f 1646/5 1650/5 1645/5 +f 1568/5 1642/5 1645/5 +f 1644/5 1643/5 1647/5 +f 1641/16 1787/16 1643/16 +f 1567/5 1640/5 1641/5 +f 1639/16 1785/16 1640/16 +f 3938/11 1637/16 1636/11 +f 1631/37 1761/37 1634/37 +f 1633/37 1760/37 1631/37 +f 1633/37 1632/37 1753/37 +f 1754/17 1632/37 1630/37 +f 1629/11 1627/6 1744/6 +f 1624/37 1738/37 1625/37 +f 1622/37 3940/37 1623/37 +f 3940/37 1622/37 1733/37 +f 1618/4 1731/4 1619/9 +f 903/4 1731/4 1618/4 +f 904/19 1618/4 1620/4 +f 1620/4 1608/9 1610/4 +f 1620/4 1610/4 1617/19 +f 1617/19 1616/19 1682/4 +f 1614/25 1612/25 1674/25 +f 1617/19 1610/4 1613/19 +f 1612/4 1611/37 1675/37 +f 1626/37 1628/37 1607/37 +f 1609/37 1607/37 1606/4 +f 1607/37 1564/4 1604/4 +f 1602/5 1600/4 1603/4 +f 1603/4 1600/4 1596/4 +f 1596/4 1600/4 1597/5 +f 1603/4 1596/4 1595/4 +f 1595/4 1594/4 1605/4 +f 1590/4 1666/4 1591/4 +f 1590/4 1587/4 1667/4 +f 1587/4 1585/5 1667/4 +f 1582/5 1667/4 1585/5 +f 1588/4 1589/4 1593/4 +f 1597/5 1586/4 1588/4 +f 1584/5 1586/5 1598/5 +f 1598/5 1552/5 1584/5 +f 1584/5 1552/5 1550/5 +f 1583/5 1582/5 1585/5 +f 1581/5 1656/4 1582/5 +f 1580/5 1577/5 1576/5 +f 1576/5 974/5 970/5 +f 970/5 1575/5 1576/5 +f 1575/5 1573/5 1655/5 +f 1572/5 1653/5 1573/5 +f 1570/5 1572/5 1571/5 +f 1570/4 1568/4 1645/4 +f 1568/5 1567/5 1642/5 +f 1638/4 1566/4 1564/4 +f 1565/4 1569/4 1561/4 +f 1564/4 1563/4 1604/4 +f 1560/5 1557/5 1562/5 +f 1569/5 1560/5 1561/5 +f 1560/5 1558/5 1557/5 +f 1571/5 1559/5 1560/5 +f 1559/6 967/6 966/6 +f 1557/6 1558/6 1556/6 +f 1557/6 1555/6 1601/6 +f 1556/6 965/6 1555/6 +f 780/29 965/6 1556/6 +f 1601/6 1555/6 1554/6 +f 1599/6 1554/6 1553/6 +f 1553/6 1552/6 1598/6 +f 935/5 1551/5 1552/5 +f 1549/5 1548/5 1577/5 +f 1578/33 1548/33 1546/33 +f 1540/33 975/33 1547/33 +f 1540/33 1547/33 961/33 +f 1820/33 1542/33 1541/33 +f 1819/33 1541/33 1536/33 +f 1543/9 1539/9 1540/9 +f 1819/9 1536/9 1534/9 +f 1533/17 1818/9 1534/9 +f 1534/9 956/17 1533/17 +f 1532/9 1812/9 1533/17 +f 1810/17 1532/17 1530/17 +f 1810/17 1530/17 1529/17 +f 1529/17 1528/17 1808/17 +f 1527/21 2249/21 1528/21 +f 1526/17 1530/17 1525/17 +f 1525/17 953/17 948/17 +f 949/17 948/17 953/17 +f 1524/17 1523/17 1527/17 +f 1521/21 2248/21 1523/21 +f 1520/21 2246/21 1521/21 +f 1518/17 1517/17 1520/17 +f 1516/38 2244/38 1517/38 +f 1514/5 1512/5 1498/5 +f 3942/5 1498/5 1512/5 +f 3942/5 3943/5 1499/5 +f 3943/5 3944/5 1499/5 +f 1499/5 3944/5 1485/5 +f 1484/9 3944/10 3945/10 +f 1500/10 1484/9 3945/10 +f 1500/5 3945/5 3943/5 +f 3943/5 1502/5 1500/5 +f 3943/5 1510/5 1502/5 +f 1510/5 1503/5 1502/5 +f 3942/5 1510/5 3943/5 +f 1510/5 3942/5 1512/5 +f 1501/10 924/10 919/9 +f 3943/5 3945/5 3944/5 +f 3942/5 1499/5 1498/5 +f 1511/9 1510/5 1512/5 +f 1504/5 1503/5 1510/5 +f 1509/5 1511/9 1505/5 +f 1505/5 1511/9 1506/5 +f 944/17 1506/5 1511/9 +f 928/5 926/5 1505/5 +f 1500/5 1502/5 1501/5 +f 919/9 1500/10 1501/10 +f 1485/10 3944/10 1484/9 +f 1487/10 1485/10 1479/9 +f 1487/10 1479/9 1477/9 +f 1494/5 1497/5 1498/5 +f 1497/5 1496/5 1516/5 +f 1491/5 1490/5 1493/5 +f 1486/10 1492/5 1487/5 +f 1477/9 1488/10 1487/10 +f 1482/16 1479/16 1484/16 +f 1480/16 1479/16 1482/16 +f 1473/9 1477/9 1476/9 +f 1474/9 1477/9 1473/9 +f 1474/6 1475/6 2238/6 +f 1445/6 1447/6 1475/6 +f 2226/6 1447/6 1443/6 +f 2226/6 1443/6 1444/6 +f 1441/6 1444/6 1442/6 +f 1439/17 1437/17 2235/17 +f 1435/5 1371/17 1436/17 +f 1435/5 1372/5 1371/17 +f 3946/5 3947/5 3948/5 +f 1373/5 3946/5 3948/5 +f 3948/29 3949/29 1376/29 +f 3948/5 3950/5 3949/5 +f 3950/5 3951/5 3949/5 +f 3949/29 3952/29 1386/29 +f 1386/29 3952/29 3953/29 +f 1386/29 3953/29 1387/29 +f 1387/29 3954/29 1388/29 +f 3955/29 3954/29 3956/29 +f 3955/25 3956/25 3957/25 +f 3958/25 3955/25 3957/25 +f 1416/25 3958/25 3957/25 +f 3959/5 3958/5 1416/5 +f 1415/5 3959/5 1416/5 +f 3960/5 1415/5 1414/5 +f 3961/5 3960/5 3962/5 +f 3962/5 3963/5 3961/5 +f 3961/5 3963/5 3959/5 +f 3963/5 3958/5 3959/5 +f 3962/29 1390/29 1388/29 +f 1388/29 1390/29 1389/29 +f 3962/5 3964/5 1390/5 +f 3964/5 3965/5 1390/5 +f 3965/25 3966/25 1390/25 +f 3967/24 1393/24 1392/25 +f 3968/25 3967/24 1392/25 +f 3965/5 3969/5 3970/5 +f 3965/25 3970/25 3966/25 +f 3964/5 3969/5 3965/5 +f 3964/5 1414/5 3969/5 +f 3966/25 3970/25 3968/25 +f 3971/5 3970/5 3969/5 +f 1413/5 3971/5 3969/5 +f 1412/5 3971/5 1413/5 +f 1412/25 3972/25 3971/25 +f 3972/25 3973/24 3968/25 +f 3973/24 3972/25 3974/25 +f 3973/24 3974/25 3975/24 +f 3975/24 3976/24 3973/24 +f 3973/24 3976/24 3977/24 +f 3973/24 3977/24 3967/24 +f 3967/24 1394/24 1393/24 +f 3977/24 1400/24 1394/24 +f 3977/24 1394/24 3967/24 +f 1402/24 3977/24 3976/24 +f 3975/24 3978/24 3976/24 +f 3978/24 1406/24 3976/24 +f 3979/5 3978/5 3975/5 +f 3975/5 3980/5 3979/5 +f 3979/5 3980/5 1408/5 +f 1409/5 1408/5 3980/5 +f 3980/5 1412/5 1409/5 +f 3980/5 3974/5 1412/5 +f 3975/5 3974/5 3980/5 +f 3974/25 3972/25 1412/25 +f 3971/25 3972/25 3970/25 +f 3972/25 3968/25 3970/25 +f 3968/25 3973/24 3967/24 +f 3966/25 3968/25 1392/25 +f 3960/5 3964/5 3962/5 +f 1388/29 3981/29 3962/29 +f 3963/29 3981/29 3955/29 +f 3958/29 3963/29 3955/29 +f 3962/29 3981/29 3963/29 +f 3960/5 1414/5 3964/5 +f 3961/5 1415/5 3960/5 +f 3961/5 3959/5 1415/5 +f 3982/5 1417/5 3957/5 +f 3982/5 3983/5 1417/5 +f 3984/5 3985/5 3986/5 +f 3986/5 1434/5 3984/5 +f 3987/5 3984/5 3988/17 +f 3987/5 3988/17 1423/17 +f 1426/17 1424/17 3988/17 +f 3988/17 1434/5 1426/5 +f 3984/5 1434/5 3988/17 +f 3986/5 1435/5 1434/5 +f 1435/5 3986/5 3946/5 +f 3947/5 3986/5 3985/5 +f 3947/5 3985/5 3950/5 +f 3950/5 3989/5 3951/5 +f 3952/5 3990/5 3982/5 +f 3952/5 3982/5 3991/5 +f 3952/29 3991/29 3953/29 +f 3953/29 3991/29 3954/29 +f 3956/29 3954/29 3991/29 +f 3957/5 3956/19 3991/19 +f 3990/5 3992/5 3983/5 +f 3951/5 3992/5 3990/5 +f 3951/5 3989/5 3992/5 +f 3950/5 3985/5 3989/5 +f 3987/5 3985/5 3984/5 +f 3987/5 3993/5 3985/5 +f 1423/17 3993/5 3987/5 +f 1423/17 1420/5 3993/17 +f 1420/5 3994/5 3993/17 +f 3993/5 3994/5 3989/5 +f 3994/5 1418/5 3983/5 +f 3993/5 3989/5 3985/5 +f 3994/5 3992/5 3989/5 +f 3994/5 3983/5 3992/5 +f 3990/5 3983/5 3982/5 +f 3957/5 3991/5 3982/5 +f 3981/29 3954/29 3955/29 +f 3981/29 1388/29 3954/29 +f 3953/29 3954/29 1387/29 +f 3949/5 3990/5 3952/5 +f 3951/5 3990/5 3949/5 +f 3947/5 3950/5 3948/5 +f 3946/5 3986/5 3947/5 +f 3946/5 1372/5 1435/5 +f 1428/5 1426/5 1434/5 +f 1430/17 1425/17 1427/17 +f 1424/17 1423/17 3988/17 +f 1421/17 1420/5 1423/17 +f 1418/5 3994/5 1420/5 +f 3983/5 1418/5 1417/5 +f 1416/25 3957/25 1417/25 +f 1411/5 1414/5 1415/5 +f 1413/5 3969/5 1414/5 +f 1409/5 1412/5 1410/5 +f 1408/5 1407/5 3979/5 +f 3979/5 1407/5 3978/5 +f 3978/5 1407/5 1406/5 +f 3976/24 1406/24 1403/24 +f 3995/16 1405/24 802/24 +f 3996/16 1405/24 3995/16 +f 3997/16 3996/16 3995/16 +f 3997/16 3995/16 3998/16 +f 3999/16 3997/16 3998/16 +f 3998/16 742/16 3999/16 +f 742/16 741/16 3999/16 +f 3999/16 741/16 740/11 +f 3999/16 740/11 4000/16 +f 4000/6 740/11 739/6 +f 4000/6 739/6 4001/6 +f 4001/6 4002/6 4000/6 +f 4000/16 4002/16 3997/16 +f 4001/6 4003/6 4002/6 +f 4003/6 4004/6 4002/6 +f 4002/16 4004/16 3996/16 +f 4004/16 1404/6 3996/16 +f 4003/6 4005/6 4004/6 +f 4005/6 1401/6 4004/6 +f 4006/6 4005/6 4003/6 +f 4006/6 4007/6 4008/6 +f 4008/6 4007/6 1399/6 +f 4007/6 4009/6 4010/6 +f 4007/6 4010/6 1398/30 +f 1398/30 4010/30 4011/30 +f 4010/30 4012/29 4011/30 +f 4011/30 4012/29 724/29 +f 1398/30 4011/30 723/30 +f 4010/6 4009/6 4012/6 +f 726/6 4012/6 4009/6 +f 726/6 4013/6 4014/6 +f 4014/6 4013/6 4015/6 +f 4015/6 4016/6 4014/6 +f 4014/6 4016/6 729/6 +f 727/6 4014/6 729/6 +f 729/6 4016/6 4017/6 +f 729/6 4017/6 730/6 +f 4017/28 732/22 730/28 +f 738/22 734/22 4017/28 +f 738/6 4017/6 4016/6 +f 4015/6 4001/6 4016/6 +f 4013/6 4009/6 4015/6 +f 4015/6 4009/6 4006/6 +f 4013/6 726/6 4009/6 +f 725/29 4012/6 726/6 +f 4006/6 4009/6 4007/6 +f 4015/6 4006/6 4003/6 +f 4006/6 4008/6 4005/6 +f 4008/6 1401/6 4005/6 +f 4015/6 4003/6 4001/6 +f 4001/6 739/6 4016/6 +f 4000/16 3997/16 3999/16 +f 3995/16 744/16 3998/16 +f 801/16 744/16 3995/16 +f 801/16 1297/16 744/16 +f 4018/16 744/16 1297/16 +f 1297/16 801/16 1295/16 +f 4002/16 3996/16 3997/16 +f 3996/16 1404/6 1405/24 +f 1401/6 1404/6 4004/6 +f 1402/24 3976/24 1403/24 +f 1402/24 1400/24 3977/24 +f 4008/6 1399/6 1401/6 +f 1400/24 1397/24 1395/24 +f 1398/30 1399/6 4007/6 +f 1398/30 723/30 1396/30 +f 723/30 1395/30 1396/30 +f 1394/24 1400/24 1395/24 +f 3966/25 1392/25 1391/25 +f 1390/25 3966/25 1391/25 +f 1364/29 722/29 719/29 +f 1376/29 3949/29 1386/29 +f 1376/29 1364/29 1377/29 +f 2639/19 2275/19 1382/19 +f 2639/19 1382/19 1384/19 +f 1366/29 3948/29 1376/29 +f 1373/29 3948/29 1366/29 +f 1372/5 3946/5 1373/5 +f 1371/17 1370/4 2221/4 +f 1374/29 1369/29 1368/29 +f 1364/25 1363/25 1380/25 +f 1360/12 713/28 715/22 +f 715/22 1343/22 1360/12 +f 1360/12 1358/12 1362/12 +f 1356/12 2161/12 1357/12 +f 1356/12 1354/12 2146/12 +f 1359/12 1344/12 1355/12 +f 1353/25 2146/25 1354/25 +f 1351/25 2142/25 1353/25 +f 1351/25 1353/25 1350/25 +f 1350/25 1353/25 1347/25 +f 1353/12 1344/12 1347/12 +f 1359/12 1345/12 1344/12 +f 2138/4 1361/12 1343/22 +f 1361/12 1360/12 1343/22 +f 710/9 1340/9 1342/9 +f 710/9 709/9 1340/9 +f 1342/9 1341/9 1343/22 +f 1341/9 1338/9 2138/4 +f 709/9 1339/9 1340/9 +f 1337/16 2138/16 1338/16 +f 1336/16 1337/16 1335/16 +f 1339/9 1334/17 1335/9 +f 1337/9 1339/9 1335/9 +f 709/9 1319/17 1339/9 +f 708/9 1319/17 709/9 +f 1339/9 1319/17 1334/17 +f 1335/16 1334/16 1329/16 +f 1322/16 1324/16 1334/16 +f 1328/16 1331/16 1329/16 +f 1321/6 1324/16 1322/16 +f 1323/6 1322/16 3936/16 +f 1334/16 1320/16 1322/16 +f 1322/16 1320/16 3936/16 +f 3936/16 1320/16 1318/16 +f 1317/16 2109/16 1318/16 +f 706/16 1316/16 1317/16 +f 1314/19 1316/19 1315/19 +f 1312/16 2110/16 1314/16 +f 1309/17 1312/17 1311/17 +f 1313/19 698/17 1311/17 +f 697/17 1305/17 1310/17 +f 1308/17 1312/17 1309/17 +f 1308/17 1306/17 2115/17 +f 1296/16 2115/16 1306/16 +f 1310/17 1303/17 1307/17 +f 1310/17 1305/17 1303/17 +f 1304/9 1303/17 1305/17 +f 1301/5 1302/5 746/5 +f 746/5 1298/5 1301/5 +f 733/22 751/4 682/22 +f 693/17 4019/4 695/17 +f 4020/4 695/17 4019/4 +f 695/17 4020/9 751/4 +f 692/4 4019/4 693/17 +f 4019/4 682/22 4020/4 +f 682/22 4019/4 691/19 +f 691/19 681/4 682/22 +f 4020/22 682/22 751/4 +f 746/5 695/17 751/4 +f 746/5 4018/5 1298/5 +f 1300/16 1299/16 1297/16 +f 4018/16 1297/16 1298/16 +f 1294/16 2115/16 1296/16 +f 1292/16 2114/16 1294/16 +f 1291/16 2112/16 1292/16 +f 798/24 2062/24 1291/24 +f 2064/27 798/27 797/27 +f 797/27 1290/27 2064/27 +f 1289/27 1212/27 1288/27 +f 1286/4 1290/27 1288/27 +f 1212/27 1211/27 1288/27 +f 1208/9 1283/9 1284/4 +f 1282/9 2103/9 1283/9 +f 2103/9 1282/9 1203/9 +f 2103/9 1203/9 1281/9 +f 1279/4 1200/17 1199/4 +f 2094/19 1277/19 1276/19 +f 1273/19 1270/19 1271/19 +f 1273/19 1267/19 1270/19 +f 4021/19 1267/19 1273/19 +f 1186/19 4021/19 1273/19 +f 4021/19 4022/4 1267/19 +f 4023/19 4022/4 4021/19 +f 4023/19 4021/19 1185/19 +f 1185/19 4024/19 4023/19 +f 4024/19 4025/4 4023/19 +f 4025/4 4022/4 4023/19 +f 4025/4 4026/4 4022/4 +f 4027/4 4022/4 4026/4 +f 4028/4 4027/4 4026/4 +f 4029/4 4028/4 4030/4 +f 4029/4 4030/4 1162/5 +f 4029/4 1162/5 4031/4 +f 4031/4 4032/4 4029/4 +f 4029/4 4032/4 4033/4 +f 4029/4 4033/4 4028/4 +f 4028/4 4033/4 4027/4 +f 1268/19 4027/4 4033/4 +f 4032/4 1265/4 4033/4 +f 1264/4 1265/1 4032/4 +f 4034/4 1264/4 4032/4 +f 1262/16 1264/16 4034/16 +f 1157/16 1262/16 4034/16 +f 1157/16 4034/6 4031/6 +f 4031/4 4034/4 4032/4 +f 1171/4 1173/17 4030/4 +f 4030/4 1173/17 1162/5 +f 1171/4 4030/4 4028/4 +f 1171/4 4028/4 4026/4 +f 1268/19 4022/4 4027/4 +f 1171/4 4026/4 4025/4 +f 1175/4 1171/4 4025/4 +f 1172/4 1171/4 1175/4 +f 1175/4 4025/4 4024/19 +f 1267/19 4022/4 1268/19 +f 1268/19 4033/4 1266/19 +f 1266/19 4033/4 1265/1 +f 1263/24 1265/16 1264/16 +f 1261/24 1262/16 1259/16 +f 1259/16 1262/16 1157/16 +f 1157/16 4035/16 1259/16 +f 1259/16 4035/16 1250/16 +f 1250/16 4036/16 1251/16 +f 1251/16 4036/16 1148/16 +f 1148/16 1147/16 1251/16 +f 1148/16 4036/16 1149/16 +f 4035/16 4036/16 1250/16 +f 1156/5 4036/5 4035/5 +f 1156/5 1150/5 4036/5 +f 1153/5 1150/5 1156/5 +f 1261/24 1260/24 2092/24 +f 1260/24 1254/24 2042/24 +f 1254/24 1252/16 1255/16 +f 1257/24 2040/24 1258/24 +f 1249/16 306/16 1252/16 +f 1146/16 1249/16 1251/16 +f 1248/16 306/16 1249/16 +f 1247/27 309/37 1245/27 +f 4037/4 4038/4 312/37 +f 790/24 313/16 312/16 +f 790/9 312/37 1229/4 +f 1228/4 790/9 1229/4 +f 791/19 1228/4 4039/4 +f 4039/4 792/19 791/19 +f 792/19 4039/4 4040/4 +f 1225/4 4039/4 1228/4 +f 790/24 1003/16 313/16 +f 312/37 4041/4 1229/4 +f 1232/4 1229/4 4041/4 +f 1232/4 4041/4 4042/4 +f 4042/4 4041/4 4038/4 +f 4042/4 4038/4 1242/4 +f 1242/4 4038/4 4037/4 +f 4043/27 1239/4 4037/4 +f 4043/27 4037/4 1247/27 +f 1246/27 1239/4 4043/27 +f 1246/27 1243/4 1239/4 +f 312/37 4038/4 4041/4 +f 4037/4 312/37 1247/27 +f 1247/27 1246/27 4043/27 +f 1144/16 1243/36 1246/16 +f 1245/16 1248/16 1145/16 +f 1144/16 1244/36 1243/36 +f 4037/4 1239/4 1242/4 +f 1241/4 4042/4 1242/4 +f 1233/4 4042/4 1241/4 +f 1235/17 1241/17 1240/17 +f 1240/17 1243/4 1238/17 +f 1240/17 1238/17 1235/17 +f 1238/17 1142/17 1236/17 +f 1235/17 1233/17 1241/17 +f 1136/17 1231/17 1234/17 +f 1233/4 1232/4 4042/4 +f 1230/4 1229/4 1232/4 +f 1225/4 1228/4 1226/4 +f 1221/4 4040/4 1225/4 +f 1218/4 4040/4 1221/4 +f 4040/4 4039/4 1225/4 +f 794/19 4040/4 1219/4 +f 795/16 1219/6 1214/6 +f 4040/4 1218/4 1219/4 +f 1217/6 1220/6 1216/6 +f 1117/6 1215/6 1121/6 +f 1213/27 1212/27 1289/27 +f 1212/6 1108/6 1211/6 +f 1208/9 1285/4 1210/4 +f 1204/6 1207/6 1209/6 +f 1211/6 1108/6 1206/6 +f 1204/6 1209/6 1206/6 +f 1203/9 1207/9 1204/9 +f 1105/17 1202/9 1106/17 +f 1200/17 1280/9 1201/9 +f 1193/19 1272/19 1194/19 +f 1192/4 1197/4 1191/4 +f 1189/4 1188/4 1193/4 +f 1186/19 1273/19 1188/19 +f 1185/19 4021/19 1186/19 +f 1184/17 4024/17 1185/17 +f 4024/17 1184/17 1176/17 +f 1184/17 1179/17 1176/17 +f 1187/17 1182/4 1183/17 +f 1181/17 1179/17 1184/17 +f 1178/17 1179/17 1098/17 +f 1178/17 1177/17 1179/17 +f 1176/17 1179/17 1177/17 +f 1176/17 1175/17 4024/17 +f 1163/19 1173/17 1164/17 +f 1173/17 1172/4 1164/17 +f 1172/4 1170/17 1164/17 +f 1170/17 1174/17 1169/17 +f 1092/17 1168/17 1169/17 +f 1084/5 1163/19 1165/9 +f 1164/17 1166/17 1165/9 +f 1162/5 1173/17 1163/19 +f 4031/4 1162/5 1160/5 +f 1085/5 1161/5 1163/19 +f 1085/5 1159/5 1161/5 +f 1155/5 1159/5 1085/5 +f 1155/5 1085/5 1153/5 +f 4031/4 1160/5 1158/5 +f 1158/6 1157/16 4031/6 +f 1156/5 4035/5 1157/5 +f 1159/5 1155/5 1154/5 +f 1155/5 1153/5 1156/5 +f 1149/16 4036/16 1150/16 +f 1151/16 1148/16 1149/16 +f 1146/16 1251/16 1147/16 +f 1074/16 1144/16 1146/16 +f 1146/16 1145/16 1249/16 +f 1244/36 1144/16 1072/36 +f 1238/17 1143/17 1142/17 +f 1142/17 1141/17 1139/17 +f 1070/17 1140/17 1141/17 +f 1070/16 1067/16 1140/16 +f 1067/16 1051/16 1140/16 +f 1068/16 1067/16 1070/16 +f 1237/17 1137/17 1136/17 +f 1136/17 1135/17 1231/17 +f 1134/4 1227/4 1135/4 +f 1132/6 1224/6 1134/6 +f 1133/17 1137/17 1130/17 +f 1131/6 1129/6 1127/6 +f 1137/17 1128/17 1130/17 +f 1128/17 1138/17 1048/17 +f 1128/6 1048/6 1126/6 +f 1122/6 1127/6 1124/6 +f 1123/6 1118/11 1120/6 +f 1117/6 1121/6 1118/11 +f 1115/6 1116/6 1117/6 +f 1113/6 1115/6 1111/6 +f 1110/6 1212/6 1112/16 +f 1108/6 1212/6 1110/6 +f 1205/6 1108/6 1030/16 +f 1030/16 1107/16 1205/6 +f 1107/16 1106/16 1205/6 +f 1198/4 1029/4 1102/4 +f 1101/4 1191/4 1102/4 +f 1100/4 1190/4 1101/4 +f 1099/4 1182/4 1100/4 +f 1099/4 1098/17 1180/17 +f 1178/17 1098/17 1096/17 +f 1095/17 1178/17 1096/17 +f 1091/17 1178/17 1095/17 +f 1095/16 1094/16 1093/16 +f 1016/16 1065/16 1080/16 +f 1095/17 1093/17 1091/17 +f 1091/17 1092/17 1178/17 +f 1092/17 1090/17 1168/17 +f 1091/17 1089/17 1090/17 +f 1090/17 1087/17 1086/17 +f 1093/17 1087/17 1089/17 +f 1087/16 1081/16 1083/16 +f 1165/9 1086/17 1088/17 +f 1085/5 1163/19 1084/5 +f 1153/5 1085/5 1082/5 +f 1083/17 1084/5 1088/17 +f 1079/16 1152/16 1082/16 +f 1077/16 1151/16 1079/16 +f 1075/16 1147/16 1077/16 +f 1073/17 1076/17 1069/17 +f 1074/16 1146/16 1075/16 +f 1074/16 1072/36 1144/16 +f 1069/17 1143/17 1072/17 +f 1076/17 1070/17 1069/17 +f 1071/17 1070/17 1141/17 +f 1067/16 1064/16 1053/16 +f 1054/16 1056/16 1060/16 +f 1060/16 1043/16 1054/16 +f 1055/4 1053/4 1064/4 +f 1043/4 1052/4 1054/4 +f 1053/16 1051/16 1067/16 +f 1049/16 1052/16 1047/16 +f 1140/16 1051/16 1050/16 +f 1048/17 1138/17 1050/17 +f 1048/16 1047/16 1126/16 +f 1044/16 1047/16 1052/16 +f 1046/16 1045/16 1125/16 +f 1036/6 1045/6 1042/6 +f 1044/6 1052/6 1043/6 +f 1043/16 1060/16 1040/16 +f 1042/16 1041/16 1036/16 +f 1061/4 1039/17 1040/4 +f 1041/17 1039/17 1038/17 +f 1041/17 1038/17 1037/17 +f 1037/16 1036/16 1041/16 +f 1036/6 1034/6 1045/6 +f 994/6 1032/6 1035/6 +f 1045/16 1034/16 1033/16 +f 1125/16 1033/16 1119/16 +f 1109/16 1119/16 1033/16 +f 1028/16 1104/16 1031/16 +f 1029/4 1104/4 1028/4 +f 1029/4 1027/4 1101/4 +f 1031/16 1026/16 1028/16 +f 1027/16 1025/16 1024/16 +f 1022/4 1100/4 1024/4 +f 1022/16 1021/16 1097/16 +f 1023/16 990/16 1021/16 +f 1017/16 1021/16 990/16 +f 1020/16 1097/16 1021/16 +f 1021/16 1017/16 1020/16 +f 1080/16 1019/16 1016/16 +f 1014/5 1065/5 1016/5 +f 1012/16 1015/16 1018/16 +f 1018/5 982/5 1012/5 +f 1063/16 1014/16 1013/16 +f 1013/5 1011/5 1062/5 +f 1012/5 982/5 1011/5 +f 1062/32 1011/32 1010/32 +f 1008/21 1009/32 1010/32 +f 1006/32 1058/32 1009/32 +f 1005/32 1059/32 1006/32 +f 1005/32 1007/20 313/20 +f 1004/32 1061/32 1005/32 +f 1002/32 1039/32 1004/32 +f 1004/32 313/20 1003/32 +f 1003/16 790/24 758/25 +f 1001/32 999/32 1038/32 +f 996/17 999/17 997/17 +f 994/16 1035/16 996/16 +f 992/16 995/16 986/16 +f 994/4 993/4 1032/4 +f 1025/16 993/16 991/16 +f 1023/16 991/16 990/16 +f 989/5 1017/5 990/5 +f 989/16 987/16 1018/16 +f 984/5 1018/5 987/5 +f 986/16 988/16 992/16 +f 986/5 998/5 985/5 +f 987/5 985/5 984/5 +f 984/5 983/5 1018/5 +f 1018/5 983/5 982/5 +f 981/32 1011/32 982/32 +f 1008/21 981/32 784/32 +f 784/32 770/29 1008/21 +f 1823/34 782/33 978/34 +f 971/33 974/33 973/33 +f 972/33 973/33 782/33 +f 973/33 972/33 971/33 +f 971/5 970/5 974/5 +f 1574/6 969/6 968/6 +f 968/6 967/6 1559/6 +f 972/33 781/29 967/6 +f 966/6 780/29 1556/6 +f 965/29 780/29 779/29 +f 964/6 1555/6 965/6 +f 932/33 1554/6 964/6 +f 935/33 1553/6 932/33 +f 935/33 937/33 1551/33 +f 962/33 1551/33 937/33 +f 963/33 960/33 1547/33 +f 961/33 1547/33 960/33 +f 959/9 957/17 1545/9 +f 957/17 956/17 1535/9 +f 954/17 953/17 1531/17 +f 952/17 949/17 953/17 +f 952/17 955/17 951/17 +f 4044/17 950/17 942/17 +f 950/17 949/17 952/17 +f 4044/17 945/17 950/17 +f 1522/17 948/17 947/17 +f 947/17 946/17 1513/5 +f 4044/17 944/17 945/17 +f 1511/9 946/5 944/17 +f 944/17 943/5 1506/5 +f 4044/17 942/17 944/17 +f 943/17 941/17 1508/5 +f 951/17 940/17 942/17 +f 941/33 938/33 936/33 +f 958/33 939/33 940/33 +f 937/33 939/33 962/33 +f 934/29 931/29 930/29 +f 927/5 926/5 928/5 +f 929/29 777/29 927/29 +f 776/29 774/6 921/6 +f 927/5 776/5 920/5 +f 923/5 925/5 920/5 +f 774/29 922/29 921/29 +f 924/29 922/29 919/29 +f 773/29 919/29 922/29 +f 772/29 771/29 769/29 +f 918/29 1483/29 772/29 +f 917/29 1483/29 918/29 +f 915/16 1481/16 917/16 +f 913/16 1481/29 915/29 +f 914/16 1481/16 913/16 +f 912/16 869/6 914/16 +f 912/5 3941/5 870/5 +f 883/5 870/5 3941/5 +f 871/9 870/5 883/5 +f 911/4 3941/5 912/5 +f 912/16 870/11 869/6 +f 916/29 767/29 913/16 +f 767/4 910/4 913/4 +f 911/4 913/4 910/4 +f 1684/19 911/4 910/4 +f 910/4 905/4 1684/19 +f 910/4 906/4 905/4 +f 904/19 1684/19 905/19 +f 904/19 903/4 1618/4 +f 907/6 902/6 901/6 +f 903/6 902/6 1731/6 +f 909/6 900/6 1729/9 +f 896/6 898/6 897/6 +f 895/6 1698/6 896/6 +f 894/19 1695/19 895/19 +f 894/6 892/6 1690/6 +f 891/6 886/6 892/6 +f 891/6 893/6 890/6 +f 889/6 886/6 891/6 +f 900/5 765/4 888/5 +f 762/5 887/5 763/5 +f 889/6 887/6 886/6 +f 892/6 886/6 885/6 +f 1687/19 885/19 884/19 +f 883/29 882/29 871/16 +f 879/29 874/29 881/29 +f 764/29 879/29 880/29 +f 764/29 759/29 879/29 +f 881/29 874/29 872/29 +f 872/29 873/29 881/29 +f 869/6 870/11 867/16 +f 866/16 859/16 868/16 +f 866/16 860/16 859/16 +f 865/16 860/16 866/16 +f 867/16 871/16 865/16 +f 872/29 864/16 865/16 +f 864/16 876/16 863/16 +f 865/16 862/16 860/16 +f 859/16 860/16 852/16 +f 857/16 1478/16 858/16 +f 856/16 854/16 838/16 +f 854/16 859/16 853/16 +f 859/16 852/16 853/16 +f 852/16 861/16 849/6 +f 861/4 817/4 849/4 +f 849/6 847/6 848/16 +f 819/25 846/25 847/25 +f 843/16 844/16 841/16 +f 851/16 843/16 842/16 +f 840/16 841/16 839/16 +f 840/16 850/16 842/16 +f 840/16 838/16 854/16 +f 837/16 1476/16 838/16 +f 835/16 834/16 836/16 +f 1473/9 837/9 836/9 +f 834/25 844/25 831/25 +f 834/17 833/9 836/9 +f 844/25 829/25 831/25 +f 829/6 830/6 832/6 +f 829/25 844/25 828/25 +f 826/17 827/5 825/17 +f 828/25 820/25 825/25 +f 1451/17 823/17 822/17 +f 818/6 1449/6 821/6 +f 820/25 846/25 819/25 +f 819/25 847/25 817/25 +f 818/6 816/6 1449/6 +f 815/4 817/4 861/4 +f 814/17 1432/19 816/17 +f 815/4 863/4 813/4 +f 812/17 1429/17 814/17 +f 811/29 813/29 875/29 +f 810/17 1430/17 812/17 +f 811/29 878/29 758/29 +f 809/17 1422/17 810/17 +f 1422/17 809/17 808/17 +f 807/25 1419/25 808/25 +f 1410/5 807/5 806/5 +f 1409/5 806/5 805/5 +f 1408/5 805/5 804/5 +f 802/24 1407/24 803/24 +f 801/16 3995/16 802/24 +f 1295/16 801/16 800/16 +f 798/24 1293/24 800/24 +f 794/16 1219/6 795/16 +f 792/19 4040/4 794/19 +f 793/19 799/9 789/9 +f 1228/4 791/19 790/9 +f 1000/32 758/29 788/32 +f 787/32 998/32 788/32 +f 786/32 985/32 787/32 +f 754/32 784/32 786/32 +f 785/32 784/32 754/32 +f 784/32 785/32 761/29 +f 761/29 785/32 757/31 +f 782/33 1823/34 770/29 +f 781/29 972/33 782/33 +f 775/29 931/29 779/29 +f 777/29 776/29 927/29 +f 774/29 773/29 922/29 +f 916/29 769/29 768/29 +f 768/29 767/29 916/29 +f 768/4 761/4 766/4 +f 759/29 764/29 760/29 +f 758/29 879/29 759/29 +f 755/31 754/32 758/29 +f 757/31 785/32 753/32 +f 747/32 750/31 753/32 +f 748/32 747/32 752/32 +f 746/5 751/4 747/5 +f 4018/5 746/5 744/5 +f 745/5 733/22 743/5 +f 3998/16 744/16 742/16 +f 742/16 743/16 736/16 +f 738/6 4016/6 739/6 +f 737/16 735/16 738/6 +f 741/16 736/16 737/16 +f 743/5 733/22 736/5 +f 738/22 735/22 734/22 +f 4017/28 734/22 732/22 +f 726/6 4014/6 727/6 +f 725/29 724/29 4012/29 +f 4011/30 724/29 723/30 +f 721/29 1395/30 723/30 +f 1389/29 720/29 722/29 +f 725/29 717/7 716/29 +f 727/6 728/6 717/7 +f 1362/12 728/28 713/28 +f 711/4 714/22 665/22 +f 663/4 664/4 711/4 +f 664/4 704/9 1342/9 +f 704/9 710/9 1342/9 +f 1319/17 708/9 705/17 +f 704/9 705/17 708/9 +f 702/19 706/19 703/19 +f 701/19 659/19 699/19 +f 657/4 694/9 699/17 +f 696/9 1305/17 697/17 +f 695/17 746/5 696/9 +f 4019/4 692/4 691/19 +f 681/4 691/19 684/19 +f 686/6 689/6 691/6 +f 685/5 688/5 687/5 +f 683/5 686/5 654/5 +f 653/5 683/5 654/5 +f 683/19 653/5 679/4 +f 690/4 685/19 684/4 +f 733/22 682/22 680/4 +f 683/19 679/4 681/4 +f 678/6 672/6 671/6 +f 678/17 651/9 650/17 +f 678/17 670/4 651/9 +f 670/4 656/4 651/9 +f 677/6 672/6 678/6 +f 673/6 676/6 675/6 +f 673/6 674/6 676/6 +f 674/6 672/6 677/6 +f 671/17 670/4 678/17 +f 669/11 673/6 532/16 +f 713/28 667/22 665/22 +f 711/4 665/22 663/4 +f 663/4 661/4 662/4 +f 662/4 660/19 701/19 +f 661/4 663/4 658/4 +f 659/19 701/19 660/19 +f 699/17 659/17 657/4 +f 656/4 532/12 655/4 +f 648/17 652/4 529/9 +f 495/17 648/17 2288/17 +f 647/17 645/9 494/17 +f 675/9 644/17 643/9 +f 626/25 628/25 598/6 +f 630/6 633/6 631/6 +f 629/25 627/25 640/25 +f 621/25 640/25 627/25 +f 627/25 623/25 621/25 +f 640/25 621/25 620/25 +f 638/4 620/5 618/19 +f 639/4 618/19 617/5 +f 548/17 551/17 549/17 +f 551/6 4045/6 554/6 +f 4045/6 4046/6 554/6 +f 554/6 4046/6 4047/6 +f 4048/6 4047/6 4046/6 +f 4048/6 4046/6 4049/6 +f 4049/6 4050/6 4048/6 +f 4051/6 4048/6 4050/6 +f 4050/6 4052/6 4051/6 +f 4053/6 4051/6 4052/6 +f 4052/6 4054/6 4053/6 +f 4054/6 4055/6 4053/6 +f 4056/6 4053/6 4055/6 +f 4057/6 4056/6 4055/6 +f 4055/6 4058/6 4057/6 +f 4057/6 602/6 4059/25 +f 4060/25 4057/6 4059/25 +f 4061/25 4060/25 4059/25 +f 4059/23 4062/9 4061/19 +f 4061/19 4062/9 4063/19 +f 4061/19 4063/19 4064/19 +f 4064/19 4065/19 4061/19 +f 4061/19 4065/19 4066/4 +f 4065/25 4067/25 4066/25 +f 4066/25 4067/25 4068/25 +f 4066/25 4068/25 4069/25 +f 4069/25 4060/25 4066/25 +f 4056/6 4070/16 4071/8 +f 4072/6 4056/6 4071/8 +f 4071/4 4073/9 4072/9 +f 4072/6 4074/6 4056/6 +f 4072/6 4075/6 4074/6 +f 4076/6 4077/6 4078/6 +f 4076/6 4078/6 4079/6 +f 4080/4 4076/4 4079/4 +f 4080/4 4079/4 4051/19 +f 4053/4 4080/4 4051/19 +f 4051/19 4078/19 4081/19 +f 555/6 4081/6 4082/6 +f 555/6 4082/6 560/6 +f 555/6 560/6 556/6 +f 556/6 560/6 558/6 +f 490/19 558/6 560/6 +f 4083/23 559/19 4084/23 +f 562/19 4083/23 4085/2 +f 4086/2 563/2 561/2 +f 4087/2 4088/2 4089/2 +f 563/2 4089/2 4088/2 +f 563/2 4090/5 565/19 +f 565/19 4091/5 564/19 +f 4092/5 4091/5 565/19 +f 4093/5 4092/5 565/19 +f 4093/5 565/19 4090/5 +f 4094/5 4093/5 4090/5 +f 4090/5 4095/5 4094/5 +f 4094/16 4095/16 4096/16 +f 4097/5 4092/5 4098/5 +f 4099/16 4100/16 4101/16 +f 566/9 4102/9 4103/9 +f 4104/16 4105/16 4106/16 +f 4104/16 4106/16 4107/16 +f 4104/5 4107/19 4108/9 +f 4108/9 4109/4 4104/5 +f 4104/5 4109/4 570/9 +f 4104/5 570/9 4105/19 +f 4109/4 4108/9 4110/4 +f 570/9 4109/4 4110/4 +f 4111/19 4112/4 4113/4 +f 4111/19 4113/4 4114/4 +f 4115/4 4116/4 4114/4 +f 575/19 4116/4 574/19 +f 574/19 4116/4 4117/9 +f 4118/9 4117/9 4116/4 +f 4116/4 4119/9 4118/9 +f 4120/19 4118/19 4119/19 +f 4120/19 4119/19 4065/19 +f 4121/19 4120/19 4064/19 +f 4064/19 4122/19 4121/19 +f 4121/19 4122/19 4123/19 +f 4121/19 4123/19 4124/19 +f 4118/19 4124/19 4125/19 +f 4125/19 4124/19 4126/19 +f 4126/19 4127/19 4125/19 +f 4128/19 4125/9 4127/9 +f 4128/6 4127/6 4129/6 +f 4125/9 4130/19 4131/19 +f 4125/9 4131/19 4117/9 +f 577/19 576/19 4131/19 +f 4131/19 4130/19 577/19 +f 4130/19 4128/19 577/19 +f 577/19 4128/19 4132/17 +f 577/19 4132/17 4133/19 +f 4133/19 4132/17 580/17 +f 4133/19 580/17 579/19 +f 4132/17 4134/17 4135/17 +f 4136/19 4135/19 4134/19 +f 4136/19 4134/19 4126/19 +f 4136/19 4126/19 4137/19 +f 4138/19 4136/19 4137/19 +f 4138/19 4137/19 4139/19 +f 4138/19 4139/19 4140/19 +f 4136/19 4138/19 4140/19 +f 4136/19 4140/19 4141/19 +f 4141/19 4142/19 4136/19 +f 4136/19 4142/19 4143/19 +f 4136/19 4143/19 4144/19 +f 580/17 4144/17 4143/17 +f 4145/17 584/17 581/17 +f 4145/17 581/17 4142/17 +f 580/17 4143/17 581/17 +f 580/17 4135/17 4144/17 +f 4142/17 581/17 4143/17 +f 4141/19 4145/19 4142/19 +f 4146/19 4145/19 4141/19 +f 4146/17 4141/17 586/17 +f 586/17 4141/17 4147/17 +f 586/17 4147/17 590/17 +f 4147/17 592/17 590/17 +f 592/17 4148/17 597/17 +f 592/17 4140/19 4148/17 +f 4147/17 4140/19 592/17 +f 4146/17 585/17 4145/17 +f 4147/17 4141/17 4140/19 +f 4148/19 4140/19 4139/19 +f 599/6 4148/6 4139/6 +f 4139/6 4149/6 599/6 +f 4139/19 4137/19 4149/19 +f 4137/19 4150/19 4149/19 +f 4149/19 4150/19 4151/19 +f 4149/19 4151/19 601/19 +f 601/19 4151/19 4152/19 +f 601/6 4152/6 4153/6 +f 4153/9 608/6 625/6 +f 606/40 4154/41 4155/42 +f 605/6 4156/9 604/6 +f 602/6 4062/25 4059/25 +f 4156/9 4155/9 4063/19 +f 4063/19 4157/19 4122/19 +f 4158/19 4122/19 4157/19 +f 4152/19 4157/19 4159/19 +f 4152/19 4159/19 4153/9 +f 4153/9 4159/19 4154/9 +f 4155/9 605/6 606/6 +f 4154/9 608/6 4153/9 +f 4151/19 4158/19 4157/19 +f 4126/19 4123/19 4158/19 +f 4122/19 4158/19 4123/19 +f 4157/19 4063/19 4159/19 +f 4159/19 4063/19 4155/9 +f 605/6 4155/9 4156/9 +f 602/6 604/6 4062/25 +f 4062/9 604/6 4156/9 +f 4151/19 4157/19 4152/19 +f 4150/19 4158/19 4151/19 +f 4150/19 4126/19 4158/19 +f 4137/19 4126/19 4150/19 +f 4126/19 4134/19 4129/19 +f 4144/19 4135/19 4136/19 +f 4132/17 4129/17 4134/17 +f 4132/17 4135/17 580/17 +f 4131/19 576/19 4117/9 +f 4128/19 4129/17 4132/17 +f 4126/19 4129/19 4127/19 +f 4130/19 4125/9 4128/19 +f 4126/19 4124/19 4123/19 +f 4124/19 4120/19 4121/19 +f 4118/19 4120/19 4124/19 +f 4117/9 4118/9 4125/9 +f 4111/19 4116/4 575/19 +f 575/19 4160/19 4111/19 +f 4116/4 4067/9 4119/9 +f 4111/19 4114/4 4116/4 +f 4067/9 4116/4 4115/4 +f 4114/4 4161/4 4115/4 +f 4108/9 4069/9 4115/4 +f 4108/9 4115/4 4161/4 +f 4161/4 4110/4 4108/9 +f 4069/9 4108/9 4162/19 +f 4163/2 4069/9 4162/19 +f 4164/16 4165/11 4163/11 +f 4163/2 4166/2 4167/2 +f 4069/25 4056/6 4060/25 +f 4168/2 4069/9 4167/2 +f 4069/9 4168/2 4169/23 +f 4069/9 4169/23 4056/6 +f 4070/16 4056/6 4169/23 +f 4169/23 4170/16 4070/16 +f 4070/16 4170/16 4171/8 +f 4172/6 4173/6 4174/6 +f 4172/6 4174/6 4175/6 +f 4073/9 4172/9 4175/9 +f 4073/9 4175/9 4075/9 +f 4074/4 4176/5 4177/4 +f 4178/4 4177/4 4176/5 +f 4178/4 4176/5 4179/5 +f 4180/5 4178/4 4179/5 +f 4180/5 4179/5 4181/5 +f 4181/5 4182/4 4183/5 +f 4181/5 4183/5 4180/5 +f 560/6 4082/6 4184/6 +f 4184/6 4185/6 560/6 +f 560/6 4185/6 4186/3 +f 560/6 4186/3 4187/8 +f 560/6 4187/8 4188/8 +f 559/19 4188/8 4084/23 +f 4084/23 4188/8 4189/8 +f 4190/5 4191/5 4084/5 +f 4192/23 4193/23 4083/23 +f 4192/23 4194/2 4193/23 +f 4195/23 4193/23 4194/2 +f 4195/23 4196/23 4193/23 +f 4193/23 4197/2 4085/2 +f 4197/2 4198/5 4085/2 +f 4198/5 562/19 4085/2 +f 4198/5 4199/5 562/19 +f 4200/5 4198/5 4201/12 +f 4202/5 4200/5 4201/12 +f 4201/12 4203/5 4202/5 +f 4202/6 4203/6 4204/6 +f 4202/5 4204/5 4166/2 +f 4205/5 4198/5 4206/5 +f 4207/16 4208/16 4209/16 +f 4086/2 4210/2 4211/2 +f 4212/16 4213/16 4214/16 +f 4212/16 4214/16 4215/16 +f 4212/17 4215/9 4163/2 +f 4163/2 4216/9 4212/17 +f 4212/17 4216/9 4087/2 +f 4212/17 4087/2 4213/9 +f 4216/11 4163/11 4165/11 +f 4087/2 4216/9 4165/2 +f 4166/2 4217/19 4218/5 +f 4218/5 4202/5 4166/2 +f 4206/5 4218/5 4219/5 +f 4206/16 4219/16 4209/16 +f 4207/16 4209/16 4219/16 +f 4219/16 4214/16 4207/16 +f 4217/16 4215/16 4214/16 +f 4214/16 4219/16 4217/16 +f 4217/19 4219/5 4218/5 +f 4163/2 4217/19 4166/2 +f 4163/2 4215/9 4217/19 +f 4214/16 4213/16 4207/16 +f 4213/9 4210/2 4207/2 +f 4089/2 4211/2 4213/9 +f 4213/9 4211/2 4210/2 +f 4199/5 4210/2 4086/2 +f 4210/16 4208/16 4207/16 +f 4208/5 4206/5 4209/5 +f 4205/5 4206/5 4208/5 +f 4199/5 4208/5 4210/2 +f 562/19 4199/5 4086/2 +f 4208/5 4199/5 4205/5 +f 4206/5 4200/5 4218/5 +f 4206/5 4198/5 4200/5 +f 4218/5 4200/5 4202/5 +f 4220/16 4167/6 4204/6 +f 4221/16 4222/8 4223/8 +f 4221/16 4223/8 4224/8 +f 4170/16 4221/16 4224/8 +f 4071/4 4225/5 4226/17 +f 4227/5 4226/17 4225/5 +f 4228/5 4229/5 4230/5 +f 4228/5 4231/5 4232/5 +f 4228/5 4232/5 4227/5 +f 4233/17 4226/17 4232/5 +f 4173/9 4233/17 4232/5 +f 4234/6 4235/6 4186/3 +f 4234/6 4236/6 4235/6 +f 4236/6 4174/6 4235/6 +f 4175/6 4237/6 4075/6 +f 4075/6 4237/6 4238/6 +f 4075/6 4238/6 4074/6 +f 4238/6 4239/6 4074/6 +f 4074/4 4239/4 4176/5 +f 4176/5 4239/4 4240/5 +f 4240/5 4179/5 4176/5 +f 4240/5 4181/5 4179/5 +f 4241/5 4181/5 4240/5 +f 4234/6 4242/6 4243/6 +f 4243/6 4244/6 4236/6 +f 4236/6 4244/6 4174/6 +f 4239/4 4238/17 4245/17 +f 4245/17 4246/17 4239/4 +f 4239/4 4246/17 4240/5 +f 4246/17 4241/5 4240/5 +f 4246/17 4247/17 4241/5 +f 4182/4 4241/5 4247/17 +f 4185/6 4183/6 4234/6 +f 4183/6 4242/6 4234/6 +f 4183/6 4182/6 4242/6 +f 4248/17 4245/17 4244/17 +f 4243/6 4248/6 4244/6 +f 4244/17 4245/17 4237/17 +f 4248/17 4247/17 4246/17 +f 4248/17 4182/4 4247/17 +f 4242/17 4182/4 4248/17 +f 4246/17 4245/17 4248/17 +f 4237/17 4245/17 4238/17 +f 4242/6 4248/6 4243/6 +f 4185/6 4234/6 4186/3 +f 4175/6 4244/6 4237/6 +f 4174/6 4244/6 4175/6 +f 4243/6 4236/6 4234/6 +f 4231/8 4186/3 4235/6 +f 4235/6 4232/8 4231/8 +f 4249/8 4189/8 4188/8 +f 4223/5 4250/5 4224/5 +f 4224/5 4250/5 4251/5 +f 4224/5 4251/5 4171/5 +f 4171/5 4251/5 4252/5 +f 4251/8 4253/16 4252/6 +f 4254/6 4252/6 4253/16 +f 4253/16 4255/16 4254/6 +f 4254/5 4255/5 4256/5 +f 4225/5 4254/5 4256/5 +f 4256/5 4227/5 4225/5 +f 4256/5 4228/5 4227/5 +f 4257/5 4228/5 4256/5 +f 4258/16 4229/16 4259/16 +f 4249/8 4260/11 4261/8 +f 4261/5 4250/5 4262/5 +f 4260/11 4250/8 4261/8 +f 4230/8 4260/11 4249/8 +f 4187/8 4230/8 4249/8 +f 4260/11 4258/16 4250/8 +f 4258/16 4253/16 4250/8 +f 4258/16 4259/16 4255/16 +f 4260/11 4229/16 4258/16 +f 4229/5 4257/5 4259/5 +f 4255/16 4259/16 4257/16 +f 4230/8 4229/16 4260/11 +f 4255/5 4257/5 4256/5 +f 4255/16 4253/16 4258/16 +f 4252/6 4254/6 4071/8 +f 4250/8 4253/16 4251/8 +f 4262/5 4250/5 4223/5 +f 4261/8 4262/8 4249/8 +f 4249/8 4262/8 4189/8 +f 4262/8 4223/8 4189/8 +f 4222/8 4263/6 4264/6 +f 4263/6 4265/6 4264/6 +f 4264/5 4265/5 4266/5 +f 4190/5 4264/5 4266/5 +f 4190/5 4267/5 4191/5 +f 4268/5 4191/5 4267/5 +f 4267/5 4269/5 4268/5 +f 4268/5 4269/5 4270/5 +f 4191/23 4268/23 4271/23 +f 4191/23 4271/23 4192/23 +f 4084/23 4191/23 4192/23 +f 4084/23 4192/23 4083/23 +f 4192/23 4271/23 4272/23 +f 4273/16 4274/16 4275/16 +f 4273/16 4275/16 4276/16 +f 4273/17 4276/2 4168/2 +f 4168/2 4277/9 4273/17 +f 4273/17 4277/9 4195/23 +f 4273/17 4195/23 4274/9 +f 4169/5 4278/5 4265/5 +f 4279/5 4190/5 4266/5 +f 4269/5 4190/5 4279/5 +f 4276/2 4280/23 4169/23 +f 4168/2 4276/2 4169/23 +f 4280/16 4276/16 4275/16 +f 4275/16 4281/16 4280/16 +f 4280/5 4281/5 4279/5 +f 4281/5 4269/5 4279/5 +f 4271/16 4268/16 4282/16 +f 4270/16 4282/16 4268/16 +f 4282/16 4270/16 4281/16 +f 4281/16 4275/16 4282/16 +f 4169/5 4280/5 4278/5 +f 4278/5 4280/5 4279/5 +f 4279/5 4266/5 4278/5 +f 4275/16 4274/16 4282/16 +f 4274/9 4271/23 4282/23 +f 4194/2 4272/23 4274/9 +f 4274/9 4272/23 4271/23 +f 4281/16 4270/16 4269/16 +f 4267/5 4190/5 4269/5 +f 4266/5 4265/5 4278/5 +f 4263/6 4222/8 4221/16 +f 4264/6 4189/8 4222/8 +f 4187/8 4249/8 4188/8 +f 4228/5 4187/5 4231/5 +f 4187/8 4186/3 4231/8 +f 4232/8 4235/6 4173/6 +f 4233/17 4173/9 4172/9 +f 4228/5 4230/5 4187/5 +f 4229/5 4228/5 4257/5 +f 4232/5 4226/17 4227/5 +f 4071/4 4254/5 4225/5 +f 4171/8 4252/6 4071/8 +f 4189/8 4223/8 4222/8 +f 4263/6 4221/16 4265/6 +f 4221/16 4169/23 4265/6 +f 4277/16 4168/16 4283/16 +f 4195/23 4277/9 4283/23 +f 4283/16 4168/16 4220/16 +f 4283/16 4203/6 4196/16 +f 4203/6 4283/16 4220/16 +f 4196/16 4203/6 4201/6 +f 4201/12 4197/2 4196/23 +f 4203/6 4220/16 4204/6 +f 4198/5 4205/5 4199/5 +f 4201/12 4198/5 4197/2 +f 4197/2 4193/23 4196/23 +f 4283/23 4196/23 4195/23 +f 4274/9 4195/23 4194/2 +f 4272/23 4194/2 4192/23 +f 4190/5 4284/5 4264/5 +f 4190/5 4084/5 4284/5 +f 4189/8 4264/6 4284/23 +f 4189/8 4284/23 4084/23 +f 4178/6 4180/6 4077/6 +f 4178/4 4077/4 4076/4 +f 4180/6 4082/6 4077/6 +f 4184/6 4082/6 4180/6 +f 4180/5 4185/5 4184/5 +f 4180/5 4183/5 4185/5 +f 4182/4 4181/5 4241/5 +f 4235/6 4174/6 4173/6 +f 4233/17 4172/9 4226/17 +f 4172/9 4071/4 4226/17 +f 4170/16 4224/8 4171/8 +f 4169/23 4221/16 4170/16 +f 4168/16 4167/6 4220/16 +f 4163/2 4167/2 4069/9 +f 4167/6 4166/6 4204/6 +f 4165/11 4285/11 4088/11 +f 4164/16 4162/16 4096/16 +f 4165/11 4164/16 4095/16 +f 4095/16 4285/11 4165/11 +f 4285/11 4095/16 4088/11 +f 4088/11 4095/16 4090/16 +f 4090/5 563/2 4088/2 +f 4163/11 4162/16 4164/16 +f 4114/4 4113/4 4161/4 +f 4160/19 4112/4 4111/19 +f 4160/19 572/19 4112/4 +f 4113/4 4110/4 4161/4 +f 4112/4 571/4 4113/4 +f 4113/4 571/4 4110/4 +f 4162/19 4286/19 4096/5 +f 4096/5 4286/19 4287/5 +f 4287/5 4094/5 4096/5 +f 4098/5 4287/5 4288/5 +f 4098/16 4288/16 4101/16 +f 4099/16 4101/16 4288/16 +f 4288/16 4106/16 4099/16 +f 4286/16 4107/16 4106/16 +f 4106/16 4288/16 4286/16 +f 4286/19 4288/5 4287/5 +f 4108/9 4286/19 4162/19 +f 4108/9 4107/19 4286/19 +f 4106/16 4105/16 4099/16 +f 4105/19 4102/9 4099/9 +f 569/19 4103/9 4105/19 +f 4105/19 4103/9 4102/9 +f 564/19 566/9 568/9 +f 564/19 4091/5 566/9 +f 4091/5 4102/9 566/9 +f 4102/16 4100/16 4099/16 +f 4100/5 4098/5 4101/5 +f 4097/5 4098/5 4100/5 +f 4091/5 4100/5 4102/9 +f 4100/5 4091/5 4097/5 +f 4098/5 4093/5 4287/5 +f 4098/5 4092/5 4093/5 +f 4287/5 4093/5 4094/5 +f 4164/16 4096/16 4095/16 +f 4092/5 4097/5 4091/5 +f 4165/2 4088/2 4087/2 +f 4213/9 4087/2 4089/2 +f 4211/2 4089/2 4086/2 +f 4086/2 4089/2 563/2 +f 562/19 4086/2 561/2 +f 4085/2 4083/23 4193/23 +f 4188/8 559/19 560/6 +f 4081/6 4078/6 4082/6 +f 4081/19 555/19 4048/19 +f 555/19 4047/19 4048/19 +f 4079/19 4078/19 4051/19 +f 4082/6 4078/6 4077/6 +f 4074/4 4076/4 4080/4 +f 4053/4 4074/4 4080/4 +f 4177/4 4178/4 4076/4 +f 4177/4 4076/4 4074/4 +f 4072/9 4073/9 4075/9 +f 4071/4 4172/9 4073/9 +f 4070/16 4171/8 4071/8 +f 4057/6 4060/25 4056/6 +f 4068/9 4115/4 4069/9 +f 4115/4 4068/9 4067/9 +f 4065/19 4119/19 4067/4 +f 4064/19 4120/19 4065/19 +f 4064/19 4063/19 4122/19 +f 4062/9 4156/9 4063/19 +f 4066/25 4060/25 4061/25 +f 602/6 4057/6 4058/6 +f 4055/6 4289/6 4058/6 +f 4289/6 4290/6 4058/6 +f 4058/6 4290/6 603/6 +f 4290/6 4291/6 603/6 +f 4290/6 4292/6 4291/6 +f 611/6 4291/6 4292/6 +f 611/6 4292/6 4293/6 +f 4049/19 4294/19 4295/19 +f 4294/19 4296/19 4295/19 +f 4295/19 4296/19 4297/19 +f 4295/19 4297/19 614/19 +f 4296/17 4045/17 4297/17 +f 4294/6 4045/6 4296/6 +f 4294/6 4298/6 4045/6 +f 4046/6 4298/6 4049/6 +f 4049/6 4298/6 4294/6 +f 612/6 4293/6 4295/6 +f 4293/6 4299/6 4295/6 +f 4299/19 4050/19 4295/19 +f 4300/6 4299/6 4292/6 +f 4301/6 4299/6 4300/6 +f 4301/6 4300/6 4289/6 +f 4054/6 4301/6 4289/6 +f 4302/6 4299/6 4301/6 +f 4052/19 4302/19 4301/19 +f 4299/19 4302/19 4050/19 +f 4293/6 4292/6 4299/6 +f 4291/6 611/6 609/6 +f 4300/6 4292/6 4290/6 +f 4289/6 4300/6 4290/6 +f 4053/6 4056/6 4074/6 +f 4054/6 4289/6 4055/6 +f 4052/6 4301/6 4054/6 +f 4050/19 4302/19 4052/19 +f 4051/19 4081/19 4048/19 +f 4049/19 4295/19 4050/19 +f 4045/6 4298/6 4046/6 +f 4297/17 4045/17 551/17 +f 4297/17 551/17 615/17 +f 614/19 4297/19 615/19 +f 619/19 613/19 614/19 +f 614/6 612/6 4295/6 +f 622/6 610/6 613/6 +f 612/6 611/6 4293/6 +f 624/6 609/6 610/6 +f 609/6 607/6 4291/6 +f 603/6 4291/6 607/6 +f 4058/6 603/6 602/6 +f 4154/41 606/40 608/43 +f 625/25 600/6 4153/6 +f 4153/6 600/6 601/6 +f 599/6 4149/6 601/6 +f 599/6 597/6 4148/6 +f 596/6 598/6 646/6 +f 590/17 592/17 591/17 +f 586/17 590/17 587/17 +f 586/17 585/17 4146/17 +f 4145/17 585/17 584/17 +f 587/17 583/17 585/17 +f 578/19 4133/19 579/19 +f 579/19 588/4 492/19 +f 579/19 492/19 578/19 +f 491/19 573/19 578/19 +f 578/19 577/19 4133/19 +f 574/19 4117/9 576/19 +f 575/19 572/19 4160/19 +f 572/19 567/9 4112/4 +f 4112/4 567/9 571/4 +f 4110/4 571/4 570/9 +f 4105/19 570/9 569/19 +f 4103/9 569/19 566/9 +f 4083/23 562/19 559/19 +f 488/6 479/6 557/6 +f 558/6 489/17 488/6 +f 553/6 555/6 556/6 +f 555/19 554/19 4047/19 +f 486/19 552/19 553/19 +f 551/6 554/6 552/6 +f 550/4 484/4 547/17 +f 547/17 484/4 544/17 +f 547/17 546/17 548/17 +f 545/19 617/5 546/19 +f 544/17 617/5 545/17 +f 543/17 617/5 544/17 +f 484/4 483/4 544/17 +f 543/17 542/4 639/4 +f 541/4 638/4 542/4 +f 483/4 480/4 542/4 +f 540/4 638/4 541/4 +f 476/6 637/6 540/6 +f 537/6 539/6 472/6 +f 538/6 537/6 632/6 +f 468/4 465/4 536/4 +f 536/6 535/6 468/6 +f 534/6 468/6 535/6 +f 461/9 632/9 533/9 +f 532/16 461/25 460/24 +f 532/12 460/22 448/22 +f 532/16 531/6 655/6 +f 448/22 530/9 531/9 +f 652/4 530/9 526/9 +f 526/9 529/9 652/4 +f 525/16 527/16 526/16 +f 458/9 523/9 459/9 +f 521/5 522/5 458/9 +f 457/5 456/19 2174/5 +f 518/4 456/19 516/9 +f 517/9 516/9 2383/9 +f 2382/23 516/9 455/9 +f 2377/8 454/23 453/8 +f 451/5 450/5 2374/5 +f 510/6 470/6 509/6 +f 504/5 505/5 474/5 +f 2355/17 503/5 478/17 +f 499/6 479/6 498/9 +f 497/17 2318/17 487/17 +f 495/17 2292/17 497/17 +f 496/17 493/17 591/17 +f 493/17 492/19 589/17 +f 492/19 491/19 578/19 +f 491/19 490/19 573/19 +f 487/17 489/17 491/19 +f 488/6 487/17 479/6 +f 481/6 557/6 479/6 +f 482/6 557/6 481/6 +f 486/19 485/19 552/19 +f 484/4 550/4 485/19 +f 480/4 482/19 481/19 +f 477/6 481/6 479/6 +f 474/6 506/6 473/6 +f 472/6 469/6 537/6 +f 447/8 446/8 470/6 +f 462/24 535/25 466/25 +f 388/4 448/22 463/4 +f 462/24 461/25 535/25 +f 458/9 448/22 452/9 +f 2379/23 455/9 454/23 +f 454/23 452/9 453/8 +f 511/8 449/8 447/8 +f 446/17 443/5 464/4 +f 448/22 444/4 445/5 +f 448/22 4303/4 444/4 +f 4303/4 448/22 388/4 +f 442/19 444/19 4303/19 +f 4303/19 4304/19 442/19 +f 4304/17 4305/17 442/17 +f 442/17 4305/17 4306/17 +f 442/17 4306/17 383/17 +f 4307/5 4306/5 4305/5 +f 4307/5 4305/5 4303/5 +f 4308/4 4307/4 4303/4 +f 4303/4 386/4 4308/4 +f 4303/4 388/4 386/4 +f 4306/5 4307/5 4308/5 +f 4306/6 4308/6 386/6 +f 4303/5 4305/5 4304/5 +f 382/4 441/4 443/5 +f 463/4 441/4 440/4 +f 397/5 391/17 393/9 +f 439/9 392/4 389/17 +f 434/9 390/17 391/17 +f 388/4 463/4 389/17 +f 386/4 388/4 385/17 +f 4306/6 386/6 383/6 +f 442/17 383/17 382/4 +f 163/6 379/6 164/6 +f 379/6 378/6 1920/6 +f 375/16 374/16 373/16 +f 1917/16 373/16 369/11 +f 368/6 1917/6 369/6 +f 367/6 1915/6 368/6 +f 320/16 366/16 365/6 +f 319/16 364/16 366/16 +f 363/4 361/4 1905/4 +f 319/5 360/5 362/5 +f 319/5 355/5 360/5 +f 359/5 358/5 1904/5 +f 358/16 357/16 1899/16 +f 1896/5 357/5 356/5 +f 353/16 1888/16 354/16 +f 1886/4 353/4 351/4 +f 1886/4 351/4 350/4 +f 342/4 350/4 352/4 +f 342/4 343/4 350/4 +f 350/4 343/4 345/4 +f 348/4 1884/4 349/4 +f 348/5 346/5 1883/5 +f 350/4 345/4 347/4 +f 317/16 342/16 352/16 +f 340/16 1858/16 341/16 +f 1857/21 340/21 339/21 +f 339/21 338/21 1852/21 +f 339/21 317/21 336/21 +f 335/21 1843/21 337/21 +f 333/21 336/21 317/21 +f 334/20 333/21 317/21 +f 433/20 332/20 334/20 +f 332/20 331/20 335/21 +f 432/20 330/20 332/20 +f 331/20 329/20 1844/20 +f 411/17 329/9 330/17 +f 329/20 328/20 433/20 +f 411/17 327/17 329/17 +f 328/5 325/5 432/5 +f 325/6 384/6 431/6 +f 325/5 326/5 377/5 +f 324/16 374/16 326/16 +f 325/5 327/17 322/5 +f 324/16 323/11 374/16 +f 372/11 323/11 316/11 +f 372/11 316/11 321/16 +f 320/16 372/11 321/16 +f 319/16 366/16 320/16 +f 318/5 355/5 319/5 +f 317/16 319/16 316/11 +f 316/11 322/11 315/11 +f 315/11 415/6 314/11 +f 417/11 311/11 314/11 +f 1247/27 312/37 310/37 +f 307/16 311/16 417/11 +f 1247/27 310/37 309/37 +f 1245/16 309/16 308/16 +f 1248/16 308/16 306/16 +f 307/16 418/16 305/16 +f 304/16 2499/16 306/16 +f 301/16 305/16 419/16 +f 301/16 299/6 2500/6 +f 2500/6 299/6 298/6 +f 294/15 2483/15 296/15 +f 292/15 2483/15 294/15 +f 293/15 2483/15 292/15 +f 291/15 292/15 135/15 +f 134/15 291/15 135/15 +f 2034/15 290/15 289/15 +f 282/5 286/5 235/5 +f 235/5 286/5 229/5 +f 284/5 289/5 285/5 +f 281/5 283/5 282/5 +f 2031/5 281/5 279/5 +f 2028/5 279/5 277/5 +f 2026/5 277/5 275/5 +f 2025/5 275/5 274/5 +f 2024/5 273/5 271/5 +f 276/5 270/5 272/5 +f 271/5 269/5 2024/5 +f 278/5 268/5 270/5 +f 280/5 267/5 268/5 +f 265/5 269/5 266/5 +f 2024/5 265/5 263/5 +f 2023/5 263/5 261/5 +f 2022/5 261/5 259/5 +f 2022/5 259/5 257/5 +f 2021/5 257/5 255/5 +f 255/5 254/5 273/5 +f 2020/5 254/5 252/5 +f 252/5 251/5 2005/5 +f 1999/5 250/5 249/5 +f 247/5 1991/5 249/5 +f 253/5 246/5 248/5 +f 245/5 1990/5 247/5 +f 256/5 244/5 246/5 +f 243/5 1994/5 245/5 +f 258/5 242/5 244/5 +f 241/5 1992/5 243/5 +f 260/5 240/5 242/5 +f 241/5 232/5 1992/5 +f 239/5 232/5 241/5 +f 262/5 238/5 240/5 +f 236/5 231/5 239/5 +f 264/5 237/5 238/5 +f 267/5 233/5 237/5 +f 235/5 234/5 282/5 +f 236/5 235/5 231/5 +f 239/5 231/5 232/5 +f 232/5 230/5 1995/5 +f 235/5 229/5 231/5 +f 230/15 218/15 215/15 +f 286/15 228/15 229/15 +f 218/15 213/15 215/15 +f 133/15 228/15 287/15 +f 219/15 227/15 226/15 +f 220/15 226/15 225/18 +f 110/15 226/15 220/15 +f 121/9 120/9 222/9 +f 113/9 220/10 221/9 +f 113/9 111/12 220/10 +f 110/15 219/15 226/15 +f 218/15 116/15 213/15 +f 211/15 214/15 212/15 +f 217/15 212/15 213/15 +f 209/15 212/15 216/15 +f 216/5 107/4 209/5 +f 108/5 107/4 216/5 +f 211/15 210/19 1984/15 +f 107/4 208/4 209/4 +f 207/4 208/4 107/4 +f 208/4 206/4 1983/10 +f 206/4 106/5 205/4 +f 104/5 201/5 203/5 +f 202/15 200/15 1973/15 +f 103/15 199/15 201/15 +f 103/15 189/15 199/15 +f 200/15 192/15 1972/15 +f 195/1 1969/1 198/1 +f 197/6 1967/6 195/1 +f 3823/6 197/6 196/5 +f 193/7 194/1 191/1 +f 192/15 190/7 193/7 +f 189/15 101/9 188/7 +f 188/10 102/9 187/10 +f 1944/10 186/9 184/18 +f 184/18 186/9 88/9 +f 183/10 185/10 89/9 +f 85/14 183/10 89/9 +f 87/13 183/13 85/14 +f 183/6 182/6 1939/6 +f 173/9 1932/9 176/9 +f 175/9 1928/9 173/9 +f 80/13 172/12 173/9 +f 165/6 1925/6 166/9 +f 61/6 164/6 1921/6 +f 162/6 381/6 163/6 +f 59/4 60/4 161/4 +f 439/9 161/4 160/9 +f 160/9 159/9 436/9 +f 60/4 159/9 160/9 +f 155/9 436/9 159/9 +f 152/16 156/16 157/16 +f 436/9 155/9 154/17 +f 157/16 151/16 152/16 +f 157/16 149/16 151/16 +f 151/16 150/16 429/16 +f 53/8 149/16 157/16 +f 149/16 148/7 145/16 +f 145/16 44/3 146/6 +f 146/6 142/6 143/6 +f 143/6 140/6 299/6 +f 147/3 141/3 142/3 +f 298/6 140/6 139/6 +f 137/5 295/18 139/5 +f 136/5 295/18 137/5 +f 135/15 295/18 136/5 +f 133/15 291/15 134/15 +f 133/15 131/15 227/15 +f 36/4 34/4 132/4 +f 225/18 131/4 130/4 +f 128/10 225/18 130/4 +f 130/4 32/4 128/10 +f 129/10 126/10 127/10 +f 30/10 224/9 125/10 +f 28/9 124/9 29/10 +f 3/1 28/9 29/1 +f 224/9 123/9 121/9 +f 114/12 120/9 118/9 +f 113/9 120/9 114/12 +f 115/12 112/15 111/12 +f 116/15 87/13 86/15 +f 217/15 86/15 109/5 +f 109/5 108/5 216/5 +f 106/5 207/4 107/4 +f 203/5 106/5 104/5 +f 104/5 103/5 201/5 +f 98/5 99/15 97/5 +f 99/15 189/15 103/15 +f 189/15 192/15 199/15 +f 190/7 192/15 189/15 +f 189/15 99/15 101/9 +f 100/9 98/5 90/9 +f 97/5 105/5 94/5 +f 96/5 95/5 92/5 +f 108/5 93/5 94/5 +f 93/5 92/5 95/5 +f 91/9 90/9 92/5 +f 88/9 186/9 90/9 +f 88/9 89/9 184/18 +f 84/13 115/12 78/13 +f 80/13 81/13 172/12 +f 170/12 78/13 77/12 +f 77/12 75/12 168/9 +f 79/12 73/12 76/12 +f 75/6 72/6 166/6 +f 117/6 74/6 73/6 +f 72/6 71/6 63/6 +f 74/6 70/6 72/6 +f 119/6 69/6 70/6 +f 71/6 68/6 67/6 +f 21/6 64/8 22/8 +f 21/6 51/8 64/8 +f 56/8 64/8 51/8 +f 62/9 61/6 165/6 +f 158/8 58/8 55/8 +f 158/8 55/8 54/8 +f 56/8 51/8 52/8 +f 53/8 50/8 49/11 +f 48/6 46/7 148/7 +f 147/3 44/3 42/3 +f 41/5 147/5 42/5 +f 40/5 141/5 41/5 +f 40/5 39/5 136/5 +f 33/4 130/4 34/4 +f 31/10 126/10 32/4 +f 124/9 30/10 29/10 +f 2/2 27/9 28/9 +f 26/9 122/9 27/9 +f 24/2 65/9 26/9 +f 24/2 2/2 25/2 +f 20/6 48/6 21/6 +f 20/6 19/7 46/7 +f 15/3 17/3 16/3 +f 14/3 43/3 15/3 +f 37/5 14/5 12/5 +f 11/4 35/4 12/4 +f 33/4 11/4 10/4 +f 9/4 13/4 8/4 +f 3/1 29/1 7/3 +f 8/3 4/3 6/3 +f 1/1 25/2 2/2 +f 4309/44 4310/44 4311/44 +f 4310/44 4312/44 4311/44 +f 4313/44 4314/44 4315/44 +f 4313/44 4315/44 4316/44 +f 4313/44 4317/44 4318/44 +f 4318/44 4319/44 4320/44 +f 4321/44 4318/44 4320/44 +f 4322/44 4320/44 4319/44 +f 4318/44 4322/44 4319/44 +f 4322/44 4318/44 4323/44 +f 4323/44 4324/44 4322/44 +f 4320/44 4322/44 4324/44 +f 4324/44 4325/44 4320/44 +f 4317/44 4325/44 4324/44 +f 4326/44 4325/44 4317/44 +f 4326/44 4327/44 4328/44 +f 4326/44 4328/44 4329/44 +f 4314/44 4329/44 4328/44 +f 4321/44 4329/44 4314/44 +f 4321/44 4330/44 4329/44 +f 4330/44 4325/44 4329/44 +f 4325/44 4331/44 4332/44 +f 4331/44 4333/44 4332/44 +f 4334/44 4311/44 4335/44 +f 4336/44 4337/44 4338/44 +f 4339/44 4336/44 4338/44 +f 4339/44 4338/44 4340/44 +f 4340/44 4325/44 4339/44 +f 4341/44 4325/44 4342/44 +f 4342/44 4343/44 4341/44 +f 4341/44 4343/44 4336/44 +f 4343/44 4309/44 4336/44 +f 4342/44 4344/44 4343/44 +f 4344/44 4310/44 4343/44 +f 4345/44 4344/44 4342/44 +f 4345/44 4346/44 4344/44 +f 4346/44 4312/44 4344/44 +f 4325/44 4346/44 4345/44 +f 4347/44 4325/44 4348/44 +f 4330/44 4321/44 4349/44 +f 4330/44 4349/44 4350/44 +f 4330/44 4350/44 4351/44 +f 4351/44 4350/44 4352/44 +f 4351/44 4352/44 4353/44 +f 4325/44 4351/44 4353/44 +f 4325/44 4353/44 4331/44 +f 4353/44 4354/44 4331/44 +f 4353/44 4352/44 4354/44 +f 4352/44 4355/44 4354/44 +f 4354/44 4355/44 4335/44 +f 4354/44 4335/44 4333/44 +f 4311/44 4334/44 4356/44 +f 4357/44 4311/44 4356/44 +f 4340/44 4338/44 4358/44 +f 4359/44 4340/44 4358/44 +f 4360/44 4361/44 4359/44 +f 4362/44 4359/44 4361/44 +f 4362/44 4361/44 4363/44 +f 4363/44 4340/44 4362/44 +f 4364/44 4340/44 4363/44 +f 4359/44 4365/44 4366/44 +f 4359/44 4366/44 4367/44 +f 4367/44 4360/44 4359/44 +f 4361/44 4360/44 4368/44 +f 4368/44 4369/44 4361/44 +f 4370/44 4361/44 4369/44 +f 4370/44 4369/44 4367/44 +f 4367/44 4366/44 4370/44 +f 4370/44 4363/44 4361/44 +f 4371/44 4367/44 4369/44 +f 4369/44 4372/44 4371/44 +f 4373/44 4371/44 4372/44 +f 4374/44 4373/44 4372/44 +f 4372/44 4375/44 4374/44 +f 4375/44 4376/44 4374/44 +f 4377/44 4374/44 4376/44 +f 4377/44 4376/44 4378/44 +f 4379/44 4380/44 4381/44 +f 4382/44 4383/44 4380/44 +f 4384/44 4380/44 4383/44 +f 4383/44 4385/44 4384/44 +f 4386/44 4384/44 4385/44 +f 4385/44 4387/44 4386/44 +f 4386/44 4387/44 4388/44 +f 4389/44 4386/44 4388/44 +f 4388/44 4390/44 4389/44 +f 4389/44 4390/44 4391/44 +f 4391/44 4392/44 4389/44 +f 4393/44 4389/44 4392/44 +f 4384/44 4393/44 4394/44 +f 4394/44 4395/44 4384/44 +f 4396/44 4384/44 4395/44 +f 4397/44 4384/44 4396/44 +f 4398/44 4399/44 4400/44 +f 4398/44 4400/44 4401/44 +f 4401/44 4402/44 4398/44 +f 4403/44 4404/44 4402/44 +f 4405/44 4402/44 4406/44 +f 4405/44 4406/44 4407/44 +f 4405/44 4407/44 4408/44 +f 4408/44 4409/44 4405/44 +f 4410/44 4405/44 4409/44 +f 4410/44 4409/44 4411/44 +f 4411/44 4412/44 4410/44 +f 4413/44 4410/44 4412/44 +f 4412/44 4414/44 4413/44 +f 4405/44 4413/44 4414/44 +f 4412/44 4415/44 4414/44 +f 4416/44 4414/44 4415/44 +f 4408/44 4416/44 4415/44 +f 4415/44 4417/44 4408/44 +f 4415/44 4418/44 4417/44 +f 4409/44 4417/44 4418/44 +f 4411/44 4418/44 4415/44 +f 4414/44 4419/44 4405/44 +f 4420/44 4405/44 4419/44 +f 4398/44 4420/44 4421/44 +f 4421/44 4422/44 4398/44 +f 4423/44 4398/44 4422/44 +f 4423/44 4422/44 4419/44 +f 4419/44 4424/44 4423/44 +f 4424/44 4425/44 4423/44 +f 4424/44 4426/44 4425/44 +f 4427/44 4425/44 4426/44 +f 4427/44 4428/44 4425/44 +f 4423/44 4425/44 4428/44 +f 4423/44 4428/44 4429/44 +f 4423/44 4429/44 4430/44 +f 4430/44 4431/44 4423/44 +f 4431/44 4432/44 4423/44 +f 4432/44 4433/44 4423/44 +f 4398/44 4423/44 4433/44 +f 4399/44 4398/44 4433/44 +f 4399/44 4433/44 4434/44 +f 4435/44 4399/44 4434/44 +f 4435/44 4434/44 4436/44 +f 4436/44 4437/44 4438/44 +f 4378/44 4438/44 4437/44 +f 4431/44 4378/44 4437/44 +f 4378/44 4431/44 4377/44 +f 4378/44 4439/44 4438/44 +f 4440/44 4438/44 4439/44 +f 4441/44 4440/44 4439/44 +f 4442/44 4441/44 4439/44 +f 4443/44 4442/44 4439/44 +f 4439/44 4444/44 4443/44 +f 4444/44 4445/44 4443/44 +f 4446/44 4443/44 4445/44 +f 4447/44 4446/44 4445/44 +f 4445/44 4448/44 4447/44 +f 4449/44 4447/44 4448/44 +f 4450/44 4449/44 4451/44 +f 4450/44 4451/44 4452/44 +f 4453/44 4450/44 4452/44 +f 4452/44 4444/44 4453/44 +f 4454/44 4453/44 4444/44 +f 4455/44 4454/44 4444/44 +f 4455/44 4453/44 4454/44 +f 4453/44 4455/44 4456/44 +f 4453/44 4456/44 4450/44 +f 4457/44 4456/44 4455/44 +f 4458/44 4457/44 4455/44 +f 4439/44 4458/44 4455/44 +f 4459/44 4384/44 4435/44 +f 4435/44 4384/44 4397/44 +f 4381/44 4384/44 4459/44 +f 4378/44 4381/44 4459/44 +f 4378/44 4460/44 4381/44 +f 4461/44 4381/44 4460/44 +f 4461/44 4460/44 4462/44 +f 4462/44 4374/44 4461/44 +f 4463/44 4374/44 4462/44 +f 4464/44 4463/44 4462/44 +f 4463/44 4464/44 4465/44 +f 4465/44 4466/44 4463/44 +f 4467/44 4463/44 4466/44 +f 4468/44 4467/44 4466/44 +f 4466/44 4469/44 4468/44 +f 4469/44 4470/44 4468/44 +f 4470/44 4374/44 4468/44 +f 4471/44 4468/44 4374/44 +f 4471/44 4463/44 4467/44 +f 4467/44 4468/44 4471/44 +f 4373/44 4374/44 4470/44 +f 4470/44 4464/44 4373/44 +f 4462/44 4472/44 4464/44 +f 4473/44 4464/44 4472/44 +f 4472/44 4474/44 4473/44 +f 4473/44 4474/44 4372/44 +f 4475/44 4372/44 4474/44 +f 4476/44 4477/44 4475/44 +f 4475/44 4474/44 4476/44 +f 4478/44 4475/44 4477/44 +f 4477/44 4479/44 4478/44 +f 4480/44 4481/44 4479/44 +f 4478/44 4479/44 4481/44 +f 4478/44 4481/44 4472/44 +f 4472/44 4375/44 4478/44 +f 4375/44 4372/44 4478/44 +f 4372/44 4368/44 4473/44 +f 4368/44 4482/44 4473/44 +f 4481/44 4480/44 4474/44 +f 4479/44 4477/44 4480/44 +f 4476/44 4480/44 4477/44 +f 4476/44 4474/44 4480/44 +f 4475/44 4478/44 4372/44 +f 4474/44 4472/44 4481/44 +f 4464/44 4473/44 4482/44 +f 4464/44 4482/44 4371/44 +f 4466/44 4470/44 4469/44 +f 4465/44 4470/44 4466/44 +f 4464/44 4470/44 4465/44 +f 4374/44 4463/44 4471/44 +f 4472/44 4462/44 4460/44 +f 4376/44 4472/44 4460/44 +f 4381/44 4461/44 4379/44 +f 4439/44 4459/44 4435/44 +f 4435/44 4458/44 4439/44 +f 4458/44 4435/44 4483/44 +f 4483/44 4457/44 4458/44 +f 4483/44 4484/44 4456/44 +f 4435/44 4484/44 4483/44 +f 4484/44 4435/44 4436/44 +f 4440/44 4484/44 4436/44 +f 4456/44 4457/44 4483/44 +f 4450/44 4456/44 4484/44 +f 4450/44 4484/44 4441/44 +f 4485/44 4450/44 4442/44 +f 4442/44 4486/44 4485/44 +f 4485/44 4486/44 4487/44 +f 4488/44 4485/44 4487/44 +f 4487/44 4489/44 4488/44 +f 4488/44 4489/44 4490/44 +f 4490/44 4443/44 4488/44 +f 4446/44 4488/44 4443/44 +f 4443/44 4491/44 4486/44 +f 4491/44 4443/44 4490/44 +f 4491/44 4490/44 4492/44 +f 4492/44 4493/44 4491/44 +f 4493/44 4494/44 4491/44 +f 4487/44 4491/44 4494/44 +f 4495/44 4494/44 4496/44 +f 4495/44 4496/44 4497/44 +f 4497/44 4492/44 4495/44 +f 4489/44 4495/44 4492/44 +f 4493/44 4492/44 4497/44 +f 4497/44 4498/44 4493/44 +f 4499/44 4493/44 4498/44 +f 4498/44 4500/44 4499/44 +f 4422/44 4499/44 4500/44 +f 4500/44 4419/44 4422/44 +f 4419/44 4500/44 4420/44 +f 4501/44 4502/44 4420/44 +f 4496/44 4502/44 4501/44 +f 4496/44 4501/44 4498/44 +f 4501/44 4420/44 4500/44 +f 4422/44 4502/44 4499/44 +f 4502/44 4422/44 4421/44 +f 4500/44 4498/44 4501/44 +f 4499/44 4502/44 4493/44 +f 4494/44 4493/44 4502/44 +f 4498/44 4497/44 4496/44 +f 4502/44 4496/44 4494/44 +f 4494/44 4495/44 4489/44 +f 4492/44 4490/44 4489/44 +f 4489/44 4487/44 4494/44 +f 4485/44 4488/44 4446/44 +f 4491/44 4487/44 4486/44 +f 4443/44 4486/44 4442/44 +f 4446/44 4450/44 4485/44 +f 4444/44 4452/44 4503/44 +f 4451/44 4503/44 4452/44 +f 4449/44 4503/44 4451/44 +f 4503/44 4449/44 4448/44 +f 4503/44 4448/44 4445/44 +f 4450/44 4447/44 4449/44 +f 4447/44 4450/44 4446/44 +f 4444/44 4503/44 4445/44 +f 4439/44 4455/44 4444/44 +f 4441/44 4442/44 4450/44 +f 4484/44 4440/44 4441/44 +f 4459/44 4439/44 4378/44 +f 4436/44 4438/44 4440/44 +f 4437/44 4436/44 4434/44 +f 4399/44 4435/44 4397/44 +f 4437/44 4434/44 4432/44 +f 4433/44 4432/44 4434/44 +f 4431/44 4437/44 4432/44 +f 4379/44 4431/44 4430/44 +f 4430/44 4504/44 4379/44 +f 4504/44 4505/44 4379/44 +f 4506/44 4507/44 4508/44 +f 4506/44 4508/44 4509/44 +f 4506/44 4509/44 4510/44 +f 4506/44 4510/44 4511/44 +f 4511/44 4512/44 4506/44 +f 4513/44 4506/44 4512/44 +f 4512/44 4514/44 4513/44 +f 4514/44 4515/44 4513/44 +f 4516/44 4513/44 4515/44 +f 4515/44 4517/44 4516/44 +f 4518/44 4516/44 4517/44 +f 4517/44 4519/44 4518/44 +f 4519/44 4520/44 4518/44 +f 4520/44 4506/44 4518/44 +f 4521/44 4520/44 4522/44 +f 4522/44 4523/44 4521/44 +f 4524/44 4523/44 4519/44 +f 4524/44 4525/44 4523/44 +f 4504/44 4520/44 4525/44 +f 4504/44 4525/44 4526/44 +f 4504/44 4526/44 4527/44 +f 4528/44 4527/44 4526/44 +f 4529/44 4528/44 4512/44 +f 4528/44 4524/44 4512/44 +f 4528/44 4526/44 4524/44 +f 4527/44 4528/44 4529/44 +f 4525/44 4524/44 4526/44 +f 4520/44 4504/44 4506/44 +f 4514/44 4512/44 4524/44 +f 4530/44 4519/44 4523/44 +f 4523/44 4531/44 4530/44 +f 4532/44 4530/44 4531/44 +f 4531/44 4533/44 4532/44 +f 4534/44 4532/44 4533/44 +f 4533/44 4535/44 4534/44 +f 4534/44 4535/44 4536/44 +f 4536/44 4537/44 4534/44 +f 4536/44 4538/44 4537/44 +f 4533/44 4538/44 4539/44 +f 4388/44 4539/44 4538/44 +f 4390/44 4388/44 4538/44 +f 4522/44 4537/44 4538/44 +f 4538/44 4533/44 4522/44 +f 4537/44 4522/44 4540/44 +f 4537/44 4540/44 4532/44 +f 4540/44 4522/44 4520/44 +f 4540/44 4520/44 4530/44 +f 4538/44 4536/44 4390/44 +f 4390/44 4536/44 4535/44 +f 4539/44 4391/44 4535/44 +f 4391/44 4539/44 4387/44 +f 4535/44 4533/44 4539/44 +f 4532/44 4534/44 4537/44 +f 4531/44 4522/44 4533/44 +f 4530/44 4532/44 4540/44 +f 4519/44 4530/44 4520/44 +f 4521/44 4523/44 4525/44 +f 4523/44 4522/44 4531/44 +f 4525/44 4520/44 4521/44 +f 4519/44 4517/44 4524/44 +f 4517/44 4515/44 4524/44 +f 4518/44 4513/44 4516/44 +f 4515/44 4514/44 4524/44 +f 4518/44 4506/44 4513/44 +f 4512/44 4511/44 4529/44 +f 4541/44 4529/44 4511/44 +f 4541/44 4511/44 4509/44 +f 4529/44 4541/44 4542/44 +f 4542/44 4541/44 4508/44 +f 4510/44 4509/44 4511/44 +f 4509/44 4508/44 4541/44 +f 4542/44 4508/44 4507/44 +f 4506/44 4504/44 4507/44 +f 4507/44 4429/44 4542/44 +f 4429/44 4507/44 4504/44 +f 4529/44 4542/44 4429/44 +f 4382/44 4529/44 4429/44 +f 4428/44 4382/44 4429/44 +f 4543/44 4544/44 4385/44 +f 4545/44 4385/44 4544/44 +f 4544/44 4546/44 4545/44 +f 4547/44 4545/44 4546/44 +f 4546/44 4548/44 4547/44 +f 4547/44 4549/44 4545/44 +f 4392/44 4387/44 4545/44 +f 4416/44 4392/44 4545/44 +f 4392/44 4416/44 4393/44 +f 4408/44 4393/44 4416/44 +f 4408/44 4550/44 4393/44 +f 4551/44 4393/44 4550/44 +f 4552/44 4394/44 4553/44 +f 4395/44 4553/44 4396/44 +f 4554/44 4396/44 4553/44 +f 4554/44 4397/44 4396/44 +f 4399/44 4555/44 4556/44 +f 4399/44 4556/44 4400/44 +f 4556/44 4557/44 4400/44 +f 4400/44 4557/44 4401/44 +f 4402/44 4401/44 4403/44 +f 4404/44 4401/44 4557/44 +f 4558/44 4406/44 4404/44 +f 4402/44 4404/44 4406/44 +f 4550/44 4407/44 4559/44 +f 4559/44 4407/44 4560/44 +f 4559/44 4561/44 4550/44 +f 4562/44 4394/44 4551/44 +f 4563/44 4554/44 4553/44 +f 4556/44 4564/44 4565/44 +f 4556/44 4565/44 4557/44 +f 4565/44 4404/44 4557/44 +f 4404/44 4565/44 4566/44 +f 4558/44 4404/44 4566/44 +f 4564/44 4566/44 4565/44 +f 4563/44 4564/44 4555/44 +f 4563/44 4566/44 4564/44 +f 4560/44 4558/44 4566/44 +f 4559/44 4560/44 4566/44 +f 4566/44 4567/44 4559/44 +f 4559/44 4567/44 4561/44 +f 4567/44 4563/44 4562/44 +f 4566/44 4563/44 4567/44 +f 4553/44 4562/44 4563/44 +f 4561/44 4567/44 4562/44 +f 4562/44 4551/44 4561/44 +f 4560/44 4407/44 4558/44 +f 4558/44 4407/44 4406/44 +f 4401/44 4404/44 4403/44 +f 4556/44 4555/44 4564/44 +f 4555/44 4568/44 4563/44 +f 4397/44 4568/44 4555/44 +f 4397/44 4555/44 4399/44 +f 4563/44 4568/44 4554/44 +f 4568/44 4397/44 4554/44 +f 4562/44 4553/44 4394/44 +f 4550/44 4561/44 4551/44 +f 4394/44 4393/44 4551/44 +f 4545/44 4569/44 4416/44 +f 4414/44 4416/44 4569/44 +f 4569/44 4570/44 4414/44 +f 4414/44 4570/44 4424/44 +f 4426/44 4424/44 4571/44 +f 4572/44 4571/44 4573/44 +f 4572/44 4573/44 4574/44 +f 4574/44 4575/44 4572/44 +f 4572/44 4575/44 4426/44 +f 4572/44 4426/44 4571/44 +f 4427/44 4426/44 4575/44 +f 4427/44 4575/44 4576/44 +f 4577/44 4428/44 4576/44 +f 4543/44 4577/44 4578/44 +f 4579/44 4543/44 4578/44 +f 4546/44 4544/44 4579/44 +f 4580/44 4581/44 4582/44 +f 4582/44 4548/44 4580/44 +f 4573/44 4582/44 4574/44 +f 4581/44 4574/44 4582/44 +f 4580/44 4546/44 4579/44 +f 4576/44 4575/44 4574/44 +f 4574/44 4577/44 4576/44 +f 4578/44 4577/44 4574/44 +f 4578/44 4574/44 4581/44 +f 4580/44 4579/44 4581/44 +f 4579/44 4544/44 4543/44 +f 4581/44 4579/44 4578/44 +f 4577/44 4543/44 4428/44 +f 4549/44 4548/44 4582/44 +f 4583/44 4569/44 4549/44 +f 4583/44 4570/44 4569/44 +f 4571/44 4570/44 4584/44 +f 4573/44 4571/44 4584/44 +f 4582/44 4583/44 4549/44 +f 4583/44 4582/44 4584/44 +f 4570/44 4583/44 4584/44 +f 4582/44 4573/44 4584/44 +f 4571/44 4424/44 4570/44 +f 4545/44 4549/44 4569/44 +f 4547/44 4548/44 4549/44 +f 4548/44 4546/44 4580/44 +f 4428/44 4543/44 4382/44 +f 4529/44 4505/44 4527/44 +f 4505/44 4529/44 4382/44 +f 4382/44 4380/44 4505/44 +f 4504/44 4527/44 4505/44 +f 4504/44 4430/44 4429/44 +f 4427/44 4576/44 4428/44 +f 4421/44 4420/44 4502/44 +f 4420/44 4398/44 4405/44 +f 4419/44 4414/44 4424/44 +f 4415/44 4412/44 4411/44 +f 4418/44 4411/44 4409/44 +f 4405/44 4410/44 4413/44 +f 4409/44 4408/44 4417/44 +f 4550/44 4408/44 4407/44 +f 4405/44 4398/44 4402/44 +f 4552/44 4553/44 4395/44 +f 4552/44 4395/44 4394/44 +f 4387/44 4392/44 4391/44 +f 4535/44 4391/44 4390/44 +f 4386/44 4389/44 4393/44 +f 4539/44 4388/44 4387/44 +f 4385/44 4545/44 4387/44 +f 4393/44 4384/44 4386/44 +f 4385/44 4383/44 4543/44 +f 4383/44 4382/44 4543/44 +f 4384/44 4381/44 4380/44 +f 4380/44 4379/44 4505/44 +f 4379/44 4377/44 4431/44 +f 4377/44 4379/44 4461/44 +f 4460/44 4378/44 4376/44 +f 4377/44 4461/44 4374/44 +f 4472/44 4376/44 4375/44 +f 4373/44 4464/44 4371/44 +f 4372/44 4369/44 4368/44 +f 4367/44 4371/44 4482/44 +f 4482/44 4360/44 4367/44 +f 4482/44 4368/44 4360/44 +f 4366/44 4365/44 4363/44 +f 4363/44 4370/44 4366/44 +f 4363/44 4365/44 4364/44 +f 4365/44 4585/44 4364/44 +f 4364/44 4585/44 4586/44 +f 4585/44 4587/44 4586/44 +f 4588/44 4589/44 4587/44 +f 4587/44 4340/44 4588/44 +f 4589/44 4588/44 4586/44 +f 4364/44 4586/44 4588/44 +f 4364/44 4588/44 4340/44 +f 4325/44 4340/44 4587/44 +f 4589/44 4586/44 4587/44 +f 4585/44 4325/44 4587/44 +f 4585/44 4365/44 4325/44 +f 4348/44 4325/44 4365/44 +f 4590/44 4591/44 4358/44 +f 4590/44 4358/44 4592/44 +f 4590/44 4593/44 4591/44 +f 4594/44 4591/44 4593/44 +f 4358/44 4591/44 4594/44 +f 4593/44 4595/44 4594/44 +f 4358/44 4594/44 4365/44 +f 4596/44 4365/44 4594/44 +f 4595/44 4597/44 4596/44 +f 4598/44 4596/44 4597/44 +f 4598/44 4597/44 4599/44 +f 4598/44 4599/44 4600/44 +f 4601/44 4598/44 4600/44 +f 4597/44 4590/44 4592/44 +f 4597/44 4595/44 4590/44 +f 4599/44 4597/44 4592/44 +f 4592/44 4602/44 4599/44 +f 4603/44 4599/44 4602/44 +f 4602/44 4604/44 4603/44 +f 4605/44 4603/44 4604/44 +f 4604/44 4606/44 4605/44 +f 4607/44 4605/44 4606/44 +f 4608/44 4607/44 4606/44 +f 4606/44 4609/44 4608/44 +f 4609/44 4610/44 4608/44 +f 4611/44 4608/44 4610/44 +f 4611/44 4610/44 4612/44 +f 4613/44 4614/44 4615/44 +f 4616/44 4614/44 4617/44 +f 4617/44 4618/44 4616/44 +f 4619/44 4616/44 4618/44 +f 4618/44 4620/44 4619/44 +f 4619/44 4620/44 4621/44 +f 4622/44 4619/44 4621/44 +f 4621/44 4623/44 4622/44 +f 4622/44 4623/44 4624/44 +f 4624/44 4625/44 4622/44 +f 4626/44 4622/44 4625/44 +f 4616/44 4626/44 4627/44 +f 4627/44 4628/44 4616/44 +f 4629/44 4616/44 4630/44 +f 4631/44 4632/44 4633/44 +f 4631/44 4633/44 4634/44 +f 4634/44 4635/44 4631/44 +f 4636/44 4635/44 4637/44 +f 4636/44 4637/44 4638/44 +f 4636/44 4638/44 4639/44 +f 4639/44 4640/44 4636/44 +f 4641/44 4636/44 4640/44 +f 4641/44 4640/44 4642/44 +f 4642/44 4643/44 4641/44 +f 4644/44 4641/44 4643/44 +f 4643/44 4645/44 4644/44 +f 4636/44 4644/44 4645/44 +f 4643/44 4646/44 4645/44 +f 4647/44 4645/44 4646/44 +f 4639/44 4647/44 4646/44 +f 4646/44 4648/44 4639/44 +f 4646/44 4649/44 4648/44 +f 4640/44 4648/44 4649/44 +f 4642/44 4649/44 4646/44 +f 4645/44 4650/44 4636/44 +f 4651/44 4636/44 4650/44 +f 4631/44 4651/44 4652/44 +f 4652/44 4653/44 4631/44 +f 4654/44 4631/44 4653/44 +f 4654/44 4653/44 4650/44 +f 4650/44 4655/44 4654/44 +f 4655/44 4656/44 4654/44 +f 4657/44 4656/44 4655/44 +f 4655/44 4658/44 4657/44 +f 4658/44 4659/44 4657/44 +f 4657/44 4660/44 4661/44 +f 4657/44 4661/44 4656/44 +f 4654/44 4656/44 4661/44 +f 4654/44 4661/44 4662/44 +f 4654/44 4662/44 4663/44 +f 4663/44 4664/44 4654/44 +f 4664/44 4665/44 4654/44 +f 4665/44 4666/44 4654/44 +f 4631/44 4654/44 4666/44 +f 4632/44 4631/44 4666/44 +f 4632/44 4666/44 4667/44 +f 4668/44 4632/44 4667/44 +f 4668/44 4667/44 4669/44 +f 4670/44 4668/44 4669/44 +f 4671/44 4670/44 4669/44 +f 4612/44 4671/44 4665/44 +f 4664/44 4612/44 4665/44 +f 4612/44 4664/44 4611/44 +f 4667/44 4665/44 4671/44 +f 4612/44 4672/44 4671/44 +f 4673/44 4671/44 4672/44 +f 4674/44 4673/44 4672/44 +f 4675/44 4674/44 4672/44 +f 4676/44 4675/44 4672/44 +f 4672/44 4677/44 4676/44 +f 4677/44 4678/44 4676/44 +f 4679/44 4676/44 4678/44 +f 4680/44 4679/44 4678/44 +f 4678/44 4681/44 4680/44 +f 4682/44 4680/44 4681/44 +f 4683/44 4682/44 4684/44 +f 4683/44 4684/44 4685/44 +f 4686/44 4683/44 4685/44 +f 4685/44 4677/44 4686/44 +f 4687/44 4686/44 4677/44 +f 4686/44 4687/44 4688/44 +f 4686/44 4688/44 4683/44 +f 4672/44 4689/44 4690/44 +f 4672/44 4690/44 4687/44 +f 4691/44 4616/44 4668/44 +f 4668/44 4616/44 4629/44 +f 4615/44 4616/44 4691/44 +f 4612/44 4615/44 4691/44 +f 4612/44 4692/44 4615/44 +f 4693/44 4615/44 4692/44 +f 4693/44 4692/44 4694/44 +f 4694/44 4608/44 4693/44 +f 4695/44 4608/44 4694/44 +f 4696/44 4695/44 4694/44 +f 4695/44 4696/44 4697/44 +f 4697/44 4698/44 4695/44 +f 4699/44 4695/44 4698/44 +f 4700/44 4699/44 4698/44 +f 4698/44 4701/44 4700/44 +f 4701/44 4702/44 4700/44 +f 4702/44 4608/44 4700/44 +f 4703/44 4700/44 4608/44 +f 4703/44 4695/44 4699/44 +f 4699/44 4700/44 4703/44 +f 4607/44 4608/44 4702/44 +f 4702/44 4696/44 4607/44 +f 4694/44 4704/44 4696/44 +f 4705/44 4696/44 4704/44 +f 4704/44 4706/44 4705/44 +f 4705/44 4706/44 4606/44 +f 4707/44 4606/44 4706/44 +f 4708/44 4709/44 4707/44 +f 4707/44 4706/44 4708/44 +f 4710/44 4707/44 4709/44 +f 4709/44 4711/44 4710/44 +f 4710/44 4711/44 4712/44 +f 4710/44 4712/44 4713/44 +f 4710/44 4713/44 4704/44 +f 4704/44 4609/44 4710/44 +f 4609/44 4606/44 4710/44 +f 4606/44 4714/44 4705/44 +f 4714/44 4715/44 4705/44 +f 4715/44 4714/44 4716/44 +f 4715/44 4716/44 4603/44 +f 4717/44 4716/44 4714/44 +f 4714/44 4604/44 4717/44 +f 4603/44 4716/44 4600/44 +f 4716/44 4717/44 4600/44 +f 4713/44 4712/44 4706/44 +f 4711/44 4709/44 4712/44 +f 4708/44 4712/44 4709/44 +f 4708/44 4706/44 4712/44 +f 4707/44 4710/44 4606/44 +f 4706/44 4704/44 4713/44 +f 4696/44 4705/44 4715/44 +f 4696/44 4715/44 4605/44 +f 4698/44 4702/44 4701/44 +f 4697/44 4702/44 4698/44 +f 4696/44 4702/44 4697/44 +f 4608/44 4695/44 4703/44 +f 4704/44 4694/44 4692/44 +f 4610/44 4704/44 4692/44 +f 4615/44 4693/44 4613/44 +f 4672/44 4691/44 4668/44 +f 4668/44 4689/44 4672/44 +f 4689/44 4668/44 4718/44 +f 4718/44 4719/44 4689/44 +f 4718/44 4720/44 4688/44 +f 4720/44 4718/44 4670/44 +f 4673/44 4720/44 4670/44 +f 4719/44 4718/44 4690/44 +f 4668/44 4670/44 4718/44 +f 4689/44 4719/44 4690/44 +f 4688/44 4690/44 4718/44 +f 4683/44 4688/44 4720/44 +f 4683/44 4720/44 4674/44 +f 4690/44 4688/44 4687/44 +f 4721/44 4683/44 4675/44 +f 4675/44 4722/44 4721/44 +f 4721/44 4722/44 4723/44 +f 4724/44 4721/44 4723/44 +f 4723/44 4725/44 4724/44 +f 4724/44 4725/44 4726/44 +f 4726/44 4676/44 4724/44 +f 4679/44 4724/44 4676/44 +f 4676/44 4727/44 4722/44 +f 4727/44 4676/44 4726/44 +f 4727/44 4726/44 4728/44 +f 4728/44 4729/44 4727/44 +f 4729/44 4730/44 4727/44 +f 4723/44 4727/44 4730/44 +f 4731/44 4730/44 4732/44 +f 4731/44 4732/44 4733/44 +f 4733/44 4728/44 4731/44 +f 4725/44 4731/44 4728/44 +f 4729/44 4728/44 4733/44 +f 4733/44 4734/44 4729/44 +f 4735/44 4729/44 4734/44 +f 4734/44 4736/44 4735/44 +f 4653/44 4735/44 4736/44 +f 4736/44 4650/44 4653/44 +f 4650/44 4736/44 4651/44 +f 4737/44 4738/44 4651/44 +f 4732/44 4738/44 4737/44 +f 4732/44 4737/44 4734/44 +f 4737/44 4651/44 4736/44 +f 4653/44 4738/44 4735/44 +f 4738/44 4653/44 4652/44 +f 4736/44 4734/44 4737/44 +f 4735/44 4738/44 4729/44 +f 4730/44 4729/44 4738/44 +f 4734/44 4733/44 4732/44 +f 4738/44 4732/44 4730/44 +f 4730/44 4731/44 4725/44 +f 4728/44 4726/44 4725/44 +f 4725/44 4723/44 4730/44 +f 4721/44 4724/44 4679/44 +f 4727/44 4723/44 4722/44 +f 4676/44 4722/44 4675/44 +f 4679/44 4683/44 4721/44 +f 4677/44 4685/44 4739/44 +f 4684/44 4739/44 4685/44 +f 4682/44 4739/44 4684/44 +f 4739/44 4682/44 4681/44 +f 4739/44 4681/44 4678/44 +f 4683/44 4680/44 4682/44 +f 4680/44 4683/44 4679/44 +f 4677/44 4739/44 4678/44 +f 4672/44 4687/44 4677/44 +f 4674/44 4675/44 4683/44 +f 4720/44 4673/44 4674/44 +f 4691/44 4672/44 4612/44 +f 4670/44 4671/44 4673/44 +f 4671/44 4669/44 4667/44 +f 4632/44 4668/44 4629/44 +f 4666/44 4665/44 4667/44 +f 4613/44 4664/44 4663/44 +f 4663/44 4740/44 4613/44 +f 4740/44 4741/44 4613/44 +f 4741/44 4742/44 4743/44 +f 4662/44 4743/44 4742/44 +f 4744/44 4745/44 4746/44 +f 4744/44 4746/44 4747/44 +f 4744/44 4747/44 4748/44 +f 4744/44 4748/44 4749/44 +f 4749/44 4750/44 4744/44 +f 4751/44 4744/44 4750/44 +f 4750/44 4752/44 4751/44 +f 4752/44 4753/44 4751/44 +f 4754/44 4751/44 4753/44 +f 4753/44 4755/44 4754/44 +f 4756/44 4754/44 4755/44 +f 4755/44 4757/44 4756/44 +f 4757/44 4758/44 4756/44 +f 4758/44 4744/44 4756/44 +f 4759/44 4758/44 4760/44 +f 4760/44 4761/44 4759/44 +f 4762/44 4761/44 4757/44 +f 4762/44 4759/44 4761/44 +f 4759/44 4762/44 4763/44 +f 4763/44 4758/44 4759/44 +f 4740/44 4758/44 4763/44 +f 4740/44 4763/44 4764/44 +f 4764/44 4765/44 4742/44 +f 4742/44 4765/44 4750/44 +f 4765/44 4762/44 4750/44 +f 4765/44 4763/44 4762/44 +f 4765/44 4764/44 4763/44 +f 4758/44 4740/44 4744/44 +f 4752/44 4750/44 4762/44 +f 4766/44 4757/44 4761/44 +f 4761/44 4767/44 4766/44 +f 4768/44 4766/44 4767/44 +f 4767/44 4769/44 4768/44 +f 4770/44 4768/44 4769/44 +f 4769/44 4771/44 4770/44 +f 4770/44 4771/44 4772/44 +f 4769/44 4773/44 4774/44 +f 4621/44 4774/44 4773/44 +f 4623/44 4621/44 4773/44 +f 4772/44 4773/44 4775/44 +f 4772/44 4775/44 4768/44 +f 4760/44 4775/44 4773/44 +f 4773/44 4769/44 4760/44 +f 4775/44 4760/44 4758/44 +f 4775/44 4758/44 4766/44 +f 4773/44 4772/44 4623/44 +f 4623/44 4772/44 4771/44 +f 4774/44 4624/44 4771/44 +f 4624/44 4774/44 4620/44 +f 4771/44 4769/44 4774/44 +f 4768/44 4770/44 4772/44 +f 4767/44 4760/44 4769/44 +f 4766/44 4768/44 4775/44 +f 4757/44 4766/44 4758/44 +f 4761/44 4760/44 4767/44 +f 4757/44 4755/44 4762/44 +f 4755/44 4753/44 4762/44 +f 4756/44 4751/44 4754/44 +f 4753/44 4752/44 4762/44 +f 4756/44 4744/44 4751/44 +f 4750/44 4749/44 4742/44 +f 4749/44 4776/44 4742/44 +f 4742/44 4776/44 4777/44 +f 4777/44 4776/44 4747/44 +f 4776/44 4749/44 4748/44 +f 4748/44 4747/44 4776/44 +f 4747/44 4746/44 4777/44 +f 4777/44 4746/44 4745/44 +f 4744/44 4740/44 4745/44 +f 4745/44 4662/44 4777/44 +f 4662/44 4745/44 4740/44 +f 4742/44 4777/44 4662/44 +f 4661/44 4743/44 4662/44 +f 4778/44 4779/44 4618/44 +f 4780/44 4618/44 4779/44 +f 4779/44 4781/44 4780/44 +f 4782/44 4780/44 4781/44 +f 4781/44 4783/44 4782/44 +f 4782/44 4784/44 4780/44 +f 4625/44 4620/44 4780/44 +f 4647/44 4625/44 4780/44 +f 4625/44 4647/44 4626/44 +f 4639/44 4626/44 4647/44 +f 4639/44 4785/44 4626/44 +f 4786/44 4626/44 4785/44 +f 4628/44 4627/44 4787/44 +f 4788/44 4630/44 4787/44 +f 4788/44 4629/44 4630/44 +f 4632/44 4789/44 4790/44 +f 4632/44 4790/44 4633/44 +f 4790/44 4791/44 4633/44 +f 4633/44 4791/44 4634/44 +f 4792/44 4634/44 4791/44 +f 4793/44 4637/44 4792/44 +f 4635/44 4792/44 4637/44 +f 4785/44 4638/44 4794/44 +f 4794/44 4638/44 4795/44 +f 4794/44 4796/44 4785/44 +f 4797/44 4788/44 4787/44 +f 4790/44 4798/44 4799/44 +f 4790/44 4799/44 4791/44 +f 4799/44 4792/44 4791/44 +f 4792/44 4799/44 4800/44 +f 4793/44 4792/44 4800/44 +f 4798/44 4800/44 4799/44 +f 4797/44 4798/44 4789/44 +f 4797/44 4800/44 4798/44 +f 4795/44 4793/44 4800/44 +f 4794/44 4795/44 4800/44 +f 4800/44 4801/44 4794/44 +f 4794/44 4801/44 4796/44 +f 4801/44 4797/44 4802/44 +f 4800/44 4797/44 4801/44 +f 4787/44 4802/44 4797/44 +f 4796/44 4801/44 4802/44 +f 4786/44 4796/44 4802/44 +f 4795/44 4638/44 4793/44 +f 4793/44 4638/44 4637/44 +f 4634/44 4792/44 4635/44 +f 4790/44 4789/44 4798/44 +f 4789/44 4803/44 4797/44 +f 4629/44 4803/44 4789/44 +f 4629/44 4789/44 4632/44 +f 4797/44 4803/44 4788/44 +f 4803/44 4629/44 4788/44 +f 4802/44 4787/44 4627/44 +f 4627/44 4786/44 4802/44 +f 4785/44 4796/44 4786/44 +f 4627/44 4626/44 4786/44 +f 4780/44 4804/44 4647/44 +f 4645/44 4647/44 4804/44 +f 4804/44 4805/44 4645/44 +f 4645/44 4805/44 4655/44 +f 4658/44 4655/44 4805/44 +f 4658/44 4805/44 4806/44 +f 4807/44 4806/44 4808/44 +f 4807/44 4808/44 4809/44 +f 4809/44 4659/44 4807/44 +f 4807/44 4659/44 4658/44 +f 4807/44 4658/44 4806/44 +f 4810/44 4661/44 4660/44 +f 4811/44 4779/44 4778/44 +f 4812/44 4779/44 4811/44 +f 4781/44 4779/44 4812/44 +f 4813/44 4814/44 4815/44 +f 4815/44 4783/44 4813/44 +f 4813/44 4781/44 4812/44 +f 4808/44 4815/44 4809/44 +f 4814/44 4809/44 4815/44 +f 4816/44 4804/44 4784/44 +f 4816/44 4805/44 4804/44 +f 4806/44 4805/44 4817/44 +f 4808/44 4806/44 4817/44 +f 4815/44 4816/44 4784/44 +f 4816/44 4815/44 4817/44 +f 4805/44 4816/44 4817/44 +f 4784/44 4783/44 4815/44 +f 4660/44 4659/44 4809/44 +f 4809/44 4810/44 4660/44 +f 4811/44 4809/44 4814/44 +f 4813/44 4812/44 4814/44 +f 4814/44 4812/44 4811/44 +f 4778/44 4810/44 4811/44 +f 4810/44 4778/44 4661/44 +f 4811/44 4810/44 4809/44 +f 4815/44 4808/44 4817/44 +f 4780/44 4784/44 4804/44 +f 4782/44 4783/44 4784/44 +f 4783/44 4781/44 4813/44 +f 4661/44 4778/44 4743/44 +f 4743/44 4778/44 4617/44 +f 4742/44 4741/44 4764/44 +f 4743/44 4614/44 4741/44 +f 4740/44 4764/44 4741/44 +f 4740/44 4663/44 4662/44 +f 4657/44 4659/44 4660/44 +f 4652/44 4651/44 4738/44 +f 4651/44 4631/44 4636/44 +f 4650/44 4645/44 4655/44 +f 4646/44 4643/44 4642/44 +f 4649/44 4642/44 4640/44 +f 4636/44 4641/44 4644/44 +f 4640/44 4639/44 4648/44 +f 4785/44 4639/44 4638/44 +f 4636/44 4631/44 4635/44 +f 4628/44 4787/44 4630/44 +f 4630/44 4616/44 4628/44 +f 4620/44 4625/44 4624/44 +f 4771/44 4624/44 4623/44 +f 4619/44 4622/44 4626/44 +f 4774/44 4621/44 4620/44 +f 4618/44 4780/44 4620/44 +f 4626/44 4616/44 4619/44 +f 4618/44 4617/44 4778/44 +f 4614/44 4743/44 4617/44 +f 4616/44 4615/44 4614/44 +f 4614/44 4613/44 4741/44 +f 4613/44 4611/44 4664/44 +f 4611/44 4613/44 4693/44 +f 4692/44 4612/44 4610/44 +f 4611/44 4693/44 4608/44 +f 4704/44 4610/44 4609/44 +f 4607/44 4696/44 4605/44 +f 4606/44 4604/44 4714/44 +f 4603/44 4605/44 4715/44 +f 4602/44 4717/44 4604/44 +f 4602/44 4592/44 4717/44 +f 4601/44 4717/44 4592/44 +f 4601/44 4600/44 4717/44 +f 4601/44 4358/44 4598/44 +f 4598/44 4818/44 4819/44 +f 4598/44 4819/44 4820/44 +f 4365/44 4598/44 4820/44 +f 4365/44 4821/44 4822/44 +f 4821/44 4823/44 4822/44 +f 4365/44 4822/44 4823/44 +f 4824/44 4348/44 4823/44 +f 4825/44 4348/44 4826/44 +f 4826/44 4827/44 4825/44 +f 4825/44 4827/44 4828/44 +f 4825/44 4828/44 4829/44 +f 4829/44 4828/44 4830/44 +f 4829/44 4830/44 4831/44 +f 4831/44 4348/44 4829/44 +f 4348/44 4831/44 4832/44 +f 4348/44 4832/44 4833/44 +f 4348/44 4833/44 4834/44 +f 4348/44 4834/44 4835/44 +f 4348/44 4835/44 4836/44 +f 4347/44 4348/44 4836/44 +f 4836/44 4837/44 4347/44 +f 4838/44 4347/44 4837/44 +f 4837/44 4834/44 4838/44 +f 4839/44 4838/44 4834/44 +f 4839/44 4834/44 4833/44 +f 4833/44 4320/44 4839/44 +f 4838/44 4839/44 4347/44 +f 4349/44 4840/44 4841/44 +f 4335/44 4841/44 4840/44 +f 4842/44 4843/44 4844/44 +f 4845/44 4334/44 4844/44 +f 4334/44 4846/44 4356/44 +f 4356/44 4847/44 4848/44 +f 4356/44 4848/44 4357/44 +f 4818/44 4357/44 4848/44 +f 4338/44 4818/44 4598/44 +f 4818/44 4338/44 4337/44 +f 4337/44 4357/44 4818/44 +f 4598/44 4358/44 4338/44 +f 4819/44 4848/44 4847/44 +f 4819/44 4847/44 4849/44 +f 4849/44 4847/44 4356/44 +f 4849/44 4356/44 4850/44 +f 4851/44 4849/44 4850/44 +f 4851/44 4850/44 4821/44 +f 4365/44 4851/44 4821/44 +f 4820/44 4849/44 4851/44 +f 4850/44 4356/44 4846/44 +f 4850/44 4846/44 4823/44 +f 4334/44 4823/44 4846/44 +f 4824/44 4823/44 4334/44 +f 4335/44 4844/44 4334/44 +f 4824/44 4334/44 4845/44 +f 4824/44 4845/44 4852/44 +f 4853/44 4824/44 4852/44 +f 4853/44 4852/44 4826/44 +f 4348/44 4824/44 4853/44 +f 4852/44 4845/44 4844/44 +f 4852/44 4844/44 4827/44 +f 4827/44 4844/44 4843/44 +f 4828/44 4843/44 4842/44 +f 4831/44 4830/44 4321/44 +f 4854/44 4831/44 4321/44 +f 4854/44 4321/44 4320/44 +f 4832/44 4854/44 4855/44 +f 4855/44 4856/44 4832/44 +f 4833/44 4856/44 4857/44 +f 4833/44 4858/44 4320/44 +f 4858/44 4859/44 4855/44 +f 4857/44 4860/44 4859/44 +f 4861/44 4859/44 4860/44 +f 4862/44 4861/44 4860/44 +f 4856/44 4862/44 4860/44 +f 4863/44 4856/44 4855/44 +f 4864/44 4856/44 4863/44 +f 4863/44 4865/44 4864/44 +f 4866/44 4864/44 4865/44 +f 4865/44 4867/44 4866/44 +f 4868/44 4869/44 4870/44 +f 4869/44 4867/44 4870/44 +f 4867/44 4871/44 4872/44 +f 4872/44 4871/44 4873/44 +f 4872/44 4873/44 4874/44 +f 4872/44 4874/44 4875/44 +f 4866/44 4872/44 4875/44 +f 4876/44 4875/44 4874/44 +f 4874/44 4877/44 4876/44 +f 4878/44 4876/44 4877/44 +f 4877/44 4879/44 4878/44 +f 4880/44 4878/44 4879/44 +f 4879/44 4881/44 4880/44 +f 4881/44 4882/44 4880/44 +f 4883/44 4880/44 4882/44 +f 4884/44 4883/44 4882/44 +f 4882/44 4885/44 4884/44 +f 4885/44 4886/44 4884/44 +f 4887/44 4884/44 4886/44 +f 4886/44 4888/44 4887/44 +f 4889/44 4887/44 4888/44 +f 4889/44 4888/44 4890/44 +f 4890/44 4891/44 4889/44 +f 4889/44 4891/44 4878/44 +f 4891/44 4892/44 4893/44 +f 4892/44 4894/44 4893/44 +f 4895/44 4896/44 4897/44 +f 4892/44 4897/44 4896/44 +f 4898/44 4899/44 4900/44 +f 4901/44 4898/44 4900/44 +f 4901/44 4902/44 4898/44 +f 4902/44 4901/44 4903/44 +f 4904/44 4902/44 4903/44 +f 4903/44 4905/44 4904/44 +f 4871/44 4904/44 4905/44 +f 4906/44 4905/44 4907/44 +f 4876/44 4906/44 4907/44 +f 4907/44 4899/44 4908/44 +f 4908/44 4909/44 4907/44 +f 4907/44 4909/44 4875/44 +f 4869/44 4875/44 4909/44 +f 4909/44 4910/44 4869/44 +f 4910/44 4867/44 4869/44 +f 4867/44 4910/44 4911/44 +f 4867/44 4911/44 4904/44 +f 4908/44 4904/44 4911/44 +f 4911/44 4912/44 4908/44 +f 4912/44 4909/44 4908/44 +f 4909/44 4912/44 4913/44 +f 4910/44 4909/44 4913/44 +f 4913/44 4914/44 4910/44 +f 4914/44 4911/44 4910/44 +f 4911/44 4914/44 4915/44 +f 4916/44 4915/44 4914/44 +f 4915/44 4916/44 4917/44 +f 4917/44 4916/44 4918/44 +f 4918/44 4919/44 4917/44 +f 4919/44 4915/44 4917/44 +f 4919/44 4918/44 4920/44 +f 4920/44 4921/44 4919/44 +f 4921/44 4912/44 4919/44 +f 4912/44 4921/44 4922/44 +f 4912/44 4922/44 4913/44 +f 4923/44 4920/44 4913/44 +f 4921/44 4920/44 4923/44 +f 4923/44 4913/44 4922/44 +f 4923/44 4922/44 4921/44 +f 4920/44 4918/44 4914/44 +f 4915/44 4919/44 4912/44 +f 4914/44 4918/44 4916/44 +f 4914/44 4913/44 4920/44 +f 4912/44 4911/44 4915/44 +f 4899/44 4902/44 4908/44 +f 4924/44 4907/44 4903/44 +f 4899/44 4907/44 4924/44 +f 4924/44 4925/44 4899/44 +f 4925/44 4900/44 4899/44 +f 4926/44 4900/44 4925/44 +f 4924/44 4926/44 4925/44 +f 4926/44 4924/44 4927/44 +f 4927/44 4928/44 4926/44 +f 4928/44 4900/44 4926/44 +f 4928/44 4929/44 4896/44 +f 4896/44 4930/44 4928/44 +f 4892/44 4896/44 4929/44 +f 4929/44 4901/44 4892/44 +f 4929/44 4927/44 4901/44 +f 4900/44 4928/44 4930/44 +f 4900/44 4930/44 4895/44 +f 4928/44 4927/44 4929/44 +f 4927/44 4924/44 4901/44 +f 4931/44 4873/44 4906/44 +f 4873/44 4931/44 4932/44 +f 4874/44 4873/44 4932/44 +f 4933/44 4874/44 4932/44 +f 4932/44 4931/44 4933/44 +f 4934/44 4933/44 4931/44 +f 4934/44 4931/44 4876/44 +f 4935/44 4934/44 4876/44 +f 4891/44 4935/44 4876/44 +f 4890/44 4936/44 4937/44 +f 4890/44 4937/44 4894/44 +f 4937/44 4893/44 4894/44 +f 4893/44 4937/44 4935/44 +f 4890/44 4874/44 4936/44 +f 4936/44 4874/44 4933/44 +f 4933/44 4934/44 4936/44 +f 4936/44 4935/44 4937/44 +f 4891/44 4893/44 4935/44 +f 4935/44 4936/44 4934/44 +f 4876/44 4931/44 4906/44 +f 4905/44 4906/44 4871/44 +f 4905/44 4903/44 4907/44 +f 4904/44 4908/44 4902/44 +f 4903/44 4901/44 4924/44 +f 4902/44 4899/44 4898/44 +f 4900/44 4892/44 4901/44 +f 4896/44 4895/44 4930/44 +f 4895/44 4897/44 4891/44 +f 4891/44 4890/44 4895/44 +f 4895/44 4894/44 4900/44 +f 4894/44 4895/44 4890/44 +f 4892/44 4900/44 4894/44 +f 4892/44 4891/44 4897/44 +f 4888/44 4879/44 4890/44 +f 4883/44 4887/44 4889/44 +f 4882/44 4888/44 4886/44 +f 4882/44 4886/44 4885/44 +f 4883/44 4884/44 4887/44 +f 4880/44 4883/44 4889/44 +f 4881/44 4888/44 4882/44 +f 4879/44 4888/44 4881/44 +f 4878/44 4880/44 4889/44 +f 4877/44 4890/44 4879/44 +f 4876/44 4878/44 4891/44 +f 4874/44 4890/44 4877/44 +f 4875/44 4876/44 4907/44 +f 4873/44 4871/44 4906/44 +f 4867/44 4904/44 4871/44 +f 4867/44 4872/44 4866/44 +f 4869/44 4868/44 4875/44 +f 4868/44 4870/44 4938/44 +f 4868/44 4938/44 4866/44 +f 4939/44 4938/44 4870/44 +f 4939/44 4870/44 4867/44 +f 4866/44 4938/44 4862/44 +f 4938/44 4940/44 4862/44 +f 4861/44 4862/44 4940/44 +f 4863/44 4861/44 4940/44 +f 4863/44 4940/44 4941/44 +f 4942/44 4941/44 4940/44 +f 4942/44 4940/44 4939/44 +f 4939/44 4943/44 4942/44 +f 4943/44 4944/44 4942/44 +f 4944/44 4945/44 4942/44 +f 4946/44 4947/44 4948/44 +f 4949/44 4946/44 4948/44 +f 4948/44 4950/44 4949/44 +f 4951/44 4943/44 4949/44 +f 4943/44 4951/44 4952/44 +f 4943/44 4952/44 4944/44 +f 4944/44 4952/44 4950/44 +f 4951/44 4950/44 4952/44 +f 4949/44 4950/44 4951/44 +f 4948/44 4944/44 4950/44 +f 4946/44 4949/44 4941/44 +f 4953/44 4941/44 4949/44 +f 4949/44 4939/44 4953/44 +f 4865/44 4953/44 4939/44 +f 4941/44 4953/44 4865/44 +f 4954/44 4945/44 4947/44 +f 4948/44 4947/44 4945/44 +f 4946/44 4954/44 4947/44 +f 4954/44 4946/44 4942/44 +f 4945/44 4954/44 4942/44 +f 4944/44 4948/44 4945/44 +f 4939/44 4949/44 4943/44 +f 4941/44 4942/44 4946/44 +f 4940/44 4938/44 4939/44 +f 4875/44 4868/44 4866/44 +f 4939/44 4867/44 4865/44 +f 4862/44 4864/44 4866/44 +f 4865/44 4863/44 4941/44 +f 4862/44 4856/44 4864/44 +f 4863/44 4859/44 4861/44 +f 4859/44 4863/44 4855/44 +f 4859/44 4858/44 4857/44 +f 4833/44 4857/44 4858/44 +f 4856/44 4860/44 4857/44 +f 4832/44 4831/44 4854/44 +f 4858/44 4855/44 4854/44 +f 4854/44 4320/44 4858/44 +f 4844/44 4840/44 4842/44 +f 4830/44 4842/44 4349/44 +f 4840/44 4844/44 4335/44 +f 4842/44 4840/44 4349/44 +f 4830/44 4349/44 4321/44 +f 4335/44 4355/44 4955/44 +f 4335/44 4955/44 4841/44 +f 4350/44 4841/44 4955/44 +f 4320/44 4347/44 4839/44 +f 4834/44 4837/44 4956/44 +f 4837/44 4835/44 4956/44 +f 4837/44 4836/44 4835/44 +f 4835/44 4834/44 4956/44 +f 4833/44 4832/44 4856/44 +f 4828/44 4842/44 4830/44 +f 4827/44 4843/44 4828/44 +f 4826/44 4852/44 4827/44 +f 4829/44 4348/44 4825/44 +f 4826/44 4348/44 4853/44 +f 4823/44 4348/44 4365/44 +f 4821/44 4850/44 4823/44 +f 4365/44 4820/44 4851/44 +f 4820/44 4819/44 4849/44 +f 4818/44 4848/44 4819/44 +f 4600/44 4599/44 4603/44 +f 4598/44 4365/44 4596/44 +f 4596/44 4594/44 4595/44 +f 4593/44 4590/44 4595/44 +f 4601/44 4592/44 4358/44 +f 4362/44 4340/44 4359/44 +f 4359/44 4358/44 4365/44 +f 4337/44 4311/44 4357/44 +f 4352/44 4955/44 4355/44 +f 4350/44 4955/44 4352/44 +f 4349/44 4841/44 4350/44 +f 4347/44 4320/44 4325/44 +f 4342/44 4325/44 4345/44 +f 4339/44 4325/44 4341/44 +f 4341/44 4336/44 4339/44 +f 4336/44 4309/44 4337/44 +f 4335/44 4311/44 4346/44 +f 4346/44 4325/44 4333/44 +f 4332/44 4333/44 4325/44 +f 4346/44 4333/44 4335/44 +f 4331/44 4354/44 4333/44 +f 4325/44 4330/44 4351/44 +f 4315/44 4957/44 4316/44 +f 4316/44 4957/44 4327/44 +f 4958/44 4327/44 4957/44 +f 4957/44 4315/44 4959/44 +f 4959/44 4958/44 4957/44 +f 4958/44 4960/44 4961/44 +f 4962/44 4961/44 4960/44 +f 4960/44 4963/44 4962/44 +f 4962/44 4963/44 4964/44 +f 4965/44 4964/44 4963/44 +f 4963/44 4966/44 4965/44 +f 4965/44 4966/44 4967/44 +f 4967/44 4968/44 4965/44 +f 4968/44 4969/44 4965/44 +f 4965/44 4969/44 4970/44 +f 4970/44 4971/44 4965/44 +f 4972/44 4971/44 4970/44 +f 4972/44 4968/44 4973/44 +f 4968/44 4972/44 4974/44 +f 4969/44 4968/44 4974/44 +f 4974/44 4975/44 4969/44 +f 4976/44 4969/44 4975/44 +f 4975/44 4977/44 4976/44 +f 4977/44 4978/44 4976/44 +f 4978/44 4977/44 4979/44 +f 4980/44 4978/44 4979/44 +f 4980/44 4979/44 4981/44 +f 4980/44 4982/44 4983/44 +f 4983/44 4984/44 4980/44 +f 4980/44 4984/44 4985/44 +f 4984/44 4986/44 4985/44 +f 4975/44 4985/44 4987/44 +f 4985/44 4975/44 4988/44 +f 4988/44 4978/44 4985/44 +f 4978/44 4970/44 4976/44 +f 4989/44 4970/44 4978/44 +f 4978/44 4988/44 4989/44 +f 4990/44 4989/44 4988/44 +f 4988/44 4991/44 4990/44 +f 4991/44 4992/44 4990/44 +f 4992/44 4993/44 4990/44 +f 4993/44 4994/44 4990/44 +f 4990/44 4994/44 4995/44 +f 4990/44 4995/44 4996/44 +f 4990/44 4996/44 4997/44 +f 4998/44 4974/44 4990/44 +f 4998/44 4999/44 4974/44 +f 4991/44 5000/44 5001/44 +f 5000/44 5002/44 5001/44 +f 5003/44 5004/44 5005/44 +f 5000/44 5005/44 5004/44 +f 5006/44 5007/44 5008/44 +f 5009/44 5006/44 5008/44 +f 5009/44 5010/44 5006/44 +f 5010/44 5009/44 5011/44 +f 5012/44 5010/44 5011/44 +f 5011/44 5013/44 5012/44 +f 5014/44 5012/44 5013/44 +f 5013/44 4996/44 5014/44 +f 5015/44 5014/44 4996/44 +f 5016/44 5014/44 5015/44 +f 5015/44 5017/44 5016/44 +f 5017/44 5018/44 5016/44 +f 5019/44 5016/44 5018/44 +f 5020/44 5019/44 5018/44 +f 5021/44 5020/44 5018/44 +f 5022/44 5021/44 5018/44 +f 4997/44 5022/44 5018/44 +f 4997/44 5018/44 5023/44 +f 5024/44 4998/44 5023/44 +f 4990/44 5023/44 4998/44 +f 5015/44 4998/44 5024/44 +f 4998/44 5015/44 5025/44 +f 5026/44 4998/44 5025/44 +f 5025/44 4994/44 5026/44 +f 5027/44 4998/44 5026/44 +f 5026/44 4993/44 5027/44 +f 5015/44 4994/44 5025/44 +f 4997/44 5007/44 5028/44 +f 5007/44 5010/44 5028/44 +f 5028/44 5010/44 5029/44 +f 5029/44 5022/44 5028/44 +f 5030/44 4997/44 5011/44 +f 5030/44 5007/44 4997/44 +f 5007/44 5030/44 5031/44 +f 5031/44 5008/44 5007/44 +f 5032/44 5008/44 5031/44 +f 5033/44 5032/44 5031/44 +f 5032/44 5033/44 5034/44 +f 5034/44 5035/44 5032/44 +f 5035/44 5008/44 5032/44 +f 5035/44 5034/44 5004/44 +f 5004/44 5036/44 5035/44 +f 5000/44 5004/44 5034/44 +f 5034/44 5009/44 5000/44 +f 5008/44 5035/44 5036/44 +f 5008/44 5036/44 5003/44 +f 5034/44 5033/44 5009/44 +f 5031/44 5030/44 5033/44 +f 5033/44 5030/44 5011/44 +f 5023/44 5018/44 5024/44 +f 5017/44 5024/44 5018/44 +f 5028/44 5022/44 4997/44 +f 5022/44 5029/44 5021/44 +f 5037/44 5021/44 5029/44 +f 5029/44 5012/44 5037/44 +f 5021/44 5037/44 5020/44 +f 5038/44 5020/44 5037/44 +f 5038/44 5037/44 5014/44 +f 5014/44 5016/44 5038/44 +f 5016/44 5019/44 5038/44 +f 5020/44 5038/44 5019/44 +f 5015/44 5024/44 5017/44 +f 4996/44 5013/44 4997/44 +f 5012/44 5014/44 5037/44 +f 5013/44 5011/44 4997/44 +f 5012/44 5029/44 5010/44 +f 5011/44 5009/44 5033/44 +f 5010/44 5007/44 5006/44 +f 5008/44 5000/44 5009/44 +f 5004/44 5003/44 5036/44 +f 5003/44 5005/44 4991/44 +f 4991/44 4999/44 5003/44 +f 5003/44 5002/44 5008/44 +f 5002/44 5003/44 4999/44 +f 4999/44 5039/44 5002/44 +f 5039/44 5001/44 5002/44 +f 5001/44 5039/44 4992/44 +f 4991/44 5001/44 4992/44 +f 5027/44 4992/44 5039/44 +f 4999/44 5027/44 5039/44 +f 5000/44 5008/44 5002/44 +f 5000/44 4991/44 5005/44 +f 4999/44 4998/44 5027/44 +f 4997/44 5023/44 4990/44 +f 4996/44 4995/44 5015/44 +f 4994/44 5015/44 4995/44 +f 4993/44 5026/44 4994/44 +f 4992/44 5027/44 4993/44 +f 4999/44 4991/44 4988/44 +f 4988/44 4975/44 4999/44 +f 4989/44 4990/44 4974/44 +f 4970/44 4989/44 4972/44 +f 4987/44 4986/44 5040/44 +f 5040/44 4983/44 4987/44 +f 4987/44 4983/44 4977/44 +f 4984/44 4983/44 5040/44 +f 4986/44 4987/44 4985/44 +f 5040/44 4986/44 4984/44 +f 4982/44 4977/44 4983/44 +f 4977/44 4982/44 5041/44 +f 4977/44 5041/44 4979/44 +f 4981/44 5041/44 4982/44 +f 4982/44 4980/44 4981/44 +f 4981/44 4979/44 5041/44 +f 4978/44 4980/44 4985/44 +f 4977/44 4975/44 4987/44 +f 4969/44 4976/44 4970/44 +f 4975/44 4974/44 4999/44 +f 4989/44 4974/44 4972/44 +f 4973/44 4971/44 4972/44 +f 4971/44 4973/44 5042/44 +f 5042/44 4965/44 4971/44 +f 5042/44 5043/44 4965/44 +f 5044/44 5045/44 4959/44 +f 5046/44 4959/44 5045/44 +f 5045/44 5047/44 5046/44 +f 5048/44 5046/44 5047/44 +f 5048/44 5047/44 5049/44 +f 5049/44 5050/44 5048/44 +f 5051/44 5046/44 5050/44 +f 5052/44 5051/44 5050/44 +f 5052/44 5043/44 5053/44 +f 5054/44 5053/44 5043/44 +f 5043/44 5042/44 5054/44 +f 5054/44 5042/44 5051/44 +f 5054/44 5051/44 5055/44 +f 5053/44 5054/44 5055/44 +f 5055/44 5056/44 5053/44 +f 5056/44 5055/44 5051/44 +f 5051/44 5052/44 5056/44 +f 5042/44 4959/44 5051/44 +f 4959/44 4964/44 5044/44 +f 5053/44 5056/44 5052/44 +f 5050/44 5049/44 5052/44 +f 5052/44 5049/44 5044/44 +f 5050/44 5046/44 5048/44 +f 5049/44 5047/44 5045/44 +f 5051/44 4959/44 5046/44 +f 5049/44 5045/44 5044/44 +f 5043/44 5052/44 5044/44 +f 5043/44 5044/44 4964/44 +f 5042/44 5057/44 4959/44 +f 5058/44 4959/44 5057/44 +f 4966/44 5058/44 5057/44 +f 4960/44 4959/44 5058/44 +f 5042/44 5059/44 5057/44 +f 4967/44 5057/44 5059/44 +f 5059/44 5042/44 4973/44 +f 5059/44 4973/44 4967/44 +f 4968/44 4967/44 4973/44 +f 5057/44 4967/44 4966/44 +f 5058/44 4966/44 4963/44 +f 4964/44 4965/44 5043/44 +f 4963/44 4960/44 5058/44 +f 4961/44 4962/44 4964/44 +f 4964/44 4315/44 4961/44 +f 4958/44 4959/44 4960/44 +f 4964/44 4959/44 4315/44 +f 4961/44 4315/44 4328/44 +f 4327/44 4961/44 4328/44 +f 4961/44 4327/44 4958/44 +f 4327/44 4326/44 4316/44 +f 4329/44 4325/44 4326/44 +f 4323/44 4317/44 4324/44 +f 4317/44 4323/44 4318/44 +f 4326/44 4317/44 4313/44 +f 4313/44 4316/44 4326/44 +f 4321/44 4314/44 4313/44 +f 4328/44 4315/44 4314/44 +f 4321/44 4313/44 4318/44 +f 4346/44 4311/44 4312/44 +f 4344/44 4312/44 4310/44 +f 4343/44 4310/44 4309/44 +f 4337/44 4309/44 4311/44 +f 608/44 606/44 607/44 +f 4159/44 4155/44 4154/44 diff --git a/resources/meshes/weedo_x40.3mf b/resources/meshes/weedo_x40.3mf new file mode 100644 index 0000000000..d33facda81 Binary files /dev/null and b/resources/meshes/weedo_x40.3mf differ diff --git a/resources/qml/Account/AccountWidget.qml b/resources/qml/Account/AccountWidget.qml index ef1622daee..d738c5c474 100644 --- a/resources/qml/Account/AccountWidget.qml +++ b/resources/qml/Account/AccountWidget.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.4 as UM +import UM 1.5 as UM import Cura 1.1 as Cura Item @@ -12,8 +12,8 @@ Item property var profile: Cura.API.account.userProfile property var loggedIn: Cura.API.account.isLoggedIn - height: signInButton.height > accountWidget.height ? signInButton.height : accountWidget.height - width: signInButton.width > accountWidget.width ? signInButton.width : accountWidget.width + height: signInButton.visible ? signInButton.height : accountWidget.height + width: signInButton.visible ? signInButton.width : accountWidget.width Button { @@ -32,20 +32,26 @@ Item background: Rectangle { radius: UM.Theme.getSize("action_button_radius").width - color: signInButton.hovered ? UM.Theme.getColor("primary_text") : UM.Theme.getColor("main_window_header_background") + color: UM.Theme.getColor("main_window_header_background") border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("primary_text") + + Rectangle + { + anchors.fill: parent + radius: parent.radius + color: UM.Theme.getColor("primary_text") + opacity: signInButton.hovered ? 0.2 : 0 + Behavior on opacity { NumberAnimation { duration: 100 } } + } } - contentItem: Label + contentItem: UM.Label { id: label text: signInButton.text - font: UM.Theme.getFont("default") - color: signInButton.hovered ? UM.Theme.getColor("main_window_header_background") : UM.Theme.getColor("primary_text") + color: UM.Theme.getColor("primary_text") width: contentWidth - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } } @@ -54,7 +60,6 @@ Item id: accountWidget anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: signInButton.horizontalCenter implicitHeight: Math.round(0.5 * UM.Theme.getSize("main_window_header").height) implicitWidth: Math.round(0.5 * UM.Theme.getSize("main_window_header").height) @@ -90,22 +95,30 @@ Item width: Math.min(accountWidget.width, accountWidget.height) height: width radius: width - color: accountWidget.hovered ? UM.Theme.getColor("primary_text") : "transparent" - border.width: 1 + color: UM.Theme.getColor("main_window_header_background") + border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("primary_text") + + Rectangle + { + id: initialCircleFill + anchors.fill: parent + radius: parent.radius + color: UM.Theme.getColor("primary_text") + opacity: accountWidget.hovered ? 0.2 : 0 + Behavior on opacity { NumberAnimation { duration: 100 } } + } } - Label + UM.Label { id: initialLabel anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter text: accountWidget.text font: UM.Theme.getFont("large_bold") - color: accountWidget.hovered ? UM.Theme.getColor("main_window_header_background") : UM.Theme.getColor("primary_text") - verticalAlignment: Text.AlignVCenter + color: UM.Theme.getColor("primary_text") horizontalAlignment: Text.AlignHCenter - renderType: Text.NativeRendering } } @@ -142,7 +155,7 @@ Item borderColor: UM.Theme.getColor("lining") borderWidth: UM.Theme.getSize("default_lining").width - target: Qt.point(width - (signInButton.width / 2), -10) + target: Qt.point(width - ((signInButton.visible ? signInButton.width : accountWidget.width) / 2), -10) arrowSize: UM.Theme.getSize("default_arrow").width } diff --git a/resources/qml/Account/GeneralOperations.qml b/resources/qml/Account/GeneralOperations.qml index c78e9ad828..da62124f3f 100644 --- a/resources/qml/Account/GeneralOperations.qml +++ b/resources/qml/Account/GeneralOperations.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.4 as UM +import UM 1.5 as UM import Cura 1.1 as Cura Column @@ -12,14 +12,12 @@ Column spacing: UM.Theme.getSize("default_margin").width padding: UM.Theme.getSize("default_margin").width - Label + UM.Label { id: title anchors.horizontalCenter: parent.horizontalCenter - renderType: Text.NativeRendering - text: catalog.i18nc("@label", "Sign in to the Ultimaker platform") + text: catalog.i18nc("@label", "Sign in to the Ultimaker platform") font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") } Image @@ -33,16 +31,14 @@ Column verticalAlignment: Image.AlignVCenter } - Label + UM.Label { id: generalInformationPoints anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: Text.AlignLeft - renderType: Text.NativeRendering text: catalog.i18nc("@text", "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the Ultimaker community") lineHeight: 1.4 - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") + wrapMode: Text.NoWrap } Cura.PrimaryButton @@ -60,6 +56,6 @@ Column anchors.horizontalCenter: parent.horizontalCenter height: UM.Theme.getSize("account_button").height text: catalog.i18nc("@button", "Create a free Ultimaker account") - onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "/app/create") + onClicked: Qt.openUrlExternally("https://ultimaker.com/app/ultimaker-cura-account-sign-up?utm_source=cura&utm_medium=software&utm_campaign=menu-signup") } } diff --git a/resources/qml/Account/SyncState.qml b/resources/qml/Account/SyncState.qml index d5a9d392e2..e5731ff9d7 100644 --- a/resources/qml/Account/SyncState.qml +++ b/resources/qml/Account/SyncState.qml @@ -1,7 +1,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.4 as UM +import UM 1.5 as UM import Cura 1.1 as Cura Row // Sync state icon + message @@ -77,28 +77,26 @@ Row // Sync state icon + message width: childrenRect.width height: childrenRect.height - Label + UM.Label { id: stateLabel // text is determined by State - color: UM.Theme.getColor("text") font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - width: contentWidth + UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.rightMargin: UM.Theme.getSize("default_margin").width + wrapMode: Text.NoWrap height: contentHeight - verticalAlignment: Text.AlignVCenter visible: !Cura.API.account.manualSyncEnabled && !Cura.API.account.updatePackagesEnabled } - Label + UM.Label { id: updatePackagesButton text: catalog.i18nc("@button", "Install pending updates") color: UM.Theme.getColor("text_link") font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter height: contentHeight + wrapMode: Text.NoWrap width: contentWidth + UM.Theme.getSize("default_margin").height visible: Cura.API.account.updatePackagesEnabled @@ -112,14 +110,13 @@ Row // Sync state icon + message } } - Label + UM.Label { id: accountSyncButton text: catalog.i18nc("@button", "Check for account updates") color: UM.Theme.getColor("text_link") font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter + wrapMode: Text.NoWrap height: contentHeight width: contentWidth + UM.Theme.getSize("default_margin").height visible: Cura.API.account.manualSyncEnabled diff --git a/resources/qml/Account/UserOperations.qml b/resources/qml/Account/UserOperations.qml index f5241596d5..be858df993 100644 --- a/resources/qml/Account/UserOperations.qml +++ b/resources/qml/Account/UserOperations.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.4 as UM +import UM 1.5 as UM import Cura 1.1 as Cura Column @@ -41,16 +41,13 @@ Column anchors.verticalCenter: parent.verticalCenter color: UM.Theme.getColor("action_button_disabled") visible: !avatar.hasAvatar - Label + UM.Label { id: initialLabel anchors.centerIn: parent text: profile["username"].charAt(0).toUpperCase() font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") - verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter - renderType: Text.NativeRendering } } @@ -62,25 +59,22 @@ Column spacing: UM.Theme.getSize("narrow_margin").height width: childrenRect.width height: childrenRect.height - Label + + UM.Label { id: username - renderType: Text.NativeRendering text: profile.username font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") } SyncState { id: syncRow } - Label + UM.Label { id: lastSyncLabel - renderType: Text.NativeRendering text: catalog.i18nc("@label The argument is a timestamp", "Last update: %1").arg(Cura.API.account.lastSyncDateTime) - font: UM.Theme.getFont("default") color: UM.Theme.getColor("text_medium") } } @@ -98,7 +92,7 @@ Column width: UM.Theme.getSize("account_button").width height: UM.Theme.getSize("account_button").height text: "Ultimaker Digital Factory" - onClicked: Qt.openUrlExternally(CuraApplication.ultimakerDigitalFactoryUrl) + onClicked: Qt.openUrlExternally(CuraApplication.ultimakerDigitalFactoryUrl + "?utm_source=cura&utm_medium=software&utm_campaign=menu-visit-DF") fixedWidthMode: false } @@ -108,7 +102,7 @@ Column width: UM.Theme.getSize("account_button").width height: UM.Theme.getSize("account_button").height text: catalog.i18nc("@button", "Ultimaker Account") - onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl) + onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "?utm_source=cura&utm_medium=software&utm_campaign=menu-visit-account") fixedWidthMode: false } diff --git a/resources/qml/ActionButton.qml b/resources/qml/ActionButton.qml index 582df3d87c..5cec567ae4 100644 --- a/resources/qml/ActionButton.qml +++ b/resources/qml/ActionButton.qml @@ -5,7 +5,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.1 import QtGraphicalEffects 1.0 // For the dropshadow -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -15,6 +15,7 @@ Button property bool isIconOnRightSide: false property alias iconSource: buttonIconLeft.source + property real iconSize: UM.Theme.getSize("action_button_icon").height property alias textFont: buttonText.font property alias cornerRadius: backgroundRect.radius property alias tooltip: tooltip.tooltipText @@ -109,7 +110,7 @@ Button { id: buttonIconLeft source: "" - height: visible ? UM.Theme.getSize("action_button_icon").height : 0 + height: visible ? button.iconSize : 0 width: visible ? height : 0 sourceSize.width: width sourceSize.height: height @@ -127,29 +128,27 @@ Button elideWidth: buttonText.width } - Label + UM.Label { id: buttonText text: button.text color: button.enabled ? (button.hovered ? button.textHoverColor : button.textColor): button.textDisabledColor font: UM.Theme.getFont("medium") visible: text != "" - renderType: Text.NativeRendering height: parent.height anchors.verticalCenter: parent.verticalCenter horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter elide: Text.ElideRight Binding { - // When settting width directly, an unjust binding loop warning would be triggered, + // When setting width directly, an unjust binding loop warning would be triggered, // because button.width is part of this expression. // Using parent.width is fine in fixedWidthMode. target: buttonText property: "width" - value: button.fixedWidthMode ? button.width - button.leftPadding - button.rightPadding - : ((maximumWidth != 0 && button.contentWidth > maximumWidth) ? maximumWidth : undefined) + value: button.fixedWidthMode ? (button.width - button.leftPadding - button.rightPadding) + : ((button.maximumWidth != 0 && button.implicitContentWidth > button.maximumWidth) ? (button.maximumWidth - (button.width - button.implicitContentWidth) * 2) : undefined) } } @@ -158,7 +157,7 @@ Button { id: buttonIconRight source: buttonIconLeft.source - height: visible ? UM.Theme.getSize("action_button_icon").height : 0 + height: visible ? button.iconSize : 0 width: visible ? height : 0 sourceSize.width: width sourceSize.height: height @@ -180,7 +179,7 @@ Button cornerSide: Cura.RoundedRectangle.Direction.None } - Cura.ToolTip + UM.ToolTip { id: tooltip visible: diff --git a/resources/qml/ActionPanel/OutputProcessWidget.qml b/resources/qml/ActionPanel/OutputProcessWidget.qml index 6e412c9a04..1303dc20a2 100644 --- a/resources/qml/ActionPanel/OutputProcessWidget.qml +++ b/resources/qml/ActionPanel/OutputProcessWidget.qml @@ -5,7 +5,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.1 import QtQuick.Layouts 1.3 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -128,7 +128,7 @@ Column tooltip: text fixedWidthMode: true - toolTipContentAlignment: Cura.ToolTip.ContentAlignment.AlignLeft + toolTipContentAlignment: UM.Enums.ContentAlignment.AlignLeft onClicked: UM.Controller.setActiveStage("PreviewStage") } diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml index 99d78537c3..868f23d242 100644 --- a/resources/qml/ActionPanel/SliceProcessWidget.qml +++ b/resources/qml/ActionPanel/SliceProcessWidget.qml @@ -1,10 +1,9 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 2.1 +import QtQuick.Controls 2.4 import QtQuick.Layouts 1.3 -import QtQuick.Controls 1.4 as Controls1 import UM 1.4 as UM import Cura 1.0 as Cura @@ -122,7 +121,9 @@ Column tooltip: catalog.i18nc("@label", "Start the slicing process") enabled: widget.backendState != UM.Backend.Error && !widget.waitingForSliceToStart visible: widget.backendState == UM.Backend.NotStarted || widget.backendState == UM.Backend.Error - onClicked: sliceOrStopSlicing() + onClicked: { + sliceOrStopSlicing() + } } Cura.SecondaryButton @@ -136,7 +137,9 @@ Column text: catalog.i18nc("@button", "Cancel") enabled: sliceButton.enabled visible: !sliceButton.visible - onClicked: sliceOrStopSlicing() + onClicked: { + sliceOrStopSlicing() + } } } @@ -165,7 +168,7 @@ Column } // Shortcut for "slice/stop" - Controls1.Action + Action { shortcut: "Ctrl+P" onTriggered: diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 95c6778b87..ec25eb8abb 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -1,72 +1,71 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. pragma Singleton import QtQuick 2.10 -import QtQuick.Controls 1.1 -import QtQuick.Controls 2.3 as Controls2 +import QtQuick.Controls 2.4 import UM 1.1 as UM import Cura 1.0 as Cura Item { - property alias newProject: newProjectAction; - property alias open: openAction; - property alias quit: quitAction; + property alias newProject: newProjectAction + property alias open: openAction + property alias quit: quitAction - property alias undo: undoAction; - property alias redo: redoAction; + property alias undo: undoAction + property alias redo: redoAction - property alias view3DCamera: view3DCameraAction; - property alias viewFrontCamera: viewFrontCameraAction; - property alias viewTopCamera: viewTopCameraAction; - property alias viewBottomCamera: viewBottomCameraAction; - property alias viewLeftSideCamera: viewLeftSideCameraAction; - property alias viewRightSideCamera: viewRightSideCameraAction; + property alias view3DCamera: view3DCameraAction + property alias viewFrontCamera: viewFrontCameraAction + property alias viewTopCamera: viewTopCameraAction + property alias viewBottomCamera: viewBottomCameraAction + property alias viewLeftSideCamera: viewLeftSideCameraAction + property alias viewRightSideCamera: viewRightSideCameraAction - property alias deleteSelection: deleteSelectionAction; - property alias centerSelection: centerSelectionAction; - property alias multiplySelection: multiplySelectionAction; + property alias deleteSelection: deleteSelectionAction + property alias centerSelection: centerSelectionAction + property alias multiplySelection: multiplySelectionAction - property alias deleteObject: deleteObjectAction; - property alias centerObject: centerObjectAction; - property alias groupObjects: groupObjectsAction; - property alias unGroupObjects:unGroupObjectsAction; - property alias mergeObjects: mergeObjectsAction; - //property alias unMergeObjects: unMergeObjectsAction; + property alias deleteObject: deleteObjectAction + property alias centerObject: centerObjectAction + property alias groupObjects: groupObjectsAction + property alias unGroupObjects:unGroupObjectsAction + property alias mergeObjects: mergeObjectsAction + //property alias unMergeObjects: unMergeObjectsAction - property alias multiplyObject: multiplyObjectAction; + property alias multiplyObject: multiplyObjectAction - property alias selectAll: selectAllAction; - property alias deleteAll: deleteAllAction; - property alias reloadAll: reloadAllAction; - property alias arrangeAllBuildPlates: arrangeAllBuildPlatesAction; - property alias arrangeAll: arrangeAllAction; - property alias arrangeSelection: arrangeSelectionAction; - property alias resetAllTranslation: resetAllTranslationAction; - property alias resetAll: resetAllAction; + property alias selectAll: selectAllAction + property alias deleteAll: deleteAllAction + property alias reloadAll: reloadAllAction + property alias arrangeAllBuildPlates: arrangeAllBuildPlatesAction + property alias arrangeAll: arrangeAllAction + property alias arrangeSelection: arrangeSelectionAction + property alias resetAllTranslation: resetAllTranslationAction + property alias resetAll: resetAllAction - property alias addMachine: addMachineAction; - property alias configureMachines: settingsAction; - property alias addProfile: addProfileAction; - property alias updateProfile: updateProfileAction; - property alias resetProfile: resetProfileAction; - property alias manageProfiles: manageProfilesAction; + property alias addMachine: addMachineAction + property alias configureMachines: settingsAction + property alias addProfile: addProfileAction + property alias updateProfile: updateProfileAction + property alias resetProfile: resetProfileAction + property alias manageProfiles: manageProfilesAction - property alias manageMaterials: manageMaterialsAction; - property alias marketplaceMaterials: marketplaceMaterialsAction; + property alias manageMaterials: manageMaterialsAction + property alias marketplaceMaterials: marketplaceMaterialsAction - property alias preferences: preferencesAction; + property alias preferences: preferencesAction - property alias showProfileFolder: showProfileFolderAction; - property alias documentation: documentationAction; + property alias showProfileFolder: showProfileFolderAction + property alias documentation: documentationAction property alias showTroubleshooting: showTroubleShootingAction - property alias reportBug: reportBugAction; + property alias reportBug: reportBugAction property alias whatsNew: whatsNewAction - property alias about: aboutAction; + property alias about: aboutAction - property alias toggleFullScreen: toggleFullScreenAction; + property alias toggleFullScreen: toggleFullScreenAction property alias exitFullScreen: exitFullScreenAction property alias configureSettingVisibility: configureSettingVisibilityAction @@ -79,8 +78,8 @@ Item Action { id: showTroubleShootingAction - onTriggered: Qt.openUrlExternally("https://ultimaker.com/en/troubleshooting") - text: catalog.i18nc("@action:inmenu", "Show Online Troubleshooting Guide"); + onTriggered: Qt.openUrlExternally("https://ultimaker.com/en/troubleshooting?utm_source=cura&utm_medium=software&utm_campaign=dropdown-troubleshooting") + text: catalog.i18nc("@action:inmenu", "Show Online Troubleshooting Guide") } Action @@ -88,7 +87,7 @@ Item id: toggleFullScreenAction shortcut: StandardKey.FullScreen text: catalog.i18nc("@action:inmenu", "Toggle Full Screen") - iconName: "view-fullscreen" + icon.name: "view-fullscreen" } Action @@ -96,27 +95,27 @@ Item id: exitFullScreenAction shortcut: StandardKey.Cancel text: catalog.i18nc("@action:inmenu", "Exit Full Screen") - iconName: "view-fullscreen" + icon.name: "view-fullscreen" } Action { - id: undoAction; - text: catalog.i18nc("@action:inmenu menubar:edit", "&Undo"); - iconName: "edit-undo"; - shortcut: StandardKey.Undo; - onTriggered: UM.OperationStack.undo(); - enabled: UM.OperationStack.canUndo; + id: undoAction + text: catalog.i18nc("@action:inmenu menubar:edit", "&Undo") + icon.name: "edit-undo" + shortcut: StandardKey.Undo + onTriggered: UM.OperationStack.undo() + enabled: UM.OperationStack.canUndo } Action { - id: redoAction; - text: catalog.i18nc("@action:inmenu menubar:edit", "&Redo"); - iconName: "edit-redo"; - shortcut: StandardKey.Redo; - onTriggered: UM.OperationStack.redo(); - enabled: UM.OperationStack.canRedo; + id: redoAction + text: catalog.i18nc("@action:inmenu menubar:edit", "&Redo") + icon.name: "edit-redo" + shortcut: StandardKey.Redo + onTriggered: UM.OperationStack.redo() + enabled: UM.OperationStack.canRedo } Action @@ -131,7 +130,7 @@ Item //- https://doc.qt.io/qt-5/macos-issues.html#menu-bar //- https://doc.qt.io/qt-5/qmenubar.html#qmenubar-as-a-global-menu-bar text: (Qt.platform.os == "osx") ? "&Quit" : catalog.i18nc("@action:inmenu menubar:file", "&Quit") - iconName: "application-exit" + icon.name: "application-exit" shortcut: StandardKey.Quit } @@ -188,7 +187,7 @@ Item //- https://doc.qt.io/qt-5/macos-issues.html#menu-bar //- https://doc.qt.io/qt-5/qmenubar.html#qmenubar-as-a-global-menu-bar text: (Qt.platform.os == "osx") ? "Configure Cura..." : catalog.i18nc("@action:inmenu", "Configure Cura...") - iconName: "configure" + icon.name: "configure" } Action @@ -201,83 +200,83 @@ Item { id: settingsAction text: catalog.i18nc("@action:inmenu menubar:printer", "Manage Pr&inters...") - iconName: "configure" + icon.name: "configure" } Action { id: manageMaterialsAction text: catalog.i18nc("@action:inmenu", "Manage Materials...") - iconName: "configure" + icon.name: "configure" shortcut: "Ctrl+K" } Action { id: marketplaceMaterialsAction - text: catalog.i18nc("@action:inmenu", "Add more materials from Marketplace") + text: catalog.i18nc("@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate.", "Add more materials from Marketplace") } Action { - id: updateProfileAction; + id: updateProfileAction enabled: !Cura.MachineManager.stacksHaveErrors && Cura.MachineManager.hasUserSettings && Cura.MachineManager.activeQualityChangesGroup != null - text: catalog.i18nc("@action:inmenu menubar:profile","&Update profile with current settings/overrides"); - onTriggered: Cura.ContainerManager.updateQualityChanges(); + text: catalog.i18nc("@action:inmenu menubar:profile", "&Update profile with current settings/overrides"); + onTriggered: Cura.ContainerManager.updateQualityChanges() } Action { - id: resetProfileAction; + id: resetProfileAction enabled: Cura.MachineManager.hasUserSettings - text: catalog.i18nc("@action:inmenu menubar:profile", "&Discard current changes"); + text: catalog.i18nc("@action:inmenu menubar:profile", "&Discard current changes") onTriggered: { - forceActiveFocus(); - Cura.ContainerManager.clearUserContainers(); + forceActiveFocus() + Cura.ContainerManager.clearUserContainers() } } Action { - id: addProfileAction; + id: addProfileAction enabled: !Cura.MachineManager.stacksHaveErrors && Cura.MachineManager.hasUserSettings - text: catalog.i18nc("@action:inmenu menubar:profile", "&Create profile from current settings/overrides..."); + text: catalog.i18nc("@action:inmenu menubar:profile", "&Create profile from current settings/overrides...") } Action { id: manageProfilesAction text: catalog.i18nc("@action:inmenu menubar:profile", "Manage Profiles...") - iconName: "configure" + icon.name: "configure" shortcut: "Ctrl+J" } Action { - id: documentationAction; - text: catalog.i18nc("@action:inmenu menubar:help", "Show Online &Documentation"); - iconName: "help-contents"; - shortcut: StandardKey.Help; - onTriggered: CuraActions.openDocumentation(); + id: documentationAction + text: catalog.i18nc("@action:inmenu menubar:help", "Show Online &Documentation") + icon.name: "help-contents" + shortcut: StandardKey.Help + onTriggered: CuraActions.openDocumentation() } Action { - id: reportBugAction; - text: catalog.i18nc("@action:inmenu menubar:help", "Report a &Bug"); - iconName: "tools-report-bug"; - onTriggered: CuraActions.openBugReportPage(); + id: reportBugAction + text: catalog.i18nc("@action:inmenu menubar:help", "Report a &Bug") + icon.name: "tools-report-bug" + onTriggered: CuraActions.openBugReportPage() } Action { - id: whatsNewAction; - text: catalog.i18nc("@action:inmenu menubar:help", "What's New"); + id: whatsNewAction + text: catalog.i18nc("@action:inmenu menubar:help", "What's New") } Action { - id: aboutAction; + id: aboutAction //On MacOS, don't translate the "About" word. //Qt moves the "about" entry to a different place, and if it got renamed can't find it again when it @@ -286,60 +285,60 @@ Item //For more information, see: //- https://doc.qt.io/qt-5/macos-issues.html#menu-bar //- https://doc.qt.io/qt-5/qmenubar.html#qmenubar-as-a-global-menu-bar - text: (Qt.platform.os == "osx") ? "About..." : catalog.i18nc("@action:inmenu menubar:help", "About..."); - iconName: "help-about"; + text: (Qt.platform.os == "osx") ? "About..." : catalog.i18nc("@action:inmenu menubar:help", "About...") + icon.name: "help-about" } Action { - id: deleteSelectionAction; - text: catalog.i18nc("@action:inmenu menubar:edit", "Delete Selected"); - enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection; - iconName: "edit-delete"; + id: deleteSelectionAction + text: catalog.i18nc("@action:inmenu menubar:edit", "Delete Selected") + enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection + icon.name: "edit-delete" shortcut: StandardKey.Delete | "Backspace" - onTriggered: CuraActions.deleteSelection(); + onTriggered: CuraActions.deleteSelection() } Action { - id: centerSelectionAction; - text: catalog.i18nc("@action:inmenu menubar:edit", "Center Selected"); - enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection; - iconName: "align-vertical-center"; - onTriggered: CuraActions.centerSelection(); + id: centerSelectionAction + text: catalog.i18nc("@action:inmenu menubar:edit", "Center Selected") + enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection + icon.name: "align-vertical-center" + onTriggered: CuraActions.centerSelection() } Action { - id: multiplySelectionAction; - text: catalog.i18nc("@action:inmenu menubar:edit", "Multiply Selected"); - enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection; - iconName: "edit-duplicate"; + id: multiplySelectionAction + text: catalog.i18nc("@action:inmenu menubar:edit", "Multiply Selected") + enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection + icon.name: "edit-duplicate" shortcut: "Ctrl+M" } Action { - id: deleteObjectAction; - text: catalog.i18nc("@action:inmenu","Delete Model"); - enabled: UM.Controller.toolsEnabled; - iconName: "edit-delete"; + id: deleteObjectAction + text: catalog.i18nc("@action:inmenu","Delete Model") + enabled: UM.Controller.toolsEnabled + icon.name: "edit-delete" } Action { - id: centerObjectAction; - text: catalog.i18nc("@action:inmenu","Ce&nter Model on Platform"); + id: centerObjectAction + text: catalog.i18nc("@action:inmenu","Ce&nter Model on Platform") } Action { id: groupObjectsAction - text: catalog.i18nc("@action:inmenu menubar:edit","&Group Models"); + text: catalog.i18nc("@action:inmenu menubar:edit","&Group Models") enabled: UM.Selection.selectionCount > 1 ? true: false - iconName: "object-group" - shortcut: "Ctrl+G"; - onTriggered: CuraApplication.groupSelected(); + icon.name: "object-group" + shortcut: "Ctrl+G" + onTriggered: CuraApplication.groupSelected() } Action @@ -355,132 +354,132 @@ Item Action { id: unGroupObjectsAction - text: catalog.i18nc("@action:inmenu menubar:edit","Ungroup Models"); + text: catalog.i18nc("@action:inmenu menubar:edit","Ungroup Models") enabled: UM.Selection.isGroupSelected - iconName: "object-ungroup" - shortcut: "Ctrl+Shift+G"; - onTriggered: CuraApplication.ungroupSelected(); + icon.name: "object-ungroup" + shortcut: "Ctrl+Shift+G" + onTriggered: CuraApplication.ungroupSelected() } Action { id: mergeObjectsAction - text: catalog.i18nc("@action:inmenu menubar:edit","&Merge Models"); + text: catalog.i18nc("@action:inmenu menubar:edit","&Merge Models") enabled: UM.Selection.selectionCount > 1 ? true: false - iconName: "merge"; - shortcut: "Ctrl+Alt+G"; - onTriggered: CuraApplication.mergeSelected(); + icon.name: "merge" + shortcut: "Ctrl+Alt+G" + onTriggered: CuraApplication.mergeSelected() } Action { - id: multiplyObjectAction; - text: catalog.i18nc("@action:inmenu","&Multiply Model..."); - iconName: "edit-duplicate" + id: multiplyObjectAction + text: catalog.i18nc("@action:inmenu","&Multiply Model...") + icon.name: "edit-duplicate" } Action { - id: selectAllAction; - text: catalog.i18nc("@action:inmenu menubar:edit","Select All Models"); - enabled: UM.Controller.toolsEnabled; - iconName: "edit-select-all"; - shortcut: "Ctrl+A"; - onTriggered: CuraApplication.selectAll(); + id: selectAllAction + text: catalog.i18nc("@action:inmenu menubar:edit","Select All Models") + enabled: UM.Controller.toolsEnabled + icon.name: "edit-select-all" + shortcut: "Ctrl+A" + onTriggered: CuraApplication.selectAll() } Action { - id: deleteAllAction; - text: catalog.i18nc("@action:inmenu menubar:edit","Clear Build Plate"); - enabled: UM.Controller.toolsEnabled; - iconName: "edit-delete"; - shortcut: "Ctrl+D"; - onTriggered: CuraApplication.deleteAll(); + id: deleteAllAction + text: catalog.i18nc("@action:inmenu menubar:edit","Clear Build Plate") + enabled: UM.Controller.toolsEnabled + icon.name: "edit-delete" + shortcut: "Ctrl+D" + onTriggered: CuraApplication.deleteAll() } Action { - id: reloadAllAction; - text: catalog.i18nc("@action:inmenu menubar:file","Reload All Models"); - iconName: "document-revert"; + id: reloadAllAction + text: catalog.i18nc("@action:inmenu menubar:file","Reload All Models") + icon.name: "document-revert" shortcut: "F5" - onTriggered: CuraApplication.reloadAll(); + onTriggered: CuraApplication.reloadAll() } Action { - id: arrangeAllBuildPlatesAction; - text: catalog.i18nc("@action:inmenu menubar:edit","Arrange All Models To All Build Plates"); - onTriggered: Printer.arrangeObjectsToAllBuildPlates(); + id: arrangeAllBuildPlatesAction + text: catalog.i18nc("@action:inmenu menubar:edit","Arrange All Models To All Build Plates") + onTriggered: Printer.arrangeObjectsToAllBuildPlates() } Action { - id: arrangeAllAction; - text: catalog.i18nc("@action:inmenu menubar:edit","Arrange All Models"); - onTriggered: Printer.arrangeAll(); - shortcut: "Ctrl+R"; + id: arrangeAllAction + text: catalog.i18nc("@action:inmenu menubar:edit","Arrange All Models") + onTriggered: Printer.arrangeAll() + shortcut: "Ctrl+R" } Action { - id: arrangeSelectionAction; - text: catalog.i18nc("@action:inmenu menubar:edit","Arrange Selection"); - onTriggered: Printer.arrangeSelection(); + id: arrangeSelectionAction + text: catalog.i18nc("@action:inmenu menubar:edit","Arrange Selection") + onTriggered: Printer.arrangeSelection() } Action { - id: resetAllTranslationAction; - text: catalog.i18nc("@action:inmenu menubar:edit","Reset All Model Positions"); - onTriggered: CuraApplication.resetAllTranslation(); + id: resetAllTranslationAction + text: catalog.i18nc("@action:inmenu menubar:edit","Reset All Model Positions") + onTriggered: CuraApplication.resetAllTranslation() } Action { - id: resetAllAction; - text: catalog.i18nc("@action:inmenu menubar:edit","Reset All Model Transformations"); - onTriggered: CuraApplication.resetAll(); + id: resetAllAction + text: catalog.i18nc("@action:inmenu menubar:edit","Reset All Model Transformations") + onTriggered: CuraApplication.resetAll() } Action { - id: openAction; + id: openAction property var fileProviderModel: CuraApplication.getFileProviderModel() - text: catalog.i18nc("@action:inmenu menubar:file","&Open File(s)..."); - iconName: "document-open"; + text: catalog.i18nc("@action:inmenu menubar:file","&Open File(s)...") + icon.name: "document-open" // Unassign the shortcut when there are more than one file providers, since then the file provider's shortcut is // enabled instead, and Ctrl+O is assigned to the local file provider - shortcut: fileProviderModel.count == 1 ? StandardKey.Open : ""; + shortcut: fileProviderModel.count == 1 ? StandardKey.Open : "" } Action { id: newProjectAction - text: catalog.i18nc("@action:inmenu menubar:file","&New Project..."); + text: catalog.i18nc("@action:inmenu menubar:file","&New Project...") shortcut: StandardKey.New } Action { - id: showProfileFolderAction; - text: catalog.i18nc("@action:inmenu menubar:help","Show Configuration Folder"); + id: showProfileFolderAction + text: catalog.i18nc("@action:inmenu menubar:help","Show Configuration Folder") } Action { id: configureSettingVisibilityAction - text: catalog.i18nc("@action:menu", "Configure setting visibility..."); - iconName: "configure" + text: catalog.i18nc("@action:menu", "Configure setting visibility...") + icon.name: "configure" } Action { id: browsePackagesAction - text: catalog.i18nc("@action:menu", "&Marketplace") - iconName: "plugins_browse" + text: "&Marketplace" + icon.name: "plugins_browse" } } diff --git a/resources/qml/ApplicationSwitcher/ApplicationButton.qml b/resources/qml/ApplicationSwitcher/ApplicationButton.qml new file mode 100644 index 0000000000..182b80811b --- /dev/null +++ b/resources/qml/ApplicationSwitcher/ApplicationButton.qml @@ -0,0 +1,89 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 + +import UM 1.5 as UM +import Cura 1.1 as Cura + +Button +{ + id: base + + property alias iconSource: applicationIcon.source + property alias displayName: applicationDisplayName.text + property alias tooltipText: tooltip.text + property bool isExternalLink: false + property color borderColor: hovered ? UM.Theme.getColor("primary") : "transparent" + property color backgroundColor: hovered ? UM.Theme.getColor("action_button_hovered") : UM.Theme.getColor("action_button") + Behavior on backgroundColor { ColorAnimation { duration: 200; } } + Behavior on borderColor { ColorAnimation { duration: 200; } } + + hoverEnabled: true + width: UM.Theme.getSize("application_switcher_item").width + height: UM.Theme.getSize("application_switcher_item").height + + background: Rectangle + { + color:backgroundColor + border.color: borderColor + border.width: UM.Theme.getSize("default_lining").width + } + + UM.ToolTip + { + id: tooltip + tooltipText: base.text + visible: base.hovered + } + + Column + { + id: applicationButtonContent + anchors.left: parent.left + anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter + + UM.RecolorImage + { + id: applicationIcon + anchors.horizontalCenter: parent.horizontalCenter + + color: UM.Theme.getColor("icon") + width: UM.Theme.getSize("application_switcher_icon").width + height: width + + UM.RecolorImage + { + id: externalLinkIndicatorIcon + visible: base.isExternalLink + + anchors + { + bottom: parent.bottom + bottomMargin: - Math.round(height * 1 / 6) + right: parent.right + rightMargin: - Math.round(width * 5 / 6) + } + width: UM.Theme.getSize("icon_indicator").width + height: width + color: UM.Theme.getColor("icon") + source: UM.Theme.getIcon("LinkExternal") + } + } + + UM.Label + { + id: applicationDisplayName + + anchors.left: parent.left + anchors.right: parent.right + + height: base.height - applicationIcon.height - 2 * UM.Theme.getSize("default_margin").width // Account for the top and bottom margins + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.Wrap + elide: Text.ElideRight + } + } +} diff --git a/resources/qml/ApplicationSwitcher/ApplicationSwitcher.qml b/resources/qml/ApplicationSwitcher/ApplicationSwitcher.qml new file mode 100644 index 0000000000..a8ea2312a5 --- /dev/null +++ b/resources/qml/ApplicationSwitcher/ApplicationSwitcher.qml @@ -0,0 +1,61 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.15 + +import UM 1.4 as UM +import Cura 1.1 as Cura + +Item +{ + id: applicationSwitcherWidget + width: Math.round(0.5 * UM.Theme.getSize("main_window_header").height) + height: width + + Button + { + id: applicationSwitcherButton + + anchors.fill: parent + + background: Item + { + Rectangle + { + anchors.fill: parent + radius: UM.Theme.getSize("action_button_radius").width + color: UM.Theme.getColor("primary_text") + opacity: applicationSwitcherButton.hovered ? 0.2 : 0 + Behavior on opacity { NumberAnimation { duration: 100; } } + } + + UM.RecolorImage + { + anchors.fill: parent + color: UM.Theme.getColor("primary_text") + + source: UM.Theme.getIcon("BlockGrid") + } + } + + onClicked: + { + if (applicationSwitcherPopup.opened) + { + applicationSwitcherPopup.close() + } else { + applicationSwitcherPopup.open() + } + } + } + ApplicationSwitcherPopup + { + id: applicationSwitcherPopup + y: parent.height + UM.Theme.getSize("default_arrow").height + + // Move the x position by the default margin so that the arrow isn't drawn exactly on the corner + x: parent.width - width + UM.Theme.getSize("default_margin").width + } +} \ No newline at end of file diff --git a/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml b/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml new file mode 100644 index 0000000000..ede42fcd5f --- /dev/null +++ b/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml @@ -0,0 +1,120 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.15 + +import UM 1.4 as UM +import Cura 1.1 as Cura + +Popup +{ + id: applicationSwitcherPopup + + closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent + + opacity: opened ? 1 : 0 + Behavior on opacity { NumberAnimation { duration: 100 } } + padding: UM.Theme.getSize("wide_margin").width + + contentItem: Grid + { + id: ultimakerPlatformLinksGrid + columns: 3 + spacing: UM.Theme.getSize("default_margin").width + + Repeater + { + model: + [ + { + displayName: catalog.i18nc("@label:button", "My printers"), + thumbnail: UM.Theme.getIcon("PrinterTriple", "high"), + description: catalog.i18nc("@tooltip:button", "Monitor printers in Ultimaker Digital Factory."), + link: "https://digitalfactory.ultimaker.com/app/printers?utm_source=cura&utm_medium=software&utm_campaign=switcher-digital-factory-printers", + DFAccessRequired: true + }, + { + displayName: "Digital Library", //Not translated, since it's a brand name. + thumbnail: UM.Theme.getIcon("Library", "high"), + description: catalog.i18nc("@tooltip:button", "Create print projects in Digital Library."), + link: "https://digitalfactory.ultimaker.com/app/library?utm_source=cura&utm_medium=software&utm_campaign=switcher-library", + DFAccessRequired: true + }, + { + displayName: catalog.i18nc("@label:button", "Print jobs"), + thumbnail: UM.Theme.getIcon("FoodBeverages"), + description: catalog.i18nc("@tooltip:button", "Monitor print jobs and reprint from your print history."), + link: "https://digitalfactory.ultimaker.com/app/print-jobs?utm_source=cura&utm_medium=software&utm_campaign=switcher-digital-factory-printjobs", + DFAccessRequired: true + }, + { + displayName: "Ultimaker Marketplace", //Not translated, since it's a brand name. + thumbnail: UM.Theme.getIcon("Shop", "high"), + description: catalog.i18nc("@tooltip:button", "Extend Ultimaker Cura with plugins and material profiles."), + link: "https://marketplace.ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-marketplace-materials", + DFAccessRequired: false + }, + { + displayName: "Ultimaker Academy", //Not translated, since it's a brand name. + thumbnail: UM.Theme.getIcon("Knowledge"), + description: catalog.i18nc("@tooltip:button", "Become a 3D printing expert with Ultimaker e-learning."), + link: "https://academy.ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-academy", + DFAccessRequired: false + }, + { + displayName: catalog.i18nc("@label:button", "Ultimaker support"), + thumbnail: UM.Theme.getIcon("Help", "high"), + description: catalog.i18nc("@tooltip:button", "Learn how to get started with Ultimaker Cura."), + link: "https://support.ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-support", + DFAccessRequired: false + }, + { + displayName: catalog.i18nc("@label:button", "Ask a question"), + thumbnail: UM.Theme.getIcon("Speak", "high"), + description: catalog.i18nc("@tooltip:button", "Consult the Ultimaker Community."), + link: "https://community.ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-community", + DFAccessRequired: false + }, + { + displayName: catalog.i18nc("@label:button", "Report a bug"), + thumbnail: UM.Theme.getIcon("Bug", "high"), + description: catalog.i18nc("@tooltip:button", "Let developers know that something is going wrong."), + link: "https://github.com/Ultimaker/Cura/issues/new/choose", + DFAccessRequired: false + }, + { + displayName: "Ultimaker.com", //Not translated, since it's a URL. + thumbnail: UM.Theme.getIcon("Browser"), + description: catalog.i18nc("@tooltip:button", "Visit the Ultimaker website."), + link: "https://ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-umwebsite", + DFAccessRequired: false + } + ] + + delegate: ApplicationButton + { + displayName: modelData.displayName + iconSource: modelData.thumbnail + tooltipText: modelData.description + isExternalLink: true + visible: modelData.DFAccessRequired ? Cura.API.account.isLoggedIn & Cura.API.account.additionalRights["df_access"] : true + + onClicked: Qt.openUrlExternally(modelData.link) + } + } + } + + background: UM.PointingRectangle + { + color: UM.Theme.getColor("tool_panel_background") + borderColor: UM.Theme.getColor("lining") + borderWidth: UM.Theme.getSize("default_lining").width + + // Move the target by the default margin so that the arrow isn't drawn exactly on the corner + target: Qt.point(width - UM.Theme.getSize("default_margin").width - (applicationSwitcherButton.width / 2), -10) + + arrowSize: UM.Theme.getSize("default_arrow").width + } +} diff --git a/resources/qml/CheckBoxWithTooltip.qml b/resources/qml/CheckBoxWithTooltip.qml deleted file mode 100644 index e17940014a..0000000000 --- a/resources/qml/CheckBoxWithTooltip.qml +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.7 -import QtQuick.Controls 2.1 - -import UM 1.3 as UM - -CheckBox -{ - id: checkbox - hoverEnabled: true - - property alias tooltip: tooltip.text - - indicator: Rectangle - { - implicitWidth: UM.Theme.getSize("checkbox").width - implicitHeight: UM.Theme.getSize("checkbox").height - x: 0 - anchors.verticalCenter: parent.verticalCenter - color: UM.Theme.getColor("main_background") - radius: UM.Theme.getSize("checkbox_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: checkbox.hovered ? UM.Theme.getColor("checkbox_border_hover") : UM.Theme.getColor("checkbox_border") - - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: Math.round(parent.width / 2.5) - height: Math.round(parent.height / 2.5) - sourceSize.height: width - color: UM.Theme.getColor("checkbox_mark") - source: UM.Theme.getIcon("Check") - opacity: checkbox.checked - Behavior on opacity { NumberAnimation { duration: 100; } } - } - } - - contentItem: Label - { - anchors - { - left: checkbox.indicator.right - leftMargin: UM.Theme.getSize("narrow_margin").width - } - text: checkbox.text - color: UM.Theme.getColor("checkbox_text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter - } - - ToolTip - { - id: tooltip - text: "" - delay: 500 - visible: text != "" && checkbox.hovered - } -} diff --git a/resources/qml/ColorDialog.qml b/resources/qml/ColorDialog.qml new file mode 100644 index 0000000000..3818ea5cb4 --- /dev/null +++ b/resources/qml/ColorDialog.qml @@ -0,0 +1,148 @@ +import QtQuick 2.10 +import QtQuick.Controls 2.2 +import QtQuick.Window 2.1 +import QtQuick.Layouts 1.1 + +import UM 1.5 as UM +import Cura 1.1 as Cura + + +/* +* A dialog that provides the option to pick a color. Currently it only asks for a hex code and shows the color +* in a color swath +*/ +UM.Dialog +{ + id: base + + property variant catalog: UM.I18nCatalog { name: "cura" } + + margin: UM.Theme.getSize("default_margin").width + + property alias swatchGridColumns: colorSwatchGrid.columns + + // In this case we would like to let the content of the dialog determine the size of the dialog + // however with the current implementation of the dialog this is not possible, so instead we calculate + // the size of the dialog ourselves. + minimumWidth: content.width + 4 * margin + minimumHeight: + content.height // content height + + buttonRow.height // button row height + + 5 * margin // top and bottom margin and margin between buttons and content + width: minimumWidth + height: minimumHeight + + property alias color: colorInput.text + property var swatchColors: [ + "#2161AF", "#57AFB2", "#F7B32D", "#E33D4A", "#C088AD", + "#5D88BE", "#5ABD0E", "#E17239", "#F74E46", "#874AF9", + "#50C2EC", "#8DC15A", "#C3977A", "#CD7776", "#9086BA", + "#FFFFFF", "#D3D3D3", "#9E9E9E", "#5A5A5A", "#000000", + ] + + Component.onCompleted: updateSwatches() + onSwatchColorsChanged: updateSwatches() + + function updateSwatches() + { + swatchColorsModel.clear(); + for (const swatchColor of base.swatchColors) + { + swatchColorsModel.append({ swatchColor }); + } + } + + Column + { + id: content + width: childrenRect.width + height: childrenRect.height + spacing: UM.Theme.getSize("wide_margin").height + + GridLayout { + id: colorSwatchGrid + columns: 5 + width: childrenRect.width + height: childrenRect.height + columnSpacing: UM.Theme.getSize("thick_margin").width + rowSpacing: UM.Theme.getSize("thick_margin").height + + Repeater + { + model: ListModel + { + id: swatchColorsModel + } + + delegate: Rectangle + { + color: swatchColor + implicitWidth: UM.Theme.getSize("medium_button_icon").width + implicitHeight: UM.Theme.getSize("medium_button_icon").height + radius: width / 2 + + UM.RecolorImage + { + anchors.fill: parent + visible: swatchColor == base.color + source: UM.Theme.getIcon("Check", "low") + color: UM.Theme.getColor("checkbox") + } + + MouseArea + { + anchors.fill: parent + onClicked: base.color = swatchColor + } + } + } + } + + RowLayout + { + width: parent.width + spacing: UM.Theme.getSize("default_margin").width + + UM.Label + { + text: catalog.i18nc("@label", "Hex") + } + + TextField + { + id: colorInput + Layout.fillWidth: true + text: "#FFFFFF" + selectByMouse: true + onTextChanged: { + if (!text.startsWith("#")) + { + text = `#${text}`; + } + } + validator: RegExpValidator { regExp: /^#([a-fA-F0-9]{0,6})$/ } + } + + Rectangle + { + color: base.color + Layout.preferredHeight: parent.height + Layout.preferredWidth: height + } + } + } + + buttonSpacing: UM.Theme.getSize("thin_margin").width + + rightButtons: + [ + Cura.TertiaryButton { + text: catalog.i18nc("@action:button", "Cancel") + onClicked: base.close() + }, + Cura.PrimaryButton { + text: catalog.i18nc("@action:button", "OK") + onClicked: base.accept() + } + ] +} \ No newline at end of file diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 7782ace3af..371754e9e0 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -1,14 +1,11 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import QtQuick.Layouts 1.1 +import QtQuick.Controls 2.15 import QtQuick.Dialogs 1.2 import QtGraphicalEffects 1.0 - -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura import "Dialogs" @@ -161,7 +158,6 @@ UM.MainWindow ApplicationMenu { id: applicationMenu - window: base } Item @@ -200,7 +196,7 @@ UM.MainWindow } } - // This is a placehoder for adding a pattern in the header + // This is a placeholder for adding a pattern in the header Image { id: backgroundPattern @@ -255,7 +251,6 @@ UM.MainWindow // Try to install plugin & close. CuraApplication.installPackageViaDragAndDrop(filename); packageInstallDialog.text = catalog.i18nc("@label", "This package will be installed after restarting."); - packageInstallDialog.icon = StandardIcon.Information; packageInstallDialog.open(); } else @@ -311,8 +306,8 @@ UM.MainWindow Toolbar { - // The toolbar is the left bar that is populated by all the tools (which are dynamicly populated by - // plugins) + // The toolbar is the left bar that is populated by all the tools + // (which are dynamically populated by plugins) id: toolbar property int mouseX: base.mouseX @@ -588,18 +583,15 @@ UM.MainWindow } } - MessageDialog + Cura.MessageDialog { id: exitConfirmationDialog title: catalog.i18nc("@title:window %1 is the application name", "Closing %1").arg(CuraApplication.applicationDisplayName) text: catalog.i18nc("@label %1 is the application name", "Are you sure you want to exit %1?").arg(CuraApplication.applicationDisplayName) - icon: StandardIcon.Question - modality: Qt.ApplicationModal - standardButtons: StandardButton.Yes | StandardButton.No - onYes: CuraApplication.callConfirmExitDialogCallback(true) - onNo: CuraApplication.callConfirmExitDialogCallback(false) + standardButtons: Dialog.Yes | Dialog.No + onAccepted: CuraApplication.callConfirmExitDialogCallback(true) onRejected: CuraApplication.callConfirmExitDialogCallback(false) - onVisibilityChanged: + onClosed: { if (!visible) { @@ -749,20 +741,18 @@ UM.MainWindow } } - MessageDialog + Cura.MessageDialog { id: packageInstallDialog - title: catalog.i18nc("@window:title", "Install Package"); + title: catalog.i18nc("@window:title", "Install Package") standardButtons: StandardButton.Ok - modality: Qt.ApplicationModal } - MessageDialog + Cura.MessageDialog { id: infoMultipleFilesWithGcodeDialog title: catalog.i18nc("@title:window", "Open File(s)") - icon: StandardIcon.Information - standardButtons: StandardButton.Ok + standardButtons: Dialog.Ok text: catalog.i18nc("@text:window", "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one.") property var selectedMultipleFiles @@ -821,35 +811,6 @@ UM.MainWindow } } - MessageDialog - { - id: messageDialog - modality: Qt.ApplicationModal - onAccepted: CuraApplication.messageBoxClosed(clickedButton) - onApply: CuraApplication.messageBoxClosed(clickedButton) - onDiscard: CuraApplication.messageBoxClosed(clickedButton) - onHelp: CuraApplication.messageBoxClosed(clickedButton) - onNo: CuraApplication.messageBoxClosed(clickedButton) - onRejected: CuraApplication.messageBoxClosed(clickedButton) - onReset: CuraApplication.messageBoxClosed(clickedButton) - onYes: CuraApplication.messageBoxClosed(clickedButton) - } - - Connections - { - target: CuraApplication - function onShowMessageBox(title, text, informativeText, detailedText, buttons, icon) - { - messageDialog.title = title - messageDialog.text = text - messageDialog.informativeText = informativeText - messageDialog.detailedText = detailedText - messageDialog.standardButtons = buttons - messageDialog.icon = icon - messageDialog.visible = true - } - } - Component { id: discardOrKeepProfileChangesDialogComponent diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 1ee0b31040..e6d15af2d9 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -1,11 +1,11 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Window 2.1 +import QtQuick.Controls 2.9 -import UM 1.1 as UM +import UM 1.5 as UM +import Cura 1.5 as Cura UM.Dialog { @@ -50,7 +50,7 @@ UM.Dialog UM.I18nCatalog{id: catalog; name: "cura"} } - Label + UM.Label { id: version @@ -63,7 +63,7 @@ UM.Dialog } } - Label + UM.Label { id: description width: parent.width @@ -76,7 +76,7 @@ UM.Dialog anchors.topMargin: UM.Theme.getSize("default_margin").height } - Label + UM.Label { id: creditsNotes width: parent.width @@ -89,90 +89,87 @@ UM.Dialog anchors.topMargin: UM.Theme.getSize("default_margin").height } - ScrollView + ListView { - id: credits + id: projectsList anchors.top: creditsNotes.bottom anchors.topMargin: UM.Theme.getSize("default_margin").height - width: parent.width height: base.height - y - (2 * UM.Theme.getSize("default_margin").height + closeButton.height) - ListView + ScrollBar.vertical: UM.ScrollBar { - id: projectsList + id: projectsListScrollBar + } - width: parent.width + delegate: Row + { + spacing: UM.Theme.getSize("narrow_margin").width + UM.Label + { + text: "%2".arg(model.url).arg(model.name) + width: (projectsList.width * 0.25) | 0 + elide: Text.ElideRight + onLinkActivated: Qt.openUrlExternally(link) + } + UM.Label + { + text: model.description + elide: Text.ElideRight + width: ((projectsList.width * 0.6) | 0) - parent.spacing * 2 - projectsListScrollBar.width + } + UM.Label + { + text: model.license + elide: Text.ElideRight + width: (projectsList.width * 0.15) | 0 + } + } + model: ListModel + { + id: projectsModel + } + Component.onCompleted: + { + projectsModel.append({ name: "Cura", description: catalog.i18nc("@label", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); + projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); + projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); + projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); - delegate: Row - { - Label - { - text: "%2".arg(model.url).arg(model.name) - width: (projectsList.width * 0.25) | 0 - elide: Text.ElideRight - onLinkActivated: Qt.openUrlExternally(link) - } - Label - { - text: model.description - elide: Text.ElideRight - width: (projectsList.width * 0.6) | 0 - } - Label - { - text: model.license - elide: Text.ElideRight - width: (projectsList.width * 0.15) | 0 - } - } - model: ListModel - { - id: projectsModel - } - Component.onCompleted: - { - projectsModel.append({ name: "Cura", description: catalog.i18nc("@label", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); - projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); - projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); - projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); - - projectsModel.append({ name: "Python", description: catalog.i18nc("@label", "Programming language"), license: "Python", url: "http://python.org/" }); - projectsModel.append({ name: "Qt5", description: catalog.i18nc("@label", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); - projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); - projectsModel.append({ name: "SIP", description: catalog.i18nc("@label", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); - projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); - projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); - projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); - projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); - projectsModel.append({ name: "Shapely", description: catalog.i18nc("@label", "Support library for handling planar objects"), license: "BSD", url: "https://github.com/Toblerity/Shapely" }); - projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); - projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); - projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); - projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); - projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); - projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); - projectsModel.append({ name: "mypy", description: catalog.i18nc("@Label", "Static type checker for Python"), license: "MIT", url: "http://mypy-lang.org/" }); - projectsModel.append({ name: "certifi", description: catalog.i18nc("@Label", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); - projectsModel.append({ name: "cryptography", description: catalog.i18nc("@Label", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); - projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); - projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); - projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); - projectsModel.append({ name: "keyring", description: catalog.i18nc("@label", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); - projectsModel.append({ name: "pywin32", description: catalog.i18nc("@label", "Python extensions for Microsoft Windows"), license: "PSF", url: "https://github.com/mhammond/pywin32" }); - projectsModel.append({ name: "Noto Sans", description: catalog.i18nc("@label", "Font"), license: "Apache 2.0", url: "https://www.google.com/get/noto/" }); - projectsModel.append({ name: "Font-Awesome-SVG-PNG", description: catalog.i18nc("@label", "SVG icons"), license: "SIL OFL 1.1", url: "https://github.com/encharm/Font-Awesome-SVG-PNG" }); - projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); - } + projectsModel.append({ name: "Python", description: catalog.i18nc("@label", "Programming language"), license: "Python", url: "http://python.org/" }); + projectsModel.append({ name: "Qt5", description: catalog.i18nc("@label", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); + projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); + projectsModel.append({ name: "SIP", description: catalog.i18nc("@label", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); + projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); + projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); + projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); + projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); + projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); + projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); + projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); + projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); + projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); + projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); + projectsModel.append({ name: "Pyclipper", description: catalog.i18nc("@label", "Python bindings for Clipper"), license: "MIT", url: "https://github.com/fonttools/pyclipper" }); + projectsModel.append({ name: "mypy", description: catalog.i18nc("@Label", "Static type checker for Python"), license: "MIT", url: "http://mypy-lang.org/" }); + projectsModel.append({ name: "certifi", description: catalog.i18nc("@Label", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); + projectsModel.append({ name: "cryptography", description: catalog.i18nc("@Label", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); + projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); + projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); + projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); + projectsModel.append({ name: "keyring", description: catalog.i18nc("@label", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); + projectsModel.append({ name: "pywin32", description: catalog.i18nc("@label", "Python extensions for Microsoft Windows"), license: "PSF", url: "https://github.com/mhammond/pywin32" }); + projectsModel.append({ name: "Noto Sans", description: catalog.i18nc("@label", "Font"), license: "Apache 2.0", url: "https://www.google.com/get/noto/" }); + projectsModel.append({ name: "Font-Awesome-SVG-PNG", description: catalog.i18nc("@label", "SVG icons"), license: "SIL OFL 1.1", url: "https://github.com/encharm/Font-Awesome-SVG-PNG" }); + projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); } } - rightButtons: Button + rightButtons: Cura.TertiaryButton { //: Close about dialog button id: closeButton - text: catalog.i18nc("@action:button","Close"); - - onClicked: base.visible = false; + text: catalog.i18nc("@action:button", "Close") + onClicked: reject() } } diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml index ba0d3fb6ca..23e01b5e46 100644 --- a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml +++ b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml @@ -1,14 +1,11 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 +import QtQuick.Controls 2.1 import QtQuick.Layouts 1.1 -import QtQuick.Dialogs 1.1 -import QtQuick.Window 2.1 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -77,56 +74,41 @@ UM.Dialog Column { anchors.fill: parent - anchors.leftMargin: 20 * screenScaleFactor - anchors.rightMargin: 20 * screenScaleFactor - anchors.bottomMargin: 10 * screenScaleFactor - spacing: 10 * screenScaleFactor + spacing: UM.Theme.getSize("default_margin").height - Label + UM.Label { id: questionText + width: parent.width text: catalog.i18nc("@text:window", "This is a Cura project file. Would you like to open it as a project or import the models from it?") - anchors.left: parent.left - anchors.right: parent.right font: UM.Theme.getFont("default") wrapMode: Text.WordWrap } - CheckBox + UM.CheckBox { id: rememberChoiceCheckBox text: catalog.i18nc("@text:window", "Remember my choice") checked: UM.Preferences.getValue("cura/choice_on_open_project") != "always_ask" - style: CheckBoxStyle { - label: Label { - text: control.text - font: UM.Theme.getFont("default") - } - } - } - - // Buttons - Item { - id: buttonBar - anchors.right: parent.right - anchors.left: parent.left - height: childrenRect.height - - Button { - id: openAsProjectButton - text: catalog.i18nc("@action:button", "Open as project") - anchors.right: importModelsButton.left - anchors.rightMargin: UM.Theme.getSize("default_margin").width - isDefault: true - onClicked: loadProjectFile() - } - - Button { - id: importModelsButton - text: catalog.i18nc("@action:button", "Import models") - anchors.right: parent.right - onClicked: loadModelFiles() - } } } + + onAccepted: loadProjectFile() + onRejected: loadModelFiles() + + buttonSpacing: UM.Theme.getSize("thin_margin").width + + rightButtons: + [ + Cura.PrimaryButton + { + text: catalog.i18nc("@action:button", "Open as project") + onClicked: loadProjectFile() + }, + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Import models") + onClicked: loadModelFiles() + } + ] } diff --git a/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml b/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml index 2ddacb6d79..0e2985ae32 100644 --- a/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml +++ b/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml @@ -1,22 +1,30 @@ -// Copyright (c) 2020 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. +import Qt.labs.qmlmodels 1.0 import QtQuick 2.1 -import QtQuick.Controls 1.1 -import QtQuick.Dialogs 1.2 -import QtQuick.Window 2.1 +import QtQuick.Controls 2.15 -import UM 1.2 as UM -import Cura 1.0 as Cura +import UM 1.5 as UM +import Cura 1.6 as Cura UM.Dialog { id: base title: catalog.i18nc("@title:window", "Discard or Keep changes") + onAccepted: CuraApplication.discardOrKeepProfileChangesClosed("discard") + onRejected: CuraApplication.discardOrKeepProfileChangesClosed("keep") + minimumWidth: UM.Theme.getSize("popup_dialog").width minimumHeight: UM.Theme.getSize("popup_dialog").height - property var changesModel: Cura.UserChangesModel{ id: userChangesModel} + width: minimumWidth + height: minimumHeight + backgroundColor: UM.Theme.getColor("background_1") + margin: UM.Theme.getSize("thick_margin").width + + property var changesModel: Cura.UserChangesModel { id: userChangesModel } + onVisibilityChanged: { if(visible) @@ -36,119 +44,60 @@ UM.Dialog } } - Row + UM.Label { - id: infoTextRow - height: childrenRect.height - anchors.margins: UM.Theme.getSize("default_margin").width + id: infoText + text: catalog.i18nc("@text:window, %1 is a profile name", "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'.").arg(Cura.MachineManager.activeQualityDisplayNameMap["main"]) anchors.left: parent.left anchors.right: parent.right - anchors.top: parent.top - spacing: UM.Theme.getSize("default_margin").width + wrapMode: Text.WordWrap UM.I18nCatalog { - id: catalog; + id: catalog name: "cura" } - - Label - { - text: catalog.i18nc("@text:window, %1 is a profile name", "You have customized some profile settings.\nWould you like to Keep these changed settings after switching profiles?\nAlternatively, you can discard the changes to load the defaults from '%1'.").arg(Cura.MachineManager.activeQualityDisplayNameMap["main"]) - anchors.margins: UM.Theme.getSize("default_margin").width - wrapMode: Text.WordWrap - } } Item { - anchors.margins: UM.Theme.getSize("default_margin").width - anchors.top: infoTextRow.bottom - anchors.bottom: optionRow.top + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.top: infoText.bottom + anchors.bottom: parent.bottom anchors.left: parent.left anchors.right: parent.right - TableView + + Cura.TableView { - anchors.fill: parent - height: base.height - 150 id: tableView - Component - { - id: labelDelegate - Label - { - property var extruder_name: userChangesModel.getItem(styleData.row).extruder - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - elide: Text.ElideRight - font: UM.Theme.getFont("system") - text: - { - var result = styleData.value - if (extruder_name != "") - { - result += " (" + extruder_name + ")" - } - return result - } - } - } + anchors.fill: parent - Component + columnHeaders: [ + catalog.i18nc("@title:column", "Profile settings"), + Cura.MachineManager.activeQualityDisplayNameMap["main"], + catalog.i18nc("@title:column", "Current changes") + ] + model: TableModel { - id: defaultDelegate - Label - { - text: styleData.value - font: UM.Theme.getFont("system") - } + TableModelColumn { display: "label" } + TableModelColumn { display: "original_value" } + TableModelColumn { display: "user_value" } + rows: userChangesModel.items } - - TableViewColumn - { - role: "label" - title: catalog.i18nc("@title:column", "Profile settings") - delegate: labelDelegate - width: (tableView.width * 0.4) | 0 - } - TableViewColumn - { - role: "original_value" - title: Cura.MachineManager.activeQualityDisplayNameMap["main"] - width: (tableView.width * 0.3) | 0 - delegate: defaultDelegate - } - TableViewColumn - { - role: "user_value" - title: catalog.i18nc("@title:column", "Current changes") - width: (tableView.width * 0.3) | 0 - } - section.property: "category" - section.delegate: Label - { - text: section - font.bold: true - } - - model: userChangesModel + sectionRole: "category" } } - Item - { - id: optionRow - anchors.bottom: buttonsRow.top - anchors.right: parent.right - anchors.left: parent.left - anchors.margins: UM.Theme.getSize("default_margin").width - height: childrenRect.height + buttonSpacing: UM.Theme.getSize("thin_margin").width - ComboBox + leftButtons: [ + Cura.ComboBox { + implicitHeight: UM.Theme.getSize("combobox_wide").height + implicitWidth: UM.Theme.getSize("combobox_wide").width + id: discardOrKeepProfileChangesDropDownButton - width: 300 + textRole: "text" model: ListModel { @@ -180,41 +129,21 @@ UM.Dialog } } } - } + ] - Item - { - id: buttonsRow - anchors.bottom: parent.bottom - anchors.right: parent.right - anchors.left: parent.left - anchors.margins: UM.Theme.getSize("default_margin").width - height: childrenRect.height - - Button + rightButtons: + [ + Cura.PrimaryButton { id: discardButton - text: catalog.i18nc("@action:button", "Discard changes"); - anchors.right: parent.right - onClicked: - { - CuraApplication.discardOrKeepProfileChangesClosed("discard") - base.hide() - } - isDefault: true - } - - Button + text: catalog.i18nc("@action:button", "Discard changes") + onClicked: base.accept() + }, + Cura.SecondaryButton { id: keepButton - text: catalog.i18nc("@action:button", "Keep changes"); - anchors.right: discardButton.left - anchors.rightMargin: UM.Theme.getSize("default_margin").width - onClicked: - { - CuraApplication.discardOrKeepProfileChangesClosed("keep") - base.hide() - } + text: catalog.i18nc("@action:button", "Keep changes") + onClicked: base.reject() } - } -} \ No newline at end of file + ] +} diff --git a/resources/qml/Dialogs/MessageDialog.qml b/resources/qml/Dialogs/MessageDialog.qml new file mode 100644 index 0000000000..0735064548 --- /dev/null +++ b/resources/qml/Dialogs/MessageDialog.qml @@ -0,0 +1,20 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import UM 1.5 as UM +import Cura 1.5 as Cura + +// Wrapper around the UM.MessageBox with the primary/secondarybuttons +// set to Cura.PrimaryButton and Cura.SecondaryButton respectively +UM.MessageDialog +{ + primaryButton: Cura.PrimaryButton + { + text: model.text + } + + secondaryButton: Cura.TertiaryButton + { + text: model.text + } +} \ No newline at end of file diff --git a/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml b/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml index 3f1900c66b..18891cebee 100644 --- a/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml +++ b/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml @@ -1,15 +1,12 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 +import QtQuick.Controls 2.0 import QtQuick.Layouts 1.1 -import QtQuick.Dialogs 1.1 -import QtQuick.Window 2.1 -import UM 1.3 as UM -import Cura 1.0 as Cura +import UM 1.5 as UM +import Cura 1.5 as Cura UM.Dialog { @@ -17,9 +14,9 @@ UM.Dialog id: base title: catalog.i18nc("@title:window", "Open file(s)") - width: 420 * screenScaleFactor - height: 170 * screenScaleFactor + width: UM.Theme.getSize("small_popup_dialog").width + height: UM.Theme.getSize("small_popup_dialog").height maximumHeight: height maximumWidth: width minimumHeight: height @@ -29,7 +26,6 @@ UM.Dialog property var fileUrls: [] property var addToRecent: true - property int spacerHeight: 10 * screenScaleFactor function loadProjectFile(projectFile) { @@ -44,70 +40,29 @@ UM.Dialog } } - Column + onAccepted: loadModelFiles(base.fileUrls) + + UM.Label { - anchors.fill: parent - anchors.leftMargin: 20 * screenScaleFactor - anchors.rightMargin: 20 * screenScaleFactor - anchors.bottomMargin: 20 * screenScaleFactor + text: catalog.i18nc("@text:window", "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?") anchors.left: parent.left anchors.right: parent.right - spacing: 10 * screenScaleFactor - - Label - { - text: catalog.i18nc("@text:window", "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?") - anchors.left: parent.left - anchors.right: parent.right - font: UM.Theme.getFont("default") - wrapMode: Text.WordWrap - } - - Item // Spacer - { - height: base.spacerHeight - width: height - } - - // Buttons - Item - { - anchors.right: parent.right - anchors.left: parent.left - height: childrenRect.height - - Button - { - id: cancelButton - text: catalog.i18nc("@action:button", "Cancel"); - anchors.right: importAllAsModelsButton.left - onClicked: - { - // cancel - base.hide(); - } - } - - Button - { - id: importAllAsModelsButton - text: catalog.i18nc("@action:button", "Import all as models"); - anchors.right: parent.right - isDefault: true - onClicked: - { - // load models from all selected file - loadModelFiles(base.fileUrls); - - base.hide(); - } - } - } - - UM.I18nCatalog - { - id: catalog - name: "cura" - } } + + buttonSpacing: UM.Theme.getSize("thin_margin").width + + // Buttons + rightButtons: + [ + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Cancel"); + onClicked: base.reject() + }, + Cura.PrimaryButton + { + text: catalog.i18nc("@action:button", "Import all as models"); + onClicked: base.accept() + } + ] } \ No newline at end of file diff --git a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml index 9e0e972361..c5c7248a98 100644 --- a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml +++ b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml @@ -1,13 +1,11 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls 2.0 as Controls2 +import QtQuick.Controls 2.9 import QtQuick.Layouts 1.3 -import QtQuick.Window 2.2 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura UM.Dialog @@ -15,26 +13,14 @@ UM.Dialog id: base title: catalog.i18nc("@title:window", "Save Project") - minimumWidth: 500 * screenScaleFactor - minimumHeight: 400 * screenScaleFactor + minimumWidth: UM.Theme.getSize("popup_dialog").width + minimumHeight: UM.Theme.getSize("popup_dialog").height width: minimumWidth height: minimumHeight - property int spacerHeight: 10 * screenScaleFactor - property bool dontShowAgain: true - signal yes(); - - function accept() { // pressing enter will call this function - close(); - yes(); - } - - onClosing: - { - UM.Preferences.setValue("cura/dialog_on_project_save", !dontShowAgainCheckbox.checked) - } + onClosing: UM.Preferences.setValue("cura/dialog_on_project_save", !dontShowAgainCheckbox.checked) onVisibleChanged: { @@ -59,11 +45,7 @@ UM.Dialog visibilityHandler: UM.SettingPreferenceVisibilityHandler { } } - SystemPalette - { - id: palette - } - Label + UM.Label { id: mainHeading width: parent.width @@ -79,16 +61,28 @@ UM.Dialog { top: mainHeading.bottom topMargin: UM.Theme.getSize("default_margin").height - bottom: controls.top + bottom: parent.bottom bottomMargin: UM.Theme.getSize("default_margin").height } - style: UM.Theme.styles.scrollview + + ScrollBar.vertical: UM.ScrollBar + { + parent: scroll + anchors + { + top: parent.top + right: parent.right + bottom: parent.bottom + } + } + clip: true + ColumnLayout { spacing: UM.Theme.getSize("default_margin").height Column { - Label + UM.Label { id: settingsHeading text: catalog.i18nc("@action:label", "Printer settings") @@ -98,14 +92,14 @@ UM.Dialog { width: parent.width height: childrenRect.height - Label + UM.Label { text: catalog.i18nc("@action:label", "Type") width: Math.floor(scroll.width / 3) | 0 } - Label + UM.Label { - text: (Cura.MachineManager.activeMachine == null) ? "" : Cura.MachineManager.activeMachine.definition.name + text: Cura.MachineManager.activeMachine == null ? "" : Cura.MachineManager.activeMachine.definition.name width: Math.floor(scroll.width / 3) | 0 } } @@ -113,12 +107,12 @@ UM.Dialog { width: parent.width height: childrenRect.height - Label + UM.Label { text: Cura.MachineManager.activeMachineNetworkGroupName != "" ? catalog.i18nc("@action:label", "Printer Group") : catalog.i18nc("@action:label", "Name") width: Math.floor(scroll.width / 3) | 0 } - Label + UM.Label { text: { @@ -157,7 +151,7 @@ UM.Dialog var material_name = extruder.material.name return (material_name !== undefined) ? material_name : "" } - Label + UM.Label { text: { var extruder = Number(modelData.position) @@ -181,7 +175,7 @@ UM.Dialog width: parent.width height: childrenRect.height - Label + UM.Label { text: { @@ -194,7 +188,7 @@ UM.Dialog width: Math.floor(scroll.width / 3) | 0 enabled: modelData.isEnabled } - Label + UM.Label { text: { @@ -214,7 +208,7 @@ UM.Dialog { width: parent.width height: childrenRect.height - Label + UM.Label { text: catalog.i18nc("@action:label", "Profile settings") font.bold: true @@ -222,12 +216,12 @@ UM.Dialog Row { width: parent.width - Label + UM.Label { text: catalog.i18nc("@action:label", "Not in profile") width: Math.floor(scroll.width / 3) | 0 } - Label + UM.Label { text: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", Cura.MachineManager.numUserSettings).arg(Cura.MachineManager.numUserSettings) width: Math.floor(scroll.width / 3) | 0 @@ -238,12 +232,12 @@ UM.Dialog { width: parent.width height: childrenRect.height - Label + UM.Label { text: catalog.i18nc("@action:label", "Name") width: Math.floor(scroll.width / 3) | 0 } - Label + UM.Label { text: Cura.MachineManager.activeQualityOrQualityChangesName width: Math.floor(scroll.width / 3) | 0 @@ -255,12 +249,12 @@ UM.Dialog { width: parent.width height: childrenRect.height - Label + UM.Label { text: catalog.i18nc("@action:label", "Intent") width: Math.floor(scroll.width / 3) | 0 } - Label + UM.Label { text: Cura.MachineManager.activeIntentCategory width: Math.floor(scroll.width / 3) | 0 @@ -269,43 +263,31 @@ UM.Dialog } } } - Item - { - id: controls - width: parent.width - height: childrenRect.height - anchors.bottom: parent.bottom - CheckBox - { - id: dontShowAgainCheckbox - anchors.left: parent.left - text: catalog.i18nc("@action:label", "Don't show project summary on save again") - checked: dontShowAgain - } - Controls2.Button - { - id: cancel_button - anchors - { - right: ok_button.left - rightMargin: UM.Theme.getSize("default_margin").width - } - text: catalog.i18nc("@action:button","Cancel"); - enabled: true - onClicked: close() - } - Controls2.Button - { - id: ok_button - anchors.right: parent.right - text: catalog.i18nc("@action:button","Save"); - enabled: true - onClicked: - { - close() - yes() - } - } - } } + + buttonSpacing: UM.Theme.getSize("thin_margin").width + + leftButtons: + [ + UM.CheckBox + { + id: dontShowAgainCheckbox + text: catalog.i18nc("@action:label", "Don't show project summary on save again") + checked: dontShowAgain + } + ] + + rightButtons: + [ + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Cancel") + onClicked: base.reject() + }, + Cura.PrimaryButton + { + text: catalog.i18nc("@action:button", "Save") + onClicked: base.accept() + } + ] } diff --git a/resources/qml/ExpandableComponent.qml b/resources/qml/ExpandableComponent.qml index 18eb8c0fa6..e5eab3bd93 100644 --- a/resources/qml/ExpandableComponent.qml +++ b/resources/qml/ExpandableComponent.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura // The expandable component has 2 major sub components: @@ -30,8 +30,8 @@ Item property color contentBackgroundColor: UM.Theme.getColor("action_button") property color headerBackgroundColor: UM.Theme.getColor("action_button") - property color headerActiveColor: UM.Theme.getColor("secondary") - property color headerHoverColor: UM.Theme.getColor("action_button_hovered") + property color headerActiveColor: UM.Theme.getColor("expandable_active") + property color headerHoverColor: UM.Theme.getColor("expandable_hover") property alias enabled: mouseArea.enabled @@ -76,7 +76,8 @@ Item // On what side should the header corners be shown? 1 is down, 2 is left, 3 is up and 4 is right. property alias headerCornerSide: background.cornerSide - property int popupOffset: 2 + // Distance between the header and the content. + property int popupOffset: 2 * UM.Theme.getSize("default_lining").height // Prefix used for the dragged position preferences. Preferences not used if empty. Don't translate! property string dragPreferencesNamePrefix: "" @@ -125,7 +126,7 @@ Item color: base.enabled ? (base.expanded ? headerActiveColor : headerBackgroundColor) : UM.Theme.getColor("disabled") anchors.fill: parent - Label + UM.Label { id: disabledLabel visible: !base.enabled @@ -133,10 +134,6 @@ Item leftPadding: background.padding rightPadding: background.padding text: "" - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter - color: UM.Theme.getColor("text") wrapMode: Text.WordWrap } diff --git a/resources/qml/ExpandableComponentHeader.qml b/resources/qml/ExpandableComponentHeader.qml index 7dd1aa358a..7176f0978b 100644 --- a/resources/qml/ExpandableComponentHeader.qml +++ b/resources/qml/ExpandableComponentHeader.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura // Header of the popup @@ -16,20 +16,17 @@ Cura.RoundedRectangle property alias xPosCloseButton: closeButton.left height: UM.Theme.getSize("expandable_component_content_header").height - color: UM.Theme.getColor("secondary") + color: UM.Theme.getColor("background_1") cornerSide: Cura.RoundedRectangle.Direction.Up border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining") radius: UM.Theme.getSize("default_radius").width - Label + UM.Label { id: headerLabel text: "" font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter - color: UM.Theme.getColor("small_button_text") height: parent.height anchors diff --git a/resources/qml/ExpandablePopup.qml b/resources/qml/ExpandablePopup.qml index 3bcfdbb6f8..219608a762 100644 --- a/resources/qml/ExpandablePopup.qml +++ b/resources/qml/ExpandablePopup.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura // The expandable component has 2 major sub components: @@ -30,8 +30,8 @@ Item property color contentBackgroundColor: UM.Theme.getColor("action_button") property color headerBackgroundColor: UM.Theme.getColor("action_button") - property color headerActiveColor: UM.Theme.getColor("secondary") - property color headerHoverColor: UM.Theme.getColor("action_button_hovered") + property color headerActiveColor: UM.Theme.getColor("expandable_active") + property color headerHoverColor: UM.Theme.getColor("expandable_hover") property alias mouseArea: headerMouseArea property alias enabled: headerMouseArea.enabled @@ -75,7 +75,8 @@ Item // Change the contentItem close behaviour property alias contentClosePolicy : content.closePolicy - property int popupOffset: 2 + // Distance between the header and the content. + property int popupOffset: 2 * UM.Theme.getSize("default_lining").height onEnabledChanged: { @@ -119,16 +120,12 @@ Item color: base.enabled ? headerBackgroundColor : UM.Theme.getColor("disabled") anchors.fill: parent - Label + UM.Label { id: disabledLabel visible: !base.enabled leftPadding: background.padding text: "" - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter - color: UM.Theme.getColor("text") height: parent.height } diff --git a/resources/qml/ExtruderButton.qml b/resources/qml/ExtruderButton.qml index b87855e25e..204e9a5469 100644 --- a/resources/qml/ExtruderButton.qml +++ b/resources/qml/ExtruderButton.qml @@ -4,10 +4,10 @@ import QtQuick 2.2 import QtQuick.Controls 2.0 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura -Cura.ToolbarButton +UM.ToolbarButton { id: base diff --git a/resources/qml/ExtruderIcon.qml b/resources/qml/ExtruderIcon.qml index 8d5852823d..b9141a449a 100644 --- a/resources/qml/ExtruderIcon.qml +++ b/resources/qml/ExtruderIcon.qml @@ -2,8 +2,7 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.11 -import QtQuick.Controls 1.1 -import UM 1.2 as UM +import UM 1.5 as UM Item { @@ -43,18 +42,15 @@ Item color: extruderNumberText.color } - Label + UM.Label { id: extruderNumberText anchors.centerIn: parent text: index + 1 font: UM.Theme.getFont("small_emphasis") - color: UM.Theme.getColor("text") width: contentWidth height: contentHeight - renderType: Text.NativeRendering horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter } } } diff --git a/resources/qml/IconWithText.qml b/resources/qml/IconWithText.qml index b9fe873b25..d7b4adfa8c 100644 --- a/resources/qml/IconWithText.qml +++ b/resources/qml/IconWithText.qml @@ -5,12 +5,12 @@ import QtQuick 2.7 import QtQuick.Controls 2.0 import QtQuick.Layouts 1.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura // Reusable component that holds an (re-colorable) icon on the left with some text on the right. // This component is also designed to be used with layouts. It will use the width of the text + icon as preferred width -// It sets the icon size + half of the content as its minium width (in which case it will elide the text) +// It sets the icon size + half of the content as its minimum width (in which case it will elide the text) Item { property alias source: icon.source @@ -21,6 +21,7 @@ Item property alias font: label.font property alias elide: label.elide property real margin: UM.Theme.getSize("narrow_margin").width + property alias wrapMode: label.wrapMode // These properties can be used in combination with layouts. readonly property real contentWidth: icon.width + margin + label.contentWidth @@ -49,15 +50,10 @@ Item } } - Label + UM.Label { id: label - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter - anchors { left: icon.right diff --git a/resources/qml/JobSpecs.qml b/resources/qml/JobSpecs.qml index 4aa5fa8bd5..1a5f40466a 100644 --- a/resources/qml/JobSpecs.qml +++ b/resources/qml/JobSpecs.qml @@ -1,12 +1,11 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 +import QtQuick.Controls 2.1 import QtQuick.Layouts 1.1 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -29,7 +28,8 @@ Item { if (!activity) { - //When there is no mesh in the buildplate; the printJobTextField is set to an empty string so it doesn't set an empty string as a jobName (which is later used for saving the file) + // When there is no mesh in the buildplate; the printJobTextField is set to an empty string so it doesn't + // set an empty string as a jobName (which is later used for saving the file) PrintInformation.baseName = "" } } @@ -41,47 +41,41 @@ Item anchors.left: parent.left height: UM.Theme.getSize("jobspecs_line").height - Button + UM.SimpleButton { id: printJobPencilIcon anchors.left: parent.left anchors.verticalCenter: parent.verticalCenter width: UM.Theme.getSize("save_button_specs_icons").width height: UM.Theme.getSize("save_button_specs_icons").height - + iconSource: UM.Theme.getIcon("Pen") + hoverColor: UM.Theme.getColor("small_button_text_hover") + color: UM.Theme.getColor("small_button_text") onClicked: { printJobTextfield.selectAll() printJobTextfield.focus = true } - - style: ButtonStyle - { - background: Item - { - UM.RecolorImage - { - width: UM.Theme.getSize("save_button_specs_icons").width - height: UM.Theme.getSize("save_button_specs_icons").height - sourceSize.width: width - sourceSize.height: width - color: control.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text") - source: UM.Theme.getIcon("Pen") - } - } - } } - TextField + Cura.TextField { id: printJobTextfield anchors.left: printJobPencilIcon.right anchors.leftMargin: UM.Theme.getSize("narrow_margin").width height: UM.Theme.getSize("jobspecs_line").height - width: Math.max(__contentWidth + UM.Theme.getSize("default_margin").width, 50) + width: Math.max(contentWidth + UM.Theme.getSize("default_margin").width + 2, 50) // add two pixels to width to prevent inner text from shifting maximumLength: 120 - text: (PrintInformation === null) ? "" : PrintInformation.jobName + text: PrintInformation === null ? "" : PrintInformation.jobName horizontalAlignment: TextInput.AlignLeft + onTextChanged: + { + if (!activeFocus) + { + // Text is changed from outside, reset the cursor position. + cursorPosition = 0 + } + } property string textBeforeEdit: "" @@ -100,34 +94,25 @@ Item PrintInformation.setJobName(new_name, true) } printJobTextfield.focus = false + cursorPosition = 0 } validator: RegExpValidator { regExp: /^[^\\\/\*\?\|\[\]]*$/ } - - style: TextFieldStyle - { - textColor: UM.Theme.getColor("text_scene") - font: UM.Theme.getFont("default") - background: Rectangle - { - opacity: 0 - border.width: 0 - } - } + color: UM.Theme.getColor("text_scene") + background: Item {} + selectByMouse: true } } - Label + UM.Label { id: boundingSpec anchors.top: jobNameRow.bottom anchors.left: parent.left height: UM.Theme.getSize("jobspecs_line").height - verticalAlignment: Text.AlignVCenter - font: UM.Theme.getFont("default") color: UM.Theme.getColor("text_scene") text: CuraApplication.getSceneBoundingBoxString } @@ -141,10 +126,7 @@ Item anchors.leftMargin: UM.Theme.getSize("default_margin").width } - Component.onCompleted: - { - base.addAdditionalComponents("jobSpecsButton") - } + Component.onCompleted: base.addAdditionalComponents("jobSpecsButton") Connections { diff --git a/resources/qml/LabelBar.qml b/resources/qml/LabelBar.qml index 007c5f1f54..1a4c891954 100644 --- a/resources/qml/LabelBar.qml +++ b/resources/qml/LabelBar.qml @@ -5,7 +5,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.2 as UM +import UM 1.5 as UM // The labelBar shows a set of labels that are evenly spaced from one another. // The first item is aligned to the left, the last is aligned to the right. @@ -34,13 +34,10 @@ Item Layout.maximumWidth: Math.round(index + 1 === repeater.count || repeater.count <= 1 ? itemSize : base.width / (repeater.count - 1)) height: label.height - Label + UM.Label { id: label text: model[modelKey] - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering height: contentHeight anchors { diff --git a/resources/qml/MachineSettings/GcodeTextArea.qml b/resources/qml/MachineSettings/GcodeTextArea.qml index f8bd02de3b..7791e169c2 100644 --- a/resources/qml/MachineSettings/GcodeTextArea.qml +++ b/resources/qml/MachineSettings/GcodeTextArea.qml @@ -1,11 +1,11 @@ -// Copyright (c) 2020 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -35,44 +35,28 @@ UM.TooltipArea watchedProperties: [ "value", "description" ] } - Label // Title Label + UM.Label { id: titleLabel anchors.top: parent.top anchors.left: parent.left font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - ScrollView + Flickable { - anchors.top: titleLabel.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.bottom: parent.bottom - anchors.left: parent.left - anchors.right: parent.right - - background: Rectangle + anchors { - color: UM.Theme.getColor("main_background") - anchors.fill: parent - - border.color: - { - if (!gcodeTextArea.enabled) - { - return UM.Theme.getColor("setting_control_disabled_border") - } - if (gcodeTextArea.hovered || gcodeTextArea.activeFocus) - { - return UM.Theme.getColor("setting_control_border_highlight") - } - return UM.Theme.getColor("setting_control_border") - } + top: titleLabel.bottom + topMargin: UM.Theme.getSize("default_margin").height + bottom: parent.bottom + left: parent.left + right: parent.right } - TextArea + ScrollBar.vertical: UM.ScrollBar {} + + TextArea.flickable: TextArea { id: gcodeTextArea @@ -92,6 +76,27 @@ UM.TooltipArea propertyProvider.setPropertyValue("value", text) } } + + background: Rectangle + { + anchors.fill: parent + anchors.margins: -border.width //Wrap the border around the parent. + + color: UM.Theme.getColor("detail_background") + border.color: + { + if (!gcodeTextArea.enabled) + { + return UM.Theme.getColor("setting_control_disabled_border") + } + if (gcodeTextArea.hovered || gcodeTextArea.activeFocus) + { + return UM.Theme.getColor("border_main") + } + return UM.Theme.getColor("border_field_light") + } + border.width: UM.Theme.getSize("default_lining").width + } } } } diff --git a/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml b/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml index 32e0e6dcaa..67840d4f26 100644 --- a/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml +++ b/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -77,19 +77,20 @@ UM.TooltipArea anchors.left: fieldLabel.right anchors.leftMargin: UM.Theme.getSize("default_margin").width verticalAlignment: Text.AlignVCenter + selectionColor: UM.Theme.getColor("text_selection") + selectedTextColor: UM.Theme.getColor("setting_control_text") padding: 0 leftPadding: UM.Theme.getSize("narrow_margin").width width: numericTextFieldWithUnit.controlWidth height: numericTextFieldWithUnit.controlHeight // Background is a rounded-cornered box with filled color as state indication (normal, warning, error, etc.) - background: Rectangle + background: UM.UnderlineBackground { anchors.fill: parent anchors.margins: Math.round(UM.Theme.getSize("default_lining").width) - radius: UM.Theme.getSize("setting_control_radius").width - border.color: + liningColor: { if (!textFieldWithUnit.enabled) { @@ -108,9 +109,9 @@ UM.TooltipArea // Validation is OK. if (textFieldWithUnit.hovered || textFieldWithUnit.activeFocus) { - return UM.Theme.getColor("setting_control_border_highlight") + return UM.Theme.getColor("border_main") } - return UM.Theme.getColor("setting_control_border") + return UM.Theme.getColor("border_field_light") } color: @@ -222,7 +223,7 @@ UM.TooltipArea } } - Label + UM.Label { id: unitLabel anchors.right: parent.right @@ -230,10 +231,7 @@ UM.TooltipArea anchors.verticalCenter: parent.verticalCenter text: unitText textFormat: Text.PlainText - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering color: UM.Theme.getColor("setting_unit") - font: UM.Theme.getFont("default") } } } diff --git a/resources/qml/MachineSettings/SimpleCheckBox.qml b/resources/qml/MachineSettings/SimpleCheckBox.qml index 821c68745a..cda666571f 100644 --- a/resources/qml/MachineSettings/SimpleCheckBox.qml +++ b/resources/qml/MachineSettings/SimpleCheckBox.qml @@ -5,7 +5,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -20,7 +20,7 @@ UM.TooltipArea property int controlHeight: UM.Theme.getSize("setting_control").height - height: childrenRect.height + height: controlHeight width: childrenRect.width text: tooltip @@ -57,13 +57,16 @@ UM.TooltipArea renderType: Text.NativeRendering } - Cura.CheckBox + UM.CheckBox { id: checkBox - anchors.left: fieldLabel.right - anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors { + left: fieldLabel.right + leftMargin: UM.Theme.getSize("default_margin").width + verticalCenter: parent.verticalCenter + } checked: String(propertyProvider.properties.value).toLowerCase() != 'false' - height: simpleCheckBox.controlHeight + height: UM.Theme.getSize("checkbox").height text: "" onClicked: { diff --git a/resources/qml/MainWindow/ApplicationMenu.qml b/resources/qml/MainWindow/ApplicationMenu.qml index 62b3a71ee8..bf3781331a 100644 --- a/resources/qml/MainWindow/ApplicationMenu.qml +++ b/resources/qml/MainWindow/ApplicationMenu.qml @@ -1,13 +1,10 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import QtQuick.Layouts 1.1 -import QtQuick.Dialogs 1.2 +import QtQuick.Controls 2.4 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura import "../Menus" @@ -16,38 +13,42 @@ import "../Dialogs" Item { id: menu - width: applicationMenu.width + width: parent.width height: applicationMenu.height - property alias window: applicationMenu.window - UM.ApplicationMenu + MenuBar { id: applicationMenu + width: parent.width + height: UM.Theme.getSize("context_menu").height - FileMenu { title: catalog.i18nc("@title:menu menubar:toplevel", "&File") } - - Menu - { - title: catalog.i18nc("@title:menu menubar:toplevel", "&Edit") - - MenuItem { action: Cura.Actions.undo } - MenuItem { action: Cura.Actions.redo } - MenuSeparator { } - MenuItem { action: Cura.Actions.selectAll } - MenuItem { action: Cura.Actions.arrangeAll } - MenuItem { action: Cura.Actions.multiplySelection } - MenuItem { action: Cura.Actions.deleteSelection } - MenuItem { action: Cura.Actions.deleteAll } - MenuItem { action: Cura.Actions.resetAllTranslation } - MenuItem { action: Cura.Actions.resetAll } - MenuSeparator { } - MenuItem { action: Cura.Actions.groupObjects } - MenuItem { action: Cura.Actions.mergeObjects } - MenuItem { action: Cura.Actions.unGroupObjects } + background: Rectangle { + color: UM.Theme.getColor("background_1") } - ViewMenu { title: catalog.i18nc("@title:menu menubar:toplevel", "&View") } + delegate: MenuBarItem + { + id: menuBarItem + contentItem: UM.Label + { + text: menuBarItem.text.replace(new RegExp("&([A-Za-z])"), function (match, character) + { + return `${character}`; + }) + horizontalAlignment: Text.AlignLeft + verticalAlignment: Text.AlignVCenter + } + + background: Rectangle + { + color: menuBarItem.highlighted ? UM.Theme.getColor("background_2") : "transparent" + } + } + + FileMenu {} + EditMenu {} + ViewMenu {} SettingsMenu { //On MacOS, don't translate the "Settings" word. @@ -59,93 +60,11 @@ Item //- https://doc.qt.io/qt-5/qmenubar.html#qmenubar-as-a-global-menu-bar title: (Qt.platform.os == "osx") ? "&Settings" : catalog.i18nc("@title:menu menubar:toplevel", "&Settings") } - - Menu - { - id: extensionMenu - title: catalog.i18nc("@title:menu menubar:toplevel", "E&xtensions") - - Instantiator - { - id: extensions - model: UM.ExtensionModel { } - - Menu - { - id: sub_menu - title: model.name; - visible: actions != null - enabled: actions != null - Instantiator - { - model: actions - Loader - { - property var extensionsModel: extensions.model - property var modelText: model.text - property var extensionName: name - - sourceComponent: modelText.trim() == "" ? extensionsMenuSeparator : extensionsMenuItem - } - - onObjectAdded: sub_menu.insertItem(index, object.item) - onObjectRemoved: sub_menu.removeItem(object.item) - } - } - - onObjectAdded: extensionMenu.insertItem(index, object) - onObjectRemoved: extensionMenu.removeItem(object) - } - } - - Menu - { - id: preferencesMenu - - //On MacOS, don't translate the "Preferences" word. - //Qt moves the "preferences" entry to a different place, and if it got renamed can't find it again when it - //attempts to delete the item upon closing the application, causing a crash. - //In the new location, these items are translated automatically according to the system's language. - //For more information, see: - //- https://doc.qt.io/qt-5/macos-issues.html#menu-bar - //- https://doc.qt.io/qt-5/qmenubar.html#qmenubar-as-a-global-menu-bar - title: (Qt.platform.os == "osx") ? "&Preferences" : catalog.i18nc("@title:menu menubar:toplevel", "P&references") - - MenuItem { action: Cura.Actions.preferences } - } - - Menu - { - id: helpMenu - title: catalog.i18nc("@title:menu menubar:toplevel", "&Help") - - MenuItem { action: Cura.Actions.showProfileFolder } - MenuItem { action: Cura.Actions.showTroubleshooting} - MenuItem { action: Cura.Actions.documentation } - MenuItem { action: Cura.Actions.reportBug } - MenuSeparator { } - MenuItem { action: Cura.Actions.whatsNew } - MenuItem { action: Cura.Actions.about } - } + ExtensionMenu { id: extensionMenu } + PreferencesMenu {} + HelpMenu {} } - Component - { - id: extensionsMenuItem - - MenuItem - { - text: modelText - onTriggered: extensionsModel.subMenuTriggered(extensionName, modelText) - } - } - - Component - { - id: extensionsMenuSeparator - - MenuSeparator {} - } // ############################################################################################### @@ -156,18 +75,17 @@ Item { id: saveWorkspaceDialog property var args - onYes: UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) + onAccepted: UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) } - MessageDialog + Cura.MessageDialog { id: newProjectDialog - modality: Qt.ApplicationModal + title: catalog.i18nc("@title:window", "New project") text: catalog.i18nc("@info:question", "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings.") - standardButtons: StandardButton.Yes | StandardButton.No - icon: StandardIcon.Question - onYes: + standardButtons: Dialog.Yes | Dialog.No + onAccepted: { CuraApplication.resetWorkspace() Cura.Actions.resetProfile.trigger() @@ -175,11 +93,6 @@ Item } } - UM.ExtensionModel - { - id: curaExtensions - } - // ############################################################################################### // Definition of all the connections // ############################################################################################### @@ -202,7 +115,7 @@ Item target: Cura.Actions.browsePackages function onTriggered() { - curaExtensions.callExtensionMethod("Toolbox", "launch") + extensionMenu.extensionModel.callExtensionMethod("Marketplace", "show") } } @@ -212,8 +125,8 @@ Item target: Cura.Actions.marketplaceMaterials function onTriggered() { - curaExtensions.callExtensionMethod("Toolbox", "launch") - curaExtensions.callExtensionMethod("Toolbox", "setViewCategoryToMaterials") + extensionMenu.extensionModel.callExtensionMethod("Marketplace", "show") + extensionMenu.extensionModel.callExtensionMethod("Marketplace", "setVisibleTabToMaterials") } } -} \ No newline at end of file +} diff --git a/resources/qml/MainWindow/MainWindowHeader.qml b/resources/qml/MainWindow/MainWindowHeader.qml index c670abb67a..3f22879992 100644 --- a/resources/qml/MainWindow/MainWindowHeader.qml +++ b/resources/qml/MainWindow/MainWindowHeader.qml @@ -1,15 +1,14 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2021 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 2.0 as Controls2 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.1 +import QtQuick.Controls 2.4 -import UM 1.4 as UM +import UM 1.5 as UM import Cura 1.0 as Cura import "../Account" +import "../ApplicationSwitcher" Item { @@ -32,6 +31,10 @@ Item sourceSize.width: width sourceSize.height: height } + ButtonGroup + { + buttons: stagesListContainer.children + } Row { @@ -60,17 +63,62 @@ Item checked: UM.Controller.activeStage !== null && model.id == UM.Controller.activeStage.stageId anchors.verticalCenter: parent.verticalCenter - exclusiveGroup: mainWindowHeaderMenuGroup - style: UM.Theme.styles.main_window_header_tab + //style: UM.Theme.styles.main_window_header_tab height: Math.round(0.5 * UM.Theme.getSize("main_window_header").height) - iconSource: model.stage.iconSource - - property color overlayColor: "transparent" - property string overlayIconSource: "" // This id is required to find the stage buttons through Squish property string stageId: model.id + hoverEnabled: true + leftPadding: 2 * UM.Theme.getSize("default_margin").width + rightPadding: 2 * UM.Theme.getSize("default_margin").width - // This is a trick to assure the activeStage is correctly changed. It doesn't work propertly if done in the onClicked (see CURA-6028) + // Set top & bottom padding to whatever space is left from height and the size of the text. + bottomPadding: Math.round((height - buttonLabel.contentHeight) / 2) + topPadding: bottomPadding + + background: Rectangle + { + radius: UM.Theme.getSize("action_button_radius").width + color: + { + if (stageSelectorButton.checked) + { + return UM.Theme.getColor("main_window_header_button_background_active") + } + else + { + if (stageSelectorButton.hovered) + { + return UM.Theme.getColor("main_window_header_button_background_hovered") + } + return UM.Theme.getColor("main_window_header_button_background_inactive") + } + } + } + + contentItem: UM.Label + { + id: buttonLabel + text: stageSelectorButton.text + anchors.centerIn: stageSelectorButton + font: UM.Theme.getFont("medium") + color: + { + if (stageSelectorButton.checked) + { + return UM.Theme.getColor("main_window_header_button_text_active") + } + else + { + if (stageSelectorButton.hovered) + { + return UM.Theme.getColor("main_window_header_button_text_hovered") + } + return UM.Theme.getColor("main_window_header_button_text_inactive") + } + } + } + + // This is a trick to assure the activeStage is correctly changed. It doesn't work properly if done in the onClicked (see CURA-6028) MouseArea { anchors.fill: parent @@ -78,12 +126,10 @@ Item } } } - - ExclusiveGroup { id: mainWindowHeaderMenuGroup } } // Shortcut button to quick access the Toolbox - Controls2.Button + Button { id: marketplaceButton text: catalog.i18nc("@action:button", "Marketplace") @@ -94,26 +140,34 @@ Item background: Rectangle { + id: marketplaceButtonBorder radius: UM.Theme.getSize("action_button_radius").width - color: marketplaceButton.hovered ? UM.Theme.getColor("primary_text") : UM.Theme.getColor("main_window_header_background") + color: UM.Theme.getColor("main_window_header_background") border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("primary_text") + + Rectangle + { + id: marketplaceButtonFill + anchors.fill: parent + radius: parent.radius + color: UM.Theme.getColor("primary_text") + opacity: marketplaceButton.hovered ? 0.2 : 0 + Behavior on opacity { NumberAnimation { duration: 100 } } + } } - contentItem: Label + contentItem: UM.Label { id: label text: marketplaceButton.text - font: UM.Theme.getFont("default") - color: marketplaceButton.hovered ? UM.Theme.getColor("main_window_header_background") : UM.Theme.getColor("primary_text") + color: UM.Theme.getColor("primary_text") width: contentWidth - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering } anchors { - right: accountWidget.left + right: applicationSwitcher.left rightMargin: UM.Theme.getSize("default_margin").width verticalCenter: parent.verticalCenter } @@ -138,6 +192,17 @@ Item } } + ApplicationSwitcher + { + id: applicationSwitcher + anchors + { + verticalCenter: parent.verticalCenter + right: accountWidget.left + rightMargin: UM.Theme.getSize("default_margin").width + } + } + AccountWidget { id: accountWidget diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml index 92b88d3c09..49d6710606 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.0 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Button @@ -99,7 +99,7 @@ Button height: width } - Label + UM.Label { id: unknownMaterialMessage text: @@ -147,10 +147,6 @@ Button anchors.top: unknownMaterial.top wrapMode: Text.WordWrap - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - verticalAlignment: Text.AlignVCenter - linkColor: UM.Theme.getColor("text_link") onLinkActivated: { @@ -202,7 +198,7 @@ Button Cura.IconWithText { id: buildplateLabel - source: UM.Theme.getIcon("buildplate") + source: UM.Theme.getIcon("Buildplate") text: { if (configuration === null) diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml index 75ae18a593..1867ed6a4a 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.4 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -46,7 +46,7 @@ Item anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter anchors.leftMargin: UM.Theme.getSize("default_margin").width - // There are two cases that we want to differenciate, one is when Cura is loading the configurations and the + // There are two cases that we want to differentiate, one is when Cura is loading the configurations and the // other when the connection was lost text: Cura.MachineManager.printerConnected ? catalog.i18nc("@label", "Loading available configurations from the printer...") : @@ -67,18 +67,14 @@ Item contentHeight: configurationList.height clip: true - ScrollBar.vertical.policy: (configurationList.height > maximumHeight) ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff //The AsNeeded policy also hides it when the cursor is away, and we don't want that. - ScrollBar.vertical.background: Rectangle - { - implicitWidth: UM.Theme.getSize("scrollbar").width - radius: width / 2 - color: UM.Theme.getColor("scrollbar_background") - } - ScrollBar.vertical.contentItem: Rectangle - { - implicitWidth: UM.Theme.getSize("scrollbar").width - radius: width / 2 - color: UM.Theme.getColor(parent.pressed ? "scrollbar_handle_down" : parent.hovered ? "scrollbar_handle_hover" : "scrollbar_handle") + ScrollBar.vertical: UM.ScrollBar { + parent: container + anchors + { + top: parent.top + right: parent.right + bottom: parent.bottom + } } ButtonGroup diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml index 43ccde461e..f0b6e14683 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml @@ -3,10 +3,9 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import QtQuick.Controls.Styles 1.4 import QtQuick.Layouts 1.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -19,7 +18,7 @@ Cura.ExpandablePopup id: base property var extrudersModel: CuraApplication.getExtrudersModel() - + property var activeMachine: Cura.MachineManager.activeMachine UM.I18nCatalog { id: catalog @@ -33,23 +32,33 @@ Cura.ExpandablePopup } contentPadding: UM.Theme.getSize("default_lining").width - enabled: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.hasMaterials || Cura.MachineManager.activeMachine.hasVariants || Cura.MachineManager.activeMachine.hasVariantBuildplates : false; //Only let it drop down if there is any configuration that you could change. + enabled: activeMachine ? activeMachine.hasMaterials || activeMachine.hasVariants || activeMachine.hasVariantBuildplates : false; //Only let it drop down if there is any configuration that you could change. headerItem: Item { // Horizontal list that shows the extruders and their materials RowLayout { - anchors.fill: parent - visible: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.hasMaterials : false + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.left: parent.left + width: parent.width - UM.Theme.getSize("standard_arrow").width + visible: activeMachine ? activeMachine.hasMaterials : false Repeater { model: extrudersModel delegate: Item { + id: extruderItem + Layout.preferredWidth: Math.round(parent.width / extrudersModel.count) + Layout.maximumWidth: Math.round(parent.width / extrudersModel.count) Layout.fillHeight: true + property var extruderStack: activeMachine ? activeMachine.extruders[model.index]: null + property bool valueWarning: !Cura.ExtruderManager.getExtruderHasQualityForMaterial(extruderStack) + property bool valueError: activeMachine ? Cura.ContainerManager.getContainerMetaDataEntry(extruderStack.material.id, "compatible", "") != "True" : false + // Extruder icon. Shows extruder index and has the same color as the active material. Cura.ExtruderIcon { @@ -59,10 +68,118 @@ Cura.ExpandablePopup anchors.verticalCenter: parent.verticalCenter } - ColumnLayout + MouseArea // Connection status tooltip hover area + { + id: tooltipHoverArea + anchors.fill: parent + hoverEnabled: tooltip.text != "" + acceptedButtons: Qt.NoButton // react to hover only, don't steal clicks + + onEntered: + { + base.mouseArea.entered() // we want both this and the outer area to be entered + tooltip.show() + } + onExited: { tooltip.hide() } + } + + UM.ToolTip + { + id: tooltip + x: 0 + y: parent.height + UM.Theme.getSize("default_margin").height + width: UM.Theme.getSize("tooltip").width + targetPoint: Qt.point(Math.round(extruderIcon.width / 2), 0) + text: + { + if (!model.enabled) + { + return "" + } + if (extruderItem.valueError) + { + return catalog.i18nc("@tooltip", "The configuration of this extruder is not allowed, and prohibits slicing.") + } + if (extruderItem.valueWarning) + { + return catalog.i18nc("@tooltip", "There are no profiles matching the configuration of this extruder.") + } + return "" + } + } + + // Warning icon that indicates if no qualities are available for the variant/material combination for this extruder + UM.RecolorImage + { + id: badge + anchors + { + top: parent.top + topMargin: - Math.round(height * 1 / 6) + left: parent.left + leftMargin: extruderIcon.width - Math.round(width * 5 / 6) + } + + width: UM.Theme.getSize("icon_indicator").width + height: UM.Theme.getSize("icon_indicator").height + + visible: model.enabled && (extruderItem.valueError || extruderItem.valueWarning) + + source: + { + if (extruderItem.valueError) + { + return UM.Theme.getIcon("ErrorBadge", "low") + } + if (extruderItem.valueWarning) + { + return UM.Theme.getIcon("WarningBadge", "low") + } + return "" + } + + color: + { + if (extruderItem.valueError) + { + return UM.Theme.getColor("error") + } + if (extruderItem.valueWarning) + { + return UM.Theme.getColor("warning") + } + return "transparent" + } + + // Make a themable circle in the background so we can change it in other themes + Rectangle + { + id: iconBackground + anchors.centerIn: parent + width: parent.width - 1.5 //1.5 pixels smaller, (at least sqrt(2), regardless of screen pixel scale) so that the circle doesn't show up behind the icon due to anti-aliasing. + height: parent.height - 1.5 + radius: width / 2 + z: parent.z - 1 + color: + { + if (extruderItem.valueError) + { + return UM.Theme.getColor("error_badge_background") + } + if (extruderItem.valueWarning) + { + return UM.Theme.getColor("warning_badge_background") + } + return "transparent" + } + } + } + + Column { opacity: model.enabled ? 1 : UM.Theme.getColor("extruder_disabled").a spacing: 0 + visible: width > 0 anchors { left: extruderIcon.right @@ -72,59 +189,50 @@ Cura.ExpandablePopup rightMargin: UM.Theme.getSize("default_margin").width } // Label for the brand of the material - Label + UM.Label { - id: materialBrandColorTypeLabel + id: materialBrandNameLabel - text: model.material_brand == model.color_name ? model.color_name + " " + model.material_type : model.material_brand + " " + model.color_name + " " + model.material_type + text: model.material_brand + " " + model.material_name elide: Text.ElideRight - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering + wrapMode: Text.NoWrap width: parent.width - visible: !truncated } - Label + UM.Label { - id: materialColorTypeLabel + id: materialNameLabel - text: model.color_name + " " + model.material_type + text: model.material_name elide: Text.ElideRight - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering width: parent.width - - visible: !materialBrandColorTypeLabel.visible && !truncated + wrapMode: Text.NoWrap + visible: !materialBrandNameLabel.visible && !truncated } - Label + UM.Label { id: materialTypeLabel text: model.material_type elide: Text.ElideRight - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering width: parent.width - visible: !materialBrandColorTypeLabel.visible && !materialColorTypeLabel.visible + wrapMode: Text.NoWrap + visible: !materialBrandNameLabel.visible && !materialNameLabel.visible } // Label that shows the name of the variant - Label + UM.Label { id: variantLabel - visible: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.hasVariants : false + visible: activeMachine ? activeMachine.hasVariants : false text: model.variant elide: Text.ElideRight + wrapMode: Text.NoWrap font: UM.Theme.getFont("default_bold") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - width: parent.width + Layout.preferredWidth: parent.width } } } @@ -132,15 +240,13 @@ Cura.ExpandablePopup } // Placeholder text if there is a configuration to select but no materials (so we can't show the materials per extruder). - Label + UM.Label { text: catalog.i18nc("@label", "Select configuration") elide: Text.ElideRight font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - visible: Cura.MachineManager.activeMachine ? !Cura.MachineManager.activeMachine.hasMaterials && (Cura.MachineManager.activeMachine.hasVariants || Cura.MachineManager.activeMachine.hasVariantBuildplates) : false + visible: activeMachine ? !activeMachine.hasMaterials && (activeMachine.hasVariants || activeMachine.hasVariantBuildplates) : false anchors { @@ -165,7 +271,7 @@ Cura.ExpandablePopup onVisibleChanged: { - is_connected = Cura.MachineManager.activeMachine.hasRemoteConnection && Cura.MachineManager.printerConnected && Cura.MachineManager.printerOutputDevices[0].uniqueConfigurations.length > 0 //Re-evaluate. + is_connected = activeMachine.hasRemoteConnection && Cura.MachineManager.printerConnected && Cura.MachineManager.printerOutputDevices[0].uniqueConfigurations.length > 0 //Re-evaluate. // If the printer is not connected or does not have configurations, we switch always to the custom mode. If is connected instead, the auto mode // or the previous state is selected diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index 8376693ad1..4b2b84d39e 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml @@ -1,12 +1,14 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.6 import QtQuick.Controls 2.0 -import QtQuick.Controls 1.1 as OldControls import Cura 1.0 as Cura -import UM 1.3 as UM +import UM 1.5 as UM + +// Simple button for displaying text and changes appearance for various states: enabled, valueError, valueWarning +// - and hovered. Mainly used in CustomConfiguration.qml Item { @@ -19,14 +21,13 @@ Item width: parent.width height: childrenRect.height - Label + UM.Label { id: header text: catalog.i18nc("@header", "Custom") font: UM.Theme.getFont("medium") color: UM.Theme.getColor("small_button_text") height: contentHeight - renderType: Text.NativeRendering anchors { @@ -36,7 +37,7 @@ Item } } - //Printer type selector. + // Printer type selector. Item { id: printerTypeSelectorRow @@ -56,28 +57,27 @@ Item topMargin: visible ? UM.Theme.getSize("default_margin").height : 0 } - Label + UM.Label { text: catalog.i18nc("@label", "Printer") width: Math.round(parent.width * 0.3) - UM.Theme.getSize("default_margin").width height: contentHeight - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") anchors.verticalCenter: printerTypeSelector.verticalCenter anchors.left: parent.left } - OldControls.ToolButton + Button { id: printerTypeSelector text: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.definition.name: "" - tooltip: text + height: UM.Theme.getSize("print_setup_big_item").height width: Math.round(parent.width * 0.7) + UM.Theme.getSize("default_margin").width anchors.right: parent.right - style: UM.Theme.styles.print_setup_header_button + onClicked: menu.open() + //style: UM.Theme.styles.print_setup_header_button - menu: Cura.PrinterTypeMenu { } + Cura.PrinterTypeMenu { id: menu} } } @@ -94,6 +94,7 @@ Item model: extrudersModel delegate: UM.TabRowButton { + checked: model.index == 0 contentItem: Item { Cura.ExtruderIcon @@ -208,23 +209,18 @@ Item height: visible ? UM.Theme.getSize("setting_control").height : 0 visible: extrudersModel.count > 1 // If there is only one extruder, there is no point to enable/disable that. - Label + UM.Label { text: catalog.i18nc("@label", "Enabled") - verticalAlignment: Text.AlignVCenter - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") height: parent.height width: selectors.textWidth - renderType: Text.NativeRendering } - OldControls.CheckBox + UM.CheckBox { id: enabledCheckbox enabled: !checked || Cura.MachineManager.numberExtrudersEnabled > 1 //Disable if it's the last enabled extruder. height: parent.height - style: UM.Theme.styles.checkbox Binding { @@ -262,18 +258,14 @@ Item height: visible ? UM.Theme.getSize("print_setup_big_item").height : 0 visible: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.hasMaterials : false - Label + UM.Label { text: catalog.i18nc("@label", "Material") - verticalAlignment: Text.AlignVCenter - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") height: parent.height width: selectors.textWidth - renderType: Text.NativeRendering } - OldControls.ToolButton + Cura.PrintSetupHeaderButton { id: materialSelection @@ -286,20 +278,20 @@ Item width: selectors.controlWidth height: parent.height + anchors.verticalCenter: parent.verticalCenter + + focusPolicy: Qt.ClickFocus - style: UM.Theme.styles.print_setup_header_button - activeFocusOnPress: true Cura.MaterialMenu { id: materialsMenu + width: materialSelection.width extruderIndex: Cura.ExtruderManager.activeExtruderIndex updateModels: materialSelection.visible } - onClicked: - { - materialsMenu.popup(); - } + onClicked: materialsMenu.popup(0, height - UM.Theme.getSize("default_lining").height) } + Item { width: instructionButton.width + 2 * UM.Theme.getSize("narrow_margin").width @@ -328,37 +320,31 @@ Item height: visible ? UM.Theme.getSize("print_setup_big_item").height : 0 visible: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.hasVariants : false - Label + UM.Label { text: Cura.MachineManager.activeDefinitionVariantsName - verticalAlignment: Text.AlignVCenter - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") height: parent.height width: selectors.textWidth - renderType: Text.NativeRendering } - OldControls.ToolButton + Cura.PrintSetupHeaderButton { id: variantSelection text: Cura.MachineManager.activeStack != null ? Cura.MachineManager.activeStack.variant.name : "" tooltip: text height: parent.height width: selectors.controlWidth - style: UM.Theme.styles.print_setup_header_button - activeFocusOnPress: true + anchors.verticalCenter: parent.verticalCenter + focusPolicy: Qt.ClickFocus enabled: enabledCheckbox.checked Cura.NozzleMenu { id: nozzlesMenu extruderIndex: Cura.ExtruderManager.activeExtruderIndex + width: variantSelection.width } - onClicked: - { - nozzlesMenu.popup(); - } + onClicked: nozzlesMenu.popup(0, height - UM.Theme.getSize("default_lining").height) } } @@ -372,11 +358,10 @@ Item property bool buildplateCompatibilityWarning: Cura.MachineManager.variantBuildplateUsable // This is a space holder aligning the warning messages. - Label + UM.Label { text: "" width: selectors.textWidth - renderType: Text.NativeRendering } Item @@ -397,19 +382,15 @@ Item visible: !Cura.MachineManager.isCurrentSetupSupported || warnings.buildplateCompatibilityError || warnings.buildplateCompatibilityWarning } - Label + UM.Label { id: materialCompatibilityLabel anchors.left: warningImage.right anchors.leftMargin: UM.Theme.getSize("default_margin").width - verticalAlignment: Text.AlignVCenter width: selectors.controlWidth - warningImage.width - UM.Theme.getSize("default_margin").width text: catalog.i18nc("@label", "Use glue for better adhesion with this material combination.") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") visible: CuraSDKVersion == "dev" ? false : warnings.buildplateCompatibilityError || warnings.buildplateCompatibilityWarning wrapMode: Text.WordWrap - renderType: Text.NativeRendering } } } diff --git a/resources/qml/Menus/ConfigurationMenu/PrintCoreConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/PrintCoreConfiguration.qml index f93727ea96..06ef0901e7 100644 --- a/resources/qml/Menus/ConfigurationMenu/PrintCoreConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/PrintCoreConfiguration.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.0 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -33,30 +33,24 @@ Item margins: UM.Theme.getSize("default_margin").width } - Label + UM.Label { text: (printCoreConfiguration !== null && printCoreConfiguration.material.brand) ? printCoreConfiguration.material.brand : " " //Use space so that the height is still correct. - renderType: Text.NativeRendering elide: Text.ElideRight - font: UM.Theme.getFont("default") color: UM.Theme.getColor("text_inactive") width: parent.width } - Label + UM.Label { text: (printCoreConfiguration !== null && printCoreConfiguration.material.brand) ? printCoreConfiguration.material.name : " " //Use space so that the height is still correct. - renderType: Text.NativeRendering elide: Text.ElideRight font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") width: parent.width } - Label + UM.Label { text: (printCoreConfiguration !== null && printCoreConfiguration.hotendID) ? printCoreConfiguration.hotendID : " " //Use space so that the height is still correct. - renderType: Text.NativeRendering elide: Text.ElideRight - font: UM.Theme.getFont("default") color: UM.Theme.getColor("text_inactive") width: parent.width } diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml index 1709d70ab5..1bba79e2c1 100644 --- a/resources/qml/Menus/ContextMenu.qml +++ b/resources/qml/Menus/ContextMenu.qml @@ -1,15 +1,14 @@ -// Copyright (c) 2016 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Dialogs 1.2 +import QtQuick.Controls 2.1 import QtQuick.Window 2.1 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura -Menu +Cura.Menu { id: base @@ -18,17 +17,25 @@ Menu property var multiBuildPlateModel: CuraApplication.getMultiBuildPlateModel() // Selection-related actions. - MenuItem { action: Cura.Actions.centerSelection; } - MenuItem { action: Cura.Actions.deleteSelection; } - MenuItem { action: Cura.Actions.multiplySelection; } + Cura.MenuItem { action: Cura.Actions.centerSelection; } + Cura.MenuItem { action: Cura.Actions.deleteSelection; } + Cura.MenuItem { action: Cura.Actions.multiplySelection; } // Extruder selection - only visible if there is more than 1 extruder - MenuSeparator { visible: base.shouldShowExtruders } - MenuItem { id: extruderHeader; text: catalog.i18ncp("@label", "Print Selected Model With:", "Print Selected Models With:", UM.Selection.selectionCount); enabled: false; visible: base.shouldShowExtruders } + Cura.MenuSeparator { visible: base.shouldShowExtruders } + Cura.MenuItem + { + id: extruderHeader + text: catalog.i18ncp("@label", "Print Selected Model With:", "Print Selected Models With:", UM.Selection.selectionCount) + enabled: false + visible: base.shouldShowExtruders + } + Instantiator { model: CuraApplication.getExtrudersModel() - MenuItem { + Cura.MenuItem + { text: "%1: %2 - %3".arg(model.name).arg(model.material).arg(model.variant) visible: base.shouldShowExtruders enabled: UM.Selection.hasSelection && model.enabled @@ -37,60 +44,30 @@ Menu onTriggered: CuraActions.setExtruderForSelection(model.id) shortcut: "Ctrl+" + (model.index + 1) } - onObjectAdded: base.insertItem(index, object) + // Add it to the fifth position (and above) as we want it to be added after the extruder header. + onObjectAdded: base.insertItem(index + 5, object) onObjectRemoved: base.removeItem(object) } - MenuSeparator { - visible: UM.Preferences.getValue("cura/use_multi_build_plate") - } - - Instantiator - { - model: base.multiBuildPlateModel - MenuItem { - enabled: UM.Selection.hasSelection - text: base.multiBuildPlateModel.getItem(index).name; - onTriggered: CuraActions.setBuildPlateForSelection(base.multiBuildPlateModel.getItem(index).buildPlateNumber); - checkable: true - checked: base.multiBuildPlateModel.selectionBuildPlates.indexOf(base.multiBuildPlateModel.getItem(index).buildPlateNumber) != -1; - visible: UM.Preferences.getValue("cura/use_multi_build_plate") - } - onObjectAdded: base.insertItem(index, object); - onObjectRemoved: base.removeItem(object); - } - - MenuItem { - enabled: UM.Selection.hasSelection - text: "New build plate"; - onTriggered: { - CuraActions.setBuildPlateForSelection(base.multiBuildPlateModel.maxBuildPlate + 1); - checked = false; - } - checkable: true - checked: false - visible: UM.Preferences.getValue("cura/use_multi_build_plate") - } - // Global actions - MenuSeparator {} - MenuItem { action: Cura.Actions.selectAll; } - MenuItem { action: Cura.Actions.arrangeAll; } - MenuItem { action: Cura.Actions.deleteAll; } - MenuItem { action: Cura.Actions.reloadAll; } - MenuItem { action: Cura.Actions.resetAllTranslation; } - MenuItem { action: Cura.Actions.resetAll; } + Cura.MenuSeparator {} + Cura.MenuItem { action: Cura.Actions.selectAll } + Cura.MenuItem { action: Cura.Actions.arrangeAll } + Cura.MenuItem { action: Cura.Actions.deleteAll } + Cura.MenuItem { action: Cura.Actions.reloadAll } + Cura.MenuItem { action: Cura.Actions.resetAllTranslation } + Cura.MenuItem { action: Cura.Actions.resetAll } // Group actions - MenuSeparator {} - MenuItem { action: Cura.Actions.groupObjects; } - MenuItem { action: Cura.Actions.mergeObjects; } - MenuItem { action: Cura.Actions.unGroupObjects; } + Cura.MenuSeparator {} + Cura.MenuItem { action: Cura.Actions.groupObjects } + Cura.MenuItem { action: Cura.Actions.mergeObjects } + Cura.MenuItem { action: Cura.Actions.unGroupObjects } Connections { target: UM.Controller - function onContextMenuRequested() { base.popup(); } + function onContextMenuRequested() { base.popup() } } Connections @@ -108,69 +85,56 @@ Menu watchedProperties: [ "value" ] } - Dialog + UM.Dialog { id: multiplyDialog - modality: Qt.ApplicationModal title: catalog.i18ncp("@title:window", "Multiply Selected Model", "Multiply Selected Models", UM.Selection.selectionCount) + width: UM.Theme.getSize("small_popup_dialog").width + height: UM.Theme.getSize("small_popup_dialog").height + minimumWidth: UM.Theme.getSize("small_popup_dialog").width + minimumHeight: UM.Theme.getSize("small_popup_dialog").height onAccepted: CuraActions.multiplySelection(copiesField.value) - signal reset() - onReset: - { - copiesField.value = 1; - copiesField.focus = true; - } + buttonSpacing: UM.Theme.getSize("thin_margin").width - onVisibleChanged: - { - copiesField.forceActiveFocus(); - } - - standardButtons: StandardButton.Ok | StandardButton.Cancel + rightButtons: + [ + Cura.SecondaryButton + { + text: "Cancel" + onClicked: multiplyDialog.reject() + }, + Cura.PrimaryButton + { + text: "Ok" + onClicked: multiplyDialog.accept() + } + ] Row { spacing: UM.Theme.getSize("default_margin").width - Label + UM.Label { text: catalog.i18nc("@label", "Number of Copies") anchors.verticalCenter: copiesField.verticalCenter + width: contentWidth + wrapMode: Text.NoWrap } - SpinBox + Cura.SpinBox { id: copiesField + editable: true focus: true - minimumValue: 1 - maximumValue: 99 + from: 1 + to: 99 + width: 2 * UM.Theme.getSize("button").width } } } - - // Find the index of an item in the list of child items of this menu. - // - // This is primarily intended as a helper function so we do not have to - // hard-code the position of the extruder selection actions. - // - // \param item The item to find the index of. - // - // \return The index of the item or -1 if it was not found. - function findItemIndex(item) - { - for(var i in base.items) - { - if(base.items[i] == item) - { - return i; - } - } - return -1; - } - - UM.I18nCatalog { id: catalog; name: "cura" } } diff --git a/resources/qml/Menus/EditMenu.qml b/resources/qml/Menus/EditMenu.qml new file mode 100644 index 0000000000..522c6b27d1 --- /dev/null +++ b/resources/qml/Menus/EditMenu.qml @@ -0,0 +1,28 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.2 +import QtQuick.Controls 2.1 + +import UM 1.6 as UM +import Cura 1.0 as Cura + +Cura.Menu +{ + title: catalog.i18nc("@title:menu menubar:toplevel", "&Edit") + + Cura.MenuItem { action: Cura.Actions.undo } + Cura.MenuItem { action: Cura.Actions.redo } + Cura.MenuSeparator { } + Cura.MenuItem { action: Cura.Actions.selectAll } + Cura.MenuItem { action: Cura.Actions.arrangeAll } + Cura.MenuItem { action: Cura.Actions.multiplySelection } + Cura.MenuItem { action: Cura.Actions.deleteSelection } + Cura.MenuItem { action: Cura.Actions.deleteAll } + Cura.MenuItem { action: Cura.Actions.resetAllTranslation } + Cura.MenuItem { action: Cura.Actions.resetAll } + Cura.MenuSeparator { } + Cura.MenuItem { action: Cura.Actions.groupObjects } + Cura.MenuItem { action: Cura.Actions.mergeObjects } + Cura.MenuItem { action: Cura.Actions.unGroupObjects } +} \ No newline at end of file diff --git a/resources/qml/Menus/ExtensionMenu.qml b/resources/qml/Menus/ExtensionMenu.qml new file mode 100644 index 0000000000..3c2d1a79c7 --- /dev/null +++ b/resources/qml/Menus/ExtensionMenu.qml @@ -0,0 +1,64 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.7 +import QtQuick.Controls 2.4 + +import UM 1.5 as UM +import Cura 1.0 as Cura + +Cura.Menu +{ + id: extensionMenu + title: catalog.i18nc("@title:menu menubar:toplevel", "E&xtensions") + property var extensionModel: UM.ExtensionModel { } + Component + { + id: extensionsMenuItem + + Cura.MenuItem + { + text: modelText + onTriggered: extensionsModel.subMenuTriggered(extensionName, modelText) + } + } + + Component + { + id: extensionsMenuSeparator + + Cura.MenuSeparator {} + } + + Instantiator + { + id: extensions + model: extensionModel + + Cura.Menu + { + id: sub_menu + title: model.name + shouldBeVisible: actions !== undefined + enabled: actions != null + Instantiator + { + model: actions + Loader + { + property var extensionsModel: extensions.model + property var modelText: model.text + property var extensionName: name + + sourceComponent: modelText.trim() == "" ? extensionsMenuSeparator : extensionsMenuItem + } + + onObjectAdded: sub_menu.insertItem(index, object.item) + onObjectRemoved: sub_menu.removeItem(object.item) + } + } + + onObjectAdded: extensionMenu.insertMenu(index, object) + onObjectRemoved: extensionMenu.removeMenu(object) + } +} \ No newline at end of file diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 681e0b06ce..338ada60fc 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -1,46 +1,49 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.1 import UM 1.6 as UM import Cura 1.0 as Cura -Menu +Cura.Menu { id: base title: catalog.i18nc("@title:menu menubar:toplevel", "&File") property var fileProviderModel: CuraApplication.getFileProviderModel() - MenuItem + + Cura.MenuItem { id: newProjectMenu action: Cura.Actions.newProject } - MenuItem + Cura.MenuItem { id: openMenu action: Cura.Actions.open - visible: (base.fileProviderModel.count == 1) + visible: base.fileProviderModel.count == 1 + enabled: base.fileProviderModel.count == 1 } OpenFilesMenu { id: openFilesMenu - visible: (base.fileProviderModel.count > 1) + + shouldBeVisible: base.fileProviderModel.count > 1 } RecentFilesMenu { } - MenuItem + Cura.MenuItem { id: saveWorkspaceMenu - shortcut: visible ? StandardKey.Save : "" + shortcut: StandardKey.Save text: catalog.i18nc("@title:menu menubar:file", "&Save Project...") visible: saveProjectMenu.model.count == 1 - enabled: UM.WorkspaceFileHandler.enabled + enabled: UM.WorkspaceFileHandler.enabled && saveProjectMenu.model.count == 1 onTriggered: { var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml" }; @@ -62,13 +65,13 @@ Menu { id: saveProjectMenu model: projectOutputDevicesModel - visible: model.count > 1 + shouldBeVisible: model.count > 1 enabled: UM.WorkspaceFileHandler.enabled } - MenuSeparator { } + Cura.MenuSeparator { } - MenuItem + Cura.MenuItem { id: saveAsMenu text: catalog.i18nc("@title:menu menubar:file", "&Export...") @@ -79,24 +82,24 @@ Menu } } - MenuItem + Cura.MenuItem { id: exportSelectionMenu text: catalog.i18nc("@action:inmenu menubar:file", "Export Selection...") enabled: UM.Selection.hasSelection - iconName: "document-save-as" + icon.name: "document-save-as" onTriggered: UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) } - MenuSeparator { } + Cura.MenuSeparator { } - MenuItem + Cura.MenuItem { id: reloadAllMenu action: Cura.Actions.reloadAll } - MenuSeparator { } + Cura.MenuSeparator { } - MenuItem { action: Cura.Actions.quit } + Cura.MenuItem { action: Cura.Actions.quit } } diff --git a/resources/qml/Menus/HelpMenu.qml b/resources/qml/Menus/HelpMenu.qml new file mode 100644 index 0000000000..4be25fdffe --- /dev/null +++ b/resources/qml/Menus/HelpMenu.qml @@ -0,0 +1,23 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.7 +import QtQuick.Controls 2.4 + +import UM 1.5 as UM +import Cura 1.0 as Cura + + +Cura.Menu +{ + id: helpMenu + title: catalog.i18nc("@title:menu menubar:toplevel", "&Help") + + Cura.MenuItem { action: Cura.Actions.showProfileFolder } + Cura.MenuItem { action: Cura.Actions.showTroubleshooting} + Cura.MenuItem { action: Cura.Actions.documentation } + Cura.MenuItem { action: Cura.Actions.reportBug } + Cura.MenuSeparator { } + Cura.MenuItem { action: Cura.Actions.whatsNew } + Cura.MenuItem { action: Cura.Actions.about } +} \ No newline at end of file diff --git a/resources/qml/Menus/LocalPrinterMenu.qml b/resources/qml/Menus/LocalPrinterMenu.qml deleted file mode 100644 index bd6c57d744..0000000000 --- a/resources/qml/Menus/LocalPrinterMenu.qml +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.2 -import QtQuick.Controls 1.4 - -import UM 1.2 as UM -import Cura 1.0 as Cura - -Instantiator -{ - model: Cura.GlobalStacksModel {} - - MenuItem - { - text: model.name - checkable: true - checked: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.id == model.id: false - exclusiveGroup: group - visible: !model.hasRemoteConnection - onTriggered: Cura.MachineManager.setActiveMachine(model.id) - } - onObjectAdded: menu.insertItem(index, object) - onObjectRemoved: menu.removeItem(object) -} diff --git a/resources/qml/Menus/MaterialMenu.qml b/resources/qml/Menus/MaterialMenu.qml index b4f15fad00..e6d7fbc3e9 100644 --- a/resources/qml/Menus/MaterialMenu.qml +++ b/resources/qml/Menus/MaterialMenu.qml @@ -1,15 +1,15 @@ -//Copyright (c) 2020 Ultimaker B.V. -//Cura is released under the terms of the LGPLv3 or higher. +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.4 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura -Menu +Cura.Menu { - id: menu + id: materialMenu title: catalog.i18nc("@label:category menu label", "Material") property int extruderIndex: 0 @@ -25,55 +25,54 @@ Menu } property bool isActiveExtruderEnabled: (activeExtruder === null || activeExtruder === undefined) ? false : activeExtruder.isEnabled - property string activeMaterialId: (activeExtruder === null || activeExtruder === undefined) ? false : activeExtruder.material.id - + property string activeMaterialId: (activeExtruder === null || activeExtruder === undefined) ? "" : activeExtruder.material.id property bool updateModels: true Cura.FavoriteMaterialsModel { id: favoriteMaterialsModel - extruderPosition: menu.extruderIndex + extruderPosition: materialMenu.extruderIndex enabled: updateModels } Cura.GenericMaterialsModel { id: genericMaterialsModel - extruderPosition: menu.extruderIndex + extruderPosition: materialMenu.extruderIndex enabled: updateModels } Cura.MaterialBrandsModel { id: brandModel - extruderPosition: menu.extruderIndex + extruderPosition: materialMenu.extruderIndex enabled: updateModels } - MenuItem + Cura.MenuItem { text: catalog.i18nc("@label:category menu label", "Favorites") enabled: false visible: favoriteMaterialsModel.items.length > 0 } + Instantiator { model: favoriteMaterialsModel - delegate: MenuItem + delegate: Cura.MenuItem { text: model.brand + " " + model.name checkable: true enabled: isActiveExtruderEnabled - checked: model.root_material_id === menu.currentRootMaterialId + checked: model.root_material_id === materialMenu.currentRootMaterialId onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node) - exclusiveGroup: favoriteGroup // One favorite and one item from the others can be active at the same time. } - onObjectAdded: menu.insertItem(index, object) - onObjectRemoved: menu.removeItem(index) + onObjectAdded: materialMenu.insertItem(index + 1, object) + onObjectRemoved: materialMenu.removeItem(index) } - MenuSeparator {} + Cura.MenuSeparator { visible: favoriteMaterialsModel.items.length > 0} - Menu + Cura.Menu { id: genericMenu title: catalog.i18nc("@label:category menu label", "Generic") @@ -81,13 +80,12 @@ Menu Instantiator { model: genericMaterialsModel - delegate: MenuItem + delegate: Cura.MenuItem { text: model.name checkable: true enabled: isActiveExtruderEnabled - checked: model.root_material_id === menu.currentRootMaterialId - exclusiveGroup: group + checked: model.root_material_id === materialMenu.currentRootMaterialId onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node) } onObjectAdded: genericMenu.insertItem(index, object) @@ -95,12 +93,12 @@ Menu } } - MenuSeparator {} + Cura.MenuSeparator {} Instantiator { model: brandModel - Menu + Cura.Menu { id: brandMenu title: brandName @@ -110,7 +108,7 @@ Menu Instantiator { model: brandMaterials - delegate: Menu + delegate: Cura.Menu { id: brandMaterialsMenu title: materialName @@ -120,47 +118,37 @@ Menu Instantiator { model: brandMaterialColors - delegate: MenuItem + delegate: Cura.MenuItem { text: model.name checkable: true enabled: isActiveExtruderEnabled - checked: model.id === menu.activeMaterialId - exclusiveGroup: group + checked: model.id === materialMenu.activeMaterialId + onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node) } onObjectAdded: brandMaterialsMenu.insertItem(index, object) onObjectRemoved: brandMaterialsMenu.removeItem(object) } } - onObjectAdded: brandMenu.insertItem(index, object) - onObjectRemoved: brandMenu.removeItem(object) + onObjectAdded: brandMenu.insertMenu(index, object) + onObjectRemoved: brandMenu.removeMenu(object) } } - onObjectAdded: menu.insertItem(index, object) - onObjectRemoved: menu.removeItem(object) + onObjectAdded: materialMenu.insertMenu(index + 4, object) + onObjectRemoved: materialMenu.removeMenu(object) } - ExclusiveGroup - { - id: group - } + Cura.MenuSeparator {} - ExclusiveGroup - { - id: favoriteGroup - } - - MenuSeparator {} - - MenuItem + Cura.MenuItem { action: Cura.Actions.manageMaterials } - MenuSeparator {} + Cura.MenuSeparator {} - MenuItem + Cura.MenuItem { action: Cura.Actions.marketplaceMaterials } diff --git a/resources/qml/Menus/NetworkPrinterMenu.qml b/resources/qml/Menus/NetworkPrinterMenu.qml deleted file mode 100644 index 845159f3b2..0000000000 --- a/resources/qml/Menus/NetworkPrinterMenu.qml +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.2 -import QtQuick.Controls 1.4 - -import UM 1.2 as UM -import Cura 1.0 as Cura - -Instantiator -{ - model: Cura.GlobalStacksModel {} - MenuItem - { - property string connectGroupName: - { - if("group_name" in model.metadata) - { - return model.metadata["group_name"] - } - return "" - } - text: connectGroupName - checkable: true - visible: model.hasRemoteConnection - checked: Cura.MachineManager.activeMachineNetworkGroupName == connectGroupName - exclusiveGroup: group - onTriggered: Cura.MachineManager.setActiveMachine(model.id) - } - onObjectAdded: menu.insertItem(index, object) - onObjectRemoved: menu.removeItem(object) -} diff --git a/resources/qml/Menus/NozzleMenu.qml b/resources/qml/Menus/NozzleMenu.qml index 3ec48ab302..b320a02a5e 100644 --- a/resources/qml/Menus/NozzleMenu.qml +++ b/resources/qml/Menus/NozzleMenu.qml @@ -1,15 +1,15 @@ -// Copyright (c) 2017 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.4 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura -Menu +Cura.Menu { - id: menu + id: nozzleMenu title: "Nozzle" property int extruderIndex: 0 @@ -23,38 +23,34 @@ Menu { model: nozzleModel - MenuItem + Cura.MenuItem { text: model.hotend_name checkable: true - checked: { - var activeMachine = Cura.MachineManager.activeMachine + property var activeMachine: Cura.MachineManager.activeMachine + checked: + { if (activeMachine === null) { return false } - var extruder = Cura.MachineManager.activeMachine.extruderList[extruderIndex] + var extruder = activeMachine.extruderList[extruderIndex] return (extruder === undefined) ? false : (extruder.variant.name == model.hotend_name) } - exclusiveGroup: group enabled: { - var activeMachine = Cura.MachineManager.activeMachine if (activeMachine === null) { return false } - var extruder = Cura.MachineManager.activeMachine.extruderList[extruderIndex] + var extruder = activeMachine.extruderList[extruderIndex] return (extruder === undefined) ? false : extruder.isEnabled } - onTriggered: { - Cura.MachineManager.setVariant(menu.extruderIndex, model.container_node); - } + onTriggered: Cura.MachineManager.setVariant(nozzleMenu.extruderIndex, model.container_node) } - onObjectAdded: menu.insertItem(index, object); - onObjectRemoved: menu.removeItem(object); + onObjectAdded: nozzleMenu.insertItem(index, object) + onObjectRemoved: nozzleMenu.removeItem(object) } - ExclusiveGroup { id: group } } diff --git a/resources/qml/Menus/OpenFilesMenu.qml b/resources/qml/Menus/OpenFilesMenu.qml index 3c2b64ee62..de5ab00c76 100644 --- a/resources/qml/Menus/OpenFilesMenu.qml +++ b/resources/qml/Menus/OpenFilesMenu.qml @@ -1,30 +1,26 @@ -// Copyright (c) 2020 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.1 import UM 1.6 as UM import Cura 1.0 as Cura import "../Dialogs" -Menu +Cura.Menu { id: openFilesMenu title: catalog.i18nc("@title:menu menubar:file", "Open File(s)...") - iconName: "document-open-recent"; Instantiator { id: fileProviders model: CuraApplication.getFileProviderModel() - MenuItem + Cura.MenuItem { - text: - { - return model.displayText; - } + text: model.displayText onTriggered: { if (model.index == 0) // The 0th element is the "From Disk" option, which should activate the open local file dialog @@ -36,11 +32,10 @@ Menu CuraApplication.getFileProviderModel().trigger(model.name); } } - // Unassign the shortcuts when the submenu is invisible (i.e. when there is only one file provider) to avoid ambiguous shortcuts. - // When there is a signle file provider, the openAction is assigned with the Ctrl+O shortcut instead. - shortcut: openFilesMenu.visible ? model.shortcut : "" + shortcut: model.shortcut } onObjectAdded: openFilesMenu.insertItem(index, object) + onObjectRemoved: openFilesMenu.removeItem(object) } } diff --git a/resources/qml/Menus/PreferencesMenu.qml b/resources/qml/Menus/PreferencesMenu.qml new file mode 100644 index 0000000000..3a6dd4b2ce --- /dev/null +++ b/resources/qml/Menus/PreferencesMenu.qml @@ -0,0 +1,25 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.7 +import QtQuick.Controls 2.4 + +import UM 1.5 as UM +import Cura 1.0 as Cura + +Cura.Menu +{ + id: preferencesMenu + + //On MacOS, don't translate the "Preferences" word. + //Qt moves the "preferences" entry to a different place, and if it got renamed can't find it again when it + //attempts to delete the item upon closing the application, causing a crash. + //In the new location, these items are translated automatically according to the system's language. + //For more information, see: + //- https://doc.qt.io/qt-5/macos-issues.html#menu-bar + //- https://doc.qt.io/qt-5/qmenubar.html#qmenubar-as-a-global-menu-bar + title: (Qt.platform.os == "osx") ? "&Preferences" : catalog.i18nc("@title:menu menubar:toplevel", "P&references") + + Cura.MenuItem { action: Cura.Actions.preferences } +} + diff --git a/resources/qml/Menus/PrinterMenu.qml b/resources/qml/Menus/PrinterMenu.qml index 741d927c13..9f0e0575b0 100644 --- a/resources/qml/Menus/PrinterMenu.qml +++ b/resources/qml/Menus/PrinterMenu.qml @@ -1,61 +1,77 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 +import QtQuick.Controls 2.4 -import UM 1.2 as UM +import UM 1.6 as UM import Cura 1.0 as Cura -Menu +Cura.Menu { id: menu -// TODO Enable custom style to the menu -// style: MenuStyle -// { -// frame: Rectangle -// { -// color: "white" -// } -// } - - MenuItem + title: catalog.i18nc("@title:menu menubar:settings", "&Printer") + Cura.MenuItem { + id: networkEnabledPrinterItem text: catalog.i18nc("@label:category menu label", "Network enabled printers") enabled: false - visible: networkPrinterMenu.count > 0 + visible: networKPrinterInstantiator.count > 0 } - NetworkPrinterMenu + Instantiator { - id: networkPrinterMenu + id: networKPrinterInstantiator + model: Cura.GlobalStacksModel {filterOnlineOnly: true } + Cura.MenuItem + { + property string connectGroupName: + { + if("group_name" in model.metadata) + { + return model.metadata["group_name"] + } + return "" + } + text: connectGroupName + checkable: true + checked: Cura.MachineManager.activeMachineNetworkGroupName == connectGroupName + onTriggered: Cura.MachineManager.setActiveMachine(model.id) + } + onObjectAdded: menu.insertItem(2, object) + onObjectRemoved: menu.removeItem(object) } - MenuSeparator - { - visible: networkPrinterMenu.count > 0 - } + Cura.MenuSeparator { visible: networKPrinterInstantiator.count > 0 } - MenuItem - { - text: catalog.i18nc("@label:category menu label", "Local printers") - enabled: false - visible: localPrinterMenu.count > 0 - } - - LocalPrinterMenu + Cura.MenuItem { id: localPrinterMenu + text: catalog.i18nc("@label:category menu label", "Local printers") + enabled: false + visible: localPrinterInstantiator.count > 0 } - ExclusiveGroup { id: group; } - - MenuSeparator + Instantiator { - visible: localPrinterMenu.count > 0 + id: localPrinterInstantiator + model: Cura.GlobalStacksModel {} + + Cura.MenuItem + { + text: model.name + checkable: true + checked: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.id == model.id: false + visible: !model.hasRemoteConnection + onTriggered: Cura.MachineManager.setActiveMachine(model.id) + } + // A bit hackish, but we have 2 items at the end, put them before that + onObjectAdded: menu.insertItem(menu.count - 2, object) + onObjectRemoved: menu.removeItem(object) } - MenuItem { action: Cura.Actions.addMachine; } - MenuItem { action: Cura.Actions.configureMachines; } + Cura.MenuSeparator { visible: localPrinterInstantiator.count > 0 } + + Cura.MenuItem { action: Cura.Actions.addMachine } + Cura.MenuItem { action: Cura.Actions.configureMachines } } diff --git a/resources/qml/Menus/PrinterTypeMenu.qml b/resources/qml/Menus/PrinterTypeMenu.qml index c2a09e0efd..17986ac1b8 100644 --- a/resources/qml/Menus/PrinterTypeMenu.qml +++ b/resources/qml/Menus/PrinterTypeMenu.qml @@ -2,12 +2,12 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.4 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura -Menu +Cura.Menu { id: menu title: "Printer type" @@ -18,12 +18,11 @@ Menu id: printerTypeInstantiator model: outputDevice != null ? outputDevice.connectedPrintersTypeCount : [] - MenuItem + Cura.MenuItem { text: modelData.machine_type checkable: true checked: Cura.MachineManager.activeMachine.definition.name == modelData.machine_type - exclusiveGroup: group onTriggered: { Cura.MachineManager.switchPrinterType(modelData.machine_type) @@ -32,6 +31,4 @@ Menu onObjectAdded: menu.insertItem(index, object) onObjectRemoved: menu.removeItem(object) } - - ExclusiveGroup { id: group } } diff --git a/resources/qml/Menus/RecentFilesMenu.qml b/resources/qml/Menus/RecentFilesMenu.qml index de6d2e3817..8f4f328927 100644 --- a/resources/qml/Menus/RecentFilesMenu.qml +++ b/resources/qml/Menus/RecentFilesMenu.qml @@ -1,26 +1,26 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.1 import UM 1.3 as UM import Cura 1.0 as Cura import "../Dialogs" -Menu +Cura.Menu { id: menu title: catalog.i18nc("@title:menu menubar:file", "Open &Recent") - iconName: "document-open-recent"; + //iconName: "document-open-recent"; enabled: CuraApplication.recentFiles.length > 0; Instantiator { model: CuraApplication.recentFiles - MenuItem + Cura.MenuItem { text: { @@ -32,9 +32,4 @@ Menu onObjectAdded: menu.insertItem(index, object) onObjectRemoved: menu.removeItem(object) } - - Cura.AskOpenAsProjectOrModelsDialog - { - id: askOpenAsProjectOrModelsDialog - } } diff --git a/resources/qml/Menus/SaveProjectMenu.qml b/resources/qml/Menus/SaveProjectMenu.qml index afc6008717..16d54382d1 100644 --- a/resources/qml/Menus/SaveProjectMenu.qml +++ b/resources/qml/Menus/SaveProjectMenu.qml @@ -1,15 +1,15 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.1 -import UM 1.6 as UM +import UM 1.5 as UM import Cura 1.1 as Cura import "../Dialogs" -Menu +Cura.Menu { id: saveProjectMenu title: catalog.i18nc("@title:menu menubar:file", "Save Project...") @@ -18,7 +18,7 @@ Menu Instantiator { id: projectOutputDevices - MenuItem + Cura.MenuItem { text: model.name onTriggered: @@ -40,9 +40,8 @@ Menu UM.OutputDeviceManager.requestWriteToDevice(model.id, PrintInformation.jobName, args) } } - // Unassign the shortcuts when the submenu is invisible (i.e. when there is only one project output device) to avoid ambiguous shortcuts. - // When there is only the LocalFileOutputDevice, the Ctrl+S shortcut is assigned to the saveWorkspaceMenu MenuItem - shortcut: saveProjectMenu.visible ? model.shortcut : "" + shortcut: model.shortcut + enabled: saveProjectMenu.shouldBeVisible } onObjectAdded: saveProjectMenu.insertItem(index, object) onObjectRemoved: saveProjectMenu.removeItem(object) @@ -53,6 +52,6 @@ Menu id: saveWorkspaceDialog property var args property var deviceId - onYes: UM.OutputDeviceManager.requestWriteToDevice(deviceId, PrintInformation.jobName, args) + onAccepted: UM.OutputDeviceManager.requestWriteToDevice(deviceId, PrintInformation.jobName, args) } } diff --git a/resources/qml/Menus/SettingsMenu.qml b/resources/qml/Menus/SettingsMenu.qml index 939ade5847..25bee871f5 100644 --- a/resources/qml/Menus/SettingsMenu.qml +++ b/resources/qml/Menus/SettingsMenu.qml @@ -2,70 +2,76 @@ //Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.4 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura -Menu +Cura.Menu { id: base title: catalog.i18nc("@title:menu menubar:toplevel", "&Settings") - PrinterMenu { title: catalog.i18nc("@title:menu menubar:settings", "&Printer") } + PrinterMenu { } property var activeMachine: Cura.MachineManager.activeMachine Instantiator { id: extruderInstantiator model: activeMachine == null ? null : activeMachine.extruderList - Menu + Cura.Menu { title: modelData.name property var extruder: (base.activeMachine === null) ? null : activeMachine.extruderList[model.index] - NozzleMenu { title: Cura.MachineManager.activeDefinitionVariantsName; visible: Cura.MachineManager.activeMachine.hasVariants; extruderIndex: index } + NozzleMenu + { + title: Cura.MachineManager.activeDefinitionVariantsName + shouldBeVisible: activeMachine.hasVariants + extruderIndex: index + } MaterialMenu { title: catalog.i18nc("@title:menu", "&Material") - visible: Cura.MachineManager.activeMachine.hasMaterials + shouldBeVisible: activeMachine.hasMaterials extruderIndex: index updateModels: false onAboutToShow: updateModels = true onAboutToHide: updateModels = false } - MenuSeparator + Cura.MenuSeparator { visible: Cura.MachineManager.activeMachine.hasVariants || Cura.MachineManager.activeMachine.hasMaterials } - MenuItem + Cura.MenuItem { text: catalog.i18nc("@action:inmenu", "Set as Active Extruder") onTriggered: Cura.ExtruderManager.setActiveExtruderIndex(model.index) } - MenuItem + Cura.MenuItem { text: catalog.i18nc("@action:inmenu", "Enable Extruder") onTriggered: Cura.MachineManager.setExtruderEnabled(model.index, true) visible: (extruder === null || extruder === undefined) ? false : !extruder.isEnabled + height: visible ? implicitHeight: 0 } - MenuItem + Cura.MenuItem { text: catalog.i18nc("@action:inmenu", "Disable Extruder") onTriggered: Cura.MachineManager.setExtruderEnabled(index, false) visible: (extruder === null || extruder === undefined) ? false : extruder.isEnabled enabled: Cura.MachineManager.numberExtrudersEnabled > 1 + height: visible ? implicitHeight: 0 } - } - onObjectAdded: base.insertItem(index, object) - onObjectRemoved: base.removeItem(object) + onObjectAdded: base.insertMenu(index, object) + onObjectRemoved: base.removeMenu(object) } - MenuSeparator { } + Cura.MenuSeparator { } - MenuItem { action: Cura.Actions.configureSettingVisibility } + Cura.MenuItem { action: Cura.Actions.configureSettingVisibility } } \ No newline at end of file diff --git a/resources/qml/Menus/ViewMenu.qml b/resources/qml/Menus/ViewMenu.qml index af1a4c3be4..059455c72c 100644 --- a/resources/qml/Menus/ViewMenu.qml +++ b/resources/qml/Menus/ViewMenu.qml @@ -2,33 +2,34 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.1 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura -Menu +Cura.Menu { - title: catalog.i18nc("@title:menu menubar:toplevel", "&View") id: base + title: catalog.i18nc("@title:menu menubar:toplevel", "&View") - property var multiBuildPlateModel: CuraApplication.getMultiBuildPlateModel() - - Menu + Cura.Menu { - title: catalog.i18nc("@action:inmenu menubar:view","&Camera position"); - MenuItem { action: Cura.Actions.view3DCamera; } - MenuItem { action: Cura.Actions.viewFrontCamera; } - MenuItem { action: Cura.Actions.viewTopCamera; } - MenuItem { action: Cura.Actions.viewBottomCamera; } - MenuItem { action: Cura.Actions.viewLeftSideCamera; } - MenuItem { action: Cura.Actions.viewRightSideCamera; } + title: catalog.i18nc("@action:inmenu menubar:view", "&Camera position") + Cura.MenuItem { action: Cura.Actions.view3DCamera } + Cura.MenuItem { action: Cura.Actions.viewFrontCamera } + Cura.MenuItem { action: Cura.Actions.viewTopCamera } + Cura.MenuItem { action: Cura.Actions.viewBottomCamera } + Cura.MenuItem { action: Cura.Actions.viewLeftSideCamera } + Cura.MenuItem { action: Cura.Actions.viewRightSideCamera } } - Menu + Cura.Menu { id: cameraViewMenu + + title: catalog.i18nc("@action:inmenu menubar:view", "Camera view") property string cameraMode: UM.Preferences.getValue("general/camera_perspective_mode") + Connections { target: UM.Preferences @@ -42,8 +43,7 @@ Menu } } - title: catalog.i18nc("@action:inmenu menubar:view","Camera view") - MenuItem + Cura.MenuItem { text: catalog.i18nc("@action:inmenu menubar:view", "Perspective") checkable: true @@ -51,11 +51,10 @@ Menu onTriggered: { UM.Preferences.setValue("general/camera_perspective_mode", "perspective") - checked = cameraViewMenu.cameraMode == "perspective" } - exclusiveGroup: group } - MenuItem + + Cura.MenuItem { text: catalog.i18nc("@action:inmenu menubar:view", "Orthographic") checkable: true @@ -63,47 +62,13 @@ Menu onTriggered: { UM.Preferences.setValue("general/camera_perspective_mode", "orthographic") - checked = cameraViewMenu.cameraMode == "orthographic" } - exclusiveGroup: group - } - ExclusiveGroup { id: group } - } - - MenuSeparator - { - visible: UM.Preferences.getValue("cura/use_multi_build_plate") - } - - Menu - { - id: buildPlateMenu; - title: catalog.i18nc("@action:inmenu menubar:view","&Build plate") - visible: UM.Preferences.getValue("cura/use_multi_build_plate") - Instantiator - { - model: base.multiBuildPlateModel - MenuItem - { - text: base.multiBuildPlateModel.getItem(index).name; - onTriggered: Cura.SceneController.setActiveBuildPlate(base.multiBuildPlateModel.getItem(index).buildPlateNumber) - checkable: true - checked: base.multiBuildPlateModel.getItem(index).buildPlateNumber == base.multiBuildPlateModel.activeBuildPlate - exclusiveGroup: buildPlateGroup - visible: UM.Preferences.getValue("cura/use_multi_build_plate") - } - onObjectAdded: buildPlateMenu.insertItem(index, object) - onObjectRemoved: buildPlateMenu.removeItem(object) - } - ExclusiveGroup - { - id: buildPlateGroup } } - MenuSeparator {} + Cura.MenuSeparator {} - MenuItem + Cura.MenuItem { action: Cura.Actions.toggleFullScreen } diff --git a/resources/qml/MonitorButton.qml b/resources/qml/MonitorButton.qml index e6248f43b4..7e9219a7dc 100644 --- a/resources/qml/MonitorButton.qml +++ b/resources/qml/MonitorButton.qml @@ -1,18 +1,14 @@ -//Copyright (c) 2018 Ultimaker B.V. +//Copyright (c) 2022 Ultimaker B.V. //Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 -import QtQuick.Dialogs 1.1 -import QtQuick.Layouts 1.1 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item { - id: base; + id: base UM.I18nCatalog { id: catalog; name: "cura"} height: childrenRect.height + UM.Theme.getSize("thick_margin").height @@ -37,7 +33,7 @@ Item } if(activePrintJob.timeTotal == 0) { - return 0 // Prevent devision by 0 + return 0 // Prevent division by 0 } return activePrintJob.timeElapsed / activePrintJob.timeTotal * 100 } @@ -159,7 +155,7 @@ Item } } - Label + UM.Label { id: statusLabel width: parent.width - 2 * UM.Theme.getSize("thick_margin").width @@ -172,7 +168,7 @@ Item text: statusText } - Label + UM.Label { id: percentageLabel anchors.top: parent.top @@ -184,22 +180,22 @@ Item visible: showProgress } - ProgressBar + UM.ProgressBar { - id: progressBar; - minimumValue: 0; - maximumValue: 100; - value: 0; + id: progressBar + from: 0 + to: 100 + value: 0 //Doing this in an explicit binding since the implicit binding breaks on occasion. Binding { - target: progressBar; - property: "value"; - value: base.progress; + target: progressBar + property: "value" + value: base.progress } - visible: showProgress; + visible: showProgress indeterminate: { if(!printerConnected) @@ -219,17 +215,15 @@ Item return false; } } - style: UM.Theme.styles.progressbar; + property string backgroundColor: UM.Theme.getColor("progressbar_background") + property string controlColor: base.statusColor - property string backgroundColor: UM.Theme.getColor("progressbar_background"); - property string controlColor: base.statusColor; - - width: parent.width - 2 * UM.Theme.getSize("thick_margin").width; - height: UM.Theme.getSize("progressbar").height; - anchors.top: statusLabel.bottom; - anchors.topMargin: Math.round(UM.Theme.getSize("thick_margin").height / 4); - anchors.left: parent.left; - anchors.leftMargin: UM.Theme.getSize("thick_margin").width; + width: parent.width - 2 * UM.Theme.getSize("thick_margin").width + height: UM.Theme.getSize("progressbar").height + anchors.top: statusLabel.bottom + anchors.topMargin: Math.round(UM.Theme.getSize("thick_margin").height / 4) + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("thick_margin").width } Row @@ -266,7 +260,7 @@ Item } } - Button + Cura.SecondaryButton { id: pauseResumeButton @@ -309,11 +303,9 @@ Item activePrintJob.setState("pause"); } } - - style: UM.Theme.styles.print_setup_action_button } - Button + Cura.SecondaryButton { id: abortButton @@ -325,20 +317,16 @@ Item text: catalog.i18nc("@label", "Abort Print") onClicked: confirmationDialog.visible = true - - style: UM.Theme.styles.print_setup_action_button } - MessageDialog + Cura.MessageDialog { id: confirmationDialog title: catalog.i18nc("@window:title", "Abort print") - icon: StandardIcon.Warning text: catalog.i18nc("@label", "Are you sure you want to abort the print?") - standardButtons: StandardButton.Yes | StandardButton.No - Component.onCompleted: visible = false - onYes: activePrintJob.setState("abort") + standardButtons: Dialog.Yes | Dialog.No + onAccepted: activePrintJob.setState("abort") } } } diff --git a/resources/qml/ObjectItemButton.qml b/resources/qml/ObjectItemButton.qml index 1637b8d0cd..c3066b800d 100644 --- a/resources/qml/ObjectItemButton.qml +++ b/resources/qml/ObjectItemButton.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Button @@ -56,7 +56,7 @@ Button visible: showExtruderSwatches && extruderColor != "" } - Label + UM.Label { id: buttonText anchors @@ -67,12 +67,9 @@ Button verticalCenter: parent.verticalCenter } text: objectItemButton.text - font: UM.Theme.getFont("default") color: UM.Theme.getColor("text_scene") opacity: (outsideBuildArea) ? 0.5 : 1.0 visible: text != "" - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter elide: Text.ElideRight } @@ -85,7 +82,7 @@ Button right: parent.right rightMargin: 0 } - width: childrenRect.width + width: meshTypeIcon.width + perObjectSettingsCountLabel.width + UM.Theme.getSize("narrow_margin").width height: parent.height padding: 0 leftPadding: UM.Theme.getSize("thin_margin").width @@ -134,7 +131,7 @@ Button contentItem: Item { height: parent.height - width: meshTypeIcon.width + perObjectSettingsCountLabel.width + UM.Theme.getSize("narrow_margin").width + width: perObjectSettingsInfo.width Cura.NotificationIcon { @@ -191,7 +188,7 @@ Button elideWidth: buttonText.width } - Cura.ToolTip + UM.ToolTip { id: tooltip tooltipText: objectItemButton.text + perObjectSettingsInfo.tooltipText diff --git a/resources/qml/ObjectSelector.qml b/resources/qml/ObjectSelector.qml index 0cdc2b3f80..db68ff6c03 100644 --- a/resources/qml/ObjectSelector.qml +++ b/resources/qml/ObjectSelector.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2020 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -51,15 +51,13 @@ Item source: objectSelector.opened ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleUp") } - Label + UM.Label { id: label anchors.left: openCloseIcon.right anchors.leftMargin: UM.Theme.getSize("default_margin").width text: catalog.i18nc("@label", "Object list") - font: UM.Theme.getFont("default") color: openCloseButton.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text") - renderType: Text.NativeRendering elide: Text.ElideRight } } @@ -78,7 +76,7 @@ Item id: contents width: parent.width visible: objectSelector.opened - height: visible ? listView.height : 0 + height: visible ? listView.height + border.width * 2 : 0 color: UM.Theme.getColor("main_background") border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining") @@ -101,23 +99,22 @@ Item ListView { id: listView - clip: true anchors { left: parent.left right: parent.right + top: parent.top margins: UM.Theme.getSize("default_lining").width } - - ScrollBar.vertical: ScrollBar - { - hoverEnabled: true - } - property real maximumHeight: UM.Theme.getSize("objects_menu_size").height - height: Math.min(contentHeight, maximumHeight) + ScrollBar.vertical: UM.ScrollBar + { + id: scrollBar + } + clip: true + model: Cura.ObjectsModel {} delegate: ObjectItemButton @@ -130,7 +127,7 @@ Item value: model.selected } text: model.name - width: listView.width + width: listView.width - scrollBar.width property bool outsideBuildArea: model.outside_build_area property int perObjectSettingsCount: model.per_object_settings_count property string meshType: model.mesh_type diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 5b28396188..8fbaadc5c3 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -1,14 +1,11 @@ -// Copyright (c) 2020 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.15 import QtQuick.Layouts 1.1 -import QtQuick.Controls.Styles 1.1 -import QtQuick.Controls 2.3 as NewControls - -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.1 as Cura UM.PreferencesPage @@ -17,9 +14,11 @@ UM.PreferencesPage title: catalog.i18nc("@title:tab", "General") id: generalPreferencesPage + width: parent ? parent.width: 0 + function setDefaultLanguage(languageCode) { - //loops trough the languageList and sets the language using the languageCode + //loops through the languageList and sets the language using the languageCode for(var i = 0; i < languageList.count; i++) { if (languageComboBox.model.get(i).code == languageCode) @@ -76,6 +75,8 @@ UM.PreferencesPage UM.Preferences.resetPreference("cura/single_instance") singleInstanceCheckbox.checked = boolCheck(UM.Preferences.getValue("cura/single_instance")) + UM.Preferences.resetPreference("cura/single_instance_clear_before_load") + singleInstanceClearBeforeLoadCheckbox.checked = boolCheck(UM.Preferences.getValue("cura/single_instance_clear_before_load")) UM.Preferences.resetPreference("physics/automatic_push_free") pushFreeCheckbox.checked = boolCheck(UM.Preferences.getValue("physics/automatic_push_free")) @@ -99,14 +100,14 @@ UM.PreferencesPage invertZoomCheckbox.checked = boolCheck(UM.Preferences.getValue("view/invert_zoom")) UM.Preferences.resetPreference("view/zoom_to_mouse"); zoomToMouseCheckbox.checked = boolCheck(UM.Preferences.getValue("view/zoom_to_mouse")) - UM.Preferences.resetPreference("view/top_layer_count"); - topLayerCountCheckbox.checked = boolCheck(UM.Preferences.getValue("view/top_layer_count")) + //UM.Preferences.resetPreference("view/top_layer_count"); + //topLayerCountCheckbox.checked = boolCheck(UM.Preferences.getValue("view/top_layer_count")) UM.Preferences.resetPreference("general/restore_window_geometry") restoreWindowPositionCheckbox.checked = boolCheck(UM.Preferences.getValue("general/restore_window_geometry")) UM.Preferences.resetPreference("general/camera_perspective_mode") - var defaultCameraMode = UM.Preferences.getValue("general/camera_perspective_mode") - setDefaultCameraMode(defaultCameraMode) + //var defaultCameraMode = UM.Preferences.getValue("general/camera_perspective_mode") +// /setDefaultCameraMode(defaultCameraMode) UM.Preferences.resetPreference("cura/choice_on_profile_override") setDefaultDiscardOrKeepProfile(UM.Preferences.getValue("cura/choice_on_profile_override")) @@ -124,33 +125,52 @@ UM.PreferencesPage pluginNotificationsUpdateCheckbox.checked = boolCheck(UM.Preferences.getValue("info/automatic_plugin_update_check")) } + buttons: [ + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Defaults") + onClicked: reset() + } + ] ScrollView { + id: preferencesScrollView width: parent.width height: parent.height + ScrollBar.vertical: UM.ScrollBar + { + id: preferencesScrollBar + parent: preferencesScrollView + anchors + { + top: parent.top + bottom: parent.bottom + right: parent.right + } + } + Column { - - //: Language selection label UM.I18nCatalog{id: catalog; name: "cura"} + width: preferencesScrollView.width - preferencesScrollBar.width - Label + UM.Label { - font.bold: true + font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label", "Interface") } GridLayout { id: interfaceGrid - columns: 4 + columns: 2 width: parent.width - Label + UM.Label { id: languageLabel - text: "Language:" //Don't translate this, to make it easier to find the language drop-down if you can't read the current language. + text: "Language*:" //Don't translate this, to make it easier to find the language drop-down if you can't read the current language. } ListModel @@ -163,13 +183,11 @@ UM.PreferencesPage append({ text: "Čeština", code: "cs_CZ" }) append({ text: "Deutsch", code: "de_DE" }) append({ text: "Español", code: "es_ES" }) - //Finnish is disabled for being incomplete: append({ text: "Suomi", code: "fi_FI" }) append({ text: "Français", code: "fr_FR" }) append({ text: "Italiano", code: "it_IT" }) append({ text: "日本語", code: "ja_JP" }) append({ text: "한국어", code: "ko_KR" }) append({ text: "Nederlands", code: "nl_NL" }) - //Polish is disabled for being incomplete: append({ text: "Polski", code: "pl_PL" }) append({ text: "Português do Brasil", code: "pt_BR" }) append({ text: "Português", code: "pt_PT" }) append({ text: "Русский", code: "ru_RU" }) @@ -182,19 +200,25 @@ UM.PreferencesPage { append({ text: "Pirate", code: "en_7S" }) } + + // incomplete and/or abandoned + append({ text: catalog.i18nc("@heading", "-- incomplete --"), code: "" }) + append({ text: "Magyar", code: "hu_HU" }) + append({ text: "Suomi", code: "fi_FI" }) + append({ text: "Polski", code: "pl_PL" }) } } - NewControls.ComboBox + Cura.ComboBox { id: languageComboBox textRole: "text" model: languageList - Layout.fillWidth: true + implicitWidth: UM.Theme.getSize("setting_control").width + implicitHeight: currencyField.height - currentIndex: - { + function setCurrentIndex() { var code = UM.Preferences.getValue("general/language"); for(var i = 0; i < languageList.count; ++i) { @@ -204,26 +228,41 @@ UM.PreferencesPage } } } - onActivated: UM.Preferences.setValue("general/language", model.get(index).code) + + currentIndex: setCurrentIndex() + + onActivated: + { + if (model.get(index).code != "") + { + UM.Preferences.setValue("general/language", model.get(index).code); + } + else + { + currentIndex = setCurrentIndex(); + } + } } - Label + UM.Label { id: currencyLabel - text: catalog.i18nc("@label","Currency:") + text: catalog.i18nc("@label", "Currency:") } - TextField + Cura.TextField { id: currencyField + selectByMouse: true text: UM.Preferences.getValue("cura/currency") + implicitWidth: UM.Theme.getSize("setting_control").width onTextChanged: UM.Preferences.setValue("cura/currency", text) } - Label + UM.Label { id: themeLabel - text: catalog.i18nc("@label","Theme:") + text: catalog.i18nc("@label: Please keep the asterix, it's to indicate that a restart is needed.", "Theme*:") } ListModel @@ -239,13 +278,14 @@ UM.PreferencesPage } } - NewControls.ComboBox + Cura.ComboBox { id: themeComboBox model: themeList textRole: "text" - Layout.fillWidth: true + implicitWidth: UM.Theme.getSize("setting_control").width + implicitHeight: currencyField.height currentIndex: { @@ -263,12 +303,29 @@ UM.PreferencesPage } } - Label + UM.TooltipArea + { + width: childrenRect.width; + height: childrenRect.height; + + text: catalog.i18nc("@info:tooltip", "Slice automatically when changing settings.") + + UM.CheckBox + { + id: autoSliceCheckbox + checked: boolCheck(UM.Preferences.getValue("general/auto_slice")) + onClicked: UM.Preferences.setValue("general/auto_slice", checked) + + text: catalog.i18nc("@option:check", "Slice automatically"); + } + } + + UM.Label { id: languageCaption //: Language change warning - text: catalog.i18nc("@label", "You will need to restart the application for these changes to have effect.") + text: catalog.i18nc("@label", "*You will need to restart the application for these changes to have effect.") wrapMode: Text.WordWrap font.italic: true } @@ -280,33 +337,9 @@ UM.PreferencesPage width: UM.Theme.getSize("default_margin").width } - UM.TooltipArea + UM.Label { - width: childrenRect.width; - height: childrenRect.height; - - text: catalog.i18nc("@info:tooltip", "Slice automatically when changing settings.") - - CheckBox - { - id: autoSliceCheckbox - checked: boolCheck(UM.Preferences.getValue("general/auto_slice")) - onClicked: UM.Preferences.setValue("general/auto_slice", checked) - - text: catalog.i18nc("@option:check", "Slice automatically"); - } - } - - Item - { - //: Spacer - height: UM.Theme.getSize("default_margin").height - width: UM.Theme.getSize("default_margin").width - } - - Label - { - font.bold: true + font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label", "Viewport behavior") } @@ -317,7 +350,7 @@ UM.PreferencesPage text: catalog.i18nc("@info:tooltip", "Highlight unsupported areas of the model in red. Without support these areas will not print properly.") - CheckBox + UM.CheckBox { id: showOverhangCheckbox @@ -336,7 +369,7 @@ UM.PreferencesPage text: catalog.i18nc("@info:tooltip", "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry.") - CheckBox + UM.CheckBox { id: showXrayErrorCheckbox @@ -353,7 +386,7 @@ UM.PreferencesPage height: childrenRect.height; text: catalog.i18nc("@info:tooltip", "Moves the camera so the model is in the center of the view when a model is selected") - CheckBox + UM.CheckBox { id: centerOnSelectCheckbox text: catalog.i18nc("@action:button","Center camera when item is selected"); @@ -368,7 +401,7 @@ UM.PreferencesPage height: childrenRect.height; text: catalog.i18nc("@info:tooltip", "Should the default zoom behavior of cura be inverted?") - CheckBox + UM.CheckBox { id: invertZoomCheckbox text: catalog.i18nc("@action:button", "Invert the direction of camera zoom."); @@ -389,7 +422,7 @@ UM.PreferencesPage height: childrenRect.height; text: zoomToMouseCheckbox.enabled ? catalog.i18nc("@info:tooltip", "Should zooming move in the direction of the mouse?") : catalog.i18nc("@info:tooltip", "Zooming towards the mouse is not supported in the orthographic perspective.") - CheckBox + UM.CheckBox { id: zoomToMouseCheckbox text: catalog.i18nc("@action:button", "Zoom toward mouse direction") @@ -420,7 +453,7 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip", "Should models on the platform be moved so that they no longer intersect?") - CheckBox + UM.CheckBox { id: pushFreeCheckbox text: catalog.i18nc("@option:check", "Ensure models are kept apart") @@ -434,7 +467,7 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip", "Should models on the platform be moved down to touch the build plate?") - CheckBox + UM.CheckBox { id: dropDownCheckbox text: catalog.i18nc("@option:check", "Automatically drop models to the build plate") @@ -451,7 +484,7 @@ UM.PreferencesPage text: catalog.i18nc("@info:tooltip","Show caution message in g-code reader.") - CheckBox + UM.CheckBox { id: gcodeShowCautionCheckbox @@ -468,7 +501,7 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip", "Should layer be forced into compatibility mode?") - CheckBox + UM.CheckBox { id: forceLayerViewCompatibilityModeCheckbox text: catalog.i18nc("@option:check", "Force layer view compatibility mode (restart required)") @@ -483,7 +516,7 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip", "Should Cura open at the location it was closed?") - CheckBox + UM.CheckBox { id: restoreWindowPositionCheckbox text: catalog.i18nc("@option:check", "Restore window position on start") @@ -499,9 +532,9 @@ UM.PreferencesPage text: catalog.i18nc("@info:tooltip", "What type of camera rendering should be used?") Column { - spacing: 4 * screenScaleFactor + spacing: UM.Theme.getSize("narrow_margin").height - Label + UM.Label { text: catalog.i18nc("@window:text", "Camera rendering:") } @@ -515,12 +548,14 @@ UM.PreferencesPage } } - NewControls.ComboBox + Cura.ComboBox { id: cameraComboBox model: comboBoxList textRole: "text" + width: UM.Theme.getSize("combobox_wide").width + height: UM.Theme.getSize("combobox_wide").height currentIndex: { @@ -546,9 +581,9 @@ UM.PreferencesPage width: UM.Theme.getSize("default_margin").height } - Label + UM.Label { - font.bold: true + font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label","Opening and saving files") } @@ -558,22 +593,39 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip","Should opening files from the desktop or external applications open in the same instance of Cura?") - CheckBox + UM.CheckBox { id: singleInstanceCheckbox text: catalog.i18nc("@option:check","Use a single instance of Cura") + checked: boolCheck(UM.Preferences.getValue("cura/single_instance")) onCheckedChanged: UM.Preferences.setValue("cura/single_instance", checked) } } + UM.TooltipArea + { + width: childrenRect.width + height: childrenRect.height + text: catalog.i18nc("@info:tooltip","Should the build plate be cleared before loading a new model in the single instance of Cura?") + enabled: singleInstanceCheckbox.checked + + UM.CheckBox + { + id: singleInstanceClearBeforeLoadCheckbox + text: catalog.i18nc("@option:check","Clear buildplate before loading model into the single instance") + checked: boolCheck(UM.Preferences.getValue("cura/single_instance_clear_before_load")) + onCheckedChanged: UM.Preferences.setValue("cura/single_instance_clear_before_load", checked) + } + } + UM.TooltipArea { width: childrenRect.width height: childrenRect.height text: catalog.i18nc("@info:tooltip","Should models be scaled to the build volume if they are too large?") - CheckBox + UM.CheckBox { id: scaleToFitCheckbox text: catalog.i18nc("@option:check","Scale large models") @@ -588,7 +640,7 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip","An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?") - CheckBox + UM.CheckBox { id: scaleTinyCheckbox text: catalog.i18nc("@option:check","Scale extremely small models") @@ -603,7 +655,7 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip","Should models be selected after they are loaded?") - CheckBox + UM.CheckBox { id: selectModelsOnLoadCheckbox text: catalog.i18nc("@option:check","Select models when loaded") @@ -618,7 +670,7 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip", "Should a prefix based on the printer name be added to the print job name automatically?") - CheckBox + UM.CheckBox { id: prefixJobNameCheckbox text: catalog.i18nc("@option:check", "Add machine prefix to job name") @@ -633,7 +685,7 @@ UM.PreferencesPage height: childrenRect.height text: catalog.i18nc("@info:tooltip", "Should a summary be shown when saving a project file?") - CheckBox + UM.CheckBox { text: catalog.i18nc("@option:check", "Show summary dialog when saving project") checked: boolCheck(UM.Preferences.getValue("cura/dialog_on_project_save")) @@ -649,17 +701,18 @@ UM.PreferencesPage Column { - spacing: 4 * screenScaleFactor + spacing: UM.Theme.getSize("narrow_margin").height - Label + UM.Label { text: catalog.i18nc("@window:text", "Default behavior when opening a project file: ") } - NewControls.ComboBox + Cura.ComboBox { id: choiceOnOpenProjectDropDownButton - width: Math.round(250 * screenScaleFactor) + width: UM.Theme.getSize("combobox_wide").width + height: UM.Theme.getSize("combobox_wide").height model: ListModel { @@ -703,31 +756,31 @@ UM.PreferencesPage UM.TooltipArea { - width: childrenRect.width; - height: childrenRect.height; + width: childrenRect.width + height: childrenRect.height text: catalog.i18nc("@info:tooltip", "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again.") Column { - spacing: 4 * screenScaleFactor + spacing: UM.Theme.getSize("narrow_margin").height - Label + UM.Label { - font.bold: true + font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label", "Profiles") } - Label + UM.Label { text: catalog.i18nc("@window:text", "Default behavior for changed setting values when switching to a different profile: ") } - NewControls.ComboBox + Cura.ComboBox { id: choiceOnProfileOverrideDropDownButton - width: Math.round(250 * screenScaleFactor) - popup.width: Math.round(350 * screenScaleFactor) + width: UM.Theme.getSize("combobox_wide").width + height: UM.Theme.getSize("combobox_wide").height model: ListModel { id: discardOrKeepProfileListModel @@ -767,9 +820,9 @@ UM.PreferencesPage width: UM.Theme.getSize("default_margin").height } - Label + UM.Label { - font.bold: true + font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label", "Privacy") } UM.TooltipArea @@ -778,7 +831,7 @@ UM.PreferencesPage height: visible ? childrenRect.height : 0 text: catalog.i18nc("@info:tooltip", "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") - CheckBox + UM.CheckBox { id: sendDataCheckbox text: catalog.i18nc("@option:check","Send (anonymous) print information") @@ -786,15 +839,18 @@ UM.PreferencesPage onCheckedChanged: UM.Preferences.setValue("info/send_slice_info", checked) } - Button + + UM.SimpleButton { - id: showMoreInfo - anchors.top: sendDataCheckbox.bottom - text: catalog.i18nc("@action:button", "More information") - onClicked: - { - CuraApplication.showMoreInformationDialogForAnonymousDataCollection(); - } + onClicked: CuraApplication.showMoreInformationDialogForAnonymousDataCollection() + iconSource: UM.Theme.getIcon("Information") + anchors.left: sendDataCheckbox.right + anchors.verticalCenter: sendDataCheckbox.verticalCenter + hoverBackgroundColor: UM.Theme.getColor("secondary_button_hover") + backgroundRadius: width / 2 + height: UM.Theme.getSize("small_button_icon").height + color: UM.Theme.getColor("small_button_text") + width: height } } @@ -805,9 +861,9 @@ UM.PreferencesPage width: UM.Theme.getSize("default_margin").height } - Label + UM.Label { - font.bold: true + font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label", "Updates") } @@ -817,7 +873,7 @@ UM.PreferencesPage height: visible ? childrenRect.height : 0 text: catalog.i18nc("@info:tooltip", "Should Cura check for updates when the program is started?") - CheckBox + UM.CheckBox { id: checkUpdatesCheckbox text: catalog.i18nc("@option:check","Check for updates on start") @@ -826,7 +882,12 @@ UM.PreferencesPage } } - ExclusiveGroup { id: curaUpdatesGroup } + ButtonGroup + { + id: curaUpdatesGroup + buttons: [checkUpdatesOptionBeta, checkUpdatesOptionStable] + } + UM.TooltipArea { width: childrenRect.width @@ -834,10 +895,10 @@ UM.PreferencesPage text: catalog.i18nc("@info:tooltip", "When checking for updates, only check for stable releases.") anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width - RadioButton + Cura.RadioButton { + id: checkUpdatesOptionStable text: catalog.i18nc("@option:radio", "Stable releases only") - exclusiveGroup: curaUpdatesGroup enabled: checkUpdatesCheckbox.checked checked: UM.Preferences.getValue("info/latest_update_source") == "stable" onClicked: UM.Preferences.setValue("info/latest_update_source", "stable") @@ -850,10 +911,10 @@ UM.PreferencesPage text: catalog.i18nc("@info:tooltip", "When checking for updates, check for both stable and for beta releases.") anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width - RadioButton + Cura.RadioButton { + id: checkUpdatesOptionBeta text: catalog.i18nc("@option:radio", "Stable and Beta releases") - exclusiveGroup: curaUpdatesGroup enabled: checkUpdatesCheckbox.checked checked: UM.Preferences.getValue("info/latest_update_source") == "beta" onClicked: UM.Preferences.setValue("info/latest_update_source", "beta") @@ -865,7 +926,7 @@ UM.PreferencesPage height: visible ? childrenRect.height : 0 text: catalog.i18nc("@info:tooltip", "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!") - CheckBox + UM.CheckBox { id: pluginNotificationsUpdateCheckbox text: catalog.i18nc("@option:check", "Get notifications for plugin updates") diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index a8b64f94a4..28568d041b 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -1,25 +1,27 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.1 import QtQuick.Window 2.1 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura UM.ManagementPage { - id: base; + id: base - title: catalog.i18nc("@title:tab", "Printers"); + title: catalog.i18nc("@title:tab", "Printers") model: Cura.GlobalStacksModel { } sectionRole: "discoverySource" activeId: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.id: "" activeIndex: activeMachineIndex() + onHamburgeButtonClicked: menu.popup(content_item, content_item.width - menu.width, hamburger_button.height) + hamburgerButtonVisible: Cura.MachineManager.activeMachine !== null function activeMachineIndex() { @@ -34,45 +36,21 @@ UM.ManagementPage } buttons: [ - Button + Cura.SecondaryButton { - id: activateMenuButton - text: catalog.i18nc("@action:button", "Activate"); - iconName: "list-activate"; - enabled: base.currentItem != null && base.currentItem.id != Cura.MachineManager.activeMachine.id - onClicked: Cura.MachineManager.setActiveMachine(base.currentItem.id) - }, - Button - { - id: addMenuButton - text: catalog.i18nc("@action:button", "Add"); - iconName: "list-add"; + text: catalog.i18nc("@action:button", "Add New") onClicked: Cura.Actions.addMachine.trigger() - }, - Button - { - id: removeMenuButton - text: catalog.i18nc("@action:button", "Remove"); - iconName: "list-remove"; - enabled: base.currentItem != null && model.count > 1 - onClicked: confirmDialog.open(); - }, - Button - { - id: renameMenuButton - text: catalog.i18nc("@action:button", "Rename"); - iconName: "edit-rename"; - enabled: base.currentItem != null && base.currentItem.metadata.group_name == null - onClicked: renameDialog.open(); } ] Item { + id: content_item visible: base.currentItem != null anchors.fill: parent - Label + + UM.Label { id: machineName text: base.currentItem && base.currentItem.name ? base.currentItem.name : "" @@ -85,10 +63,14 @@ UM.ManagementPage { id: machineActions visible: currentItem && currentItem.id == Cura.MachineManager.activeMachine.id - anchors.left: parent.left - anchors.right: parent.right - anchors.top: machineName.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors + { + left: parent.left + right: parent.right + top: machineName.bottom + topMargin: UM.Theme.getSize("default_margin").height + } + spacing: UM.Theme.getSize("default_margin").height Repeater { @@ -99,7 +81,7 @@ UM.ManagementPage { width: Math.round(childrenRect.width + 2 * screenScaleFactor) height: childrenRect.height - Button + Cura.SecondaryButton { text: machineActionRepeater.model[index].label onClicked: @@ -122,12 +104,6 @@ UM.ManagementPage minimumHeight: UM.Theme.getSize("modal_window_minimum").height maximumWidth: minimumWidth * 3 maximumHeight: minimumHeight * 3 - rightButtons: Button - { - text: catalog.i18nc("@action:button", "Close") - iconName: "dialog-close" - onClicked: actionDialog.reject() - } } UM.I18nCatalog { id: catalog; name: "cura"; } @@ -136,8 +112,9 @@ UM.ManagementPage { id: confirmDialog object: base.currentItem && base.currentItem.name ? base.currentItem.name : "" - text: base.currentItem ? base.currentItem.removalWarning : ""; - onYes: + text: base.currentItem ? base.currentItem.removalWarning : "" + + onAccepted: { Cura.MachineManager.removeMachine(base.currentItem.id) if(!base.currentItem) @@ -149,19 +126,41 @@ UM.ManagementPage } } - UM.RenameDialog + Cura.RenameDialog { - id: renameDialog; - object: base.currentItem && base.currentItem.name ? base.currentItem.name : ""; + id: renameDialog + object: base.currentItem && base.currentItem.name ? base.currentItem.name : "" property var machine_name_validator: Cura.MachineNameValidator { } - validName: renameDialog.newName.match(renameDialog.machine_name_validator.machineNameRegex) != null; + validName: renameDialog.newName.match(renameDialog.machine_name_validator.machineNameRegex) != null onAccepted: { - Cura.MachineManager.renameMachine(base.currentItem.id, newName.trim()); + Cura.MachineManager.renameMachine(base.currentItem.id, newName.trim()) //Force updating currentItem and the details panel objectList.onCurrentIndexChanged() } } + Cura.Menu + { + id: menu + Cura.MenuItem + { + text: catalog.i18nc("@action:button", "Activate") + enabled: base.currentItem != null && base.currentItem.id != Cura.MachineManager.activeMachine.id + onTriggered: Cura.MachineManager.setActiveMachine(base.currentItem.id) + } + Cura.MenuItem + { + text: catalog.i18nc("@action:button", "Remove") + enabled: base.currentItem != null && model.count > 1 + onTriggered: confirmDialog.open() + } + Cura.MenuItem + { + text: catalog.i18nc("@action:button", "Rename") + enabled: base.currentItem != null && base.currentItem.metadata.group_name == null + onTriggered: renameDialog.open() + } + } Connections { @@ -172,6 +171,5 @@ UM.ManagementPage objectList.onCurrentIndexChanged() } } - } } diff --git a/resources/qml/Preferences/Materials/MaterialsBrandSection.qml b/resources/qml/Preferences/Materials/MaterialsBrandSection.qml index dc8be9563b..7c853c8a05 100644 --- a/resources/qml/Preferences/Materials/MaterialsBrandSection.qml +++ b/resources/qml/Preferences/Materials/MaterialsBrandSection.qml @@ -3,11 +3,9 @@ import QtQuick 2.7 import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 import QtQuick.Layouts 1.3 -import QtQuick.Dialogs 1.2 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura // An expandable list of materials. Includes both the header (this file) and the items (brandMaterialList) @@ -18,7 +16,7 @@ Item property var sectionName: "" property var elementsModel // This can be a MaterialTypesModel or GenericMaterialsModel or FavoriteMaterialsModel - property var hasMaterialTypes: true // It indicates wheather it has material types or not + property var hasMaterialTypes: true // It indicates whether it has material types or not property var expanded: materialList.expandedBrands.indexOf(sectionName) > -1 height: childrenRect.height @@ -43,13 +41,12 @@ Item { id: brand_header width: parent.width - Label + UM.Label { id: brand_name text: sectionName height: UM.Theme.getSize("favorites_row").height width: parent.width - UM.Theme.getSize("favorites_button").width - verticalAlignment: Text.AlignVCenter leftPadding: (UM.Theme.getSize("default_margin").width / 2) | 0 } Item diff --git a/resources/qml/Preferences/Materials/MaterialsDetailsPanel.qml b/resources/qml/Preferences/Materials/MaterialsDetailsPanel.qml index e821dfb955..04c722cd40 100644 --- a/resources/qml/Preferences/Materials/MaterialsDetailsPanel.qml +++ b/resources/qml/Preferences/Materials/MaterialsDetailsPanel.qml @@ -4,7 +4,6 @@ import QtQuick 2.7 import QtQuick.Controls 1.4 import QtQuick.Layouts 1.3 -import QtQuick.Dialogs 1.2 import UM 1.2 as UM import Cura 1.0 as Cura diff --git a/resources/qml/Preferences/Materials/MaterialsList.qml b/resources/qml/Preferences/Materials/MaterialsList.qml index 3173fbd680..6cbb42ad15 100644 --- a/resources/qml/Preferences/Materials/MaterialsList.qml +++ b/resources/qml/Preferences/Materials/MaterialsList.qml @@ -3,9 +3,7 @@ import QtQuick 2.7 import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 import QtQuick.Layouts 1.3 -import QtQuick.Dialogs 1.2 import UM 1.2 as UM import Cura 1.0 as Cura diff --git a/resources/qml/Preferences/Materials/MaterialsPage.qml b/resources/qml/Preferences/Materials/MaterialsPage.qml index 4de3ad918b..c9e6cf07a1 100644 --- a/resources/qml/Preferences/Materials/MaterialsPage.qml +++ b/resources/qml/Preferences/Materials/MaterialsPage.qml @@ -1,12 +1,12 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.15 import QtQuick.Layouts 1.3 import QtQuick.Dialogs 1.2 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.5 as Cura Item @@ -106,7 +106,7 @@ Item { id: activateMenuButton text: catalog.i18nc("@action:button", "Activate") - iconName: "list-activate" + icon.name: "list-activate" enabled: !isCurrentItemActivated && Cura.MachineManager.activeMachine.hasMaterials onClicked: { @@ -124,7 +124,7 @@ Item { id: createMenuButton text: catalog.i18nc("@action:button", "Create") - iconName: "list-add" + icon.name: "list-add" enabled: Cura.MachineManager.activeMachine.hasMaterials onClicked: { @@ -139,7 +139,7 @@ Item { id: duplicateMenuButton text: catalog.i18nc("@action:button", "Duplicate"); - iconName: "list-add" + icon.name: "list-add" enabled: base.hasCurrentItem onClicked: { @@ -154,7 +154,7 @@ Item { id: removeMenuButton text: catalog.i18nc("@action:button", "Remove") - iconName: "list-remove" + icon.name: "list-remove" enabled: base.hasCurrentItem && !base.currentItem.is_read_only && !base.isCurrentItemActivated && base.materialManagementModel.canMaterialBeRemoved(base.currentItem.container_node) onClicked: @@ -169,7 +169,7 @@ Item { id: importMenuButton text: catalog.i18nc("@action:button", "Import") - iconName: "document-import" + icon.name: "document-import" onClicked: { forceActiveFocus(); @@ -183,7 +183,7 @@ Item { id: exportMenuButton text: catalog.i18nc("@action:button", "Export") - iconName: "document-export" + icon.name: "document-export" onClicked: { forceActiveFocus(); @@ -197,18 +197,18 @@ Item { id: syncMaterialsButton text: catalog.i18nc("@action:button Sending materials to printers", "Sync with Printers") - iconName: "sync-synchronizing" + icon.name: "sync-synchronizing" onClicked: { forceActiveFocus(); - exportAllMaterialsDialog.folder = base.materialManagementModel.getPreferredExportAllPath(); - exportAllMaterialsDialog.open(); + base.materialManagementModel.openSyncAllWindow(); } visible: Cura.MachineManager.activeMachine.supportsMaterialExport } } - Item { + Item + { id: contentsItem anchors { @@ -272,22 +272,26 @@ Item bottom: parent.bottom left: parent.left } - - Rectangle - { - parent: viewport - anchors.fill: parent - color: palette.light - } - width: (parent.width * 0.4) | 0 - frameVisible: true - horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff + + clip: true + ScrollBar.vertical: UM.ScrollBar + { + id: materialScrollBar + parent: materialScrollView + anchors + { + top: parent.top + right: parent.right + bottom: parent.bottom + } + } + contentHeight: materialListView.height //For some reason, this is not determined automatically with this ScrollView. Very weird! MaterialsList { id: materialListView - width: materialScrollView.viewport.width + width: materialScrollView.width - materialScrollBar.width } } @@ -306,17 +310,15 @@ Item } // Dialogs - MessageDialog + Cura.MessageDialog { id: confirmRemoveMaterialDialog - icon: StandardIcon.Question; title: catalog.i18nc("@title:window", "Confirm Remove") property string materialName: base.currentItem !== null ? base.currentItem.name : "" text: catalog.i18nc("@label (%1 is object name)", "Are you sure you wish to remove %1? This cannot be undone!").arg(materialName) - standardButtons: StandardButton.Yes | StandardButton.No - modality: Qt.ApplicationModal - onYes: + standardButtons: Dialog.Yes | Dialog.No + onAccepted: { // Set the active material as the fallback. It will be selected when the current material is deleted base.newRootMaterialIdToSwitchTo = base.active_root_material_id @@ -333,22 +335,19 @@ Item folder: CuraApplication.getDefaultPath("dialog_material_path") onAccepted: { - var result = Cura.ContainerManager.importMaterialContainer(fileUrl); + const result = Cura.ContainerManager.importMaterialContainer(fileUrl); + const messageDialog = Qt.createQmlObject("import Cura 1.5 as Cura; Cura.MessageDialog { onClosed: destroy() }", base); + messageDialog.standardButtons = Dialog.Ok; messageDialog.title = catalog.i18nc("@title:window", "Import Material"); - messageDialog.text = catalog.i18nc("@info:status Don't translate the XML tags or !", "Could not import material %1: %2").arg(fileUrl).arg(result.message); - if (result.status == "success") + switch (result.status) { - messageDialog.icon = StandardIcon.Information; - messageDialog.text = catalog.i18nc("@info:status Don't translate the XML tag !", "Successfully imported material %1").arg(fileUrl); - } - else if (result.status == "duplicate") - { - messageDialog.icon = StandardIcon.Warning; - } - else - { - messageDialog.icon = StandardIcon.Critical; + case "success": + messageDialog.text = catalog.i18nc("@info:status Don't translate the XML tag !", "Successfully imported material %1").arg(fileUrl); + break; + default: + messageDialog.text = catalog.i18nc("@info:status Don't translate the XML tags or !", "Could not import material %1: %2").arg(fileUrl).arg(result.message); + break; } messageDialog.open(); CuraApplication.setDefaultPath("dialog_material_path", folder); @@ -364,40 +363,23 @@ Item folder: CuraApplication.getDefaultPath("dialog_material_path") onAccepted: { - var result = Cura.ContainerManager.exportContainer(base.currentItem.root_material_id, selectedNameFilter, fileUrl); + const result = Cura.ContainerManager.exportContainer(base.currentItem.root_material_id, selectedNameFilter, fileUrl); + const messageDialog = Qt.createQmlObject("import Cura 1.5 as Cura; Cura.MessageDialog { onClosed: destroy() }", base); messageDialog.title = catalog.i18nc("@title:window", "Export Material"); - if (result.status == "error") + messageDialog.standardButtons = Dialog.Ok; + switch (result.status) { - messageDialog.icon = StandardIcon.Critical; - messageDialog.text = catalog.i18nc("@info:status Don't translate the XML tags and !", "Failed to export material to %1: %2").arg(fileUrl).arg(result.message); - messageDialog.open(); - } - else if (result.status == "success") - { - messageDialog.icon = StandardIcon.Information; - messageDialog.text = catalog.i18nc("@info:status Don't translate the XML tag !", "Successfully exported material to %1").arg(result.path); - messageDialog.open(); + case "error": + messageDialog.text = catalog.i18nc("@info:status Don't translate the XML tags and !", "Failed to export material to %1: %2").arg(fileUrl).arg(result.message); + break; + case "success": + messageDialog.text = catalog.i18nc("@info:status Don't translate the XML tag !", "Successfully exported material to %1").arg(result.path); + break; } + messageDialog.open(); + CuraApplication.setDefaultPath("dialog_material_path", folder); } } - - FileDialog - { - id: exportAllMaterialsDialog - title: catalog.i18nc("@title:window", "Export All Materials") - selectExisting: false - nameFilters: ["Material archives (*.umm)", "All files (*)"] - onAccepted: - { - base.materialManagementModel.exportAll(fileUrl); - CuraApplication.setDefaultPath("dialog_material_path", folder); - } - } - - MessageDialog - { - id: messageDialog - } } diff --git a/resources/qml/Preferences/Materials/MaterialsSlot.qml b/resources/qml/Preferences/Materials/MaterialsSlot.qml index 840c636196..cd8c05fbf9 100644 --- a/resources/qml/Preferences/Materials/MaterialsSlot.qml +++ b/resources/qml/Preferences/Materials/MaterialsSlot.qml @@ -1,11 +1,9 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 +import QtQuick.Controls 2.1 import QtQuick.Layouts 1.3 -import QtQuick.Dialogs 1.2 import UM 1.2 as UM import Cura 1.0 as Cura @@ -91,10 +89,7 @@ Rectangle CuraApplication.getMaterialManagementModel().addFavorite(material.root_material_id) } } - style: ButtonStyle - { - background: Item { } - } + UM.RecolorImage { anchors diff --git a/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml b/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml new file mode 100644 index 0000000000..e592be6d5d --- /dev/null +++ b/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml @@ -0,0 +1,743 @@ +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Dialogs 1.2 +import QtQuick.Layouts 1.15 +import QtQuick.Window 2.1 +import Cura 1.1 as Cura +import UM 1.5 as UM + +Window +{ + id: materialsSyncDialog + property variant catalog: UM.I18nCatalog { name: "cura" } + + title: catalog.i18nc("@title:window", "Sync materials with printers") + minimumWidth: UM.Theme.getSize("modal_window_minimum").width + minimumHeight: UM.Theme.getSize("modal_window_minimum").height + width: minimumWidth + height: minimumHeight + modality: Qt.ApplicationModal + color: UM.Theme.getColor("main_background") + + property variant syncModel + property alias pageIndex: swipeView.currentIndex + property alias syncStatusText: syncStatusLabel.text + property bool hasExportedUsb: false + + SwipeView + { + id: swipeView + anchors.fill: parent + interactive: false + + Item + { + id: introPage + + ColumnLayout + { + spacing: UM.Theme.getSize("default_margin").height + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + + UM.Label + { + text: catalog.i18nc("@title:header", "Sync materials with printers") + font: UM.Theme.getFont("large_bold") + Layout.fillWidth: true + } + UM.Label + { + text: catalog.i18nc("@text", "Following a few simple steps, you will be able to synchronize all your material profiles with your printers.") + font: UM.Theme.getFont("medium") + Layout.fillWidth: true + } + + Image + { + Layout.fillWidth: true + Layout.fillHeight: true + source: UM.Theme.getImage("material_ecosystem") + fillMode: Image.PreserveAspectFit + sourceSize.width: width + } + + Item + { + Layout.preferredHeight: childrenRect.height + Layout.alignment: Qt.AlignBottom + Layout.fillWidth: true + + Cura.TertiaryButton + { + text: catalog.i18nc("@button", "Why do I need to sync material profiles?") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360013137919?utm_source=cura&utm_medium=software&utm_campaign=sync-material-printer-why") + } + + Cura.PrimaryButton + { + anchors.right: parent.right + text: catalog.i18nc("@button", "Start") + onClicked: + { + if(Cura.API.account.isLoggedIn) + { + swipeView.currentIndex += 2; //Skip sign in page. + } + else + { + swipeView.currentIndex += 1; + } + } + } + } + } + } + + Item + { + id: signinPage + + // While this page is active, continue to the next page if the user logs in. + Connections + { + target: Cura.API.account + function onLoginStateChanged(is_logged_in) + { + if(is_logged_in && signinPage.SwipeView.isCurrentItem) + { + swipeView.currentIndex += 1; + } + } + } + + ColumnLayout + { + spacing: UM.Theme.getSize("default_margin").height + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + + UM.Label + { + text: catalog.i18nc("@title:header", "Sign in") + font: UM.Theme.getFont("large_bold") + Layout.fillWidth: true + } + UM.Label + { + text: catalog.i18nc("@text", "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura.") + font: UM.Theme.getFont("medium") + Layout.fillWidth: true + } + + Image + { + Layout.alignment: Qt.AlignCenter + Layout.preferredWidth: parent.width / 2 + source: UM.Theme.getImage("first_run_ultimaker_cloud") + Layout.fillHeight: true + sourceSize.width: width + fillMode: Image.PreserveAspectFit + } + + Item + { + Layout.preferredHeight: childrenRect.height + Layout.alignment: Qt.AlignBottom + Layout.fillWidth: true + + Cura.SecondaryButton + { + anchors.left: parent.left + text: catalog.i18nc("@button", "Sync materials with USB") + onClicked: swipeView.currentIndex = removableDriveSyncPage.SwipeView.index + } + Cura.PrimaryButton + { + anchors.right: parent.right + text: catalog.i18nc("@button", "Sign in") + onClicked: Cura.API.account.login() + } + } + } + } + + Item + { + id: printerListPage + + ColumnLayout + { + spacing: UM.Theme.getSize("default_margin").height + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + visible: cloudPrinterList.count > 0 + + Row + { + spacing: UM.Theme.getSize("default_margin").width + + states: [ + State + { + name: "idle" + when: typeof syncModel === "undefined" || syncModel.exportUploadStatus == "idle" || syncModel.exportUploadStatus == "uploading" + PropertyChanges { target: printerListHeader; text: catalog.i18nc("@title:header", "The following printers will receive the new material profiles:") } + PropertyChanges { target: printerListHeaderIcon; status: UM.StatusIcon.Status.NEUTRAL; width: 0 } + }, + State + { + name: "error" + when: typeof syncModel !== "undefined" && syncModel.exportUploadStatus == "error" + PropertyChanges { target: printerListHeader; text: catalog.i18nc("@title:header", "Something went wrong when sending the materials to the printers.") } + PropertyChanges { target: printerListHeaderIcon; status: UM.StatusIcon.Status.ERROR } + }, + State + { + name: "success" + when: typeof syncModel !== "undefined" && syncModel.exportUploadStatus == "success" + PropertyChanges { target: printerListHeader; text: catalog.i18nc("@title:header", "Material profiles successfully synced with the following printers:") } + PropertyChanges { target: printerListHeaderIcon; status: UM.StatusIcon.Status.POSITIVE } + } + ] + + UM.StatusIcon + { + id: printerListHeaderIcon + width: UM.Theme.getSize("section_icon").width + height: UM.Theme.getSize("section_icon").height + anchors.verticalCenter: parent.verticalCenter + } + UM.Label + { + id: printerListHeader + anchors.verticalCenter: parent.verticalCenter + //Text is always defined by the states above. + font: UM.Theme.getFont("large_bold") + } + } + Row + { + Layout.fillWidth: true + Layout.preferredHeight: childrenRect.height + + UM.Label + { + id: syncStatusLabel + anchors.left: parent.left + wrapMode: Text.Wrap + elide: Text.ElideRight + visible: text !== "" + font: UM.Theme.getFont("medium") + } + Cura.TertiaryButton + { + id: troubleshootingLink + anchors.right: parent.right + text: catalog.i18nc("@button", "Troubleshooting") + visible: typeof syncModel !== "undefined" && syncModel.exportUploadStatus == "error" + iconSource: UM.Theme.getIcon("LinkExternal") + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=sync-material-wizard-troubleshoot-cloud-printer") + } + } + ListView + { + id: printerList + Layout.fillWidth: true + Layout.fillHeight: true + + clip: true + ScrollBar.vertical: UM.ScrollBar + { + id: printerListScrollBar + } + spacing: UM.Theme.getSize("default_margin").height + + model: cloudPrinterList + delegate: Rectangle + { + id: delegateContainer + color: "transparent" + border.color: UM.Theme.getColor("lining") + border.width: UM.Theme.getSize("default_lining").width + width: printerList.width - printerListScrollBar.width + height: UM.Theme.getSize("machine_selector_icon").height + 2 * UM.Theme.getSize("default_margin").height + + property string syncStatus: + { + var printer_id = model.metadata["host_guid"] + if(syncModel.printerStatus[printer_id] === undefined) //No status information available. Could be added after we started syncing. + { + return "idle"; + } + return syncModel.printerStatus[printer_id]; + } + + Cura.IconWithText + { + anchors + { + verticalCenter: parent.verticalCenter + left: parent.left + leftMargin: Math.round(parent.height - height) / 2 //Equal margin on the left as above and below. + right: parent.right + rightMargin: Math.round(parent.height - height) / 2 + } + + text: model.name + font: UM.Theme.getFont("medium") + + source: UM.Theme.getIcon("Printer", "medium") + iconColor: UM.Theme.getColor("machine_selector_printer_icon") + iconSize: UM.Theme.getSize("machine_selector_icon").width + + //Printer status badge (always cloud, but whether it's online or offline). + UM.RecolorImage + { + width: UM.Theme.getSize("printer_status_icon").width + height: UM.Theme.getSize("printer_status_icon").height + anchors + { + bottom: parent.bottom + bottomMargin: -Math.round(height / 6) + left: parent.left + leftMargin: parent.iconSize - Math.round(width * 5 / 6) + } + + source: UM.Theme.getIcon("CloudBadge", "low") + color: UM.Theme.getColor("primary") + + //Make a themeable circle in the background so we can change it in other themes. + Rectangle + { + anchors.centerIn: parent + width: parent.width - 1.5 //1.5 pixels smaller (at least sqrt(2), regardless of pixel scale) so that the circle doesn't show up behind the icon due to anti-aliasing. + height: parent.height - 1.5 + radius: width / 2 + color: UM.Theme.getColor("connection_badge_background") + z: parent.z - 1 + } + } + } + + UM.RecolorImage + { + id: printerSpinner + width: UM.Theme.getSize("section_icon").width + height: width + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + anchors.rightMargin: Math.round((parent.height - height) / 2) //Same margin on the right as above and below. + + visible: delegateContainer.syncStatus === "uploading" + source: UM.Theme.getIcon("ArrowDoubleCircleRight") + color: UM.Theme.getColor("primary") + + RotationAnimator + { + target: printerSpinner + from: 0 + to: 360 + duration: 1000 + loops: Animation.Infinite + running: true + } + } + UM.StatusIcon + { + width: UM.Theme.getSize("section_icon").width + height: width + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + anchors.rightMargin: Math.round((parent.height - height) / 2) //Same margin on the right as above and below. + + visible: delegateContainer.syncStatus === "failed" || delegateContainer.syncStatus === "success" + status: delegateContainer.syncStatus === "success" ? UM.StatusIcon.Status.POSITIVE : UM.StatusIcon.Status.ERROR + } + } + + footer: Item + { + width: printerList.width - printerListScrollBar.width + height: childrenRect.height + UM.Theme.getSize("default_margin").height + visible: includeOfflinePrinterList.count - cloudPrinterList.count > 0 && typeof syncModel !== "undefined" && syncModel.exportUploadStatus === "idle" + Rectangle + { + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + border.color: UM.Theme.getColor("lining") + border.width: UM.Theme.getSize("default_lining").width + anchors.topMargin: UM.Theme.getSize("default_margin").height + height: childrenRect.height + 2 * UM.Theme.getSize("thick_margin").height + + color: "transparent" + + GridLayout + { + columns: 3 + rows: 2 + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.leftMargin: UM.Theme.getSize("thick_margin").width + anchors.rightMargin: UM.Theme.getSize("thick_margin").width + anchors.topMargin: UM.Theme.getSize("thick_margin").height + anchors.bottomMargin: UM.Theme.getSize("thick_margin").height + columnSpacing: UM.Theme.getSize("default_margin").width + rowSpacing: UM.Theme.getSize("default_margin").height + + UM.StatusIcon + { + Layout.preferredWidth: UM.Theme.getSize("section_icon").width + Layout.preferredHeight: UM.Theme.getSize("section_icon").height + status: UM.StatusIcon.Status.WARNING + } + + UM.Label + { + Layout.fillWidth: true + Layout.alignment: Qt.AlignVCenter + text: catalog.i18nc("@text Asking the user whether printers are missing in a list.", "Printers missing?") + + "\n" + + catalog.i18nc("@text", "Make sure all your printers are turned ON and connected to Digital Factory.") + font: UM.Theme.getFont("medium") + elide: Text.ElideRight + } + + Cura.SecondaryButton + { + id: refreshListButton + Layout.alignment: Qt.AlignVCenter + text: catalog.i18nc("@button", "Refresh List") + iconSource: UM.Theme.getIcon("ArrowDoubleCircleRight") + onClicked: Cura.API.account.sync(true) + } + + Cura.TertiaryButton + { + id: printerListTroubleshooting + Layout.column: 1 + Layout.row: 1 + Layout.fillWidth: true + leftPadding: 0 + text: catalog.i18nc("@button", "Troubleshooting") + iconSource: UM.Theme.getIcon("LinkExternal") + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=sync-material-wizard-troubleshoot-cloud-printer") + } + } + } + } + } + Item + { + Layout.fillWidth: true + Layout.preferredHeight: childrenRect.height + Layout.alignment: Qt.AlignBottom + + Cura.SecondaryButton + { + anchors.left: parent.left + text: catalog.i18nc("@button", "Sync materials with USB") + onClicked: swipeView.currentIndex = removableDriveSyncPage.SwipeView.index + } + Cura.PrimaryButton + { + id: syncButton + anchors.right: parent.right + text: + { + if(typeof syncModel !== "undefined" && syncModel.exportUploadStatus == "error") + { + return catalog.i18nc("@button", "Try again"); + } + if(typeof syncModel !== "undefined" && syncModel.exportUploadStatus == "success") + { + return catalog.i18nc("@button", "Done"); + } + return catalog.i18nc("@button", "Sync"); + } + onClicked: + { + if(typeof syncModel !== "undefined" && syncModel.exportUploadStatus == "success") + { + materialsSyncDialog.close(); + } + else + { + syncModel.exportUpload(); + } + } + visible: + { + if(!syncModel) //When the dialog is created, this is not set yet. + { + return true; + } + return syncModel.exportUploadStatus != "uploading"; + } + } + Item + { + anchors.right: parent.right + width: childrenRect.width + height: syncButton.height + + visible: !syncButton.visible + + UM.RecolorImage + { + id: syncingIcon + height: UM.Theme.getSize("action_button_icon").height + width: height + anchors.verticalCenter: syncingLabel.verticalCenter + + source: UM.Theme.getIcon("ArrowDoubleCircleRight") + color: UM.Theme.getColor("primary") + + RotationAnimator + { + target: syncingIcon + from: 0 + to: 360 + duration: 1000 + loops: Animation.Infinite + running: true + } + } + UM.Label + { + id: syncingLabel + anchors.left: syncingIcon.right + anchors.leftMargin: UM.Theme.getSize("narrow_margin").width + + text: catalog.i18nc("@button", "Syncing") + color: UM.Theme.getColor("primary") + font: UM.Theme.getFont("medium") + } + } + } + } + + // Placeholder for when the user has no cloud printers. + ColumnLayout + { + spacing: UM.Theme.getSize("default_margin").height + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + visible: cloudPrinterList.count == 0 + + UM.Label + { + text: catalog.i18nc("@title:header", "No printers found") + font: UM.Theme.getFont("large_bold") + Layout.fillWidth: true + } + + Item + { + Layout.fillWidth: true + Layout.fillHeight: true + + Image + { + anchors.fill: parent + source: UM.Theme.getImage("3d_printer_faded") + sourceSize.width: width + fillMode: Image.PreserveAspectFit + } + } + + UM.Label + { + text: catalog.i18nc("@text", "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware.") + Layout.fillWidth: true + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.Wrap + } + + Item + { + Layout.fillWidth: true + Layout.preferredHeight: parent.height / 4 + Cura.TertiaryButton + { + text: catalog.i18nc("@button", "Learn how to connect your printer to Digital Factory") + iconSource: UM.Theme.getIcon("LinkExternal") + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=sync-material-wizard-add-cloud-printer") + anchors.horizontalCenter: parent.horizontalCenter + maximumWidth: parent.width + } + } + + Item + { + Layout.preferredHeight: childrenRect.height + Layout.alignment: Qt.AlignBottom + Layout.fillWidth: true + + Cura.SecondaryButton + { + anchors.left: parent.left + text: catalog.i18nc("@button", "Sync materials with USB") + onClicked: swipeView.currentIndex = removableDriveSyncPage.SwipeView.index + } + + RowLayout + { + anchors.right: parent.right + spacing: UM.Theme.getSize("default_margin").width + + Cura.SecondaryButton + { + text: catalog.i18nc("@button", "Refresh") + iconSource: UM.Theme.getIcon("ArrowDoubleCircleRight") + outlineColor: "transparent" + onClicked: Cura.API.account.sync(true) + } + + Cura.PrimaryButton + { + id: disabledSyncButton + text: catalog.i18nc("@button", "Sync") + enabled: false // If there are no printers, always disable this button. + } + } + } + } + } + + Item + { + id: removableDriveSyncPage + + ColumnLayout + { + spacing: UM.Theme.getSize("default_margin").height + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + + UM.Label + { + text: catalog.i18nc("@title:header", "Sync material profiles via USB") + font: UM.Theme.getFont("large_bold") + Layout.fillWidth: true + } + UM.Label + { + text: catalog.i18nc("@text In the UI this is followed by a list of steps the user needs to take.", "Follow the following steps to load the new material profiles to your printer.") + font: UM.Theme.getFont("medium") + wrapMode: Text.Wrap + Layout.fillWidth: true + } + + RowLayout + { + Layout.fillWidth: true + Layout.fillHeight: true + spacing: UM.Theme.getSize("default_margin").width + + Item + { + Layout.preferredWidth: parent.width / 3 + Layout.fillHeight: true + + Image + { + anchors.fill: parent + source: UM.Theme.getImage("insert_usb") + verticalAlignment: Image.AlignVCenter + horizontalAlignment: Image.AlignHCenter + fillMode: Image.PreserveAspectFit + sourceSize.width: width + } + } + + UM.Label + { + Layout.alignment: Qt.AlignCenter + Layout.fillWidth: true + text: "1. " + catalog.i18nc("@text", "Click the export material archive button.") + + "\n2. " + catalog.i18nc("@text", "Save the .umm file on a USB stick.") + + "\n3. " + catalog.i18nc("@text", "Insert the USB stick into your printer and launch the procedure to load new material profiles.") + font: UM.Theme.getFont("medium") + } + } + + Cura.TertiaryButton + { + Layout.fillWidth: true + text: catalog.i18nc("@button", "How to load new material profiles to my printer") + iconSource: UM.Theme.getIcon("LinkExternal") + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/4403319801106/?utm_source=cura&utm_medium=software&utm_campaign=add-material-profiles-via-usb") + } + + Item + { + Layout.preferredHeight: childrenRect.height + Layout.alignment: Qt.AlignBottom + Layout.fillWidth: true + + Cura.SecondaryButton + { + anchors.left: parent.left + text: catalog.i18nc("@button", "Back") + onClicked: swipeView.currentIndex = 0 //Reset to first page. + } + Cura.PrimaryButton + { + id: exportUsbButton + anchors.right: parent.right + + property bool hasExported: false + text: materialsSyncDialog.hasExportedUsb ? catalog.i18nc("@button", "Done") : catalog.i18nc("@button", "Export material archive") + onClicked: + { + if(!materialsSyncDialog.hasExportedUsb) + { + exportUsbDialog.folder = syncModel.getPreferredExportAllPath(); + exportUsbDialog.open(); + } + else + { + materialsSyncDialog.close(); + } + } + } + } + } + } + } + + property variant cloudPrinterList: Cura.GlobalStacksModel + { + filterConnectionType: 3 //Only show cloud connections. + filterOnlineOnly: true //Only show printers that are online. + filterCapabilities: ["import_material"] //Only show printers that can receive the material profiles. + } + + property variant includeOfflinePrinterList: Cura.GlobalStacksModel + { + //In order to show a refresh button only when there are offline cloud printers, we need to know if there are any offline printers. + //A global stacks model without the filter for online-only printers allows this. + filterConnectionType: 3 //Still only show cloud connections. + } + + property variant exportUsbDialog: FileDialog + { + title: catalog.i18nc("@title:window", "Export All Materials") + selectExisting: false + nameFilters: ["Material archives (*.umm)", "All files (*)"] + onAccepted: + { + syncModel.exportAll(fileUrl); + CuraApplication.setDefaultPath("dialog_material_path", folder); + materialsSyncDialog.hasExportedUsb = true; + } + } +} \ No newline at end of file diff --git a/resources/qml/Preferences/Materials/MaterialsTypeSection.qml b/resources/qml/Preferences/Materials/MaterialsTypeSection.qml index 09f9964604..0a5d0e89e7 100644 --- a/resources/qml/Preferences/Materials/MaterialsTypeSection.qml +++ b/resources/qml/Preferences/Materials/MaterialsTypeSection.qml @@ -3,11 +3,9 @@ import QtQuick 2.7 import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 import QtQuick.Layouts 1.3 -import QtQuick.Dialogs 1.2 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -57,13 +55,12 @@ Item { left: parent ? parent.left : undefined } - Label + UM.Label { text: materialName height: UM.Theme.getSize("favorites_row").height width: parent.width - parent.leftPadding - UM.Theme.getSize("favorites_button").width id: material_type_name - verticalAlignment: Text.AlignVCenter } Item // this one causes lots of warnings { diff --git a/resources/qml/Preferences/Materials/MaterialsView.qml b/resources/qml/Preferences/Materials/MaterialsView.qml index 489ff1f33e..915d36ff57 100644 --- a/resources/qml/Preferences/Materials/MaterialsView.qml +++ b/resources/qml/Preferences/Materials/MaterialsView.qml @@ -1,16 +1,16 @@ -// Copyright (c) 2017 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.15 import QtQuick.Dialogs 1.2 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura import ".." // Access to ReadOnlyTextArea.qml -TabView +Item { id: base @@ -39,14 +39,14 @@ TabView } if (!base.containerId || !base.editingEnabled || !base.currentMaterialNode) { - return "" + return ""; } var linkedMaterials = Cura.ContainerManager.getLinkedMaterials(base.currentMaterialNode, true); if (linkedMaterials.length == 0) { - return "" + return ""; } - return linkedMaterials; + return linkedMaterials.join(", "); } function getApproximateDiameter(diameter) @@ -67,402 +67,421 @@ TabView } } - Tab + UM.TabRow { - title: catalog.i18nc("@title", "Information") - - anchors.margins: UM.Theme.getSize("default_margin").width - - ScrollView + id: pageSelectorTabRow + UM.TabRowButton { - id: scrollView - anchors.fill: parent - horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff - flickableItem.flickableDirection: Flickable.VerticalFlick - frameVisible: true + text: catalog.i18nc("@title", "Information") + property string activeView: "information" //To determine which page gets displayed. + } + UM.TabRowButton + { + text: catalog.i18nc("@label", "Print settings") + property string activeView: "settings" + } + } - property real columnWidth: (viewport.width * 0.5 - UM.Theme.getSize("default_margin").width) | 0 + ScrollView + { + id: informationPage + anchors + { + top: pageSelectorTabRow.bottom + left: parent.left + right: parent.right + bottom: parent.bottom + } - Flow + ScrollBar.vertical: UM.ScrollBar + { + parent: informationPage + anchors { - id: containerGrid + top: parent.top + right: parent.right + bottom: parent.bottom + } + } + ScrollBar.horizontal.policy: ScrollBar.AlwaysOff + clip: true + visible: pageSelectorTabRow.currentItem.activeView === "information" - x: UM.Theme.getSize("default_margin").width - y: UM.Theme.getSize("default_lining").height + property real columnWidth: (width * 0.5 - UM.Theme.getSize("default_margin").width) | 0 - width: base.width - property real rowHeight: brandTextField.height + UM.Theme.getSize("default_lining").height + Flow + { + id: containerGrid - MessageDialog + x: UM.Theme.getSize("default_margin").width + y: UM.Theme.getSize("default_lining").height + + width: base.width + property real rowHeight: brandTextField.height + UM.Theme.getSize("default_lining").height + + Cura.MessageDialog + { + id: confirmDiameterChangeDialog + + title: catalog.i18nc("@title:window", "Confirm Diameter Change") + text: catalog.i18nc("@label (%1 is a number)", "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?".arg(new_diameter_value)) + standardButtons: Dialog.Yes | Dialog.No + + property var new_diameter_value: null + property var old_diameter_value: null + property var old_approximate_diameter_value: null + + onAccepted: { - id: confirmDiameterChangeDialog - - icon: StandardIcon.Question; - title: catalog.i18nc("@title:window", "Confirm Diameter Change") - text: catalog.i18nc("@label (%1 is a number)", "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?".arg(new_diameter_value)) - standardButtons: StandardButton.Yes | StandardButton.No - modality: Qt.ApplicationModal - - property var new_diameter_value: null; - property var old_diameter_value: null; - property var old_approximate_diameter_value: null; - - onYes: - { - base.setMetaDataEntry("approximate_diameter", old_approximate_diameter_value, getApproximateDiameter(new_diameter_value).toString()); - base.setMetaDataEntry("properties/diameter", properties.diameter, new_diameter_value); - // CURA-6868 Make sure to update the extruder to user a diameter-compatible material. - Cura.MachineManager.updateMaterialWithVariant() - base.resetSelectedMaterial() - } - - onNo: - { - base.properties.diameter = old_diameter_value; - diameterSpinBox.value = Qt.binding(function() { return base.properties.diameter }) - } - - onRejected: no() + base.setMetaDataEntry("approximate_diameter", old_approximate_diameter_value, getApproximateDiameter(new_diameter_value).toString()); + base.setMetaDataEntry("properties/diameter", properties.diameter, new_diameter_value); + // CURA-6868 Make sure to update the extruder to user a diameter-compatible material. + Cura.MachineManager.updateMaterialWithVariant() + base.resetSelectedMaterial() } - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Display Name") } - ReadOnlyTextField + onRejected: { - id: displayNameTextField; - width: scrollView.columnWidth; - text: properties.name; - readOnly: !base.editingEnabled; - onEditingFinished: base.updateMaterialDisplayName(properties.name, text) + base.properties.diameter = old_diameter_value; + diameterSpinBox.value = Qt.binding(function() { return base.properties.diameter }) } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Brand") } - ReadOnlyTextField - { - id: brandTextField; - width: scrollView.columnWidth; - text: properties.brand; - readOnly: !base.editingEnabled; - onEditingFinished: base.updateMaterialBrand(properties.brand, text) - } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Material Type") } - ReadOnlyTextField - { - id: materialTypeField; - width: scrollView.columnWidth; - text: properties.material; - readOnly: !base.editingEnabled; - onEditingFinished: base.updateMaterialType(properties.material, text) - } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Color") } - Row - { - width: scrollView.columnWidth - height: parent.rowHeight - spacing: Math.round(UM.Theme.getSize("default_margin").width / 2) - - // color indicator square - Rectangle - { - id: colorSelector - color: properties.color_code - - width: Math.round(colorLabel.height * 0.75) - height: Math.round(colorLabel.height * 0.75) - border.width: UM.Theme.getSize("default_lining").height - - anchors.verticalCenter: parent.verticalCenter - - // open the color selection dialog on click - MouseArea - { - anchors.fill: parent - onClicked: colorDialog.open() - enabled: base.editingEnabled - } - } - - // pretty color name text field - ReadOnlyTextField - { - id: colorLabel; - width: parent.width - colorSelector.width - parent.spacing - text: properties.color_name; - readOnly: !base.editingEnabled - onEditingFinished: base.setMetaDataEntry("color_name", properties.color_name, text) - } - - // popup dialog to select a new color - // if successful it sets the properties.color_code value to the new color - ColorDialog - { - id: colorDialog - color: properties.color_code - onAccepted: base.setMetaDataEntry("color_code", properties.color_code, color) - } - } - - Item { width: parent.width; height: UM.Theme.getSize("default_margin").height } - - Label { width: parent.width; height: parent.rowHeight; font.bold: true; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Properties") } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Density") } - ReadOnlySpinBox - { - id: densitySpinBox - width: scrollView.columnWidth - value: properties.density - decimals: 2 - suffix: " g/cm³" - stepSize: 0.01 - readOnly: !base.editingEnabled - - onEditingFinished: base.setMetaDataEntry("properties/density", properties.density, value) - onValueChanged: updateCostPerMeter() - } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Diameter") } - ReadOnlySpinBox - { - id: diameterSpinBox - width: scrollView.columnWidth - value: properties.diameter - decimals: 2 - suffix: " mm" - stepSize: 0.01 - readOnly: !base.editingEnabled - - onEditingFinished: - { - // This does not use a SettingPropertyProvider, because we need to make the change to all containers - // which derive from the same base_file - var old_diameter = Cura.ContainerManager.getContainerMetaDataEntry(base.containerId, "properties/diameter"); - var old_approximate_diameter = Cura.ContainerManager.getContainerMetaDataEntry(base.containerId, "approximate_diameter"); - var new_approximate_diameter = getApproximateDiameter(value); - if (new_approximate_diameter != Cura.ExtruderManager.getActiveExtruderStack().approximateMaterialDiameter) - { - confirmDiameterChangeDialog.old_diameter_value = old_diameter; - confirmDiameterChangeDialog.new_diameter_value = value; - confirmDiameterChangeDialog.old_approximate_diameter_value = old_approximate_diameter; - - confirmDiameterChangeDialog.open() - } - else { - base.setMetaDataEntry("approximate_diameter", old_approximate_diameter, getApproximateDiameter(value).toString()); - base.setMetaDataEntry("properties/diameter", properties.diameter, value); - } - } - onValueChanged: updateCostPerMeter() - } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Filament Cost") } - SpinBox - { - id: spoolCostSpinBox - width: scrollView.columnWidth - value: base.getMaterialPreferenceValue(properties.guid, "spool_cost") - prefix: base.currency + " " - decimals: 2 - maximumValue: 100000000 - - onValueChanged: - { - base.setMaterialPreferenceValue(properties.guid, "spool_cost", parseFloat(value)) - updateCostPerMeter() - } - } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Filament weight") } - SpinBox - { - id: spoolWeightSpinBox - width: scrollView.columnWidth - value: base.getMaterialPreferenceValue(properties.guid, "spool_weight", Cura.ContainerManager.getContainerMetaDataEntry(properties.container_id, "properties/weight")) - suffix: " g" - stepSize: 100 - decimals: 0 - maximumValue: 10000 - - onValueChanged: - { - base.setMaterialPreferenceValue(properties.guid, "spool_weight", parseFloat(value)) - updateCostPerMeter() - } - } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Filament length") } - Label - { - width: scrollView.columnWidth - text: "~ %1 m".arg(Math.round(base.spoolLength)) - verticalAlignment: Qt.AlignVCenter - height: parent.rowHeight - } - - Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Cost per Meter") } - Label - { - width: scrollView.columnWidth - text: "~ %1 %2/m".arg(base.costPerMeter.toFixed(2)).arg(base.currency) - verticalAlignment: Qt.AlignVCenter - height: parent.rowHeight - } - - Item { width: parent.width; height: UM.Theme.getSize("default_margin").height; visible: unlinkMaterialButton.visible } - Label - { - width: 2 * scrollView.columnWidth - verticalAlignment: Qt.AlignVCenter - text: catalog.i18nc("@label", "This material is linked to %1 and shares some of its properties.").arg(base.linkedMaterialNames) - wrapMode: Text.WordWrap - visible: unlinkMaterialButton.visible - } - Button - { - id: unlinkMaterialButton - text: catalog.i18nc("@label", "Unlink Material") - visible: base.linkedMaterialNames != "" - onClicked: - { - Cura.ContainerManager.unlinkMaterial(base.currentMaterialNode) - base.reevaluateLinkedMaterials = true - } - } - - Item { width: parent.width; height: UM.Theme.getSize("default_margin").height } - - Label { width: parent.width; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Description") } - - ReadOnlyTextArea - { - text: properties.description; - width: 2 * scrollView.columnWidth - wrapMode: Text.WordWrap - - readOnly: !base.editingEnabled; - - onEditingFinished: base.setMetaDataEntry("description", properties.description, text) - } - - Label { width: parent.width; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Adhesion Information") } - - ReadOnlyTextArea - { - text: properties.adhesion_info; - width: 2 * scrollView.columnWidth - wrapMode: Text.WordWrap - - readOnly: !base.editingEnabled; - - onEditingFinished: base.setMetaDataEntry("adhesion_info", properties.adhesion_info, text) - } - - Item { width: parent.width; height: UM.Theme.getSize("default_margin").height } } - function updateCostPerMeter() + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Display Name") } + Cura.TextField { - base.spoolLength = calculateSpoolLength(diameterSpinBox.value, densitySpinBox.value, spoolWeightSpinBox.value); - base.costPerMeter = calculateCostPerMeter(spoolCostSpinBox.value); + id: displayNameTextField; + width: informationPage.columnWidth; + text: properties.name; + enabled: base.editingEnabled; + onEditingFinished: base.updateMaterialDisplayName(properties.name, text) + } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Brand") } + Cura.TextField + { + id: brandTextField + width: informationPage.columnWidth + text: properties.brand + enabled: base.editingEnabled + onEditingFinished: base.updateMaterialBrand(properties.brand, text) + } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Material Type") } + Cura.TextField + { + id: materialTypeField + width: informationPage.columnWidth + text: properties.material + enabled: base.editingEnabled + onEditingFinished: base.updateMaterialType(properties.material, text) + } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Color") } + Row + { + width: informationPage.columnWidth + height: parent.rowHeight + spacing: Math.round(UM.Theme.getSize("default_margin").width / 2) + + // color indicator square + Rectangle + { + id: colorSelector + color: properties.color_code + + width: Math.round(colorLabel.height * 0.75) + height: Math.round(colorLabel.height * 0.75) + border.width: UM.Theme.getSize("default_lining").height + + anchors.verticalCenter: parent.verticalCenter + + // open the color selection dialog on click + MouseArea + { + anchors.fill: parent + onClicked: colorDialog.open() + enabled: base.editingEnabled + } + } + + // pretty color name text field + Cura.TextField + { + id: colorLabel; + width: parent.width - colorSelector.width - parent.spacing + text: properties.color_name; + enabled: base.editingEnabled + onEditingFinished: base.setMetaDataEntry("color_name", properties.color_name, text) + } + + // popup dialog to select a new color + // if successful it sets the properties.color_code value to the new color + Cura.ColorDialog + { + id: colorDialog + title: catalog.i18nc("@title", "Material color picker") + color: properties.color_code + onAccepted: base.setMetaDataEntry("color_code", properties.color_code, color) + } + } + + Item { width: parent.width; height: UM.Theme.getSize("default_margin").height } + + Label { width: parent.width; height: parent.rowHeight; font.bold: true; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Properties") } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Density") } + + Cura.SpinBox + { + enabled: base.editingEnabled + id: densitySpinBox + width: informationPage.columnWidth + value: properties.density + decimals: 2 + suffix: " g/cm³" + stepSize: 0.01 + + onEditingFinished: base.setMetaDataEntry("properties/density", properties.density, value) + onValueChanged: updateCostPerMeter() + } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Diameter") } + Cura.SpinBox + { + enabled: base.editingEnabled + id: diameterSpinBox + width: informationPage.columnWidth + value: properties.diameter + decimals: 2 + suffix: " mm" + stepSize: 0.01 + + onEditingFinished: + { + // This does not use a SettingPropertyProvider, because we need to make the change to all containers + // which derive from the same base_file + var old_diameter = Cura.ContainerManager.getContainerMetaDataEntry(base.containerId, "properties/diameter"); + var old_approximate_diameter = Cura.ContainerManager.getContainerMetaDataEntry(base.containerId, "approximate_diameter"); + var new_approximate_diameter = getApproximateDiameter(value); + if (new_approximate_diameter != Cura.ExtruderManager.getActiveExtruderStack().approximateMaterialDiameter) + { + confirmDiameterChangeDialog.old_diameter_value = old_diameter; + confirmDiameterChangeDialog.new_diameter_value = value; + confirmDiameterChangeDialog.old_approximate_diameter_value = old_approximate_diameter; + + confirmDiameterChangeDialog.open() + } + else { + base.setMetaDataEntry("approximate_diameter", old_approximate_diameter, getApproximateDiameter(value).toString()); + base.setMetaDataEntry("properties/diameter", properties.diameter, value); + } + } + onValueChanged: updateCostPerMeter() + } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Filament Cost") } + + Cura.SpinBox + { + id: spoolCostSpinBox + width: informationPage.columnWidth + value: base.getMaterialPreferenceValue(properties.guid, "spool_cost") + to: 100000000 + editable: true + prefix: base.currency + " " + decimals: 2 + + onValueChanged: + { + base.setMaterialPreferenceValue(properties.guid, "spool_cost", parseFloat(value)) + updateCostPerMeter() + } + } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Filament weight") } + Cura.SpinBox + { + id: spoolWeightSpinBox + width: informationPage.columnWidth + value: base.getMaterialPreferenceValue(properties.guid, "spool_weight", Cura.ContainerManager.getContainerMetaDataEntry(properties.container_id, "properties/weight")) + stepSize: 100 + to: 10000 + editable: true + suffix: " g" + + onValueChanged: + { + base.setMaterialPreferenceValue(properties.guid, "spool_weight", parseFloat(value)) + updateCostPerMeter() + } + } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Filament length") } + Label + { + width: informationPage.columnWidth + text: "~ %1 m".arg(Math.round(base.spoolLength)) + verticalAlignment: Qt.AlignVCenter + height: parent.rowHeight + } + + Label { width: informationPage.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Cost per Meter") } + Label + { + width: informationPage.columnWidth + text: "~ %1 %2/m".arg(base.costPerMeter.toFixed(2)).arg(base.currency) + verticalAlignment: Qt.AlignVCenter + height: parent.rowHeight + } + + Item { width: parent.width; height: UM.Theme.getSize("default_margin").height; visible: unlinkMaterialButton.visible } + Label + { + width: 2 * informationPage.columnWidth + verticalAlignment: Qt.AlignVCenter + text: catalog.i18nc("@label", "This material is linked to %1 and shares some of its properties.").arg(base.linkedMaterialNames) + wrapMode: Text.WordWrap + visible: unlinkMaterialButton.visible + } + Button + { + id: unlinkMaterialButton + text: catalog.i18nc("@label", "Unlink Material") + visible: base.linkedMaterialNames != "" + onClicked: + { + Cura.ContainerManager.unlinkMaterial(base.currentMaterialNode) + base.reevaluateLinkedMaterials = true + } + } + + Item { width: parent.width; height: UM.Theme.getSize("default_margin").height } + + Label { width: parent.width; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Description") } + + ReadOnlyTextArea + { + text: properties.description; + width: informationPage.columnWidth * 2 + height: 0.75 * informationPage.columnWidth + wrapMode: Text.WordWrap + + readOnly: !base.editingEnabled + + onEditingFinished: base.setMetaDataEntry("description", properties.description, text) + } + + Label { width: parent.width; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Adhesion Information") } + + ReadOnlyTextArea + { + text: properties.adhesion_info + width: 2 * informationPage.columnWidth + wrapMode: Text.WordWrap + height: 0.75 * informationPage.columnWidth + readOnly: !base.editingEnabled + + onEditingFinished: base.setMetaDataEntry("adhesion_info", properties.adhesion_info, text) + } + + Item { width: parent.width; height: UM.Theme.getSize("default_margin").height } + } + } + + ListView + { + anchors + { + top: pageSelectorTabRow.bottom + left: parent.left + right: parent.right + bottom: parent.bottom + } + + model: UM.SettingDefinitionsModel + { + containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" + visibilityHandler: Cura.MaterialSettingsVisibilityHandler { } + expanded: ["*"] + } + ScrollBar.vertical: UM.ScrollBar {} + clip: true + visible: pageSelectorTabRow.currentItem.activeView === "settings" + + delegate: UM.TooltipArea + { + width: childrenRect.width + height: childrenRect.height + text: model.description + Label + { + id: label + width: base.firstColumnWidth; + height: spinBox.height + UM.Theme.getSize("default_lining").height + text: model.label + elide: Text.ElideRight + verticalAlignment: Qt.AlignVCenter + } + Cura.SpinBox + { + id: spinBox + anchors.left: label.right + value: + { + // In case the setting is not in the material... + if (!isNaN(parseFloat(materialPropertyProvider.properties.value))) + { + return parseFloat(materialPropertyProvider.properties.value); + } + // ... we search in the variant, and if it is not there... + if (!isNaN(parseFloat(variantPropertyProvider.properties.value))) + { + return parseFloat(variantPropertyProvider.properties.value); + } + // ... then look in the definition container. + if (!isNaN(parseFloat(machinePropertyProvider.properties.value))) + { + return parseFloat(machinePropertyProvider.properties.value); + } + return 0; + } + width: base.secondColumnWidth + suffix: " " + model.unit + to: 99999 + decimals: model.unit == "mm" ? 2 : 0 + + onEditingFinished: materialPropertyProvider.setPropertyValue("value", value) + } + + UM.ContainerPropertyProvider + { + id: materialPropertyProvider + containerId: base.containerId + watchedProperties: [ "value" ] + key: model.key + } + UM.ContainerPropertyProvider + { + id: variantPropertyProvider + containerId: Cura.MachineManager.activeStack.variant.id + watchedProperties: [ "value" ] + key: model.key + } + UM.ContainerPropertyProvider + { + id: machinePropertyProvider + containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" + watchedProperties: [ "value" ] + key: model.key } } } - Tab + function updateCostPerMeter() { - title: catalog.i18nc("@label", "Print settings") - anchors - { - leftMargin: UM.Theme.getSize("default_margin").width - topMargin: UM.Theme.getSize("default_margin").height - bottomMargin: UM.Theme.getSize("default_margin").height - rightMargin: 0 - } - - ScrollView - { - anchors.fill: parent; - - ListView - { - model: UM.SettingDefinitionsModel - { - containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" - visibilityHandler: Cura.MaterialSettingsVisibilityHandler { } - expanded: ["*"] - } - - delegate: UM.TooltipArea - { - width: childrenRect.width - height: childrenRect.height - text: model.description - Label - { - id: label - width: base.firstColumnWidth; - height: spinBox.height + UM.Theme.getSize("default_lining").height - text: model.label - elide: Text.ElideRight - verticalAlignment: Qt.AlignVCenter - } - ReadOnlySpinBox - { - id: spinBox - anchors.left: label.right - value: - { - // In case the setting is not in the material... - if (!isNaN(parseFloat(materialPropertyProvider.properties.value))) - { - return parseFloat(materialPropertyProvider.properties.value); - } - // ... we search in the variant, and if it is not there... - if (!isNaN(parseFloat(variantPropertyProvider.properties.value))) - { - return parseFloat(variantPropertyProvider.properties.value); - } - // ... then look in the definition container. - if (!isNaN(parseFloat(machinePropertyProvider.properties.value))) - { - return parseFloat(machinePropertyProvider.properties.value); - } - return 0; - } - width: base.secondColumnWidth - readOnly: !base.editingEnabled - suffix: " " + model.unit - maximumValue: 99999 - decimals: model.unit == "mm" ? 2 : 0 - - onEditingFinished: materialPropertyProvider.setPropertyValue("value", value) - } - - UM.ContainerPropertyProvider - { - id: materialPropertyProvider - containerId: base.containerId - watchedProperties: [ "value" ] - key: model.key - } - UM.ContainerPropertyProvider - { - id: variantPropertyProvider - containerId: Cura.MachineManager.activeStack.variant.id - watchedProperties: [ "value" ] - key: model.key - } - UM.ContainerPropertyProvider - { - id: machinePropertyProvider - containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" - watchedProperties: [ "value" ] - key: model.key - } - } - } - } + base.spoolLength = calculateSpoolLength(diameterSpinBox.value, densitySpinBox.value, spoolWeightSpinBox.value); + base.costPerMeter = calculateCostPerMeter(spoolCostSpinBox.value); } function calculateSpoolLength(diameter, density, spoolWeight) diff --git a/resources/qml/Preferences/ProfileTab.qml b/resources/qml/Preferences/ProfileTab.qml deleted file mode 100644 index 3c0c46ed72..0000000000 --- a/resources/qml/Preferences/ProfileTab.qml +++ /dev/null @@ -1,118 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.7 -import QtQuick.Controls 1.4 - -import UM 1.2 as UM -import Cura 1.0 as Cura - -Tab -{ - id: base - - property int extruderPosition: -1 //Denotes the global stack. - property var qualityItem: null - - property bool isQualityItemCurrentlyActivated: - { - if (qualityItem == null) - { - return false; - } - return qualityItem.name == Cura.MachineManager.activeQualityOrQualityChangesName; - } - - TableView - { - anchors.fill: parent - anchors.margins: UM.Theme.getSize("default_margin").width - id: profileSettingsView - - Component - { - id: itemDelegate - - UM.TooltipArea - { - property var setting: qualitySettings.getItem(styleData.row) - height: childrenRect.height - width: (parent != null) ? parent.width : 0 - text: - { - if (styleData.value === undefined) - { - return "" - } - return (styleData.value.substr(0,1) == "=") ? styleData.value : "" - } - - Label - { - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - text: - { - if (styleData.value === undefined) - { - return "" - } - return (styleData.value.substr(0,1) == "=") ? catalog.i18nc("@info:status", "Calculated") : styleData.value - } - font.strikeout: styleData.column == 1 && setting.user_value != "" && base.isQualityItemCurrentlyActivated - font.italic: setting.profile_value_source == "quality_changes" || (setting.user_value != "" && base.isQualityItemCurrentlyActivated) - opacity: font.strikeout ? 0.5 : 1 - color: styleData.textColor - elide: Text.ElideRight - } - } - } - - TableViewColumn - { - role: "label" - title: catalog.i18nc("@title:column", "Setting") - width: (parent.width * 0.4) | 0 - delegate: itemDelegate - } - TableViewColumn - { - role: "profile_value" - title: catalog.i18nc("@title:column", "Profile") - width: (parent.width * 0.18) | 0 - delegate: itemDelegate - } - TableViewColumn - { - role: "user_value" - title: catalog.i18nc("@title:column", "Current"); - visible: base.isQualityItemCurrentlyActivated - width: (parent.width * 0.18) | 0 - delegate: itemDelegate - } - TableViewColumn - { - role: "unit" - title: catalog.i18nc("@title:column", "Unit") - width: (parent.width * 0.14) | 0 - delegate: itemDelegate - } - - section.property: "category" - section.delegate: Label - { - text: section - font.bold: true - } - - model: Cura.QualitySettingsModel - { - id: qualitySettings - selectedPosition: base.extruderPosition - selectedQualityItem: base.qualityItem == null ? {} : base.qualityItem - } - - SystemPalette { id: palette } - } -} diff --git a/resources/qml/Preferences/ProfilesPage.qml b/resources/qml/Preferences/ProfilesPage.qml index 9144d4dbe1..e5848a86c7 100644 --- a/resources/qml/Preferences/ProfilesPage.qml +++ b/resources/qml/Preferences/ProfilesPage.qml @@ -1,51 +1,29 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Uranium is released under the terms of the LGPLv3 or higher. +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 +import QtQuick.Controls 2.15 import QtQuick.Layouts 1.3 import QtQuick.Dialogs 1.2 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.6 as Cura -Item +UM.ManagementPage { id: base - property var resetEnabled: false // Keep PreferencesDialog happy property var extrudersModel: CuraApplication.getExtrudersModel() property var qualityManagementModel: CuraApplication.getQualityManagementModel() + property bool hasCurrentItem: base.currentItem != null - UM.I18nCatalog { id: catalog; name: "cura"; } + property var currentItem: objectList.currentIndex == -1 ? null : base.qualityManagementModel.getItem(objectList.currentIndex) - Label - { - id: titleLabel - anchors - { - top: parent.top - left: parent.left - right: parent.right - margins: 5 * screenScaleFactor - } - font.pointSize: 18 - text: catalog.i18nc("@title:tab", "Profiles") - } + property string currentItemName: hasCurrentItem ? base.currentItem.name : "" + property string currentItemDisplayName: hasCurrentItem ? base.qualityManagementModel.getQualityItemDisplayName(base.currentItem) : "" - property var hasCurrentItem: base.currentItem != null - - property var currentItem: - { - var current_index = qualityListView.currentIndex; - return (current_index == -1) ? null : base.qualityManagementModel.getItem(current_index); - } - - property var currentItemName: hasCurrentItem ? base.currentItem.name : "" - property var currentItemDisplayName: hasCurrentItem ? base.qualityManagementModel.getQualityItemDisplayName(base.currentItem) : "" - - property var isCurrentItemActivated: + property bool isCurrentItemActivated: { if (!base.currentItem) { @@ -61,133 +39,15 @@ Item } } - property var canCreateProfile: - { - return isCurrentItemActivated && Cura.MachineManager.hasUserSettings; - } + property bool canCreateProfile: Cura.MachineManager.hasUserSettings - Row // Button Row - { - id: buttonRow - anchors - { - left: parent.left - right: parent.right - top: titleLabel.bottom - } - height: childrenRect.height + signal createProfile() // Click create profile from ... in Profile context menu - // Activate button - Button - { - id: activateMenuButton - text: catalog.i18nc("@action:button", "Activate") - iconName: "list-activate" - enabled: !isCurrentItemActivated && base.currentItem - onClicked: - { - if(base.currentItem.is_read_only) - { - Cura.IntentManager.selectIntent(base.currentItem.intent_category, base.currentItem.quality_type); - } - else - { - Cura.MachineManager.setQualityChangesGroup(base.currentItem.quality_changes_group); - } - } - } + property string newQualityNameToSelect: "" + property bool toActivateNewQuality: false - // Create button - Button - { - id: createMenuButton - text: catalog.i18nc("@label", "Create") - iconName: "list-add" - enabled: base.canCreateProfile && !Cura.MachineManager.stacksHaveErrors - visible: base.canCreateProfile + onHamburgeButtonClicked: menu.popup(content_item, content_item.width - menu.width, hamburger_button.height) - onClicked: - { - createQualityDialog.object = Cura.ContainerManager.makeUniqueName(base.currentItem.name); - createQualityDialog.open(); - createQualityDialog.selectText(); - } - } - - // Duplicate button - Button - { - id: duplicateMenuButton - text: catalog.i18nc("@label", "Duplicate") - iconName: "list-add" - enabled: !base.canCreateProfile - visible: !base.canCreateProfile - - onClicked: - { - duplicateQualityDialog.object = Cura.ContainerManager.makeUniqueName(base.currentItem.name); - duplicateQualityDialog.open(); - duplicateQualityDialog.selectText(); - } - } - - // Remove button - Button - { - id: removeMenuButton - text: catalog.i18nc("@action:button", "Remove") - iconName: "list-remove" - enabled: base.hasCurrentItem && !base.currentItem.is_read_only && !base.isCurrentItemActivated - onClicked: - { - forceActiveFocus(); - confirmRemoveQualityDialog.open(); - } - } - - // Rename button - Button - { - id: renameMenuButton - text: catalog.i18nc("@action:button", "Rename") - iconName: "edit-rename" - enabled: base.hasCurrentItem && !base.currentItem.is_read_only - onClicked: - { - renameQualityDialog.object = base.currentItem.name; - renameQualityDialog.open(); - renameQualityDialog.selectText(); - } - } - - // Import button - Button - { - id: importMenuButton - text: catalog.i18nc("@action:button", "Import") - iconName: "document-import" - onClicked: - { - importDialog.open(); - } - } - - // Export button - Button - { - id: exportMenuButton - text: catalog.i18nc("@action:button", "Export") - iconName: "document-export" - enabled: base.hasCurrentItem && !base.currentItem.is_read_only - onClicked: - { - exportDialog.open(); - } - } - } - - // Click create profile from ... in Profile context menu - signal createProfile() onCreateProfile: { createQualityDialog.object = Cura.ContainerManager.makeUniqueName(Cura.MachineManager.activeQualityOrQualityChangesName); @@ -195,434 +55,354 @@ Item createQualityDialog.selectText(); } - // Dialog to request a name when creating a new profile - UM.RenameDialog - { - id: createQualityDialog - title: catalog.i18nc("@title:window", "Create Profile") - object: "" - explanation: catalog.i18nc("@info", "Please provide a name for this profile.") - onAccepted: - { - base.newQualityNameToSelect = newName; // We want to switch to the new profile once it's created - base.toActivateNewQuality = true; - base.qualityManagementModel.createQualityChanges(newName); - } - } + title: catalog.i18nc("@title:tab", "Profiles") + scrollviewCaption: catalog.i18nc("@label", "Profiles compatible with active printer:") + "
    " + Cura.MachineManager.activeMachine.name + "" - property string newQualityNameToSelect: "" - property bool toActivateNewQuality: false + hamburgerButtonVisible: hasCurrentItem - // This connection makes sure that we will switch to the correct quality after the model gets updated - Connections - { - target: base.qualityManagementModel - function onItemsChanged() + sectionRole: "section_name" + + model: qualityManagementModel + buttons: [ + Cura.SecondaryButton { - var toSelectItemName = base.currentItem == null ? "" : base.currentItem.name; - if (newQualityNameToSelect != "") + text: catalog.i18nc("@action:button", "Import") + onClicked:importDialog.open() + }, + Cura.SecondaryButton + { + id: createMenuButton + text: catalog.i18nc("@action:button", "Create new") + + enabled: !Cura.MachineManager.stacksHaveErrors + visible: base.canCreateProfile + + onClicked: { - toSelectItemName = newQualityNameToSelect; + createQualityDialog.object = Cura.ContainerManager.makeUniqueName(base.currentItem.name) + createQualityDialog.open() + createQualityDialog.selectText() } + } + ] - var newIdx = -1; // Default to nothing if nothing can be found - if (toSelectItemName != "") + Item + { + id: content_item + anchors.fill: parent + // This connection makes sure that we will switch to the correct quality after the model gets updated + Connections + { + target: base.qualityManagementModel + function onItemsChanged() { - // Select the required quality name if given - for (var idx = 0; idx < base.qualityManagementModel.count; ++idx) + var toSelectItemName = base.currentItem == null ? "" : base.currentItem.name; + if (newQualityNameToSelect != "") { - var item = base.qualityManagementModel.getItem(idx); - if (item && item.name == toSelectItemName) - { - // Switch to the newly created profile if needed - newIdx = idx; - if (base.toActivateNewQuality) - { - // Activate this custom quality if required - if(item.quality_changes_group) - { - Cura.MachineManager.setQualityChangesGroup(item.quality_changes_group); - } - } - break; - } + toSelectItemName = newQualityNameToSelect; } - } - qualityListView.currentIndex = newIdx; - // Reset states - base.newQualityNameToSelect = ""; - base.toActivateNewQuality = false; - } - } - - // Dialog to request a name when duplicating a new profile - UM.RenameDialog - { - id: duplicateQualityDialog - title: catalog.i18nc("@title:window", "Duplicate Profile") - object: "" - onAccepted: - { - base.qualityManagementModel.duplicateQualityChanges(newName, base.currentItem); - } - } - - // Confirmation dialog for removing a profile - MessageDialog - { - id: confirmRemoveQualityDialog - - icon: StandardIcon.Question; - title: catalog.i18nc("@title:window", "Confirm Remove") - text: catalog.i18nc("@label (%1 is object name)", "Are you sure you wish to remove %1? This cannot be undone!").arg(base.currentItemName) - standardButtons: StandardButton.Yes | StandardButton.No - modality: Qt.ApplicationModal - - onYes: - { - base.qualityManagementModel.removeQualityChangesGroup(base.currentItem.quality_changes_group); - // reset current item to the first if available - qualityListView.currentIndex = -1; // Reset selection. - } - } - - // Dialog to rename a quality profile - UM.RenameDialog - { - id: renameQualityDialog - title: catalog.i18nc("@title:window", "Rename Profile") - object: "" - onAccepted: - { - var actualNewName = base.qualityManagementModel.renameQualityChangesGroup(base.currentItem.quality_changes_group, newName); - base.newQualityNameToSelect = actualNewName; // Select the new name after the model gets updated - } - } - - // Dialog for importing a quality profile - FileDialog - { - id: importDialog - title: catalog.i18nc("@title:window", "Import Profile") - selectExisting: true - nameFilters: base.qualityManagementModel.getFileNameFilters("profile_reader") - folder: CuraApplication.getDefaultPath("dialog_profile_path") - onAccepted: - { - var result = Cura.ContainerManager.importProfile(fileUrl); - messageDialog.text = result.message; - if (result.status == "ok") - { - messageDialog.icon = StandardIcon.Information; - } - else if (result.status == "warning" || result.status == "duplicate") - { - messageDialog.icon = StandardIcon.Warning; - } - else - { - messageDialog.icon = StandardIcon.Critical; - } - messageDialog.open(); - CuraApplication.setDefaultPath("dialog_profile_path", folder); - } - } - - // Dialog for exporting a quality profile - FileDialog - { - id: exportDialog - title: catalog.i18nc("@title:window", "Export Profile") - selectExisting: false - nameFilters: base.qualityManagementModel.getFileNameFilters("profile_writer") - folder: CuraApplication.getDefaultPath("dialog_profile_path") - onAccepted: - { - var result = Cura.ContainerManager.exportQualityChangesGroup(base.currentItem.quality_changes_group, - fileUrl, selectedNameFilter); - - if (result && result.status == "error") - { - messageDialog.icon = StandardIcon.Critical; - messageDialog.text = result.message; - messageDialog.open(); - } - - // else pop-up Message thing from python code - CuraApplication.setDefaultPath("dialog_profile_path", folder); - } - } - - Item - { - id: contentsItem - - anchors - { - top: titleLabel.bottom - left: parent.left - right: parent.right - bottom: parent.bottom - margins: 5 * screenScaleFactor - bottomMargin: 0 - } - - clip: true - } - - Item - { - anchors - { - top: buttonRow.bottom - topMargin: UM.Theme.getSize("default_margin").height - left: parent.left - right: parent.right - bottom: parent.bottom - } - - SystemPalette - { - id: palette - } - - Label - { - id: captionLabel - anchors - { - top: parent.top - left: parent.left - } - visible: text != "" - text: catalog.i18nc("@label %1 is printer name", "Printer: %1").arg(Cura.MachineManager.activeMachine.name) - width: profileScrollView.width - elide: Text.ElideRight - } - - ScrollView - { - id: profileScrollView - anchors - { - top: captionLabel.visible ? captionLabel.bottom : parent.top - topMargin: captionLabel.visible ? UM.Theme.getSize("default_margin").height : 0 - bottom: parent.bottom - left: parent.left - } - - Rectangle - { - parent: viewport - anchors.fill: parent - color: palette.light - } - - width: true ? (parent.width * 0.4) | 0 : parent.width - frameVisible: true - clip: true - - ListView - { - id: qualityListView - - model: base.qualityManagementModel - - Component.onCompleted: + var newIdx = -1; // Default to nothing if nothing can be found + if (toSelectItemName != "") { - var selectedItemName = Cura.MachineManager.activeQualityOrQualityChangesName; - // Select the required quality name if given - for (var idx = 0; idx < base.qualityManagementModel.count; idx++) + for (var idx = 0; idx < base.qualityManagementModel.count; ++idx) { var item = base.qualityManagementModel.getItem(idx); - if (item.name == selectedItemName) + if (item && item.name == toSelectItemName) { - currentIndex = idx; + // Switch to the newly created profile if needed + newIdx = idx; + if (base.toActivateNewQuality) + { + // Activate this custom quality if required + if(item.quality_changes_group) + { + Cura.MachineManager.setQualityChangesGroup(item.quality_changes_group); + } + } break; } } } + objectList.currentIndex = newIdx; - section.property: "section_name" - section.delegate: Rectangle + // Reset states + base.newQualityNameToSelect = ""; + base.toActivateNewQuality = false; + } + } + Cura.MessageDialog + { + id: messageDialog + standardButtons: Dialog.Ok + } + + // Dialog to request a name when creating a new profile + Cura.RenameDialog + { + id: createQualityDialog + title: catalog.i18nc("@title:window", "Create Profile") + object: "" + explanation: catalog.i18nc("@info", "Please provide a name for this profile.") + onAccepted: + { + base.newQualityNameToSelect = newName; // We want to switch to the new profile once it's created + base.toActivateNewQuality = true; + base.qualityManagementModel.createQualityChanges(newName); + } + } + + Cura.Menu + { + id: menu + Cura.MenuItem + { + text: catalog.i18nc("@action:button", "Activate") + + enabled: !isCurrentItemActivated && base.currentItem + onTriggered: { - height: childrenRect.height - - Label + if(base.currentItem.is_read_only) { - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_lining").width - text: section - font.bold: true + Cura.IntentManager.selectIntent(base.currentItem.intent_category, base.currentItem.quality_type) + } + else + { + Cura.MachineManager.setQualityChangesGroup(base.currentItem.quality_changes_group) } } - - delegate: Rectangle + } + Cura.MenuItem + { + text: catalog.i18nc("@action:button", "Duplicate") + enabled: base.hasCurrentItem + onTriggered: { - width: profileScrollView.width - height: childrenRect.height + forceActiveFocus() + duplicateQualityDialog.open() + } + } + Cura.MenuItem + { + text: catalog.i18nc("@action:button", "Remove") + enabled: base.hasCurrentItem && !base.currentItem.is_read_only && !base.isCurrentItemActivated + onTriggered: + { + forceActiveFocus() + confirmRemoveQualityDialog.open() + } + } + Cura.MenuItem + { + text: catalog.i18nc("@action:button", "Rename") + enabled: base.hasCurrentItem && !base.currentItem.is_read_only + onTriggered: + { + renameQualityDialog.object = base.currentItem.name + renameQualityDialog.open() + renameQualityDialog.selectText() + } + } + Cura.MenuItem + { + text: catalog.i18nc("@action:button", "Export") + enabled: base.hasCurrentItem && !base.currentItem.is_read_only + onTriggered: exportDialog.open() + } + } - // Added this property to identify custom profiles in automated system tests (Squish) - property bool isReadOnly: model.is_read_only + // Dialog for exporting a quality profile + FileDialog + { + id: exportDialog + title: catalog.i18nc("@title:window", "Export Profile") + selectExisting: false + nameFilters: base.qualityManagementModel.getFileNameFilters("profile_writer") + folder: CuraApplication.getDefaultPath("dialog_profile_path") + onAccepted: + { + var result = Cura.ContainerManager.exportQualityChangesGroup(base.currentItem.quality_changes_group, + fileUrl, selectedNameFilter); - property bool isCurrentItem: ListView.isCurrentItem - color: isCurrentItem ? palette.highlight : (model.index % 2) ? palette.base : palette.alternateBase + if (result && result.status == "error") + { + messageDialog.title = catalog.i18nc("@title:window", "Export Profile") + messageDialog.text = result.message; + messageDialog.open(); + } - Label + // else pop-up Message thing from python code + CuraApplication.setDefaultPath("dialog_profile_path", folder); + } + } + + // Dialog to request a name when duplicating a new profile + Cura.RenameDialog + { + id: duplicateQualityDialog + title: catalog.i18nc("@title:window", "Duplicate Profile") + object: "" + onAccepted: base.qualityManagementModel.duplicateQualityChanges(newName, base.currentItem) + } + + // Confirmation dialog for removing a profile + Cura.MessageDialog + { + id: confirmRemoveQualityDialog + + title: catalog.i18nc("@title:window", "Confirm Remove") + text: catalog.i18nc("@label (%1 is object name)", "Are you sure you wish to remove %1? This cannot be undone!").arg(base.currentItemName) + standardButtons: StandardButton.Yes | StandardButton.No + modal: true + + onAccepted: + { + base.qualityManagementModel.removeQualityChangesGroup(base.currentItem.quality_changes_group); + // reset current item to the first if available + qualityListView.currentIndex = -1; // Reset selection. + } + } + + // Dialog to rename a quality profile + Cura.RenameDialog + { + id: renameQualityDialog + title: catalog.i18nc("@title:window", "Rename Profile") + object: "" + onAccepted: + { + var actualNewName = base.qualityManagementModel.renameQualityChangesGroup(base.currentItem.quality_changes_group, newName); + base.newQualityNameToSelect = actualNewName; // Select the new name after the model gets updated + } + } + + // Dialog for importing a quality profile + FileDialog + { + id: importDialog + title: catalog.i18nc("@title:window", "Import Profile") + selectExisting: true + nameFilters: base.qualityManagementModel.getFileNameFilters("profile_reader") + folder: CuraApplication.getDefaultPath("dialog_profile_path") + onAccepted: + { + var result = Cura.ContainerManager.importProfile(fileUrl); + messageDialog.title = catalog.i18nc("@title:window", "Import Profile") + messageDialog.text = result.message; + messageDialog.open(); + CuraApplication.setDefaultPath("dialog_profile_path", folder); + } + } + + Column + { + id: detailsPanelHeaderColumn + anchors + { + left: parent.left + right: parent.right + top: parent.top + } + + spacing: UM.Theme.getSize("default_margin").height + visible: base.currentItem != null + UM.Label + { + anchors.left: parent.left + anchors.right: parent.right + text: base.currentItemDisplayName + font: UM.Theme.getFont("large_bold") + elide: Text.ElideRight + } + + Flow + { + id: currentSettingsActions + width: parent.width + + visible: base.hasCurrentItem && base.currentItem.name == Cura.MachineManager.activeQualityOrQualityChangesName && base.currentItem.intent_category == Cura.MachineManager.activeIntentCategory + + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Update profile with current settings/overrides") + enabled: Cura.MachineManager.hasUserSettings && objectList.currentIndex && !objectList.currentIndex.is_read_only + onClicked: Cura.ContainerManager.updateQualityChanges() + } + + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Discard current changes") + enabled: Cura.MachineManager.hasUserSettings + onClicked: Cura.ContainerManager.clearUserContainers() + } + } + + UM.Label + { + id: defaultsMessage + visible: false + text: catalog.i18nc("@action:label", "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below.") + width: parent.width + } + UM.Label + { + id: noCurrentSettingsMessage + visible: base.isCurrentItemActivated && !Cura.MachineManager.hasUserSettings + text: catalog.i18nc("@action:label", "Your current settings match the selected profile.") + width: parent.width + } + + UM.TabRow + { + id: profileExtruderTabs + UM.TabRowButton // One extra tab for the global settings. + { + text: catalog.i18nc("@title:tab", "Global Settings") + } + + Repeater + { + model: base.extrudersModel + + UM.TabRowButton { - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - width: Math.floor((parent.width * 0.8)) text: model.name - elide: Text.ElideRight - font.italic: - { - if (model.is_read_only) - { - // For built-in qualities, it needs to match both the intent category and the quality name - return model.name == Cura.MachineManager.activeQualityOrQualityChangesName && model.intent_category == Cura.MachineManager.activeIntentCategory - } - else - { - // For custom qualities, it only needs to match the name - return model.name == Cura.MachineManager.activeQualityOrQualityChangesName - } - } - color: parent.isCurrentItem ? palette.highlightedText : palette.text - } - - MouseArea - { - anchors.fill: parent - onClicked: - { - parent.ListView.view.currentIndex = model.index; - } } } } } - // details panel on the right - Item + Rectangle { - id: detailsPanel - + color: UM.Theme.getColor("main_background") anchors { - left: profileScrollView.right - leftMargin: UM.Theme.getSize("default_margin").width - top: parent.top - bottom: parent.bottom + top: detailsPanelHeaderColumn.bottom + topMargin: -UM.Theme.getSize("default_lining").width + left: parent.left right: parent.right + bottom: parent.bottom } + border.width: UM.Theme.getSize("default_lining").width + border.color: UM.Theme.getColor("thick_lining") + visible: base.hasCurrentItem + } - Item + Cura.ProfileOverview + { + anchors { - anchors.fill: parent - visible: base.currentItem != null - - Item // Profile title Label - { - id: profileName - - width: parent.width - height: childrenRect.height - - Label - { - anchors.left: parent.left - anchors.right: parent.right - text: base.currentItemDisplayName - font: UM.Theme.getFont("large_bold") - elide: Text.ElideRight - renderType: Text.NativeRendering - } - } - - Flow - { - id: currentSettingsActions - visible: base.hasCurrentItem && base.currentItem.name == Cura.MachineManager.activeQualityOrQualityChangesName && base.currentItem.intent_category == Cura.MachineManager.activeIntentCategory - anchors.left: parent.left - anchors.right: parent.right - anchors.top: profileName.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - - Button - { - text: catalog.i18nc("@action:button", "Update profile with current settings/overrides") - enabled: Cura.MachineManager.hasUserSettings && !base.currentItem.is_read_only - onClicked: Cura.ContainerManager.updateQualityChanges() - } - - Button - { - text: catalog.i18nc("@action:button", "Discard current changes"); - enabled: Cura.MachineManager.hasUserSettings - onClicked: Cura.ContainerManager.clearUserContainers(); - } - } - - Column - { - id: profileNotices - anchors.top: currentSettingsActions.visible ? currentSettingsActions.bottom : currentSettingsActions.anchors.top - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.left: parent.left - anchors.right: parent.right - spacing: UM.Theme.getSize("default_margin").height - - Label - { - id: defaultsMessage - visible: false - text: catalog.i18nc("@action:label", "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below.") - wrapMode: Text.WordWrap - width: parent.width - } - Label - { - id: noCurrentSettingsMessage - visible: base.isCurrentItemActivated && !Cura.MachineManager.hasUserSettings - text: catalog.i18nc("@action:label", "Your current settings match the selected profile.") - wrapMode: Text.WordWrap - width: parent.width - } - } - - TabView - { - anchors.left: parent.left - anchors.top: profileNotices.visible ? profileNotices.bottom : profileNotices.anchors.top - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.right: parent.right - anchors.bottom: parent.bottom - - currentIndex: 0 - - ProfileTab - { - title: catalog.i18nc("@title:tab", "Global Settings") - qualityItem: base.currentItem - } - - Repeater - { - model: base.extrudersModel - - ProfileTab - { - title: model.name - extruderPosition: model.index - qualityItem: base.currentItem - } - } - } + top: detailsPanelHeaderColumn.bottom + margins: UM.Theme.getSize("default_margin").height + left: parent.left + right: parent.right + bottom: parent.bottom } + + visible: detailsPanelHeaderColumn.visible + qualityItem: base.currentItem + extruderPosition: profileExtruderTabs.currentIndex - 1 } } } diff --git a/resources/qml/Preferences/ReadOnlySpinBox.qml b/resources/qml/Preferences/ReadOnlySpinBox.qml deleted file mode 100644 index 11e47b38b2..0000000000 --- a/resources/qml/Preferences/ReadOnlySpinBox.qml +++ /dev/null @@ -1,54 +0,0 @@ -// Copyright (c) 2016 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.1 -import QtQuick.Controls 1.1 -import QtQuick.Dialogs 1.2 - -Item -{ - id: base - - property alias value: spinBox.value - property alias minimumValue: spinBox.minimumValue - property alias maximumValue: spinBox.maximumValue - property alias stepSize: spinBox.stepSize - property alias prefix: spinBox.prefix - property alias suffix: spinBox.suffix - property alias decimals: spinBox.decimals - - signal editingFinished(); - - property bool readOnly: false - - width: spinBox.width - height: spinBox.height - - SpinBox - { - id: spinBox - - enabled: !base.readOnly - opacity: base.readOnly ? 0.5 : 1.0 - - anchors.fill: parent - - onEditingFinished: base.editingFinished() - Keys.onEnterPressed: spinBox.focus = false - Keys.onReturnPressed: spinBox.focus = false - } - - Label - { - visible: base.readOnly - text: base.prefix + base.value.toFixed(spinBox.decimals) + base.suffix - - anchors.verticalCenter: parent.verticalCenter - anchors.left: parent.left - anchors.leftMargin: spinBox.__style ? spinBox.__style.padding.left : 0 - - color: palette.buttonText - } - - SystemPalette { id: palette } -} diff --git a/resources/qml/Preferences/ReadOnlyTextArea.qml b/resources/qml/Preferences/ReadOnlyTextArea.qml index 2c553ac2ca..c6f253f0ca 100644 --- a/resources/qml/Preferences/ReadOnlyTextArea.qml +++ b/resources/qml/Preferences/ReadOnlyTextArea.qml @@ -2,9 +2,10 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.1 -import QtQuick.Controls 1.1 +import QtQuick.Controls 2.15 +import UM 1.5 as UM -Item +ScrollView { id: base @@ -15,27 +16,25 @@ Item property bool readOnly: false - width: textArea.width - height: textArea.height - TextArea { id: textArea enabled: !base.readOnly - opacity: base.readOnly ? 0.5 : 1.0 + selectByMouse: true - anchors.fill: parent - - Keys.onReturnPressed: + background: Rectangle { - base.editingFinished() + radius: UM.Theme.getSize("setting_control_radius").width + color: textArea.enabled ? UM.Theme.getColor("setting_control") : UM.Theme.getColor("setting_control_disabled") } - Keys.onEnterPressed: - { - base.editingFinished() - } + color: UM.Theme.getColor("text") + font: UM.Theme.getFont("default") + + Keys.onReturnPressed: base.editingFinished() + + Keys.onEnterPressed: base.editingFinished() onActiveFocusChanged: { diff --git a/resources/qml/Preferences/ReadOnlyTextField.qml b/resources/qml/Preferences/ReadOnlyTextField.qml deleted file mode 100644 index 38d07d7d6a..0000000000 --- a/resources/qml/Preferences/ReadOnlyTextField.qml +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright (c) 2016 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. -// Different than the name suggests, it is not always read-only. - -import QtQuick 2.1 -import QtQuick.Controls 1.1 -import QtQuick.Dialogs 1.2 - -Item -{ - id: base - - property alias text: textField.text - - signal editingFinished(); - - property bool readOnly: false - - width: textField.width - height: textField.height - - TextField - { - id: textField - - enabled: !base.readOnly - opacity: base.readOnly ? 0.5 : 1.0 - - anchors.fill: parent - - onEditingFinished: base.editingFinished() - Keys.onEnterPressed: base.editingFinished() - Keys.onReturnPressed: base.editingFinished() - } - - Label - { - visible: base.readOnly - text: textField.text - - anchors.verticalCenter: parent.verticalCenter - anchors.left: parent.left - anchors.leftMargin: textField.__panel ? textField.__panel.leftMargin : 0 - - color: palette.buttonText - } - - SystemPalette { id: palette } -} diff --git a/resources/qml/Preferences/RenameDialog.qml b/resources/qml/Preferences/RenameDialog.qml new file mode 100644 index 0000000000..6e4c628114 --- /dev/null +++ b/resources/qml/Preferences/RenameDialog.qml @@ -0,0 +1,86 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Uranium is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.1 +import QtQuick.Controls 2.0 +import QtQuick.Window 2.1 + +import UM 1.5 as UM +import Cura 1.0 as Cura + +UM.Dialog +{ + id: base + + buttonSpacing: UM.Theme.getSize("default_margin").width + + property string object: "" + + property alias newName: nameField.text + property bool validName: true + property string validationError + property string dialogTitle: catalog.i18nc("@title:window", "Rename") + property string explanation: catalog.i18nc("@info", "Please provide a new name.") + + title: dialogTitle + + minimumWidth: UM.Theme.getSize("small_popup_dialog").width + minimumHeight: UM.Theme.getSize("small_popup_dialog").height + width: minimumWidth + height: minimumHeight + + property variant catalog: UM.I18nCatalog { name: "cura" } + + signal textChanged(string text) + signal selectText() + onSelectText: + { + nameField.selectAll(); + nameField.focus = true; + } + + Column + { + anchors.fill: parent + + UM.Label + { + text: base.explanation + "\n" //Newline to make some space using system theming. + width: parent.width + wrapMode: Text.WordWrap + } + + Cura.TextField + { + id: nameField + width: parent.width + text: base.object + maximumLength: 40 + selectByMouse: true + onTextChanged: base.textChanged(text) + } + + UM.Label + { + visible: !base.validName + text: base.validationError + } + } + + rightButtons: [ + Cura.SecondaryButton + { + id: cancelButton + text: catalog.i18nc("@action:button","Cancel") + onClicked: base.reject() + }, + Cura.PrimaryButton + { + id: okButton + text: catalog.i18nc("@action:button", "OK") + onClicked: base.accept() + enabled: base.validName + } + ] +} + diff --git a/resources/qml/Preferences/SettingVisibilityPage.qml b/resources/qml/Preferences/SettingVisibilityPage.qml index d2fd5c7e94..a29818ad4e 100644 --- a/resources/qml/Preferences/SettingVisibilityPage.qml +++ b/resources/qml/Preferences/SettingVisibilityPage.qml @@ -1,24 +1,29 @@ -// Copyright (c) 2016 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.1 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 +import QtQuick.Controls 2.15 -import QtQuick.Controls 2.3 as NewControls - -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura UM.PreferencesPage { - title: catalog.i18nc("@title:tab", "Setting Visibility"); + title: catalog.i18nc("@title:tab", "Setting Visibility") property QtObject settingVisibilityPresetsModel: CuraApplication.getSettingVisibilityPresetsModel() property int scrollToIndex: 0 + buttons: [ + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Defaults") + onClicked: reset() + } + ] + signal scrollToSection( string key ) onScrollToSection: { @@ -33,20 +38,20 @@ UM.PreferencesPage Item { - id: base; - anchors.fill: parent; + id: base + anchors.fill: parent - CheckBox + UM.CheckBox { id: toggleVisibleSettings anchors { - verticalCenter: filter.verticalCenter; - left: parent.left; + verticalCenter: filter.verticalCenter + left: parent.left leftMargin: UM.Theme.getSize("default_margin").width } text: catalog.i18nc("@label:textbox", "Check all") - checkedState: + checkState: { if(definitionsModel.visibleCount == definitionsModel.categoryCount) { @@ -61,14 +66,13 @@ UM.PreferencesPage return Qt.PartiallyChecked } } - partiallyCheckedEnabled: true - + tristate: true MouseArea { anchors.fill: parent; onClicked: { - if(parent.checkedState == Qt.Unchecked || parent.checkedState == Qt.PartiallyChecked) + if (parent.checkState == Qt.Unchecked || parent.checkState == Qt.PartiallyChecked) { definitionsModel.setAllExpandedVisible(true) } @@ -80,9 +84,9 @@ UM.PreferencesPage } } - TextField + Cura.TextField { - id: filter; + id: filter anchors { @@ -98,15 +102,15 @@ UM.PreferencesPage onTextChanged: definitionsModel.filter = {"i18n_label|i18n_description": "*" + text} } - NewControls.ComboBox + Cura.ComboBox { id: visibilityPreset - width: 150 * screenScaleFactor + width: UM.Theme.getSize("action_button").width anchors { top: parent.top right: parent.right - bottom: scrollView.top + verticalCenter: filter.verticalCenter } model: settingVisibilityPresetsModel.items @@ -133,63 +137,58 @@ UM.PreferencesPage } } - ScrollView + ListView { - id: scrollView - - frameVisible: true - + id: settingsListView anchors { - top: filter.bottom; + top: filter.bottom topMargin: UM.Theme.getSize("default_margin").height - left: parent.left; - right: parent.right; - bottom: parent.bottom; + left: parent.left + right: parent.right + bottom: parent.bottom } - ListView + + clip: true + ScrollBar.vertical: UM.ScrollBar {} + + model: UM.SettingDefinitionsModel { - id: settingsListView + id: definitionsModel + containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" + showAll: true + exclude: ["machine_settings", "command_line_settings"] + showAncestors: true + expanded: ["*"] + visibilityHandler: UM.SettingPreferenceVisibilityHandler {} + } - model: UM.SettingDefinitionsModel + delegate: Loader + { + id: loader + + width: settingsListView.width + height: model.type != undefined ? UM.Theme.getSize("section").height : 0 + + property var definition: model + property var settingDefinitionsModel: definitionsModel + + asynchronous: true + active: model.type != undefined + sourceComponent: { - id: definitionsModel - containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" - showAll: true - exclude: ["machine_settings", "command_line_settings"] - showAncestors: true - expanded: ["*"] - visibilityHandler: UM.SettingPreferenceVisibilityHandler {} - } - - delegate: Loader - { - id: loader - - width: settingsListView.width - height: model.type != undefined ? UM.Theme.getSize("section").height : 0 - - property var definition: model - property var settingDefinitionsModel: definitionsModel - - asynchronous: true - active: model.type != undefined - sourceComponent: + switch(model.type) { - switch(model.type) - { - case "category": - return settingVisibilityCategory - default: - return settingVisibilityItem - } + case "category": + return settingVisibilityCategory + default: + return settingVisibilityItem } } } } - UM.I18nCatalog { name: "cura"; } - SystemPalette { id: palette; } + UM.I18nCatalog { name: "cura" } Component { @@ -205,4 +204,4 @@ UM.PreferencesPage UM.SettingVisibilityItem { } } } -} \ No newline at end of file +} diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index 19c2562874..5be4bba6a4 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -2,8 +2,6 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 import QtQuick.Layouts 1.1 import UM 1.2 as UM diff --git a/resources/qml/PrintSetupHeaderButton.qml b/resources/qml/PrintSetupHeaderButton.qml new file mode 100644 index 0000000000..a4f95148da --- /dev/null +++ b/resources/qml/PrintSetupHeaderButton.qml @@ -0,0 +1,117 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +// Button with a label-like appearance that displays different states (these can be displayed by setting the +// `valueError` or `valueWarning` properties). Mainly used within the `CustomConfiguration` component. + +import QtQuick 2.1 +import QtQuick.Controls 2.1 + +import Cura 1.0 as Cura +import UM 1.5 as UM + +ToolButton +{ + id: base + + property alias tooltip: tooltip.text + + property bool valueError: false; + property bool valueWarning: false; + + UM.ToolTip + { + id: tooltip + visible: base.hovered + targetPoint: Qt.point(parent.x, Math.round(parent.y + parent.height / 2)) + } + + states: + [ + State + { + name: "disabled" + when: !base.enabled; + PropertyChanges + { + target: background + color: UM.Theme.getColor("setting_control_disabled") + liningColor: UM.Theme.getColor("setting_control_disabled_border") + } + }, + State + { + name: "value_error" + when: base.enabled && base.valueError + PropertyChanges + { + target: background + color: UM.Theme.getColor("setting_validation_error_background") + liningColor: UM.Theme.getColor("setting_validation_error") + } + }, + State + { + name: "value_warning" + when: base.enabled && base.valueWarning + PropertyChanges + { + target: background + color: UM.Theme.getColor("setting_validation_warning_background") + liningColor: UM.Theme.getColor("setting_validation_warning") + } + }, + State + { + name: "highlight" + when: base.enabled && base.hovered + PropertyChanges + { + target: background + color: UM.Theme.getColor("setting_control") + liningColor: UM.Theme.getColor("border_main") + } + }, + State + { + name: "neutral" + when: base.enabled && !base.hovered && !base.valueWarning && !base.valueError + PropertyChanges + { + target: background + color: UM.Theme.getColor("setting_control") + liningColor: UM.Theme.getColor("border_field_light") + } + } + ] + + background: UM.UnderlineBackground + { + id: background + + UM.RecolorImage + { + id: downArrow + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + anchors.rightMargin: UM.Theme.getSize("default_margin").width + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + sourceSize.height: width + color: base.enabled ? UM.Theme.getColor("setting_control_button") : UM.Theme.getColor("setting_category_disabled_text") + source: UM.Theme.getIcon("ChevronSingleDown") + } + } + + contentItem: UM.Label + { + id: printSetupComboBoxLabel + text: base.text + elide: Text.ElideRight; + anchors.left: parent.left; + anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width + anchors.right: downArrow.lef + anchors.rightMargin: base.rightMargin + anchors.verticalCenter: parent.verticalCenter + } +} diff --git a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml index cde2cd8dfc..6d3682d9ff 100644 --- a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml @@ -1,12 +1,11 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import QtQuick.Controls 1.4 as OldControls import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.6 as Cura import ".." @@ -34,7 +33,7 @@ Item rightMargin: parent.padding } - Label + UM.Label { id: profileLabel anchors @@ -46,9 +45,6 @@ Item } text: catalog.i18nc("@label", "Profile") font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - color: UM.Theme.getColor("text") - verticalAlignment: Text.AlignVCenter } NoIntentIcon @@ -80,21 +76,17 @@ Item anchors.right: customisedSettings.left anchors.leftMargin: UM.Theme.getSize("default_margin").width - Label + UM.Label { id: textLabel text: Cura.MachineManager.activeQualityDisplayNameMap["main"] - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") Layout.margins: 0 Layout.maximumWidth: Math.floor(parent.width * 0.7) // Always leave >= 30% for the rest of the row. height: contentHeight - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering elide: Text.ElideRight } - Label + UM.Label { text: activeQualityDetailText() font: UM.Theme.getFont("default") @@ -103,8 +95,6 @@ Item Layout.fillWidth: true height: contentHeight - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering elide: Text.ElideRight function activeQualityDetailText() @@ -136,13 +126,10 @@ Item } } - background: Rectangle + background: UM.UnderlineBackground { id: backgroundItem - border.color: intentSelection.hovered ? UM.Theme.getColor("setting_control_border_highlight") : UM.Theme.getColor("setting_control_border") - border.width: UM.Theme.getSize("default_lining").width - radius: UM.Theme.getSize("default_radius").width - color: UM.Theme.getColor("main_background") + liningColor: intentSelection.hovered ? UM.Theme.getColor("border_main") : UM.Theme.getColor("border_field_light") } UM.SimpleButton @@ -222,6 +209,7 @@ Item model: extrudersModel delegate: UM.TabRowButton { + checked: model.index == 0 contentItem: Item { Cura.ExtruderIcon diff --git a/resources/qml/PrintSetupSelector/Custom/MenuButton.qml b/resources/qml/PrintSetupSelector/Custom/MenuButton.qml index ffa6a68c9d..112edbbf77 100644 --- a/resources/qml/PrintSetupSelector/Custom/MenuButton.qml +++ b/resources/qml/PrintSetupSelector/Custom/MenuButton.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.6 as Cura Button @@ -12,23 +12,24 @@ Button // This is a work around for a qml issue. Since the default button uses a private implementation for contentItem // (the so called IconText), which handles the mnemonic conversion (aka; ensuring that &Button) text property // is rendered with the B underlined. Since we're also forced to mix controls 1.0 and 2.0 actions together, - // we need a special property for the text of the label if we do want it to be rendered correclty, but don't want + // we need a special property for the text of the label if we do want it to be rendered correctly, but don't want // another shortcut to be added (which will cause for "QQuickAction::event: Ambiguous shortcut overload: " to // happen. property string labelText: "" id: button hoverEnabled: true + leftPadding: UM.Theme.getSize("default_margin").width + implicitWidth: UM.Theme.getSize("menu").width + implicitHeight: UM.Theme.getSize("menu").height + UM.Theme.getSize("narrow_margin").height background: Rectangle { - id: backgroundRectangle - border.width: UM.Theme.getSize("default_lining").width - border.color: button.checked ? UM.Theme.getColor("setting_control_border_highlight") : "transparent" - color: button.hovered ? UM.Theme.getColor("action_button_hovered") : "transparent" - radius: UM.Theme.getSize("action_button_radius").width + height: button.height + width: button.width + color: button.hovered ? UM.Theme.getColor("background_2") : UM.Theme.getColor("background_1") } - // Workarround to ensure that the mnemonic highlighting happens correctly + // Workaround to ensure that the mnemonic highlighting happens correctly function replaceText(txt) { var index = txt.indexOf("&") @@ -39,16 +40,29 @@ Button return txt } - contentItem: Label + contentItem: Item { - id: textLabel - text: button.text != "" ? replaceText(button.text) : replaceText(button.labelText) - height: contentHeight - verticalAlignment: Text.AlignVCenter - anchors.left: button.left - anchors.leftMargin: UM.Theme.getSize("wide_margin").width - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") - color: button.enabled ? UM.Theme.getColor("text") :UM.Theme.getColor("text_inactive") + height: button.height + width: button.width + UM.RecolorImage + { + id: check + height: UM.Theme.getSize("default_arrow").height + width: height + source: UM.Theme.getIcon("Check", "low") + color: UM.Theme.getColor("setting_control_text") + anchors.verticalCenter: parent.verticalCenter + visible: button.checked + } + UM.Label + { + id: textLabel + text: button.text != "" ? replaceText(button.text) : replaceText(button.labelText) + height: contentHeight + color: button.enabled ? UM.Theme.getColor("text") :UM.Theme.getColor("text_inactive") + anchors.left: check.right + anchors.leftMargin: UM.Theme.getSize("narrow_margin").width + anchors.verticalCenter: parent.verticalCenter + } } } \ No newline at end of file diff --git a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml index c879ff53fd..a2624dbf14 100644 --- a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml +++ b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2020 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.6 as Cura Popup @@ -43,17 +43,29 @@ Popup // This repeater adds the intent labels ScrollView { + id: qualityListScrollView property real maximumHeight: screenScaleFactor * 400 contentHeight: dataColumn.height height: Math.min(contentHeight, maximumHeight) - clip: true + width: parent.width - ScrollBar.vertical.policy: height == maximumHeight ? ScrollBar.AlwaysOn: ScrollBar.AlwaysOff + clip: true + ScrollBar.vertical: UM.ScrollBar + { + id: qualityListScrollBar + parent: qualityListScrollView + anchors + { + top: parent.top + right: parent.right + bottom: parent.bottom + } + } Column { id: dataColumn - width: parent.width + width: qualityListScrollView.width - qualityListScrollBar.width Repeater { model: dataModel @@ -64,14 +76,13 @@ Popup property variant subItemModel: model.qualities height: childrenRect.height - width: popup.contentWidth + width: dataColumn.width - Label + UM.Label { id: headerLabel text: model.name color: UM.Theme.getColor("text_inactive") - renderType: Text.NativeRendering width: parent.width height: visible ? contentHeight: 0 visible: qualitiesList.visibleChildren.length > 0 @@ -119,6 +130,7 @@ Popup checkable: true visible: model.available text: model.name + " - " + model.layer_height + " mm" + leftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width checked: { if (Cura.MachineManager.hasCustomQuality) @@ -138,13 +150,12 @@ Popup Item { height: childrenRect.height - width: popup.contentWidth + width: dataColumn.width - Label + UM.Label { id: customProfileHeader text: catalog.i18nc("@label:header", "Custom profiles") - renderType: Text.NativeRendering height: visible ? contentHeight: 0 enabled: false visible: profilesList.visibleChildren.length > 1 @@ -185,6 +196,7 @@ Popup checkable: true visible: model.available text: model.name + leftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width checked: { var active_quality_group = Cura.MachineManager.activeQualityChangesGroup @@ -280,29 +292,20 @@ Popup width: parent.width height: childrenRect.height - Label + UM.Label { id: textLabel text: manageProfilesButton.text height: contentHeight - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") } - Label + UM.Label { id: shortcutLabel text: Cura.Actions.manageProfiles.shortcut + color: UM.Theme.getColor("text_lighter") height: contentHeight anchors.right: parent.right anchors.rightMargin: UM.Theme.getSize("default_margin").width - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") } } onClicked: diff --git a/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml b/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml index 0a5a466780..046efe8b5b 100644 --- a/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml +++ b/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml @@ -203,7 +203,7 @@ Item h -= mouse_absolute_y - base.height; } // Enforce a minimum size (again). - // This is a bit of a hackish way to do it, but we've seen some ocasional reports that the size + // This is a bit of a hackish way to do it, but we've seen some occasional reports that the size // could get below the the minimum height. if(h < absoluteMinimumHeight) { diff --git a/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml b/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml index 3b6fc37eb4..41e913a2c1 100644 --- a/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml +++ b/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml @@ -39,7 +39,7 @@ RowLayout } font: UM.Theme.getFont("medium") elide: Text.ElideMiddle - + wrapMode: Text.NoWrap UM.SettingPropertyProvider { id: layerHeight diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml index a3a5047ee9..74c496f824 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml @@ -2,10 +2,8 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -44,7 +42,7 @@ Item verticalCenter: enableAdhesionRowTitle.verticalCenter } - CheckBox + UM.CheckBox { id: enableAdhesionCheckBox anchors.verticalCenter: parent.verticalCenter @@ -52,7 +50,6 @@ Item property alias _hovered: adhesionMouseArea.containsMouse //: Setting enable printing build-plate adhesion helper checkbox - style: UM.Theme.styles.checkbox enabled: recommendedPrintSetup.settingsEnabled visible: platformAdhesionType.properties.enabled == "True" diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml index 705a3e95ef..434945e172 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml @@ -1,11 +1,10 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 +import QtQuick.Controls 2.15 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -87,10 +86,9 @@ Item width: parent.width height: UM.Theme.getSize("print_setup_slider_handle").height // The handle is the widest element of the slider - minimumValue: 0 - maximumValue: 100 + from: 0 + to: 100 stepSize: 1 - tickmarksEnabled: true // disable slider when gradual support is enabled enabled: parseInt(infillSteps.properties.value) == 0 @@ -98,53 +96,37 @@ Item // set initial value from stack value: parseInt(infillDensity.properties.value) - style: SliderStyle + //Draw line + background: Rectangle { - //Draw line - groove: Item - { - Rectangle - { - height: UM.Theme.getSize("print_setup_slider_groove").height - width: control.width - UM.Theme.getSize("print_setup_slider_handle").width - anchors.horizontalCenter: parent.horizontalCenter - anchors.verticalCenter: parent.verticalCenter - color: control.enabled ? UM.Theme.getColor("quality_slider_available") : UM.Theme.getColor("quality_slider_unavailable") - } - } + id: backgroundLine + height: UM.Theme.getSize("print_setup_slider_groove").height + width: infillSlider.width - UM.Theme.getSize("print_setup_slider_handle").width + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + color: infillSlider.enabled ? UM.Theme.getColor("quality_slider_available") : UM.Theme.getColor("quality_slider_unavailable") - handle: Rectangle - { - id: handleButton - color: control.enabled ? UM.Theme.getColor("primary") : UM.Theme.getColor("quality_slider_unavailable") - implicitWidth: UM.Theme.getSize("print_setup_slider_handle").width - implicitHeight: implicitWidth - radius: Math.round(implicitWidth / 2) - border.color: UM.Theme.getColor("slider_groove_fill") - border.width: UM.Theme.getSize("default_lining").height - } - - tickmarks: Repeater + Repeater { id: repeater - model: control.maximumValue / control.stepSize + 1 + anchors.fill: parent + model: infillSlider.to / infillSlider.stepSize + 1 Rectangle { - color: control.enabled ? UM.Theme.getColor("quality_slider_available") : UM.Theme.getColor("quality_slider_unavailable") + color: infillSlider.enabled ? UM.Theme.getColor("quality_slider_available") : UM.Theme.getColor("quality_slider_unavailable") implicitWidth: UM.Theme.getSize("print_setup_slider_tickmarks").width implicitHeight: UM.Theme.getSize("print_setup_slider_tickmarks").height anchors.verticalCenter: parent.verticalCenter // Do not use Math.round otherwise the tickmarks won't be aligned - x: ((styleData.handleWidth / 2) - (implicitWidth / 2) + (index * ((repeater.width - styleData.handleWidth) / (repeater.count-1)))) - radius: Math.round(implicitWidth / 2) + x: ((handleButton.width / 2) - (backgroundLine.implicitWidth / 2) + (index * ((repeater.width - handleButton.width) / (repeater.count-1)))) + radius: Math.round(backgroundLine.implicitWidth / 2) visible: (index % 10) == 0 // Only show steps of 10% - Label + UM.Label { text: index - font: UM.Theme.getFont("default") visible: (index % 20) == 0 // Only show steps of 20% anchors.horizontalCenter: parent.horizontalCenter y: UM.Theme.getSize("thin_margin").height @@ -155,36 +137,53 @@ Item } } - onValueChanged: + handle: Rectangle { - // Don't round the value if it's already the same - if (parseInt(infillDensity.properties.value) == infillSlider.value) + id: handleButton + x: infillSlider.leftPadding + infillSlider.visualPosition * (infillSlider.availableWidth - width) + y: infillSlider.topPadding + infillSlider.availableHeight / 2 - height / 2 + color: infillSlider.enabled ? UM.Theme.getColor("primary") : UM.Theme.getColor("quality_slider_unavailable") + implicitWidth: UM.Theme.getSize("print_setup_slider_handle").width + implicitHeight: implicitWidth + radius: Math.round(implicitWidth / 2) + border.color: UM.Theme.getColor("slider_groove_fill") + border.width: UM.Theme.getSize("default_lining").height + } + + Connections + { + target: infillSlider + function onValueChanged() { - return - } + // Don't round the value if it's already the same + if (parseInt(infillDensity.properties.value) == infillSlider.value) + { + return + } - // Round the slider value to the nearest multiple of 10 (simulate step size of 10) - var roundedSliderValue = Math.round(infillSlider.value / 10) * 10 + // Round the slider value to the nearest multiple of 10 (simulate step size of 10) + var roundedSliderValue = Math.round(infillSlider.value / 10) * 10 - // Update the slider value to represent the rounded value - infillSlider.value = roundedSliderValue + // Update the slider value to represent the rounded value + infillSlider.value = roundedSliderValue - // Update value only if the Recomended mode is Active, - // Otherwise if I change the value in the Custom mode the Recomended view will try to repeat - // same operation - var active_mode = UM.Preferences.getValue("cura/active_mode") + // Update value only if the Recommended mode is Active, + // Otherwise if I change the value in the Custom mode the Recommended view will try to repeat + // same operation + const active_mode = UM.Preferences.getValue("cura/active_mode") - if (active_mode == 0 || active_mode == "simple") - { - Cura.MachineManager.setSettingForAllExtruders("infill_sparse_density", "value", roundedSliderValue) - Cura.MachineManager.resetSettingForAllExtruders("infill_line_distance") + if (active_mode == 0 || active_mode == "simple") + { + Cura.MachineManager.setSettingForAllExtruders("infill_sparse_density", "value", roundedSliderValue) + Cura.MachineManager.resetSettingForAllExtruders("infill_line_distance") + } } } } } // Gradual Support Infill Checkbox - CheckBox + UM.CheckBox { id: enableGradualInfillCheckBox property alias _hovered: enableGradualInfillMouseArea.containsMouse @@ -194,7 +193,6 @@ Item anchors.left: infillSliderContainer.left text: catalog.i18nc("@label", "Gradual infill") - style: UM.Theme.styles.checkbox enabled: recommendedPrintSetup.settingsEnabled visible: infillSteps.properties.enabled == "True" checked: parseInt(infillSteps.properties.value) > 0 diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml index 22c4039063..de8cce6e94 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml @@ -2,8 +2,6 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 import UM 1.2 as UM import Cura 1.0 as Cura @@ -14,8 +12,6 @@ Item height: childrenRect.height + 2 * padding - property Action configureSettings - property bool settingsEnabled: Cura.ExtruderManager.activeExtruderStackId || extrudersEnabledCount.properties.value == 1 property real padding: UM.Theme.getSize("thick_margin").width diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml index 0823b5cb62..1176142b3b 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml @@ -1,10 +1,8 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls 2.3 as Controls2 -import QtQuick.Controls.Styles 1.4 +import QtQuick.Controls 2.3 import UM 1.2 as UM import Cura 1.6 as Cura @@ -30,7 +28,7 @@ Item spacing: UM.Theme.getSize("default_margin").height - Controls2.ButtonGroup + ButtonGroup { id: activeProfileButtonGroup exclusive: true diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml index 4e2341fb57..49be0fae1c 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml @@ -1,12 +1,10 @@ -// Copyright (c) 2020 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import QtQuick.Controls 2.3 as Controls2 +import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -45,14 +43,13 @@ Item verticalCenter: enableSupportRowTitle.verticalCenter } - CheckBox + UM.CheckBox { id: enableSupportCheckBox anchors.verticalCenter: parent.verticalCenter property alias _hovered: enableSupportMouseArea.containsMouse - style: UM.Theme.styles.checkbox enabled: recommendedPrintSetup.settingsEnabled visible: supportEnabled.properties.enabled == "True" @@ -75,7 +72,7 @@ Item } } - Controls2.ComboBox + ComboBox { id: supportExtruderCombobox @@ -202,7 +199,7 @@ Item } } - contentItem: Controls2.Label + contentItem: UM.Label { anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left @@ -212,12 +209,10 @@ Item text: supportExtruderCombobox.currentText textFormat: Text.PlainText - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") color: enabled ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text") elide: Text.ElideLeft - verticalAlignment: Text.AlignVCenter + background: Rectangle { @@ -233,7 +228,7 @@ Item } } - popup: Controls2.Popup + popup: Popup { y: supportExtruderCombobox.height - UM.Theme.getSize("default_lining").height width: supportExtruderCombobox.width @@ -242,12 +237,12 @@ Item contentItem: ListView { - clip: true implicitHeight: contentHeight + + ScrollBar.vertical: UM.ScrollBar {} + clip: true model: supportExtruderCombobox.popup.visible ? supportExtruderCombobox.delegateModel : null currentIndex: supportExtruderCombobox.highlightedIndex - - Controls2.ScrollIndicator.vertical: Controls2.ScrollIndicator { } } background: Rectangle @@ -257,34 +252,22 @@ Item } } - delegate: Controls2.ItemDelegate + delegate: ItemDelegate { width: supportExtruderCombobox.width - 2 * UM.Theme.getSize("default_lining").width height: supportExtruderCombobox.height highlighted: supportExtruderCombobox.highlightedIndex == index - contentItem: Controls2.Label + contentItem: UM.Label { anchors.fill: parent anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width text: model.name - renderType: Text.NativeRendering - color: - { - if (model.enabled) - { - UM.Theme.getColor("setting_control_text") - } - else - { - UM.Theme.getColor("action_button_disabled_text"); - } - } - font: UM.Theme.getFont("default") + color: model.enabled ? UM.Theme.getColor("setting_control_text"): UM.Theme.getColor("action_button_disabled_text") + elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter rightPadding: swatch.width + UM.Theme.getSize("setting_unit_margin").width background: Rectangle diff --git a/resources/qml/PrintSetupTooltip.qml b/resources/qml/PrintSetupTooltip.qml index 91f044ceed..29fe7d6508 100644 --- a/resources/qml/PrintSetupTooltip.qml +++ b/resources/qml/PrintSetupTooltip.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.0 as UM +import UM 1.5 as UM UM.PointingRectangle { @@ -88,18 +88,16 @@ UM.PointingRectangle active: false //Only allow vertical scrolling. We should grow vertically only, but due to how the label is positioned it allocates space in the ScrollView horizontally. } - Label + UM.Label { id: label x: UM.Theme.getSize("tooltip_margins").width y: UM.Theme.getSize("tooltip_margins").height width: base.width - UM.Theme.getSize("tooltip_margins").width * 2 - wrapMode: Text.Wrap; + wrapMode: Text.Wrap textFormat: Text.RichText - font: UM.Theme.getFont("default"); - color: UM.Theme.getColor("tooltip_text"); - renderType: Text.NativeRendering + color: UM.Theme.getColor("tooltip_text") } } } diff --git a/resources/qml/PrinterOutput/ExtruderBox.qml b/resources/qml/PrinterOutput/ExtruderBox.qml index 63927cd98d..bea7c3bdd8 100644 --- a/resources/qml/PrinterOutput/ExtruderBox.qml +++ b/resources/qml/PrinterOutput/ExtruderBox.qml @@ -1,12 +1,10 @@ -//Copyright (c) 2019 Ultimaker B.V. +//Copyright (c) 2022 Ultimaker B.V. //Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 -import QtQuick.Layouts 1.1 +import QtQuick.Controls 2.1 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -36,17 +34,17 @@ Item id: background anchors.fill: parent - Label //Extruder name. + // Extruder name. + UM.Label { text: Cura.MachineManager.activeMachine.extruderList[position].name !== "" ? Cura.MachineManager.activeMachine.extruderList[position].name : catalog.i18nc("@label", "Extruder") - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") anchors.left: parent.left anchors.top: parent.top anchors.margins: UM.Theme.getSize("default_margin").width } - Label //Target temperature. + // Target temperature. + UM.Label { id: extruderTargetTemperature text: Math.round(extruderModel.targetHotendTemperature) + "°C" @@ -56,7 +54,8 @@ Item anchors.rightMargin: UM.Theme.getSize("default_margin").width anchors.bottom: extruderCurrentTemperature.bottom - MouseArea //For tooltip. + //For tooltip. + MouseArea { id: extruderTargetTemperatureTooltipArea hoverEnabled: true @@ -78,17 +77,20 @@ Item } } } - Label //Temperature indication. + + //Temperature indication. + UM.Label { id: extruderCurrentTemperature text: Math.round(extruderModel.hotendTemperature) + "°C" - color: UM.Theme.getColor("text") font: UM.Theme.getFont("large_bold") anchors.right: extruderTargetTemperature.left anchors.top: parent.top anchors.margins: UM.Theme.getSize("default_margin").width - MouseArea //For tooltip. + + //For tooltip. + MouseArea { id: extruderCurrentTemperatureTooltipArea hoverEnabled: true @@ -111,7 +113,8 @@ Item } } - Rectangle //Input field for pre-heat temperature. + //Input field for pre-heat temperature. + Rectangle { id: preheatTemperatureControl color: !enabled ? UM.Theme.getColor("setting_control_disabled") : showError ? UM.Theme.getColor("setting_validation_error_background") : UM.Theme.getColor("setting_validation_ok") @@ -153,14 +156,16 @@ Item width: UM.Theme.getSize("monitor_preheat_temperature_control").width height: UM.Theme.getSize("monitor_preheat_temperature_control").height visible: extruderModel != null ? enabled && extruderModel.canPreHeatHotends && !extruderModel.isPreheating : true - Rectangle //Highlight of input field. + //Highlight of input field. + Rectangle { anchors.fill: parent anchors.margins: UM.Theme.getSize("default_lining").width color: UM.Theme.getColor("setting_control_highlight") opacity: preheatTemperatureControl.hovered ? 1.0 : 0 } - MouseArea //Change cursor on hovering. + //Change cursor on hovering. + MouseArea { id: preheatTemperatureInputMouseArea hoverEnabled: true @@ -183,7 +188,7 @@ Item } } } - Label + UM.Label { id: unit anchors.right: parent.right @@ -192,7 +197,6 @@ Item text: "°C"; color: UM.Theme.getColor("setting_unit") - font: UM.Theme.getFont("default") } TextInput { @@ -223,7 +227,7 @@ Item } } - Button //The pre-heat button. + Cura.SecondaryButton { id: preheatButton height: UM.Theme.getSize("setting_control").height @@ -255,96 +259,19 @@ Item anchors.right: parent.right anchors.bottom: parent.bottom anchors.margins: UM.Theme.getSize("default_margin").width - style: ButtonStyle { - background: Rectangle - { - border.width: UM.Theme.getSize("default_lining").width - implicitWidth: actualLabel.contentWidth + (UM.Theme.getSize("default_margin").width * 2) - border.color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_border"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active_border"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_border"); - } - else - { - return UM.Theme.getColor("action_button_border"); - } - } - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered"); - } - else - { - return UM.Theme.getColor("action_button"); - } - } - Behavior on color - { - ColorAnimation - { - duration: 50 - } - } - Label - { - id: actualLabel - anchors.centerIn: parent - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_text"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active_text"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_text"); - } - else - { - return UM.Theme.getColor("action_button_text"); - } - } - font: UM.Theme.getFont("medium") - text: - { - if(extruderModel == null) - { - return "" - } - if(extruderModel.isPreheating ) - { - return catalog.i18nc("@button Cancel pre-heating", "Cancel") - } else - { - return catalog.i18nc("@button", "Pre-heat") - } - } - } + text: + { + if(extruderModel == null) + { + return "" + } + if(extruderModel.isPreheating ) + { + return catalog.i18nc("@button Cancel pre-heating", "Cancel") + } else + { + return catalog.i18nc("@button", "Pre-heat") } } @@ -377,7 +304,8 @@ Item } } - Rectangle //Material colour indication. + //Material colour indication. + Rectangle { id: materialColor width: Math.floor(materialName.height * 0.75) @@ -391,7 +319,8 @@ Item anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.verticalCenter: materialName.verticalCenter - MouseArea //For tooltip. + //For tooltip. + MouseArea { id: materialColorTooltipArea hoverEnabled: true @@ -413,17 +342,17 @@ Item } } } - Label //Material name. + //Material name. + UM.Label { id: materialName text: extruderModel.activeMaterial != null ? extruderModel.activeMaterial.type : "" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") anchors.left: materialColor.right anchors.bottom: parent.bottom anchors.margins: UM.Theme.getSize("default_margin").width - MouseArea //For tooltip. + //For tooltip. + MouseArea { id: materialNameTooltipArea hoverEnabled: true @@ -445,17 +374,18 @@ Item } } } - Label //Variant name. + + //Variant name. + UM.Label { id: variantName text: extruderModel.hotendID - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") anchors.right: parent.right anchors.bottom: parent.bottom anchors.margins: UM.Theme.getSize("default_margin").width - MouseArea //For tooltip. + //For tooltip. + MouseArea { id: variantNameTooltipArea hoverEnabled: true @@ -466,7 +396,7 @@ Item { base.showTooltip( base, - {x: 0, y: parent.mapToItem(base, 0, -parent.height / 4).y}, + { x: 0, y: parent.mapToItem(base, 0, -parent.height / 4).y }, catalog.i18nc("@tooltip", "The nozzle inserted in this extruder.") ); } diff --git a/resources/qml/PrinterOutput/HeatedBedBox.qml b/resources/qml/PrinterOutput/HeatedBedBox.qml index 2e3e319c89..288e9cab3f 100644 --- a/resources/qml/PrinterOutput/HeatedBedBox.qml +++ b/resources/qml/PrinterOutput/HeatedBedBox.qml @@ -1,12 +1,10 @@ -// Copyright (c) 2017 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import QtQuick.Layouts 1.3 +import QtQuick.Controls 2.4 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -21,17 +19,17 @@ Item color: UM.Theme.getColor("main_background") anchors.fill: parent - Label //Build plate label. + // Build plate label. + UM.Label { text: catalog.i18nc("@label", "Build plate") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") anchors.left: parent.left anchors.top: parent.top anchors.margins: UM.Theme.getSize("default_margin").width } - Label //Target temperature. + // Target temperature. + UM.Label { id: bedTargetTemperature text: printerModel != null ? printerModel.targetBedTemperature + "°C" : "" @@ -41,7 +39,8 @@ Item anchors.rightMargin: UM.Theme.getSize("default_margin").width anchors.bottom: bedCurrentTemperature.bottom - MouseArea //For tooltip. + // For tooltip. + MouseArea { id: bedTargetTemperatureTooltipArea hoverEnabled: true @@ -63,17 +62,18 @@ Item } } } - Label //Current temperature. + // Current temperature. + UM.Label { id: bedCurrentTemperature text: printerModel != null ? printerModel.bedTemperature + "°C" : "" font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") anchors.right: bedTargetTemperature.left anchors.top: parent.top anchors.margins: UM.Theme.getSize("default_margin").width - MouseArea //For tooltip. + //For tooltip. + MouseArea { id: bedTemperatureTooltipArea hoverEnabled: true @@ -95,7 +95,8 @@ Item } } } - Rectangle //Input field for pre-heat temperature. + //Input field for pre-heat temperature. + Rectangle { id: preheatTemperatureControl color: !enabled ? UM.Theme.getColor("setting_control_disabled") : showError ? UM.Theme.getColor("setting_validation_error_background") : UM.Theme.getColor("setting_validation_ok") @@ -167,7 +168,7 @@ Item } } } - Label + UM.Label { id: unit anchors.right: parent.right @@ -176,7 +177,6 @@ Item text: "°C"; color: UM.Theme.getColor("setting_unit") - font: UM.Theme.getFont("default") } TextInput { @@ -214,7 +214,8 @@ Item } } - Button // The pre-heat button. + // The pre-heat button. + Cura.SecondaryButton { id: preheatButton height: UM.Theme.getSize("setting_control").height @@ -246,96 +247,20 @@ Item anchors.right: parent.right anchors.bottom: parent.bottom anchors.margins: UM.Theme.getSize("default_margin").width - style: ButtonStyle { - background: Rectangle - { - border.width: UM.Theme.getSize("default_lining").width - implicitWidth: actualLabel.contentWidth + (UM.Theme.getSize("default_margin").width * 2) - border.color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_border"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active_border"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_border"); - } - else - { - return UM.Theme.getColor("action_button_border"); - } - } - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered"); - } - else - { - return UM.Theme.getColor("action_button"); - } - } - Behavior on color - { - ColorAnimation - { - duration: 50 - } - } - Label - { - id: actualLabel - anchors.centerIn: parent - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_text"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active_text"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_text"); - } - else - { - return UM.Theme.getColor("action_button_text"); - } - } - font: UM.Theme.getFont("medium") - text: - { - if(printerModel == null) - { - return "" - } - if(printerModel.isPreheating ) - { - return catalog.i18nc("@button Cancel pre-heating", "Cancel") - } else - { - return catalog.i18nc("@button", "Pre-heat") - } - } - } + text: + { + if (printerModel == null) + { + return "" + } + if (printerModel.isPreheating ) + { + return catalog.i18nc("@button Cancel pre-heating", "Cancel") + } + else + { + return catalog.i18nc("@button", "Pre-heat") } } @@ -357,7 +282,7 @@ Item { base.showTooltip( base, - {x: 0, y: preheatButton.mapToItem(base, 0, 0).y}, + { x: 0, y: preheatButton.mapToItem(base, 0, 0).y }, catalog.i18nc("@tooltip of pre-heat", "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print.") ); } diff --git a/resources/qml/PrinterOutput/ManualPrinterControl.qml b/resources/qml/PrinterOutput/ManualPrinterControl.qml index 3213f1ace8..bf987b282f 100644 --- a/resources/qml/PrinterOutput/ManualPrinterControl.qml +++ b/resources/qml/PrinterOutput/ManualPrinterControl.qml @@ -1,12 +1,11 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 +import QtQuick.Controls 2.1 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura import "." @@ -17,7 +16,7 @@ Item property var printerModel: null property var activePrintJob: printerModel != null ? printerModel.activePrintJob : null property var connectedPrinter: Cura.MachineManager.printerOutputDevices.length >= 1 ? Cura.MachineManager.printerOutputDevices[0] : null - + property var _buttonSize: UM.Theme.getSize("setting_control").height + UM.Theme.getSize("thin_margin").height implicitWidth: parent.width implicitHeight: childrenRect.height @@ -62,15 +61,13 @@ Item spacing: UM.Theme.getSize("default_margin").width - Label + UM.Label { text: catalog.i18nc("@label", "Jog Position") color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") width: Math.floor(parent.width * 0.4) - UM.Theme.getSize("default_margin").width height: UM.Theme.getSize("setting_control").height - verticalAlignment: Text.AlignVCenter } GridLayout @@ -80,14 +77,12 @@ Item rowSpacing: UM.Theme.getSize("default_lining").width columnSpacing: UM.Theme.getSize("default_lining").height - Label + UM.Label { text: catalog.i18nc("@label", "X/Y") color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") width: height height: UM.Theme.getSize("setting_control").height - verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter Layout.row: 0 @@ -96,89 +91,64 @@ Item Layout.preferredHeight: height } - Button + Cura.SecondaryButton { Layout.row: 1 Layout.column: 1 - Layout.preferredWidth: width - Layout.preferredHeight: height - iconSource: UM.Theme.getIcon("ChevronSingleUp"); - style: UM.Theme.styles.monitor_button_style - width: height - height: UM.Theme.getSize("setting_control").height + Layout.preferredWidth: _buttonSize + Layout.preferredHeight: _buttonSize + iconSource: UM.Theme.getIcon("ChevronSingleUp") + leftPadding: (Layout.preferredWidth - iconSize) / 2 - onClicked: - { - printerModel.moveHead(0, distancesRow.currentDistance, 0) - } + onClicked: printerModel.moveHead(0, distancesRow.currentDistance, 0) } - Button + Cura.SecondaryButton { Layout.row: 2 Layout.column: 0 - Layout.preferredWidth: width - Layout.preferredHeight: height - iconSource: UM.Theme.getIcon("ChevronSingleLeft"); - style: UM.Theme.styles.monitor_button_style - width: height - height: UM.Theme.getSize("setting_control").height + Layout.preferredWidth: _buttonSize + Layout.preferredHeight: _buttonSize + iconSource: UM.Theme.getIcon("ChevronSingleLeft") + leftPadding: (Layout.preferredWidth - iconSize) / 2 - onClicked: - { - printerModel.moveHead(-distancesRow.currentDistance, 0, 0) - } + onClicked: printerModel.moveHead(-distancesRow.currentDistance, 0, 0) } - Button + Cura.SecondaryButton { Layout.row: 2 Layout.column: 2 - Layout.preferredWidth: width - Layout.preferredHeight: height - iconSource: UM.Theme.getIcon("ChevronSingleRight"); - style: UM.Theme.styles.monitor_button_style - width: height - height: UM.Theme.getSize("setting_control").height + Layout.preferredWidth: _buttonSize + Layout.preferredHeight: _buttonSize + iconSource: UM.Theme.getIcon("ChevronSingleRight") + leftPadding: (Layout.preferredWidth - iconSize) / 2 - onClicked: - { - printerModel.moveHead(distancesRow.currentDistance, 0, 0) - } + onClicked: printerModel.moveHead(distancesRow.currentDistance, 0, 0) } - Button + Cura.SecondaryButton { Layout.row: 3 Layout.column: 1 - Layout.preferredWidth: width - Layout.preferredHeight: height - iconSource: UM.Theme.getIcon("ChevronSingleDown"); - style: UM.Theme.styles.monitor_button_style - width: height - height: UM.Theme.getSize("setting_control").height + Layout.preferredWidth: _buttonSize + Layout.preferredHeight: _buttonSize + iconSource: UM.Theme.getIcon("ChevronSingleDown") + leftPadding: (Layout.preferredWidth - iconSize) / 2 - onClicked: - { - printerModel.moveHead(0, -distancesRow.currentDistance, 0) - } + onClicked: printerModel.moveHead(0, -distancesRow.currentDistance, 0) } - Button + Cura.SecondaryButton { Layout.row: 2 Layout.column: 1 - Layout.preferredWidth: width - Layout.preferredHeight: height - iconSource: UM.Theme.getIcon("House"); - style: UM.Theme.styles.monitor_button_style - width: height - height: UM.Theme.getSize("setting_control").height + Layout.preferredWidth: _buttonSize + Layout.preferredHeight: _buttonSize + iconSource: UM.Theme.getIcon("House") + leftPadding: (Layout.preferredWidth - iconSize) / 2 - onClicked: - { - printerModel.homeHead() - } + onClicked: printerModel.homeHead() } } @@ -187,54 +157,44 @@ Item { spacing: UM.Theme.getSize("default_lining").height - Label + UM.Label { text: catalog.i18nc("@label", "Z") color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") width: UM.Theme.getSize("section").height height: UM.Theme.getSize("setting_control").height - verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter } - Button + Cura.SecondaryButton { - iconSource: UM.Theme.getIcon("ChevronSingleUp"); - style: UM.Theme.styles.monitor_button_style + iconSource: UM.Theme.getIcon("ChevronSingleUp") width: height - height: UM.Theme.getSize("setting_control").height + height: _buttonSize + leftPadding: (width - iconSize) / 2 + + onClicked: printerModel.moveHead(0, 0, distancesRow.currentDistance) - onClicked: - { - printerModel.moveHead(0, 0, distancesRow.currentDistance) - } } - Button + Cura.SecondaryButton { - iconSource: UM.Theme.getIcon("House"); - style: UM.Theme.styles.monitor_button_style + iconSource: UM.Theme.getIcon("House") width: height - height: UM.Theme.getSize("setting_control").height + height: _buttonSize + leftPadding: (width - iconSize) / 2 - onClicked: - { - printerModel.homeBed() - } + onClicked: printerModel.homeBed() } - Button + Cura.SecondaryButton { - iconSource: UM.Theme.getIcon("ChevronSingleDown"); - style: UM.Theme.styles.monitor_button_style + iconSource: UM.Theme.getIcon("ChevronSingleDown") width: height - height: UM.Theme.getSize("setting_control").height + height: _buttonSize + leftPadding: (width - iconSize) / 2 - onClicked: - { - printerModel.moveHead(0, 0, -distancesRow.currentDistance) - } + onClicked: printerModel.moveHead(0, 0, -distancesRow.currentDistance) } } } @@ -252,15 +212,13 @@ Item property real currentDistance: 10 - Label + UM.Label { text: catalog.i18nc("@label", "Jog Distance") color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") width: Math.floor(parent.width * 0.4) - UM.Theme.getSize("default_margin").width height: UM.Theme.getSize("setting_control").height - verticalAlignment: Text.AlignVCenter } Row @@ -268,18 +226,16 @@ Item Repeater { model: distancesModel - delegate: Button + delegate: Cura.SecondaryButton { height: UM.Theme.getSize("setting_control").height - width: height + UM.Theme.getSize("default_margin").width text: model.label - exclusiveGroup: distanceGroup - checkable: true - checked: distancesRow.currentDistance == model.value + ButtonGroup.group: distanceGroup + color: distancesRow.currentDistance == model.value ? UM.Theme.getColor("primary_button") : UM.Theme.getColor("secondary_button") + textColor: distancesRow.currentDistance == model.value ? UM.Theme.getColor("primary_button_text"): UM.Theme.getColor("secondary_button_text") + hoverColor: distancesRow.currentDistance == model.value ? UM.Theme.getColor("primary_button_hover"): UM.Theme.getColor("secondary_button_hover") onClicked: distancesRow.currentDistance = model.value - - style: UM.Theme.styles.monitor_checkable_button_style } } } @@ -296,15 +252,13 @@ Item spacing: UM.Theme.getSize("default_margin").width - Label + UM.Label { text: catalog.i18nc("@label", "Send G-code") color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") width: Math.floor(parent.width * 0.4) - UM.Theme.getSize("default_margin").width height: UM.Theme.getSize("setting_control").height - verticalAlignment: Text.AlignVCenter } Row @@ -410,6 +364,6 @@ Item ListElement { label: "10"; value: 10 } ListElement { label: "100"; value: 100 } } - ExclusiveGroup { id: distanceGroup } + ButtonGroup { id: distanceGroup } } } diff --git a/resources/qml/PrinterOutput/MonitorItem.qml b/resources/qml/PrinterOutput/MonitorItem.qml index a26ec20f64..a6e78ba837 100644 --- a/resources/qml/PrinterOutput/MonitorItem.qml +++ b/resources/qml/PrinterOutput/MonitorItem.qml @@ -1,19 +1,16 @@ -// Copyright (c) 2017 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 -import QtQuick.Layouts 1.1 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item { property string label: "" property string value: "" - height: childrenRect.height; + height: childrenRect.height property var connectedPrinter: Cura.MachineManager.printerOutputDevices.length >= 1 ? Cura.MachineManager.printerOutputDevices[0] : null @@ -24,22 +21,20 @@ Item anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width - Label + UM.Label { width: Math.floor(parent.width * 0.4) anchors.verticalCenter: parent.verticalCenter text: label color: connectedPrinter != null && connectedPrinter.acceptsCommands ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text") - font: UM.Theme.getFont("default") elide: Text.ElideRight } - Label + UM.Label { width: Math.floor(parent.width * 0.6) anchors.verticalCenter: parent.verticalCenter text: value color: connectedPrinter != null && connectedPrinter.acceptsCommands ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text") - font: UM.Theme.getFont("default") elide: Text.ElideRight } } diff --git a/resources/qml/PrinterOutput/MonitorSection.qml b/resources/qml/PrinterOutput/MonitorSection.qml index 1d9df777b6..219be45d06 100644 --- a/resources/qml/PrinterOutput/MonitorSection.qml +++ b/resources/qml/PrinterOutput/MonitorSection.qml @@ -2,11 +2,8 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 -import QtQuick.Layouts 1.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -21,14 +18,12 @@ Item width: base.width height: UM.Theme.getSize("section").height - Label + UM.Label { anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width text: label - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("setting_category_text") } } } diff --git a/resources/qml/PrinterOutput/OutputDeviceHeader.qml b/resources/qml/PrinterOutput/OutputDeviceHeader.qml index cbb9461778..aeb9d14363 100644 --- a/resources/qml/PrinterOutput/OutputDeviceHeader.qml +++ b/resources/qml/PrinterOutput/OutputDeviceHeader.qml @@ -1,10 +1,11 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 -import QtQuick.Layouts 1.1 +import QtQuick.Controls 2.1 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -28,7 +29,7 @@ Item height: childrenRect.height color: UM.Theme.getColor("setting_category") - Label + UM.Label { id: outputDeviceNameLabel font: UM.Theme.getFont("large_bold") @@ -39,7 +40,7 @@ Item text: outputDevice != null ? outputDevice.activePrinter.name : "" } - Label + UM.Label { id: outputDeviceAddressLabel text: (outputDevice != null && outputDevice.address != null) ? outputDevice.address : "" @@ -50,11 +51,10 @@ Item anchors.margins: UM.Theme.getSize("default_margin").width } - Label + UM.Label { text: outputDevice != null ? "" : catalog.i18nc("@info:status", "The printer is not connected.") color: outputDevice != null && outputDevice.acceptsCommands ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text") - font: UM.Theme.getFont("default") wrapMode: Text.WordWrap anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width diff --git a/resources/qml/PrinterSelector/MachineSelector.qml b/resources/qml/PrinterSelector/MachineSelector.qml index c12e364339..12f495f7a8 100644 --- a/resources/qml/PrinterSelector/MachineSelector.qml +++ b/resources/qml/PrinterSelector/MachineSelector.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.1 as Cura Cura.ExpandablePopup @@ -114,9 +114,9 @@ Cura.ExpandablePopup anchors { bottom: parent.bottom - bottomMargin: - height * 1 / 6 + bottomMargin: - Math.round(height * 1 / 6) left: parent.left - leftMargin: iconSize - width * 5 / 6 + leftMargin: iconSize - Math.round(width * 5 / 6) } source: @@ -172,7 +172,7 @@ Cura.ExpandablePopup onExited: { tooltip.hide() } } - Cura.ToolTip + UM.ToolTip { id: tooltip @@ -193,42 +193,27 @@ Cura.ExpandablePopup { id: popup width: UM.Theme.getSize("machine_selector_widget_content").width + height: Math.min(machineSelectorList.contentHeight + separator.height + buttonRow.height, UM.Theme.getSize("machine_selector_widget_content").height) //Maximum height is the theme entry. - ScrollView + MachineSelectorList { - id: scroll - width: parent.width - clip: true - leftPadding: UM.Theme.getSize("default_lining").width - rightPadding: UM.Theme.getSize("default_lining").width - - MachineSelectorList + id: machineSelectorList + anchors { - id: machineSelectorList - // Can't use parent.width since the parent is the flickable component and not the ScrollView - width: scroll.width - scroll.leftPadding - scroll.rightPadding - property real maximumHeight: UM.Theme.getSize("machine_selector_widget_content").height - buttonRow.height - - // We use an extra property here, since we only want to to be informed about the content size changes. - onContentHeightChanged: - { - scroll.height = Math.min(contentHeight, maximumHeight) - popup.height = scroll.height + buttonRow.height - } - - Component.onCompleted: - { - scroll.height = Math.min(contentHeight, maximumHeight) - popup.height = scroll.height + buttonRow.height - } + left: parent.left + leftMargin: UM.Theme.getSize("default_lining").width + right: parent.right + rightMargin: UM.Theme.getSize("default_lining").width + top: parent.top + bottom: separator.top } + clip: true } Rectangle { id: separator - - anchors.top: scroll.bottom + anchors.bottom: buttonRow.top width: parent.width height: UM.Theme.getSize("default_lining").height color: UM.Theme.getColor("lining") @@ -238,8 +223,7 @@ Cura.ExpandablePopup { id: buttonRow - // The separator is inside the buttonRow. This is to avoid some weird behaviours with the scroll bar. - anchors.top: separator.top + anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter padding: UM.Theme.getSize("default_margin").width spacing: UM.Theme.getSize("default_margin").width diff --git a/resources/qml/PrinterSelector/MachineSelectorButton.qml b/resources/qml/PrinterSelector/MachineSelectorButton.qml index bb30cded9f..74c833f691 100644 --- a/resources/qml/PrinterSelector/MachineSelectorButton.qml +++ b/resources/qml/PrinterSelector/MachineSelectorButton.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -43,7 +43,7 @@ Button width: machineSelectorButton.width - machineSelectorButton.leftPadding height: UM.Theme.getSize("action_button").height - Label + UM.Label { id: buttonText anchors @@ -56,8 +56,6 @@ Button color: enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("small_button_text") font: UM.Theme.getFont("medium") visible: text != "" - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter elide: Text.ElideRight } diff --git a/resources/qml/PrinterSelector/MachineSelectorList.qml b/resources/qml/PrinterSelector/MachineSelectorList.qml index 18b1a68b20..ae2706f9ab 100644 --- a/resources/qml/PrinterSelector/MachineSelectorList.qml +++ b/resources/qml/PrinterSelector/MachineSelectorList.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura ListView @@ -14,22 +14,25 @@ ListView section.property: "hasRemoteConnection" property real contentHeight: childrenRect.height - section.delegate: Label + ScrollBar.vertical: UM.ScrollBar + { + id: scrollBar + } + + section.delegate: UM.Label { text: section == "true" ? catalog.i18nc("@label", "Connected printers") : catalog.i18nc("@label", "Preset printers") - width: parent.width + width: parent.width - scrollBar.width height: UM.Theme.getSize("action_button").height leftPadding: UM.Theme.getSize("default_margin").width - renderType: Text.NativeRendering font: UM.Theme.getFont("medium") color: UM.Theme.getColor("text_medium") - verticalAlignment: Text.AlignVCenter } delegate: MachineSelectorButton { text: model.name ? model.name : "" - width: listView.width + width: listView.width - scrollBar.width outputDevice: Cura.MachineManager.printerOutputDevices.length >= 1 ? Cura.MachineManager.printerOutputDevices[0] : null checked: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.id == model.id : false diff --git a/resources/qml/ProfileOverview.qml b/resources/qml/ProfileOverview.qml new file mode 100644 index 0000000000..e1009cd010 --- /dev/null +++ b/resources/qml/ProfileOverview.qml @@ -0,0 +1,52 @@ +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. + +import Qt.labs.qmlmodels 1.0 +import QtQuick 2.7 +import QtQuick.Controls 2.15 + +import UM 1.5 as UM +import Cura 1.6 as Cura + +Cura.TableView +{ + id: profileOverview + + property var qualityItem //The quality profile to display here. + property int extruderPosition: -1 //The extruder to display. -1 denotes the global stack. + property bool isQualityItemCurrentlyActivated: qualityItem != null && qualityItem.name == Cura.MachineManager.activeQualityOrQualityChangesName + + // Hack to make sure that when the data of our model changes the tablemodel is also updated + // If we directly set the rows (So without the clear being called) it doesn't seem to + // get updated correctly. + property var modelRows: qualitySettings.items + onModelRowsChanged: + { + tableModel.clear() + tableModel.rows = modelRows + } + + Cura.QualitySettingsModel + { + id: qualitySettings + selectedPosition: profileOverview.extruderPosition + selectedQualityItem: profileOverview.qualityItem == null ? {} : profileOverview.qualityItem + } + + columnHeaders: [ + catalog.i18nc("@title:column", "Setting"), + catalog.i18nc("@title:column", "Profile"), + catalog.i18nc("@title:column", "Current"), + catalog.i18nc("@title:column Unit of measurement", "Unit") + ] + model: TableModel + { + id: tableModel + TableModelColumn { display: "label" } + TableModelColumn { display: "profile_value" } + TableModelColumn { display: "user_value" } + TableModelColumn { display: "unit" } + rows: modelRows + } + sectionRole: "category" +} \ No newline at end of file diff --git a/resources/qml/RadioCheckbar.qml b/resources/qml/RadioCheckbar.qml index 5aea771a44..50b5d77784 100644 --- a/resources/qml/RadioCheckbar.qml +++ b/resources/qml/RadioCheckbar.qml @@ -105,7 +105,7 @@ Item Rectangle { - // This can (and should) be done wiht a verticalCenter. For some reason it does work in QtCreator + // This can (and should) be done with a verticalCenter. For some reason it does work in QtCreator // but not when using the exact same QML in Cura. anchors.verticalCenter: parent ? parent.verticalCenter : undefined anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined diff --git a/resources/qml/SearchBar.qml b/resources/qml/SearchBar.qml new file mode 100644 index 0000000000..4d9c003653 --- /dev/null +++ b/resources/qml/SearchBar.qml @@ -0,0 +1,35 @@ +// Copyright (C) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.1 + +import UM 1.6 as UM +import Cura 1.7 as Cura + +Cura.TextField +{ + UM.I18nCatalog { id: catalog; name: "cura" } + + leftPadding: searchIcon.width + UM.Theme.getSize("default_margin").width * 2 + + placeholderText: catalog.i18nc("@placeholder", "Search") + font.italic: true + + UM.RecolorImage + { + id: searchIcon + + anchors + { + verticalCenter: parent.verticalCenter + left: parent.left + leftMargin: UM.Theme.getSize("default_margin").width + } + source: UM.Theme.getIcon("Magnifier") + height: UM.Theme.getSize("small_button_icon").height + width: height + color: UM.Theme.getColor("text") + } +} diff --git a/resources/qml/SecondaryButton.qml b/resources/qml/SecondaryButton.qml index ba4e0bb2c1..d8027af3fc 100644 --- a/resources/qml/SecondaryButton.qml +++ b/resources/qml/SecondaryButton.qml @@ -11,7 +11,7 @@ Cura.ActionButton { color: UM.Theme.getColor("secondary_button") textColor: UM.Theme.getColor("secondary_button_text") - outlineColor: UM.Theme.getColor("secondary_button_text") + outlineColor: UM.Theme.getColor("border_accent_1") disabledColor: UM.Theme.getColor("action_button_disabled") textDisabledColor: UM.Theme.getColor("action_button_disabled_text") hoverColor: UM.Theme.getColor("secondary_button_hover") diff --git a/resources/qml/Settings/SettingCategory.qml b/resources/qml/Settings/SettingCategory.qml index 5beb6e209e..d8b9b2c83f 100644 --- a/resources/qml/Settings/SettingCategory.qml +++ b/resources/qml/Settings/SettingCategory.qml @@ -12,7 +12,7 @@ Button id: base anchors.left: parent.left anchors.right: parent.right - // To avoid overlaping with the scrollBars + // To avoid overlapping with the scrollBars anchors.rightMargin: 2 * UM.Theme.getSize("thin_margin").width hoverEnabled: true diff --git a/resources/qml/Settings/SettingCheckBox.qml b/resources/qml/Settings/SettingCheckBox.qml index 20693b92e3..4987eedb83 100644 --- a/resources/qml/Settings/SettingCheckBox.qml +++ b/resources/qml/Settings/SettingCheckBox.qml @@ -85,20 +85,20 @@ SettingItem { anchors { - top: parent.top - bottom: parent.bottom + verticalCenter: parent.verticalCenter left: parent.left } - width: height + width: UM.Theme.getSize("checkbox").width + height: width - radius: UM.Theme.getSize("setting_control_radius").width + radius: UM.Theme.getSize("checkbox_radius").width border.width: UM.Theme.getSize("default_lining").width border.color: { if(!enabled) { - return UM.Theme.getColor("setting_control_disabled_border") + return UM.Theme.getColor("checkbox_border_disabled") } switch (propertyProvider.properties.validationState) { @@ -114,15 +114,15 @@ SettingItem // Validation is OK. if (control.containsMouse || control.activeFocus || hovered) { - return UM.Theme.getColor("setting_control_border_highlight") + return UM.Theme.getColor("checkbox_border_hover") } - return UM.Theme.getColor("setting_control_border") + return UM.Theme.getColor("checkbox_border") } color: { if (!enabled) { - return UM.Theme.getColor("setting_control_disabled") + return UM.Theme.getColor("checkbox_disabled") } switch (propertyProvider.properties.validationState) { @@ -138,20 +138,20 @@ SettingItem // Validation is OK. if (control.containsMouse || control.activeFocus) { - return UM.Theme.getColor("setting_control_highlight") + return UM.Theme.getColor("checkbox_hover") } - return UM.Theme.getColor("setting_control") + return UM.Theme.getColor("checkbox") } UM.RecolorImage { anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter - width: Math.round(parent.width / 2.5) - height: Math.round(parent.height / 2.5) + height: UM.Theme.getSize("checkbox_mark").height + width: UM.Theme.getSize("checkbox_mark").width sourceSize.height: width - color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text"); - source: UM.Theme.getIcon("Check") + color: !enabled ? UM.Theme.getColor("checkbox_mark_disabled") : UM.Theme.getColor("checkbox_mark"); + source: UM.Theme.getIcon("Check", "low") opacity: control.checked ? 1 : 0 Behavior on opacity { NumberAnimation { duration: 100; } } } diff --git a/resources/qml/Settings/SettingExtruder.qml b/resources/qml/Settings/SettingExtruder.qml index ea514eb069..c3bc472fbe 100644 --- a/resources/qml/Settings/SettingExtruder.qml +++ b/resources/qml/Settings/SettingExtruder.qml @@ -1,18 +1,18 @@ -// Copyright (c) 2016 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Uranium is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 import QtQuick.Controls 2.0 -import UM 1.1 as UM -import Cura 1.0 as Cura +import UM 1.5 as UM +import Cura 1.5 as Cura SettingItem { id: base property var focusItem: control - contents: ComboBox + contents: Cura.ComboBox { id: control anchors.fill: parent @@ -113,7 +113,7 @@ SettingItem color: UM.Theme.getColor("setting_control_button"); } - background: Rectangle + background: UM.UnderlineBackground { color: { @@ -127,9 +127,7 @@ SettingItem } return UM.Theme.getColor("setting_control") } - radius: UM.Theme.getSize("setting_control_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: + liningColor: { if (!enabled) { @@ -137,13 +135,13 @@ SettingItem } if (control.hovered || control.activeFocus) { - return UM.Theme.getColor("setting_control_border_highlight") + return UM.Theme.getColor("border_main") } - return UM.Theme.getColor("setting_control_border") + return UM.Theme.getColor("border_field_light") } } - contentItem: Label + contentItem: UM.Label { anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left @@ -153,13 +151,8 @@ SettingItem text: control.currentText textFormat: Text.PlainText - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") color: enabled ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text") - elide: Text.ElideLeft - verticalAlignment: Text.AlignVCenter - background: Rectangle { id: swatch @@ -183,12 +176,12 @@ SettingItem contentItem: ListView { - clip: true implicitHeight: contentHeight + + ScrollBar.vertical: UM.ScrollBar {} + clip: true model: control.popup.visible ? control.delegateModel : null currentIndex: control.highlightedIndex - - ScrollIndicator.vertical: ScrollIndicator { } } background: Rectangle @@ -204,27 +197,15 @@ SettingItem height: control.height highlighted: control.highlightedIndex == index - contentItem: Label + contentItem: UM.Label { anchors.fill: parent anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width text: model.name - renderType: Text.NativeRendering - color: - { - if (model.enabled) - { - UM.Theme.getColor("setting_control_text") - } else - { - UM.Theme.getColor("action_button_disabled_text"); - } - } - font: UM.Theme.getFont("default") + color: model.enabled ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("action_button_disabled_text") elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter rightPadding: swatch.width + UM.Theme.getSize("setting_unit_margin").width background: Rectangle @@ -244,7 +225,6 @@ SettingItem background: Rectangle { color: parent.highlighted ? UM.Theme.getColor("setting_control_highlight") : "transparent" - border.color: parent.highlighted ? UM.Theme.getColor("setting_control_border_highlight") : "transparent" } } } diff --git a/resources/qml/Settings/SettingItem.qml b/resources/qml/Settings/SettingItem.qml index 35172fc799..0470e91faa 100644 --- a/resources/qml/Settings/SettingItem.qml +++ b/resources/qml/Settings/SettingItem.qml @@ -17,7 +17,7 @@ Item height: UM.Theme.getSize("section").height anchors.left: parent.left anchors.right: parent.right - // To avoid overlaping with the scrollBars + // To avoid overlapping with the scrollBars anchors.rightMargin: 2 * UM.Theme.getSize("thin_margin").width property alias contents: controlContainer.children @@ -269,7 +269,7 @@ Item } // If the setting does not have a limit_to_extruder property (or is -1), use the active stack. - if (globalPropertyProvider.properties.limit_to_extruder === null || String(globalPropertyProvider.properties.limit_to_extruder) === "-1") + if (globalPropertyProvider.properties.limit_to_extruder === null || globalPropertyProvider.properties.limit_to_extruder === "-1") { return Cura.SettingInheritanceManager.settingsWithInheritanceWarning.indexOf(definition.key) >= 0 } @@ -283,7 +283,7 @@ Item { return false } - return Cura.SettingInheritanceManager.getOverridesForExtruder(definition.key, String(globalPropertyProvider.properties.limit_to_extruder)).indexOf(definition.key) >= 0 + return Cura.SettingInheritanceManager.hasOverrides(definition.key, globalPropertyProvider.properties.limit_to_extruder) } anchors.top: parent.top diff --git a/resources/qml/Settings/SettingOptionalExtruder.qml b/resources/qml/Settings/SettingOptionalExtruder.qml index 94df1bcc03..2a4db2ab31 100644 --- a/resources/qml/Settings/SettingOptionalExtruder.qml +++ b/resources/qml/Settings/SettingOptionalExtruder.qml @@ -1,11 +1,11 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 import QtQuick.Controls 2.0 -import UM 1.1 as UM -import Cura 1.0 as Cura +import UM 1.5 as UM +import Cura 1.5 as Cura SettingItem { @@ -19,7 +19,7 @@ SettingItem // this extra property to keep the ExtrudersModel and use this in the rest of the code. property var extrudersWithOptionalModel: CuraApplication.getExtrudersModelWithOptional() - contents: ComboBox + contents: Cura.ComboBox { id: control anchors.fill: parent @@ -111,26 +111,24 @@ SettingItem sourceSize.width: width + 5 * screenScaleFactor sourceSize.height: width + 5 * screenScaleFactor - color: UM.Theme.getColor("setting_control_button"); + color: UM.Theme.getColor("setting_control_button") } - background: Rectangle + background: UM.UnderlineBackground { color: { if (!enabled) { - return UM.Theme.getColor("setting_control_disabled"); + return UM.Theme.getColor("setting_control_disabled") } - if (control.hovered || control.activeFocus) + if (control.hovered || base.activeFocus) { - return UM.Theme.getColor("setting_control_highlight"); + return UM.Theme.getColor("setting_control_highlight") } - return UM.Theme.getColor("setting_control"); + return UM.Theme.getColor("setting_control") } - radius: UM.Theme.getSize("setting_control_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: + liningColor: { if (!enabled) { @@ -138,13 +136,13 @@ SettingItem } if (control.hovered || control.activeFocus) { - return UM.Theme.getColor("setting_control_border_highlight") + return UM.Theme.getColor("border_main") } - return UM.Theme.getColor("setting_control_border") + return UM.Theme.getColor("border_field_light") } } - contentItem: Label + contentItem: UM.Label { anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left @@ -154,12 +152,9 @@ SettingItem text: control.currentText textFormat: Text.PlainText - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") color: enabled ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text") elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter background: Rectangle { @@ -175,19 +170,21 @@ SettingItem } } - popup: Popup { + popup: Popup + { y: control.height - UM.Theme.getSize("default_lining").height width: control.width implicitHeight: contentItem.implicitHeight + 2 * UM.Theme.getSize("default_lining").width padding: UM.Theme.getSize("default_lining").width - contentItem: ListView { - clip: true + contentItem: ListView + { implicitHeight: contentHeight + + ScrollBar.vertical: UM.ScrollBar {} + clip: true model: control.popup.visible ? control.delegateModel : null currentIndex: control.highlightedIndex - - ScrollIndicator.vertical: ScrollIndicator { } } background: Rectangle { @@ -202,7 +199,7 @@ SettingItem height: control.height highlighted: control.highlightedIndex == index - contentItem: Label + contentItem: UM.Label { anchors.fill: parent anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width @@ -210,18 +207,15 @@ SettingItem text: model.name textFormat: Text.PlainText - renderType: Text.NativeRendering color: { if (model.enabled) { UM.Theme.getColor("setting_control_text") } else { - UM.Theme.getColor("action_button_disabled_text"); + UM.Theme.getColor("action_button_disabled_text") } } - font: UM.Theme.getFont("default") elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter rightPadding: swatch.width + UM.Theme.getSize("setting_unit_margin").width background: Rectangle @@ -241,7 +235,6 @@ SettingItem background: Rectangle { color: parent.highlighted ? UM.Theme.getColor("setting_control_highlight") : "transparent" - border.color: parent.highlighted ? UM.Theme.getColor("setting_control_border_highlight") : "transparent" } } } diff --git a/resources/qml/Settings/SettingTextField.qml b/resources/qml/Settings/SettingTextField.qml index a5647e2d3a..95976ad58e 100644 --- a/resources/qml/Settings/SettingTextField.qml +++ b/resources/qml/Settings/SettingTextField.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.0 -import UM 1.1 as UM +import UM 1.5 as UM SettingItem { @@ -26,19 +26,17 @@ SettingItem } } - contents: Rectangle + contents: UM.UnderlineBackground { id: control anchors.fill: parent - radius: UM.Theme.getSize("setting_control_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: + liningColor: { if(!enabled) { - return UM.Theme.getColor("setting_control_disabled_border") + return UM.Theme.getColor("text_field_border_disabled") } switch(propertyProvider.properties.validationState) { @@ -54,15 +52,15 @@ SettingItem //Validation is OK. if(hovered || input.activeFocus) { - return UM.Theme.getColor("setting_control_border_highlight") + return UM.Theme.getColor("text_field_border_hovered") } - return UM.Theme.getColor("setting_control_border") + return UM.Theme.getColor("text_field_border") } color: { if(!enabled) { - return UM.Theme.getColor("setting_control_disabled") + return UM.Theme.getColor("text_field") } switch(propertyProvider.properties.validationState) { @@ -78,19 +76,11 @@ SettingItem return UM.Theme.getColor("setting_validation_ok") default: - return UM.Theme.getColor("setting_control") + return UM.Theme.getColor("text_field") } } - Rectangle - { - anchors.fill: parent - anchors.margins: Math.round(UM.Theme.getSize("default_lining").width) - color: UM.Theme.getColor("setting_control_highlight") - opacity: !control.hovered ? 0 : propertyProvider.properties.validationState == "ValidatorState.Valid" ? 1.0 : 0.35 - } - - Label + UM.Label { anchors { @@ -105,9 +95,7 @@ SettingItem //However the setting value is aligned, align the unit opposite. That way it stays readable with right-to-left languages. horizontalAlignment: (input.effectiveHorizontalAlignment == Text.AlignLeft) ? Text.AlignRight : Text.AlignLeft textFormat: Text.PlainText - renderType: Text.NativeRendering color: UM.Theme.getColor("setting_unit") - font: UM.Theme.getFont("default") } TextInput @@ -155,8 +143,9 @@ SettingItem } color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text") + selectedTextColor: UM.Theme.getColor("setting_control_text") font: UM.Theme.getFont("default") - + selectionColor: UM.Theme.getColor("text_selection") selectByMouse: true maximumLength: (definition.type == "str" || definition.type == "[int]") ? -1 : 10 diff --git a/resources/qml/Settings/SettingUnknown.qml b/resources/qml/Settings/SettingUnknown.qml index 8eeb2fb6a0..645e4571b0 100644 --- a/resources/qml/Settings/SettingUnknown.qml +++ b/resources/qml/Settings/SettingUnknown.qml @@ -4,17 +4,13 @@ import QtQuick 2.7 import QtQuick.Controls 2.0 -import UM 1.2 as UM +import UM 1.5 as UM SettingItem { - contents: Label + contents: UM.Label { anchors.fill: parent text: propertyProvider.properties.value + " " + unit - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - verticalAlignment: Text.AlignVCenter } } diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml index 26d88db911..2ab98081e7 100644 --- a/resources/qml/Settings/SettingView.qml +++ b/resources/qml/Settings/SettingView.qml @@ -1,12 +1,10 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 -import QtQuick.Layouts 1.2 +import QtQuick.Controls 2.1 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura import "../Menus" @@ -16,29 +14,11 @@ Item id: settingsView property QtObject settingVisibilityPresetsModel: CuraApplication.getSettingVisibilityPresetsModel() - property Action configureSettings property bool findingSettings - Rectangle + Item { id: filterContainer - visible: true - - radius: UM.Theme.getSize("setting_control_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: - { - if (hoverMouseArea.containsMouse || clearFilterButton.containsMouse) - { - return UM.Theme.getColor("setting_control_border_highlight") - } - else - { - return UM.Theme.getColor("setting_control_border") - } - } - - color: UM.Theme.getColor("setting_control") anchors { @@ -48,6 +28,7 @@ Item rightMargin: UM.Theme.getSize("default_margin").width } height: UM.Theme.getSize("print_setup_big_item").height + Timer { id: settingsSearchTimer @@ -57,38 +38,37 @@ Item repeat: false } - TextField + Cura.TextField { id: filter height: parent.height anchors.left: parent.left - anchors.right: clearFilterButton.left - anchors.rightMargin: Math.round(UM.Theme.getSize("thick_margin").width) - - placeholderText: - { - var imageSize = "width='" + UM.Theme.getSize("small_button_icon").width + "' height='" + UM.Theme.getSize("small_button_icon").height - var imageSource = "' src='"+ UM.Theme.getIcon("Magnifier") - var searchPlaceholder = catalog.i18nc("@label:textbox", "Search settings") - return "" + "
    " + searchPlaceholder - } - - style: TextFieldStyle - { - textColor: UM.Theme.getColor("setting_control_text") - placeholderTextColor: UM.Theme.getColor("setting_filter_field") - font: UM.Theme.getFont("default_italic") - background: Item {} - } + anchors.right: parent.right + leftPadding: searchIcon.width + UM.Theme.getSize("default_margin").width * 2 + placeholderText: catalog.i18nc("@label:textbox", "Search settings") + font.italic: true property var expandedCategories property bool lastFindingSettings: false - onTextChanged: + UM.RecolorImage { - settingsSearchTimer.restart() + id: searchIcon + + anchors + { + verticalCenter: parent.verticalCenter + left: parent.left + leftMargin: UM.Theme.getSize("default_margin").width + } + source: UM.Theme.getIcon("search") + height: UM.Theme.getSize("small_button_icon").height + width: height + color: UM.Theme.getColor("text") } + onTextChanged: settingsSearchTimer.restart() + onEditingFinished: { definitionsModel.filter = {"i18n_label|i18n_description" : "*" + text} @@ -100,10 +80,7 @@ Item } } - Keys.onEscapePressed: - { - filter.text = "" - } + Keys.onEscapePressed: filter.text = "" function updateDefinitionModel() { @@ -127,15 +104,6 @@ Item } } - MouseArea - { - id: hoverMouseArea - anchors.fill: parent - hoverEnabled: true - acceptedButtons: Qt.NoButton - cursorShape: Qt.IBeamCursor - } - UM.SimpleButton { id: clearFilterButton @@ -174,7 +142,7 @@ Item } } - ToolButton + UM.SimpleButton { id: settingVisibilityMenu @@ -187,25 +155,9 @@ Item } width: UM.Theme.getSize("medium_button_icon").width height: UM.Theme.getSize("medium_button_icon").height - - style: ButtonStyle - { - background: Item - { - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: UM.Theme.getSize("medium_button_icon").width - height: UM.Theme.getSize("medium_button_icon").height - sourceSize.width: width - sourceSize.height: height - color: control.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text") - source: UM.Theme.getIcon("Hamburger") - } - } - label: Label {} - } + iconSource: UM.Theme.getIcon("Hamburger") + hoverColor: UM.Theme.getColor("small_button_text_hover") + color: UM.Theme.getColor("small_button_text") onClicked: { @@ -220,14 +172,15 @@ Item // Mouse area that gathers the scroll events to not propagate it to the main view. MouseArea { - anchors.fill: scrollView + anchors.fill: contents acceptedButtons: Qt.AllButtons onWheel: wheel.accepted = true } - ScrollView + ListView { - id: scrollView + id: contents + anchors { top: filterContainer.bottom @@ -236,340 +189,332 @@ Item right: parent.right left: parent.left } + clip: true + cacheBuffer: 1000000 // Set a large cache to effectively just cache every list item. + ScrollBar.vertical: UM.ScrollBar {} - style: UM.Theme.styles.scrollview - flickableItem.flickableDirection: Flickable.VerticalFlick - __wheelAreaScrollSpeed: 75 // Scroll three lines in one scroll event - - ListView + model: UM.SettingDefinitionsModel { - id: contents - cacheBuffer: 1000000 // Set a large cache to effectively just cache every list item. - - model: UM.SettingDefinitionsModel + id: definitionsModel + containerId: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.definition.id: "" + visibilityHandler: UM.SettingPreferenceVisibilityHandler { } + exclude: ["machine_settings", "command_line_settings", "infill_mesh", "infill_mesh_order", "cutting_mesh", "support_mesh", "anti_overhang_mesh"] // TODO: infill_mesh settings are excluded hardcoded, but should be based on the fact that settable_globally, settable_per_meshgroup and settable_per_extruder are false. + expanded: CuraApplication.expandedCategories + onExpandedChanged: { - id: definitionsModel - containerId: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.definition.id: "" - visibilityHandler: UM.SettingPreferenceVisibilityHandler { } - exclude: ["machine_settings", "command_line_settings", "infill_mesh", "infill_mesh_order", "cutting_mesh", "support_mesh", "anti_overhang_mesh"] // TODO: infill_mesh settigns are excluded hardcoded, but should be based on the fact that settable_globally, settable_per_meshgroup and settable_per_extruder are false. - expanded: CuraApplication.expandedCategories - onExpandedChanged: + if (!findingSettings) { - if (!findingSettings) - { - // Do not change expandedCategories preference while filtering settings - // because all categories are expanded while filtering - CuraApplication.setExpandedCategories(expanded) - } + // Do not change expandedCategories preference while filtering settings + // because all categories are expanded while filtering + CuraApplication.setExpandedCategories(expanded) + } + } + onVisibilityChanged: Cura.SettingInheritanceManager.scheduleUpdate() + } + + property int indexWithFocus: -1 + property double delegateHeight: UM.Theme.getSize("section").height + 2 * UM.Theme.getSize("default_lining").height + property string activeMachineId: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.id : "" + delegate: Loader + { + id: delegate + + width: contents.width + height: enabled ? contents.delegateHeight: 0 + Behavior on height { NumberAnimation { duration: 100 } } + opacity: enabled ? 1 : 0 + Behavior on opacity { NumberAnimation { duration: 100 } } + enabled: provider.properties.enabled === "True" + + property var definition: model + property var settingDefinitionsModel: definitionsModel + property var propertyProvider: provider + property var globalPropertyProvider: inheritStackProvider + property bool externalResetHandler: false + + //Qt5.4.2 and earlier has a bug where this causes a crash: https://bugreports.qt.io/browse/QTBUG-35989 + //In addition, while it works for 5.5 and higher, the ordering of the actual combo box drop down changes, + //causing nasty issues when selecting different options. So disable asynchronous loading of enum type completely. + asynchronous: model.type !== "enum" && model.type !== "extruder" && model.type !== "optional_extruder" + active: model.type !== undefined + + source: + { + switch(model.type) + { + case "int": + return "SettingTextField.qml" + case "[int]": + return "SettingTextField.qml" + case "float": + return "SettingTextField.qml" + case "enum": + return "SettingComboBox.qml" + case "extruder": + return "SettingExtruder.qml" + case "bool": + return "SettingCheckBox.qml" + case "str": + return "SettingTextField.qml" + case "category": + return "SettingCategory.qml" + case "optional_extruder": + return "SettingOptionalExtruder.qml" + default: + return "SettingUnknown.qml" } - onVisibilityChanged: Cura.SettingInheritanceManager.scheduleUpdate() } - property int indexWithFocus: -1 - property double delegateHeight: UM.Theme.getSize("section").height + 2 * UM.Theme.getSize("default_lining").height - property string activeMachineId: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.id : "" - delegate: Loader + // Binding to ensure that the right containerstack ID is set for the provider. + // This ensures that if a setting has a limit_to_extruder id (for instance; Support speed points to the + // extruder that actually prints the support, as that is the setting we need to use to calculate the value) + Binding { - id: delegate - - width: scrollView.width - height: enabled ? contents.delegateHeight: 0 - Behavior on height { NumberAnimation { duration: 100 } } - opacity: enabled ? 1 : 0 - Behavior on opacity { NumberAnimation { duration: 100 } } - enabled: provider.properties.enabled === "True" - - property var definition: model - property var settingDefinitionsModel: definitionsModel - property var propertyProvider: provider - property var globalPropertyProvider: inheritStackProvider - property bool externalResetHandler: false - - //Qt5.4.2 and earlier has a bug where this causes a crash: https://bugreports.qt.io/browse/QTBUG-35989 - //In addition, while it works for 5.5 and higher, the ordering of the actual combo box drop down changes, - //causing nasty issues when selecting different options. So disable asynchronous loading of enum type completely. - asynchronous: model.type !== "enum" && model.type !== "extruder" && model.type !== "optional_extruder" - active: model.type !== undefined - - source: + target: provider + property: "containerStackId" + when: model.settable_per_extruder || (inheritStackProvider.properties.limit_to_extruder !== undefined && inheritStackProvider.properties.limit_to_extruder >= 0); + value: { - switch(model.type) - { - case "int": - return "SettingTextField.qml" - case "[int]": - return "SettingTextField.qml" - case "float": - return "SettingTextField.qml" - case "enum": - return "SettingComboBox.qml" - case "extruder": - return "SettingExtruder.qml" - case "bool": - return "SettingCheckBox.qml" - case "str": - return "SettingTextField.qml" - case "category": - return "SettingCategory.qml" - case "optional_extruder": - return "SettingOptionalExtruder.qml" - default: - return "SettingUnknown.qml" - } - } + // Associate this binding with Cura.MachineManager.activeMachine.id in the beginning so this + // binding will be triggered when activeMachineId is changed too. + // Otherwise, if this value only depends on the extruderIds, it won't get updated when the + // machine gets changed. - // Binding to ensure that the right containerstack ID is set for the provider. - // This ensures that if a setting has a limit_to_extruder id (for instance; Support speed points to the - // extruder that actually prints the support, as that is the setting we need to use to calculate the value) - Binding - { - target: provider - property: "containerStackId" - when: model.settable_per_extruder || (inheritStackProvider.properties.limit_to_extruder !== null && inheritStackProvider.properties.limit_to_extruder >= 0); - value: + if (!model.settable_per_extruder) { - // Associate this binding with Cura.MachineManager.activeMachine.id in the beginning so this - // binding will be triggered when activeMachineId is changed too. - // Otherwise, if this value only depends on the extruderIds, it won't get updated when the - // machine gets changed. - - if (!model.settable_per_extruder) - { - //Not settable per extruder or there only is global, so we must pick global. - return contents.activeMachineId - } - if (inheritStackProvider.properties.limit_to_extruder !== null && inheritStackProvider.properties.limit_to_extruder >= 0) - { - //We have limit_to_extruder, so pick that stack. - return Cura.ExtruderManager.extruderIds[String(inheritStackProvider.properties.limit_to_extruder)]; - } - if (Cura.ExtruderManager.activeExtruderStackId) - { - //We're on an extruder tab. Pick the current extruder. - return Cura.ExtruderManager.activeExtruderStackId; - } - //No extruder tab is selected. Pick the global stack. Shouldn't happen any more since we removed the global tab. + //Not settable per extruder or there only is global, so we must pick global. return contents.activeMachineId } - } - - // Specialty provider that only watches global_inherits (we cant filter on what property changed we get events - // so we bypass that to make a dedicated provider). - UM.SettingPropertyProvider - { - id: inheritStackProvider - containerStackId: contents.activeMachineId - key: model.key - watchedProperties: [ "limit_to_extruder" ] - } - - UM.SettingPropertyProvider - { - id: provider - - containerStackId: contents.activeMachineId - key: model.key - watchedProperties: [ "value", "enabled", "state", "validationState", "settable_per_extruder", "resolve" ] - storeIndex: 0 - removeUnusedValue: model.resolve === undefined - } - - Connections - { - target: item - function onContextMenuRequested() + if (inheritStackProvider.properties.limit_to_extruder !== undefined && inheritStackProvider.properties.limit_to_extruder >= 0) { - contextMenu.key = model.key; - contextMenu.settingVisible = model.visible; - contextMenu.provider = provider - contextMenu.popup(); + //We have limit_to_extruder, so pick that stack. + return Cura.ExtruderManager.extruderIds[inheritStackProvider.properties.limit_to_extruder] } - function onShowTooltip(text) { base.showTooltip(delegate, Qt.point(-settingsView.x - UM.Theme.getSize("default_margin").width, 0), text) } - function onHideTooltip() { base.hideTooltip() } - function onShowAllHiddenInheritedSettings() + if (Cura.ExtruderManager.activeExtruderStackId) { - var children_with_override = Cura.SettingInheritanceManager.getChildrenKeysWithOverride(category_id) - for(var i = 0; i < children_with_override.length; i++) - { - definitionsModel.setVisible(children_with_override[i], true) - } - Cura.SettingInheritanceManager.manualRemoveOverride(category_id) - } - function onFocusReceived() - { - contents.indexWithFocus = index; - animateContentY.from = contents.contentY; - contents.positionViewAtIndex(index, ListView.Contain); - animateContentY.to = contents.contentY; - animateContentY.running = true; - } - function onSetActiveFocusToNextSetting(forward) - { - if (forward == undefined || forward) - { - contents.currentIndex = contents.indexWithFocus + 1; - while(contents.currentItem && contents.currentItem.height <= 0) - { - contents.currentIndex++; - } - if (contents.currentItem) - { - contents.currentItem.item.focusItem.forceActiveFocus(); - } - } - else - { - contents.currentIndex = contents.indexWithFocus - 1; - while(contents.currentItem && contents.currentItem.height <= 0) - { - contents.currentIndex--; - } - if (contents.currentItem) - { - contents.currentItem.item.focusItem.forceActiveFocus(); - } - } + //We're on an extruder tab. Pick the current extruder. + return Cura.ExtruderManager.activeExtruderStackId } + //No extruder tab is selected. Pick the global stack. Shouldn't happen any more since we removed the global tab. + return contents.activeMachineId } } - NumberAnimation { - id: animateContentY - target: contents - property: "contentY" - duration: 50 - } - - add: Transition { - SequentialAnimation { - NumberAnimation { properties: "height"; from: 0; duration: 100 } - NumberAnimation { properties: "opacity"; from: 0; duration: 100 } - } - } - remove: Transition { - SequentialAnimation { - NumberAnimation { properties: "opacity"; to: 0; duration: 100 } - NumberAnimation { properties: "height"; to: 0; duration: 100 } - } - } - addDisplaced: Transition { - NumberAnimation { properties: "x,y"; duration: 100 } - } - removeDisplaced: Transition { - SequentialAnimation { - PauseAnimation { duration: 100; } - NumberAnimation { properties: "x,y"; duration: 100 } - } - } - - Menu + // Specialty provider that only watches global_inherits (we can't filter on what property changed we get events + // so we bypass that to make a dedicated provider). + UM.SettingPropertyProvider { - id: contextMenu - - property string key - property var provider - property bool settingVisible - - MenuItem - { - //: Settings context menu action - text: catalog.i18nc("@action:menu", "Copy value to all extruders") - visible: machineExtruderCount.properties.value > 1 - enabled: contextMenu.provider !== undefined && contextMenu.provider.properties.settable_per_extruder !== "False" - onTriggered: Cura.MachineManager.copyValueToExtruders(contextMenu.key) - } - - MenuItem - { - //: Settings context menu action - text: catalog.i18nc("@action:menu", "Copy all changed values to all extruders") - visible: machineExtruderCount.properties.value > 1 - enabled: contextMenu.provider !== undefined - onTriggered: Cura.MachineManager.copyAllValuesToExtruders() - } - - MenuSeparator - { - visible: machineExtruderCount.properties.value > 1 - } - - Instantiator - { - id: customMenuItems - model: Cura.SidebarCustomMenuItemsModel { } - MenuItem - { - text: model.name - iconName: model.icon_name - onTriggered: - { - customMenuItems.model.callMenuItemMethod(name, model.actions, {"key": contextMenu.key}) - } - } - onObjectAdded: contextMenu.insertItem(index, object) - onObjectRemoved: contextMenu.removeItem(object) - } - - MenuSeparator - { - visible: customMenuItems.count > 0 - } - - MenuItem - { - //: Settings context menu action - visible: !findingSettings - text: catalog.i18nc("@action:menu", "Hide this setting"); - onTriggered: - { - definitionsModel.hide(contextMenu.key) - } - } - MenuItem - { - //: Settings context menu action - text: - { - if (contextMenu.settingVisible) - { - return catalog.i18nc("@action:menu", "Don't show this setting"); - } - else - { - return catalog.i18nc("@action:menu", "Keep this setting visible"); - } - } - visible: findingSettings - onTriggered: - { - if (contextMenu.settingVisible) - { - definitionsModel.hide(contextMenu.key); - } - else - { - definitionsModel.show(contextMenu.key); - } - } - } - MenuItem - { - //: Settings context menu action - text: catalog.i18nc("@action:menu", "Configure setting visibility..."); - - onTriggered: Cura.Actions.configureSettingVisibility.trigger(contextMenu); - } + id: inheritStackProvider + containerStackId: contents.activeMachineId + key: model.key + watchedProperties: [ "limit_to_extruder" ] } UM.SettingPropertyProvider { - id: machineExtruderCount + id: provider - containerStackId: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.id : "" - key: "machine_extruder_count" - watchedProperties: [ "value" ] + containerStackId: contents.activeMachineId + key: model.key + watchedProperties: [ "value", "enabled", "state", "validationState", "settable_per_extruder", "resolve" ] storeIndex: 0 + removeUnusedValue: model.resolve === undefined } + + Connections + { + target: item + function onContextMenuRequested() + { + contextMenu.key = model.key + contextMenu.settingVisible = model.visible + contextMenu.provider = provider + contextMenu.popup() //iconName: model.icon_name + } + function onShowTooltip(text) { base.showTooltip(delegate, Qt.point(-settingsView.x - UM.Theme.getSize("default_margin").width, 0), text) } + function onHideTooltip() { base.hideTooltip() } + function onShowAllHiddenInheritedSettings() + { + var children_with_override = Cura.SettingInheritanceManager.getChildrenKeysWithOverride(category_id) + for(var i = 0; i < children_with_override.length; i++) + { + definitionsModel.setVisible(children_with_override[i], true) + } + Cura.SettingInheritanceManager.manualRemoveOverride(category_id) + } + function onFocusReceived() + { + contents.indexWithFocus = index + animateContentY.from = contents.contentY + contents.positionViewAtIndex(index, ListView.Contain) + animateContentY.to = contents.contentY + animateContentY.running = true + } + function onSetActiveFocusToNextSetting(forward) + { + if (forward == undefined || forward) + { + contents.currentIndex = contents.indexWithFocus + 1 + while(contents.currentItem && contents.currentItem.height <= 0) + { + contents.currentIndex++ + } + if (contents.currentItem) + { + contents.currentItem.item.focusItem.forceActiveFocus() + } + } + else + { + contents.currentIndex = contents.indexWithFocus - 1 + while(contents.currentItem && contents.currentItem.height <= 0) + { + contents.currentIndex-- + } + if (contents.currentItem) + { + contents.currentItem.item.focusItem.forceActiveFocus() + } + } + } + } + } + + NumberAnimation { + id: animateContentY + target: contents + property: "contentY" + duration: 50 + } + + add: Transition { + SequentialAnimation { + NumberAnimation { properties: "height"; from: 0; duration: 100 } + NumberAnimation { properties: "opacity"; from: 0; duration: 100 } + } + } + remove: Transition { + SequentialAnimation { + NumberAnimation { properties: "opacity"; to: 0; duration: 100 } + NumberAnimation { properties: "height"; to: 0; duration: 100 } + } + } + addDisplaced: Transition { + NumberAnimation { properties: "x,y"; duration: 100 } + } + removeDisplaced: Transition { + SequentialAnimation { + PauseAnimation { duration: 100; } + NumberAnimation { properties: "x,y"; duration: 100 } + } + } + + Cura.Menu + { + id: contextMenu + + property string key + property var provider + property bool settingVisible + + Cura.MenuItem + { + //: Settings context menu action + text: catalog.i18nc("@action:menu", "Copy value to all extruders") + visible: machineExtruderCount.properties.value > 1 + enabled: contextMenu.provider !== undefined && contextMenu.provider.properties.settable_per_extruder !== "False" + onTriggered: Cura.MachineManager.copyValueToExtruders(contextMenu.key) + } + + Cura.MenuItem + { + //: Settings context menu action + text: catalog.i18nc("@action:menu", "Copy all changed values to all extruders") + visible: machineExtruderCount.properties.value > 1 + enabled: contextMenu.provider !== undefined + onTriggered: Cura.MachineManager.copyAllValuesToExtruders() + } + + Cura.MenuSeparator + { + visible: machineExtruderCount.properties.value > 1 + } + + Instantiator + { + id: customMenuItems + model: Cura.SidebarCustomMenuItemsModel { } + Cura.MenuItem + { + text: model.name + onTriggered: + { + customMenuItems.model.callMenuItemMethod(name, model.actions, {"key": contextMenu.key}) + } + } + onObjectAdded: contextMenu.insertItem(index, object) + onObjectRemoved: contextMenu.removeItem(object) + } + + Cura.MenuSeparator + { + visible: customMenuItems.count > 0 + } + + Cura.MenuItem + { + //: Settings context menu action + visible: !findingSettings + text: catalog.i18nc("@action:menu", "Hide this setting") + onTriggered: + { + definitionsModel.hide(contextMenu.key) + } + } + Cura.MenuItem + { + //: Settings context menu action + text: + { + if (contextMenu.settingVisible) + { + return catalog.i18nc("@action:menu", "Don't show this setting") + } + else + { + return catalog.i18nc("@action:menu", "Keep this setting visible") + } + } + visible: findingSettings + onTriggered: + { + if (contextMenu.settingVisible) + { + definitionsModel.hide(contextMenu.key) + } + else + { + definitionsModel.show(contextMenu.key) + } + } + } + Cura.MenuItem + { + //: Settings context menu action + text: catalog.i18nc("@action:menu", "Configure setting visibility...") + + onTriggered: Cura.Actions.configureSettingVisibility.trigger(contextMenu) + } + } + + UM.SettingPropertyProvider + { + id: machineExtruderCount + + containerStackId: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.id : "" + key: "machine_extruder_count" + watchedProperties: [ "value" ] + storeIndex: 0 } } } diff --git a/resources/qml/SpinBox.qml b/resources/qml/SpinBox.qml new file mode 100644 index 0000000000..3c5a4d95e2 --- /dev/null +++ b/resources/qml/SpinBox.qml @@ -0,0 +1,131 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.2 +import QtQuick.Controls 2.15 + +import UM 1.5 as UM +import Cura 1.5 as Cura + +// This component extends the funtionality of QtControls 2.x Spinboxes to +// - be able to contain fractional values +// - hava a "prefix" and a "suffix". A validator is added that recognizes this pre-, suf-fix combo. When adding a custom +// validator the pre-, suf-fix should be added (e.g. new RegExp("^" + prefix + \regex\ + suffix + "$") + +Item +{ + id: base + + property string prefix: "" + property string suffix: "" + property int decimals: 0 + property real stepSize: 1 + property real value: 0 + property real from: 0 + property real to: 99 + + property alias wrap: spinBox.wrap + + property bool editable: true + + property var validator: RegExpValidator + { + regExp: new RegExp("^" + prefix + "([0-9]+[.|,]?[0-9]*)?" + suffix + "$") + } + + signal editingFinished() + implicitWidth: spinBox.implicitWidth + implicitHeight: spinBox.implicitHeight + + SpinBox + { + id: spinBox + anchors.fill: base + editable: base.editable + topPadding: 0 + bottomPadding: 0 + padding: UM.Theme.getSize("narrow_margin").width + + // The stepSize of the SpinBox is intentionally set to be always `1` + // As SpinBoxes can only contain integer values the `base.stepSize` is concidered the precision/resolution + // increasing the spinBox.value by one increases the actual/real value of the component by `base.stepSize` + // as such spinBox.value * base.stepSizes produces the real value of the component + stepSize: 1 + value: Math.floor(base.value / base.stepSize) + from: Math.floor(base.from / base.stepSize) + to: Math.floor(base.to / base.stepSize) + + valueFromText: function(text) + { + return parseFloat(text.substring(prefix.length, text.length - suffix.length).replace(",", ".")) / base.stepSize; + } + + textFromValue: function(value) + { + return prefix + (value * base.stepSize).toFixed(decimals) + suffix; + } + + validator: base.validator + + onValueModified: + { + base.value = value * base.stepSize; + } + + background: Item {} + + contentItem: Cura.TextField + { + text: spinBox.textFromValue(spinBox.value, spinBox.locale) + validator: base.validator + + onActiveFocusChanged: + { + if (!activeFocus) + { + base.editingFinished(); + } + } + } + + down.indicator: Rectangle + { + x: spinBox.mirrored ? parent.width - width : 0 + height: parent.height + width: height + + UM.UnderlineBackground { + color: spinBox.down.pressed ? spinBox.palette.mid : UM.Theme.getColor("detail_background") + } + + UM.RecolorImage + { + anchors.centerIn: parent + height: parent.height / 2.5 + width: height + color: enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("text_disabled") + source: UM.Theme.getIcon("Minus") + } + } + + up.indicator: Rectangle + { + x: spinBox.mirrored ? 0 : parent.width - width + height: parent.height + width: height + + UM.UnderlineBackground { + color: spinBox.up.pressed ? spinBox.palette.mid : UM.Theme.getColor("detail_background") + } + + UM.RecolorImage + { + anchors.centerIn: parent + height: parent.height / 2.5 + width: height + color: enabled ? UM.Theme.getColor("text") : UM.Theme.getColor("text_disabled") + source: UM.Theme.getIcon("Plus") + } + } + } +} diff --git a/resources/qml/TableView.qml b/resources/qml/TableView.qml index 1b084be5a0..5e0b863f5a 100644 --- a/resources/qml/TableView.qml +++ b/resources/qml/TableView.qml @@ -1,68 +1,235 @@ -// Copyright (C) 2021 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. +//Copyright (C) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. -import QtQuick 2.10 -import QtQuick.Controls 1.4 as OldControls // TableView doesn't exist in the QtQuick Controls 2.x in 5.10, so use the old one -import QtQuick.Controls 2.3 -import QtQuick.Controls.Styles 1.4 +import Qt.labs.qmlmodels 1.0 +import QtQuick 2.15 +import QtQuick.Controls 2.15 -import UM 1.2 as UM +import UM 1.5 as UM - -OldControls.TableView +/* + * A re-sizeable table of data. + * + * This table combines a list of headers with a TableView to show certain roles in a table. + * The columns of the table can be resized. + * When the table becomes too big, you can scroll through the table. When a column becomes too small, the contents of + * the table are elided. + * The table gets Cura's themeing. + */ +Item { - itemDelegate: Item - { - height: tableCellLabel.implicitHeight + id: tableBase - Label + required property var columnHeaders //The text to show in the headers of each column. + property alias model: tableView.model //A TableModel to display in this table. To use a ListModel for the rows, use "rows: listModel.items" + property int currentRow: -1 //The selected row index. + property var onDoubleClicked: function(row) {} //Something to execute when double clicked. Accepts one argument: The index of the row that was clicked on. + property bool allowSelection: true //Whether to allow the user to select items. + property string sectionRole: "" + + property alias flickableDirection: tableView.flickableDirection + Row + { + id: headerBar + Repeater { - id: tableCellLabel - color: styleData.selected ? UM.Theme.getColor("primary_button_text") : UM.Theme.getColor("text") - elide: Text.ElideRight - text: styleData.value - anchors.fill: parent - anchors.leftMargin: 10 * screenScaleFactor - verticalAlignment: Text.AlignVCenter + id: headerRepeater + model: columnHeaders + Rectangle + { + width: Math.max(1, Math.round(tableBase.width / headerRepeater.count)) + height: UM.Theme.getSize("section").height + + color: UM.Theme.getColor("main_background") + border.width: UM.Theme.getSize("default_lining").width + border.color: UM.Theme.getColor("thick_lining") + + UM.Label + { + id: contentText + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.right: parent.right + anchors.rightMargin: UM.Theme.getSize("narrow_margin").width + wrapMode: Text.NoWrap + text: modelData + font: UM.Theme.getFont("medium_bold") + elide: Text.ElideRight + } + Item //Resize handle. + { + anchors + { + right: parent.right + top: parent.top + bottom: parent.bottom + } + width: UM.Theme.getSize("default_lining").width + + MouseArea + { + anchors.fill: parent + + cursorShape: Qt.SizeHorCursor + drag + { + target: parent + axis: Drag.XAxis + } + onMouseXChanged: + { + if(drag.active) + { + let new_width = parent.parent.width + mouseX; + let sum_widths = mouseX; + for(let i = 0; i < headerBar.children.length; ++i) + { + sum_widths += headerBar.children[i].width; + } + if(sum_widths > tableBase.width) + { + new_width -= sum_widths - tableBase.width; //Limit the total width to not exceed the view. + } + let width_fraction = new_width / tableBase.width; //Scale with the same fraction along with the total width, if the table is resized. + parent.parent.width = Qt.binding(function() { return Math.max(10, Math.round(tableBase.width * width_fraction)) }); + } + } + } + } + + onWidthChanged: tableView.forceLayout(); //Rescale table cells underneath as well. + } + } + } + Rectangle + { + color: UM.Theme.getColor("main_background") + anchors + { + top: headerBar.bottom + topMargin: -UM.Theme.getSize("default_lining").width + left: parent.left + right: parent.right + bottom: parent.bottom + } + border.width: UM.Theme.getSize("default_lining").width + border.color: UM.Theme.getColor("thick_lining") + } + + TableView + { + id: tableView + anchors + { + top: headerBar.bottom + left: parent.left + right: parent.right + bottom: parent.bottom + margins: UM.Theme.getSize("default_lining").width + } + + flickableDirection: Flickable.AutoFlickIfNeeded + contentWidth: -1 // AUto calculate the contendWidth + clip: true + ScrollBar.vertical: UM.ScrollBar {} + columnWidthProvider: function(column) + { + return headerBar.children[column].width; //Cells get the same width as their column header. + } + + delegate: Rectangle + { + implicitHeight: Math.max(1, cellContent.height) + + color: UM.Theme.getColor((tableBase.currentRow == row) ? "text_selection" : "main_background") + + UM.Label + { + id: cellContent + anchors + { + left: parent.left + leftMargin: UM.Theme.getSize("default_margin").width + right: parent.right + } + wrapMode: Text.NoWrap + text: display + verticalAlignment: Text.AlignVCenter + elide: Text.ElideRight + } + TextMetrics + { + id: cellTextMetrics + text: cellContent.text + font: cellContent.font + elide: cellContent.elide + elideWidth: cellContent.width + } + UM.TooltipArea + { + anchors.fill: parent + + acceptedButtons: Qt.LeftButton + text: (cellTextMetrics.elidedText == cellContent.text) ? "" : cellContent.text //Show full text in tooltip if it was elided. + onClicked: + { + if(tableBase.allowSelection) + { + tableBase.currentRow = row; //Select this row. + } + } + onDoubleClicked: + { + tableBase.onDoubleClicked(row); + } + } + } + + Connections + { + target: model + function onRowCountChanged() + { + tableView.contentY = 0; //When the number of rows is reduced, make sure to scroll back to the start. + } } } - rowDelegate: Rectangle + Connections { - color: styleData.selected ? UM.Theme.getColor("primary_button") : UM.Theme.getColor("main_background") - height: UM.Theme.getSize("table_row").height - } - - // Use the old styling technique since it's the only way to make the scrollbars themed in the TableView - style: TableViewStyle - { - backgroundColor: UM.Theme.getColor("main_background") - - handle: Rectangle + target: model + function onRowsChanged() { - // Both implicit width and height have to be set, since the handle is used by both the horizontal and the vertical scrollbars - implicitWidth: UM.Theme.getSize("scrollbar").width - implicitHeight: UM.Theme.getSize("scrollbar").width - radius: width / 2 - color: UM.Theme.getColor(styleData.pressed ? "scrollbar_handle_down" : (styleData.hovered ? "scrollbar_handle_hover" : "scrollbar_handle")) - } + let first_column = model.columns[0].display; + if(model.rows.length > 0 && model.rows[0][first_column].startsWith("")) //First item is already a section header. + { + return; //Assume we already added section headers. Prevent infinite recursion. + } + if(sectionRole === "" || model.rows.length == 0) //No section headers, or no items at all. + { + tableView.model.rows = model.rows; + return; + } - scrollBarBackground: Rectangle - { - // Both implicit width and height have to be set, since the handle is used by both the horizontal and the vertical scrollbars - implicitWidth: UM.Theme.getSize("scrollbar").width - implicitHeight: UM.Theme.getSize("scrollbar").width - color: UM.Theme.getColor("main_background") + //Insert section headers in the rows. + let last_section = ""; + let new_rows = []; + for(let i = 0; i < model.rows.length; ++i) + { + let item_section = model.rows[i][sectionRole]; + if(item_section !== last_section) //Starting a new section. + { + let section_header = {}; + for(let key in model.rows[i]) + { + section_header[key] = (key === first_column) ? "" + item_section + "" : ""; //Put the section header in the first column. + } + new_rows.push(section_header); //Add a row representing a section header. + last_section = item_section; + } + new_rows.push(model.rows[i]); + } + tableView.model.rows = new_rows; } - - // The little rectangle between the vertical and horizontal scrollbars - corner: Rectangle - { - color: UM.Theme.getColor("main_background") - } - - // Override the control arrows - incrementControl: Item { } - decrementControl: Item { } } } \ No newline at end of file diff --git a/resources/qml/TertiaryButton.qml b/resources/qml/TertiaryButton.qml index 76684b6ef2..8171188232 100644 --- a/resources/qml/TertiaryButton.qml +++ b/resources/qml/TertiaryButton.qml @@ -16,4 +16,5 @@ Cura.ActionButton textDisabledColor: UM.Theme.getColor("action_button_disabled_text") hoverColor: "transparent" underlineTextOnHover: true + iconSize: UM.Theme.getSize("action_button_icon_small").height } diff --git a/resources/qml/ToolTip.qml b/resources/qml/ToolTip.qml index 3157f81d89..e69de29bb2 100644 --- a/resources/qml/ToolTip.qml +++ b/resources/qml/ToolTip.qml @@ -1,83 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.7 -import QtQuick.Controls 2.3 - -import UM 1.0 as UM -import Cura 1.0 as Cura - -ToolTip -{ - enum ContentAlignment - { - AlignLeft, - AlignRight - } - - // Defines the alignment of the content, by default to the left - property int contentAlignment: Cura.ToolTip.ContentAlignment.AlignRight - - property alias tooltipText: tooltip.text - property alias arrowSize: backgroundRect.arrowSize - property var targetPoint: Qt.point(parent.x, y + Math.round(height/2)) - - id: tooltip - text: "" - delay: 500 - font: UM.Theme.getFont("default") - visible: opacity != 0.0 - opacity: 0.0 // initially hidden - - Behavior on opacity - { - NumberAnimation { duration: 100; } - } - - onAboutToShow: show() - onAboutToHide: hide() - - // If the text is not set, just set the height to 0 to prevent it from showing - height: text != "" ? label.contentHeight + 2 * UM.Theme.getSize("thin_margin").width: 0 - - x: - { - if (contentAlignment == Cura.ToolTip.ContentAlignment.AlignLeft) - { - return (label.width + Math.round(UM.Theme.getSize("default_arrow").width * 1.2) + padding * 2) * -1 - } - return parent.width + Math.round(UM.Theme.getSize("default_arrow").width * 1.2 + padding) - } - - y: Math.round(parent.height / 2 - label.height / 2 ) - padding - - padding: UM.Theme.getSize("thin_margin").width - - background: UM.PointingRectangle - { - id: backgroundRect - color: UM.Theme.getColor("tooltip") - target: Qt.point(targetPoint.x - tooltip.x, targetPoint.y - tooltip.y) - arrowSize: UM.Theme.getSize("default_arrow").width - visible: tooltip.height != 0 - } - - contentItem: Label - { - id: label - text: tooltip.text - font: tooltip.font - wrapMode: Text.Wrap - textFormat: Text.RichText - color: UM.Theme.getColor("tooltip_text") - renderType: Text.NativeRendering - } - - function show() { - opacity = 1 - } - - function hide() { - opacity = 0 - } -} \ No newline at end of file diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml index c948bb8242..32de5b76ca 100644 --- a/resources/qml/Toolbar.qml +++ b/resources/qml/Toolbar.qml @@ -4,7 +4,7 @@ import QtQuick 2.2 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -53,9 +53,9 @@ Item width: childrenRect.width height: childrenRect.height - delegate: ToolbarButton + delegate: UM.ToolbarButton { - text: model.name + (model.shortcut ? (" (" + model.shortcut + ")") : "") + text: model.name + (model.shortcut ? ` ("${model.shortcut}")` : "") checkable: true checked: model.active enabled: model.enabled && UM.Selection.hasSelection && UM.Controller.toolsEnabled @@ -183,7 +183,7 @@ Item borderColor: UM.Theme.getColor("lining") borderWidth: UM.Theme.getSize("default_lining").width - MouseArea //Catch all mouse events (so scene doesnt handle them) + MouseArea //Catch all mouse events (so scene doesn't handle them) { anchors.fill: parent acceptedButtons: Qt.AllButtons diff --git a/resources/qml/ToolbarButton.qml b/resources/qml/ToolbarButton.qml deleted file mode 100644 index 206ab23dc4..0000000000 --- a/resources/qml/ToolbarButton.qml +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.7 -import QtQuick.Controls 2.3 - -import UM 1.2 as UM -import Cura 1.0 as Cura - -Button -{ - id: base - - property alias toolItem: contentItemLoader.sourceComponent - - // These two properties indicate whether the toolbar button is at the top of the toolbar column or at the bottom. - // If it is somewhere in the middle, then both has to be false. If there is only one element in the column, then - // both properties have to be set to true. This is used to create a rounded corner. - property bool isTopElement: false - property bool isBottomElement: false - - hoverEnabled: true - - background: Rectangle - { - implicitWidth: UM.Theme.getSize("button").width - implicitHeight: UM.Theme.getSize("button").height - color: UM.Theme.getColor("toolbar_background") - radius: UM.Theme.getSize("default_radius").width - - Rectangle - { - id: topSquare - anchors - { - left: parent.left - right: parent.right - top: parent.top - } - height: parent.radius - color: parent.color - visible: !base.isTopElement - } - - Rectangle - { - id: bottomSquare - anchors - { - left: parent.left - right: parent.right - bottom: parent.bottom - } - height: parent.radius - color: parent.color - visible: !base.isBottomElement - } - - Rectangle - { - id: leftSquare - anchors - { - left: parent.left - top: parent.top - bottom: parent.bottom - } - width: parent.radius - color: parent.color - } - } - contentItem: Rectangle - { - opacity: parent.enabled ? 1.0 : 0.2 - implicitWidth: Math.round(UM.Theme.getSize("button").width * 0.75) - implicitHeight: Math.round(UM.Theme.getSize("button").height * 0.75) - radius: Math.round(width * 0.5) - - color: - { - if (base.checked && base.hovered) - { - return UM.Theme.getColor("toolbar_button_active_hover") - } - else if (base.checked) - { - return UM.Theme.getColor("toolbar_button_active") - } - else if(base.hovered) - { - return UM.Theme.getColor("toolbar_button_hover") - } - return UM.Theme.getColor("toolbar_background") - } - Loader - { - id: contentItemLoader - anchors.centerIn: parent - width: Math.round(UM.Theme.getSize("button").width / 2) - height: Math.round(UM.Theme.getSize("button").height / 2) - } - } - - Cura.ToolTip - { - id: tooltip - tooltipText: base.text - visible: base.hovered - } -} diff --git a/resources/qml/ViewOrientationControls.qml b/resources/qml/ViewOrientationControls.qml index fc0f20fa77..ad3d184028 100644 --- a/resources/qml/ViewOrientationControls.qml +++ b/resources/qml/ViewOrientationControls.qml @@ -2,8 +2,6 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 import UM 1.4 as UM import Cura 1.1 as Cura diff --git a/resources/qml/ViewsSelector.qml b/resources/qml/ViewsSelector.qml index af98469921..452cc5a09a 100644 --- a/resources/qml/ViewsSelector.qml +++ b/resources/qml/ViewsSelector.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Cura.ExpandablePopup @@ -44,22 +44,19 @@ Cura.ExpandablePopup headerItem: Item { - Label + UM.Label { id: title text: catalog.i18nc("@label", "View type") - verticalAlignment: Text.AlignVCenter height: parent.height elide: Text.ElideRight font: UM.Theme.getFont("medium") color: UM.Theme.getColor("text_medium") - renderType: Text.NativeRendering } - Label + UM.Label { text: viewSelector.activeView ? viewSelector.activeView.name : "" - verticalAlignment: Text.AlignVCenter anchors { left: title.right @@ -69,8 +66,6 @@ Cura.ExpandablePopup height: parent.height elide: Text.ElideRight font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } } @@ -102,14 +97,11 @@ Cura.ExpandablePopup checkable: true checked: viewSelector.activeView != null ? viewSelector.activeView.id == id : false - contentItem: Label + contentItem: UM.Label { id: buttonText text: viewsSelectorButton.text - color: UM.Theme.getColor("text") font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter elide: Text.ElideRight } diff --git a/resources/qml/WelcomePages/AddCloudPrintersView.qml b/resources/qml/WelcomePages/AddCloudPrintersView.qml index 524bf288a0..0b94d21fae 100644 --- a/resources/qml/WelcomePages/AddCloudPrintersView.qml +++ b/resources/qml/WelcomePages/AddCloudPrintersView.qml @@ -1,18 +1,18 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.7 as Cura // // This component gets activated when the user presses the "Add cloud printers" button from the "Add a Printer" page. // It contains a busy indicator that remains active until the user logs in and adds a cloud printer in his/her account. -// Once a cloud printer is added in mycloud.ultimaker.com, Cura discovers it (in a time window of 30 sec) and displays +// Once a cloud printer is added in digitalfactory.ultimaker.com, Cura discovers it (in a time window of 30 sec) and displays // the newly added printers in this page. // Item @@ -22,7 +22,7 @@ Item property bool searchingForCloudPrinters: true property var discoveredCloudPrintersModel: CuraApplication.getDiscoveredCloudPrintersModel() - // The area where either the discoveredCloudPrintersScrollView or the busyIndicator will be displayed + // The area where either the discoveredCloudPrintersList or the busyIndicator will be displayed Item { id: cloudPrintersContent @@ -126,14 +126,9 @@ Item // The scrollView that contains the list of newly discovered Ultimaker Cloud printers. Visible only when // there is at least a new cloud printer. - ScrollView + ListView { - id: discoveredCloudPrintersScrollView - width: parent.width - clip : true - ScrollBar.horizontal.policy: ScrollBar.AsNeeded - ScrollBar.vertical.policy: ScrollBar.AsNeeded - visible: discoveredCloudPrintersModel.count > 0 + id: discoveredCloudPrintersList anchors { top: cloudPrintersAddedTitle.bottom @@ -144,52 +139,47 @@ Item bottom: parent.bottom } - Column + ScrollBar.vertical: UM.ScrollBar {} + clip : true + visible: discoveredCloudPrintersModel.count > 0 + spacing: UM.Theme.getSize("wide_margin").height + + model: discoveredCloudPrintersModel + delegate: Item { - id: discoveredPrintersColumn - spacing: 2 * UM.Theme.getSize("default_margin").height + width: discoveredCloudPrintersList.width + height: contentColumn.height - Repeater + Column { - id: discoveredCloudPrintersRepeater - model: discoveredCloudPrintersModel - delegate: Item + id: contentColumn + Label { - width: discoveredCloudPrintersScrollView.width - height: contentColumn.height - - Column - { - id: contentColumn - Label - { - id: cloudPrinterNameLabel - leftPadding: UM.Theme.getSize("default_margin").width - text: model.name - font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") - elide: Text.ElideRight - } - Label - { - id: cloudPrinterTypeLabel - leftPadding: 2 * UM.Theme.getSize("default_margin").width - topPadding: UM.Theme.getSize("thin_margin").height - text: {"Type: " + model.machine_type} - font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - elide: Text.ElideRight - } - Label - { - id: cloudPrinterFirmwareVersionLabel - leftPadding: 2 * UM.Theme.getSize("default_margin").width - text: {"Firmware version: " + model.firmware_version} - font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - elide: Text.ElideRight - } - } + id: cloudPrinterNameLabel + leftPadding: UM.Theme.getSize("default_margin").width + text: model.name ? model.name : "" + font: UM.Theme.getFont("large_bold") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + Label + { + id: cloudPrinterTypeLabel + leftPadding: 2 * UM.Theme.getSize("default_margin").width + topPadding: UM.Theme.getSize("thin_margin").height + text: {"Type: " + model.machine_type} + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + elide: Text.ElideRight + } + Label + { + id: cloudPrinterFirmwareVersionLabel + leftPadding: 2 * UM.Theme.getSize("default_margin").width + text: {"Firmware version: " + model.firmware_version} + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text") + elide: Text.ElideRight } } } diff --git a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml index fb809426f4..d2d48267de 100644 --- a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -74,117 +74,93 @@ Item Row { id: localPrinterSelectionItem - anchors.left: parent.left - anchors.right: parent.right - anchors.top: parent.top + anchors.fill: parent - // ScrollView + ListView for selecting a local printer to add - Cura.ScrollView + //Selecting a local printer to add from this list. + ListView { - id: scrollView - - height: childrenHeight + id: machineList width: Math.floor(parent.width * 0.48) + height: parent.height - ListView + clip: true + ScrollBar.vertical: UM.ScrollBar {} + + model: UM.DefinitionContainersModel { - id: machineList - - // CURA-6793 - // Enabling the buffer seems to cause the blank items issue. When buffer is enabled, if the ListView's - // individual item has a dynamic change on its visibility, the ListView doesn't redraw itself. - // The default value of cacheBuffer is platform-dependent, so we explicitly disable it here. - cacheBuffer: 0 - boundsBehavior: Flickable.StopAtBounds - flickDeceleration: 20000 // To prevent the flicking behavior. - model: UM.DefinitionContainersModel - { - id: machineDefinitionsModel - filter: { "visible": true } - sectionProperty: "manufacturer" - preferredSections: preferredCategories - } - - section.property: "section" - section.delegate: sectionHeader - delegate: machineButton + id: machineDefinitionsModel + filter: { "visible": true } + sectionProperty: "manufacturer" + preferredSections: preferredCategories } - Component + section.property: "section" + section.delegate: Button { - id: sectionHeader + id: button + width: machineList.width + height: UM.Theme.getSize("action_button").height + text: section - Button + property bool isActive: base.currentSection == section + + background: Rectangle { - id: button - width: ListView.view.width + anchors.fill: parent + color: isActive ? UM.Theme.getColor("setting_control_highlight") : "transparent" + } + + contentItem: Item + { + width: childrenRect.width height: UM.Theme.getSize("action_button").height - text: section - property bool isActive: base.currentSection == section - - background: Rectangle + UM.RecolorImage { - anchors.fill: parent - color: isActive ? UM.Theme.getColor("setting_control_highlight") : "transparent" + id: arrow + anchors.left: parent.left + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + sourceSize.width: width + sourceSize.height: height + color: UM.Theme.getColor("text") + source: base.currentSection == section ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight") } - contentItem: Item + UM.Label { - width: childrenRect.width - height: UM.Theme.getSize("action_button").height - - UM.RecolorImage - { - id: arrow - anchors.left: parent.left - width: UM.Theme.getSize("standard_arrow").width - height: UM.Theme.getSize("standard_arrow").height - sourceSize.width: width - sourceSize.height: height - color: UM.Theme.getColor("text") - source: base.currentSection == section ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight") - } - - Label - { - id: label - anchors.left: arrow.right - anchors.leftMargin: UM.Theme.getSize("default_margin").width - verticalAlignment: Text.AlignVCenter - text: button.text - font: UM.Theme.getFont("default_bold") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - } + id: label + anchors.left: arrow.right + anchors.leftMargin: UM.Theme.getSize("default_margin").width + text: button.text + font: UM.Theme.getFont("default_bold") } + } - onClicked: - { - base.currentSection = section - base.updateCurrentItemUponSectionChange() - } + onClicked: + { + base.currentSection = section + base.updateCurrentItemUponSectionChange() } } - Component + delegate: Cura.RadioButton { - id: machineButton - - Cura.RadioButton + id: radioButton + anchors { - id: radioButton - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("standard_list_lineheight").width - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - height: visible ? UM.Theme.getSize("standard_list_lineheight").height : 0 + left: parent !== null ? parent.left : undefined + leftMargin: UM.Theme.getSize("standard_list_lineheight").width - checked: ListView.view.currentIndex == index - text: name - visible: base.currentSection == section - onClicked: ListView.view.currentIndex = index + right: parent !== null ? parent.right : undefined + rightMargin: UM.Theme.getSize("default_margin").width } + height: visible ? UM.Theme.getSize("standard_list_lineheight").height : 0 //This causes the scrollbar to vary in length due to QTBUG-76830. + + checked: machineList.currentIndex == index + text: name + visible: base.currentSection.toLowerCase() === section.toLowerCase() + onClicked: machineList.currentIndex = index } } @@ -193,7 +169,7 @@ Item { id: verticalLine anchors.top: parent.top - height: childrenHeight - UM.Theme.getSize("default_lining").height + height: parent.height - UM.Theme.getSize("default_lining").height width: UM.Theme.getSize("default_lining").height color: UM.Theme.getColor("lining") } @@ -206,7 +182,7 @@ Item spacing: UM.Theme.getSize("default_margin").width padding: UM.Theme.getSize("default_margin").width - Label + UM.Label { width: parent.width - (2 * UM.Theme.getSize("default_margin").width) wrapMode: Text.Wrap @@ -224,48 +200,33 @@ Item verticalItemAlignment: Grid.AlignVCenter - Label + UM.Label { id: manufacturerLabel text: catalog.i18nc("@label", "Manufacturer") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - Label + UM.Label { text: base.getMachineMetaDataEntry("manufacturer") width: parent.width - manufacturerLabel.width - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering wrapMode: Text.WordWrap } - Label + UM.Label { id: profileAuthorLabel text: catalog.i18nc("@label", "Profile author") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - Label + UM.Label { text: base.getMachineMetaDataEntry("author") width: parent.width - profileAuthorLabel.width - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering wrapMode: Text.WordWrap } - Label + UM.Label { id: printerNameLabel text: catalog.i18nc("@label", "Printer name") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } Cura.TextField @@ -282,7 +243,5 @@ Item } } } - - } } diff --git a/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml b/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml index edf6fe5974..dbf68ce701 100644 --- a/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml +++ b/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -45,11 +45,9 @@ Item } contentComponent: networkPrinterListComponent - Component { id: networkPrinterListComponent - AddNetworkPrinterScrollView { id: networkPrinterScrollView @@ -95,20 +93,13 @@ Item } contentComponent: localPrinterListComponent - Component { id: localPrinterListComponent - AddLocalPrinterScrollView { id: localPrinterView - property int childrenHeight: backButton.y - addLocalPrinterDropDown.y - UM.Theme.getSize("expandable_component_content_header").height - UM.Theme.getSize("default_margin").height - - onChildrenHeightChanged: - { - addLocalPrinterDropDown.children[1].height = childrenHeight - } + height: backButton.y - addLocalPrinterDropDown.y - UM.Theme.getSize("expandable_component_content_header").height - UM.Theme.getSize("default_margin").height } } } diff --git a/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml b/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml index 58cadbec37..64f194dd56 100644 --- a/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura // @@ -17,7 +17,7 @@ Item id: base height: networkPrinterInfo.height + controlsRectangle.height - property alias maxItemCountAtOnce: networkPrinterScrollView.maxItemCountAtOnce + property alias maxItemCountAtOnce: networkPrinterListView.maxItemCountAtOnce property var currentItem: (networkPrinterListView.currentIndex >= 0) ? networkPrinterListView.model[networkPrinterListView.currentIndex] : null @@ -29,125 +29,105 @@ Item Item { id: networkPrinterInfo - height: networkPrinterScrollView.visible ? networkPrinterScrollView.height : noPrinterLabel.height + height: networkPrinterListView.visible ? networkPrinterListView.height : noPrinterLabel.height anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top - Label + UM.Label { id: noPrinterLabel height: UM.Theme.getSize("setting_control").height + UM.Theme.getSize("default_margin").height anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width text: catalog.i18nc("@label", "There is no printer found over your network.") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter visible: networkPrinterListView.count == 0 // Do not show if there are discovered devices. } - ScrollView + ListView { - id: networkPrinterScrollView + id: networkPrinterListView anchors.top: parent.top anchors.left: parent.left anchors.right: parent.right - - ScrollBar.horizontal.policy: ScrollBar.AsNeeded - ScrollBar.vertical.policy: ScrollBar.AsNeeded - - property int maxItemCountAtOnce: 8 // show at max 8 items at once, otherwise you need to scroll. height: Math.min(contentHeight, (maxItemCountAtOnce * UM.Theme.getSize("action_button").height) - UM.Theme.getSize("default_margin").height) + ScrollBar.vertical: UM.ScrollBar + { + id: networkPrinterScrollBar + } + clip: true + property int maxItemCountAtOnce: 8 // show at max 8 items at once, otherwise you need to scroll. visible: networkPrinterListView.count > 0 - clip: true + model: contentLoader.enabled ? CuraApplication.getDiscoveredPrintersModel().discoveredPrinters: undefined + cacheBuffer: 1000000 // Set a large cache to effectively just cache every list item. - ListView + section.property: "modelData.sectionName" + section.criteria: ViewSection.FullString + section.delegate: UM.Label { - id: networkPrinterListView - anchors.fill: parent - model: contentLoader.enabled ? CuraApplication.getDiscoveredPrintersModel().discoveredPrinters: undefined + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + width: parent.width - networkPrinterScrollBar.width - UM.Theme.getSize("default_margin").width + height: UM.Theme.getSize("setting_control").height + text: section + color: UM.Theme.getColor("small_button_text") + } - section.property: "modelData.sectionName" - section.criteria: ViewSection.FullString - section.delegate: sectionHeading - boundsBehavior: Flickable.StopAtBounds - flickDeceleration: 20000 // To prevent the flicking behavior. - cacheBuffer: 1000000 // Set a large cache to effectively just cache every list item. - - Component.onCompleted: + Component.onCompleted: + { + var toSelectIndex = -1 + // Select the first one that's not "unknown" and is the host a group by default. + for (var i = 0; i < count; i++) { - var toSelectIndex = -1 - // Select the first one that's not "unknown" and is the host a group by default. - for (var i = 0; i < count; i++) + if (!model[i].isUnknownMachineType && model[i].isHostOfGroup) { - if (!model[i].isUnknownMachineType && model[i].isHostOfGroup) - { - toSelectIndex = i - break - } - } - currentIndex = toSelectIndex - } - - // CURA-6483 For some reason currentIndex can be reset to 0. This check is here to prevent automatically - // selecting an unknown or non-host printer. - onCurrentIndexChanged: - { - var item = model[currentIndex] - if (!item || item.isUnknownMachineType || !item.isHostOfGroup) - { - currentIndex = -1 + toSelectIndex = i + break } } + currentIndex = toSelectIndex + } - Component + // CURA-6483 For some reason currentIndex can be reset to 0. This check is here to prevent automatically + // selecting an unknown or non-host printer. + onCurrentIndexChanged: + { + var item = model[currentIndex] + if (!item || item.isUnknownMachineType || !item.isHostOfGroup) { - id: sectionHeading + currentIndex = -1 + } + } - Label - { - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - height: UM.Theme.getSize("setting_control").height - text: section - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("small_button_text") - verticalAlignment: Text.AlignVCenter - renderType: Text.NativeRendering - } + delegate: Cura.MachineSelectorButton + { + text: modelData.device.name + + width: networkPrinterListView.width - networkPrinterScrollBar.width + outputDevice: modelData.device + + enabled: !modelData.isUnknownMachineType && modelData.isHostOfGroup + + printerTypeLabelAutoFit: true + + // update printer types for all items in the list + updatePrinterTypesOnlyWhenChecked: false + updatePrinterTypesFunction: updateMachineTypes + // show printer type as it is + printerTypeLabelConversionFunction: function(value) { return value } + + function updateMachineTypes() + { + printerTypesList = [ modelData.readableMachineType ] } - delegate: Cura.MachineSelectorButton + checkable: false + selected: networkPrinterListView.currentIndex == model.index + onClicked: { - text: modelData.device.name - - width: networkPrinterListView.width - outputDevice: modelData.device - - enabled: !modelData.isUnknownMachineType && modelData.isHostOfGroup - - printerTypeLabelAutoFit: true - - // update printer types for all items in the list - updatePrinterTypesOnlyWhenChecked: false - updatePrinterTypesFunction: updateMachineTypes - // show printer type as it is - printerTypeLabelConversionFunction: function(value) { return value } - - function updateMachineTypes() - { - printerTypesList = [ modelData.readableMachineType ] - } - - checkable: false - selected: ListView.view.currentIndex == model.index - onClicked: - { - ListView.view.currentIndex = index - } + networkPrinterListView.currentIndex = index } } } @@ -205,6 +185,7 @@ Item height: UM.Theme.getSize("message_action_button").height onClicked: { CuraApplication.getDiscoveredCloudPrintersModel().clear() + Cura.API.account.sync(true) base.addCloudPrinterButtonClicked() } } @@ -232,7 +213,7 @@ Item source: UM.Theme.getIcon("LinkExternal") } - Label + UM.Label { id: troubleshootingLabel anchors.right: parent.right @@ -240,8 +221,6 @@ Item text: catalog.i18nc("@label", "Troubleshooting") font: UM.Theme.getFont("default") color: UM.Theme.getColor("text_link") - linkColor: UM.Theme.getColor("text_link") - renderType: Text.NativeRendering } MouseArea @@ -251,7 +230,7 @@ Item onClicked: { // open the troubleshooting URL with web browser - const url = "https://ultimaker.com/in/cura/troubleshooting/network" + const url = "https://ultimaker.com/in/cura/troubleshooting/network?utm_source=cura&utm_medium=software&utm_campaign=add-network-printer" Qt.openUrlExternally(url) } onEntered: diff --git a/resources/qml/WelcomePages/AddPrinterByIpContent.qml b/resources/qml/WelcomePages/AddPrinterByIpContent.qml index 9a69b78a83..2207bd1708 100644 --- a/resources/qml/WelcomePages/AddPrinterByIpContent.qml +++ b/resources/qml/WelcomePages/AddPrinterByIpContent.qml @@ -203,12 +203,12 @@ Item { if (addPrinterByIpScreen.hasRequestFinished) { - return catalog.i18nc("@label", "Could not connect to device.") + "

    " + return catalog.i18nc("@label", "Could not connect to device.") + "

    " + catalog.i18nc("@label", "Can't connect to your Ultimaker printer?") + ""; } else { - return catalog.i18nc("@label", "The printer at this address has not responded yet.") + "

    " + return catalog.i18nc("@label", "The printer at this address has not responded yet.") + "

    " + catalog.i18nc("@label", "Can't connect to your Ultimaker printer?") + ""; } } diff --git a/resources/qml/WelcomePages/ChangelogContent.qml b/resources/qml/WelcomePages/ChangelogContent.qml index d106f94c04..7c3b1adfc3 100644 --- a/resources/qml/WelcomePages/ChangelogContent.qml +++ b/resources/qml/WelcomePages/ChangelogContent.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -15,7 +15,7 @@ Item { UM.I18nCatalog { id: catalog; name: "cura" } - Label + UM.Label { id: titleLabel anchors.top: parent.top @@ -24,7 +24,6 @@ Item text: catalog.i18nc("@label", "Release Notes") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } Cura.ScrollableTextArea @@ -38,8 +37,6 @@ Item anchors.left: parent.left anchors.right: parent.right - ScrollBar.horizontal.policy: ScrollBar.AlwaysOff - textArea.text: CuraApplication.getTextManager().getChangeLogText() textArea.textFormat: Text.RichText textArea.wrapMode: Text.WordWrap diff --git a/resources/qml/WelcomePages/CloudContent.qml b/resources/qml/WelcomePages/CloudContent.qml index 26e3a2f87c..7dc35c7bc5 100644 --- a/resources/qml/WelcomePages/CloudContent.qml +++ b/resources/qml/WelcomePages/CloudContent.qml @@ -112,7 +112,7 @@ Item anchors.horizontalCenter: parent.horizontalCenter fillMode: Image.PreserveAspectFit width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width - source: UM.Theme.getIcon("Plugin") + source: UM.Theme.getIcon("Plugin", "high") sourceSize.width: width sourceSize.height: height } @@ -142,7 +142,7 @@ Item anchors.horizontalCenter: parent.horizontalCenter fillMode: Image.PreserveAspectFit width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width - source: UM.Theme.getIcon("Spool") + source: UM.Theme.getIcon("Spool", "high") sourceSize.width: width sourceSize.height: height } @@ -172,7 +172,7 @@ Item anchors.horizontalCenter: communityColumn.horizontalCenter fillMode: Image.PreserveAspectFit width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width - source: UM.Theme.getIcon("PrinterTriple", "medium") + source: UM.Theme.getIcon("People", "high") sourceSize.width: width sourceSize.height: height } @@ -190,55 +190,48 @@ Item } } } - - // Sign in Button - Cura.PrimaryButton - { - id: signInButton - anchors.horizontalCenter: parent.horizontalCenter - text: catalog.i18nc("@button", "Sign in") - onClicked: Cura.API.account.login() - // Content Item is used in order to align the text inside the button. Without it, when resizing the - // button, the text will be aligned on the left - contentItem: Text { - text: signInButton.text - font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("primary_text") - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - } - } - - // Create an account button - Cura.TertiaryButton - { - id: createAccountButton - anchors.horizontalCenter: parent.horizontalCenter - text: catalog.i18nc("@text", "Create a free Ultimaker Account") - onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "/app/create") - } } } - // The "Skip" button exists on the bottom right - Label + // Skip button + Cura.TertiaryButton { id: skipButton + anchors.left: parent.left + anchors.bottom: parent.bottom + text: catalog.i18nc("@button", "Skip") + onClicked: base.showNextPage() + } + + // Create an account button + Cura.SecondaryButton + { + id: createAccountButton + anchors.right: signInButton.left + anchors.rightMargin: UM.Theme.getSize("default_margin").width + anchors.bottom: parent.bottom + + text: catalog.i18nc("@text", "Create a free Ultimaker Account") + onClicked: Qt.openUrlExternally("https://ultimaker.com/app/ultimaker-cura-account-sign-up?utm_source=cura&utm_medium=software&utm_campaign=onboarding-signup") + } + + // Sign in Button + Cura.PrimaryButton + { + id: signInButton anchors.right: parent.right anchors.bottom: parent.bottom - anchors.leftMargin: UM.Theme.getSize("default_margin").width - text: catalog.i18nc("@button", "Skip") - color: UM.Theme.getColor("secondary_button_text") - font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering - MouseArea - { - anchors.fill: parent - hoverEnabled: true - onClicked: base.showNextPage() - onEntered: parent.font.underline = true - onExited: parent.font.underline = false + text: catalog.i18nc("@button", "Sign in") + onClicked: Cura.API.account.login() + // Content Item is used in order to align the text inside the button. Without it, when resizing the + // button, the text will be aligned on the left + contentItem: Text { + text: signInButton.text + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("primary_text") + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter } } } diff --git a/resources/qml/WelcomePages/DropDownHeader.qml b/resources/qml/WelcomePages/DropDownHeader.qml index cb41ca808b..a4b416b093 100644 --- a/resources/qml/WelcomePages/DropDownHeader.qml +++ b/resources/qml/WelcomePages/DropDownHeader.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura import ".." @@ -46,16 +46,14 @@ Cura.RoundedRectangle onClicked: base.clicked() } - Label + UM.Label { id: title anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.verticalCenter: parent.verticalCenter - verticalAlignment: Text.AlignVCenter text: base.title font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering color: base.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text") } diff --git a/resources/qml/WelcomePages/DropDownWidget.qml b/resources/qml/WelcomePages/DropDownWidget.qml index b129673905..90e1900d35 100644 --- a/resources/qml/WelcomePages/DropDownWidget.qml +++ b/resources/qml/WelcomePages/DropDownWidget.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -56,12 +56,12 @@ Item Cura.RoundedRectangle { id: contentRectangle - // Move up a bit (exaclty the width of the border) to avoid double line + // Move up a bit (exactly the width of the border) to avoid double line y: header.height - UM.Theme.getSize("default_lining").width anchors.left: header.left anchors.right: header.right // Add 2x lining, because it needs a bit of space on the top and the bottom. - height: contentLoader.item.height + 2 * UM.Theme.getSize("thick_lining").height + height: contentLoader.item ? contentLoader.item.height + 2 * UM.Theme.getSize("thick_lining").height : 0 border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining") @@ -88,14 +88,12 @@ Item { id: emptyComponent - Label + UM.Label { text: catalog.i18nc("@label", "Empty") height: UM.Theme.getSize("action_button").height horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter font: UM.Theme.getFont("medium") - renderType: Text.NativeRendering } } } diff --git a/resources/qml/WelcomePages/UserAgreementContent.qml b/resources/qml/WelcomePages/UserAgreementContent.qml index 764ef03e18..dcff613efb 100644 --- a/resources/qml/WelcomePages/UserAgreementContent.qml +++ b/resources/qml/WelcomePages/UserAgreementContent.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura // @@ -14,7 +14,7 @@ Item { UM.I18nCatalog { id: catalog; name: "cura" } - Label + UM.Label { id: titleLabel anchors.top: parent.top @@ -23,10 +23,9 @@ Item text: catalog.i18nc("@label", "User Agreement") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } - Label + UM.Label { id: disclaimerLineLabel anchors @@ -44,8 +43,6 @@ Item textFormat: Text.RichText wrapMode: Text.WordWrap font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } Cura.PrimaryButton diff --git a/resources/qml/WelcomePages/WhatsNewContent.qml b/resources/qml/WelcomePages/WhatsNewContent.qml index 65989ee536..c56f8880ed 100644 --- a/resources/qml/WelcomePages/WhatsNewContent.qml +++ b/resources/qml/WelcomePages/WhatsNewContent.qml @@ -4,6 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 +import QtGraphicalEffects 1.12 // For the DropShadow import UM 1.3 as UM import Cura 1.1 as Cura @@ -91,6 +92,13 @@ Item source: manager.getSubpageImageSource(index) } + DropShadow { + anchors.fill: subpageImage + radius: UM.Theme.getSize("monitor_shadow_radius").width + color: UM.Theme.getColor("first_run_shadow") + source: subpageImage + } + Cura.ScrollableTextArea { id: subpageText @@ -105,13 +113,11 @@ Item right: subpageImage.right } - ScrollBar.horizontal.policy: ScrollBar.AlwaysOff - back_color: UM.Theme.getColor("viewport_overlay") do_borders: false textArea.wrapMode: TextEdit.Wrap - textArea.text: manager.getSubpageText(index) + textArea.text: "" + manager.getSubpageText(index) textArea.textFormat: Text.RichText textArea.readOnly: true textArea.font: UM.Theme.getFont("default") diff --git a/resources/qml/Widgets/CheckBox.qml b/resources/qml/Widgets/CheckBox.qml deleted file mode 100644 index 295283d76e..0000000000 --- a/resources/qml/Widgets/CheckBox.qml +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright (c) 2020 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 2.3 - -import UM 1.3 as UM -import Cura 1.1 as Cura - - -// -// Checkbox with Cura styling. -// -CheckBox -{ - id: control - - hoverEnabled: true - - indicator: Rectangle - { - width: control.height - height: control.height - - color: - { - if (!control.enabled) - { - return UM.Theme.getColor("setting_control_disabled") - } - if (control.hovered || control.activeFocus) - { - return UM.Theme.getColor("setting_control_highlight") - } - return UM.Theme.getColor("setting_control") - } - - radius: UM.Theme.getSize("setting_control_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: - { - if (!enabled) - { - return UM.Theme.getColor("setting_control_disabled_border") - } - if (control.hovered || control.activeFocus) - { - return UM.Theme.getColor("setting_control_border_highlight") - } - return UM.Theme.getColor("setting_control_border") - } - - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: Math.round(parent.width / 2.5) - height: Math.round(parent.height / 2.5) - sourceSize.height: width - color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text") - source: UM.Theme.getIcon("Check") - opacity: control.checked ? 1 : 0 - Behavior on opacity { NumberAnimation { duration: 100; } } - } - } - - contentItem: Label - { - id: textLabel - leftPadding: control.indicator.width + control.spacing - text: control.text - font: control.font - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - verticalAlignment: Text.AlignVCenter - } -} diff --git a/resources/qml/Widgets/ComboBox.qml b/resources/qml/Widgets/ComboBox.qml index f0ee3bdc00..5d31348597 100644 --- a/resources/qml/Widgets/ComboBox.qml +++ b/resources/qml/Widgets/ComboBox.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -15,12 +15,6 @@ ComboBox { id: control - UM.I18nCatalog - { - id: catalog - name: "cura" - } - property var defaultTextOnEmptyModel: catalog.i18nc("@label", "No items to select from") // Text displayed in the combobox when the model is empty property var defaultTextOnEmptyIndex: "" // Text displayed in the combobox when the model has items but no item is selected enabled: delegateModel.count > 0 @@ -32,29 +26,18 @@ ComboBox { name: "disabled" when: !control.enabled - PropertyChanges { target: backgroundRectangle.border; color: UM.Theme.getColor("setting_control_disabled_border")} - PropertyChanges { target: backgroundRectangle; color: UM.Theme.getColor("setting_control_disabled")} + PropertyChanges { target: background; color: UM.Theme.getColor("setting_control_disabled")} PropertyChanges { target: contentLabel; color: UM.Theme.getColor("setting_control_disabled_text")} }, State { name: "highlighted" when: control.hovered || control.activeFocus - PropertyChanges { target: backgroundRectangle.border; color: UM.Theme.getColor("setting_control_border_highlight") } - PropertyChanges { target: backgroundRectangle; color: UM.Theme.getColor("setting_control_highlight")} + PropertyChanges { target: background; liningColor: UM.Theme.getColor("border_main")} } ] - background: Rectangle - { - id: backgroundRectangle - color: UM.Theme.getColor("setting_control") - - radius: UM.Theme.getSize("setting_control_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: UM.Theme.getColor("setting_control_border") - - } + background: UM.UnderlineBackground{} indicator: UM.RecolorImage { @@ -71,14 +54,14 @@ ComboBox color: UM.Theme.getColor("setting_control_button") } - contentItem: Label + contentItem: UM.Label { id: contentLabel anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width anchors.verticalCenter: parent.verticalCenter anchors.right: downArrow.left - + wrapMode: Text.NoWrap text: { if (control.delegateModel.count == 0) @@ -92,11 +75,8 @@ ComboBox } textFormat: Text.PlainText - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") color: control.currentIndex == -1 ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text") elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter } popup: Popup @@ -109,12 +89,12 @@ ComboBox contentItem: ListView { - clip: true implicitHeight: contentHeight + + ScrollBar.vertical: UM.ScrollBar {} + clip: true model: control.popup.visible ? control.delegateModel : null currentIndex: control.highlightedIndex - - ScrollIndicator.vertical: ScrollIndicator { } } background: Rectangle @@ -146,7 +126,7 @@ ComboBox return (typeof _val !== 'undefined') ? _val : "" } - contentItem: Label + contentItem: UM.Label { id: delegateLabel // FIXME: Somehow the top/bottom anchoring is not correct on Linux and it results in invisible texts. @@ -156,11 +136,9 @@ ComboBox text: delegateItem.text textFormat: Text.PlainText - renderType: Text.NativeRendering color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter + wrapMode: Text.NoWrap } background: UM.TooltipArea @@ -168,7 +146,6 @@ ComboBox Rectangle { color: delegateItem.highlighted ? UM.Theme.getColor("setting_control_highlight") : "transparent" - border.color: delegateItem.highlighted ? UM.Theme.getColor("setting_control_border_highlight") : "transparent" anchors.fill: parent } text: delegateLabel.truncated ? delegateItem.text : "" diff --git a/resources/qml/Widgets/Menu.qml b/resources/qml/Widgets/Menu.qml index 1c6a55c28a..b3cdfc6967 100644 --- a/resources/qml/Widgets/Menu.qml +++ b/resources/qml/Widgets/Menu.qml @@ -2,23 +2,26 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 -import QtQuick.Controls 2.3 -import UM 1.1 as UM +import UM 1.5 as UM +import Cura 1.0 as Cura // // Menu with Cura styling. // -Menu +UM.Menu { id: menu + topPadding: UM.Theme.getSize("narrow_margin").height + bottomPadding: UM.Theme.getSize("narrow_margin").height padding: 0 - implicitWidth: UM.Theme.getSize("setting_control").width - width: Math.max.apply(Math, Object.values(contentChildren).map(function(c) { return c.width })) + implicitWidth: UM.Theme.getSize("menu").width - background: Rectangle { - color: UM.Theme.getColor("setting_control") - border.color: UM.Theme.getColor("setting_control_border") + delegate: Cura.MenuItem {} + background: Rectangle + { + color: UM.Theme.getColor("main_background") + border.color: UM.Theme.getColor("lining") } } \ No newline at end of file diff --git a/resources/qml/Widgets/MenuItem.qml b/resources/qml/Widgets/MenuItem.qml index f0824b4d98..36098e1197 100644 --- a/resources/qml/Widgets/MenuItem.qml +++ b/resources/qml/Widgets/MenuItem.qml @@ -4,16 +4,17 @@ import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.1 as UM +import UM 1.5 as UM // // MenuItem with Cura styling. // -MenuItem +UM.MenuItem { id: menuItem - implicitHeight: UM.Theme.getSize("setting_control").height + UM.Theme.getSize("narrow_margin").height + implicitHeight: UM.Theme.getSize("menu").height + UM.Theme.getSize("narrow_margin").height + implicitWidth: UM.Theme.getSize("menu").width opacity: enabled ? 1.0 : 0.5 arrow: UM.RecolorImage @@ -37,30 +38,16 @@ MenuItem anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width - source: UM.Theme.getIcon("Check") + source: UM.Theme.getIcon("Check", "low") color: UM.Theme.getColor("setting_control_text") } - contentItem: Text { - leftPadding: menuItem.checkable ? menuItem.indicator.width + UM.Theme.getSize("default_margin").width : UM.Theme.getSize("thin_margin").width - rightPadding: menuItem.subMenu ? menuItem.arrow.width + UM.Theme.getSize("default_margin").width : UM.Theme.getSize("thin_margin").width - text: menuItem.text - - textFormat: Text.PlainText - renderType: Text.NativeRendering - color: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") - elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter - } - - background: Rectangle { + background: Rectangle + { x: UM.Theme.getSize("default_lining").width y: UM.Theme.getSize("default_lining").width width: menuItem.width - 2 * UM.Theme.getSize("default_lining").width height: menuItem.height - 2 * UM.Theme.getSize("default_lining").height - - color: menuItem.highlighted ? UM.Theme.getColor("setting_control_highlight") : "transparent" - border.color: menuItem.highlighted ? UM.Theme.getColor("setting_control_border_highlight") : "transparent" + color: menuItem.highlighted ? UM.Theme.getColor("background_2"): UM.Theme.getColor("background_1") } } \ No newline at end of file diff --git a/resources/qml/Widgets/MenuSeparator.qml b/resources/qml/Widgets/MenuSeparator.qml index cfc696fbb3..ad79fccd6d 100644 --- a/resources/qml/Widgets/MenuSeparator.qml +++ b/resources/qml/Widgets/MenuSeparator.qml @@ -11,9 +11,10 @@ import UM 1.1 as UM // MenuSeparator { - padding: 0 - - contentItem: Rectangle { + leftPadding: UM.Theme.getSize("default_margin").width + rightPadding: UM.Theme.getSize("default_margin").width + contentItem: Rectangle + { implicitHeight: UM.Theme.getSize("default_lining").height color: UM.Theme.getColor("setting_control_border") } diff --git a/resources/qml/Widgets/NotificationIcon.qml b/resources/qml/Widgets/NotificationIcon.qml index 5cf4d17777..7ef44559b6 100644 --- a/resources/qml/Widgets/NotificationIcon.qml +++ b/resources/qml/Widgets/NotificationIcon.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.4 as UM +import UM 1.5 as UM // @@ -22,15 +22,12 @@ Rectangle property alias labelText: notificationLabel.text property alias labelFont: notificationLabel.font - Label + UM.Label { id: notificationLabel anchors.fill: parent color: UM.Theme.getColor("primary_text") horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering // This is a bit of a hack, but we don't really have enough room for 2 characters (eg 9+). The default font // does have a tad bit to much spacing. So instead of adding a whole new font, we just modify it a bit for this diff --git a/resources/qml/Widgets/RadioButton.qml b/resources/qml/Widgets/RadioButton.qml index 13aee7ba90..add708507c 100644 --- a/resources/qml/Widgets/RadioButton.qml +++ b/resources/qml/Widgets/RadioButton.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -13,10 +13,61 @@ import Cura 1.0 as Cura // RadioButton { - id: radioButton + id: control font: UM.Theme.getFont("default") + states: [ + State { + name: "selected-hover" + when: control.enabled && control.checked && control.hovered + PropertyChanges + { + target: indicator_background + color: UM.Theme.getColor("radio_selected") + border.color: UM.Theme.getColor("radio_border_hover") + } + }, + State { + name: "selected" + when: control.enabled && control.checked + PropertyChanges + { + target: indicator_background + color: UM.Theme.getColor("radio_selected") + } + }, + State { + name: "hovered" + when: control.enabled && control.hovered + PropertyChanges + { + target: indicator_background + border.color: UM.Theme.getColor("radio_border_hover") + } + }, + State { + name: "selected_disabled" + when: !control.enabled && control.checked + PropertyChanges + { + target: indicator_background + color: UM.Theme.getColor("radio_selected_disabled") + border.color: UM.Theme.getColor("radio_border_disabled") + } + }, + State { + name: "disabled" + when: !control.enabled + PropertyChanges + { + target: indicator_background + color: UM.Theme.getColor("radio_disabled") + border.color: UM.Theme.getColor("radio_border_disabled") + } + } + ] + background: Item { anchors.fill: parent @@ -24,32 +75,35 @@ RadioButton indicator: Rectangle { + id: indicator_background implicitWidth: UM.Theme.getSize("radio_button").width implicitHeight: UM.Theme.getSize("radio_button").height anchors.verticalCenter: parent.verticalCenter anchors.alignWhenCentered: false radius: width / 2 + color: UM.Theme.getColor("radio") border.width: UM.Theme.getSize("default_lining").width - border.color: radioButton.hovered ? UM.Theme.getColor("small_button_text") : UM.Theme.getColor("small_button_text_hover") + border.color: UM.Theme.getColor("radio_border") Rectangle { + id: indicator_dot width: (parent.width / 2) | 0 height: width anchors.centerIn: parent radius: width / 2 - color: radioButton.hovered ? UM.Theme.getColor("primary_button_hover") : UM.Theme.getColor("primary_button") - visible: radioButton.checked + color: control.enabled ? UM.Theme.getColor("radio_dot") : UM.Theme.getColor("radio_dot_disabled") + visible: control.checked + + } } - contentItem: Label + contentItem: UM.Label { - verticalAlignment: Text.AlignVCenter - leftPadding: radioButton.indicator.width + radioButton.spacing - text: radioButton.text - font: radioButton.font - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering + leftPadding: control.indicator.width + control.spacing + text: control.text + font: control.font + color: control.enabled ? UM.Theme.getColor("radio_text"): UM.Theme.getColor("radio_text_disabled") } } diff --git a/resources/qml/Widgets/ScrollView.qml b/resources/qml/Widgets/ScrollView.qml index 9e7531994c..deaecb5dfb 100644 --- a/resources/qml/Widgets/ScrollView.qml +++ b/resources/qml/Widgets/ScrollView.qml @@ -1,5 +1,5 @@ // Copyright (c) 2020 Ultimaker B.V. -// Toolbox is released under the terms of the LGPLv3 or higher. +// Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 diff --git a/resources/qml/Widgets/ScrollableTextArea.qml b/resources/qml/Widgets/ScrollableTextArea.qml index 6becf75cb1..7d8f6b886d 100644 --- a/resources/qml/Widgets/ScrollableTextArea.qml +++ b/resources/qml/Widgets/ScrollableTextArea.qml @@ -1,35 +1,39 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura // // Cura-style TextArea with scrolls // -ScrollView +Flickable { - property alias textArea: _textArea - + id: scrollableTextAreaBase + property bool do_borders: true property var back_color: UM.Theme.getColor("main_background") - property var do_borders: true + property alias textArea: flickableTextArea - clip: true + ScrollBar.vertical: UM.ScrollBar {} - background: Rectangle // Border + TextArea.flickable: TextArea { - color: back_color - border.color: UM.Theme.getColor("thick_lining") - border.width: do_borders ? UM.Theme.getSize("default_lining").width : 0 - } + id: flickableTextArea + + background: Rectangle //Providing the background color and border. + { + anchors.fill: parent + anchors.margins: -border.width + + color: scrollableTextAreaBase.back_color + border.color: UM.Theme.getColor("thick_lining") + border.width: scrollableTextAreaBase.do_borders ? UM.Theme.getSize("default_lining").width : 0 + } - TextArea - { - id: _textArea font: UM.Theme.getFont("default") color: UM.Theme.getColor("text") textFormat: TextEdit.PlainText @@ -37,4 +41,4 @@ ScrollView wrapMode: Text.Wrap selectByMouse: true } -} +} \ No newline at end of file diff --git a/resources/qml/Widgets/TextField.qml b/resources/qml/Widgets/TextField.qml index c126c8a6e0..b708446d65 100644 --- a/resources/qml/Widgets/TextField.qml +++ b/resources/qml/Widgets/TextField.qml @@ -1,10 +1,10 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -13,63 +13,45 @@ import Cura 1.1 as Cura // TextField { - id: textField + id: control property alias leftIcon: iconLeft.source - UM.I18nCatalog { id: catalog; name: "cura" } + height: UM.Theme.getSize("setting_control").height hoverEnabled: true selectByMouse: true font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") + color: UM.Theme.getColor("text_field_text") renderType: Text.NativeRendering + selectionColor: UM.Theme.getColor("text_selection") leftPadding: iconLeft.visible ? iconLeft.width + UM.Theme.getSize("default_margin").width * 2 : UM.Theme.getSize("thin_margin").width states: [ State { name: "disabled" - when: !textField.enabled - PropertyChanges { target: backgroundRectangle.border; color: UM.Theme.getColor("setting_control_disabled_border")} - PropertyChanges { target: backgroundRectangle; color: UM.Theme.getColor("setting_control_disabled")} + when: !control.enabled + PropertyChanges { target: control; color: UM.Theme.getColor("text_field_text_disabled")} + PropertyChanges { target: backgroundRectangle; liningColor: UM.Theme.getColor("text_field_border_disabled")} }, State { name: "invalid" - when: !textField.acceptableInput - PropertyChanges { target: backgroundRectangle.border; color: UM.Theme.getColor("setting_validation_error")} + when: !control.acceptableInput PropertyChanges { target: backgroundRectangle; color: UM.Theme.getColor("setting_validation_error_background")} }, State { name: "hovered" - when: textField.hovered || textField.activeFocus - PropertyChanges { target: backgroundRectangle.border; color: UM.Theme.getColor("setting_control_border_highlight") } + when: control.hovered || control.activeFocus + PropertyChanges { target: backgroundRectangle; liningColor: UM.Theme.getColor("text_field_border_hovered")} } ] - background: Rectangle + background: UM.UnderlineBackground { id: backgroundRectangle - - color: UM.Theme.getColor("main_background") - - radius: UM.Theme.getSize("setting_control_radius").width - - border.color: - { - if (!textField.enabled) - { - return UM.Theme.getColor("setting_control_disabled_border") - } - if (textField.hovered || textField.activeFocus) - { - return UM.Theme.getColor("setting_control_border_highlight") - } - return UM.Theme.getColor("setting_control_border") - } - //Optional icon added on the left hand side. UM.RecolorImage { @@ -85,7 +67,7 @@ TextField visible: source != "" height: UM.Theme.getSize("small_button_icon").height width: visible ? height : 0 - color: textField.color + color: control.color } } } diff --git a/resources/qml/qmldir b/resources/qml/qmldir index df2518c988..a47d85545b 100644 --- a/resources/qml/qmldir +++ b/resources/qml/qmldir @@ -4,6 +4,7 @@ MachineSelector 1.0 MachineSelector.qml MachineSelectorButton 1.0 MachineSelectorButton.qml CustomConfigurationSelector 1.0 CustomConfigurationSelector.qml PrintSetupSelector 1.0 PrintSetupSelector.qml +ProfileOverview 1.6 ProfileOverview.qml ActionButton 1.0 ActionButton.qml MaterialMenu 1.0 MaterialMenu.qml NozzleMenu 1.0 NozzleMenu.qml @@ -13,11 +14,8 @@ OutputDevicesActionButton 1.0 OutputDevicesActionButton.qml ExpandableComponent 1.0 ExpandableComponent.qml PrinterTypeLabel 1.0 PrinterTypeLabel.qml ViewsSelector 1.0 ViewsSelector.qml -ToolbarButton 1.0 ToolbarButton.qml SettingView 1.0 SettingView.qml ProfileMenu 1.0 ProfileMenu.qml -CheckBoxWithTooltip 1.0 CheckBoxWithTooltip.qml -ToolTip 1.0 ToolTip.qml # Cura/WelcomePages @@ -28,7 +26,6 @@ WizardDialog 1.0 WizardDialog.qml # Cura/Widgets -CheckBox 1.0 CheckBox.qml ComboBox 1.0 ComboBox.qml NotificationIcon 1.0 NotificationIcon.qml RadioButton 1.0 RadioButton.qml @@ -48,3 +45,4 @@ GcodeTextArea 1.0 GcodeTextArea.qml NumericTextFieldWithUnit 1.0 NumericTextFieldWithUnit.qml PrintHeadMinMaxTextField 1.0 PrintHeadMinMaxTextField.qml SimpleCheckBox 1.0 SimpleCheckBox.qml +RenameDialog 1.0 RenameDialog.qml diff --git a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg index b2d46783e9..e8d0a16b4d 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index cecf94663e..06279be937 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = 0 @@ -21,10 +21,6 @@ wall_0_wipe_dist = 0.2 top_bottom_thickness = 0.8 top_bottom_pattern = lines optimize_wall_printing_order = True -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True z_seam_type = sharpest_corner z_seam_corner = hide_seam @@ -55,8 +51,6 @@ speed_layer_0 = 25 speed_support = 40 speed_travel_layer_0 = 45 speed_slowdown_layers = 1 -speed_equalize_flow_enabled = True -speed_equalize_flow_max = 150 retraction_combing = all travel_avoid_other_parts = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index b4175d5de2..9aecb0a4ad 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = 0 @@ -21,10 +21,6 @@ wall_0_wipe_dist = 0.2 top_bottom_thickness = 0.8 top_bottom_pattern = lines optimize_wall_printing_order = True -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True z_seam_type = sharpest_corner z_seam_corner = hide_seam @@ -55,8 +51,6 @@ speed_layer_0 = 25 speed_support = 40 speed_travel_layer_0 = 45 speed_slowdown_layers = 1 -speed_equalize_flow_enabled = True -speed_equalize_flow_max = 150 retraction_combing = all travel_avoid_other_parts = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index fb9a71ff89..7b26429143 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = 0 @@ -21,10 +21,6 @@ wall_0_wipe_dist = 0.2 top_bottom_thickness = 0.8 top_bottom_pattern = lines optimize_wall_printing_order = True -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True z_seam_type = sharpest_corner z_seam_corner = hide_seam @@ -55,8 +51,6 @@ speed_layer_0 = 25 speed_support = 50 speed_travel_layer_0 = 45 speed_slowdown_layers = 1 -speed_equalize_flow_enabled = True -speed_equalize_flow_max = 150 acceleration_enabled = False retraction_combing = all diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index b688ddcd85..2dbeb02c97 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = 0 @@ -21,10 +21,6 @@ wall_0_wipe_dist = 0.2 top_bottom_thickness = 0.8 top_bottom_pattern = lines optimize_wall_printing_order = True -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True z_seam_type = sharpest_corner z_seam_corner = hide_seam @@ -55,8 +51,6 @@ speed_layer_0 = 25 speed_support = 50 speed_travel_layer_0 = 45 speed_slowdown_layers = 1 -speed_equalize_flow_enabled = True -speed_equalize_flow_max = 150 acceleration_enabled = False retraction_combing = all diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index e95e999e26..ea6db5e006 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = 0 @@ -21,10 +21,6 @@ wall_0_wipe_dist = 0.2 top_bottom_thickness = 0.8 top_bottom_pattern = lines optimize_wall_printing_order = True -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True z_seam_type = sharpest_corner z_seam_corner = hide_seam @@ -55,8 +51,6 @@ speed_layer_0 = 25 speed_support = 40 speed_travel_layer_0 = 45 speed_slowdown_layers = 1 -speed_equalize_flow_enabled = True -speed_equalize_flow_max = 150 retraction_combing = all travel_avoid_other_parts = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index aa4de25021..7f59ef60b1 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = 0 @@ -21,10 +21,6 @@ wall_0_wipe_dist = 0.2 top_bottom_thickness = 0.8 top_bottom_pattern = lines optimize_wall_printing_order = True -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True z_seam_type = sharpest_corner z_seam_corner = hide_seam @@ -55,8 +51,6 @@ speed_layer_0 = 25 speed_support = 40 speed_travel_layer_0 = 45 speed_slowdown_layers = 1 -speed_equalize_flow_enabled = True -speed_equalize_flow_max = 150 retraction_combing = all travel_avoid_other_parts = True diff --git a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg index 1d0827568e..c9bb487dcd 100644 --- a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = abax_pri3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg index 722b46d62c..dce3b4beb6 100644 --- a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = abax_pri3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg index 96bead1a87..7965d0ee06 100644 --- a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = abax_pri3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg index e612736446..d452bee541 100644 --- a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = abax_pri5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg index 8a9f7290f5..b31767bdc1 100644 --- a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = abax_pri5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg index 615f68485c..2d599862c1 100644 --- a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = abax_pri5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg index 0950d80606..012a043ee8 100644 --- a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = abax_titan [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_high.inst.cfg b/resources/quality/abax_titan/atitan_pla_high.inst.cfg index 2de791e7de..9ba08e09f5 100644 --- a/resources/quality/abax_titan/atitan_pla_high.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = abax_titan [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg index c9429817c2..cafdb03f74 100644 --- a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = abax_titan [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg index a287c1a136..b8a93de2e4 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg index 045abc3534..fc72e6d8b8 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg index d66900b28c..165fce474c 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg index 85e7686328..015ee89256 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg index c4f3242265..68ca077063 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg index c71f0a00dc..e0c6826b13 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg index 4de65f3aef..e25cac4895 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg index 3986aeab4b..df04c64d1d 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg index 8bf0cffa10..18f48315a0 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg index 622bf54f85..acb54f24cf 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg index 80f38627ad..4900daf0ea 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg index d991ed12f8..c67cc574db 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg index 9b896e7252..16acc27d81 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg index d74dfa163c..d91d96eaa0 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg index 16fd177736..8f0204a705 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_4max [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index e9a868b138..eec69570b7 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_chiron [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index a2c1d39e47..541e504c38 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_chiron [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index 8adc92a480..28105be9bd 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_chiron [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg index 5188910913..67a8ebfa7c 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_i3_mega [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg index 8b4e60c6f7..70b4b29609 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_i3_mega [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg index 23e523629f..d5644ae4f0 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_i3_mega [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg index 5ee72cd232..2a192f1b1a 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_i3_mega_s [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg index 14ece958fa..2a741f3166 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_i3_mega_s [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg index edcd5e581a..83ef9efd37 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_i3_mega_s [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg index 4c54e17a71..5a30ef004b 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = anycubic_mega_zero [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg index 592d9f7216..8ce148d0e3 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = anycubic_mega_zero [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg index 997622231e..c8807a2b33 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = anycubic_mega_zero [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/anycubic_predator/predator_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_coarse.inst.cfg index 959ffa2422..0599287222 100644 --- a/resources/quality/anycubic_predator/predator_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = predator [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/anycubic_predator/predator_draft.inst.cfg b/resources/quality/anycubic_predator/predator_draft.inst.cfg index 24e79b0e38..0030fd23ea 100644 --- a/resources/quality/anycubic_predator/predator_draft.inst.cfg +++ b/resources/quality/anycubic_predator/predator_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = predator [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg index 483c45765c..662bb227cc 100644 --- a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = predator [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Xcoarse weight = -4 diff --git a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg index e4e3483646..8ab048c052 100644 --- a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = predator [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Xfine weight = 1 diff --git a/resources/quality/anycubic_predator/predator_fine.inst.cfg b/resources/quality/anycubic_predator/predator_fine.inst.cfg index 66cedf91f4..1ea382e7e5 100644 --- a/resources/quality/anycubic_predator/predator_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = predator [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = 1 diff --git a/resources/quality/anycubic_predator/predator_normal.inst.cfg b/resources/quality/anycubic_predator/predator_normal.inst.cfg index f2e3118823..4918f71164 100644 --- a/resources/quality/anycubic_predator/predator_normal.inst.cfg +++ b/resources/quality/anycubic_predator/predator_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = predator [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg index 7264a15db4..b59548e2e4 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg index 863a383277..4a59bab0cb 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg index 94a00b4adc..e9e1b408be 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg index 54ec42487f..35ecd61820 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg index ec93f4fde7..08d618311d 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg index 46a6786591..fcc1d186f8 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg index f7638c8521..9c5940820e 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg index 3d332e2305..2c7d74ae23 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg index e2df011212..8c5cab8f03 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg index f3aa4793c8..28afe8a1e9 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg index 1f511c3ff0..ec2cf8c3bc 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg index 3580446d7e..2c7a246a04 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg index f4f26c28b5..07a6090598 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg index fa8a634297..a5a7c29658 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg index 359a112f62..27bdca0ea3 100644 --- a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg index 38ada0bc5b..6b1da88224 100644 --- a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg index 59fb714004..4641fc0737 100644 --- a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg index 5d7e9a753f..3cebf15c87 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg index 9a12940898..dbdd813c27 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg index 9987db15b3..cf38123a30 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg index e15ef83d0f..dfddbb7fd5 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg index 0f87d22110..238368fafa 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg index ba7aa6010a..4951ddb9f5 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg index ef15416607..43525b7c4a 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg index 31dc110a84..37e2af4e90 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg index e4d3082f43..66df300046 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg index 898d5fbaa8..e3067cd985 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg index 38acc323bc..d4ddbb487e 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg index 3256114737..9687942b3d 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg index ca62005409..4f557e4002 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg index f876733297..76e97c59ca 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg index 78a8bc8471..b4c3dfa2dc 100644 --- a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg index a6b438e14c..8826dc201d 100644 --- a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg index 48ed582791..50a46c69cf 100644 --- a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg index caa5232ded..47674a7afa 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg index 92d815d33e..63284a6574 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg index a964275057..85375edf70 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg index 5e8c71adb0..f0dac34f21 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg index 6abd33b774..7a0f1f490d 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg index 6f901287c4..e763b7fb33 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg index ac943df387..b66e9b7097 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg index da79780582..cb16933998 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg index 4ea0fa4e17..f67445376b 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg index 35af1abfbf..ceb2d0a950 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg index e175015f3f..31ef1d475c 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg index 00f166168c..52f35db9f5 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg index 11171760e6..8eb3ebc735 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg index 991da55229..2d1a7cb5f7 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg index 835315d766..347fb6029e 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg index bf46191936..12debe0118 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg index 31b0c1dd9c..b6620b08ec 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg index 685d792730..f6917fb30f 100644 --- a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg index 706ae537e1..328e57c688 100644 --- a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg index 3083d6b8a9..924cc1c636 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg index 2fb1a28c92..c87d437f63 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg index b5abd8ab64..8d60ddd83b 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg index f74fb38482..f9f6bc7073 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg index 24b6451895..6d858694f4 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg index bac5551fab..2e914163fb 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg index a28b272693..a5c0dfcc3a 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg index 3450952d24..67f8735afe 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg index ff2315d64f..484c6e8d57 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg index 2aeb3bbb9a..835ed5f67f 100644 --- a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg index 999a184b9a..310ee80a06 100644 --- a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg index 2ba4124a39..cf5260143c 100644 --- a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/artillery/artillery_global_adaptive.inst.cfg b/resources/quality/artillery/artillery_global_adaptive.inst.cfg index e9346d2912..14e4955f20 100644 --- a/resources/quality/artillery/artillery_global_adaptive.inst.cfg +++ b/resources/quality/artillery/artillery_global_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/artillery/artillery_global_draft.inst.cfg b/resources/quality/artillery/artillery_global_draft.inst.cfg index fc5f84d9ae..8a366cebbf 100644 --- a/resources/quality/artillery/artillery_global_draft.inst.cfg +++ b/resources/quality/artillery/artillery_global_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/artillery/artillery_global_low.inst.cfg b/resources/quality/artillery/artillery_global_low.inst.cfg index 1c26274701..246fb504f7 100644 --- a/resources/quality/artillery/artillery_global_low.inst.cfg +++ b/resources/quality/artillery/artillery_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/artillery/artillery_global_standard.inst.cfg b/resources/quality/artillery/artillery_global_standard.inst.cfg index 6af82c7bc0..cd13ecfdba 100644 --- a/resources/quality/artillery/artillery_global_standard.inst.cfg +++ b/resources/quality/artillery/artillery_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/artillery/artillery_global_super.inst.cfg b/resources/quality/artillery/artillery_global_super.inst.cfg index 6a5b7dffd7..d0e881fefc 100644 --- a/resources/quality/artillery/artillery_global_super.inst.cfg +++ b/resources/quality/artillery/artillery_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/artillery/artillery_global_ultra.inst.cfg b/resources/quality/artillery/artillery_global_ultra.inst.cfg index 0f7a09d4d6..717971cfbf 100644 --- a/resources/quality/artillery/artillery_global_ultra.inst.cfg +++ b/resources/quality/artillery/artillery_global_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg new file mode 100644 index 0000000000..8e7c8be5ad --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Super Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = super +material = generic_nylon +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg new file mode 100644 index 0000000000..38995cad0e --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Ultra Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = ultra +material = generic_nylon +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg new file mode 100644 index 0000000000..4ea7e9a5f0 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Dynamic Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = adaptive +material = generic_nylon +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg new file mode 100644 index 0000000000..1da961e954 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Low Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = low +material = generic_nylon +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg new file mode 100644 index 0000000000..2b9d2f62ce --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Standard Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = standard +material = generic_nylon +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg new file mode 100644 index 0000000000..8df7d90517 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Super Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = super +material = generic_nylon +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg new file mode 100644 index 0000000000..5d02fab2e4 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Dynamic Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = adaptive +material = generic_nylon +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg new file mode 100644 index 0000000000..410c7ebe25 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Low Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = low +material = generic_nylon +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg new file mode 100644 index 0000000000..135c8133dc --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Standard Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = standard +material = generic_nylon +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg new file mode 100644 index 0000000000..db40f2f21f --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Super Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = super +material = generic_nylon +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg new file mode 100644 index 0000000000..53ad6d30ce --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Dynamic Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = adaptive +material = generic_nylon +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg new file mode 100644 index 0000000000..257f1b40b9 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Low Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = low +material = generic_nylon +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg new file mode 100644 index 0000000000..6775cfbd42 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Standard Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = standard +material = generic_nylon +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg new file mode 100644 index 0000000000..c533bdc25a --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Super Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = super +material = generic_nylon +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 diff --git a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg new file mode 100644 index 0000000000..c3022d190b --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Standard Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = standard +material = generic_nylon +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 diff --git a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg new file mode 100644 index 0000000000..f57e6e43f2 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Draft Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +material = generic_nylon +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 diff --git a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg new file mode 100644 index 0000000000..1b1a83a096 --- /dev/null +++ b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Draft Quality +definition = artillery_base + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +material = generic_nylon +variant = 1.0mm Nozzle + +[values] +wall_thickness = =line_width*3 diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg index b420faae60..9aeb1fcb5f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast global_quality = True diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg index 94301c55c2..8413e7320f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine global_quality = True diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg index 41b7a73722..0c0a2c580a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast global_quality = True diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg index 9540d432fe..bd3ab2ad87 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine global_quality = True diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg index 67e6561078..2a66880b52 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal global_quality = True diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg index c472b9af9d..33178e33c5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint global_quality = True diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg index e053f7f326..59e365a476 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint global_quality = True diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg index 90a865ea82..683af0e829 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint global_quality = True diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg index 477e244c0a..379db7078c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg index 0ef1ab45bd..2b44436951 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg index a26a0f4df9..9591ad40f6 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg index 6bb9be4ec8..28d06a998e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg index 7310a9916f..3d803de3a0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_hips_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg index 718facc609..c1b859729e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_hips_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg index 555954db2e..d65cdf8591 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_hips_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg index 089e1f80fb..ed0794fe1c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_hips_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg index d46146464c..1ef0ee622c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg index 3a3b68e805..d58c76208c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg index 04fda8803f..e804a1afa7 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_nylon_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg index b35a0837d1..ce8abc89fd 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_nylon_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg index fb5e0f97b8..bcaf92a6e5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg index 3f6511f614..eea17addce 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg index d60877f539..fddbdfe6b5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pc_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg index 094161de6c..0339408bf3 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pc_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg index 8721072b80..befae1696e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg index 689b4e8939..6849d1ce04 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg index 563db3e271..848edc6e40 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg index fe5545dd3e..367e759341 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg index 71b948ba13..b05624b9e2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg index 4aeae3f393..4f837f46fa 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg index 409d937627..0069c0a7d7 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg index 9fe85d998f..1d36e60167 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg index 75b289c551..4651a53d53 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pva_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg index 1c5773d723..7cb339761c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pva_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg index 450c22b9b6..653260cb2e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pva_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg index 4c0a3f694a..cd513a9a3c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pva_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg index 09fc1e8b49..c0e4623256 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_tpu_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg index 4d200d2904..17466da931 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_tpu_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg index 61d535ae66..a5ff8fb665 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_tpu_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg index 398a77d369..e92f92eabe 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg index 429f5e6d74..0d401af8f2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg index 66594200b7..9f0fd2931b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_abs_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg index 09d79571fe..bee8fd35f6 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_abs_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg index 2ae50d46b0..171657b845 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_hips_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg index 66a7db63a3..0844af44f9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_hips_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg index 557f4732a6..c79f734539 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_hips_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg index 20f3572495..b4c368e078 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg index 32d5b2bb6f..0743d85e88 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_nylon_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg index 04c845d058..4457ccd212 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_nylon_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg index 6270452444..9d78fd8bba 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg index dbdf609b6e..1f1aa9d153 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pc_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg index b0a615a794..2e16c8ff8c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pc_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg index b683151b32..3519f7a5ed 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg index 862adcf229..2b9a360c53 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_petg_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg index a217664e1b..55bc7dd5a0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_petg_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg index b3990e201b..56b86edcab 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg index 690ce5efd4..4f3956e9ee 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pla_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg index 4fae662805..4b2fad983d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pla_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg index e32c620426..9fdc01b681 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pva_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg index d71e0aead9..0762927701 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pva_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg index 758f6db531..7cc08f4da3 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pva_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg index b34341a138..7c15a87ac6 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_tpu_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg index 1bcbbc14ff..888e3eca58 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_tpu_175 diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg index 2c9c72b695..01b6ddf327 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = atmat_signal_pro_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_tpu_175 diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index d5276ea861..0f217ff151 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp L Coarse definition = beamup_l [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index 7f364d6840..fd668db53a 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp L Draft definition = beamup_l [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg index 3fcd43772b..dcd68de112 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp L Extra Fine definition = beamup_l [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index 213727a2a3..b5c1109d59 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp L Fine definition = beamup_l [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index 20f80c40d0..348bf4e78c 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp L Normal definition = beamup_l [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index 07697a4aae..1997cba221 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp S Coarse definition = beamup_s [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index bae355d9ce..ebfbd28010 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp S Draft definition = beamup_s [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg index 93607aba6a..8a2d6e4dee 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp S Extra Fine definition = beamup_s [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index 64d41c1298..9d151a6f7d 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp S Fine definition = beamup_s [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index 77f92b72ab..03bc7f0795 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -4,7 +4,7 @@ name = BeamUp S Normal definition = beamup_s [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg index 4f3e6dbf5e..525308ecc6 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg index c29f50bd97..27d2ce9630 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg index e1ee4dd2c5..23b80ce056 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg index 0962b35611..e119a7d03f 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg index a4e2af5af7..400632abc3 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg index 2e5412d866..737a5fe3c5 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg index 2cb1033287..753759b949 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg index ea3e2dcd52..0540559697 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg index 219d26bd7f..9ffad06a2f 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg index 4edd4c3abf..cdf5c07339 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg index 6140755974..ec09434863 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg index c050c238fb..8f0301a132 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg index e9029b43d2..ef450e3689 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg index 1fad146399..5680180947 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg index cee74eed87..cfbbc55907 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg index cd438a8cf9..f7671744be 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg index 90187baf20..eb47f29224 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg index 44c7b2e04e..16f608321d 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg index 2b7cba7882..4bf836f264 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg index d34cb31eda..f0cedb156a 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg index 49cff301bf..d144f82bee 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg index 010fdd2d51..f4f15c88b4 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg index 46251b4818..4e4b16ef7d 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg index 4075e326f3..2bf30d7ee6 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg index 8e8207cd1b..68f70e18d1 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg index 9e3a2cb3a4..03a8bb2ea3 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg index 7714ed9097..9351d27441 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg index 74a26b547f..350cce6506 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg index 805cb89e6a..d09ea167da 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg index 0e112d2c75..bc7a949c19 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg index 073f2b588b..30cf74d402 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg index 65e6c6e205..cfed75baf0 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg index ec27c10193..fab4143fb8 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg index 8b7bd5f8d9..36d8172113 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg index 3473d852f8..0a9452aafe 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg index 467557b25b..032a86d5f0 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg index 019f36ff78..8e9b0b0372 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg index 7c5bd852f5..369b3aeb41 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg index bb63c2060a..417201f753 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg index 9c7c144d1b..faceb27e8e 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg index 346799a2a2..b4d2dad022 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg index 0c19569778..94588abced 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg index 3939ea893d..58cb116df3 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg index f9df77524a..f1552c56f3 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg index dc6ccb5d46..146dce766a 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg index 250364ca35..566db6e183 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg index c18fd70ea3..7bb5499145 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg index 5a2fd94dc1..8efec444eb 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg index c6443e8f46..0e69afeca7 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg index 890fea2d63..67cb6c835e 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg index 193ea3e7b9..2164b2c7a6 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg index f76239dacf..bbd1be8427 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg index ce47b2e5ec..ec1aac7eaf 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg index 2d384bf676..b616da7c44 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg index f2030f1108..c382856ae1 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg index 40d45032f7..72ae8357c3 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg index 71e15e27d4..4f5220d871 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg index 42e763cb35..4b91296e88 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg index af5c61b1f9..6cd9a1685a 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg index b5cd6fd5b1..44531f41e7 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg index e69ced53ec..5dc1fa093e 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg index 7f1e25f822..aaff203ffa 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs_175 diff --git a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg index 255086cd4e..42d3e92310 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg_175 diff --git a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg index 879efffb5c..32454ffe20 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla_175 diff --git a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg index 6df0b1b846..8faed6e584 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu_175 diff --git a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg index ec591faf98..afecb0faf7 100644 --- a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg index 64e3dccbcd..c66cb26477 100644 --- a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg index 4f38e2181e..98841fb818 100644 --- a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg index 673e5d647d..546cfac9c2 100644 --- a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg index 891b3eae3f..d326523017 100644 --- a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg index 033fca274c..b26e350494 100644 --- a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg index d1e057f4d0..5025b5866d 100644 --- a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg index 021d2c1274..449f6e49b2 100644 --- a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg index d77c404d6a..03cd020d3c 100644 --- a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg index 42bf68f555..718bda65f2 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg index 724e9b06d4..5feac41e70 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg index 834f27aee4..05318d53a4 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg index 2fc1bc8c24..404ad5f29b 100644 --- a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg index cb2d7e45ee..1ca2859c26 100644 --- a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg index 8cd368f333..d65a2b97b4 100644 --- a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg index 0a8a0f5b28..e56f53d75d 100644 --- a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg index e350677b1c..5eb9aa60f8 100644 --- a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg index 39216f60b5..3aafcc121a 100644 --- a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg index 3b7dea65c5..39d6bf101c 100644 --- a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg index 52f3cd1f02..386682bda1 100644 --- a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg index 4a8e0ad3b2..6f697a6420 100644 --- a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg index 9fde2d3d1d..7c4721b39f 100644 --- a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg index e1cf52892c..0c566d5a81 100644 --- a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg index 5bc3cb072c..5cd4d5bba2 100644 --- a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = builder_premium_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg index 9c3f460b00..7bf45c9d57 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg index f0d5a7b986..c7849189d5 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg index 22f86e2b60..4e201b3862 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg index b0ada78077..664c4fa94e 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg index 6de386972d..35b463f919 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = 3 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg index 47076d533d..3fd0d3ba5c 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 4 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg index 23d21394c0..31754c0ff4 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg index 40cba11154..89549fc794 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg index 3199834724..b1d48930e4 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid @@ -41,8 +39,6 @@ speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel speed_support_interface = =speed_topbottom -speed_equalize_flow_enabled = True -speed_equalize_flow_max = =speed_print acceleration_enabled = True acceleration_print = 100 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg index 139e739a64..21ca899e62 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid @@ -41,8 +39,6 @@ speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel speed_support_interface = =speed_topbottom -speed_equalize_flow_enabled = True -speed_equalize_flow_max = =speed_print acceleration_enabled = True acceleration_print = 100 diff --git a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg index a17a389f54..96fce904c7 100644 --- a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg index f81604ad64..4fdccdddd8 100644 --- a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -4 diff --git a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg index 356361fe21..c072a0c9a3 100644 --- a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg index 3fe23d5f7f..d96f3bfe6a 100644 --- a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg index 095f78ca55..75b287b7be 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg index 6bcbc308f7..2981397bf1 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg index e57ed2622a..a240c27d8f 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg index 8ea8997989..63bdc80cdd 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg index 2b9c66174e..3631816337 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = 3 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg index 501730b447..ed0953e980 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 4 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg index bf606c43c0..be1332cc63 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg index 0d2c45df64..7edaeb1461 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg index fbc090de1e..7b3581a9f9 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg index 7d34491a68..a78d9f2bdc 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg index 7baadfc795..52dc915702 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg index 2518e281b5..4b8dfc769f 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg index aec5839007..68fef6a52e 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = 3 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg index 32af63d6ca..6fd8f98820 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 4 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg index b4a7a5990c..7dae91f4f0 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg index 49a2e67d77..8f3c99afa1 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg index 157db609b0..25cfec3660 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg index 3dafdcb0ac..7413573fb2 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg index 4218ba4cdb..7144b584b5 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg index 482de59383..c0dfffe4e3 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg index e88dbe3f1c..e2e34adb91 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = 3 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg index 423bc93c23..dd605d551b 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 4 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg index b69a32a0b4..3f2edcab38 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg index 05de6f2db9..f85e3fc0ad 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg index e0f8eab122..cbfb71be69 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg index c9eb5c5818..28f78ef6cf 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg index 468efbaf6d..3fded04ee5 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg index 5b4c7fb669..19da426b69 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg index 682530f404..543c328251 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = 3 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg index d8175c4935..5ab674e433 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 4 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg index 69891332ea..d2b4577c97 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 50 infill_pattern = grid diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg index 663e49e657..f0ae097707 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg index 25155c94f3..67770a9c19 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg index a2f8dc2c21..f7e2d0ab93 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg index 996d2f7d2e..2ac5c748dd 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg index b96e1442ad..6ad75bb3c0 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg index 764989fefb..917e04a248 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg index d22a667fb8..da88f49160 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -4 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg index 4a492255bb..5339f3a6cd 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg index e05cdd2e4b..8be6d9cfe6 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg index e32a9fcd1f..c33dbbb1af 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg index 5f33208e5e..60579bc8ec 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.3 wall_thickness = 1 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg index 7da7d8d629..4e72d5ee17 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg index 25cce77f09..0ec3d98cb8 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.5 wall_thickness = 1.2 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg index 2fcc20d5f3..f711ef7916 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = 3 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg index 1e2452012f..7ed306adf2 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 4 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = =layer_height * 3 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg index cd5cf43d9d..804460a331 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg index 4a4ebbb2bd..87023e2b7a 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = cartesio [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,8 +17,6 @@ infill_line_width = 0.9 wall_thickness = 2.4 top_bottom_thickness = 0.8 wall_0_inset = -0.05 -fill_perimeter_gaps = nowhere -travel_compensate_overlapping_walls_enabled = infill_sparse_density = 40 infill_pattern = grid diff --git a/resources/quality/coarse.inst.cfg b/resources/quality/coarse.inst.cfg index f723269f1a..c3027a52a5 100644 --- a/resources/quality/coarse.inst.cfg +++ b/resources/quality/coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = fdmprinter [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg new file mode 100644 index 0000000000..52d7d60f4d --- /dev/null +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg @@ -0,0 +1,23 @@ +[general] +version = 4 +name = Coarse Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +material = generic_abs +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = 100 +material_print_temperature = 245 +material_print_temperature_layer_0 = 245 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 100 \ No newline at end of file diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg new file mode 100644 index 0000000000..d80c8377cf --- /dev/null +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg @@ -0,0 +1,23 @@ +[general] +version = 4 +name = Draft Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +material = generic_abs +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = 100 +material_print_temperature = 245 +material_print_temperature_layer_0 = 245 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 100 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg new file mode 100644 index 0000000000..c450f4c35d --- /dev/null +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg @@ -0,0 +1,23 @@ +[general] +version = 4 +name = Fine Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +material = generic_abs +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = 100 +material_print_temperature = 245 +material_print_temperature_layer_0 = 245 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 100 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg new file mode 100644 index 0000000000..5d6bb279d1 --- /dev/null +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg @@ -0,0 +1,23 @@ +[general] +version = 4 +name = Normal Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +material = generic_abs +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = 100 +material_print_temperature = 245 +material_print_temperature_layer_0 = 245 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 100 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg new file mode 100644 index 0000000000..83096ff6e3 --- /dev/null +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -0,0 +1,27 @@ +[general] +version = 4 +name = Fine Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] +adhesion_type = brim +brim_width = 2.0 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +layer_height = 0.10 +layer_height_0 = 0.20 +material_bed_temperature = 40 +material_diameter = 1.75 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 70 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg new file mode 100644 index 0000000000..a1ec5998b7 --- /dev/null +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -0,0 +1,27 @@ +[general] +version = 4 +name = Normal Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +global_quality = True + +[values] +adhesion_type = brim +brim_width = 2.0 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +layer_height = 0.2 +layer_height_0 = 0.3 +material_bed_temperature = 40 +material_diameter = 1.75 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 70 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg new file mode 100644 index 0000000000..adf84d3a15 --- /dev/null +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -0,0 +1,27 @@ +[general] +version = 4 +name = Draft Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +adhesion_type = brim +brim_width = 2.0 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +layer_height = 0.30 +layer_height_0 = 0.40 +material_bed_temperature = 40 +material_diameter = 1.75 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 70 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg new file mode 100644 index 0000000000..63b82073fa --- /dev/null +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -0,0 +1,27 @@ +[general] +version = 4 +name = Coarse Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +global_quality = True + +[values] +adhesion_type = brim +brim_width = 2.0 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 40 +material_diameter = 1.75 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 70 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg new file mode 100644 index 0000000000..433c621ec6 --- /dev/null +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg @@ -0,0 +1,23 @@ +[general] +version = 4 +name = Coarse Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +material = generic_pla +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = 70 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 70 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..0835097529 --- /dev/null +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg @@ -0,0 +1,23 @@ +[general] +version = 4 +name = Draft Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +material = generic_pla +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = 70 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 70 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..f0d4f0e861 --- /dev/null +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg @@ -0,0 +1,23 @@ +[general] +version = 4 +name = Fine Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +material = generic_pla +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = 70 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 70 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg new file mode 100644 index 0000000000..4ff5d23f36 --- /dev/null +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg @@ -0,0 +1,23 @@ +[general] +version = 4 +name = Normal Quality +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +material = generic_pla +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = 70 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +speed_infill = =speed_print +speed_print = 24 +speed_support = 24 +speed_travel = 70 diff --git a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg index 1f76facbbf..6d134de22f 100644 --- a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg index 5159ede954..bc45d39d50 100644 --- a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs diff --git a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg index 4e9d52964d..272d2ee2b1 100644 --- a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg index 8f8d2f5dba..df28ee60ef 100644 --- a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg diff --git a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg index d8cb3a169f..cf7f506e84 100644 --- a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg index 3c49462d70..54e0528f7a 100644 --- a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla diff --git a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg index 8ed5d5babf..bded356b41 100644 --- a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg index 2d37b7a02f..d456385ceb 100644 --- a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg index 5701a88e6b..18f523b07f 100644 --- a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg index b97ee34c48..865f5af912 100644 --- a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg index 71445c8d55..423110ccf8 100644 --- a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg index 7dd091eb01..4ca3eb35a3 100644 --- a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg index 871126a0e6..ec9df730b2 100644 --- a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg index e605fda1ee..68dc546688 100644 --- a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg index 46f1394ca5..5cb311f87d 100644 --- a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg index 1ee6c9d249..d0995dcb54 100644 --- a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg index b919c284ad..4b1b92f37f 100644 --- a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg index 717f7fc2a9..808ffa596f 100644 --- a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg index 4782571677..21cbb1a7c6 100644 --- a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg index eff4c9ac32..be2b8f0c25 100644 --- a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg index fe355b601f..952d31ca46 100644 --- a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg index 70d58dab43..90206c5fc3 100644 --- a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg index a4994588cc..0185782178 100644 --- a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg index f3fe22c9d9..b827fb4b58 100644 --- a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg index cf3e5c31b6..4fea6b065a 100644 --- a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg index b4747f6f13..ce1a1f4312 100644 --- a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg index 0031a6483d..522c538dfd 100644 --- a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg index 8e7b3d409f..849fa0895d 100644 --- a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg index 141573113e..c08743f459 100644 --- a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg index 5e3d29d6a4..e1f44386c3 100644 --- a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg index 60366ea96e..8fba6106b9 100644 --- a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg index 59ac002dda..48227007fa 100644 --- a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg index a12e39fd0a..b9800f0ce3 100644 --- a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg index 96a8514f3a..638500c635 100644 --- a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg index 37d41cb5ff..fd83e0e039 100644 --- a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg index ab3662a9fb..7f7eeb8532 100644 --- a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg index c680a25052..545146adda 100644 --- a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg index 07a85c2930..ecb5aff337 100644 --- a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg index d68beddd80..513224946d 100644 --- a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg index 06096567fb..539bacec6b 100644 --- a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg index e0fd92af6f..464f9543ab 100644 --- a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg index 495a61808f..0eed820dc8 100644 --- a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg index 8fb6155b8d..eb73ff7790 100644 --- a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg index e8913e0f27..131ef8fc04 100644 --- a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg index cc3823e583..3c2ed58a61 100644 --- a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg index a9105fadf0..de50b053ff 100644 --- a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg index 1d429d8079..d8165d46a3 100644 --- a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg index 9fd760540a..0a3450b1d6 100644 --- a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg index 2d032723d6..c60326d8be 100644 --- a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg index b8642e3c78..7c68b51c0e 100644 --- a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg index 459551d734..b27001f769 100644 --- a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg index 3e9a5bd3a6..c43316bde8 100644 --- a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg index 7d9e4402bb..a299e789ae 100644 --- a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg index aca985457c..4273fed00e 100644 --- a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg index 4396d68aa3..a18dfb5a5e 100644 --- a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg index 690b91ea67..6dae90a371 100644 --- a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg index f4d1e80606..9b0ec8d7e6 100644 --- a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg index 13281831b1..e8b5485446 100644 --- a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg index be4e7ee29c..cf445709b7 100644 --- a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg index bdbdd83d4d..71318b20c6 100644 --- a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg index 90f1bb75e2..9e75a31bc0 100644 --- a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg index be29e649f1..d7f2852d72 100644 --- a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg index 2389e000cc..330b30f76d 100644 --- a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg index 6986b2ac42..5a52e4e141 100644 --- a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg index a74ff7aef8..c7d34cd6bf 100644 --- a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/creality/base/base_global_adaptive.inst.cfg b/resources/quality/creality/base/base_global_adaptive.inst.cfg index 9e60d610b0..5c4a7cb131 100644 --- a/resources/quality/creality/base/base_global_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_global_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/creality/base/base_global_draft.inst.cfg b/resources/quality/creality/base/base_global_draft.inst.cfg index a0e0b7d87e..082a3cf587 100644 --- a/resources/quality/creality/base/base_global_draft.inst.cfg +++ b/resources/quality/creality/base/base_global_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/creality/base/base_global_low.inst.cfg b/resources/quality/creality/base/base_global_low.inst.cfg index ff50c3a86c..2a298f6d27 100644 --- a/resources/quality/creality/base/base_global_low.inst.cfg +++ b/resources/quality/creality/base/base_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/creality/base/base_global_standard.inst.cfg b/resources/quality/creality/base/base_global_standard.inst.cfg index 923fe9b839..358a9e6e09 100644 --- a/resources/quality/creality/base/base_global_standard.inst.cfg +++ b/resources/quality/creality/base/base_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/creality/base/base_global_super.inst.cfg b/resources/quality/creality/base/base_global_super.inst.cfg index aa84e090c1..7de19c4b9c 100644 --- a/resources/quality/creality/base/base_global_super.inst.cfg +++ b/resources/quality/creality/base/base_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/creality/base/base_global_ultra.inst.cfg b/resources/quality/creality/base/base_global_ultra.inst.cfg index d53ccb7726..0c62c22e1e 100644 --- a/resources/quality/creality/base/base_global_ultra.inst.cfg +++ b/resources/quality/creality/base/base_global_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg index e0b0210370..d1609da2d1 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = dagoma_discoeasy200_bicolor [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg index e46ef1250a..6a98089a77 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = dagoma_discoeasy200_bicolor [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg index 785ee88ab9..85344a3be1 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = dagoma_discoeasy200_bicolor [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg index 0f7f6d0bf6..718fac598e 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = dagoma_discoeasy200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg index 34f9e59188..b7c7a7a459 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = dagoma_discoeasy200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg index 5082462909..028f3d9dc1 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = dagoma_discoeasy200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg index 5dc74c357e..df1e4b84d6 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = dagoma_discoultimate_bicolor [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg index 8e00dd06ba..dd370f097b 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = dagoma_discoultimate_bicolor [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg index 3018b7c4a0..2a607e533d 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = dagoma_discoultimate_bicolor [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg index 3f9e25d549..d7895fe1a0 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = dagoma_discoultimate [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg index 3afd133fa2..c0d1afca86 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = dagoma_discoultimate [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg index ce0f7df158..76fbf90a3c 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = dagoma_discoultimate [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index 4023a6f69d..561cd81c4d 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = dagoma_magis [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index b0358ed765..4d885c2061 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = dagoma_magis [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index 210c8bb00f..e9773f87e8 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = dagoma_magis [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg index 3e2237a545..1c6506292d 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = dagoma_neva [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg index 80f1f1f0b8..f6c574a009 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = dagoma_neva [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg index 58d6fdad81..da1c58f83d 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = dagoma_neva [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_abs_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_abs_high_quality.inst.cfg new file mode 100644 index 0000000000..3fdc37a980 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_abs_high_quality.inst.cfg @@ -0,0 +1,54 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = generic_abs_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + 20 +material_bed_temperature = =default_material_bed_temperature + +speed_print = 40.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 40) +speed_wall_0 = =math.ceil(speed_print * 25 / 40) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 80 / 40) +speed_layer_0 = =math.ceil(speed_print * 25 / 40) +speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) +speed_support_interface = =math.ceil(speed_print * 25 / 40) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_enabled = False +cool_fan_speed_min = =cool_fan_speed * 0.25 +cool_fan_speed_max = =cool_fan_speed * 0.35 +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_asa_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_asa_high_quality.inst.cfg new file mode 100644 index 0000000000..197a76f253 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_asa_high_quality.inst.cfg @@ -0,0 +1,54 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = generic_asa_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + 20 +material_bed_temperature = =default_material_bed_temperature + +speed_print = 40.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 40) +speed_wall_0 = =math.ceil(speed_print * 25 / 40) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 80 / 40) +speed_layer_0 = =math.ceil(speed_print * 25 / 40) +speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) +speed_support_interface = =math.ceil(speed_print * 25 / 40) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_enabled = False +cool_fan_speed_min = =cool_fan_speed * 0.25 +cool_fan_speed_max = =cool_fan_speed * 0.35 +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_nylon_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_nylon_high_quality.inst.cfg new file mode 100644 index 0000000000..8250e803e8 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_nylon_high_quality.inst.cfg @@ -0,0 +1,54 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = generic_nylon_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + 20 +material_bed_temperature = =default_material_bed_temperature + +speed_print = 40.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 40) +speed_wall_0 = =math.ceil(speed_print * 25 / 40) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 80 / 40) +speed_layer_0 = =math.ceil(speed_print * 25 / 40) +speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) +speed_support_interface = =math.ceil(speed_print * 25 / 40) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_enabled = False +cool_fan_speed_min = =cool_fan_speed * 0.25 +cool_fan_speed_max = =cool_fan_speed * 0.50 +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pc_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pc_high_quality.inst.cfg new file mode 100644 index 0000000000..22e5f50eeb --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pc_high_quality.inst.cfg @@ -0,0 +1,54 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = generic_pc_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + 10 +material_bed_temperature = =default_material_bed_temperature + +speed_print = 40.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 40) +speed_wall_0 = =math.ceil(speed_print * 25 / 40) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 80 / 40) +speed_layer_0 = =math.ceil(speed_print * 25 / 40) +speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) +speed_support_interface = =math.ceil(speed_print * 25 / 40) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_enabled = False +cool_fan_speed_min = =cool_fan_speed * 0.25 +cool_fan_speed_max = =cool_fan_speed * 0.35 +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pe_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pe_high_quality.inst.cfg new file mode 100644 index 0000000000..dae5bf6ecc --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pe_high_quality.inst.cfg @@ -0,0 +1,54 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = generic_cpe_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + 20 +material_bed_temperature = =default_material_bed_temperature + +speed_print = 40.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 40) +speed_wall_0 = =math.ceil(speed_print * 25 / 40) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 80 / 40) +speed_layer_0 = =math.ceil(speed_print * 25 / 40) +speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) +speed_support_interface = =math.ceil(speed_print * 25 / 40) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_enabled = True +cool_fan_speed_min = =cool_fan_speed * 0.25 +cool_fan_speed_max = =cool_fan_speed * 0.30 +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_petg_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_petg_high_quality.inst.cfg new file mode 100755 index 0000000000..d0d0b21667 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_petg_high_quality.inst.cfg @@ -0,0 +1,54 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = generic_petg_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + 20 +material_bed_temperature = =default_material_bed_temperature + +speed_print = 40.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 40) +speed_wall_0 = =math.ceil(speed_print * 25 / 40) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 80 / 40) +speed_layer_0 = =math.ceil(speed_print * 25 / 40) +speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) +speed_support_interface = =math.ceil(speed_print * 25 / 40) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_enabled = False +cool_fan_speed_min = =cool_fan_speed * 0.25 +cool_fan_speed_max = =cool_fan_speed * 0.35 +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_fine_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_fine_quality.inst.cfg new file mode 100644 index 0000000000..180a3098a1 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_fine_quality.inst.cfg @@ -0,0 +1,52 @@ +[general] + +version = 4 +name = Fine Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_pla_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + +speed_print = 60.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 40 / 60) +speed_wall_0 = =math.ceil(speed_print * 30 / 60) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 100 / 60) +speed_layer_0 = =math.ceil(speed_print * 15 / 60) +speed_travel_layer_0 = =math.ceil(speed_print * 75 / 60) +speed_support_interface = =math.ceil(speed_print * 50 / 60) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_speed_min = =cool_fan_speed * 0.8 +cool_fan_speed_max = =cool_fan_speed +cool_fan_full_at_height = =layer_height_0 + 7 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_high_quality.inst.cfg new file mode 100644 index 0000000000..64d1525595 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_high_quality.inst.cfg @@ -0,0 +1,52 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = generic_pla_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + +speed_print = 80.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 60 / 80) +speed_wall_0 = =math.ceil(speed_print * 50 / 80) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 125 / 80) +speed_layer_0 = =math.ceil(speed_print * 25 / 80) +speed_travel_layer_0 = =math.ceil(speed_print * 100 / 80) +speed_support_interface = =math.ceil(speed_print * 50 / 80) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_speed_min = =cool_fan_speed * 0.8 +cool_fan_speed_max = =cool_fan_speed +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_medium_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_medium_quality.inst.cfg new file mode 100644 index 0000000000..5280a7455d --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_medium_quality.inst.cfg @@ -0,0 +1,52 @@ +[general] + +version = 4 +name = Medium Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = medium +weight = -2 +material = generic_pla_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature + +speed_print = 90.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 60 / 90) +speed_wall_0 = =math.ceil(speed_print * 50 / 90) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 150 / 90) +speed_layer_0 = =math.ceil(speed_print * 25 / 90) +speed_travel_layer_0 = =math.ceil(speed_print * 125 / 90) +speed_support_interface = =math.ceil(speed_print * 50 / 90) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_speed_min = =cool_fan_speed * 0.8 +cool_fan_speed_max = =cool_fan_speed +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pp_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pp_high_quality.inst.cfg new file mode 100644 index 0000000000..a12fdd46bd --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pp_high_quality.inst.cfg @@ -0,0 +1,54 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = dagoma_generic_pp +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature +material_bed_temperature = =default_material_bed_temperature + +speed_print = 40.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 40) +speed_wall_0 = =math.ceil(speed_print * 25 / 40) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 80 / 40) +speed_layer_0 = =math.ceil(speed_print * 25 / 40) +speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) +speed_support_interface = =math.ceil(speed_print * 25 / 40) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_enabled = True +cool_fan_speed_min = =cool_fan_speed * 0.25 +cool_fan_speed_max = =cool_fan_speed * 0.50 +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpe_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpe_high_quality.inst.cfg new file mode 100644 index 0000000000..b21452094b --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpe_high_quality.inst.cfg @@ -0,0 +1,53 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = dagoma_generic_tpe +variant = 0.4 + +[values] + +wall_thickness ==line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature +material_bed_temperature = =default_material_bed_temperature + +speed_print = 30.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 30) +speed_wall_0 = =math.ceil(speed_print * 20 / 30) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 100 / 30) +speed_layer_0 = =math.ceil(speed_print * 15 / 30) +speed_travel_layer_0 = =math.ceil(speed_print * 75 / 30) +speed_support_interface = =math.ceil(speed_print * 30 / 30) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_speed_min = =cool_fan_speed * 0.8 +cool_fan_speed_max = =cool_fan_speed +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpu_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpu_high_quality.inst.cfg new file mode 100755 index 0000000000..762ae2672e --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpu_high_quality.inst.cfg @@ -0,0 +1,53 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +material = generic_tpu_175 +variant = 0.4 + +[values] + +wall_thickness = =line_width * 2 +z_seam_type = sharpest_corner +z_seam_corner = z_seam_corner_weighted +skin_outline_count = 0 + +infill_sparse_density = 15 +infill_before_walls = False + +material_print_temperature = =default_material_print_temperature +material_bed_temperature = =default_material_bed_temperature + +speed_print = 30.0 +speed_infill = =speed_print +speed_wall = =math.ceil(speed_print * 30 / 30) +speed_wall_0 = =math.ceil(speed_print * 20 / 30) +speed_wall_x = =speed_wall +speed_topbottom = =speed_wall_0 +speed_travel = =math.ceil(speed_print * 100 / 30) +speed_layer_0 = =math.ceil(speed_print * 15 / 30) +speed_travel_layer_0 = =math.ceil(speed_print * 75 / 30) +speed_support_interface = =math.ceil(speed_print * 30 / 30) +speed_slowdown_layers = 1 + +retraction_combing = noskin +travel_avoid_distance = 1.2 +retraction_combing_max_distance = 10 + +support_interface_enable = True +support_interface_pattern = zigzag + +cool_fan_speed_min = =cool_fan_speed * 0.8 +cool_fan_speed_max = =cool_fan_speed +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time = 1 +cool_min_layer_time_fan_speed_max = 10 +cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_coarse_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_coarse_quality.inst.cfg new file mode 100644 index 0000000000..7a3c4a2add --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_coarse_quality.inst.cfg @@ -0,0 +1,20 @@ +[general] + +version = 4 +name = Coarse Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = coarse +weight = -4 +global_quality = True + +[values] + +layer_height = 0.6 +layer_height_0 = =round(0.38 * machine_nozzle_size, 2) + +top_bottom_thickness = =2 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_extra_fine_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_extra_fine_quality.inst.cfg new file mode 100644 index 0000000000..9808f96c5c --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_extra_fine_quality.inst.cfg @@ -0,0 +1,20 @@ +[general] + +version = 4 +name = Extra Fine Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = extra_fine +weight = 1 +global_quality = True + +[values] + +layer_height = 0.05 +layer_height_0 = =round(0.55 * machine_nozzle_size, 2) + +top_bottom_thickness = =16 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_fine_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_fine_quality.inst.cfg new file mode 100644 index 0000000000..e966469cbb --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_fine_quality.inst.cfg @@ -0,0 +1,20 @@ +[general] + +version = 4 +name = Fine Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] + +layer_height = 0.1 +layer_height_0 = =round(0.38 * machine_nozzle_size, 2) + +top_bottom_thickness = =8 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_high_quality.inst.cfg new file mode 100644 index 0000000000..a10ba13d42 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_high_quality.inst.cfg @@ -0,0 +1,20 @@ +[general] + +version = 4 +name = High Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = high +weight = -1 +global_quality = True + +[values] + +layer_height = 0.2 +layer_height_0 = =round(0.38 * machine_nozzle_size, 2) + +top_bottom_thickness = =6 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_low_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_low_quality.inst.cfg new file mode 100644 index 0000000000..c427cd70e5 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_low_quality.inst.cfg @@ -0,0 +1,20 @@ +[general] + +version = 4 +name = Low Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = low +weight = -3 +global_quality = True + +[values] + +layer_height = 0.4 +layer_height_0 = =round(0.38 * machine_nozzle_size, 2) + +top_bottom_thickness = =3 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_medium_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_medium_quality.inst.cfg new file mode 100644 index 0000000000..9ab7f33bd6 --- /dev/null +++ b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_medium_quality.inst.cfg @@ -0,0 +1,20 @@ +[general] + +version = 4 +name = Medium Quality +definition = dagoma_pro_430_bowden + +[metadata] + +setting_version = 19 +type = quality +quality_type = medium +weight = -2 +global_quality = True + +[values] + +layer_height = 0.3 +layer_height_0 = =round(0.38 * machine_nozzle_size, 2) + +top_bottom_thickness = =4 * layer_height \ No newline at end of file diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg old mode 100644 new mode 100755 index a6df2cfb2d..46bfac5a92 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg old mode 100644 new mode 100755 index e302068c61..73112be4a9 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg old mode 100644 new mode 100755 index 24501a5b18..7d1435ff30 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg old mode 100644 new mode 100755 index 18657e2d68..c9852be1ce --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg old mode 100644 new mode 100755 index 047bf4e214..2a00de77e7 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg old mode 100644 new mode 100755 index f95d0665e7..444c9a097b --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg old mode 100644 new mode 100755 index 187f473be0..123d195593 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg old mode 100644 new mode 100755 index 22664723de..f7b35c05a7 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg old mode 100644 new mode 100755 index 4f47162832..a9f5f60b0a --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg old mode 100644 new mode 100755 index a9d5e5868d..270f78a7bd --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg old mode 100644 new mode 100755 index 32a5aca0c5..85d4f20682 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg old mode 100644 new mode 100755 index f01607e392..7c455b5643 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg old mode 100644 new mode 100755 index 397fb8bd40..0c8ec58702 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg old mode 100644 new mode 100755 index bc54750afe..9816c3faad --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg old mode 100644 new mode 100755 index 99f22240a4..716273e7ce --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg old mode 100644 new mode 100755 index 45b878ca4d..977eedd2ac --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg old mode 100644 new mode 100755 index e1756b2497..fd911c65b0 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg old mode 100644 new mode 100755 index a9dbdfab95..f1cac86274 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg old mode 100644 new mode 100755 index 0338836562..5cd11db079 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg old mode 100644 new mode 100755 index 32c7882596..2554ad3944 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg old mode 100644 new mode 100755 index f8251d260c..296b4c3457 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg old mode 100644 new mode 100755 index 63098f5397..e9e38003df --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg old mode 100644 new mode 100755 index a9abfa6001..e25d659ba4 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg old mode 100644 new mode 100755 index 175b133b3b..88ea1264df --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg old mode 100644 new mode 100755 index 6ed527311e..837dfbf0b9 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg old mode 100644 new mode 100755 index e657ead88d..9c03fc9878 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg old mode 100644 new mode 100755 index c0ebe870b0..20ba238eef --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg old mode 100644 new mode 100755 index 4aa5e29071..f9a9e799c9 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D060 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg old mode 100644 new mode 100755 index 0aadf93657..17ad5e7846 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg old mode 100644 new mode 100755 index 20643f1b72..7f1ac2069b --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg old mode 100644 new mode 100755 index 8111d7a27c..97a3d25fff --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_abs diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg old mode 100644 new mode 100755 index cc09c892e4..19624e50cf --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D060 material = generic_abs diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg index fbd1d9e769..22bfcca5e1 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg index aaba6c643f..e0b7665c74 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg index ac895ae3ad..686f39594d 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg index 7b95e53f1c..4ad2b5e2a3 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg index 9fb13563d6..57559b5718 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg index dcf3944944..49186b3ffd 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg index 531a3fa4b9..eade02fa48 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg index 1b5e619c6c..15dc8be328 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg index c77ea365d8..34eb97a899 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg index 07d51583cd..0497c6a4dd 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg index f46c282016..46d42aa882 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg index c3214bb959..b177c95712 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg index 551211982a..beab7774ef 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg index ab38930103..73d2cf4a5f 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg index d3a1f05991..5f96454826 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg index 973197de38..c67a6a718b 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg index ef31b88136..4bac5c99eb 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_petg diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg index 4be5164b20..c7bb3c170f 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_petg diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg old mode 100644 new mode 100755 index aeee56f726..d017063491 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg old mode 100644 new mode 100755 index 1511ad794e..46e1ab6b98 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg old mode 100644 new mode 100755 index 264301b90d..0ddadc4d94 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg old mode 100644 new mode 100755 index 557aeff095..c4fd23106f --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg old mode 100644 new mode 100755 index ddb83e5028..103a165b64 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg old mode 100644 new mode 100755 index cc2a96a02d..34dc03f70f --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg old mode 100644 new mode 100755 index 8956d46aab..24a62e56a0 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg old mode 100644 new mode 100755 index e9689700e9..6a433e5d9a --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg old mode 100644 new mode 100755 index 547c257f25..10290a973f --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg old mode 100644 new mode 100755 index 69175a8a7b..9cd0c08f83 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg old mode 100644 new mode 100755 index ea0d4f8da6..dbd9676d6c --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg old mode 100644 new mode 100755 index c296b33d45..936889a218 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg old mode 100644 new mode 100755 index fb06a062e7..f599f946cf --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg old mode 100644 new mode 100755 index d421347baf..cdfedf1c9d --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg old mode 100644 new mode 100755 index 8f06acbd66..b77cf87ddc --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg old mode 100644 new mode 100755 index 49712b9a25..5a8bf5eaf6 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg old mode 100644 new mode 100755 index 4dd1447921..6220e5aa8b --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg old mode 100644 new mode 100755 index 724daf3055..2fc3240217 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg old mode 100644 new mode 100755 index 68a0ddea74..e0a03c9c9c --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg old mode 100644 new mode 100755 index 08cf9772af..3c73238099 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg old mode 100644 new mode 100755 index 02154266fd..1cae631ca8 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg old mode 100644 new mode 100755 index 7493f7b5d9..0f12ed5530 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg old mode 100644 new mode 100755 index 685701bfe7..eef841e29a --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg old mode 100644 new mode 100755 index 08e395e00f..4e304f480e --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg old mode 100644 new mode 100755 index bec9b9a82b..12a36226cf --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg old mode 100644 new mode 100755 index d788ead673..9f6fbe9f72 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg old mode 100644 new mode 100755 index 86e5da74f9..da2b9cf37a --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg old mode 100644 new mode 100755 index 3a6dbd758f..bf63f90f7b --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D060 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg old mode 100644 new mode 100755 index 5842885d5b..9f10b849b5 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg old mode 100644 new mode 100755 index c357fa2b4d..a121263db3 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg old mode 100644 new mode 100755 index 8249498432..3eb6b717ac --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_pla diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg old mode 100644 new mode 100755 index a8a96d2ab0..01c97bd882 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D060 material = generic_pla diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 52b0ebac0e..90f0e4f379 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index 56db6fbc31..eaf58ec8cc 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index f43ebf316c..7e3eaa7b0d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 632db06707..d302b9abe3 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index d18f42420d..febdeca4be 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index 2c6948432c..8010f14d67 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index 34681ca16a..de0fd45aa9 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index a6d634e713..c9459abde2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 33bbb02cb3..652081649b 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index 5d30e71e7b..70d01efa4a 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index 3d7ffc09af..0a2b16ffa9 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index 9801747822..aa086fb3f7 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 8945e848eb..442846d73e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index c78fa4a4f6..49c6b0126d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index ee7ab5e445..e75ddc531e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index 6b4d35d3e3..b5f5495d4c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index d37b582ee8..26cbb0403a 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index 7dfccefb81..a3d96133d0 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index 7f6d7a3582..c50dd6b7fa 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index b0c5cae576..9db3da9caa 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index a936e81c26..bde7f81350 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index 750e3db6b2..ba60349377 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D060 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index 8617c0e1df..1f0957fbd9 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index c0ba9ba981..0c9421a8d5 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 652cac903b..08de539d9d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 material = generic_pva diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index df98fcfeeb..f2516783fb 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D060 material = generic_pva diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg index 7db800023c..57ab0e78dc 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_tpu diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg index ef1e8d9eaa..b3c7c53cd7 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_tpu diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg index 12a40b5dcc..1c64c06d7c 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_tpu diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg old mode 100644 new mode 100755 index 97b9b9a207..3d58033a34 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 material = generic_tpu diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg old mode 100644 new mode 100755 index e12343c85a..faa02ccfee --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 material = generic_tpu diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg old mode 100644 new mode 100755 index 78d5350427..4a736832ff --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 material = generic_tpu diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg old mode 100644 new mode 100755 index 36cb1e40c6..563007b37f --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D005 weight = 1 diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg old mode 100644 new mode 100755 index 5c32030bf9..f6a345a2b5 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D010 weight = 0 diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg old mode 100644 new mode 100755 index 7898182d3b..0765dbdcd9 --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D015 weight = -1 diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg old mode 100644 new mode 100755 index 89488afdc1..9f39999647 --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D020 weight = -2 diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg old mode 100644 new mode 100755 index 1da66c564e..886787259a --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D030 weight = -3 diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg old mode 100644 new mode 100755 index 1e6e29c93b..9f83e06db8 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D045 weight = -4 diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg old mode 100644 new mode 100755 index df4b47bfeb..b934659fc0 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = deltacomb_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = D060 weight = -5 diff --git a/resources/quality/diy220/diy220_draft.inst.cfg b/resources/quality/diy220/diy220_draft.inst.cfg index 0d47709e30..4f76d5fb21 100644 --- a/resources/quality/diy220/diy220_draft.inst.cfg +++ b/resources/quality/diy220/diy220_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/diy220/diy220_fast.inst.cfg b/resources/quality/diy220/diy220_fast.inst.cfg index 2fe85474f7..5d5744ea3a 100644 --- a/resources/quality/diy220/diy220_fast.inst.cfg +++ b/resources/quality/diy220/diy220_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/diy220/diy220_high.inst.cfg b/resources/quality/diy220/diy220_high.inst.cfg index fd46f5275a..66b89a6130 100644 --- a/resources/quality/diy220/diy220_high.inst.cfg +++ b/resources/quality/diy220/diy220_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/diy220/diy220_normal.inst.cfg b/resources/quality/diy220/diy220_normal.inst.cfg index d19fdb6a7e..f1d2a6f621 100644 --- a/resources/quality/diy220/diy220_normal.inst.cfg +++ b/resources/quality/diy220/diy220_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/draft.inst.cfg b/resources/quality/draft.inst.cfg index dd0c0b7f79..40ecca8aea 100644 --- a/resources/quality/draft.inst.cfg +++ b/resources/quality/draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = fdmprinter [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg index dc723985d1..c40ba65456 100644 --- a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = eryone_er20 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,4 +15,4 @@ acceleration_print = 1500 layer_height = 0.3 layer_height_0 = 0.3 speed_print = 80 -speed_support = 60 \ No newline at end of file +speed_support = 60 diff --git a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg index b2f16f1496..2a11587e0c 100644 --- a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = eryone_er20 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -15,4 +15,4 @@ acceleration_print = 500 layer_height = 0.15 layer_height_0 = 0.2 speed_print = 50 -speed_support = 30 \ No newline at end of file +speed_support = 30 diff --git a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg index 03511cda4c..7ecb7307c9 100644 --- a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = eryone_er20 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,4 +15,4 @@ acceleration_print = 1000 layer_height = 0.2 layer_height_0 = 0.2 speed_print = 50 -speed_support = 30 \ No newline at end of file +speed_support = 30 diff --git a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg new file mode 100644 index 0000000000..4ebf2f56df --- /dev/null +++ b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg @@ -0,0 +1,29 @@ +[general] +version = 4 +name = Extra Fast +definition = eryone_thinker + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -3 +global_quality = True + +[values] +acceleration_print = 1500 +acceleration_travel = 3000 +infill_sparse_density = 10 +initial_layer_line_width_factor = 100.0 +layer_height = 0.3 +skirt_brim_speed = =math.ceil(speed_print * 40 / 50) +speed_print = 100.0 +speed_infill = =math.ceil(speed_print * 60 / 50) +speed_topbottom = =math.ceil(speed_print * 40 / 50) +speed_travel = =speed_print if magic_spiralize else 150 +speed_layer_0 = =math.ceil(speed_print * 40 / 50) +speed_wall_0 = =math.ceil(speed_print * 40 / 50) +speed_wall_x = =math.ceil(speed_print * 60 / 50) +top_layers = 4 +bottom_layers = 2 +wall_line_count = 2 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg index f7d701f771..0a173b8c56 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg @@ -4,28 +4,22 @@ name = Fast definition = eryone_thinker [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 global_quality = True [values] +acceleration_print = 1500 +acceleration_travel = 3000 infill_sparse_density = 15 -initial_layer_line_width_factor = 100.0 -layer_height = 0.3 -layer_height_0 = =layer_height -material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0 = =material_bed_temperature -material_final_print_temperature = =material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =max(-273.15, material_print_temperature + 5) +initial_layer_line_width_factor = 110.0 +layer_height = 0.25 speed_infill = =math.ceil(speed_print * 80 / 60) speed_topbottom = =math.ceil(speed_print * 40 / 60) speed_travel = =speed_print if magic_spiralize else 150 speed_wall_x = =math.ceil(speed_print * 80 / 60) -speed_z_hop = =math.ceil(speed_print * 30 / 60) -top_layers = 4 -bottom_layers = 2 -wall_line_count = 2 +top_layers = 5 +bottom_layers = 3 +wall_line_count = 2 \ No newline at end of file diff --git a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg new file mode 100644 index 0000000000..05c7760d98 --- /dev/null +++ b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Fine +definition = eryone_thinker + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 2 +global_quality = True + +[values] +alternate_extra_perimeter = true +infill_sparse_density = 30 +initial_layer_line_width_factor = 130.0 +layer_height = 0.1 +speed_print = 40.0 +speed_topbottom = =math.ceil(speed_print * 30 / 60) +speed_travel = =speed_print if magic_spiralize else 100 +top_layers = 12 +bottom_layers = 8 diff --git a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg index 057b9dcb53..c535a24198 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = eryone_thinker [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -13,18 +13,10 @@ global_quality = True [values] alternate_extra_perimeter = true infill_sparse_density = 25 -initial_layer_line_width_factor = 130.0 -layer_height = 0.1 -layer_height_0 = =layer_height -material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0 = =material_bed_temperature -material_final_print_temperature = =material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =max(-273.15, material_print_temperature + 5) +initial_layer_line_width_factor = 125.0 +layer_height = 0.15 speed_print = 50.0 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_travel = =speed_print if magic_spiralize else 100 -speed_z_hop = =math.ceil(speed_print * 30 / 60) -top_layers = 12 -bottom_layers = 8 +top_layers = 8 +bottom_layers = 6 diff --git a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg index 667d72fe09..cc12b5cb79 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg @@ -4,25 +4,10 @@ name = Normal definition = eryone_thinker [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 global_quality = True [values] -infill_sparse_density = 20 -initial_layer_line_width_factor = 120.0 -layer_height = 0.2 -layer_height_0 = =layer_height -material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0 = =material_bed_temperature -material_final_print_temperature = =material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =max(-273.15, material_print_temperature + 5) -speed_travel = =speed_print if magic_spiralize else 120 -speed_z_hop = =math.ceil(speed_print * 30 / 60) -top_layers = 6 -bottom_layers = 4 - diff --git a/resources/quality/extra_coarse.inst.cfg b/resources/quality/extra_coarse.inst.cfg index 707e093a79..ea9ee5c09b 100644 --- a/resources/quality/extra_coarse.inst.cfg +++ b/resources/quality/extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse definition = fdmprinter [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -4 diff --git a/resources/quality/extra_fast.inst.cfg b/resources/quality/extra_fast.inst.cfg index c1a4bdb99f..6519e48d59 100644 --- a/resources/quality/extra_fast.inst.cfg +++ b/resources/quality/extra_fast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = fdmprinter [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg index 4b128f38c9..cacf4018ed 100644 --- a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg @@ -4,7 +4,7 @@ definition = fabtotum name = Fast Quality [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg index d077d1dce5..87a731663d 100644 --- a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg @@ -4,7 +4,7 @@ definition = fabtotum name = High Quality [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg index e0e74fd20b..decd3b2420 100644 --- a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg @@ -4,7 +4,7 @@ definition = fabtotum name = Normal Quality [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg index c63cb12fae..e844a14a10 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast Quality definition = fabtotum [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg index 741b89c3b1..17c5d44c90 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fabtotum [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg index 9aec9cffc9..13023fd7d5 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = fabtotum [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg index 729ced50d8..3d404588b2 100644 --- a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg @@ -4,7 +4,7 @@ definition = fabtotum name = Fast Quality [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg index 7c2063b00b..777473ced7 100644 --- a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg @@ -4,7 +4,7 @@ definition = fabtotum name = High Quality [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg index cae04df9bc..9699fc6ae5 100644 --- a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg @@ -4,7 +4,7 @@ definition = fabtotum name = Normal Quality [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg index 7a51800f6d..48de22eb91 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg @@ -5,7 +5,7 @@ name = Fast Quality [metadata] type = quality -setting_version = 17 +setting_version = 19 material = generic_tpu variant = Lite 0.4 mm quality_type = fast diff --git a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg index f97f5e6b46..7034f9ddc3 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg @@ -5,7 +5,7 @@ name = High Quality [metadata] type = quality -setting_version = 17 +setting_version = 19 material = generic_tpu variant = Lite 0.4 mm quality_type = high diff --git a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg index d0452e976b..74968edb40 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg @@ -5,7 +5,7 @@ name = Normal Quality [metadata] type = quality -setting_version = 17 +setting_version = 19 material = generic_tpu variant = Lite 0.4 mm quality_type = normal diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg index 45dc4483f7..55f3c59395 100644 --- a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Draft weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg index 9a667ca15b..a73f95d727 100644 --- a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Fine weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg index dc21dba3ed..0c8a63e4bc 100644 --- a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Normal weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg index 0a6d6d99c1..1e13514154 100644 --- a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Draft weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg index c7bd7b195b..662c8b8e3f 100644 --- a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Fine weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg index 8a66d3d42c..955718dbf7 100644 --- a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Normal weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg index 290b53d83d..ce2a53097a 100644 --- a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Draft weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg index e6bf7d10d9..72c7515b54 100644 --- a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Fine weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg index 59c6c39d27..6f86ae57f9 100644 --- a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Normal weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg index 02ad9ec107..0573efe469 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Draft weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg index f2bf72476d..9fb5e0a04e 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Fine weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg index 4234d65cf5..6bc32d32d9 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Normal weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg index 5989b5024d..78e617ebe8 100644 --- a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Draft weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg index 1323cde1af..8dcc6d1a53 100644 --- a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Fine weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg index 10199791be..bfd1d420b8 100644 --- a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Normal weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg index eea1058019..94dbc82eb9 100644 --- a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Draft weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg index 5a7a3a3355..9880d1b27e 100644 --- a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Fine weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg index 0f86e9c5af..e2424743f4 100644 --- a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Normal weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg index 11f3aa9d41..98474c3469 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Draft weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg index 6cd786e157..37d12b73ed 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Fine weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg index 719188f4ce..46d6f82f6f 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = fabxpro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Normal weight = -2 diff --git a/resources/quality/fast.inst.cfg b/resources/quality/fast.inst.cfg index 0e653919c6..47e064cc6b 100644 --- a/resources/quality/fast.inst.cfg +++ b/resources/quality/fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = fdmprinter [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg index a836c9f003..b8c35c6fcd 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg index ddfe4943f2..17146efd9c 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg index 67bb56d7b1..f7eff028ba 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg index 5d1c271b8f..ed9c7cc6f6 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg index 144ae0904f..19e8cf9fa6 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg index 7b81a98b4e..277b14eac5 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg index db1dfadc1c..79569c07aa 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg index 7cef7d8ffd..b8ce6cc0cf 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg index e5e707380b..9b4f969d55 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg index 7b69dd796a..ca871129bf 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg index 1a7fd56480..0af864f7be 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg index ae53c309d0..5f0c892910 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg index 7a1ecf7af3..fc5b6a8bc0 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg index b38a8e428d..85fe4f21f6 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg index ef0e01d485..fe299dcedf 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg index 25466d2346..4b5bb1b96f 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg index 89d0dd380a..cf89c1bedf 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg index a84a25fc27..da1f4b0e3a 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Xcoarse material = generic_abs diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg index 06b291c8e1..ccb0ff8ea2 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg index 29822906ab..afc66c126a 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg index 391af5cb78..7728c5f7ed 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg index 7b6fe5ac08..19f8d7b9cf 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg index 9b84b13324..47310fa9b7 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -3 diff --git a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg index 3e53aa4d29..cb13a46ea3 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg index 2ad0be4952..ea132aa37e 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg index cca63f96fe..76fefe5c4d 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -6 diff --git a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg index b20031490c..37ebb0a49d 100644 --- a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Xcoarse weight = -7 diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg index 65dc98bb03..5cf7728e15 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg index 2df9b6653d..8be68fb818 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg index 3d4cd6a339..c75c870c5d 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg index 7eedbc8fd0..87f4c0a8fb 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg index 8d54a72014..543c1d973c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg index 9e715ffb17..0f3f6b009c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg index 0bc15b0d88..8aaf6db245 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg index e96afdbf30..c63758cc86 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg index c163de0011..71da98e818 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg index 0e260e6cf5..c6263b849d 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg index 0d7b5eee85..877be1f910 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg index f40bd3f8ff..93402e7f36 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg index 36aa939184..2ff5d972fb 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg index e23b870f91..ec9385ccfd 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg index dbc4682f66..2e99dd2fa3 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg index c53fe8e0eb..f589fa6093 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg index 44c12dd620..ea82e23e2c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Xcoarse material = generic_petg diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg index 7adb943d01..e5b1a168fc 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg index 342083a41d..06a7769e5b 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg index eee88b2723..78112ec6d2 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg index 86affaba79..ef80c2a6b0 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg index 88c4035d4f..3a795b3712 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg index c1ba75374f..c20e388ad6 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg index 0eec95632e..13ed615dd7 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg index b2891ac29b..4e95c58cbe 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg index 360a2d4644..33f4757b32 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg index 6a584295a4..63acf5a666 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg index 41b319984d..935e64975e 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg index 141e65d3d4..1b07ac35f2 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg index bd06117355..3d314af586 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg index f5f46af9cd..4e21c54dd7 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg index b56a5967db..379c089bd1 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg index efdfe415ef..26f81584b0 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg index 35821de108..6a76b4056d 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg index 5c52cf96ff..eab60c4577 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Xcoarse material = generic_pla diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg index b3e22f4c28..e0e3d253d5 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg index e8b39c5b55..f1d71974c1 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg index 3e7451fefa..d1a7b80ac1 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg index 8a0c380410..7877aa5e67 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg index e0155ce764..c4ca2f4336 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg index 555ec028aa..c6f469fe0d 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg index b3584ae420..cbe4e40b6a 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg index cf1bc8eddd..f34a3b8f5c 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg index 98992a13d8..e86b941497 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg index a2c587cd73..a600e034bb 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg index 517430a1af..ddf4252c75 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg index 057992d8f0..4062279adc 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_tpu diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg index 5af1e45b18..41090f12e2 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg new file mode 100644 index 0000000000..1e460ba4ae --- /dev/null +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -0,0 +1,82 @@ +[general] +version = 4 +name = Fine +definition = flsun_sr + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 1 +global_quality = True + +[values] +layer_height = 0.12 +layer_height_0 = 0.2 +retraction_combing = noskin +retraction_combing_max_distance = 10 +speed_slowdown_layers = 5 +travel_retract_before_outer_wall = False +adhesion_type = skirt +skirt_line_count = 2 +brim_width = 4.0 +cool_fan_speed = 100 +cool_lift_head = False +cool_min_layer_time = 4 +infill_before_walls = False +infill_enable_travel_optimization = False +infill_support_angle = 50 +ironing_enabled = False +max_skin_angle_for_expansion = 20 +retract_at_layer_change = False +retraction_amount = 6.5 +retraction_hop_only_when_collides = True +skin_no_small_gaps_heuristic = True +skin_overlap = 10 +small_hole_max_size = 5 +speed_support = 80 +support_enable = True +support_type = everywhere +support_wall_count = 1 +support_angle = 60 +support_brim_enable = True +support_brim_width = 4.0 +support_interface_density = 60 +support_interface_enable = True +support_interface_height = 0.96 +support_interface_pattern = grid +support_interface_skip_height = 0.12 +support_roof_density = 60 +support_xy_distance = 0.5 +support_z_distance = 0.2 +top_bottom_thickness = =layer_height*7 +travel_avoid_other_parts = True +travel_avoid_supports = True +acceleration_enabled = False +jerk_enabled = False +infill_pattern = grid +ironing_only_highest_layer = True +jerk_travel = 25 +jerk_travel_layer_0 = 20 +jerk_wall_0 = 10 +material_flow_dependent_temperature = False +material_initial_print_temperature = 210 +material_final_print_temperature = 210 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_bed_temperature_layer_0 = 60 +optimize_wall_printing_order = True +retraction_hop = 0.3 +retraction_hop_enabled = True +retraction_speed = 40 +small_feature_speed_factor = 60 +speed_infill = 100 +speed_layer_0 = 25 +speed_print = 80 +speed_topbottom = 50 +speed_travel = 120 +speed_travel_layer_0 = 40 +speed_z_hop = 50 +wall_thickness = =line_width*3 +z_seam_corner = z_seam_corner_inner +z_seam_type = sharpest_corner \ No newline at end of file diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg new file mode 100644 index 0000000000..826a2524bb --- /dev/null +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -0,0 +1,82 @@ +[general] +version = 4 +name = Normal +definition = flsun_sr + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -2 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +retraction_combing = noskin +retraction_combing_max_distance = 10 +speed_slowdown_layers = 5 +travel_retract_before_outer_wall = False +adhesion_type = skirt +skirt_line_count = 2 +brim_width = 4.0 +cool_fan_speed = 100 +cool_lift_head = False +cool_min_layer_time = 4 +infill_before_walls = False +infill_enable_travel_optimization = False +infill_support_angle = 50 +ironing_enabled = False +max_skin_angle_for_expansion = 20 +retract_at_layer_change = False +retraction_amount = 6.5 +retraction_hop_only_when_collides = True +skin_no_small_gaps_heuristic = True +skin_overlap = 10 +small_hole_max_size = 5 +speed_support = 80 +support_enable = True +support_type = everywhere +support_wall_count = 1 +support_angle = 60 +support_brim_enable = True +support_brim_width = 4.0 +support_interface_density = 60 +support_interface_enable = True +support_interface_height = 0.6 +support_interface_pattern = grid +support_interface_skip_height = 0.2 +support_roof_density = 60 +support_xy_distance = 0.5 +support_z_distance = 0.2 +top_bottom_thickness = =layer_height*5 +travel_avoid_other_parts = True +travel_avoid_supports = True +acceleration_enabled = False +jerk_enabled = False +infill_pattern = grid +ironing_only_highest_layer = True +jerk_travel = 25 +jerk_travel_layer_0 = 20 +jerk_wall_0 = 10 +material_flow_dependent_temperature = False +material_initial_print_temperature = 220 +material_final_print_temperature = 220 +material_print_temperature = 220 +material_print_temperature_layer_0 = 220 +material_bed_temperature_layer_0 = 60 +optimize_wall_printing_order = True +retraction_hop = 0.3 +retraction_hop_enabled = True +retraction_speed = 40 +small_feature_speed_factor = 60 +speed_infill = 150 +speed_layer_0 = 25 +speed_print = 150 +speed_topbottom = 70 +speed_travel = 180 +speed_travel_layer_0 = 50 +speed_z_hop = 50 +wall_thickness = =line_width*3 +z_seam_corner = z_seam_corner_inner +z_seam_type = sharpest_corner \ No newline at end of file diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg index 3709cf3bb7..7c2e1b6811 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg index fbfe469428..ec9268a95d 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg index 30d590e1ad..b022ffbe9e 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg index 936e870cd9..68f34a11fc 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg index 65b04bcb71..fd22f6f339 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg index 57fed4247f..49c6dc7361 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg index c3b8418695..43464923e2 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg index 1e46db043a..062ef2c918 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg index c1221ff051..bb11e6d6e5 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg index 7c4ca634d7..3a3d916244 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg index 47b0577d95..7c5c72f1df 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg index 4a457934b1..bca2dd9b64 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg index 800376b70f..944dd71e5a 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg index f1a3f0daad..b604bc00f8 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg index 3c65bf635f..65c45e6a44 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg index 83c9959a20..0e182cc7d9 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg index 1757c397fa..0fb7176131 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_abs diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg index 24af305655..2539737342 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg index 437a5cd426..8bbfb59b86 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg index 931eb692af..1cc356fa69 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg index eef4c5aecb..9b89a714c2 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg index f097f467c0..215457396d 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -3 diff --git a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg index 417651d774..b30afaf8f3 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg index 68b9ee5bec..abade332e4 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg index e46deb7a33..a2c1163a2a 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -6 diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg index 2cf59924f1..5a002bce0c 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg index 9f1f346986..15573017c5 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg index 6d5514a975..1439544a08 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg index 2035ab42be..f93a69e6e3 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg index 1dd5710176..fab4f14e8d 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg index 2c1a93902f..f5c2a192ac 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg index e5288aac86..8785c13af0 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg index a89963cf0b..d2fa12f14f 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg index eca4c840ec..95a954257d 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg index da6ad81293..ac525c1c63 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg index de1ed7aec4..9a54284591 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg index 2d29a1416a..dae7be291c 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg index eef75606bd..220734a986 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg index 4eab5921e9..4e84d284d7 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg index aef96881aa..2cf31cc1c9 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg index 4433d84b81..21c3a72614 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg index a6769c1195..19ad8c9f2b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_hips diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg index 64b24cc418..2e8890fd3d 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_hips diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg index 6731166931..a7b7c31601 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg index 6a14d5101e..c230a82f2a 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg index 6722b360cb..8a5618920d 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg index f9f861272c..6b364e6d8e 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg index 6ce94fcc68..12198cbeda 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg index e3c454d1c6..0e522f9fe6 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg index ff42919ade..f0abc14848 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg index 133da1b65a..c019508635 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg index 449547dae6..c7d3b271f3 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg index b0a9548ebe..c73e351c13 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg index ba274780cc..83672bb0aa 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg index a2c5069b7f..bb26238686 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg index 7e840fd56d..28db43de29 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg index 5ff1a83548..cf44705ba5 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg index 1131634c17..9243fa9919 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg index 8ba87ef9cd..dfcd7e31f8 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg index ab164285fe..529bb5e1c5 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_petg diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg index c7a70242fe..5d00b5da52 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg index 6a584cb6ea..17d501213f 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg index f738524baf..884c244bea 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg index bbf182d774..0a7b951e13 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg index da9afe8add..2226a29e85 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg index 2daf08080d..8ecad3f5e6 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg index 66d5c8d778..0c3bc3d0e9 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg index 233c774058..755ffef0c0 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg index 2b8e97a8bb..2c49b95dcb 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg index c181b48509..c15c95bed6 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg index 60edc2f583..994b58406b 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg index 75f1b8cc9d..ac0125746e 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg index a14cefa6af..17bb05b818 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg index 1addea3aca..64d6effa9d 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg index a3ae82072c..89caf91f00 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg index 89f538e4c2..0d9bfb5af7 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg index 1825ffb259..2b309f24d1 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg index 28a435868e..4a763cc8b8 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_pla diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg index c41241e213..ec976b990a 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg index 9c10206210..61ea0fb879 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg index c612089c4a..1158473d32 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg index 83ddf905d1..19ad0ba494 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg index 27b04e47c5..7c0e773b0d 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg index 0aca7549bb..36afd2f1b5 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg index ebd08ab547..ac2ee6b7be 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg index ab8eba3de4..72a863e7b2 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg index 167faf573d..0b4a159b96 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg index ee77455488..20a8a20d4f 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg index 99ac15affa..3869217724 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg index 21e7af117a..c33eb2b405 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg index 39797ae963..a281aac7d3 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg index e4ae3eded8..4d2ec1d7cd 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg index 4edd758630..1a3d629cb1 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg index 435ac7c14b..37fc906f80 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg index 07556ca30f..629ea3e0c8 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg index d276f644d5..790e3ac730 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg index c4826fa547..87828f6f3a 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = eSUN_PLA_PRO_Black diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg index a75a11e794..36de73aedd 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg index cc6595044b..df6dab029d 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg index bf7a0726af..884710a36e 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg index 3291fc4192..d35d00b9cf 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg index db080a7758..54b23ead0a 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg index d996c0779a..8925ceb299 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg index aae583c753..90c1adfcd7 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg index a5daba7226..43578ca11d 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg index d4c9194418..7745054e4b 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg index 6cec4fb781..e5d593bfc6 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg index b9346e0f40..4208cc7147 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg index 5703fe2182..a7b7c995e3 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse material = generic_tpu diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg index c90dffdda7..b4e553a52e 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg index d35473bd73..b8bdf9614c 100644 --- a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/fusedform/base/base_PVA_high.inst.cfg b/resources/quality/fusedform/base/base_PVA_high.inst.cfg index d7857d6741..c605905af3 100644 --- a/resources/quality/fusedform/base/base_PVA_high.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg index 97a1a8783a..27bf096449 100644 --- a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_draft.inst.cfg b/resources/quality/fusedform/base/base_abs_draft.inst.cfg index 20027361f1..4f3a32700a 100644 --- a/resources/quality/fusedform/base/base_abs_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/fusedform/base/base_abs_high.inst.cfg b/resources/quality/fusedform/base/base_abs_high.inst.cfg index 535bfbfe68..6d6b5df653 100644 --- a/resources/quality/fusedform/base/base_abs_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/fusedform/base/base_abs_normal.inst.cfg b/resources/quality/fusedform/base/base_abs_normal.inst.cfg index 23d4588297..32ec4b99a7 100644 --- a/resources/quality/fusedform/base/base_abs_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg index 639094b47d..805fec9bd7 100644 --- a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg @@ -4,7 +4,7 @@ name = Ultra High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type =ultra high weight = -1 diff --git a/resources/quality/fusedform/base/base_draft.inst.cfg b/resources/quality/fusedform/base/base_draft.inst.cfg index b6e8ccacfb..2ddc80c34e 100644 --- a/resources/quality/fusedform/base/base_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -4 diff --git a/resources/quality/fusedform/base/base_flex_high.inst.cfg b/resources/quality/fusedform/base/base_flex_high.inst.cfg index f12686a620..9b4499a7b2 100644 --- a/resources/quality/fusedform/base/base_flex_high.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/fusedform/base/base_flex_normal.inst.cfg b/resources/quality/fusedform/base/base_flex_normal.inst.cfg index 3459cae147..5e62bb369c 100644 --- a/resources/quality/fusedform/base/base_flex_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -2 diff --git a/resources/quality/fusedform/base/base_high.inst.cfg b/resources/quality/fusedform/base/base_high.inst.cfg index 5c886a078b..f707611dff 100644 --- a/resources/quality/fusedform/base/base_high.inst.cfg +++ b/resources/quality/fusedform/base/base_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_draft.inst.cfg b/resources/quality/fusedform/base/base_hips_draft.inst.cfg index e0b7fe9022..488778047c 100644 --- a/resources/quality/fusedform/base/base_hips_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_hips diff --git a/resources/quality/fusedform/base/base_hips_high.inst.cfg b/resources/quality/fusedform/base/base_hips_high.inst.cfg index 41ccc5276e..f70b7b0c2b 100644 --- a/resources/quality/fusedform/base/base_hips_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_normal.inst.cfg b/resources/quality/fusedform/base/base_hips_normal.inst.cfg index 921c5999d0..5af563e979 100644 --- a/resources/quality/fusedform/base/base_hips_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -2 diff --git a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg index 3372e01dfd..582fbdf916 100644 --- a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg @@ -4,7 +4,7 @@ name = Ultra High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type =ultra high weight = -1 diff --git a/resources/quality/fusedform/base/base_normal.inst.cfg b/resources/quality/fusedform/base/base_normal.inst.cfg index 6b431e22f3..6600103fef 100644 --- a/resources/quality/fusedform/base/base_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg index f7d794ff84..a2a9ca1a2a 100644 --- a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_nylon diff --git a/resources/quality/fusedform/base/base_nylon_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_high.inst.cfg index 455f83b2a9..312e566ae3 100644 --- a/resources/quality/fusedform/base/base_nylon_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg index 40ace81308..9d4cc58e11 100644 --- a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg index 16492cd812..0427be043e 100644 --- a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg @@ -4,7 +4,7 @@ name = Ultra High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type =ultra high weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_high.inst.cfg b/resources/quality/fusedform/base/base_petg_high.inst.cfg index dc74ae7622..8423df164f 100644 --- a/resources/quality/fusedform/base/base_petg_high.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_normal.inst.cfg b/resources/quality/fusedform/base/base_petg_normal.inst.cfg index fbee281cbd..9dd3ea7d93 100644 --- a/resources/quality/fusedform/base/base_petg_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_draft.inst.cfg b/resources/quality/fusedform/base/base_pla_draft.inst.cfg index a3f464203f..e2b4f06079 100644 --- a/resources/quality/fusedform/base/base_pla_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -4 diff --git a/resources/quality/fusedform/base/base_pla_high.inst.cfg b/resources/quality/fusedform/base/base_pla_high.inst.cfg index a92c9a9175..bfdfe33007 100644 --- a/resources/quality/fusedform/base/base_pla_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/fusedform/base/base_pla_normal.inst.cfg b/resources/quality/fusedform/base/base_pla_normal.inst.cfg index af4a1ff10b..3f3f16517b 100644 --- a/resources/quality/fusedform/base/base_pla_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg index d3559e399d..de3bf61b0a 100644 --- a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg @@ -4,7 +4,7 @@ name =Ultra High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type =ultra high weight = -2 diff --git a/resources/quality/fusedform/base/base_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_ultra_high.inst.cfg index 3b480fa5ee..32ba517dba 100644 --- a/resources/quality/fusedform/base/base_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_ultra_high.inst.cfg @@ -4,7 +4,7 @@ name = Ultra High Quality definition = fusedform_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type =ultra high weight = -1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index 340046f66c..ece567995a 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -4,7 +4,7 @@ name = gMax 1.5+ Dual Normal Layers definition = gmax15plus_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index c794fd627e..615963215c 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -4,7 +4,7 @@ name = gMax 1.5+ Dual Thick Layers definition = gmax15plus_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = course weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index c3068d4e84..ffe0078e06 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -4,7 +4,7 @@ name = gMax 1.5+ Dual Thin Layers definition = gmax15plus_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index a59d26131a..d8c63b4c69 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -4,7 +4,7 @@ name = gMax 1.5+ Dual Very Thick Layers definition = gmax15plus_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra_course weight = -3 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index 786206b92a..9c0a5a4783 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -4,7 +4,7 @@ name = gMax 1.5+ Normal Layers definition = gmax15plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index 989e109484..c9dc271e0f 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -4,7 +4,7 @@ name = gMax 1.5+ Thick Layers definition = gmax15plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = course weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index 1e1ad041c3..816aaf964c 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -4,7 +4,7 @@ name = gMax 1.5+ Thin Layers definition = gmax15plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index ca7b68ac53..85b45b4b73 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -4,7 +4,7 @@ name = gMax 1.5+ Very Thick Layers definition = gmax15plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra_course weight = -3 diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg index db98493872..faa3e26d5a 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_abs diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg index 4dd35ea705..890c9f87ff 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_abs diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg index 66c043cc26..9eae035620 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_abs diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg index 8e608e2751..1bf6ddeb58 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_abs diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg index 0722e16b24..fa16d62033 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_asa diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg index f358aa16a5..e684abc731 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_asa diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg index 10019fa830..83d9e839c6 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_asa diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg index 60855f3f72..67dffd0a73 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_asa diff --git a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg index b5cfa2afe8..9cd3a18981 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = -1 diff --git a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg index 0055d3f330..0b5934f54e 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine weight = 0 diff --git a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg index dd2984d73c..ab7d826169 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -3 diff --git a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg index 4ee3ffbb3e..e5f9b98761 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg index 2b9312b121..0841848203 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = -1 diff --git a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg index 5b9d88244d..1f8bed3237 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine weight = 0 diff --git a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg index 6a30280f67..e5d32357d0 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -3 diff --git a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg index e3396f5920..61a2450ff7 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg index fc4ddff5c8..4f1c75182c 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = -1 diff --git a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg index f4a5197592..7b87104e73 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine weight = 0 diff --git a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg index fd048b7fdd..f81924af64 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -3 diff --git a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg index cb924b3928..9c43bcef0a 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg index 609b2e6af0..8653ee326b 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = -1 diff --git a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg index 1ab043152a..f27264e38b 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine weight = 0 diff --git a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg index b775e41fb9..7fcdac2ae8 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -3 diff --git a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg index d4bc9c853c..0cfe1d49e9 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg index 8dd4354efa..90a8efdcbc 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg index f9d991474e..8ce9a72624 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg index fe520d21f4..1e2615124a 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg index 3a6ce34d5f..df3e20870a 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg index 9e94323af2..80eaecbe1c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg index d4fcbd1ffd..0781bcd843 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg index 2711715ce4..21186fbcb1 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg index df9333e1d6..150bd22322 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg index bc41abe93e..e51c294698 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg index 7e8ca63eab..bba1324df4 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg index 8ec0097c41..0c441ab4bb 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_hips diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg index 502f946b48..f655ad67dd 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_hips diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg index 7d427d320f..1397b95ecb 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pa diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg index b62da28e07..04be79c0f5 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pa diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg index d6390b5d47..e6d1854fa4 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pa diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg index 33f01f7900..34e9a093c4 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pa diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg index 6fe366078a..0740ee1500 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pa_cf diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg index a8fda496a8..d705d0c9e2 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pa_cf diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg index 8bdf264189..bdb817d022 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pa_cf diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg index 82822f7552..bc50e0f878 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pa_cf diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg index 449249bd1d..caf9b56836 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pc diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg index 092500ebe7..4d5c72aaff 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pc diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg index 065568128b..77210fd479 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pc diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg index 0d5eb04819..178c2dea37 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pc diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg index dbba2c8da9..ab44fa5f9f 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pc diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg index 85582e1dbc..d1b868a1de 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pc diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg index 1d0d0e277a..9312a1a8d8 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pc diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg index 276b8b8dac..a351f5a048 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pc diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg index 9fbab16a7b..4478c63159 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_peek diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg index e492269551..797333e01b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_peek diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg index f57615f286..34c86f4357 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_peek diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg index f4722919e0..fe69f520bb 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_peek diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg index 3d5e773c47..262955022b 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_peek diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg index d88e76a0e4..7f1b4654a1 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_peek diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg index c797b8e8a1..68ce1a9b4a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_peek diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg index b963833997..1d7f62800a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_peek diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg index b3f5957fd3..525490aa59 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_petg diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg index 2e2477a8b0..710199294e 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_petg diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg index 3a1afe0da8..0199c1d81d 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_petg diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg index dfc3242624..d7ee652643 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_petg diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg index c90206a6bf..94358f1a27 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_petg diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg index ef8aca3bcc..b723d2d61c 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_petg diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg index 3f10db1e3b..c5a958b125 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_petg diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg index 2e32f555f7..f005d2bad8 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_petg diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg index 4c14da8745..73b51ab5ff 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg index 0f6d81fbe8..4425e54d7d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg index 0bfc6d2819..a34545b01e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg index 08daac76c9..3f5e9159b2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg index bec333ff61..58495a2a2b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_bronze_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg index 2dcb5005a8..b731a77136 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_bronze_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg index 8c02d54220..a55d6a7f96 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_bronze_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg index de1c7e4370..10dd8ff034 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_bronze_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg index cefc9daff7..22031664b5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg index 4943789a1b..057dd7ab34 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg index 789b01f664..b4d87e9364 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg index e09c2c21e5..15cd9e5e7a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg index 74e6028b99..38632d99c6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg index c5568f6b31..c0f3418e79 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg index 9ba19e5450..6cb98d5b9c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg index 62e89c7d9f..9117775881 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg index 3be7cca700..66c9142ecf 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg index 30ebb39fe1..a89a78d076 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg index 632183e93b..99184c56e2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg index 44d5f75516..4487faadc9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg index 8ffd6be2e5..6a8a175cf7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg index f167eedae4..9540879e78 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg index 977d3d710c..53166d7a1e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg index 6c0c253942..64ac842295 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg index dab701a87d..f000584e7f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_bronze_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg index ce26c1077e..318bb6065b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_bronze_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg index f6ba35e5e0..82c0fd09cd 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_bronze_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg index 8ef8bc753d..cd5165d2c6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_bronze_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg index ac3191b711..8ab4f4ad55 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg index fd8b3cf81b..c756bd1b9a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg index 671ea1db9d..93b61849fd 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg index f1677653cf..9b4435a05e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg index a719640114..78ebc8d2b5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg index fc71303ce1..fd308fa086 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg index e92bcff3b2..6e7c0d6a07 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg index 5666f3abea..7a143f3125 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg index 61c824e3f5..17174565a7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg index d1beccaf4c..e0fa90861a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg index 42a4c8b9be..955341ce11 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg index a6a49094cf..a911f4aada 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg index 6bbddd28a8..aef5cc9cf4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg index ca9144388e..2d7f5740a8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg index e2db78058a..7fe7e3d2dc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg index ffade74aaa..95855ea283 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg index dd2377e171..3f7f8c804c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg index 1b50f1fff1..fadd2f6741 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg index 16def63088..f1b2e414c2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg index 88ebb60b5d..a52db1a644 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg index 569203d3a9..107194df51 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg index e1b02e7a5b..a2470b0533 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg index f199f3a27d..d9bb81ae6b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg index ac2ce648a6..c2cf11a08a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg index a8f9e3b277..0960c1666a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg index 4b8c022cfd..353b8428f8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg index 9260779304..3d227823e7 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg index 6067154670..f017015daf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg index fe3e712095..57e6c505f7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg index 0b4cc8c33d..a7f56a7c01 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg index a2ef9571d1..61c0d5265b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg index e5ae17b358..3836dcf00e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg new file mode 100644 index 0000000000..3c2551e5a7 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_small + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +material = goofoo_pla +variant = 0.7mm Nozzle + +[values] +retraction_amount = 6 +infill_pattern = cubic +top_bottom_thickness = 1.6 +wall_thickness = 1.4 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg index 43436b1fe2..d8cd083710 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg index ad61ac4516..9d2a271852 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg index 982a051025..cf29a5db79 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg index e1947d3b2c..46f191e7ff 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_emarble_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg index e89f7ef398..33f1a0e458 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg index 3986432256..2e92dcbf68 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg index 6bc74a4fd9..bd8c6a6e93 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg index 5546fc6c04..c43d3c94c2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_esilk_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg index 9983ca25e0..322c2a8941 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg index 72e9b1aed2..a5745fd0b0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg index 5c4bbbd840..effc394e91 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg index 6c5bce0bf0..d12851dba1 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_small [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_wood_pla diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg index 52b57f65b9..cf84c88014 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg index 8958e9c4a2..2267a90cfe 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg index dae9ff6d40..ee3aaa1c5b 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg index c8a6ab287e..2da012264d 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg index 7bbe273435..a05337899c 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg index 4af057c98c..904abd63f0 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg index 0d42f6fece..1bb269a4ec 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg index c6a5522e78..d7e8168516 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg index 20d31c5d3a..e5feee283d 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg index 0a5e9ad056..ac336f5052 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg index f1bb2a1fd0..55541f0f58 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_pva diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg index 36026762ee..dcf2590cbb 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_open [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_pva diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg index 920e0372d7..29adbdf9a9 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_tpe_83a diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg index b8d2d3f7ea..dea4ba0e8f 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_tpe_83a diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg index 176bc7f0c7..2cc3e4b56b 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_tpe_83a diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg index 4fc798296f..6db8b6c7fb 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_tpe_83a diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg index 03c646dd37..5b8a77323f 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_tpe_83a diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg index 28351b1e2c..cfcff9208b 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_tpe_83a diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg index 49c4e26db3..dc159f67a9 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_tpe_83a diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg index c4f839ee74..fbc7c2e58b 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_tpe_83a diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg index 23db02803a..711e6ade5b 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_tpu_87a diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg index 4fb6d626b3..492f22ec5b 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_tpu_87a diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg index a367b8f81c..635d1a43cb 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_tpu_87a diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg index d7aa4d5fec..e107a2620e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_tpu_95a diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg index 7e95cdb13b..001d804fc7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_tpu_95a diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg index 5886ce5721..84628d75e9 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_tpu_95a diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg index 5643a9459a..668d3dd551 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_far [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_tpu_95a diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg index 7d1e632e0c..2a1db14b7d 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_tpu_87a diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg index 5de2f6f438..9eb8f9e3eb 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_tpu_87a diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg index 1343ea9172..bb3ea4c8f3 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_tpu_87a diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg index b6e6bcb6b2..96729ba848 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = goofoo_tpu_95a diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg index 4f8bfbfc22..49b9b4e026 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = efine material = goofoo_tpu_95a diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg index 1149e159b8..af0af37bb6 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = goofoo_tpu_95a diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg index 23c9cba6ef..3fca6e093c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = goofoo_near [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = goofoo_tpu_95a diff --git a/resources/quality/high.inst.cfg b/resources/quality/high.inst.cfg index 1392702c36..5c3c63aedc 100644 --- a/resources/quality/high.inst.cfg +++ b/resources/quality/high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = fdmprinter [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg index 5863653de3..fe06d9af05 100644 --- a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = hms434 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg index 8c846ebaab..c4ab6f85f0 100644 --- a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = hms434 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg index e04e341537..9e1e410426 100644 --- a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = hms434 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg index 61f407cec8..88604f3f02 100644 --- a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg +++ b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = hms434 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg index 72b199af1e..79cda10634 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg index 68926324c7..e7b991812f 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg index 5ff2ea6450..c07f2a5bf1 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg index 256fd4134e..56d0867927 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg index 3bc0a50583..909f5e3cfa 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg index 1000d2ff09..cfb25305ca 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg index 5d20dac337..91a28ddadb 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg @@ -4,7 +4,7 @@ name = UltraFine definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrahigh weight = 2 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index 4ecf1dadb5..04289b14d8 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -63,8 +63,6 @@ support_use_towers = False support_xy_distance = 0.8 support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 -travel_compensate_overlapping_walls_0_enabled = =travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_x_enabled = =travel_compensate_overlapping_walls_enabled travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) bridge_settings_enabled = True diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index 5acfd2a019..14e43fe04e 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -63,8 +63,6 @@ support_use_towers = False support_xy_distance = 0.8 support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 -travel_compensate_overlapping_walls_0_enabled = =travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_x_enabled = =travel_compensate_overlapping_walls_enabled travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) bridge_settings_enabled = True diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index 96c271b0e3..baa67ddeb2 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -63,8 +63,6 @@ support_use_towers = False support_xy_distance = 0.8 support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 -travel_compensate_overlapping_walls_0_enabled = =travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_x_enabled = =travel_compensate_overlapping_walls_enabled travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) bridge_settings_enabled = True diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index 79370a650e..cf26ceb2f4 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -4,7 +4,7 @@ name = UltraFine definition = imade3d_jellybox [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrahigh weight = 2 @@ -63,8 +63,6 @@ support_use_towers = False support_xy_distance = 0.8 support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 -travel_compensate_overlapping_walls_0_enabled = =travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_x_enabled = =travel_compensate_overlapping_walls_enabled travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) bridge_settings_enabled = True diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg index 5f76a37547..f4e1787dbd 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg index 396e0b2414..81cbb2a07f 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg index d977ae4eea..033498cb1b 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg index 122433bc80..547f8c4944 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg index 181938d32e..0d33eb2d97 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg index ff0c338a47..e446552fe3 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg index 8a65771716..f4f9f81184 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg @@ -4,7 +4,7 @@ name = UltraFine definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrahigh weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg index 5d7bbf0ad1..586dfd28fa 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -63,8 +63,6 @@ support_use_towers = False support_xy_distance = 0.8 support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 -travel_compensate_overlapping_walls_0_enabled = =travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_x_enabled = =travel_compensate_overlapping_walls_enabled travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) bridge_settings_enabled = True diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg index e962a2d64f..c20c79abce 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -63,8 +63,6 @@ support_use_towers = False support_xy_distance = 0.8 support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 -travel_compensate_overlapping_walls_0_enabled = =travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_x_enabled = =travel_compensate_overlapping_walls_enabled travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) bridge_settings_enabled = True diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg index d05daa790a..863d583e87 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -63,8 +63,6 @@ support_use_towers = False support_xy_distance = 0.8 support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 -travel_compensate_overlapping_walls_0_enabled = =travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_x_enabled = =travel_compensate_overlapping_walls_enabled travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) bridge_settings_enabled = True diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg index e1866eb1c7..1297783fb3 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -4,7 +4,7 @@ name = UltraFine definition = imade3d_jellybox_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrahigh weight = 2 @@ -63,8 +63,6 @@ support_use_towers = False support_xy_distance = 0.8 support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 -travel_compensate_overlapping_walls_0_enabled = =travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_x_enabled = =travel_compensate_overlapping_walls_enabled travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) bridge_settings_enabled = True diff --git a/resources/quality/inat/inat_base_advanced_materials.inst.cfg b/resources/quality/inat/inat_base_advanced_materials.inst.cfg index 643ec180b9..90b622caea 100644 --- a/resources/quality/inat/inat_base_advanced_materials.inst.cfg +++ b/resources/quality/inat/inat_base_advanced_materials.inst.cfg @@ -4,7 +4,7 @@ name = Advanced materials definition = inat_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal_advanced weight = -1 diff --git a/resources/quality/inat/inat_base_draft.inst.cfg b/resources/quality/inat/inat_base_draft.inst.cfg index 1101ca24ed..b121b09a03 100644 --- a/resources/quality/inat/inat_base_draft.inst.cfg +++ b/resources/quality/inat/inat_base_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = inat_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 diff --git a/resources/quality/inat/inat_base_fine.inst.cfg b/resources/quality/inat/inat_base_fine.inst.cfg index de47267b5a..1892abee00 100644 --- a/resources/quality/inat/inat_base_fine.inst.cfg +++ b/resources/quality/inat/inat_base_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = inat_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = 1 diff --git a/resources/quality/inat/inat_base_standard.inst.cfg b/resources/quality/inat/inat_base_standard.inst.cfg index 3c98fb6e25..c02cfe0d1e 100644 --- a/resources/quality/inat/inat_base_standard.inst.cfg +++ b/resources/quality/inat/inat_base_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = inat_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = 0 diff --git a/resources/quality/inat/inat_base_strong.inst.cfg b/resources/quality/inat/inat_base_strong.inst.cfg index 5d77dfb63d..25da61ef3e 100644 --- a/resources/quality/inat/inat_base_strong.inst.cfg +++ b/resources/quality/inat/inat_base_strong.inst.cfg @@ -4,7 +4,7 @@ name = Strong definition = inat_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = strong weight = -3 diff --git a/resources/quality/inat/inat_base_tree_support.inst.cfg b/resources/quality/inat/inat_base_tree_support.inst.cfg index ba41419259..1913667a16 100644 --- a/resources/quality/inat/inat_base_tree_support.inst.cfg +++ b/resources/quality/inat/inat_base_tree_support.inst.cfg @@ -4,7 +4,7 @@ name = Tree supports definition = inat_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal_tree_supp weight = -2 @@ -14,3 +14,4 @@ global_quality = True support_structure = tree support_type = buildplate support_enable = True +support_top_distance = 0.4 \ No newline at end of file diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg index 9b27a42c40..1a54397392 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg @@ -4,7 +4,7 @@ name = Detail 0.12 definition = jgaurora_a6 [metadata] -setting_version = 17 +setting_version = 19 quality_type = detail type = quality weight = 0 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg index 3b0153d8d9..c5135278f5 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg @@ -5,7 +5,7 @@ definition = jgaurora_a6 [metadata] quality_type = optimal -setting_version = 17 +setting_version = 19 type = quality weight = -1 global_quality = true diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg index 69b50881dd..8f39a5735a 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg @@ -5,7 +5,7 @@ definition = jgaurora_a6 [metadata] quality_type = draft -setting_version = 17 +setting_version = 19 type = quality weight = -3 global_quality = true diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg.txt b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg.txt index 33c846074d..89f09b6a8c 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg.txt +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg.txt @@ -5,7 +5,7 @@ definition = jgaurora_a6 [metadata] quality_type = fast -setting_version = 17 +setting_version = 19 type = quality weight = -4 global_quality = true diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg index 0111567fc9..ddd15f1ec5 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg @@ -5,7 +5,7 @@ definition = jgaurora_a6 [metadata] quality_type = normal -setting_version = 17 +setting_version = 19 type = quality weight = -2 global_quality = true diff --git a/resources/quality/katihal/alya3dp_normal.inst.cfg b/resources/quality/katihal/alya3dp_normal.inst.cfg index b8236074e3..cf553408e1 100644 --- a/resources/quality/katihal/alya3dp_normal.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = alya3dp [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = alya_normal weight = 0 diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 8a2c8d5f9c..83cc457ccc 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -4,7 +4,7 @@ definition = alya3dp name = Normal [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = alya_normal weight = 3 diff --git a/resources/quality/katihal/alyanx3dp_normal.inst.cfg b/resources/quality/katihal/alyanx3dp_normal.inst.cfg index b33da8bce5..76ff301629 100644 --- a/resources/quality/katihal/alyanx3dp_normal.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = alyanx3dp [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = alyanx_normal weight = 0 diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 00585f51ee..b69ac137e8 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -4,7 +4,7 @@ definition = alyanx3dp name = Normal [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = alyanx_normal weight = 2 diff --git a/resources/quality/katihal/kupido_normal.inst.cfg b/resources/quality/katihal/kupido_normal.inst.cfg index 1ad69bd665..f835f5c36a 100644 --- a/resources/quality/katihal/kupido_normal.inst.cfg +++ b/resources/quality/katihal/kupido_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = kupido [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = kupido_normal weight = 0 diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index f960b4e6b2..5f9f4c1828 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -4,7 +4,7 @@ definition = kupido name = Normal [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = kupido_normal weight = 3 diff --git a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg index 2eeb0a67bd..f41bce60e3 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -4,7 +4,7 @@ definition = kupido name = Normal [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = kupido_normal weight = 3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg index d94a172514..984fd5abcf 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg index 85b23cddf4..55bc97235c 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg index 2653bd620b..b111b8cf1e 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg index a8c546cb97..69135e8f84 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg index 3e27c3be3d..cede6879dd 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg index 5710c33f77..6e9994b429 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg index d9d7a2dff5..7a05cd4693 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg index 717a61b9a0..f57f37f2df 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg index 13a8d36bf4..0cd6344286 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg index eba1db03a6..367cad9cc0 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = kemiq_q2_beta [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg index 2e1c48789c..fa31e52de7 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = kemiq_q2_gama [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg index 301a3dc541..4df024de7f 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = kemiq_q2_gama [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg index 52946fcf36..2f4868bca4 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = kemiq_q2_gama [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg index e36bcfaf50..1cf4e77b63 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = kemiq_q2_gama [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg index 69951b473f..dd7fbe25d1 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = kemiq_q2_gama [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index af25394879..d6db1f83da 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -4,7 +4,7 @@ name = Best Quality definition = key3d_tyro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = best weight = 1 @@ -28,13 +28,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -78,7 +73,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index 13038d8807..7b33630c3b 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast Quality definition = key3d_tyro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -27,13 +27,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -77,7 +72,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index 1e15836ad2..fc6e2a93aa 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = key3d_tyro [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -27,13 +27,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -77,7 +72,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg index 698303f4e7..802c7a63ea 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg index 0c9f850659..3a36551b2e 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg index bbc2f0f8eb..05a5e9c299 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg index 7ed5907ea7..6a5c3a2b45 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg index 485c45d486..79a14c732f 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg index 5d42c6cdc4..cd5d1f21bd 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg index 1f13b76cbd..1e06641a54 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg index 8d9ec713f5..e5b154502e 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg index 38738df40f..3524f3a047 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg index 5464496205..84f389eeb4 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg index c017c78d20..132809d0c5 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg index 12ad8e2996..fb86e6b2fc 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg index 2c24630c6c..a26b97097d 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg index d76f8ee5a4..5f914a24dc 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg index 07c8560aa9..98896a6011 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg index 6f8940bbed..e137fd2e0f 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg index 095e6de90f..4ebcd932ba 100644 --- a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg index 53fd8840c6..95d2ce7d41 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg index d1473871b0..f5731b51d5 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg index adf5e75452..cc519fbe84 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg index b1273367ec..5d1aff5fa8 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg index af071ae0eb..c5a2eefee9 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg index 8f69a4d8a2..0a94bfa633 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg index 75a6b4abc2..cf3f3ba748 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg index 935384311e..7288c16965 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg index 197744b392..336cab73c9 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg index 6f5dd5f6b4..23c3c8d7d4 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg index 55480fe4fc..f2f69e763d 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg index 604c1df5ba..31e9afe552 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg index 52f668fa68..d5c179cc88 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg index aa8a2da3b8..430fa0ae3a 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg index f90f574798..2ad9b28b11 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg index 5b4258fd72..00e71375e5 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg index a2dfab7f1c..36c9cc9f94 100644 --- a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg index 96097481be..50d3092730 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg index 8b1e4e680c..a69e4bce6f 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg index ba03561f97..678711bc98 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg index 570ac8c627..203b5a7e20 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg index d0fe46bec6..d91d4dfaef 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg index 5d0fd38e44..085a64656c 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg index 949ee730f4..9de8354358 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg index 637968b6eb..bc47c8f11c 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg index ae7950a060..e042e7ed9a 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg index aa47467c13..084373fbd4 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg index f3a069499f..9755924b34 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg index 0b04db2735..5607af1572 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg index e5255a5816..64ee4a4e36 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg index cc3edb7042..e20d4f8646 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg index 4e908e5d9f..6189e4ea7f 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg index e0a2337eae..70d6814773 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg index 110feef3b6..00c8fdf4d4 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg index 3035da9861..ded650d5cc 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg index d63752a00f..43f4cf9dcc 100644 --- a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg index e4433ce3d9..a9f1f93c27 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg index c8a23122f7..b30b6de647 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg index 50d3c97c8e..c2eba2b574 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg index 632ccc990b..2bde9d8a92 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg index 3b9ee5f56f..f735a8cc2f 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg index 67dda85f40..96d45166d5 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg index a35ac4c966..cf8458f281 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg index ee1c72dc9d..f607fb1bc7 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg index de017e2af5..279ca0348c 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg index 82bd9a9738..4abe9acc75 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg index 3f116a8dc1..5791824a91 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg index cc3447548f..a46eae80e8 100644 --- a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg index cc18db11c7..d17a0467b7 100644 --- a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/kingroon/kingroon_global_draft.inst.cfg b/resources/quality/kingroon/kingroon_global_draft.inst.cfg index fd892506a1..820bba4c10 100644 --- a/resources/quality/kingroon/kingroon_global_draft.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/kingroon/kingroon_global_low.inst.cfg b/resources/quality/kingroon/kingroon_global_low.inst.cfg index e939b5739d..cfaf63976c 100644 --- a/resources/quality/kingroon/kingroon_global_low.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/kingroon/kingroon_global_standard.inst.cfg b/resources/quality/kingroon/kingroon_global_standard.inst.cfg index 62f6939255..93b406405e 100644 --- a/resources/quality/kingroon/kingroon_global_standard.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/kingroon/kingroon_global_super.inst.cfg b/resources/quality/kingroon/kingroon_global_super.inst.cfg index cbd461cc9f..4dee7688e3 100644 --- a/resources/quality/kingroon/kingroon_global_super.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg index 1ef8f33e0e..bf3b863af7 100644 --- a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = kingroon_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg index bab7568eca..70514ddc1b 100644 --- a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = koonovo_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft global_quality = True diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg index 1949bdfcb6..958a1676c8 100644 --- a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = koonovo_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg index 9358d44ed0..92bafe17c2 100644 --- a/resources/quality/koonovo/koovono_base_global_high.inst.cfg +++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = koonovo_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -1 diff --git a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg index 0150a9151f..1dc2221757 100644 --- a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg index be9fc6ecd6..ea48b0cb1d 100644 --- a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg index e8c57afcdd..052ec951db 100644 --- a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg index afe7c85b22..2f96444640 100644 --- a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg index 7c172c27ee..210beda1fa 100644 --- a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg index 3bdd29605f..1a35c37cde 100644 --- a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index faa6288fa1..4a8e598d77 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index 2a18535c3e..7648e51ec2 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index ef9c332f7a..d2da04378d 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index a6c7138e20..253e04a413 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg index aee84e3c39..c2ac671018 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg index db85859ff5..52386e6383 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg index c0eed6a65b..01b30fffb8 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg index b8146125fc..9f1d924b7c 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg index e2a1881322..b627a113c7 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg index b72b39a462..ba4f862468 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg index a7fc9e5bdb..22d0f99925 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg index 3148223f68..74a3553880 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index 9d760700d7..5ec1d13350 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index 954b4e4d33..13589e64b1 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index b2a6c0b065..b05c7ef6e9 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index 0db5b1ab0d..756cf42f8f 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index 5113116d15..1802f1fe84 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index 1635d51ac6..22c1ebc463 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index b9638e3518..64e2a8564e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index 49ef48da43..0c33169863 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index e19d11b89a..e5f03c1331 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index 05171cd6d3..5ed2f1be21 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index 49f9f8d870..87d80d5452 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index 3d6f46173d..953dba716c 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index 03736fdee3..06ea24bb9c 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -46,7 +46,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index ff494ea7c7..fea1b31bc5 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -46,7 +46,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 671832d772..912845067f 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -46,7 +46,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg index 255e693039..c94b582d89 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -45,7 +45,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg index bb8de7ab71..762293c2dc 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -45,7 +45,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg index 53526c1b35..9619e7dcc5 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -44,7 +44,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg index 5e759a6aac..f8c0d3e3f3 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg index d38b447d06..0304000753 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg index 2338bd793c..f77cec5ed8 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg index 9679cbca5c..77aae1f317 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index 386ea3c9a7..a5acb8a62f 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index 01197a50c7..ed68486759 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index 97680def3a..03865d1583 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index 3c6253a6a2..0ed6751f4e 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg index d6c6f59760..9b43f5ba54 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg index 45b33fbaa4..49601a51ed 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg index 35f8c1b655..a8c52a4165 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index fca9c79aef..1f40fa8764 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index f13b299a98..baa01a79fd 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index 9a773195fd..c4b2971035 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index e31ca6037b..baf1acf99d 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index 133b304baf..49a3e80a2b 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index 688b73add3..42e07c1a87 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg index 9393e7c267..3591f46333 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast - Experimental definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg index 08e08baf7d..b4efb2339e 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint - Experimental definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg index 66722e1d1a..ba19f4d473 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast - Experimental definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index 5f39116368..d058775a4d 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index c8edf974ea..6167c85e21 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index 718ba8e1dc..4e26f9173d 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index 395fcf9649..b6d1ed9d2c 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index 36d5427bcd..262fffbe33 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index 9e5dba6a0e..34daff44ae 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index ba1fbd709a..623aa7494c 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -46,7 +46,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index 26bc68513a..51167a330b 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -46,7 +46,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 7e1bbcae8f..85c8c249b2 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -45,7 +45,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index 694ca08049..11524250ab 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -54,7 +54,6 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index f87a4057e5..75f1500380 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -55,7 +55,6 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 728e6ca563..2664ab55f7 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -54,7 +54,6 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg index 2ab3e02e92..1895f04e16 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg index 0a189f56a7..ff0a17c1e9 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg index 70d9fc9554..4aa324bea7 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg index ee01169b18..b4a6aa7fa7 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg index 6e661d9448..fe9f87f62e 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg index ef175846c7..fc200b408c 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg index 519978ad8b..20dcf2fa22 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg index c732684395..c2e7cefe29 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg index 1695849e9b..68000c14ca 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg index 8274452968..4eca6eb165 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg index 79d5e12ac5..4621d678fb 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg index 1c924b60c4..5289cc7c7f 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg index f357bf5b09..796778a64c 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg index 70a4ed37fc..550c846b8d 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg index 60f5d655f3..fdd3c8cb8e 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/longer/longer_global_adaptive.inst.cfg b/resources/quality/longer/longer_global_adaptive.inst.cfg index 3d8299c14f..910cd6ce15 100644 --- a/resources/quality/longer/longer_global_adaptive.inst.cfg +++ b/resources/quality/longer/longer_global_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/longer/longer_global_draft.inst.cfg b/resources/quality/longer/longer_global_draft.inst.cfg index 7c7811f6ba..f5688bb3e9 100644 --- a/resources/quality/longer/longer_global_draft.inst.cfg +++ b/resources/quality/longer/longer_global_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/longer/longer_global_low.inst.cfg b/resources/quality/longer/longer_global_low.inst.cfg index d829aed27d..82df7400f7 100644 --- a/resources/quality/longer/longer_global_low.inst.cfg +++ b/resources/quality/longer/longer_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/longer/longer_global_standard.inst.cfg b/resources/quality/longer/longer_global_standard.inst.cfg index 75ab5cffa2..c5fe412e6d 100644 --- a/resources/quality/longer/longer_global_standard.inst.cfg +++ b/resources/quality/longer/longer_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/longer/longer_global_super.inst.cfg b/resources/quality/longer/longer_global_super.inst.cfg index 2c6945a941..3685854e14 100644 --- a/resources/quality/longer/longer_global_super.inst.cfg +++ b/resources/quality/longer/longer_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/longer/longer_global_ultra.inst.cfg b/resources/quality/longer/longer_global_ultra.inst.cfg index 8836b06983..2d64b2f3d9 100644 --- a/resources/quality/longer/longer_global_ultra.inst.cfg +++ b/resources/quality/longer/longer_global_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg index 773e829b0b..39fcf469c9 100644 --- a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg +++ b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = makeblock_mcreate [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg index a44d1ffe2b..8747c8f3a8 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg index 99cbe70a62..a0f0664555 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg index 762e3023b0..4f3c53bfcb 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg index 9347c50327..42277fc137 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg index 74ae43391c..738f1ce760 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg index 706ff06b76..cb9d3baec2 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg index 7ff8b8e12f..19ff4248a5 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg index 58b306de9e..28807a9d77 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg index 84f58459ce..a598a39cc0 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg index d9a234b48e..f9925a1d16 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg index b33382a34b..78e351139c 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg index 2488a8862d..174b9c84d3 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg index 655d325630..fe411b1398 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg index 13ec85d76e..a652d01f87 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg index fd15ce1bc1..7819b801ce 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg index 1940abf7e9..9c82662c14 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg index 188c4eda98..43b208dbfa 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg index a877eb7613..48abf0bb90 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg index 902a65e414..ad045d32b4 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg index 231e75d02a..ce0677bc8d 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg index eb3f68ca97..992db77904 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg index 31ed034806..91744152c2 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg index 3cd734d169..48a8a938c6 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg index 30680cf4f6..a7bff5fa85 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg index 9eabf5a91e..4e629250ec 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg index 1f64a24c02..099945ac5b 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg index da29cbed99..c96a878f92 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg index c024449a15..742c4f0db4 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg index 0af5777470..f1c7483187 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg index 737bcc9e6f..2b161a42c4 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg index 225a053d6e..e3fba82fc8 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg index c2a3b30eee..4b8e632520 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = malyan_m200 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg index d729f374cb..e592715668 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg index de20ab4a80..586d76dcf3 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg index 2dc491fe51..3c3b57f71b 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg index 6c5ced12ef..d314a17b95 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg index b7ba568da0..9a3b42df4c 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg index 3417e06240..e6122a5eb5 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg index db1e63f63e..eb080adfd6 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg index 2507eb9a8c..5a69b1e091 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg index 983415731c..f3724c4dd7 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg index 3dc07d6264..96d7564e51 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg index 002974a2a3..26617b19a1 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg index 0661728179..7be83392ea 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg index d8deec9b0b..229bfb3230 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg index 267dee72be..f25d9d0e1a 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg index bdcb03e6ce..d585820ccf 100644 --- a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg index 5619e90baa..0144b60fa3 100644 --- a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg index 97fcc60af4..22b7d90e27 100644 --- a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg index dd2beccf31..be44b92682 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg index b5b303d928..04982e19fd 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg index 798d319185..279eee8eb7 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg index 37b0071031..fd647a06da 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg index 29d3843bbc..fb2d7c6e0b 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg index 024c3487e1..816ef2c92a 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg index 1cc5dddf77..0c28d097d0 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg index 7a1137d7bf..ab022f8b41 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg index cf5d1bba18..b0acb39fb1 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg index dc05edb6fc..08b4da8cd9 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg index efaa018589..306ef0b888 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg index e4654234d2..acb8e7948a 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg index 22340dcfa2..e89ca47c19 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg index c767bd09bc..027c477325 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg index 708c49c4d4..f8999596e9 100644 --- a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg index 8453f919d1..f0c8cee9f3 100644 --- a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg index 2e06cfdfb4..c1a6412a04 100644 --- a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg index 96fc4e386f..fcd66f172c 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg index 501b071a7a..9999ebb591 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg index 86ca4878b3..a1a17ce12a 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg @@ -3,7 +3,7 @@ version = 4 name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg index e9e11db2dc..293a49e14b 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg index 9898be885b..d8d301213c 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg index 6d21dcb0a4..f55be37446 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg index 399b8b42bf..9fa9c5d31e 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg index 6241d3691b..4c946d2e0b 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg index 0f2d446237..d849d273a7 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg index 9be30285be..2b8a7fd461 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg index 30a6e1b1e4..b476326855 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg index 09d6699fb7..e0cf9e1f0a 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg index 2fe9b66efd..1b022c362f 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg index e05236c4e0..ecf61c1e2f 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg index ca46e960eb..40d00e8a92 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg index ef2f926610..6ebf13a4cb 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg index 34c1398fce..37cd89469a 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg index 8b0a4bd657..d35d3403b4 100644 --- a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg index 256d6ea7d6..4fa8aca4fc 100644 --- a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg index c65f90962e..fe29aabd1c 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg index f5f9842221..6b97a13b14 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg index 8b8f827f9d..f329090711 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg index 20a1b14b53..7a4a506023 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg index 419361b62b..f43530e2e1 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg index 74258ddda1..8b93917828 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg index 1f946adb66..ae7e560558 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg index 57e2380367..f3e2e6d477 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg index cc39db3e61..5b4b550190 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg index 995e3e8d81..4788e83b95 100644 --- a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg index ee5cf2b7cc..565645f697 100644 --- a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg index 7eb77a1ef3..563e9fb1a7 100644 --- a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/mingda/mingda_global_adaptive.inst.cfg b/resources/quality/mingda/mingda_global_adaptive.inst.cfg index 238fd4092f..511d1ee766 100644 --- a/resources/quality/mingda/mingda_global_adaptive.inst.cfg +++ b/resources/quality/mingda/mingda_global_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/mingda/mingda_global_draft.inst.cfg b/resources/quality/mingda/mingda_global_draft.inst.cfg index 5bc03d8fe6..19559a1fc6 100644 --- a/resources/quality/mingda/mingda_global_draft.inst.cfg +++ b/resources/quality/mingda/mingda_global_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/mingda/mingda_global_low.inst.cfg b/resources/quality/mingda/mingda_global_low.inst.cfg index 39f6eb3b52..c7473e1d00 100644 --- a/resources/quality/mingda/mingda_global_low.inst.cfg +++ b/resources/quality/mingda/mingda_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/mingda/mingda_global_standard.inst.cfg b/resources/quality/mingda/mingda_global_standard.inst.cfg index 558bc5f60b..a2568c7170 100644 --- a/resources/quality/mingda/mingda_global_standard.inst.cfg +++ b/resources/quality/mingda/mingda_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/mingda/mingda_global_super.inst.cfg b/resources/quality/mingda/mingda_global_super.inst.cfg index 0137d241cf..ebffdaf235 100644 --- a/resources/quality/mingda/mingda_global_super.inst.cfg +++ b/resources/quality/mingda/mingda_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/mingda/mingda_global_ultra.inst.cfg b/resources/quality/mingda/mingda_global_ultra.inst.cfg index 778fbd6b23..b9de15e1f7 100644 --- a/resources/quality/mingda/mingda_global_ultra.inst.cfg +++ b/resources/quality/mingda/mingda_global_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg new file mode 100644 index 0000000000..2b79acb9e3 --- /dev/null +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg @@ -0,0 +1,25 @@ +[general] +version = 4 +name = Draft +definition = mixware_hyper_s + +[metadata] +type = quality +quality_type = draft +global_quality = True +setting_version = 19 + +[values] +layer_height = 0.15 +retraction_combing = all +retraction_extrusion_window = 10 +retraction_min_travel = 1.5 +infill_wipe_dist = 0.0 +skin_overlap = 10.0 +infill_overlap = 30.0 +wall_0_wipe_dist = 0.0 +support_wall_count = 1 +support_brim_enable = false +infill_before_walls = false +acceleration_enabled = false +support_enable = true diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg new file mode 100644 index 0000000000..f711f84655 --- /dev/null +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg @@ -0,0 +1,25 @@ +[general] +version = 4 +name = Coarse +definition = mixware_hyper_s + +[metadata] +type = quality +quality_type = coarse +setting_version = 19 +global_quality = True + +[values] +layer_height = 0.2 +retraction_combing = all +retraction_extrusion_window = 10 +retraction_min_travel = 1.5 +infill_wipe_dist = 0.0 +skin_overlap = 10.0 +infill_overlap = 30.0 +wall_0_wipe_dist = 0.0 +support_wall_count = 1 +support_brim_enable = false +infill_before_walls = false +acceleration_enabled = false +support_enable = true diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg new file mode 100644 index 0000000000..95ad1c6631 --- /dev/null +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg @@ -0,0 +1,25 @@ +[general] +version = 4 +name = Fine +definition = mixware_hyper_s + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +global_quality = True + +[values] +layer_height = 0.1 +retraction_combing = all +retraction_extrusion_window = 10 +retraction_min_travel = 1.5 +infill_wipe_dist = 0.0 +skin_overlap = 10.0 +infill_overlap = 30.0 +wall_0_wipe_dist = 0.0 +support_wall_count = 1 +support_brim_enable = false +infill_before_walls = false +acceleration_enabled = false +support_enable = true diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg index 8da071fd25..efce49604e 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg index 67e92b885d..1c21a7da68 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg index a5cc35d097..42b32a9b24 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg index bb002c6744..5ac017dab5 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg index 7cf73170ae..5c3ad8e6a2 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg index b82cc5ace6..92bbbb8b83 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg index 01c4cbda3d..dcb9b49848 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg index 8a7cd23674..b1affabdbc 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg index 8bbbfc11d4..f899b17075 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg index c17da2d2f3..fcc67cf3a0 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg index 45abe54079..af267645ca 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg index 2efcb3902d..c2e9cfd1d9 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg index 15aa2b3d0f..24eec0fcbe 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg index 4324a414e5..0148225706 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg index 0c1d4036d9..9afa1aea3a 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg index 831311552f..96cbbb4cf7 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg index cb2e2350c9..7612993306 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg index ef8baf6240..e71bc86845 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg index 444387156a..78b2763403 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg index b394684b6a..09b064d5c7 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg index f6190e1293..59e8b52a8f 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg index 3b13aa1205..04a9982e0d 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg index e5211a8c67..2ffefa0f30 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg index e610068f1e..705d301495 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg index 27fded4a6d..5d0494accc 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg index 367b47168b..4ac7873321 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg index ee22f444b7..09ec8c7ab1 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg index 8d51d172d8..763a38589c 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg index cbf2abce5c..34b0bacb93 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg index 7f7abca798..22a5018489 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg index 07c00587d0..85c05d7d79 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg index c9d339f6a5..e54ca3b99b 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg index 674de90807..e0e619e767 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg index 9639919794..846872404f 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg index 4f28a5e516..97b0165802 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg index 861e64f01c..b7b67a9f58 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg index 5378927d80..3373bc277f 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg index feef979b27..7d16f82a44 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg index 5e43b08d29..2eddce4083 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg index 19c1b3f06a..2dfd666292 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg index c97a101123..e424be26fd 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg index 6fa96637eb..da21c46d67 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg index 63a437347a..1ee7ba64d5 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = Finer definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg index 5e964c1ca2..4a5dcaa0b1 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg index 675e538816..79a88c9049 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg @@ -4,7 +4,7 @@ name = Lowest Quality Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg index e1f01cf4f6..7aaff81ca7 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = thickerdraft weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg index 07bb175c01..0d26538219 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Fine definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg index dba795ecef..c1645490ad 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Low Detail Draft definition = monoprice_select_mini_v2 [metadata] -setting_version = 17 +setting_version = 19 type = quality material = generic_pla weight = 0 diff --git a/resources/quality/normal.inst.cfg b/resources/quality/normal.inst.cfg index 703eb05660..dcb19d7468 100644 --- a/resources/quality/normal.inst.cfg +++ b/resources/quality/normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = fdmprinter [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index 8c23fb8c91..d38d7eff39 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -5,7 +5,7 @@ name = Best Quality definition = nwa3d_a31 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = best weight = 1 @@ -29,13 +29,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -78,7 +73,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 8d1f47b618..d11a4e4b41 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -4,7 +4,7 @@ name = 0.6 Engineering Quality definition = nwa3d_a31 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = Engineering weight = -2 @@ -26,13 +26,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -75,7 +70,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 40 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False jerk_enabled = False retraction_combing = off diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index 60c59f562e..a91cf710e2 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -5,7 +5,7 @@ name = Fast Quality definition = nwa3d_a31 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -29,13 +29,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -78,7 +73,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index d1d808e2a3..d26c842193 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = nwa3d_a31 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -28,13 +28,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -77,7 +72,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index 9fe8c62c1f..eda1c583d8 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -4,7 +4,7 @@ name = Best Quality definition = nwa3d_a5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = best weight = 1 @@ -27,13 +27,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -76,7 +71,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index 1c78b99ad3..b7aa84ac2b 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast Quality definition = nwa3d_a5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -27,13 +27,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -76,7 +71,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index c84aacd772..3582f318af 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = nwa3d_a5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -27,13 +27,8 @@ top_bottom_pattern = lines top_bottom_pattern_0 = lines wall_0_inset = 0 optimize_wall_printing_order = False -outer_inset_first = False +inset_direction = inside_out alternate_extra_perimeter = False -travel_compensate_overlapping_walls_enabled = True -travel_compensate_overlapping_walls_0_enabled = True -travel_compensate_overlapping_walls_x_enabled = True -wall_min_flow = 0 -fill_perimeter_gaps = everywhere filter_out_tiny_gaps = True fill_outline_gaps = True xy_offset = 0 @@ -76,7 +71,6 @@ speed_travel = 150 speed_layer_0 = 10 speed_travel_layer_0 = 50 speed_slowdown_layers = 2 -speed_equalize_flow_enabled = False acceleration_enabled = False acceleration_roofing = 3000 jerk_enabled = False diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg index 09b02d7ce8..5c5e493de9 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = peopoly_moai [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = 3 diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg index a655bc013a..8c7dd2adb3 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = peopoly_moai [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg index 5c77ded223..2fea5db079 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra High definition = peopoly_moai [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra_high weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index 04558dda11..e16510888d 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = peopoly_moai [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index 272cdca02d..c14711c731 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = peopoly_moai [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg index 2e383eb320..bfe66a99cb 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg index b18e77b81e..bcb5f5866b 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg @@ -4,7 +4,7 @@ name = Good Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = good material = generic_abs diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg index d6bc5e6280..9cd21d05ab 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg index 2985b9ffb0..46611300bb 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg index 8b8cfa7559..f68beb31c2 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg index 6daec21e45..9442f8bc86 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg index 5853545750..dcbb011c18 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_nylon diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg index 31a793372a..dba0a1e9ce 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg @@ -4,7 +4,7 @@ name = Good Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = good material = generic_nylon diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg index 8ad9403a67..f5bd2fd2ba 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_nylon diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg index 75ce470e8d..6773e95aa9 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_nylon diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg index 7ac48fab51..19844b1221 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_nylon diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg index 9e850671b0..a6545e3a5b 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_nylon diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg index ce6b84e089..08a6d003d9 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg index 28fd3d5ab0..f8cb487064 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg @@ -4,7 +4,7 @@ name = Good Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = good material = generic_petg diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg index 9ca1ef4bfb..f35abb61fc 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg index ce5c693075..67bb74b5a0 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg index dce79cd59b..af480ff509 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg index c33b28ebbb..2d32109542 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg index c1d951c417..64049ab51b 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg index 9a5c04577f..9b0f95ae25 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg @@ -4,7 +4,7 @@ name = Good Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = good material = generic_pla diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg index 164dab4b01..7dafe67c4f 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg index d7e69b9a66..a78afb108a 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg index 69c84231a9..71a4253d9b 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg index 43e6349b8e..2ff46be0b8 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg index 2b5c6cc293..67db5f127c 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -6 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg index ae94a05a46..6ee179a6fb 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg @@ -4,7 +4,7 @@ name = Good Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = good weight = -2 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg index 4a8f9aa929..0a59e4833a 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg index f4149cb022..527af7565d 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg index f2f820556c..cec42523dc 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg index bf1dd1cdb2..9a88c02ca8 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg index 80164030f1..0bbf74e3b2 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg index 60d2260f93..53eed1dac9 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg @@ -4,7 +4,7 @@ name = Good Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = good material = generic_tpu diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg index 2611546092..496f4c5a4a 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_tpu diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg index 0538d85633..263ab96ee7 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg index 769d4d7bd5..73f59d3109 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg index ceec6aa22b..bacaca0f0e 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = rigid3d_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_tpu diff --git a/resources/quality/skriware_2/sk2_advanced.inst.cfg b/resources/quality/skriware_2/sk2_advanced.inst.cfg index dacbcb50ec..3cf55a13b3 100644 --- a/resources/quality/skriware_2/sk2_advanced.inst.cfg +++ b/resources/quality/skriware_2/sk2_advanced.inst.cfg @@ -4,7 +4,7 @@ name = Advanced definition = skriware_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/skriware_2/sk2_fast.inst.cfg b/resources/quality/skriware_2/sk2_fast.inst.cfg index 4a04270877..60b35cabac 100644 --- a/resources/quality/skriware_2/sk2_fast.inst.cfg +++ b/resources/quality/skriware_2/sk2_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = skriware_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/skriware_2/sk2_precise.inst.cfg b/resources/quality/skriware_2/sk2_precise.inst.cfg index 3d8cb6ae9d..70b142e4a1 100644 --- a/resources/quality/skriware_2/sk2_precise.inst.cfg +++ b/resources/quality/skriware_2/sk2_precise.inst.cfg @@ -4,7 +4,7 @@ name = Precise definition = skriware_2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = best weight = -1 diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index ce607f630b..61fc8faacc 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = snapmaker2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -21,7 +21,7 @@ top_thickness = 0.8 top_layers = 4 bottom_thickness = 0.8 bottom_layers = 4 -outer_inset_first = False +inset_direction = inside_out skin_outline_count = 0 ; infill_line_distance = 8 @@ -63,4 +63,4 @@ support_pattern = zigzag support_angle = 50 support_infill_rate = 15 support_line_distance = 2.66 -support_initial_layer_line_distance = 2.66 \ No newline at end of file +support_initial_layer_line_distance = 2.66 diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index 24bcfd2103..b29b00acd1 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = snapmaker2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -21,7 +21,7 @@ top_thickness = 0.8 top_layers = 10 bottom_thickness = 0.8 bottom_layers = 10 -outer_inset_first = False +inset_direction = inside_out skin_outline_count = 1 ; infill_line_distance = 8 diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index b6bb40aec2..cb1127cf35 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = snapmaker2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -21,7 +21,7 @@ top_thickness = 0.8 top_layers = 5 bottom_thickness = 0.8 bottom_layers = 5 -outer_inset_first = False +inset_direction = inside_out skin_outline_count = 0 ; infill_line_distance = 8 @@ -63,4 +63,4 @@ support_pattern = zigzag support_angle = 50 support_infill_rate = 15 support_line_distance = 2.66 -support_initial_layer_line_distance = 2.66 \ No newline at end of file +support_initial_layer_line_distance = 2.66 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_A.inst.cfg index 76ec06262a..1dc1a6311c 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_B.inst.cfg index f3f24b3469..971d220800 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_C.inst.cfg index 1a81a07607..fec34c79ce 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_A.inst.cfg index ccb80ab2f1..dc61d03a2b 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_B.inst.cfg index 25f6aef09a..61e55eecb3 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_C.inst.cfg index 3413ce30aa..515a436dbc 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_A.inst.cfg index 739ae5bf06..4bdab03ac7 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_B.inst.cfg index 7787def8bb..13ba128fa7 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_C.inst.cfg index f670bb6eb1..611be6c449 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_A.inst.cfg index cfe30caf9f..33498e8ca0 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_B.inst.cfg index 2d113281a8..be7082ba4f 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_C.inst.cfg index 7dc65e54da..d574bcf986 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_A.inst.cfg index 010c252721..7c2c404ff5 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_B.inst.cfg index 80c7c4c6ad..1c5045724d 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_C.inst.cfg index 5de7b0ea9f..39f6e34b65 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_COPA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_A.inst.cfg index cb3871fc6d..2eea7fd42a 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_B.inst.cfg index d29a61bae6..abdb32ee45 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_C.inst.cfg index 46b30ef1a1..aab29a9104 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_HIPS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_A.inst.cfg index c2065bf506..1edee961de 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_B.inst.cfg index e3804df9e2..6f4fc8f8cb 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_C.inst.cfg index 453c4c8700..4cd7037777 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PC_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PEKK_B.inst.cfg index 3782c7f994..c7996658cf 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PEKK_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_A.inst.cfg index a5bf7374ca..deb330eb49 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_B.inst.cfg index 91d3015b25..7f880de38c 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_C.inst.cfg index 77bd280b59..790f23f20c 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PETG_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_A.inst.cfg index 5ee51facb5..581bd89054 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_B.inst.cfg index b575c4db11..4f51f3d871 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_C.inst.cfg index 3dd12ec3d3..ad4852eea5 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_A.inst.cfg index 46a34e8290..48df820abd 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_B.inst.cfg index 504695192f..47320f8b06 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_C.inst.cfg index 1bc06df105..095916ad8c 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_A.inst.cfg index 5a2e9009be..9ad93e2e88 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_B.inst.cfg index 46bdc28c7e..40f7956823 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_C.inst.cfg index 57a47f9a3b..35d5acff6a 100644 --- a/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0.4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_A.inst.cfg index 4cd7e8cc3b..b74e1ff4c5 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_B.inst.cfg index caaf0c4c44..2e8ceae76f 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_C.inst.cfg index 1d6582a92e..7502129535 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS-X_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_A.inst.cfg index 776404fc19..2d6d0e58be 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_B.inst.cfg index 50a526d37a..3a77c29402 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_C.inst.cfg index 1ae65e1bf6..fc19c0b41b 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_A.inst.cfg index ca18f75870..346cc59243 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_B.inst.cfg index c882abcc2e..224f099b01 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_C.inst.cfg index 935c808404..683e437872 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ACETATE_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_A.inst.cfg index 2f7952fa3e..e765ca1b78 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_B.inst.cfg index 22df0629e6..c9f4a99372 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_C.inst.cfg index b2c2b760bf..21dffeb15f 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_ASA-X_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_A.inst.cfg index 245edbb95d..d1b0509a4e 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_B.inst.cfg index e7f1863c58..01982d19ff 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_C.inst.cfg index 2bb3dbf266..3432f01b66 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_BVOH_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_A.inst.cfg index 1385892136..65336ca37b 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_B.inst.cfg index 8f22831fb1..b0570afacd 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_C.inst.cfg index d60e56429c..8db954535e 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_COPA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_A.inst.cfg index 4b4196ebc7..9d31c97bed 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_B.inst.cfg index a975b19623..911ebc77a7 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_C.inst.cfg index c15582732e..d18f7d105b 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_HIPS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_A.inst.cfg index f66fe17a69..90ae1cee2b 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_B.inst.cfg index 9f2c00f3a6..2a9359da2e 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_C.inst.cfg index 8e66d72cfa..8e40e1781c 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PC_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_A.inst.cfg index 641c7c0deb..f6abf0be68 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_B.inst.cfg index 4ab06e285f..7f1c7cb875 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_C.inst.cfg index e7ca83c936..ab9d805435 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PETG_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_A.inst.cfg index 694d9c08a0..5c2c28cb42 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_B.inst.cfg index 88b41dda14..db6a2c7aa7 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_C.inst.cfg index e3a2df55cd..9e2fc7cb1d 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_A.inst.cfg index 448731a1e0..8bd99de768 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_B.inst.cfg index e1721baee4..31c7ed0ab5 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_C.inst.cfg index 1da8326dec..d495cd2309 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_A.inst.cfg index 2281fb64e5..05de9e2032 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_B.inst.cfg index b26dcb504f..008961e416 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_C.inst.cfg index d489795c0f..d40596bbc8 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-M_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_A.inst.cfg index ab54ffd04d..45f41a31f7 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_B.inst.cfg index 446e947f59..bbf659f584 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_C.inst.cfg index be67ed1e89..02c53d8b86 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_PVA-S_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_A.inst.cfg index 87c7b32981..b86019f3f7 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_A.inst.cfg @@ -4,7 +4,7 @@ name = A definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_B.inst.cfg index b6ca72a247..e0dc3b7c91 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_C.inst.cfg index 9df2d308d5..ca7f7964b4 100644 --- a/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.4/s3d_std0.4_TPU98A_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_B.inst.cfg index 30ecbbd6d5..f3e59223d3 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_C.inst.cfg index a31857602f..d497cbbf9d 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_D.inst.cfg index 85084f892f..1652f1010d 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS-X_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_B.inst.cfg index 73184a6ad2..4b523e6042 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_C.inst.cfg index be2afed6ec..71602c07fe 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_D.inst.cfg index cd57f0e804..9f6164a184 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_B.inst.cfg index 50f811962b..56bc34212a 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_C.inst.cfg index a3e1202bde..e81dce382f 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_D.inst.cfg index b123239075..09d3073254 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ACETATE_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_B.inst.cfg index 962750385d..2d1657ea59 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_C.inst.cfg index 32e359e9c3..df93b0eb82 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_D.inst.cfg index 34ba2373f5..471b1c5979 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_ASA-X_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_B.inst.cfg index 3c0ab3e9c0..9933c3be44 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_C.inst.cfg index 29722743ce..24153ae7c8 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_D.inst.cfg index bbb65fc7b0..a942b34716 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_BVOH_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_B.inst.cfg index aff9f31a2c..b06afddfc9 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_C.inst.cfg index 7186d398c7..1d44be26d5 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_D.inst.cfg index e4d54450b3..cf9fae9f4a 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_COPA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_B.inst.cfg index 3d99441988..261b5162b6 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_C.inst.cfg index 8602dfc761..e242a1a7f7 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_D.inst.cfg index 85196b4301..badad0d793 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_HIPS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_Nylon-1030_C.inst.cfg index c921e7fd1f..8cd8ca4398 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_B.inst.cfg index c41a78e05d..7998efcf6c 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_C.inst.cfg index 9b0aafff0f..2a4d3a1fe2 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_D.inst.cfg index e45d87873e..37fd06cfc2 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PC_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_B.inst.cfg index ac715b20ba..d2730e84e3 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_C.inst.cfg index ae6f261f80..105153e3f1 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_D.inst.cfg index 8cfc91a9e1..cc856632a3 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PETG_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_B.inst.cfg index 6aab20f03b..7bb4b5ce1c 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_C.inst.cfg index 17e4164ee0..c207ae7442 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_D.inst.cfg index 420241d024..d04801ff13 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_B.inst.cfg index 55168308cf..3776972f67 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_C.inst.cfg index 69b19aff7a..417557c09d 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_D.inst.cfg index dd8ed86814..0366cd10eb 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_B.inst.cfg index 091ed0d480..9a727db441 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_C.inst.cfg index be7929f052..21898c3efb 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_D.inst.cfg index 9ff56ec834..41ba11ebc4 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-M_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_B.inst.cfg index ec8d13dcf5..a6075e3b8e 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_C.inst.cfg index 3099b953e1..65d3edc604 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_D.inst.cfg index e8bd101396..756ac4cd19 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_PVA-S_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_B.inst.cfg index f5294dfdf3..b6ae777455 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_B.inst.cfg @@ -4,7 +4,7 @@ name = B definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_C.inst.cfg index d26b4cee9f..6f1a5e2ff6 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_D.inst.cfg index 7d0122221f..09acacc6ae 100644 --- a/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.6/s3d_std0.6_TPU98A_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_C.inst.cfg index 054891c67a..986ea3b8de 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_D.inst.cfg index c8432f192d..abd6a3cc24 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_E.inst.cfg index 619694afa1..4ef38ee0b6 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS-X_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_C.inst.cfg index 11722b89cf..ee8829a9f9 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_D.inst.cfg index 9f199bceb3..db2e187aa2 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_E.inst.cfg index cefb21a518..87d581c9e8 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ABS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_C.inst.cfg index 8b2fbab3a0..6b82ece00f 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_D.inst.cfg index 8bd87e5587..5f0b318901 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_E.inst.cfg index c5ae875217..3c288afae1 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_ASA-X_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_C.inst.cfg index 8753d6b95a..dd70b93ab7 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_D.inst.cfg index 933af41f63..fba6880e90 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_E.inst.cfg index 1cac25f9eb..800708271d 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_BVOH_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_C.inst.cfg index 99161b76d6..ee17bf302d 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_D.inst.cfg index 4efb7851cd..88bfda75fa 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_E.inst.cfg index 030938b4ff..2445bc8c90 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_COPA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_C.inst.cfg index dcd79403e5..357d4fb14f 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_D.inst.cfg index 76e0cf0893..8750080237 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_E.inst.cfg index 8b26efde2e..393c050047 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_HIPS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_C.inst.cfg index 17f070b9b8..ed2167a876 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_D.inst.cfg index 670e923ed9..351019fce4 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_E.inst.cfg index c332a1d0ee..7e23a4b408 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PC_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_C.inst.cfg index ca630c7671..1e0729af15 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_D.inst.cfg index 4caabdf67f..1de79ab7ec 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_E.inst.cfg index d668d03ef0..766e7901b9 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PETG_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_C.inst.cfg index 94f6340353..4a359f9d5d 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_D.inst.cfg index 747a3e941a..e12b87a2d1 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_E.inst.cfg index 4380506c2f..b15cff0027 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_C.inst.cfg index c2d9fd7054..8be55ca563 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_D.inst.cfg index bdf28fd9d3..c6a07a69ea 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_E.inst.cfg index b35461087f..5f87af35cd 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_C.inst.cfg index d2dc7ba0ea..4f222114b9 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_D.inst.cfg index 4df4121e0b..f1a66b2cf0 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_E.inst.cfg index 47d21539d6..c4593b4f46 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-M_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_C.inst.cfg index 79a4dae34d..10633926c1 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_D.inst.cfg index b32cb0825d..41e4e825f1 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_E.inst.cfg index af29e0b09d..9d4e438e06 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_PVA-S_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_C.inst.cfg index a279e9a3ff..256b76ed19 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_D.inst.cfg index e378fa8643..aa2aea28aa 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_E.inst.cfg index f7a4040c87..882b7a3a2e 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU98A_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_C.inst.cfg index 2f870571b2..41449fc375 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_C.inst.cfg @@ -4,7 +4,7 @@ name = C definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 1 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_D.inst.cfg index 98492bbfb0..704977d1e9 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_E.inst.cfg index a7d8fd292f..abe42a26dd 100644 --- a/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0.8/s3d_std0.8_TPU_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_D.inst.cfg index 590f4b20f2..725cd92b29 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_E.inst.cfg index cc672b0aea..36dc0f8999 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_F.inst.cfg index 4e1e8501b2..5738e3efdc 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index 1b62d1b71c..a64a0accfc 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index 62bb0316f6..3c236fcb1c 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index 29d8938ac5..7f140dad36 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index 915b0d81d6..3a1b7923ce 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index e69e2b865a..d40089934c 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index a760db4f9b..eda59f1521 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index 1f6197da9b..8e3b695316 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index 212d7a4802..b2fb04b52c 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index d882d8a3a5..99c4c81276 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_D.inst.cfg index da3d006daa..01d094f1d6 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_E.inst.cfg index 50d1996ef4..675e30e749 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 2c0d6c3d03..3954a5f16f 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_D.inst.cfg index ebabcc2950..1f1d3c14ac 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_E.inst.cfg index baadc15a06..0bbaaa5718 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 62adc58107..dddf0f2d7e 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 7ff6deaed1..1c12333e65 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index d801fab511..cc30c6b6f6 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index c55d3b4f05..c5cdc89bcb 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index 44955c20d1..a22761fd87 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index 8242a1322c..89ea8a883e 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index 6a90bb8a33..07125e41c3 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index c475536506..03ade3c05e 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -4,7 +4,7 @@ name = D definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index c9a5ea06bf..02ac1a8073 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -4,7 +4,7 @@ name = E definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index fe48eb0c7d..8e47ff7b88 100644 --- a/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_F.inst.cfg index 3b5bb9161a..42857250c3 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_G.inst.cfg index bb3b26d217..6f40ab794e 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_H.inst.cfg index 4052293a35..b3104df8d7 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index d768f5e908..7ae68c9915 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index 66fc758a0a..30c96f1255 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index 9bab5ea0f5..3481dfc0b2 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 7477b95b03..a9ed03b1c9 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index a47892ba69..5fc8ee64e7 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 3acd1e90ae..202407e7e3 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index b80ca1d75c..a18e32d0ab 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index 1ad4d5ca5b..93fe02f6ee 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index ebeb355465..835bd801a2 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_F.inst.cfg index 20c03f53c2..de59962260 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_G.inst.cfg index de913c8ef1..d41e1d5360 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_H.inst.cfg index 32947c23b6..a2955f65a8 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_F.inst.cfg index e7da037c59..71c0e26048 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_G.inst.cfg index b3ec9192e7..7b20700ee3 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_H.inst.cfg index 8da3e18804..2e7383a2ba 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index d57d04cc26..f36dd37630 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index 68fc8a6237..fde7c5c17e 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 0a23b294a7..1dad64d8b4 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 67e9559e05..83634bc1c9 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index e35289b07f..5d4bc4204e 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index 42040afbf3..372d709ac3 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index 9017394bca..ca7c8ada2d 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -4,7 +4,7 @@ name = F definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 1 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index 5c84946e6e..c840c74ac2 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -4,7 +4,7 @@ name = G definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index 245f216c84..bda19fbdb0 100644 --- a/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1.2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -4,7 +4,7 @@ name = H definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = -1 diff --git a/resources/quality/strateo3d/s3d_global_A.inst.cfg b/resources/quality/strateo3d/s3d_global_A.inst.cfg index a947c12ea4..78fadd5220 100644 --- a/resources/quality/strateo3d/s3d_global_A.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_A.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = a weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_B.inst.cfg b/resources/quality/strateo3d/s3d_global_B.inst.cfg index 194068b614..d3ce3236b7 100644 --- a/resources/quality/strateo3d/s3d_global_B.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_B.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = b weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_C.inst.cfg b/resources/quality/strateo3d/s3d_global_C.inst.cfg index 57dbffdb8c..af258f8f3e 100644 --- a/resources/quality/strateo3d/s3d_global_C.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_C.inst.cfg @@ -4,7 +4,7 @@ name = High Quality definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = c weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_D.inst.cfg b/resources/quality/strateo3d/s3d_global_D.inst.cfg index 707f5c8dab..ada4b19099 100644 --- a/resources/quality/strateo3d/s3d_global_D.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_D.inst.cfg @@ -4,7 +4,7 @@ name = Medium Quality definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = d weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_E.inst.cfg b/resources/quality/strateo3d/s3d_global_E.inst.cfg index acf86bb252..40fe09dbc6 100644 --- a/resources/quality/strateo3d/s3d_global_E.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_E.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = e weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_F.inst.cfg b/resources/quality/strateo3d/s3d_global_F.inst.cfg index 202bdc7846..c443a5a1c4 100644 --- a/resources/quality/strateo3d/s3d_global_F.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_F.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = f weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_G.inst.cfg b/resources/quality/strateo3d/s3d_global_G.inst.cfg index b03f59279f..127cede3d2 100644 --- a/resources/quality/strateo3d/s3d_global_G.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_G.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse Quality definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = g weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_H.inst.cfg b/resources/quality/strateo3d/s3d_global_H.inst.cfg index 1b0f92b995..d72eec96f9 100644 --- a/resources/quality/strateo3d/s3d_global_H.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_H.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Coarse Quality definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = h weight = 0 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index c31abb0716..0f675eb95a 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tevo_blackwidow [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index 43aad026ad..81e49b44a2 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tevo_blackwidow [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index c61677511f..36001e8a45 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tevo_blackwidow [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index d765aa5902..7405fdcbd1 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tinyboy_e10 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index 52bd779f5a..71bed041fa 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tinyboy_e10 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index 7051f6ff22..6ab51f7835 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tinyboy_e10 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index f836e2713c..eb4d13ae28 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tinyboy_e16 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index e21327846d..efb6e4a134 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tinyboy_e16 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index 5cc51874e8..08944a6d1e 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tinyboy_e16 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index d2bf7c116c..a5d2e4ef1e 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tinyboy_fabrikator15 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -30,8 +30,6 @@ layer_height = 0.3 layer_height_0 = 0.3 material_bed_temperature = 60 material_diameter = 1.75 -material_print_temperature = 200 -material_print_temperature_layer_0 = 0 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index 4382f0fd11..74f2b08204 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tinyboy_fabrikator15 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 2 @@ -30,8 +30,6 @@ layer_height = 0.1 layer_height_0 = 0.1 material_bed_temperature = 60 material_diameter = 1.75 -material_print_temperature = 200 -material_print_temperature_layer_0 = 0 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index c128dc8a3d..835bc555a1 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tinyboy_fabrikator15 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 1 @@ -30,8 +30,6 @@ layer_height = 0.2 layer_height_0 = 0.2 material_bed_temperature = 60 material_diameter = 1.75 -material_print_temperature = 210 -material_print_temperature_layer_0 = 0 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index 6e956ed2e7..cad7a5aa02 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tinyboy_ra20 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index 715c6cc91f..6c38dc1c5a 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tinyboy_ra20 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 1b8339bc7e..2136219176 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tinyboy_ra20 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg index 3ac0c23fc8..46bd954e3d 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg index c904cdc280..3c0b3aada6 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg index a97e61d3cf..fb069a886d 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg index beedac210f..dfd9773025 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg index 1b35ffc12d..93922867aa 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg index d0188deeeb..024eac4066 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg index 76eff86afc..041d983b5d 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg index 670c138087..516280d8e6 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg index 7d128b0e45..411da9bcc1 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg index b7b64c6662..536888e5b5 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg index 4919f0b0fc..8cb844c2d2 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg index e2a5ddd239..de13fc3e92 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg index 3c20e41b6a..acad0a9710 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg index febef3af09..7ad3828248 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg index 20aff985ed..be42556f37 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg index 8d7cd95ae8..27132493d8 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg index f0f78b5e48..3e24c2aca2 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg index 219a9af407..52711c5a75 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg index 9f327d7035..9da6c89ca0 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg index 25a8093e4a..8558ada67d 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg index 5d27eedec9..bd493c7b8c 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg index 90ed65eb98..4be7ac8754 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg index 4ce7d30bd0..7f632c09e3 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg index 6ba7e4a608..5995a1a6bd 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg index 678bf1a7b4..38cc5d0b79 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg index 821dc7221c..5c2299e9f4 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg index 25a27c8dcb..73172d5039 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg index 7e125ad938..ee7c78d5a4 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg index a65bacf7c1..5c0b79221a 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg index 1e357eec95..860b429037 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg index 29b0be4452..6530998d52 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg index 1b74e17bfd..f05c7cf099 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg index 71c1263662..3d8ea6ef4f 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg index 63f134a89d..eee0dfd4c4 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg index 0728856684..386bbcd3cb 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg index dbfc6f816c..f01871c0d5 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg index b96f2d4b90..670ea97458 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Coarse definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg index 9fe4e8a30e..21c23df99e 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg index 39ca581824..17bc70ace9 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg index dc6b2eb441..d128d80d82 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg index 38daa84b3c..45615dbe8c 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg index 5cabb5c236..0e53e7ebdf 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg index 4c6024557a..fc94d55863 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg index 74e2c7601d..e2f0e3f043 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg index 99c690f215..217edc91d8 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg index 7d04ee2bf9..a5f26cc679 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg index 5f28e59ede..97bedc4f5f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg index 5efaac3140..aa512c282e 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg index 7d12ae6522..97abbd8a92 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg index fa78c51e1a..380b2ad19f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg index b7d771f755..b83a8a68aa 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg index 70596e4799..027b553394 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg index ea8eabea17..2e99bc68d6 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg index b3d93021a7..08576cf857 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg index f496b8358d..d2f505f24c 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg index 2343b6e9e7..d78561fde5 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg index 40ff490e96..783e0728a7 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg index 6c3fd9d95c..774f308950 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg index 03634ca00c..343438cdf2 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg index 79c9b5b083..ab9f3a8bb8 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg index bc866666b7..881b83ff21 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg index aa739ad1dd..143c77c562 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg index 395e7258a0..2c19b90f92 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg index 59d5efbefd..a525294509 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg index 2af97b6981..dbe9adb4a8 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg index 8222ec1573..8629e14cc3 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg index cdb7936e3b..8c521c2462 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg index 386aa34326..94c6c5bbab 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg index 9237a26e68..171fc750f2 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg index a84a9bedb6..2640bef5eb 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg index 5db2e2bbc6..b1d3aa20be 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg index caf7c53797..f47df747c1 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg index 16afdc5003..026e697b22 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg index 2953753f3d..1adcd3c90c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg index 53f0eaa15b..a4e79aae87 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg @@ -4,7 +4,7 @@ name = Flex and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg index 35386f0ff0..d897c47761 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg @@ -4,7 +4,7 @@ name = Flex Only definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg index 8fef4461da..88d3824982 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg @@ -4,7 +4,7 @@ name = Flex and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg index 75b9e275d4..83c8604288 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg @@ -4,7 +4,7 @@ name = Flex Only definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg index 066e760f70..238cc84ecf 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg index c015eab120..4abf7f8d47 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg index 6c6e3cd171..fab128c8c3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg index b1bb8f02d8..95997d7094 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg index 3baedf40d1..6886fceff8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg @@ -4,7 +4,7 @@ name = Flex and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg index 63e2644e36..ca303313f3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg @@ -4,7 +4,7 @@ name = Flex Only definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg index c279d9c17b..3da1b2cfe3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg index 92287ca49c..d3ad678b94 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg index 9a8d2d5ef1..9ef8a8cdb0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg @@ -4,7 +4,7 @@ name = PVA and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg index 988380215f..2ba63006c8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg @@ -4,7 +4,7 @@ name = Flex and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg index 16348d089d..8d5bfc7de7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg @@ -4,7 +4,7 @@ name = Flex Only definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg index 0c79146cdc..b730b91882 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg index 285429badd..02ceb3f140 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg index 37ecae9dda..c77970c226 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg @@ -4,7 +4,7 @@ name = PVA and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg index 678b0a655c..993f25d840 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg @@ -4,7 +4,7 @@ name = Flex and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg index 58f6bdfa16..cd99022e99 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg index 72e3ea8716..fd58198a81 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg index 810c07fae5..aa97c8730b 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg @@ -4,7 +4,7 @@ name = Flex and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg index 6654d02dc0..79e40652a3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg index 8f56ad8140..ea73771dce 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg index 902f21b157..17ce1b13ae 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg @@ -4,7 +4,7 @@ name = PVA and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg index 8ac5c88525..dcf618984e 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg @@ -4,7 +4,7 @@ name = PVA and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index 209a21c3a7..7a49028245 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Flex Only definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index 667b2b3618..d46900bf66 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Flex and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 46ad9c1a0b..7c636ff083 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 81d169e934..4cafa8a4bb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 656e5e7a60..7bc14213cd 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -4,7 +4,7 @@ name = PVA and PLA definition = tizyx_evy_dual [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg index f0e8615404..fb5a0026e1 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_k25 [metadata] quality_type = draft -setting_version = 17 +setting_version = 19 type = quality global_quality = True diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg index 964ad7ac4b..772cd1fe12 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_k25 [metadata] quality_type = normal -setting_version = 17 +setting_version = 19 type = quality global_quality = True diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg index 63fc4765e3..a9f185c8d9 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = trimaker_cosmosII [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 1 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg index 51491b18bf..2e457ce5cb 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = trimaker_cosmosII [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg index c6b7688501..7ed7e0a6fc 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg @@ -4,7 +4,7 @@ name = Slow definition = trimaker_cosmosII [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slow weight = -1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg index cd71c6e445..f82e0e4706 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = trimaker_nebula [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg index d9b77dc0b5..bece7a2e53 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = trimaker_nebula [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg index e2037cb3a3..3bd2698d03 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg @@ -4,7 +4,7 @@ name = Slow definition = trimaker_nebula [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slow weight = -1 diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg index 2089931d9b..82ee263ca7 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg index 61eba042e9..2002bc05aa 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg index 4086b7ea2e..e1bac970f2 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg index a9d328fbe5..af458c17ad 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg index d8bf7dde79..3b593c002c 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg index c30c10fefe..6bdc69cc80 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg index eab7a744ee..51f058f46c 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg index eba9238d3c..a728a72540 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg index b8d571acc7..4f73c640ab 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg index a9ecbc49ea..226f4bd11e 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg index d2df50374a..08ead34fa4 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg index bdd764ee66..80579c073f 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg index 92ef1c40c0..e3b44a0201 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg index 384f90b7ec..60c4a354cd 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg index 2cc0ebb61d..9c9e2d25e7 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg index 7bb48aeda7..c17da775c0 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg index 505d0b9ddf..d17166fc0d 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg index 558efe9154..5616f4ff9a 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg index f2f7d09e98..d16f5e2bc9 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg index e1972d3e23..ec234a373b 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg index 5cc674af8e..b06e92d275 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg index 926d66eff0..327490f2c5 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg index fb8b015bbf..9493678d8e 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg index 98a9d1ed40..04e13373ab 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg index a43651d23e..215db01ef7 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg index db4253756b..c8475bdcf0 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg index f898a38bd7..e5dd916fe3 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg index 2ffa95ff81..bd6daa17d8 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg index 216d25a9e5..0276215210 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg index 8337e737d6..1d972de5f3 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg index da5c6b570d..c121e199ad 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg index 11b3cf42f2..14834569e7 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg index 23745ce9ee..39e6857093 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg index f8c147a7df..01a9f76a66 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg index 1e71bc2465..98b2204352 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg index 86dc8c3205..37a162d73f 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg index 674c9125d9..4893eba23d 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg index 6a30a4104d..d5d17a607b 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg index 2516234246..290c3fcc09 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg index 04c64e9c0d..bc66b5da83 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg index d2c9e7c91f..5f17afd70d 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg index 8e41a3f453..0aabff4602 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg index 5411615777..2d54d0a536 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg index 5d0be3cb11..071c89688d 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg index 3e8657cd7a..de7accefb3 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg index b5432da82a..25bed29391 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg index 420ac65927..e8dc2748cd 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg index 2fc2c0b459..841862d589 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg index b791aea06d..4f1db7e7b8 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg index 1478f16519..9a2e13f20d 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg index b58e264a59..f686a35dea 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg index 15a6830b74..91b30cca7a 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg index 136996468a..3743e44522 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg index 0138c08574..c2d51ebf0f 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg index 600658332a..846b79f20e 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg index 5a48e5f444..e19b3c8ee4 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg index acf7f6cbcf..6ce6e30fda 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg index e591c21b4b..64e8ec652d 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg index 2d1b4b889e..9ef0be3414 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg index 35cebe2303..4333dc55fb 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg index cc75b4bb1f..e86a3de3fb 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg index 1d39d74773..c19425ec1a 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg index 26af918374..30ae713091 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg index b5a7e6f39a..3154a87042 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg index 2f5e7f5a65..ba821ede1f 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg index 25c013e782..fec73622f8 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg index 1c1baab16b..2dccda88d2 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg index 0262671a6f..31de7ef4d0 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg index 39a8bf652a..1e086a2218 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg index 6466c14563..a5b45f7713 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg index 4a12315d15..188e58dbbf 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg index b06e7ff17b..cb51264b5f 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg index b9ede8f693..e7d5bf1cb5 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg index 852d338f66..6d1e5804ff 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg index fc11180be1..7958d74df3 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_abs diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg index e0c475bad3..d914733637 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg index 29713bf42a..f25dbe782d 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg index 9f650ffc72..720d9e36fd 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_petg diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg index fb1fd5bab1..3b51a1f322 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg index 3e2a9a7482..76d0cb3dae 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg index 9a14b26d5e..f7d5345246 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_pla diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg index 7453e96861..7dea781929 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg index c26dd07bf0..3c28678efe 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg index c90b2f1484..ac4ba6c37c 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough material = generic_tpu diff --git a/resources/quality/tronxy/tronxy_global_extra.inst.cfg b/resources/quality/tronxy/tronxy_global_extra.inst.cfg index 06f2f24cd7..7cf5357610 100644 --- a/resources/quality/tronxy/tronxy_global_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_extra.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra weight = -1 diff --git a/resources/quality/tronxy/tronxy_global_fine.inst.cfg b/resources/quality/tronxy/tronxy_global_fine.inst.cfg index e861d8a375..7a2d2be591 100644 --- a/resources/quality/tronxy/tronxy_global_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = -2 diff --git a/resources/quality/tronxy/tronxy_global_low.inst.cfg b/resources/quality/tronxy/tronxy_global_low.inst.cfg index cb326d5a62..7501d2b685 100644 --- a/resources/quality/tronxy/tronxy_global_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/tronxy/tronxy_global_normal.inst.cfg b/resources/quality/tronxy/tronxy_global_normal.inst.cfg index d2c64e1225..e368fc4f18 100644 --- a/resources/quality/tronxy/tronxy_global_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -3 diff --git a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg index c5b2b3ef66..1f264c86f5 100644 --- a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg @@ -4,7 +4,7 @@ name = Rough/Fast Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rapid weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_rough.inst.cfg b/resources/quality/tronxy/tronxy_global_rough.inst.cfg index 065a3acc39..d7a07446cb 100644 --- a/resources/quality/tronxy/tronxy_global_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rough.inst.cfg @@ -4,7 +4,7 @@ name = Rough Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = rough weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_super.inst.cfg b/resources/quality/tronxy/tronxy_global_super.inst.cfg index b8a6dca9a1..b2f459f021 100644 --- a/resources/quality/tronxy/tronxy_global_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Fine Quality definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = 0 diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg index f035711794..6dbf61eab0 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg index 4e7015e5b9..316e727b87 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg index 65e44e524c..9d9ee5eca7 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg index cc02a1ab2f..95f9e1a3c0 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg index 5f34fd9aeb..65b0986988 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg index faa73635e8..cc0b8c3d03 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg index 102ab5ba20..69f65c9f35 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg index 93f9d522ee..08e9f0985f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg index 19e95592b2..362ce85b90 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg index 392174f99f..bf63cc821d 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg index 5881a49e7c..f626eac3f7 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg index 130ee72845..431fd81ae3 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg index 6a058c2542..fb5ba1e064 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg index cbe66cb80f..0bda296952 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg index a7811175cd..fd07834b05 100644 --- a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg index 385f2aeb39..2e18aa609f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg index 25fc30560b..79904a06f6 100644 --- a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_abs diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg index a47107df65..3051546962 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg index 399cd41c98..c4bfd77666 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg index 40cd579bb9..cad01e4dae 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg index 7c87bebd12..3fba9555db 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg index c36d96f1a5..04b6e41e55 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg index 283a47f1e5..276f94db94 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg index 666d905880..413e2ba788 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg index 994fc5c336..b12fc48908 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg index 72b91f5450..9db0f1294d 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg index 9d2002c7d1..308ea29f13 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg index eb1b626c0a..4d801bd998 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg index 61727202dd..d9062b3a3e 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg index 3afbbdbee5..62ac2fe02d 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg index 7da0047996..924bf70fc2 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg index add678c9fe..9c3c5a8f10 100644 --- a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg index 41ba0dfc71..d5e1612b47 100644 --- a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg index dbab69daee..dcc3039183 100644 --- a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_petg diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg index aa305e5da2..0efebd66e2 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg index 02a37b5b74..0057f34ba3 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg index ac246d1b1e..3217d213d4 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg index cbbfea8b94..44fe725d4a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg index 21227f0c1d..4d1c640a79 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg index 33baef9046..439618e3f1 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg index 497b2edd0f..14eda0da9f 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg index dab8feabbf..5b6db450e1 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg index efa946a46e..8544bd7d61 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg index 2ecc05b561..097c146e51 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg index 6fdca47154..9e1aba823c 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg index d5d3169523..b27e0f4a5a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg index 1a0e2beffd..c4693f1ffd 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg index 85473ecef7..fb09d19e4c 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg index 464e9f9a45..1f00e74942 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg index 77b92764ce..5616618709 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg index 0d67fdaff3..1837fde570 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg index 8e118c6556..727b8254ac 100644 --- a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg index 1bb8dc132a..2bb43b7179 100644 --- a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_pla diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg index 03ffe6f8c4..ff98c402ce 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg index 5f77baeab8..29b44be150 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg index 5929bfb63a..522652edf7 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg index d2c59179a5..1ddc7029e0 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg index 14e7362563..537aa8cb7b 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg index 024ccf8534..889db57943 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg index ffb88e931d..b9f2c98c6e 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg index a8fa652049..37d902ed54 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg index 4653ed2e5b..fa55fd0495 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg index 9c946916e2..b042efc868 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg index 55a32c0c53..b6077045c0 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg index 2a7cac091b..385b5753ba 100644 --- a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft material = generic_tpu diff --git a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg index f56f4e3b70..37a84495c8 100644 --- a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg @@ -4,7 +4,7 @@ name = Dynamic Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = adaptive weight = -2 diff --git a/resources/quality/twotrees/two_trees_global_draft.inst.cfg b/resources/quality/twotrees/two_trees_global_draft.inst.cfg index 89e8ed340b..e0e85e3cb9 100644 --- a/resources/quality/twotrees/two_trees_global_draft.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -5 diff --git a/resources/quality/twotrees/two_trees_global_low.inst.cfg b/resources/quality/twotrees/two_trees_global_low.inst.cfg index 4aac0cc82a..0d202baebe 100644 --- a/resources/quality/twotrees/two_trees_global_low.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_low.inst.cfg @@ -4,7 +4,7 @@ name = Low Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = low weight = -4 diff --git a/resources/quality/twotrees/two_trees_global_standard.inst.cfg b/resources/quality/twotrees/two_trees_global_standard.inst.cfg index ef7cb999f3..3b7500388b 100644 --- a/resources/quality/twotrees/two_trees_global_standard.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_standard.inst.cfg @@ -4,7 +4,7 @@ name = Standard Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = standard weight = -3 diff --git a/resources/quality/twotrees/two_trees_global_super.inst.cfg b/resources/quality/twotrees/two_trees_global_super.inst.cfg index d6a5523d81..039b192024 100644 --- a/resources/quality/twotrees/two_trees_global_super.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_super.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = super weight = -1 diff --git a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg index d6541ca9a5..b9be0808cd 100644 --- a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultra weight = 0 diff --git a/resources/quality/ultimaker2/um2_draft.inst.cfg b/resources/quality/ultimaker2/um2_draft.inst.cfg index f8a0f3e9af..7b5a7d2aa1 100644 --- a/resources/quality/ultimaker2/um2_draft.inst.cfg +++ b/resources/quality/ultimaker2/um2_draft.inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = ultimaker2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker2/um2_fast.inst.cfg b/resources/quality/ultimaker2/um2_fast.inst.cfg index 0be3fa6761..666921ce74 100644 --- a/resources/quality/ultimaker2/um2_fast.inst.cfg +++ b/resources/quality/ultimaker2/um2_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker2/um2_high.inst.cfg b/resources/quality/ultimaker2/um2_high.inst.cfg index 632837f67f..a48434ac8d 100644 --- a/resources/quality/ultimaker2/um2_high.inst.cfg +++ b/resources/quality/ultimaker2/um2_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2/um2_normal.inst.cfg b/resources/quality/ultimaker2/um2_normal.inst.cfg index b2b432f5f0..b38837c7ac 100644 --- a/resources/quality/ultimaker2/um2_normal.inst.cfg +++ b/resources/quality/ultimaker2/um2_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg index 3631727e92..15483409a7 100644 --- a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg index 0e707b6e80..63563ac9ef 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg index 02c9c14040..b13c39c673 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg index b779740bca..2bbb4952bf 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg index d2a7521933..9bb3b38200 100644 --- a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg index 14cb8ca956..0deab058ad 100644 --- a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg index 74fb634e11..ae0b9cefa8 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg index bf7b1c6f11..68aff39936 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg index f508bf298c..a1f9dce7f0 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg index a869bb1a0f..a667f45e44 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg index c40530490b..a73c13ecec 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg index 03cde2366f..85d8436603 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg index 07b49b5e53..56727fc86f 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg index a681827079..7293177170 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg index 83d3d693ae..ca3224ace7 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg index 483246a48e..2be7544374 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg index c7a03cd6b0..997f1fbab1 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg index 8ae12810bf..8935e57bd1 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg index f33b7b3572..c4d4798cef 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,10 +17,9 @@ cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.22 -line_width = 0.38 raft_airgap = 0.37 raft_base_line_spacing = 1.6 raft_base_line_width = 0.8 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg index 5888db2b8d..e0fa416aaf 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -17,10 +17,9 @@ cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.22 -line_width = 0.38 raft_airgap = 0.37 raft_base_line_spacing = 1.6 raft_base_line_width = 0.8 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg index 567f4b8bec..29bcd5e3b9 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -2 @@ -17,10 +17,10 @@ cool_fan_speed = 45 cool_fan_speed_min = =cool_fan_speed * 25 / 45 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 -line_width = 0.57 + raft_airgap = 0.37 raft_base_line_spacing = 2.4 raft_base_line_width = 1.2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg index 9dcf9bbb20..1b1102ae41 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -17,10 +17,10 @@ cool_fan_speed = 45 cool_fan_speed_min = =cool_fan_speed * 25 / 45 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 -line_width = 0.57 + raft_airgap = 0.37 raft_base_line_spacing = 2.4 raft_base_line_width = 1.2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg index 96af374586..65c7e56fee 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -2 @@ -17,7 +17,7 @@ brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.22 raft_airgap = 0.37 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg index b5589c77af..c99e991aef 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -17,7 +17,7 @@ brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.22 raft_airgap = 0.37 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg index be4e2e944e..ee4a7dee55 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg index da9a810df0..c95c3e2f0e 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg index 668cbb9f23..4c43951b7a 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse Quality definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extracoarse weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg index 6910dbfbe0..e1eae1a271 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg index 88c81bc7c6..05dfa38b87 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg index d6f7c56d9c..13e56dc21f 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg index d71e220212..2acce1df9e 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg index edb8ebfc70..e3104ecb40 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,7 +17,7 @@ brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 25 layer_0_z_overlap = 0.1 raft_airgap = 0.15 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg index 0dddabd6ff..1953c20a11 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,7 +17,7 @@ brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 25 layer_0_z_overlap = 0.1 raft_airgap = 0.15 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg index 36fdf8a4e8..4680476de8 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 @@ -16,7 +16,7 @@ adhesion_type = raft cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_layer_time = 3 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.22 raft_airgap = 0.57 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg index cba69857f7..2f0a543ec5 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -16,7 +16,7 @@ adhesion_type = raft cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_layer_time = 3 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.22 raft_airgap = 0.57 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg index 87ecad7805..1442289d90 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -1 @@ -16,7 +16,7 @@ adhesion_type = raft brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 raft_airgap = 0.44 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg index ced8063481..13066f1685 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -16,7 +16,7 @@ adhesion_type = raft brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 raft_airgap = 0.44 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg index 7cf59596b3..9288409611 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -2 @@ -16,7 +16,7 @@ adhesion_type = raft brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.25 raft_airgap = 0.44 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg index 17883b0082..f2caa2441b 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -16,7 +16,7 @@ adhesion_type = raft brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.25 raft_airgap = 0.44 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg index 8b9e15eaca..77120dec46 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -18,7 +18,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 2 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 25 layer_0_z_overlap = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg index 2a127d6573..fce0028973 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -18,7 +18,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 2 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 25 layer_0_z_overlap = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg index 2e103941bd..11b213b799 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 @@ -17,7 +17,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.3 raft_airgap = 0.35 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg index 0323710d73..db8e5058f6 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,7 +17,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.3 raft_airgap = 0.35 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg index df965bc95e..28c8ee4ead 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -1 @@ -17,7 +17,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 raft_airgap = 0.52 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg index 6a319bf368..36059ce309 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -17,7 +17,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 raft_airgap = 0.52 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg index 1649a4be70..dd0a425aec 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extracoarse weight = -2 @@ -17,7 +17,7 @@ brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.22 raft_airgap = 0.47 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg index 9beb8bc692..3116e3d2fc 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -17,7 +17,7 @@ brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.22 raft_airgap = 0.47 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg index e7b8cfdf30..10f6d07dba 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.4 / 0.38, 2) infill_overlap = 0 -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -66,7 +64,6 @@ support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.38 / 0.38, 2) wall_thickness = 0.76 speed_wall_x = =math.ceil(speed_print * 25 / 25) speed_infill = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg index 842bc15dd9..ca4f9ec1d9 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.4 / 0.38, 2) infill_overlap = 0 -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -66,5 +64,4 @@ support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.38 / 0.38, 2) wall_thickness = 0.76 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg index 1c8324630f..c77c6fcb95 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.6 / 0.57, 2) infill_overlap = 0 -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -48,7 +46,6 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -skirt_brim_line_width = 0.6 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 @@ -67,5 +64,4 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.57 / 0.57, 2) wall_thickness = 1.14 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg index 9c2d0ba792..58b93a9af1 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.6 / 0.57, 2) infill_overlap = 0 -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -48,7 +46,6 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -skirt_brim_line_width = 0.6 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 @@ -67,7 +64,6 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.57 / 0.57, 2) wall_thickness = 1.14 speed_wall_x = =math.ceil(speed_print * 25 / 25) speed_infill = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg index ffd5356046..b066ba3929 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.8 / 0.76, 2) infill_overlap = 0 -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -48,7 +46,6 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -skirt_brim_line_width = 0.8 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 @@ -67,5 +64,4 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.76 / 0.76, 2) wall_thickness = 1.52 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg index fc9bad4e5a..a89ac4f68b 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -3 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.8 / 0.76, 2) infill_overlap = 0 -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -48,7 +46,6 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -skirt_brim_line_width = 0.8 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 @@ -67,5 +64,4 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.76 / 0.76, 2) wall_thickness = 1.52 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg index 38760e0a4e..5303e5f526 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg index 8710cc0c5b..b4945a27cd 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg index 00dc8e798c..739f949dfc 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -19,7 +19,6 @@ cool_fan_speed_min = =cool_fan_speed * 35 / 60 cool_min_speed = 15 infill_sparse_density = 10 layer_0_z_overlap = 0.12 -line_width = 0.57 raft_airgap = 0.24 raft_base_line_spacing = 1.2 raft_base_line_width = 0.6 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg index 3b936d3f77..956d708e69 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg index aecfb3c85e..61ede571db 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg index c51a11062a..ab44842212 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg index ae9d1b8b1e..63f92a2770 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg index f5c6dd92f2..b7d9d9d437 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg index 1b88891819..36e2b2180b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg index f2e6828ee0..f3d9bb79d9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg index 3aca738149..0ab179959f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -17,6 +17,8 @@ cool_min_layer_time = 3 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 10 infill_sparse_density = 20 +retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 45) speed_print = 45 speed_travel = 150 @@ -26,5 +28,4 @@ wall_thickness = 0.7 speed_wall_0 = =math.ceil(speed_print * 30 / 45) speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall_x = =math.ceil(speed_print * 40 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) -retraction_combing_max_distance = 50 +speed_infill = =math.ceil(speed_print * 45 / 45) \ No newline at end of file diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg index 074dd142e0..dc4b06940c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,11 +17,12 @@ cool_min_layer_time = 2 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 15 infill_sparse_density = 20 +retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 45) speed_print = 45 speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.72 wall_thickness = 1.05 speed_topbottom = =math.ceil(speed_print * 15 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) -retraction_combing_max_distance = 50 +speed_infill = =math.ceil(speed_print * 45 / 45) \ No newline at end of file diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg index 4a20d752e9..2ea0c4a828 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,9 +17,10 @@ cool_min_layer_time = 3 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 10 infill_sparse_density = 20 +retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 45) speed_print = 45 speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.8 -wall_thickness = 1.05 -retraction_combing_max_distance = 50 +wall_thickness = 1.05 \ No newline at end of file diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg index 25fb02bb13..60642a3c69 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -17,8 +17,9 @@ cool_min_layer_time = 5 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 8 infill_sparse_density = 20 +retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 wall_thickness = 1.59 -retraction_combing_max_distance = 50 \ No newline at end of file diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg index 28c341b752..23e8d25778 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg index a4ba12e45b..fdaecf1142 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,10 +16,9 @@ cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 -line_width = 0.38 raft_airgap = 0.37 raft_base_line_spacing = 1.6 raft_base_line_width = 0.8 @@ -27,6 +26,8 @@ raft_interface_line_spacing = 1 raft_interface_line_width = 0.8 raft_margin = 15 raft_surface_line_width = 0.38 +retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 20 / 25) @@ -38,5 +39,4 @@ support_infill_rate = =0 if support_enable and support_structure == 'tree' else support_pattern = lines support_z_distance = 0.26 top_bottom_thickness = 1.5 -wall_thickness = 1.14 -retraction_combing_max_distance = 50 \ No newline at end of file +wall_thickness = 1.14 \ No newline at end of file diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg index da6faaf07a..b9845f7002 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -16,10 +16,9 @@ cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 -line_width = 0.38 raft_airgap = 0.37 raft_base_line_spacing = 1.6 raft_base_line_width = 0.8 @@ -27,6 +26,8 @@ raft_interface_line_spacing = 1 raft_interface_line_width = 0.8 raft_margin = 15 raft_surface_line_width = 0.38 +retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 15 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) @@ -38,5 +39,4 @@ support_infill_rate = =0 if support_enable and support_structure == 'tree' else support_pattern = lines support_z_distance = 0.26 top_bottom_thickness = 1.5 -wall_thickness = 1.14 -retraction_combing_max_distance = 50 \ No newline at end of file +wall_thickness = 1.14 \ No newline at end of file diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg index 46b6e2721d..965182eb4d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -2 @@ -16,10 +16,9 @@ cool_fan_speed = 45 cool_fan_speed_min = =cool_fan_speed * 25 / 45 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 -line_width = 0.57 raft_airgap = 0.37 raft_base_line_spacing = 2.4 raft_base_line_width = 1.2 @@ -28,6 +27,8 @@ raft_interface_line_width = 1.2 raft_margin = 15 raft_surface_line_width = 0.57 raft_surface_thickness = 0.2 +retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 20 / 25) @@ -42,5 +43,4 @@ support_pattern = lines support_xy_distance = 0.6 support_z_distance = 0.22 top_bottom_thickness = 0.75 -wall_thickness = 1.14 -retraction_combing_max_distance = 50 \ No newline at end of file +wall_thickness = 1.14 \ No newline at end of file diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg index f3ddc2a27f..817635d4fd 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -16,10 +16,9 @@ cool_fan_speed = 45 cool_fan_speed_min = =cool_fan_speed * 25 / 45 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 -line_width = 0.57 raft_airgap = 0.37 raft_base_line_spacing = 2.4 raft_base_line_width = 1.2 @@ -28,6 +27,8 @@ raft_interface_line_width = 1.2 raft_margin = 15 raft_surface_line_width = 0.57 raft_surface_thickness = 0.2 +retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) @@ -42,5 +43,4 @@ support_pattern = lines support_xy_distance = 0.6 support_z_distance = 0.22 top_bottom_thickness = 0.75 -wall_thickness = 1.14 -retraction_combing_max_distance = 50 \ No newline at end of file +wall_thickness = 1.14 \ No newline at end of file diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg index 93db0945ba..8f3db13ad6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -2 @@ -16,7 +16,7 @@ brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.37 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg index 1c7e0c2ec8..c7e44efbbf 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -16,7 +16,7 @@ brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.37 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg index d76a1a5044..2bc852b924 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg index 9211132821..dba3bfac50 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg index 256211eaf2..a7f7ad2ce6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse Quality definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extracoarse weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg index 6002d3a0b0..822d97c624 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg index 304bff08d7..53c3c4ca20 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg index ce8b164940..2a263be4f0 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg index 325491ecdf..f9ffa3d7fb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg index 0fd7722b1f..79a6223869 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -16,7 +16,7 @@ brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.1 raft_airgap = 0.15 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg index 7df63c901d..b65b044aea 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -16,7 +16,7 @@ brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.1 raft_airgap = 0.15 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg index ed7cf16eea..2358657ab3 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 @@ -15,7 +15,7 @@ variant = 0.4 mm cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_layer_time = 3 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.57 @@ -26,6 +26,7 @@ raft_interface_line_width = 0.8 raft_margin = 15 raft_surface_line_width = 0.5 raft_surface_thickness = 0.15 +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 30 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 20 / 45) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg index 64ad87ac1c..5a9283faff 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -15,7 +15,7 @@ variant = 0.4 mm cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_layer_time = 3 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.57 @@ -26,6 +26,7 @@ raft_interface_line_width = 0.8 raft_margin = 15 raft_surface_line_width = 0.5 raft_surface_thickness = 0.15 +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 30 / 45) speed_print = 45 speed_travel = 150 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg index f12d16dd2f..18fe82d680 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -1 @@ -15,7 +15,7 @@ variant = 0.6 mm brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.44 @@ -27,6 +27,7 @@ raft_margin = 15 raft_surface_line_width = 0.6 raft_surface_thickness = 0.15 retraction_hop_enabled = 0.2 +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 30 / 55) speed_print = 55 speed_support = 40 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg index 6d07352e0d..8685edd405 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -15,7 +15,7 @@ variant = 0.6 mm brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.44 @@ -27,6 +27,7 @@ raft_margin = 15 raft_surface_line_width = 0.6 raft_surface_thickness = 0.15 retraction_hop_enabled = 0.2 +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 30 / 55) speed_print = 55 speed_support = 40 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg index 6a0b66fffc..02b1e8ae1f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -2 @@ -15,7 +15,7 @@ variant = 0.8 mm brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.25 raft_airgap = 0.44 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg index 9781f52d8a..e9363c7f73 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -15,7 +15,7 @@ variant = 0.8 mm brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.25 raft_airgap = 0.44 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg index 3217c512aa..e45b40cada 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -17,7 +17,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 2 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg index 38bfaa9150..4a193f9fe5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,7 +17,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 2 cool_min_speed = 15 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg index 21bedcb7df..41184ed396 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 @@ -16,7 +16,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.3 raft_airgap = 0.35 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg index d49cdbbedb..a90ac4a92d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -16,7 +16,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.3 raft_airgap = 0.35 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg index 716d421973..cece9e3581 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -1 @@ -16,7 +16,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.52 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg index 8b07695490..8607215af8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -16,7 +16,7 @@ cool_fan_speed = 50 cool_fan_speed_min = 0 cool_min_layer_time = 3 cool_min_speed = 8 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.52 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg index 3dfaf5721c..645897c076 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = 0 @@ -16,7 +16,7 @@ brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 cool_min_layer_time = 3 -infill_overlap = 5 +infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.47 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg index 31c0fc677b..274e88148a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg index e3219b8051..b3603991b1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg index 555228ae11..08d60d6018 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg index 5e72f44f65..c86e206475 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg index 6782dc02ba..43cf222a39 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg index 932ad0a5e1..de2df7dee3 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg index 47a69a4555..84442b895a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg index de322b24e2..94562f422d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,6 +15,7 @@ variant = 0.4 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg index 740330cebc..43a5cb6596 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -15,6 +15,7 @@ variant = 0.4 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg index 0db7fdfcf9..c7c7753cf2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -15,6 +15,7 @@ variant = 0.4 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 20 / 50) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg index 5c6c3af164..2b3c24a912 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,6 +15,7 @@ variant = 0.4 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 20 / 50) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg index 72fd527ed3..8f3079c4f4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -15,6 +15,7 @@ variant = 0.6 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 55) speed_print = 55 speed_topbottom = =math.ceil(speed_print * 20 / 55) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg index fa22eb737e..f7798a0293 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg index 2928efc9fd..a7dad05ae9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.4 / 0.38, 2) infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -47,7 +45,6 @@ retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_min_travel = 0.5 -retraction_prime_speed = 15 skin_overlap = 10 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom @@ -66,7 +63,6 @@ support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.38 / 0.38, 2) wall_thickness = 0.76 speed_wall_x = =math.ceil(speed_print * 25 / 25) speed_infill = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg index bb96858f08..6f9612ff9a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.4 / 0.38, 2) infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -47,7 +45,6 @@ retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_min_travel = 0.5 -retraction_prime_speed = 15 skin_overlap = 10 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom @@ -66,5 +63,4 @@ support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.38 / 0.38, 2) wall_thickness = 0.76 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg index 2b67fbac3c..7c94a57190 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.6 / 0.57, 2) infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,16 +38,13 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True -retraction_prime_speed = 15 skin_overlap = 10 -skirt_brim_line_width = 0.6 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 @@ -67,5 +63,4 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.57 / 0.57, 2) wall_thickness = 1.14 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg index 0dd7e016de..6e2a8960bd 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.6 / 0.57, 2) infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,16 +38,13 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True -retraction_prime_speed = 15 skin_overlap = 10 -skirt_brim_line_width = 0.6 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 @@ -67,7 +63,6 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.57 / 0.57, 2) wall_thickness = 1.14 speed_wall_x = =math.ceil(speed_print * 25 / 25) speed_infill = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg index f9158efe5a..b13fcb5572 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.8 / 0.76, 2) infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -48,7 +46,6 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -skirt_brim_line_width = 0.8 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 @@ -67,5 +64,4 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.76 / 0.76, 2) wall_thickness = 1.52 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg index e4166238a2..935c0bb603 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = slightlycoarse weight = -3 @@ -26,9 +26,8 @@ cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 20 -infill_line_width = =round(line_width * 0.8 / 0.76, 2) infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 jerk_enabled = True jerk_layer_0 = =jerk_topbottom @@ -39,7 +38,6 @@ jerk_support_interface = =jerk_topbottom jerk_topbottom = =math.ceil(jerk_print * 5 / 25) jerk_wall = =math.ceil(jerk_print * 10 / 25) jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) -line_width = =machine_nozzle_size * 0.95 multiple_mesh_overlap = 0 retraction_count_max = 12 retraction_extrusion_window = 1 @@ -48,7 +46,6 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -skirt_brim_line_width = 0.8 speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 @@ -67,5 +64,4 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.76 / 0.76, 2) wall_thickness = 1.52 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg index efbaa41751..b3308686de 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg index 6d65773b4f..4161bd3781 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,6 +15,7 @@ variant = 0.4 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg index 2af498d11a..b26340fdb2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -15,6 +15,7 @@ variant = 0.4 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg index a2c142eb9d..a4ee94c36c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,6 +15,7 @@ variant = 0.4 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 20 / 40) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg index 6e04c36ddc..173b551e8b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 0 @@ -15,6 +15,7 @@ variant = 0.6 mm cool_min_layer_time = 5 cool_min_speed = 10 infill_sparse_density = 20 +retraction_prime_speed = =retraction_speed speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 20 / 50) diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg index f5d50dc4e2..8a5d70f1f7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg index f9a39d1dc9..35654230e4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg index 16b94257a1..35a2fd03db 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg index f925cbe3fb..f7fbb956b7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -19,7 +19,6 @@ cool_fan_speed_min = =cool_fan_speed cool_min_speed = 15 infill_sparse_density = 10 layer_0_z_overlap = 0.12 -line_width = 0.57 raft_airgap = 0.24 raft_base_line_spacing = 1.2 raft_base_line_width = 0.6 diff --git a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg index e33efe544b..bba792d870 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,7 +13,7 @@ variant = AA 0.25 [values] cool_fan_speed = 40 -infill_overlap = 15 +infill_overlap = =0 if infill_sparse_density > 80 else 15 material_final_print_temperature = =material_print_temperature - 5 retraction_prime_speed = 25 speed_topbottom = =math.ceil(speed_print * 30 / 55) diff --git a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg index 82d198fcfd..df61c040ae 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg index cf3add925f..a080ca08d8 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -14,7 +14,6 @@ variant = AA 0.25 [values] cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 12 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 ooze_shield_angle = 40 @@ -32,4 +31,3 @@ speed_wall = =math.ceil(speed_print * 30 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index 9035cf8182..1eaab8a586 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine - Experimental definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,16 +13,13 @@ variant = AA 0.25 is_experimental = True [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 -infill_line_width = =line_width -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -52,5 +49,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg index 1a54a96772..c09c172357 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg index 5dd39bc2b0..1287a5b43b 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,8 +15,8 @@ variant = AA 0.25 brim_width = 8 cool_fan_full_at_height = =layer_height_0 cool_min_speed = 10 -infill_overlap = 10 -infill_pattern = grid +infill_overlap = =0 if infill_sparse_density > 80 else 10 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index 5a7f5eae90..fe621363d4 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine - Experimental definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,18 +13,14 @@ variant = AA 0.25 is_experimental = True [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 10 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.92 machine_min_cool_heat_time_window = 15 material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 @@ -42,7 +38,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 13 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_travel = 300 @@ -56,5 +51,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg index e654e6cb98..0da1ac1283 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,10 +15,8 @@ variant = AA 0.25 brim_width = 8 cool_fan_full_at_height = =layer_height_0 cool_min_speed = 7 -infill_line_width = =line_width -infill_overlap = 10 -infill_pattern = grid -line_width = =machine_nozzle_size * 0.92 +infill_overlap = =0 if infill_sparse_density > 80 else 10 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,6 +32,4 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 -wall_line_width = =line_width -wall_line_width_x= =line_width wall_thickness = 0.7 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index eca798c787..4a0278c7c2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index 00bf855b3c..2d97668ea0 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index e2fdc7b5d6..135b2879b2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index b47fb56953..426e56f39e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index d1bae36b9d..b302bbee32 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 21e3233a35..e74bf83698 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index e1444db297..da5b43de8a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index ece9c09fa9..6175c54619 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,13 +12,10 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 80 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index 091d77f743..bfd389413b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,13 +12,10 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 80 cool_min_speed = 6 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index d845b1629f..72ba53f1a9 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -12,13 +12,10 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 50 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index bac4e38b36..12e23cdd52 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,13 +12,10 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 50 cool_min_speed = 7 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg index bc223b4c94..413b3da609 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg index 5a69df1f29..3dda0b04c5 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg index dd9843687b..9603700ff4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg index 8bbe73fe6a..2be06c4faf 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg index e83128b91f..f7389e904c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,6 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size material_print_temperature = =default_material_print_temperature + 10 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 @@ -33,4 +31,3 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg index cb65967138..54b8ecde2d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -15,8 +15,6 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size material_print_temperature = =default_material_print_temperature + 5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 @@ -33,4 +31,3 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg index d21492ef6c..2ac939ce56 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -15,8 +15,6 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 15 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 material_standby_temperature = 100 @@ -32,4 +30,3 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg index e7169ffcda..8d8ea8b8f8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,8 +15,6 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 12 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 material_standby_temperature = 100 @@ -32,4 +30,3 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index fc834e55cc..c2129652ee 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,18 +12,16 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = raft brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 90 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 6 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + infill_overlap = 0 -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -61,5 +59,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index b4d267c47e..1b3fc14f06 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,17 +12,14 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = raft brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 85 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 7 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -60,5 +57,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index 43d0f08be9..c704d6ca5d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -12,18 +12,16 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = raft brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 8 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + infill_overlap = 0 -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -61,5 +59,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index fb96b45dcf..2964528789 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,17 +12,15 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = raft brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -58,5 +56,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg index f629b0c15d..5ef579300e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg index 7bacf4dba5..ef63d93dd1 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg index ff4f8c1a05..a586629355 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index 61f0ecb42e..818e01f742 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -14,7 +14,6 @@ variant = AA 0.4 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed -infill_line_width = =round(line_width * 0.42 / 0.35, 2) machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index b865a7f82e..22a6b35322 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -14,7 +14,6 @@ variant = AA 0.4 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed -infill_line_width = =round(line_width * 0.42 / 0.35, 2) machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index e1c550bb41..bfc4c38c8c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -15,7 +15,6 @@ variant = AA 0.4 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 10 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index aa390b3177..c47f454305 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,7 +15,6 @@ variant = AA 0.4 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index cb3984e980..3d74fc55b3 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,21 +12,18 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 layer_height = 0.2 -line_width = =machine_nozzle_size * 0.95 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -48,7 +45,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -61,5 +57,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index be72b03a87..70935140fb 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,21 +12,18 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 layer_height = 0.15 -line_width = =machine_nozzle_size * 0.95 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -47,7 +44,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -61,5 +57,4 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1.1 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index 615ecc9c4a..8c84e4787c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,20 +12,17 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -46,7 +43,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -60,5 +56,4 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index 948c0ec259..b3b71ee573 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,7 +15,6 @@ variant = AA 0.4 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 -infill_line_width = =round(line_width * 0.45/0.35,2) jerk_print = 25 jerk_roofing = 1 layer_height_0 = 0.2 @@ -24,8 +23,6 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature -10 material_standby_temperature = 100 prime_tower_enable = False -roofing_layer_count = 2 -skin_outline_count = 0 skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 @@ -34,5 +31,4 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 36 / 50) speed_wall_0 = =math.ceil(speed_print * 26 / 50) top_bottom_thickness = 1.2 -wall_line_width_x = =round(line_width * 0.35/0.35,2) wall_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index cecd872cc2..71f674616f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -14,7 +14,6 @@ variant = AA 0.4 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed -infill_line_width = =round(line_width * 1.285, 2) layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 @@ -27,6 +26,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 -wall_line_width_x = =round(line_width * 0.35/0.35,2) wall_thickness = 1.23 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index d7e051ef77..42de88a562 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,7 +15,6 @@ variant = AA 0.4 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 -infill_line_width = =round(line_width * 1.285, 2) layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg index edbb182c8a..370f636bc4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,22 +12,19 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 layer_height = 0.2 -line_width = =machine_nozzle_size * 0.95 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -46,11 +43,11 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) +speed_topbottom = =math.ceil(speed_print * 0.8) speed_travel = 300 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) @@ -61,5 +58,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = 0.76 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg index 1926213e79..d7992a20b9 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,22 +12,19 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 layer_height = 0.15 -line_width = =machine_nozzle_size * 0.95 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -47,11 +44,11 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) +speed_topbottom = =math.ceil(speed_print * 0.8) speed_travel = 300 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) @@ -62,5 +59,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = 0.76 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg index 99e71d51ea..59f0cae71d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,21 +12,18 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -44,11 +41,11 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) +speed_topbottom = =math.ceil(speed_print * 0.8) speed_travel = 300 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) @@ -59,5 +56,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = 0.76 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg index 7ca9e87d04..88ffd1aeb1 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,7 +12,6 @@ material = generic_abs variant = AA 0.8 [values] -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 25 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg index 7e083a5725..344c8ec47b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -13,7 +13,6 @@ variant = AA 0.8 [values] layer_height = 0.4 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 30 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg index 8d594b37c8..a444a70796 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -13,7 +13,6 @@ variant = AA 0.8 [values] layer_height = 0.3 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 27 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index 674c6e531e..1da10d84ed 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast - Experimental definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,6 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 14 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 10 @@ -33,6 +31,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 4990be4a9b..633f48893d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint - Experimental definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,9 +15,7 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 7 * layer_height -infill_before_walls = True layer_height = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 @@ -34,6 +32,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 3871de17c6..d1e1397078 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast - Experimental definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,9 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 9 * layer_height -infill_before_walls = True + layer_height = 0.3 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 7 @@ -34,6 +33,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index 49d152beb7..293e2ec56d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -13,7 +13,6 @@ variant = AA 0.8 [values] brim_width = 15 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index 19033acb9f..d9bbacf909 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -14,7 +14,6 @@ variant = AA 0.8 [values] brim_width = 15 layer_height = 0.4 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index f8b9490904..1e57dd5049 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -14,7 +14,6 @@ variant = AA 0.8 [values] brim_width = 15 layer_height = 0.3 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 17 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index ea817a1250..8242fef441 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,6 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 @@ -28,7 +26,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 64c618cb8e..150d58ef48 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,8 +15,6 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width layer_height = 0.4 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 @@ -29,7 +27,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index 90c267578f..fb0aa8c1f2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,8 +15,6 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width layer_height = 0.3 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 @@ -29,8 +27,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 -support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg index 1990e3dc58..226522000c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast - Experimental definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,6 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 14 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature - 5 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 @@ -29,4 +27,3 @@ speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg index f420d27026..81c4bb3394 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint - Experimental definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,9 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 7 * layer_height -infill_before_walls = True + layer_height = 0.4 -line_width = =machine_nozzle_size * 0.875 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 raft_airgap = 0.5 @@ -29,4 +28,3 @@ speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg index 6e459423ca..d147d2259d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast - Experimental definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,9 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 9 * layer_height -infill_before_walls = True + layer_height = 0.3 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 @@ -30,4 +29,3 @@ speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index a52b0bf923..ec58dae719 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -13,7 +13,6 @@ variant = AA 0.8 [values] brim_width = 7 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index fee09b164b..a7a1593a29 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -14,7 +14,6 @@ variant = AA 0.8 [values] brim_width = 7 layer_height = 0.4 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index c6281c5369..93af43f386 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -14,7 +14,6 @@ variant = AA 0.8 [values] brim_width = 7 layer_height = 0.3 -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index 58ee629112..added0b5ad 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,9 +16,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size * 0.9375 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -33,10 +31,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index ce7940f251..0c55551453 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' layer_height = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -35,10 +33,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index 412378b689..00bdc6c219 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' layer_height = 0.3 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 6b15dace64..16093951d2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 @@ -36,17 +31,13 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_travel = 300 speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index 6fdc537ec8..9a2b73fa91 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 @@ -36,17 +31,13 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_travel = 300 speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 1bd7f19da9..d08659c036 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' layer_height = 0.3 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 2 @@ -36,17 +31,13 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_travel = 300 speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index af1c584841..1f86a66c38 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -29,9 +27,6 @@ prime_tower_enable = False retract_at_layer_change = False speed_print = 45 support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 6 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 6c6a523ed8..1c144290b4 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,8 +32,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =math.ceil(speed_print * 25/ 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x \ No newline at end of file diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index ef89c818aa..31f23166f0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,11 +32,8 @@ speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_wall = =math.ceil(speed_print * 25/ 35) speed_wall_0 = =math.ceil(speed_print * 20 / 35) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index ee82c4656b..f0bc86da9f 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,13 +16,8 @@ brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 gradual_infill_step_height = =4 * layer_height -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 material_final_print_temperature = =material_print_temperature @@ -41,7 +36,6 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 25 / 30) speed_travel = 300 @@ -49,14 +43,11 @@ speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index 795ab3be41..73ae3a5564 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,13 +16,8 @@ brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 gradual_infill_step_height = =4 * layer_height -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) layer_height = 0.4 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -42,7 +37,6 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_travel = 300 @@ -50,14 +44,11 @@ speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index 07cfb23955..af1cbe6051 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,13 +16,8 @@ brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 gradual_infill_step_height = =4 * layer_height -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) layer_height = 0.3 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -41,7 +36,6 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 23 / 30) speed_travel = 300 @@ -49,14 +43,11 @@ speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index 2b3f9f0a95..2ecf816627 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index 699bc8d8f0..a79f4c5c4c 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index b4a90dc634..f9f28d5bd8 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index 81c38f57ab..f141679608 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg index d68ff9e4fc..c7d641f2fa 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg index b448811253..8a53ae05e4 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg index a666f4c7c2..682ea6040f 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg index f4447806be..54953cf308 100644 --- a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index 7f81dd2f55..53d19220df 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index beaf9cec46..77e1a2349f 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg index bd7ff99ad7..0e2c8d4643 100644 --- a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg index c96b100241..7cdff20d14 100644 --- a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg index 8548513910..a7d2388302 100644 --- a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg index db81bbe679..a335a0aab1 100644 --- a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Coarse Quality definition = ultimaker_original [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -3 diff --git a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg index 3ed769bf8a..063b8a23f9 100644 --- a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = ultimaker_original [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg index 3d68b7916f..d0ae74abe8 100644 --- a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Coarse Quality definition = ultimaker_original [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = -4 diff --git a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg index c4fe5beff2..aa4a422051 100644 --- a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_original [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg index ab12950bf7..a6890e9884 100644 --- a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_original [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg index 07168ef802..125951c3d1 100644 --- a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_original [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_ABS_Normal_Quality.inst.cfg index f95f827f55..f3cc0937a0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_ABS_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,8 +13,7 @@ variant = AA 0.25 [values] cool_fan_speed = 40 -infill_overlap = 15 +infill_overlap = =0 if infill_sparse_density > 80 else 15 material_final_print_temperature = =material_print_temperature - 5 -retraction_prime_speed = 25 speed_topbottom = =math.ceil(speed_print * 30 / 55) wall_thickness = 0.92 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_CPE_Normal_Quality.inst.cfg index 43be843e4e..fc2ae7e17f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_CPE_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_Nylon_Normal_Quality.inst.cfg index 13e74a1451..27d9387476 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -14,7 +14,6 @@ variant = AA 0.25 [values] cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 12 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 ooze_shield_angle = 40 @@ -32,6 +31,6 @@ speed_wall = =math.ceil(speed_print * 30 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + raft_surface_speed = 45 speed_layer_0 = 10 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_PC_Normal_Quality.inst.cfg index 4688116e5a..59423682f1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_PC_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine - Experimental definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,16 +13,13 @@ variant = AA 0.25 is_experimental = True [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 -infill_line_width = =line_width -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -37,7 +34,6 @@ retraction_count_max = 80 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -51,5 +47,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_PETG_Normal_Quality.inst.cfg index 2617a43fbe..34fa0d7c84 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_PETG_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -19,5 +19,5 @@ speed_topbottom = =math.ceil(speed_print * 30 / 55) top_bottom_thickness = 0.8 wall_thickness = 0.92 initial_layer_line_width_factor = 100 -infill_before_walls = true + material_print_temperature = =default_material_print_temperature - 5 \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_PLA_Normal_Quality.inst.cfg index b6f28649e7..5f51f32b6a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,8 +15,8 @@ variant = AA 0.25 brim_width = 8 cool_fan_full_at_height = =layer_height_0 cool_min_speed = 10 -infill_overlap = 10 -infill_pattern = grid +infill_overlap = =0 if infill_sparse_density > 80 else 10 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_PP_Normal_Quality.inst.cfg index e4744aa80f..2f6c5f2888 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_PP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine - Experimental definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,18 +13,14 @@ variant = AA 0.25 is_experimental = True [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 10 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.92 machine_min_cool_heat_time_window = 15 material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 @@ -41,8 +37,7 @@ retraction_extrusion_window = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 13 -speed_equalize_flow_enabled = True +retraction_prime_speed = 15 speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_travel_layer_0 = 50 @@ -55,5 +50,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg index ef17d87895..447d0412aa 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,10 +15,8 @@ variant = AA 0.25 brim_width = 8 cool_fan_full_at_height = =layer_height_0 cool_min_speed = 7 -infill_line_width = =line_width -infill_overlap = 10 -infill_pattern = grid -line_width = =machine_nozzle_size * 0.92 +infill_overlap = =0 if infill_sparse_density > 80 else 10 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,7 +32,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 -wall_line_width = =line_width -wall_line_width_x= =line_width wall_thickness = 0.7 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print.inst.cfg index 116ad91bed..9644732c0c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -26,7 +26,7 @@ speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) wall_thickness = 1 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + speed_infill = =math.ceil(speed_print * 50 / 60) raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print.inst.cfg index 1af262d98d..81def5bbd8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -25,7 +25,7 @@ speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + speed_infill = =math.ceil(speed_print * 45 / 60) raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_High_Quality.inst.cfg index 903143d422..fe4dd8cd17 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -24,7 +24,7 @@ speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + speed_infill = =math.ceil(speed_print * 40 / 50) raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality.inst.cfg index d2d5b0d598..7e46754dde 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -23,7 +23,7 @@ speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + speed_infill = =math.ceil(speed_print * 40 / 55) raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Draft_Print.inst.cfg index 5a955c20a2..4d33d3f8e2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Fast_Print.inst.cfg index 0d2975af52..a803e13f20 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Normal_Quality.inst.cfg index 083f0dabf1..b3ef4abe94 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_VeryDraft_Print.inst.cfg new file mode 100644 index 0000000000..757743c70b --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_VeryDraft_Print.inst.cfg @@ -0,0 +1,40 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s3 + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -2 +material = generic_bam +variant = AA 0.4 +is_experimental = True + +[values] +brim_replaces_support = False +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed_max = =cool_fan_speed +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +material_print_temperature = =default_material_print_temperature + 5 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 20 / 70) +speed_topbottom = =math.ceil(speed_print * 35 / 70) +speed_wall = =math.ceil(speed_print * 50 / 70) +speed_wall_0 = =math.ceil(speed_wall * 35 / 50) +top_bottom_thickness = 1 +wall_thickness = 1 +support_brim_enable = True +support_interface_enable = True +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' +support_top_distance = 0.3 +support_bottom_distance = 0.3 +support_angle = 45 +support_join_distance = 5 +support_offset = 2 +support_pattern = triangles +support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg index db9339b7a1..1aad4c498f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,11 +12,9 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 80 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) + infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True @@ -34,6 +32,7 @@ retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg index f58fdab115..1172267ed4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,11 +12,9 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 80 cool_min_speed = 6 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) + infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True @@ -34,6 +32,7 @@ retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg index 9264ff5707..19b5094f03 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -12,11 +12,9 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 50 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) + infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True @@ -36,6 +34,7 @@ retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg index b367521994..a282ca7222 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,11 +12,9 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 50 cool_min_speed = 7 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) + infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True @@ -36,6 +34,7 @@ retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Draft_Print.inst.cfg index 5517ee4006..7c42d02ada 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,6 +16,7 @@ material_print_temperature = =default_material_print_temperature + 10 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_print = 60 speed_layer_0 = =math.ceil(speed_print * 20 / 60) @@ -25,5 +26,5 @@ speed_wall_0 = =math.ceil(speed_wall * 35 / 45) wall_thickness = 1 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 50 / 60) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print.inst.cfg index 47ccd64594..c5641afd64 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -17,11 +17,12 @@ material_print_temperature = =default_material_print_temperature + 5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_print = 60 speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 50 / 60) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_High_Quality.inst.cfg index 8782dcd835..a6ee66b17e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -19,10 +19,11 @@ material_print_temperature = =default_material_print_temperature - 5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_print = 50 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 40 / 50) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality.inst.cfg index e5205cb2b5..e888cf8ae0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,10 +17,11 @@ machine_nozzle_heat_up_speed = 1.5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_print = 55 speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 45 / 55) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Draft_Print.inst.cfg index d4fd3889eb..5fb23190d1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,8 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size + + material_print_temperature = =default_material_print_temperature + 10 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 @@ -28,12 +28,13 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_jerk = =jerk_layer_0 raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +retraction_prime_speed = =retraction_speed skin_overlap = 50 speed_layer_0 = 10 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + jerk_travel = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print.inst.cfg index 46a3b69710..a46e184d05 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -15,8 +15,8 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size + + material_print_temperature = =default_material_print_temperature + 5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 @@ -28,12 +28,13 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_jerk = =jerk_layer_0 raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +retraction_prime_speed = =retraction_speed skin_overlap = 50 speed_layer_0 = 10 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + jerk_travel = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_High_Quality.inst.cfg index 671765214c..50d885b55f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -15,8 +15,8 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 15 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size + + material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 material_standby_temperature = 100 @@ -27,12 +27,13 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_jerk = =jerk_layer_0 raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +retraction_prime_speed = =retraction_speed skin_overlap = 50 speed_layer_0 = 10 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + jerk_travel = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality.inst.cfg index 4e8dd5890b..84aebaf798 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,8 +15,8 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 12 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size + + material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 material_standby_temperature = 100 @@ -27,12 +27,13 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_jerk = =jerk_layer_0 raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +retraction_prime_speed = =retraction_speed skin_overlap = 50 speed_layer_0 = 10 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + jerk_travel = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Draft_Print.inst.cfg index 3fe24433d4..f4bb4ba024 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,18 +12,16 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 90 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 6 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + infill_overlap = 0 -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -45,7 +43,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -59,5 +56,5 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) + wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print.inst.cfg index deb45a4716..ece85f2168 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,17 +12,14 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 85 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 7 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -44,7 +41,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -59,5 +55,5 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) + wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_High_Quality.inst.cfg index 8e57e274d9..0caf9b1cd6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -12,18 +12,16 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 8 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + infill_overlap = 0 -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -45,7 +43,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -60,5 +57,5 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) + wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality.inst.cfg index 6f863051cd..751942b0f9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,17 +12,15 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -43,7 +41,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -58,5 +55,5 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) + wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Draft_Print.inst.cfg index 6b89810bf1..bff77a1390 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -25,6 +25,6 @@ speed_wall_0 = =math.ceil(speed_wall * 35 / 45) wall_thickness = 1 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 50 / 60) initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print.inst.cfg index 5d370e4f4b..ec87609aac 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -23,6 +23,6 @@ speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 50 / 60) initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_High_Quality.inst.cfg index a4c38784bc..2d0597b257 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -24,6 +24,6 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 40 / 50) initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality.inst.cfg index 2f48f82fa0..71d942fc6a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -23,6 +23,6 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 45 / 55) initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print.inst.cfg index 83b6b9631a..d5a5be70f8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -19,6 +19,7 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 40 / 70) @@ -28,7 +29,7 @@ top_bottom_thickness = 0.8 wall_thickness = 0.8 jerk_travel = 50 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) + infill_sparse_density = 15 layer_height_0 = 0.2 acceleration_wall = 2000 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print.inst.cfg index 3f1b10e5a5..d274eaffd3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -18,6 +18,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed speed_print = 70 speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 35 / 70) @@ -27,7 +28,7 @@ top_bottom_thickness = 1 wall_thickness = 1 jerk_travel = 50 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) + layer_height_0 = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_High_Quality.inst.cfg index d315355316..2f54d272fe 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -20,6 +20,7 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_print = 50 speed_layer_0 = 10 @@ -29,7 +30,7 @@ top_bottom_thickness = 1 wall_thickness = 1 jerk_travel = 50 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) + layer_height_0 = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality.inst.cfg index cfdc666561..2c23a4ae71 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -19,13 +19,14 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_layer_0 = 10 top_bottom_thickness = 1 wall_thickness = 1 jerk_travel = 50 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) + layer_height_0 = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print.inst.cfg new file mode 100644 index 0000000000..362d9ef5b9 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print.inst.cfg @@ -0,0 +1,46 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s3 + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -2 +material = generic_pla +variant = AA 0.4 +is_experimental = True + +[values] +infill_sparse_density = 15 + +jerk_travel = 20 +acceleration_print = 2000 +acceleration_wall = 1500 +acceleration_wall_0 = 1000 +acceleration_topbottom = 1000 +acceleration_travel = 2000 + +speed_print = 50 +speed_wall = 50 + +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed_max = =cool_fan_speed + +material_print_temperature = =default_material_print_temperature + 10 +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +material_standby_temperature = 100 + +prime_tower_enable = False +retraction_prime_speed = =retraction_speed +skin_edge_support_thickness = =0.9 if infill_sparse_density < 30 else 0 +skin_overlap = 20 + +wall_thickness = =line_width * 3 +top_bottom_thickness = 0.9 + +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' + +raft_airgap = =0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Draft_Print.inst.cfg index f526aedeeb..b59e2537e3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,20 +12,17 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -45,8 +42,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -58,5 +53,5 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Fast_Print.inst.cfg index 7c9c4f9331..3b3ff5b463 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,20 +12,16 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -45,8 +41,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -60,5 +54,5 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1.1 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Normal_Quality.inst.cfg index 34f91ec505..2530ca9490 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,20 +12,18 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -45,8 +43,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -60,5 +56,5 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg index cbded5073a..a3d1d1f255 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,7 +15,6 @@ variant = AA 0.4 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 -infill_line_width = =round(line_width * 0.45/0.35,2) jerk_print = 25 jerk_roofing = 1 layer_height_0 = 0.2 @@ -24,8 +23,7 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature -10 material_standby_temperature = 100 prime_tower_enable = False -roofing_layer_count = 2 -skin_outline_count = 0 +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 @@ -34,5 +32,5 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 36 / 50) speed_wall_0 = =math.ceil(speed_print * 26 / 50) top_bottom_thickness = 1.2 -wall_line_width_x = =round(line_width * 0.35/0.35,2) + wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg index 9f08095a74..cb2d019fdc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -14,18 +14,18 @@ variant = AA 0.4 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed -infill_line_width = =round(line_width * 1.285, 2) layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature -10 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 -wall_line_width_x = =round(line_width * 0.35/0.35,2) + wall_thickness = 1.23 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg index 746be00a1e..32ae7fbd53 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -20,6 +20,7 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_print = 45 speed_layer_0 = =math.ceil(speed_print * 20 / 45) @@ -31,6 +32,3 @@ wall_thickness = 1.23 layer_height_0 = 0.2 -line_width = =round(machine_nozzle_size * 1.025, 3) -wall_line_width_x = =line_width -infill_line_width = =line_width diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg index 2f2216e735..a81a3b9f08 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,13 +15,13 @@ variant = AA 0.4 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 -infill_line_width = =round(line_width * 1.285, 2) layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print.inst.cfg new file mode 100644 index 0000000000..bda8ad2775 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print.inst.cfg @@ -0,0 +1,46 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s3 + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -2 +material = generic_tough_pla +variant = AA 0.4 +is_experimental = True + +[values] +infill_sparse_density = 15 + +jerk_travel = 20 +acceleration_print = 2000 +acceleration_wall = 1500 +acceleration_wall_0 = 1000 +acceleration_topbottom = 1000 +acceleration_travel = 2000 + +speed_print = 50 +speed_wall = 50 + +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed_max = =cool_fan_speed + +material_print_temperature = =default_material_print_temperature - 5 +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +material_standby_temperature = 100 + +prime_tower_enable = False +retraction_prime_speed = =retraction_speed +skin_edge_support_thickness = =0.9 if infill_sparse_density < 30 else 0 +skin_overlap = 20 + +wall_thickness = =line_width * 3 +top_bottom_thickness = 1.2 + +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' + +raft_airgap = =0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Draft_Print.inst.cfg index 3039cdc443..8b0b8abf0c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,21 +12,19 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -43,13 +41,11 @@ retraction_extra_prime_amount = 0.8 retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 -retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) - +speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -59,5 +55,5 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = 0.76 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Fast_Print.inst.cfg index cd57a6dc4d..0f4a416273 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,21 +12,19 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -43,13 +41,11 @@ retraction_extra_prime_amount = 0.8 retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 -retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) - +speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -59,6 +55,6 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = 0.76 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Normal_Quality.inst.cfg index 65fead2c77..2b0b1c1720 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,21 +12,19 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -42,13 +40,11 @@ retraction_extra_prime_amount = 0.8 retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 -retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) - +speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -58,6 +54,6 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = 0.76 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Draft_Print.inst.cfg index 3f3cba64df..d38564ef8c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.8 [values] -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Superdraft_Print.inst.cfg index 5e31148f27..78593302e3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.8 [values] -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 25 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Verydraft_Print.inst.cfg index bcab838f25..a5495fc113 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.8 [values] -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 22 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg index acb2956ba0..ab0088e44f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast - Experimental definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 14 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.9375 + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 10 @@ -34,6 +34,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 5172e47945..edac440f9a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint - Experimental definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 7 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.9375 + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 @@ -34,6 +34,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg index d4a24e5eda..fb6e33aff1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast - Experimental definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 9 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.9375 + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 7 @@ -34,6 +34,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Draft_Print.inst.cfg index 7a6d3e2a80..9e293db418 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 15 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Superdraft_Print.inst.cfg index b617af05b6..0062aa89f8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 15 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Verydraft_Print.inst.cfg index 3aae5688f2..86e7b2465e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 15 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 17 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Draft_Print.inst.cfg index ec212ad66e..3cb85b22cb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,8 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 @@ -28,7 +28,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 2c076ff813..b1962e3f88 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,8 +15,8 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 @@ -28,7 +28,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg index d63d9feb60..5495eafcb3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,8 +15,8 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 @@ -28,7 +28,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Fast_Print.inst.cfg index c6f3be366d..40d148ef75 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast - Experimental definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 14 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.875 + + material_print_temperature = =default_material_print_temperature - 5 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 @@ -29,4 +29,3 @@ speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Superdraft_Print.inst.cfg index 26cf831350..4100787241 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint - Experimental definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 7 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.875 + + material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 raft_airgap = 0.5 @@ -28,4 +28,3 @@ speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Verydraft_Print.inst.cfg index 2adf259845..5908dd7630 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast - Experimental definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 9 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.875 + + material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 @@ -29,4 +29,3 @@ speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg index da6d3a34db..c34d5b281b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 7 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True @@ -24,4 +24,3 @@ speed_wall = =math.ceil(speed_print * 30 / 40) jerk_travel = 50 cool_fan_speed = 20 initial_layer_line_width_factor = 100 -infill_before_walls = true \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Superdraft_Print.inst.cfg index ca29c2e9cc..8940e53e23 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 7 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True @@ -25,4 +25,3 @@ speed_wall_0 = =math.ceil(speed_wall * 30 / 40) jerk_travel = 50 cool_fan_speed = 20 initial_layer_line_width_factor = 100 -infill_before_walls = true \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Verydraft_Print.inst.cfg index adfe9566e1..56d72118c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 7 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True @@ -25,4 +25,4 @@ jerk_travel = 50 cool_fan_speed = 20 layer_height_0 = 0.27 initial_layer_line_width_factor = 100 -infill_before_walls = true + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Draft_Print.inst.cfg index 032fb460ac..279e4f4beb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,8 +16,6 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -25,13 +23,9 @@ material_initial_print_temperature = =max(-273.15, material_print_temperature - material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = True support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x - retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Superdraft_Print.inst.cfg index 7e48c54c99..9c6ec154fe 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,8 +16,6 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -26,11 +24,8 @@ material_print_temperature = =default_material_print_temperature + 15 prime_tower_enable = True raft_margin = 10 support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x retract_at_layer_change = False speed_print = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Verydraft_Print.inst.cfg index aa8af68fda..6ef378376d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,8 +16,6 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -25,11 +23,8 @@ material_initial_print_temperature = =max(-273.15, material_print_temperature - material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = True support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x retract_at_layer_change = False speed_print = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Draft_Print.inst.cfg index f153052075..0350a1836f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 @@ -36,17 +31,12 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Superdraft_Print.inst.cfg index d80bdf2400..cfe751f38b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 @@ -36,17 +31,12 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Verydraft_Print.inst.cfg index 57802d961a..58a7cea554 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 @@ -35,17 +30,12 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg index b10c37c7bd..91e9ac5632 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -32,9 +30,6 @@ speed_topbottom = =round(speed_print * 35 / 45) speed_wall = =round(speed_print * 40 / 45) speed_wall_0 = =round(speed_print * 35 / 45) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 6 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg index a086b13b0d..db12dff2f0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,8 +32,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =math.ceil(speed_print * 25/ 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg index 47cd2201b8..a97439f98c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -35,9 +33,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_wall = =math.ceil(speed_print * 25/ 35) speed_wall_0 = =math.ceil(speed_print * 20 / 35) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Draft_Print.inst.cfg index fa261a74f4..47cb0623eb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,12 +15,7 @@ variant = AA 0.8 brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 material_final_print_temperature = =material_print_temperature @@ -39,24 +34,18 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 25 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 - jerk_travel = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Superdraft_Print.inst.cfg index 79803399f0..1155e46024 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,13 +15,8 @@ variant = AA 0.8 brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 material_final_print_temperature = =material_print_temperature @@ -40,24 +35,18 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 - jerk_travel = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Verydraft_Print.inst.cfg index ec5dd72392..ab5562474d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,13 +15,8 @@ variant = AA 0.8 brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 material_final_print_temperature = =material_print_temperature @@ -39,24 +34,18 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 23 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 - jerk_travel = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Draft_Print.inst.cfg index c9878078a9..16f2d610cf 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Fast_Print.inst.cfg index 204dcec1db..d9db33b80b 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_High_Quality.inst.cfg index 0229422380..9a03cdf835 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Normal_Quality.inst.cfg index 9e3a8fa99f..ae60902e17 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Verydraft_Print.inst.cfg new file mode 100644 index 0000000000..0269b5feac --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Verydraft_Print.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s3 + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -3 +material = generic_pva +variant = BB 0.4 +is_experimental = True + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +support_brim_enable = True +support_infill_sparse_thickness = 0.3 +support_interface_height = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Draft_Print.inst.cfg index 25298ed621..2cc124ff59 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Superdraft_Print.inst.cfg index 2102b5c07d..161c37b30a 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Verydraft_Print.inst.cfg index 27bebd0e58..d4ed04f23a 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Draft_Print.inst.cfg index 47eea46ca2..b71262e643 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Fast_Print.inst.cfg index af41302428..053afc04a5 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Draft_Print.inst.cfg index c9200fc7b4..259e269406 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Fast_Print.inst.cfg index 55894e6671..3233442e50 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Draft_Print.inst.cfg index 137cac4578..b4151ee80b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Fast_Print.inst.cfg index 8f71778f53..becf437583 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Draft_Print.inst.cfg index b761989d41..a167732e56 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Fast_Print.inst.cfg index 49c9f990fc..70a6eee76e 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Draft_Print.inst.cfg index 0b159caaae..c354eea9e3 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -3 @@ -17,9 +17,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Fast_Print.inst.cfg index bc66356818..a0778a7f88 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFCPE_Draft_Print.inst.cfg index 181c0c3b00..fb60ce93f7 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,7 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size * (0.58/0.6) material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +26,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFPA_Draft_Print.inst.cfg index cc0fcf4b57..9520fde07e 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,7 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size * (0.58/0.6) material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +26,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFCPE_Draft_Print.inst.cfg index 9b8ed176dc..12098a1949 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,7 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size * (0.58/0.6) material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +26,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFPA_Draft_Print.inst.cfg index a971c9a424..83577034b3 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,7 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size * (0.58/0.6) material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +26,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Draft_Print.inst.cfg index d6a178208d..c78b060dee 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -3 @@ -17,9 +17,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size * 0.9375 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Fast_Print.inst.cfg index 4ebd0bc401..031db016b6 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size * 0.9375 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg index c558a3d796..48b10a02e7 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg index 58f2e334f0..87382d1701 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg index cba9f9509b..d5562de611 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg index 1683f2cd0b..892d1ff74e 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg index 12d39c8c0a..46db6915de 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg index 075a1fe520..fcb3a47f5d 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_ABS_Normal_Quality.inst.cfg index b64a7bcad1..c1d936a7a7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_ABS_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,8 +13,7 @@ variant = AA 0.25 [values] cool_fan_speed = 40 -infill_overlap = 15 +infill_overlap = =0 if infill_sparse_density > 80 else 15 material_final_print_temperature = =material_print_temperature - 5 -retraction_prime_speed = 25 speed_topbottom = =math.ceil(speed_print * 30 / 55) wall_thickness = 0.92 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_CPE_Normal_Quality.inst.cfg index 9350fcc1cb..761a361df3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_CPE_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_Nylon_Normal_Quality.inst.cfg index 8557325517..a4a5945c91 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -14,7 +14,7 @@ variant = AA 0.25 [values] cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 12 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 ooze_shield_angle = 40 @@ -32,4 +32,4 @@ speed_wall = =math.ceil(speed_print * 30 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_PC_Normal_Quality.inst.cfg index beb1524922..2b6121e9ee 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_PC_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine - Experimental definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,16 +13,13 @@ variant = AA 0.25 is_experimental = True [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 -infill_line_width = =line_width -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -37,7 +34,6 @@ retraction_count_max = 80 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -51,5 +47,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_PETG_Normal_Quality.inst.cfg index 8c6f6adf61..d81ae5f88e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_PETG_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -19,5 +19,5 @@ speed_topbottom = =math.ceil(speed_print * 30 / 55) top_bottom_thickness = 0.8 wall_thickness = 0.92 initial_layer_line_width_factor = 100 -infill_before_walls = true + material_print_temperature = =default_material_print_temperature - 5 \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_PLA_Normal_Quality.inst.cfg index 24af92d4bf..621d837b92 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,8 +15,8 @@ variant = AA 0.25 brim_width = 8 cool_fan_full_at_height = =layer_height_0 cool_min_speed = 10 -infill_overlap = 10 -infill_pattern = grid +infill_overlap = =0 if infill_sparse_density > 80 else 10 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_PP_Normal_Quality.inst.cfg index 70e12cb59e..9870b07ab4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_PP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine - Experimental definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -13,18 +13,14 @@ variant = AA 0.25 is_experimental = True [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 10 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.92 machine_min_cool_heat_time_window = 15 material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 @@ -41,8 +37,7 @@ retraction_extrusion_window = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 13 -speed_equalize_flow_enabled = True +retraction_prime_speed = 15 speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_travel_layer_0 = 50 @@ -55,5 +50,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 travel_avoid_distance = 3 wall_0_inset = 0 -wall_line_width_x = =line_width wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg index 7c24d2457a..e4aa517abb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,10 +15,8 @@ variant = AA 0.25 brim_width = 8 cool_fan_full_at_height = =layer_height_0 cool_min_speed = 7 -infill_line_width = =line_width -infill_overlap = 10 -infill_pattern = grid -line_width = =machine_nozzle_size * 0.92 +infill_overlap = =0 if infill_sparse_density > 80 else 10 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,7 +32,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 -wall_line_width = =line_width -wall_line_width_x= =line_width wall_thickness = 0.7 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print.inst.cfg index 051f4fa66d..d6ef41abe1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -25,8 +25,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) wall_thickness = 1 - -infill_line_width = =round(line_width * 0.4 / 0.35, 2) speed_infill = =math.ceil(speed_print * 50 / 60) - raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print.inst.cfg index 0533b0b5a4..e5ed77862a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -24,8 +24,5 @@ speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) - -infill_line_width = =round(line_width * 0.4 / 0.35, 2) speed_infill = =math.ceil(speed_print * 45 / 60) - raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_High_Quality.inst.cfg index 3f89d6c781..73d1ad25d4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -24,7 +24,7 @@ speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + speed_infill = =math.ceil(speed_print * 40 / 50) raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality.inst.cfg index e888afc296..bb8f9c5bb9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -23,6 +23,6 @@ speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + speed_infill = =math.ceil(speed_print * 40 / 55) raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Draft_Print.inst.cfg index 3e6d895fe4..04353d64f9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Fast_Print.inst.cfg index da61b269a5..c1bb6be22f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Normal_Quality.inst.cfg index 57f591e025..3e70bcacaf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_VeryDraft_Print.inst.cfg new file mode 100644 index 0000000000..f4528b7fb8 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_VeryDraft_Print.inst.cfg @@ -0,0 +1,40 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -2 +material = generic_bam +variant = AA 0.4 +is_experimental = True + +[values] +brim_replaces_support = False +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed_max = =cool_fan_speed +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +material_print_temperature = =default_material_print_temperature + 5 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 20 / 70) +speed_topbottom = =math.ceil(speed_print * 35 / 70) +speed_wall = =math.ceil(speed_print * 50 / 70) +speed_wall_0 = =math.ceil(speed_wall * 35 / 50) +top_bottom_thickness = 1 +wall_thickness = 1 +support_brim_enable = True +support_interface_enable = True +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' +support_top_distance = 0.3 +support_bottom_distance = 0.3 +support_angle = 45 +support_join_distance = 5 +support_offset = 2 +support_pattern = triangles +support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg index 810fcda222..26dc7ea9c3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,11 +12,9 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 80 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) + infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True @@ -34,6 +32,7 @@ retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg index 29257ab771..4b3fcd3fd9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,11 +12,9 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 80 cool_min_speed = 6 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) + infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True @@ -34,6 +32,7 @@ retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg index 1aa2cada17..6fc1c398c4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -12,11 +12,9 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 50 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) + infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True @@ -36,6 +34,7 @@ retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg index bdd977e4cc..4f7901cd52 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,11 +12,8 @@ material = generic_cpe_plus variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 cool_fan_speed_max = 50 cool_min_speed = 7 -infill_line_width = =round(line_width * 0.35 / 0.35, 2) infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True @@ -36,6 +33,7 @@ retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Draft_Print.inst.cfg index 2ce4cf7c2c..3f3ce3ce79 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,6 +16,7 @@ material_print_temperature = =default_material_print_temperature + 10 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed skin_edge_support_thickness = =0.8 if infill_sparse_density < 30 else 0 skin_overlap = 20 speed_print = 60 @@ -27,5 +28,5 @@ top_thickness = =0.8 if infill_sparse_density < 30 and skin_edge_support_thickne wall_thickness = 1 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 50 / 60) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print.inst.cfg index cc011a92d6..cbabc4d432 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -17,11 +17,12 @@ material_print_temperature = =default_material_print_temperature + 5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_print = 60 speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 50 / 60) \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_High_Quality.inst.cfg index 59f14f480d..86c81a14a2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -19,10 +19,11 @@ material_print_temperature = =default_material_print_temperature - 5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_print = 50 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 40 / 50) \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality.inst.cfg index 639ebb0fce..62163c286e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -17,10 +17,11 @@ machine_nozzle_heat_up_speed = 1.5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 retraction_combing_max_distance = 50 +retraction_prime_speed = =retraction_speed speed_print = 55 speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 45 / 55) \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Draft_Print.inst.cfg index 776b098ba8..58d05433c0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,6 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size material_print_temperature = =default_material_print_temperature + 10 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 @@ -28,12 +26,11 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_jerk = =jerk_layer_0 raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +retraction_prime_speed = =retraction_speed skin_overlap = 50 speed_layer_0 = 10 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width - jerk_travel = 50 raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print.inst.cfg index 7d5d4492da..26a74aae03 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -15,8 +15,8 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size + + material_print_temperature = =default_material_print_temperature + 5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 @@ -28,12 +28,13 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_jerk = =jerk_layer_0 raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +retraction_prime_speed = =retraction_speed skin_overlap = 50 speed_layer_0 = 10 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + jerk_travel = 50 raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_High_Quality.inst.cfg index d67106e567..8a6d7bdca2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -15,8 +15,8 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 15 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size + + material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 material_standby_temperature = 100 @@ -27,12 +27,13 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_jerk = =jerk_layer_0 raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +retraction_prime_speed = =retraction_speed skin_overlap = 50 speed_layer_0 = 10 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + jerk_travel = 50 raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality.inst.cfg index 4c66ccd167..4976153044 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,8 +15,8 @@ variant = AA 0.4 adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 12 -infill_line_width = =round(line_width * 0.5 / 0.4, 2) -line_width = =machine_nozzle_size + + material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 material_standby_temperature = 100 @@ -27,12 +27,13 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_jerk = =jerk_layer_0 raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +retraction_prime_speed = =retraction_speed skin_overlap = 50 speed_layer_0 = 10 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -wall_line_width_x = =wall_line_width + jerk_travel = 50 raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Draft_Print.inst.cfg index b1d02ebaf9..601d1164fd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,18 +12,15 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 90 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 6 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) infill_overlap = 0 -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -45,7 +42,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -59,5 +55,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print.inst.cfg index 3de2fcff20..cad4e25f95 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,17 +12,14 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 85 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 7 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -44,7 +41,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -59,5 +55,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_High_Quality.inst.cfg index 9dbbc26b92..6cc4d15e73 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -12,18 +12,16 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 8 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + infill_overlap = 0 -infill_overlap_mm = 0.05 -infill_pattern = triangles +infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -45,7 +43,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -60,5 +57,5 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) + wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality.inst.cfg index c4fea005ab..093a04b8a2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,17 +12,15 @@ material = generic_pc variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 adhesion_type = brim brim_width = 20 cool_fan_full_at_height = =layer_height_0 + layer_height cool_fan_speed_max = 50 cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) + infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 @@ -43,7 +41,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 15 skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 @@ -58,5 +55,5 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) + wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Draft_Print.inst.cfg index a0e9583330..2d39086d6f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -26,6 +26,6 @@ speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_thickness = =0.8 if infill_sparse_density < 30 and skin_edge_support_thickness == 0.8 else top_bottom_thickness wall_thickness = 1 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 50 / 60) initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print.inst.cfg index 2b6713aed4..1b7838985e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -23,6 +23,6 @@ speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 50 / 60) initial_layer_line_width_factor = 100 \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_High_Quality.inst.cfg index 8e58a3be8e..aa6c6cb3b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -24,6 +24,6 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 40 / 50) initial_layer_line_width_factor = 100 \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality.inst.cfg index f52b1a6023..28842615cf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -22,6 +22,6 @@ speed_print = 55 speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' speed_infill = =math.ceil(speed_print * 45 / 55) initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print.inst.cfg index 86a808cabb..f339aa3988 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -19,6 +19,7 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_edge_support_thickness = =0.8 if infill_sparse_density < 30 else 0 skin_overlap = 20 speed_layer_0 = 10 @@ -29,7 +30,7 @@ top_bottom_thickness = 0.8 wall_thickness = 0.8 jerk_travel = 50 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) + infill_sparse_density = 15 layer_height_0 = 0.2 acceleration_wall = 2000 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print.inst.cfg index 9a94b97028..206442121b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -18,6 +18,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed speed_print = 70 speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 35 / 70) @@ -27,6 +28,6 @@ top_bottom_thickness = 1 wall_thickness = 1 jerk_travel = 50 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) + layer_height_0 = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_High_Quality.inst.cfg index b0ff7ddf55..3f29983cfd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -20,6 +20,7 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_print = 50 speed_layer_0 = 10 @@ -29,6 +30,6 @@ top_bottom_thickness = 1 wall_thickness = 1 jerk_travel = 50 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) + layer_height_0 = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality.inst.cfg index 7e456edaa8..227730f359 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -19,12 +19,13 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_layer_0 = 10 top_bottom_thickness = 1 wall_thickness = 1 jerk_travel = 50 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) + layer_height_0 = 0.2 raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print.inst.cfg new file mode 100644 index 0000000000..141c4604b0 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print.inst.cfg @@ -0,0 +1,46 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -2 +material = generic_pla +variant = AA 0.4 +is_experimental = True + +[values] +infill_sparse_density = 15 + +jerk_travel = 20 +acceleration_print = 2000 +acceleration_wall = 1500 +acceleration_wall_0 = 1000 +acceleration_topbottom = 1000 +acceleration_travel = 2000 + +speed_print = 50 +speed_wall = 50 + +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed_max = =cool_fan_speed + +material_print_temperature = =default_material_print_temperature + 10 +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +material_standby_temperature = 100 + +prime_tower_enable = False +retraction_prime_speed = =retraction_speed +skin_edge_support_thickness = =0.9 if infill_sparse_density < 30 else 0 +skin_overlap = 20 + +wall_thickness = =line_width * 3 +top_bottom_thickness = 0.9 + +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' + +raft_airgap = =0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Draft_Print.inst.cfg index f51da10121..8c8091cb1e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,20 +12,18 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -45,8 +43,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -58,5 +54,5 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Fast_Print.inst.cfg index 0e69f5c690..047ee82739 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,20 +12,18 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -45,8 +43,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -60,5 +56,5 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1.1 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Normal_Quality.inst.cfg index c343052560..c91c73983e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,20 +12,18 @@ material = generic_pp variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 20 cool_fan_speed_max = 100 cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 7 cool_min_speed = 2.5 -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = tetrahedral +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -45,8 +43,6 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -retraction_prime_speed = 18 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) @@ -60,5 +56,5 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg index 1ee994d3c9..d65f61cf74 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,7 +15,6 @@ variant = AA 0.4 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 -infill_line_width = =round(line_width * 0.45/0.35,2) jerk_print = 25 jerk_roofing = 1 layer_height_0 = 0.2 @@ -24,8 +23,7 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature -10 material_standby_temperature = 100 prime_tower_enable = False -roofing_layer_count = 2 -skin_outline_count = 0 +retraction_prime_speed = =retraction_speed skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 @@ -34,5 +32,5 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 36 / 50) speed_wall_0 = =math.ceil(speed_print * 26 / 50) top_bottom_thickness = 1.2 -wall_line_width_x = =round(line_width * 0.35/0.35,2) + wall_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg index 0c58eb3c3d..bea0ca9228 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -14,18 +14,18 @@ variant = AA 0.4 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed -infill_line_width = =round(line_width * 1.285, 2) layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature -10 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 -wall_line_width_x = =round(line_width * 0.35/0.35,2) + wall_thickness = 1.23 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg index 040aad4c7f..190f2f8e06 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 @@ -20,6 +20,7 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_print = 45 speed_layer_0 = =math.ceil(speed_print * 20 / 45) @@ -28,9 +29,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 wall_thickness = 1.23 - layer_height_0 = 0.2 - -line_width = =round(machine_nozzle_size * 1.025, 3) -wall_line_width_x = =line_width -infill_line_width = =line_width diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg index 08cc0b932a..190f3422b0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -15,13 +15,13 @@ variant = AA 0.4 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 -infill_line_width = =round(line_width * 1.285, 2) layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 material_standby_temperature = 100 prime_tower_enable = False +retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print.inst.cfg new file mode 100644 index 0000000000..9e614cdd28 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print.inst.cfg @@ -0,0 +1,46 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -2 +material = generic_tough_pla +variant = AA 0.4 +is_experimental = True + +[values] +infill_sparse_density = 15 + +jerk_travel = 20 +acceleration_print = 2000 +acceleration_wall = 1500 +acceleration_wall_0 = 1000 +acceleration_topbottom = 1000 +acceleration_travel = 2000 + +speed_print = 50 +speed_wall = 50 + +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed_max = =cool_fan_speed + +material_print_temperature = =default_material_print_temperature - 5 +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +material_standby_temperature = 100 + +prime_tower_enable = False +retraction_prime_speed = =retraction_speed +skin_edge_support_thickness = =0.9 if infill_sparse_density < 30 else 0 +skin_overlap = 20 + +wall_thickness = =line_width * 3 +top_bottom_thickness = 1.2 + +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' + +raft_airgap = =0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Draft_Print.inst.cfg index b6d250cb38..a867e168b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,21 +12,19 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -43,13 +41,11 @@ retraction_extra_prime_amount = 0.8 retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 -retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) - +speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -59,5 +55,5 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = 0.76 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Fast_Print.inst.cfg index 3e4ae7c21b..f4ef171a69 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 @@ -12,21 +12,19 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -43,13 +41,11 @@ retraction_extra_prime_amount = 0.8 retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 -retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) - +speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -59,6 +55,6 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = 0.76 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Normal_Quality.inst.cfg index d2ad2229a0..ce9b26051e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 @@ -12,21 +12,19 @@ material = generic_tpu variant = AA 0.4 [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 8.75 cool_fan_speed_max = 100 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height -infill_line_width = =round(line_width * 0.38 / 0.38, 2) + infill_overlap = 0 -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -line_width = =machine_nozzle_size * 0.95 + machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -42,13 +40,11 @@ retraction_extra_prime_amount = 0.8 retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 -retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 -speed_topbottom = =math.ceil(speed_print * 25 / 25) - +speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -58,6 +54,6 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 -wall_line_width_x = =line_width + wall_thickness = 0.76 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Draft_Print.inst.cfg index f282a02a0d..01d7e53670 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.8 [values] -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Superdraft_Print.inst.cfg index 6d1e555ada..96b7e79ad5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.8 [values] -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 25 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Verydraft_Print.inst.cfg index 7b32a740c6..d7a7a85eeb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -12,7 +12,7 @@ material = generic_abs variant = AA 0.8 [values] -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 22 material_standby_temperature = 100 speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg index ffd6339ac7..36145680b5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast - Experimental definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,7 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 14 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.9375 + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 10 @@ -34,6 +33,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg index c3e3229d9a..d31ca4ffbe 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint - Experimental definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 7 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.9375 + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 @@ -34,6 +34,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg index 1de7418ffc..5770d4057c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast - Experimental definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 9 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.9375 + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 7 @@ -34,6 +34,6 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.6 / 0.7, 2) + support_z_distance = =layer_height top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Draft_Print.inst.cfg index d019a82ea2..f7dbe85c00 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 15 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Superdraft_Print.inst.cfg index 79b6545f1f..07e19b9ca3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 15 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Verydraft_Print.inst.cfg index 8025057884..350c99833c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 15 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature + 17 material_standby_temperature = 100 prime_tower_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Draft_Print.inst.cfg index 0e39b1f58e..467eec435c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,6 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 @@ -28,7 +26,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg index 170e43a811..4d307200d4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,8 +15,6 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 @@ -28,7 +26,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg index 7d8bd681fa..de5699b976 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,8 +15,8 @@ variant = AA 0.8 brim_width = 5.6 cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -infill_before_walls = True -infill_line_width = =line_width + + machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 @@ -28,7 +28,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) raft_margin = 10 raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Fast_Print.inst.cfg index 58e87fcd63..57d0f13aca 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast - Experimental definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 14 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.875 + + material_print_temperature = =default_material_print_temperature - 5 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 @@ -29,4 +29,4 @@ speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Superdraft_Print.inst.cfg index c5073fb76d..1ee17fd498 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint - Experimental definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,8 +15,8 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 7 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.875 + + material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 raft_airgap = 0.5 @@ -28,4 +28,4 @@ speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Verydraft_Print.inst.cfg index e15399605b..be23988e50 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast - Experimental definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,8 +15,6 @@ is_experimental = True [values] brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 9 * layer_height -infill_before_walls = True -line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 @@ -29,4 +27,3 @@ speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -support_line_width = =round(line_width * 0.6 / 0.7, 2) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg index 40c7ab37b5..762b2ebca8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 7 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True @@ -24,4 +24,3 @@ speed_wall = =math.ceil(speed_print * 30 / 40) jerk_travel = 50 cool_fan_speed = 20 initial_layer_line_width_factor = 100 -infill_before_walls = true \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Superdraft_Print.inst.cfg index 5ccdde4c27..855a5ae292 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 7 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True @@ -25,4 +25,4 @@ speed_wall_0 = =math.ceil(speed_wall * 30 / 40) jerk_travel = 50 cool_fan_speed = 20 initial_layer_line_width_factor = 100 -infill_before_walls = true + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Verydraft_Print.inst.cfg index 1a7c642630..8b688debf0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -13,7 +13,7 @@ variant = AA 0.8 [values] brim_width = 7 -line_width = =machine_nozzle_size * 0.875 + material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = True @@ -24,4 +24,4 @@ speed_wall = =math.ceil(speed_print * 30 / 40) jerk_travel = 50 cool_fan_speed = 20 initial_layer_line_width_factor = 100 -infill_before_walls = true + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Draft_Print.inst.cfg index 1bbd71def3..495f18dc4a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,8 +16,6 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -25,13 +23,9 @@ material_initial_print_temperature = =max(-273.15, material_print_temperature - material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = True support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x - retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Superdraft_Print.inst.cfg index 6bd6273181..814c7a2b5e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,8 +16,6 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -26,11 +24,8 @@ material_print_temperature = =default_material_print_temperature + 15 prime_tower_enable = True raft_margin = 10 support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x retract_at_layer_change = False speed_print = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Verydraft_Print.inst.cfg index 7191e32cf4..bf341d3bf0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,8 +16,6 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -25,11 +23,8 @@ material_initial_print_temperature = =max(-273.15, material_print_temperature - material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = True support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x retract_at_layer_change = False speed_print = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Draft_Print.inst.cfg index 5d27f4f326..2042e29518 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 @@ -36,17 +31,12 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Superdraft_Print.inst.cfg index 330f9180d2..f0b09c333d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 @@ -36,17 +31,12 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Verydraft_Print.inst.cfg index f062068896..9cb6b43d70 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,12 +16,7 @@ brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = tetrahedral -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 @@ -35,17 +30,12 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg index 73c68015c1..6f02b91def 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -32,9 +30,6 @@ speed_topbottom = =round(speed_print * 35 / 45) speed_wall = =round(speed_print * 40 / 45) speed_wall_0 = =round(speed_print * 35 / 45) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 6 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg index 9b596875c3..818e9130e5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,8 +32,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =math.ceil(speed_print * 25/ 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg index 496e93a34c..b5d32d020c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -16,10 +16,8 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.75 / 0.75, 2) -infill_pattern = cubic +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' layer_height_0 = 0.4 -line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -35,9 +33,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_wall = =math.ceil(speed_print * 25/ 35) speed_wall_0 = =math.ceil(speed_print * 20 / 35) support_angle = 70 -support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.75 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Draft_Print.inst.cfg index 0161516841..d89919328e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -15,12 +15,7 @@ variant = AA 0.8 brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 material_final_print_temperature = =material_print_temperature @@ -39,24 +34,18 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 25 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 - jerk_travel = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Superdraft_Print.inst.cfg index 57f8e59466..99511e1ab6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 @@ -15,13 +15,8 @@ variant = AA 0.8 brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 material_final_print_temperature = =material_print_temperature @@ -39,25 +34,18 @@ retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 -retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 - jerk_travel = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Verydraft_Print.inst.cfg index 473aca93dc..19842185fe 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 @@ -15,13 +15,8 @@ variant = AA 0.8 brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 top_skin_expand_distance = =line_width * 2 -infill_before_walls = True -infill_line_width = =round(line_width * 0.7 / 0.8, 2) -infill_pattern = cross_3d +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 -jerk_prime_tower = =math.ceil(jerk_print * 25 / 25) -jerk_support = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25) machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 material_final_print_temperature = =material_print_temperature @@ -39,24 +34,18 @@ retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 -skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 23 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 support_bottom_distance = =support_z_distance -support_line_width = =round(line_width * 0.7 / 0.8, 2) support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 travel_avoid_distance = 1.5 -travel_compensate_overlapping_walls_0_enabled = False wall_0_wipe_dist = =line_width * 2 -wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 - jerk_travel = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Draft_Print.inst.cfg index 8be95c4084..5f6991ba3a 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Fast_Print.inst.cfg index 65f687ba47..e06ff12762 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_High_Quality.inst.cfg index 26c158a3f6..e29b8a9d32 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Normal_Quality.inst.cfg index a2ab10fc8a..7f096281d0 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Verydraft_Print.inst.cfg new file mode 100644 index 0000000000..50342bae4c --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Verydraft_Print.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 19 +type = quality +quality_type = verydraft +weight = -3 +material = generic_pva +variant = BB 0.4 +is_experimental = True + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +support_brim_enable = True +support_infill_sparse_thickness = 0.3 +support_interface_height = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Draft_Print.inst.cfg index 59e69a3ca0..d578d4fd70 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Superdraft_Print.inst.cfg index 9e6f8e406e..5c8039eed6 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Verydraft_Print.inst.cfg index 8e56e5d9fe..e10ad8cfdf 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Draft_Print.inst.cfg index 374bcf6426..d685b0686e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Fast_Print.inst.cfg index f0469adc00..1d096fdfd2 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Draft_Print.inst.cfg index 62a699d0ea..e55f7b8e62 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Fast_Print.inst.cfg index b3180a591f..2aac3f8e40 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Draft_Print.inst.cfg index c1cf305c5f..b84b684382 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Fast_Print.inst.cfg index 59fb6c774f..3244681911 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Draft_Print.inst.cfg index 3afdaf6474..6002ab3ac8 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Fast_Print.inst.cfg index 2771bcc7a0..eb9a93ef15 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,9 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size + material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +28,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Draft_Print.inst.cfg index 12143e81d7..a9cef5ca36 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -3 @@ -17,9 +17,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Fast_Print.inst.cfg index 36a9c35550..e8a37bb6fc 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFCPE_Draft_Print.inst.cfg index cc72bfe7f5..df034335ef 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,8 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size * (0.58/0.6) material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +27,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFPA_Draft_Print.inst.cfg index afff7623fb..299ba1eb95 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,8 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size * (0.58/0.6) material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +27,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFCPE_Draft_Print.inst.cfg index 63e7e58bbc..d4a52ed87e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFCPE_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,8 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width + initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size * (0.58/0.6) material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +27,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFPA_Draft_Print.inst.cfg index a44c68e57d..2e7f7b3eb7 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFPA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 @@ -17,9 +17,7 @@ cool_fan_enabled = True cool_min_layer_time = 7 cool_min_layer_time_fan_speed_max = 15 cool_min_speed = 6 -infill_line_width = =line_width initial_layer_line_width_factor = 130.0 -line_width = =machine_nozzle_size * (0.58/0.6) material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =material_print_temperature @@ -28,4 +26,4 @@ skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 -wall_line_width_x = =line_width + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Draft_Print.inst.cfg index 437a4a45b5..9052dfee7d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Draft_Print.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -3 @@ -17,9 +17,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size * 0.9375 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Fast_Print.inst.cfg index d9628abb66..fd41d88a76 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Fast_Print.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -2 @@ -17,9 +17,7 @@ cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height -infill_line_width = =round(line_width * 0.65 / 0.75, 2) -infill_pattern = triangles -line_width = =machine_nozzle_size * 0.9375 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) @@ -34,10 +32,7 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_line_width = =line_width * 0.75 support_pattern = ='triangles' support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 -wall_line_width = =round(line_width * 0.75 / 0.75, 2) -wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x diff --git a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg index de875dda93..1434c8e0f8 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg index 022aa80bee..271449a4f9 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg index 07f4d8bc24..51cc431a2b 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg index 82ecf40b0d..b4a162ce06 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg index b96532c854..80843b96f6 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = superdraft weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg index fc063ad236..d5a0727e4c 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = verydraft weight = -3 diff --git a/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.10.inst.cfg index eff5d4f83d..9c9c186169 100644 --- a/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.30_l0.10 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.15.inst.cfg index 7743bc0fee..4e066623c7 100644 --- a/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.30_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.20.inst.cfg index f38eaa60fd..cd806299f1 100644 --- a/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.30_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.25.inst.cfg index d5afbff24c..e0cf6cb961 100644 --- a/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.30/abs_nozzle_0.30_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.30_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.10.inst.cfg index f0bd541f56..c3b471df01 100644 --- a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.40_l0.10 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.15.inst.cfg index b44409eca2..2a468214f9 100644 --- a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.40_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.20.inst.cfg index ade389ec99..4a51b4ddc4 100644 --- a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.40_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.25.inst.cfg index 88c4f70002..e46fcf19f4 100644 --- a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.40_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.30.inst.cfg index f44edfbdaa..20952f3808 100644 --- a/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.40/abs_nozzle_0.40_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.40_l0.30 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.15.inst.cfg index 3174ba0de2..cf7eb644ee 100644 --- a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.50_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.20.inst.cfg index 73680584b1..a2be6b725a 100644 --- a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.50_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.25.inst.cfg index 0c8972e078..f3a322e915 100644 --- a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.50_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.30.inst.cfg index efb08ad538..bc5f9b0a11 100644 --- a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.50_l0.30 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 material = generic_abs diff --git a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.35.inst.cfg index 9a7e3a50cd..12404fb87f 100644 --- a/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0.50/abs_nozzle_0.50_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = abs_n0.50_l0.35 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q035 material = generic_abs diff --git a/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.10.inst.cfg index 97e2d7a56f..05fa89bc16 100644 --- a/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.30_l0.10 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.15.inst.cfg index f8342d3bf5..97d0c94c02 100644 --- a/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.30_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.20.inst.cfg index 5cdca9f8a8..debb99b601 100644 --- a/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.30_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.25.inst.cfg index ca1144a25a..0a04af4317 100644 --- a/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.30/hips_nozzle_0.30_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.30_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.10.inst.cfg index 238ffd5803..877ff27fa0 100644 --- a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.40_l0.10 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.15.inst.cfg index f210a9e775..99d5e9f85d 100644 --- a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.40_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.20.inst.cfg index a70c57e601..e3c5f497fa 100644 --- a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.40_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.25.inst.cfg index 4a6429b922..b6b7b99c8f 100644 --- a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.40_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_abs diff --git a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.30.inst.cfg index 5ac23b0d8a..b534f259a2 100644 --- a/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.40/hips_nozzle_0.40_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.40_l0.30 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.15.inst.cfg index 88b254f599..b20e518ee7 100644 --- a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.50_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.20.inst.cfg index c3c6fe56b9..1278356c67 100644 --- a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.50_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.25.inst.cfg index 5ca970bc9c..0c5d125066 100644 --- a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.50_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.30.inst.cfg index 2dac72c644..598004a3ec 100644 --- a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.50_l0.30 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 material = generic_hips diff --git a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.35.inst.cfg index 1da113491f..08bfae18c1 100644 --- a/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0.50/hips_nozzle_0.50_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = hips_n0.50_l0.35 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q035 material = generic_hips diff --git a/resources/quality/uni_base/layer_0.05.inst.cfg b/resources/quality/uni_base/layer_0.05.inst.cfg index 08c2898a8e..cc2a1af232 100644 --- a/resources/quality/uni_base/layer_0.05.inst.cfg +++ b/resources/quality/uni_base/layer_0.05.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q005 weight = -1 diff --git a/resources/quality/uni_base/layer_0.10.inst.cfg b/resources/quality/uni_base/layer_0.10.inst.cfg index 359cd19b12..2e81305a98 100644 --- a/resources/quality/uni_base/layer_0.10.inst.cfg +++ b/resources/quality/uni_base/layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 weight = -2 diff --git a/resources/quality/uni_base/layer_0.15.inst.cfg b/resources/quality/uni_base/layer_0.15.inst.cfg index 1c50033230..01bc59f87b 100644 --- a/resources/quality/uni_base/layer_0.15.inst.cfg +++ b/resources/quality/uni_base/layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = Fast Super Quality definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 weight = -3 diff --git a/resources/quality/uni_base/layer_0.20.inst.cfg b/resources/quality/uni_base/layer_0.20.inst.cfg index 17e655a62e..1b96eaf8ff 100644 --- a/resources/quality/uni_base/layer_0.20.inst.cfg +++ b/resources/quality/uni_base/layer_0.20.inst.cfg @@ -1,10 +1,10 @@ [general] version = 4 -name = Standart Quality +name = Standard Quality definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 weight = -4 diff --git a/resources/quality/uni_base/layer_0.25.inst.cfg b/resources/quality/uni_base/layer_0.25.inst.cfg index e83cf23cf3..89bab0c8b9 100644 --- a/resources/quality/uni_base/layer_0.25.inst.cfg +++ b/resources/quality/uni_base/layer_0.25.inst.cfg @@ -1,10 +1,10 @@ [general] version = 4 -name = Fast Standart Quality +name = Fast Standard Quality definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 weight = -5 diff --git a/resources/quality/uni_base/layer_0.30.inst.cfg b/resources/quality/uni_base/layer_0.30.inst.cfg index 8a7633c50b..aa1dc669c4 100644 --- a/resources/quality/uni_base/layer_0.30.inst.cfg +++ b/resources/quality/uni_base/layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = Fast Print Quality definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 weight = -6 diff --git a/resources/quality/uni_base/layer_0.35.inst.cfg b/resources/quality/uni_base/layer_0.35.inst.cfg index b02bbeb789..74cd00a912 100644 --- a/resources/quality/uni_base/layer_0.35.inst.cfg +++ b/resources/quality/uni_base/layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q035 weight = -7 diff --git a/resources/quality/uni_base/layer_0.40.inst.cfg b/resources/quality/uni_base/layer_0.40.inst.cfg index ca71c62969..6cd10c48f7 100644 --- a/resources/quality/uni_base/layer_0.40.inst.cfg +++ b/resources/quality/uni_base/layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = Poor Draft Quality definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q040 weight = -8 diff --git a/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.10.inst.cfg index 80a1f02413..9858a1d791 100644 --- a/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.30_l0.10 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.15.inst.cfg index c7ea1a292b..267a966f10 100644 --- a/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.30_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.20.inst.cfg index 375117a473..151349ce49 100644 --- a/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.30_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.25.inst.cfg index 5f9541c58e..9dd7091fc8 100644 --- a/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.30/petg_nozzle_0.30_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.30_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.10.inst.cfg index 077af364bd..a38870ea0d 100644 --- a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.40_l0.10 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.15.inst.cfg index 5b4b04efea..261996701b 100644 --- a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.40_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.20.inst.cfg index 186889d4a5..9d3966c132 100644 --- a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.40_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.25.inst.cfg index d525c622d4..7efecb7ed3 100644 --- a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.40_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.30.inst.cfg index 7283df9d7f..d0f8b8c022 100644 --- a/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.40/petg_nozzle_0.40_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.40_l0.30 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.15.inst.cfg index 432d4098ad..e48525567e 100644 --- a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.50_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.20.inst.cfg index 54ac7820c8..476d284146 100644 --- a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.50_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.25.inst.cfg index 5e922bd3d4..dc46b21841 100644 --- a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.50_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.30.inst.cfg index 132b4ec33a..044f68456a 100644 --- a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.50_l0.30 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 material = generic_petg diff --git a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.35.inst.cfg index 04a611b514..68df5033ce 100644 --- a/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0.50/petg_nozzle_0.50_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = petg_n0.50_l0.35 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q035 material = generic_petg diff --git a/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.10.inst.cfg index 564ad50dae..20115e1816 100644 --- a/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.30_l0.10 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.15.inst.cfg index 345c0800fd..4b8ab84479 100644 --- a/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.30_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.20.inst.cfg index 0fb505867b..74cd8ba804 100644 --- a/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.30_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.25.inst.cfg index 3d714e7643..beefc17e71 100644 --- a/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.30/pla_nozzle_0.30_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.30_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.10.inst.cfg index 60a6664b64..f51bf68c55 100644 --- a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.40_l0.10 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q010 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.15.inst.cfg index 1af08ec21c..b10faa6d61 100644 --- a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.40_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.20.inst.cfg index 59200c1142..1edc763cd7 100644 --- a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.40_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.25.inst.cfg index bc653477a6..dbed663672 100644 --- a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.40_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.30.inst.cfg index eb31f86a05..f438c48700 100644 --- a/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.40/pla_nozzle_0.40_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.40_l0.30 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.15.inst.cfg index 62bf222496..491ea791bf 100644 --- a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.50_l0.15 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q015 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.20.inst.cfg index f19ad2c6ee..25f2e9ab9b 100644 --- a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.50_l0.20 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q020 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.25.inst.cfg index 59de9b5795..e70aed5e0f 100644 --- a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.50_l0.25 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q025 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.30.inst.cfg index 1fe9a41bfb..367df338a8 100644 --- a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.50_l0.30 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q030 material = generic_pla diff --git a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.35.inst.cfg index ee86c2b6ed..e75d099279 100644 --- a/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0.50/pla_nozzle_0.50_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = pla_n0.50_l0.35 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = q035 material = generic_pla diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg index 495779d2ef..cedb17f5f2 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extreme definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extreme weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg index 3f331b7ca4..803ada4ddc 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg index c92ba2f524..d4b52edae1 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg index 2082bc8827..143d6e7ea7 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extreme definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extreme weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg index 33b13e16b5..35279a4b6d 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg index 9c0de57aba..4f2063b4e5 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg index 0333ea2560..095c52a0e0 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extreme definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extreme weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg index 59a93a80df..f5cb53ca37 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg index c89ea21715..d6abd345f1 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg index 1cc37642b1..63181c6780 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extreme definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extreme weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg index 026cae88d5..ae4e2b1207 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg index 987fa4be72..065c1f8f13 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg index e54d293ec5..7d242c934d 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Extreme definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extreme weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg index e0df3c4205..7d9a49cdfe 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg @@ -4,7 +4,7 @@ name = High definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg index e32540ad53..706a6982aa 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = vertex_delta_k8800 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/volumic/sh65_coarse.inst.cfg b/resources/quality/volumic/sh65_coarse.inst.cfg new file mode 100644 index 0000000000..fce43507b7 --- /dev/null +++ b/resources/quality/volumic/sh65_coarse.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Low +definition = sh65 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -1 +global_quality = True + +[values] +layer_height = 0.250 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/sh65_draft.inst.cfg b/resources/quality/volumic/sh65_draft.inst.cfg new file mode 100644 index 0000000000..b1b84cbefa --- /dev/null +++ b/resources/quality/volumic/sh65_draft.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Standard +definition = sh65 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.2 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/sh65_extra_coarse.inst.cfg b/resources/quality/volumic/sh65_extra_coarse.inst.cfg new file mode 100644 index 0000000000..bcb19d612f --- /dev/null +++ b/resources/quality/volumic/sh65_extra_coarse.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Very low +definition = sh65 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +global_quality = True + +[values] +layer_height = 0.3 +top_bottom_thickness = 1.1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/sh65_fast.inst.cfg b/resources/quality/volumic/sh65_fast.inst.cfg new file mode 100644 index 0000000000..01bf626ad8 --- /dev/null +++ b/resources/quality/volumic/sh65_fast.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Medium +definition = sh65 + +[metadata] +setting_version = 19 +type = quality +quality_type = fast +weight = -3 +global_quality = True + +[values] +layer_height = 0.15 +top_bottom_thickness = 1.05 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/sh65_high.inst.cfg b/resources/quality/volumic/sh65_high.inst.cfg new file mode 100644 index 0000000000..549cfb69a7 --- /dev/null +++ b/resources/quality/volumic/sh65_high.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Very high +definition = sh65 + +[metadata] +setting_version = 19 +type = quality +quality_type = high +weight = -5 +global_quality = True + +[values] +layer_height = 0.05 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/sh65_normal.inst.cfg b/resources/quality/volumic/sh65_normal.inst.cfg new file mode 100644 index 0000000000..5f60e22c9b --- /dev/null +++ b/resources/quality/volumic/sh65_normal.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = High +definition = sh65 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -4 +global_quality = True + +[values] +layer_height = 0.1 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg index 64cddd9bd3..c129e4ce51 100644 --- a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = stream20dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg index 86cab86770..ce38b4ce45 100644 --- a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = stream20dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg index 910a29d36e..ad6d66a5b0 100644 --- a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Very low definition = stream20dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 0 diff --git a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg index 9f95e342f5..aa8a50d203 100644 --- a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = stream20dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -3 diff --git a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg index 288f2cbe72..f7f1d5d914 100644 --- a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg @@ -4,7 +4,7 @@ name = Very high definition = stream20dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -5 diff --git a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg index bc37d30a5e..7e0e08b1b2 100644 --- a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg @@ -4,7 +4,7 @@ name = High definition = stream20dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -4 diff --git a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg index 87fb0cd912..838e7422d5 100644 --- a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = stream20pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg index 2f078f20d7..78471bbec9 100644 --- a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = stream20pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg index d8f150edd4..a08830fe4f 100644 --- a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Very low definition = stream20pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 0 diff --git a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg index a8316e0961..2b5e3344a6 100644 --- a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = stream20pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -3 diff --git a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg index 4180c82542..f5edfafcd9 100644 --- a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg @@ -4,7 +4,7 @@ name = Very high definition = stream20pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -5 diff --git a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg index 7e9daec452..da5d3f3c99 100644 --- a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg @@ -4,7 +4,7 @@ name = High definition = stream20pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -4 diff --git a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg index 8f63dfa422..8d74321295 100644 --- a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = stream30dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg index 7b412c6229..ee8a8805ff 100644 --- a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = stream30dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg index 792d7fc220..f2e9ecf30b 100644 --- a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Very low definition = stream30dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 0 diff --git a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg index 35f1dba9cf..c2122ccad7 100644 --- a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = stream30dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -3 diff --git a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg index 089eccfcfc..969bd639a3 100644 --- a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg @@ -4,7 +4,7 @@ name = Very high definition = stream30dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -5 diff --git a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg index 1cd061a148..6f83ad6126 100644 --- a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg @@ -4,7 +4,7 @@ name = High definition = stream30dual_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -4 diff --git a/resources/quality/volumic/stream30mk3_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_coarse.inst.cfg new file mode 100644 index 0000000000..6ce36779bd --- /dev/null +++ b/resources/quality/volumic/stream30mk3_coarse.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Low +definition = stream30mk3 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -1 +global_quality = True + +[values] +layer_height = 0.250 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30mk3_draft.inst.cfg b/resources/quality/volumic/stream30mk3_draft.inst.cfg new file mode 100644 index 0000000000..67ae9158a3 --- /dev/null +++ b/resources/quality/volumic/stream30mk3_draft.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Standard +definition = stream30mk3 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.2 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg new file mode 100644 index 0000000000..8f8d8ce76f --- /dev/null +++ b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Very low +definition = stream30mk3 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +global_quality = True + +[values] +layer_height = 0.3 +top_bottom_thickness = 1.1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30mk3_fast.inst.cfg b/resources/quality/volumic/stream30mk3_fast.inst.cfg new file mode 100644 index 0000000000..48e8e9be5e --- /dev/null +++ b/resources/quality/volumic/stream30mk3_fast.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Medium +definition = stream30mk3 + +[metadata] +setting_version = 19 +type = quality +quality_type = fast +weight = -3 +global_quality = True + +[values] +layer_height = 0.15 +top_bottom_thickness = 1.05 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30mk3_high.inst.cfg b/resources/quality/volumic/stream30mk3_high.inst.cfg new file mode 100644 index 0000000000..0520548d1d --- /dev/null +++ b/resources/quality/volumic/stream30mk3_high.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Very high +definition = stream30mk3 + +[metadata] +setting_version = 19 +type = quality +quality_type = high +weight = -5 +global_quality = True + +[values] +layer_height = 0.05 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30mk3_normal.inst.cfg b/resources/quality/volumic/stream30mk3_normal.inst.cfg new file mode 100644 index 0000000000..cb1a89bf3f --- /dev/null +++ b/resources/quality/volumic/stream30mk3_normal.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = High +definition = stream30mk3 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -4 +global_quality = True + +[values] +layer_height = 0.1 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg index c5f895dab3..0c6f4ed1c0 100644 --- a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = stream30pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg index c9205c1765..202b65ba5d 100644 --- a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = stream30pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg index 7490b44601..e54c445006 100644 --- a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Very low definition = stream30pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 0 diff --git a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg index 36485f4946..a2904d0619 100644 --- a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = stream30pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -3 diff --git a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg index 84a3933a79..cda8d7873e 100644 --- a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg @@ -4,7 +4,7 @@ name = Very high definition = stream30pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -5 diff --git a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg index 008ebe5e0c..999e8eef38 100644 --- a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg @@ -4,7 +4,7 @@ name = High definition = stream30pro_mk2 [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -4 diff --git a/resources/quality/volumic/stream30ultra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_coarse.inst.cfg index afe057a527..a2d7820a77 100644 --- a/resources/quality/volumic/stream30ultra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = stream30ultra [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/volumic/stream30ultra_draft.inst.cfg b/resources/quality/volumic/stream30ultra_draft.inst.cfg index 6dc5cc8e0f..7935912af8 100644 --- a/resources/quality/volumic/stream30ultra_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultra_draft.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = stream30ultra [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg index 5e6a6fb19e..f8c575e5d6 100644 --- a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Very low definition = stream30ultra [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 0 diff --git a/resources/quality/volumic/stream30ultra_fast.inst.cfg b/resources/quality/volumic/stream30ultra_fast.inst.cfg index 06271769d1..b8ab5f1be7 100644 --- a/resources/quality/volumic/stream30ultra_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultra_fast.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = stream30ultra [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -3 diff --git a/resources/quality/volumic/stream30ultra_high.inst.cfg b/resources/quality/volumic/stream30ultra_high.inst.cfg index 94f9d3de2d..8907b9696a 100644 --- a/resources/quality/volumic/stream30ultra_high.inst.cfg +++ b/resources/quality/volumic/stream30ultra_high.inst.cfg @@ -4,7 +4,7 @@ name = Very high definition = stream30ultra [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -5 diff --git a/resources/quality/volumic/stream30ultra_normal.inst.cfg b/resources/quality/volumic/stream30ultra_normal.inst.cfg index 20c6f938b1..e6f0c5246c 100644 --- a/resources/quality/volumic/stream30ultra_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultra_normal.inst.cfg @@ -4,7 +4,7 @@ name = High definition = stream30ultra [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg new file mode 100644 index 0000000000..caf13670bb --- /dev/null +++ b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Low +definition = stream30ultrasc2 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -1 +global_quality = True + +[values] +layer_height = 0.250 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg new file mode 100644 index 0000000000..0f830c37e3 --- /dev/null +++ b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Standard +definition = stream30ultrasc2 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.2 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg new file mode 100644 index 0000000000..2768dd8154 --- /dev/null +++ b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Very low +definition = stream30ultrasc2 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +global_quality = True + +[values] +layer_height = 0.3 +top_bottom_thickness = 1.1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg new file mode 100644 index 0000000000..a0509980ba --- /dev/null +++ b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Medium +definition = stream30ultrasc2 + +[metadata] +setting_version = 19 +type = quality +quality_type = fast +weight = -3 +global_quality = True + +[values] +layer_height = 0.15 +top_bottom_thickness = 1.05 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg new file mode 100644 index 0000000000..6716a4edd0 --- /dev/null +++ b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Very high +definition = stream30ultrasc2 + +[metadata] +setting_version = 19 +type = quality +quality_type = high +weight = -5 +global_quality = True + +[values] +layer_height = 0.05 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg new file mode 100644 index 0000000000..1e40ec60b4 --- /dev/null +++ b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = High +definition = stream30ultrasc2 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -4 +global_quality = True + +[values] +layer_height = 0.1 +top_bottom_thickness = 1 +wall_thickness = 1.2 +line_width = 0.4 +travel_avoid_distance = 1 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 \ No newline at end of file diff --git a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg index d6103dd241..6a795cd2fd 100644 --- a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Low definition = stream30ultrasc [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = coarse weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg index 5c34b7f16f..4df062d21b 100644 --- a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg @@ -4,7 +4,7 @@ name = Standard definition = stream30ultrasc [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = draft weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg index 46c278cf02..2defdcf5a4 100644 --- a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg @@ -4,7 +4,7 @@ name = Very low definition = stream30ultrasc [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extra coarse weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg index 376cef51e0..04e105ffd6 100644 --- a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg @@ -4,7 +4,7 @@ name = Medium definition = stream30ultrasc [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc_high.inst.cfg b/resources/quality/volumic/stream30ultrasc_high.inst.cfg index 7f2c733400..93da24c881 100644 --- a/resources/quality/volumic/stream30ultrasc_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_high.inst.cfg @@ -4,7 +4,7 @@ name = Very high definition = stream30ultrasc [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = high weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg index 097bfd7952..57e5063a6d 100644 --- a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg @@ -4,7 +4,7 @@ name = High definition = stream30ultrasc [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = -4 diff --git a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg index 1da7367e50..17c151921c 100644 --- a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast global_quality = True diff --git a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg index 6343ed36b0..bbc37fffa7 100644 --- a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine global_quality = True diff --git a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg index 9f5e4a4008..a163d29157 100644 --- a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast global_quality = True diff --git a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg index 1cc90861e7..59d9008cd0 100644 --- a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine global_quality = True diff --git a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg index c9680d4c45..c5bb904469 100644 --- a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal global_quality = True diff --git a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg index 81ce0cc3e6..5baf4e6d6e 100644 --- a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint global_quality = True diff --git a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg index 944e169817..d3b20267a8 100644 --- a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint global_quality = True diff --git a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg index e4f72b3e62..844d1fa01f 100644 --- a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint global_quality = True diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg index cd051ee668..9cdd3b6e5b 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg index 234723f38e..bf21dde5cb 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg index 65429f5f56..afc6a6b3e8 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg index 387e50531f..f3deba1f88 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg index ff653b7524..0d4fcdd9a5 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg index 79f7657169..96cdcaf2bf 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg index 9f89f51a3a..343ecc6487 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg index f3e45a0a30..2ab6bbee73 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg index 9c5ac0c689..14882f3362 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg index 637f48a8ed..ca1ae027b3 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg index d81278cef4..88ea6433ff 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg index ab1c350e0b..d1e091c976 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg index aac7408df5..8ed38223ff 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg index da66129d5d..9956a4db4b 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg index f71d117ad9..e5c4d741ed 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg index 20c44bcd77..41c417fab4 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg index 5a925d13f8..e1dcf4fc7b 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg index 6642c8d1b3..9f5a993899 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg index 019f826cb2..a988f79b0c 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg index ba7f2abe47..ec5a4a62dd 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg index 8a32507c5c..0145a4255f 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg index 685ad4443e..5ee56fd5c9 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg index 58aff7e2fc..f1a5247932 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg index 9a164a8866..a912a673c0 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg index 2eafb8f86c..172ce366a9 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg index 24df1fb797..3b2ef0c236 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg index 16c05586f5..e611b3bcc7 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg index 51398a6690..caef513bf8 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg index 3ed0627166..27c3a59a26 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg index 8d106f8050..3671052cf8 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg index 340e7499d0..5f99244e03 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg index 54d16c7947..cff2700796 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg index afc8679208..c264667722 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg index dce46507d0..d7f3b46e28 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg index ad545416d4..cbd774934d 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg index c546551145..f4e4ff67f2 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg index 17282ba276..c0020cc6e0 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafine material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg index a85fae3e2c..21ed2492f4 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg index 67174e4520..cb2de91d82 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg index 05857f04b9..99294e98f4 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg index fff1013dd6..8ceb772baa 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg index 98255b6579..b78e8b3453 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg index 9ed1b1224a..4bd07e0876 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg index 9dfc12a1af..a4cc761601 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg index 4da4dcf23d..db695d4c27 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg index 685080b81e..f9ce883913 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg index 5e7214e15e..24f5b8a2d7 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg index 3ccf6ac0c9..6874f3715f 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg index c6986b651b..e3505c6c4b 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg index c6985b36e3..87f9e8d353 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg index 8e6ecdb95e..bd983252a0 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg index c307d4d53d..6038a0e38c 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg index d3f79c495a..b7e0beeb6e 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg index 09e610b947..b741ac4be6 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg index 314637a38d..fb9d59ec1e 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg index 977937c9d3..47787cef27 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg index 65cc400c30..2223f3f3ed 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg index 8a968b1aca..d3b237dd72 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg index a261fa8fce..df6186d10d 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg index 3f39670952..e0ef1cb4c3 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg index fc642178bd..8676cb4822 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg index fd4d9a78fb..c372203a46 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg index c62114b1b8..784dd23f4e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg index 9fc3b551dd..c05518d01e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg index 724f27d034..3addc36cd5 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg index 033b111759..1cae5b2018 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg index 286f3f4c25..14bf843075 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg index 114d5c2d04..3bc6c5791b 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg index 6663d847e4..8343215645 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg index b8dc1ce88f..4ca42aae4f 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg index 2d8ae79963..d7129d690d 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg index 424bc31774..629b11fac1 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg index 6bcc6406ea..cb91a09161 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg index 2569f59205..91f1ee772e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg index 47da404ed5..0e62135d2a 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg index 725faa161a..1262529883 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg index d43eb24235..3bfb15ab26 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg index c7ee2a2860..c8afc04304 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg index 832e28bf0f..7c2b262f73 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg index 7e76489c93..c5c3eb4d3e 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg index 9889e2538c..d48f0fde46 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg index 306e60b4bc..222c65d25e 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg index c9a17745ef..fd8893a0af 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg index 8e37fedf77..b0a85330e4 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg index e54effaac3..fa65548c85 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg index 47fa92e8d3..dff7bd778f 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg index 7de6128d0b..f70f5ff5a3 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg index 4a3be11379..2e3a2c8cef 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg index 1ebf9a5bfc..578e3428e6 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg index 46f13bf385..950f7c8fc5 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg index a0667fc1f2..72d60dbf72 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg index 0b1084ae80..3970105372 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg index 858166cdc5..f19d1a0805 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg index f3c6adbad5..78e9516719 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg index d14066786d..9c3a6d33ec 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg index 2c125bf70b..5160aa2a99 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg index 25b1ac65a9..7b69cf312b 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg index 4403a51347..14874c3707 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg index ab82392b3d..1b54a08f92 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg index 09f935f33c..0ca1c31cae 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg index 3ff0dd7ef7..096231a552 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg index c8ffa23334..fe5d9ec540 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg index d5291fe492..be6ef4e16a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg index 0daef4bf08..fdd8bb376d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg index 852124a987..4367c9e95b 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg index bb6ee68d8a..efadffc379 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg index 46bf693afe..8194e7594e 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg index 280af043c4..46a7d1673d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg index 6facc61303..479688ae98 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg index a483d73983..fa1def12b8 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg index f8632007b8..d3b9f9f345 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg index 4a214905d2..b93c88425a 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg index c4d242a6c7..f716dddb6e 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_abs diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg index d5b1420cdc..9a537e93e4 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg index fc928f4823..ee4b7c1b8f 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg index 07c4171c10..82f5b2fc09 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg index fa54adbffe..644d04794a 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg index c76fc17088..6258e11ea7 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg index ac7ece6f4c..282d13f154 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pc diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg index 8600608037..90fc7bbd5c 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg index 07e26bc1b7..2254e719d3 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg index ebd1aabb21..cb9957dfb9 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_petg diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg index 5707aed0fc..0e16275412 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg index 9b4d8b4f63..ec8bee96cc 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pla diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg index d97cbca66d..fe173cc031 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg index 2f776f265f..3d13535fc1 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg index a93d11e353..7e69f36671 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg index 006f8346d9..6dfd11436d 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg index 03414b71d5..5abe001397 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg index 96ec3c80b7..02aef311f3 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg index 1ec741ab83..ab1a0ea1b5 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg index ed0c579c7e..c7c9c4bae8 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg index 23a962a11e..42478e2a90 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg index 34629375eb..5ed61e3889 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg index 1ec4aaa3ee..2feaf72335 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg index 37c6566685..8ff30e8fe4 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg index d8df501645..bda08d4a01 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg index ecc94d2e90..85f5f73f05 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg index 5297faa02a..bcafee0d6b 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg index aabf88de3c..1674fde8cc 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg index f8b27fd431..67f9502aec 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg index 223f5dce5c..2f1e6981f5 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg index ec1f6779a3..6596de4125 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg index 18dff9069f..b3eaf2aeeb 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg index 79fd215280..775eeb974f 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg index 6d2ff619ba..749555af8a 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg index 42602f9220..cc4607c3ce 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg index fe419aa75b..744e14656e 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg index 7c06d32d09..b2aebc5763 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg index aa6c9b306f..42750ba94c 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg index 203f88214e..722f087a34 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg index 5221b564d0..c7f15cac51 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg index cdc3a8acd8..d3f39512ea 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg index 1c12d26b0b..f9cebcb28d 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg index bc191bb1f1..d5104dd133 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg index bcb5e46a3e..22233a094f 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg index 90f2b3a7e6..5a8bb91667 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg index 04ee33f326..df5c4b1d7e 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg index ff776bfb65..7f3c7bafdb 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg index cececc5504..67aa7d7a7b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg index 52f8494bfa..9dcb40e513 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg index 49aac44ec8..5c57bc3ca7 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg index 2c9c3c89b9..02368b060b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg index 9da131e904..d8515416ce 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg index 8f45812636..b8059d7dd4 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg index 7f01ba69dd..fc7cbb37a9 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg index 85d118a55d..f4e592d84e 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg index 38c8301565..47ed33e379 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg @@ -4,7 +4,7 @@ name = Extra Fast definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = extrafast material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg index 5bc55e324d..ce3f74b43e 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg index 5c95b0a5ff..50e320e76a 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg index da26ba744f..0861b6a62f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg index 70b22771e7..0ba36e9976 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg index 24b500ca4b..159d8226b5 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg index 3a097ccf2d..d90380add4 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg index f3bfaf0920..f7438b381e 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg index 2de957db5d..ad726b94d2 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg index e71b5f43e9..ddf247e09f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg index 9721e176b2..19cbeaac0d 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg index 4d437b6fd7..7b57cd6add 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg index bac1b6cfdb..4046b10cd4 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg index ac989db0b8..3d5b3db14a 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg index d37fba46d8..e0bb1afb75 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg index 39e27b9764..9158a037b0 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg index f89a8d0b99..94353428fc 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg index a2f3f305a1..514a93e2f3 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg index 1d41fdc87a..c36c7a4502 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg index a8c1f6932c..050b7c3f7f 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg index b9e7c111e6..001a82bb39 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_abs diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg index d96921d9fb..1c2660d0e9 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg index 5c862dab11..e42011a66d 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg index a004a71aa7..6d20e5d0e3 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_nylon diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg index 3ab2749226..dee1b279ac 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg index 80121b2a70..23c48b6445 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg index c2519cb916..83a4e51e42 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_pc diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg index 0cf751373c..7539fbf5e9 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg index 4e0a080e14..ca4a309924 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg index 4447befa4d..37ffdffba9 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_petg diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg index 9b058463fd..6611b94151 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg @@ -4,7 +4,7 @@ name = Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = sprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg index b91b4a31f7..e3f3ef11dd 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg @@ -4,7 +4,7 @@ name = Super Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = supersprint material = generic_pla diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg index 9edd08fb13..6abd8fddbc 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Sprint definition = voron2_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ultrasprint material = generic_pla diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg new file mode 100644 index 0000000000..6a946aed35 --- /dev/null +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg @@ -0,0 +1,27 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = Extrudr_GreenTECPro_Black_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 60 +layer_height_0 = =round(layer_height * 1.25, 2) +material_print_temperature_layer_0 = =material_print_temperature + 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_final_print_temperature = =material_print_temperature - 5 +material_bed_temperature = =default_material_bed_temperature +material_bed_temperature_layer_0= =material_bed_temperature + 10 +material_flow_layer_0 = =material_flow + 4 +skirt_brim_material_flow= =material_flow + 4 +material_standby_temperature = 100 +support_z_distance = 0.2 +support_xy_distance = 0.8 + diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..7fbec8ea47 --- /dev/null +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 0 +material = Extrudr_GreenTECPro_Black_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 30 +material_print_temperature_layer_0 = =material_print_temperature + 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_final_print_temperature = =material_print_temperature - 5 +material_bed_temperature = =default_material_bed_temperature +material_bed_temperature_layer_0= =material_bed_temperature + 10 +material_flow_layer_0 = =material_flow + 4 +skirt_brim_material_flow= =material_flow + 4 +material_standby_temperature = 100 +support_z_distance = 0.2 +support_xy_distance = 0.8 + diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg new file mode 100644 index 0000000000..8ccdea7c0b --- /dev/null +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = Extrudr_GreenTECPro_Black_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 40 +material_print_temperature_layer_0 = =material_print_temperature + 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_final_print_temperature = =material_print_temperature - 5 +material_bed_temperature = =default_material_bed_temperature +material_bed_temperature_layer_0= =material_bed_temperature + 10 +material_flow_layer_0 = =material_flow + 4 +skirt_brim_material_flow= =material_flow + 4 +material_standby_temperature = 100 +support_z_distance = 0.2 +support_xy_distance = 0.8 + diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg new file mode 100644 index 0000000000..890950f05b --- /dev/null +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg @@ -0,0 +1,42 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = Extrudr_GreenTECPro_Black_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 50 +material_print_temperature_layer_0 = =material_print_temperature + 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_final_print_temperature = =material_print_temperature - 5 +material_bed_temperature = =default_material_bed_temperature +material_bed_temperature_layer_0= =material_bed_temperature + 10 +material_flow_layer_0 = =material_flow + 4 +skirt_brim_material_flow= =material_flow + 4 +material_standby_temperature = 100 +support_z_distance = 0.2 +support_xy_distance = 0.8 + + + + + + + + + + + + + + + + + diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg new file mode 100644 index 0000000000..3cb7d356b3 --- /dev/null +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = verbatim_bvoh_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 + diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..512f9a98e7 --- /dev/null +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 0 +material = verbatim_bvoh_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.5, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg new file mode 100644 index 0000000000..44098ac65e --- /dev/null +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = verbatim_bvoh_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.5, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg new file mode 100644 index 0000000000..71e06cce88 --- /dev/null +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = verbatim_bvoh_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.5, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg new file mode 100644 index 0000000000..c27ca3da29 --- /dev/null +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = verbatim_bvoh_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg new file mode 100644 index 0000000000..81e9033105 --- /dev/null +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = verbatim_bvoh_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg new file mode 100644 index 0000000000..a7093e9477 --- /dev/null +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = verbatim_bvoh_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.5, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg new file mode 100644 index 0000000000..f0e2ca8b4d --- /dev/null +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = verbatim_bvoh_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.5, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg new file mode 100644 index 0000000000..6289ef9302 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -1 +material = generic_abs_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..02f5439fea --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 1 +material = generic_abs_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg new file mode 100644 index 0000000000..9bfb7c78df --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_abs_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 35 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg new file mode 100644 index 0000000000..d378509202 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_abs_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg new file mode 100644 index 0000000000..3fd35efe73 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_asa_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..ead66f0146 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 1 +material = generic_asa_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg new file mode 100644 index 0000000000..49841dc732 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_asa_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 35 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg new file mode 100644 index 0000000000..19ab78140f --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_asa_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg new file mode 100644 index 0000000000..31bdfa3fa1 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_bvoh_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..9bb5c2dada --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 0 +material = generic_bvoh_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg new file mode 100644 index 0000000000..e607b32b30 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_bvoh_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg new file mode 100644 index 0000000000..f87fe8d5e5 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_bvoh_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg new file mode 100644 index 0000000000..45b70000e8 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_cpe_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..83b705ad53 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 1 +material = generic_cpe_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg new file mode 100644 index 0000000000..d68a42b854 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_cpe_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 35 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg new file mode 100644 index 0000000000..786b5d5274 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_cpe_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg new file mode 100644 index 0000000000..2a92cf14b2 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_hips_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..ebc1fcf1da --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 1 +material = generic_hips_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg new file mode 100644 index 0000000000..294f1c84a0 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_hips_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 35 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg new file mode 100644 index 0000000000..797aa298da --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_hips_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg new file mode 100644 index 0000000000..7d1829f498 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_petg_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..f2fc2ff2a3 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 1 +material = generic_petg_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg new file mode 100644 index 0000000000..c724f4862e --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_petg_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 35 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg new file mode 100644 index 0000000000..2e63faa1d5 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_petg_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg new file mode 100644 index 0000000000..dbdbf88bec --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_pla_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..2c197abae7 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 1 +material = generic_pla_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg new file mode 100644 index 0000000000..279c66cc5d --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_pla_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 35 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg new file mode 100644 index 0000000000..d35c5a0712 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_pla_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 40 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg new file mode 100644 index 0000000000..094244febb --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_pva_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..694be21a43 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 0 +material = generic_pva_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg new file mode 100644 index 0000000000..0a9e4f1db3 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_pva_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg new file mode 100644 index 0000000000..025323204d --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_pva_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg new file mode 100644 index 0000000000..7a5b8b3a4a --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_tpu_175 +variant = 0.4mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..8ce191cd46 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = 1 +material = generic_tpu_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg new file mode 100644 index 0000000000..a330b099b6 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_tpu_175 +variant = 0.4mm Nozzle + + +[values] +speed_print = 35 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg new file mode 100644 index 0000000000..8b40bfece8 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_tpu_175 +variant = 0.4mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg new file mode 100644 index 0000000000..f89475e350 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -1 +material = generic_abs_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg new file mode 100644 index 0000000000..8f86cfcf60 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -1 +material = generic_abs_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg new file mode 100644 index 0000000000..5628cdd8f7 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_abs_175 +variant = 0.6mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg new file mode 100644 index 0000000000..f8a6c1fc54 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_abs_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg new file mode 100644 index 0000000000..08b0a727f7 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_asa_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg new file mode 100644 index 0000000000..1e0c387570 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_asa_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg new file mode 100644 index 0000000000..059658c2ed --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_asa_175 +variant = 0.6mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg new file mode 100644 index 0000000000..b03d5d9577 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_asa_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg new file mode 100644 index 0000000000..c2c3d9bcd4 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_bvoh_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg new file mode 100644 index 0000000000..9258a1ba73 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_bvoh_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg new file mode 100644 index 0000000000..b9e11468cc --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_bvoh_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg new file mode 100644 index 0000000000..e97b6f0f84 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_bvoh_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg new file mode 100644 index 0000000000..2c8025693c --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_cpe_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg new file mode 100644 index 0000000000..b0ef85bd13 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_cpe_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg new file mode 100644 index 0000000000..6e9588d31b --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_cpe_175 +variant = 0.6mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg new file mode 100644 index 0000000000..eff2c48edf --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_cpe_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg new file mode 100644 index 0000000000..febdb9cfa5 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_hips_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg new file mode 100644 index 0000000000..09193ddb63 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_hips_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg new file mode 100644 index 0000000000..d5613f69e8 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_hips_175 +variant = 0.6mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg new file mode 100644 index 0000000000..03331dd2d6 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_hips_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg new file mode 100644 index 0000000000..67ab4b425b --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_petg_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg new file mode 100644 index 0000000000..d139be05e6 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_petg_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg new file mode 100644 index 0000000000..4523cf5c9f --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_petg_175 +variant = 0.6mm Nozzle + + +[values] +speed_print = 30 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg new file mode 100644 index 0000000000..2e2d96b444 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_petg_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg new file mode 100644 index 0000000000..5a770f5dab --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_pla_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg new file mode 100644 index 0000000000..3d05dd7f40 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_pla_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg new file mode 100644 index 0000000000..8f2111ae53 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_pla_175 +variant = 0.6mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg new file mode 100644 index 0000000000..cf99c8d7ad --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_pla_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 40 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg new file mode 100644 index 0000000000..1fabb835da --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_pva_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg new file mode 100644 index 0000000000..6c5659a3a3 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_pva_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg new file mode 100644 index 0000000000..73229cc277 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_pva_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg new file mode 100644 index 0000000000..2d99db8639 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_pva_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg new file mode 100644 index 0000000000..4983975cea --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_tpu_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg new file mode 100644 index 0000000000..1827c63e6d --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_tpu_175 +variant = 0.6mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg new file mode 100644 index 0000000000..387c5292ac --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = generic_tpu_175 +variant = 0.6mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg new file mode 100644 index 0000000000..769835602e --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_tpu_175 +variant = 0.6mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg new file mode 100644 index 0000000000..40705d0259 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -1 +material = generic_abs_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg new file mode 100644 index 0000000000..bec5f902e0 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -1 +material = generic_abs_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..3a721b1b6f --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_abs_175 +variant = 0.8mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg new file mode 100644 index 0000000000..315af84391 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_abs_175 +variant = 0.8mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg new file mode 100644 index 0000000000..14d466bcf5 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_asa_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg new file mode 100644 index 0000000000..786de42a68 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_asa_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..4f3edbbdb0 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_asa_175 +variant = 0.8mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg new file mode 100644 index 0000000000..0608695129 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_asa_175 +variant = 0.8mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg new file mode 100644 index 0000000000..524540984b --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_bvoh_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg new file mode 100644 index 0000000000..7429c71065 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_bvoh_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..0565092a84 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_bvoh_175 +variant = 0.8mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg new file mode 100644 index 0000000000..68391cd78e --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_bvoh_175 +variant = 0.8mm Nozzle + +[values] +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg new file mode 100644 index 0000000000..b2da58d6e6 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_cpe_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg new file mode 100644 index 0000000000..f1f322c3cd --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_cpe_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..25633eeb9a --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_cpe_175 +variant = 0.8mm Nozzle + + +[values] +speed_print = 30 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg new file mode 100644 index 0000000000..1213da6b87 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_cpe_175 +variant = 0.8mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg new file mode 100644 index 0000000000..24fae2eb7e --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_hips_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg new file mode 100644 index 0000000000..36c21c586f --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_hips_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..ee0a72d760 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_hips_175 +variant = 0.8mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg new file mode 100644 index 0000000000..ad04958eee --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_hips_175 +variant = 0.8mm Nozzle + +[values] +speed_print = 40 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg new file mode 100644 index 0000000000..43560eaaff --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_petg_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg new file mode 100644 index 0000000000..88fcc7590e --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_petg_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..5735d99ac1 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_petg_175 +variant = 0.8mm Nozzle + + +[values] +speed_print = 30 + + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg new file mode 100644 index 0000000000..faf4165234 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_petg_175 +variant = 0.8mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg new file mode 100644 index 0000000000..a614832d0d --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_pla_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg new file mode 100644 index 0000000000..c4e313ab52 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_pla_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..5578e7ad28 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_pla_175 +variant = 0.8mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg new file mode 100644 index 0000000000..c6f44a0e18 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_pla_175 +variant = 0.8mm Nozzle + +[values] +cool_fan_speed = 100 +speed_print = 40 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg new file mode 100644 index 0000000000..8aa79fd338 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_pva_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg new file mode 100644 index 0000000000..6fe228748b --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_pva_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) + +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..426f37d171 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_pva_175 +variant = 0.8mm Nozzle + +[values] + +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg new file mode 100644 index 0000000000..cb733b6571 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_pva_175 +variant = 0.8mm Nozzle + +[values] + +speed_print = 30 +support_z_distance = 0 +support_xy_distance = 0.2 +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg new file mode 100644 index 0000000000..8a6c406cc2 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = 0 +material = generic_tpu_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg new file mode 100644 index 0000000000..3619d37152 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = generic_tpu_175 +variant = 0.8mm Nozzle + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..a7bd03ae18 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = 0 +material = generic_tpu_175 +variant = 0.8mm Nozzle + + +[values] +speed_print = 30 + diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg new file mode 100644 index 0000000000..9d0acd4dbb --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = 0 +material = generic_tpu_175 +variant = 0.8mm Nozzle + +[values] +speed_print = 40 + diff --git a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg new file mode 100644 index 0000000000..6871857996 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -4 +global_quality = True + +[values] +layer_height = 0.28 +raft_interface_thickness = 0.32 + diff --git a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg new file mode 100644 index 0000000000..856a6e8c51 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -4 +global_quality = True + +[values] +layer_height = 0.24 +raft_interface_thickness = 0.30 + diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg new file mode 100644 index 0000000000..e3c970f359 --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Extra Coarse +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra coarse +weight = -4 +global_quality = True + +[values] +layer_height = 0.32 + diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg new file mode 100644 index 0000000000..87ca3acc5f --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Extra Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = extra fine +weight = -1 +global_quality = True + +[values] +layer_height = 0.12 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg new file mode 100644 index 0000000000..ba72f9de4f --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Fine +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = -2 +global_quality = True + +[values] +layer_height = 0.16 + diff --git a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg new file mode 100644 index 0000000000..79cef45ced --- /dev/null +++ b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Normal +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -3 +global_quality = True + +[values] +layer_height = 0.2 + diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg new file mode 100644 index 0000000000..ee0de2d531 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 45 +retraction_amount = 6.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg new file mode 100644 index 0000000000..5daf71c279 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 45 +retraction_amount = 6.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg new file mode 100644 index 0000000000..8af84dfa42 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 45 +retraction_amount = 6.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg new file mode 100644 index 0000000000..c5fbe77a2b --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 45 +retraction_amount = 6.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg new file mode 100644 index 0000000000..5959e3b336 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_wall = 20 +speed_print = 60 +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = 30 +speed_travel = 120 +retraction_amount = 3.0 +retraction_speed = 20 +retraction_prime_speed = 15 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg new file mode 100644 index 0000000000..7556fc2f3f --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_wall = 20 +speed_print = 60 +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = 30 +speed_travel = 120 +retraction_amount = 3.0 +retraction_speed = 20 +retraction_prime_speed = 15 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg new file mode 100644 index 0000000000..48abace00d --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_wall = 20 +speed_print = 60 +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = 30 +speed_travel = 120 +retraction_amount = 3.0 +retraction_speed = 20 +retraction_prime_speed = 15 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg new file mode 100644 index 0000000000..6ac05604e4 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_wall = 20 +speed_print = 60 +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = 30 +speed_travel = 120 +retraction_amount = 3.0 +retraction_speed = 20 +retraction_prime_speed = 15 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg new file mode 100644 index 0000000000..545522e42d --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg new file mode 100644 index 0000000000..a1b7f3a6ff --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg new file mode 100644 index 0000000000..95201d27d3 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg new file mode 100644 index 0000000000..09e9da56a3 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_abs +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg new file mode 100644 index 0000000000..77c3855829 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg new file mode 100644 index 0000000000..1146adaf83 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg new file mode 100644 index 0000000000..9fe1886158 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg new file mode 100644 index 0000000000..a6e2925a73 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg new file mode 100644 index 0000000000..1aa2d32ba0 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg new file mode 100644 index 0000000000..c8f5e4c4ae --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg new file mode 100644 index 0000000000..b4e90978be --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg @@ -0,0 +1,29 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg new file mode 100644 index 0000000000..ae59f9efd5 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg new file mode 100644 index 0000000000..cea21e93fc --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg new file mode 100644 index 0000000000..eac9bd1604 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg new file mode 100644 index 0000000000..a5b9f1ba30 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg new file mode 100644 index 0000000000..7856ee7d03 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg new file mode 100644 index 0000000000..8cd4fd0bc2 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg new file mode 100644 index 0000000000..68ead2475c --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg new file mode 100644 index 0000000000..cf3c82a3cf --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg new file mode 100644 index 0000000000..ca3860ad7e --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg new file mode 100644 index 0000000000..e526c76cd7 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_antibact_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg new file mode 100644 index 0000000000..66db8f79f3 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_antibact_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg new file mode 100644 index 0000000000..cfc7c73628 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_antibact_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg new file mode 100644 index 0000000000..99a7b9bb4f --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_antibact_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg new file mode 100644 index 0000000000..008e6c2715 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg new file mode 100644 index 0000000000..4a70583723 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg new file mode 100644 index 0000000000..bcc9278d05 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg new file mode 100644 index 0000000000..2a87039f0c --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_antibact_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg new file mode 100644 index 0000000000..4022f8e7b9 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg new file mode 100644 index 0000000000..d0bca05b7a --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg new file mode 100644 index 0000000000..509931fe6a --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg new file mode 100644 index 0000000000..3fcfc291fa --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg new file mode 100644 index 0000000000..7cf513e9f9 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =40 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg new file mode 100644 index 0000000000..faa98a333b --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =40 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg new file mode 100644 index 0000000000..b95a6e093e --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =40 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg new file mode 100644 index 0000000000..ce0acf723e --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =40 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg new file mode 100644 index 0000000000..bf603d73ad --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 40 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg new file mode 100644 index 0000000000..3d524c0d6f --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 40 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg new file mode 100644 index 0000000000..07c58edd6a --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 40 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg new file mode 100644 index 0000000000..a21795ec88 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 40 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg new file mode 100644 index 0000000000..9e778b2ba3 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 8.0 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg new file mode 100644 index 0000000000..97f6de0a6b --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 8.0 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg new file mode 100644 index 0000000000..1d69fbad4e --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 8.0 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg new file mode 100644 index 0000000000..a7518b9165 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 8.0 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg new file mode 100644 index 0000000000..efa2343ef7 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_infill = 45 +speed_wall = =speed_print +speed_topbottom = 10 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg new file mode 100644 index 0000000000..8c8719c2ed --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_infill = 45 +speed_wall = =speed_print +speed_topbottom = 10 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg new file mode 100644 index 0000000000..882b5e020f --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_infill = 45 +speed_wall = =speed_print +speed_topbottom = 10 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg new file mode 100644 index 0000000000..a731931b1b --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_infill = 45 +speed_wall = =speed_print +speed_topbottom = 10 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg new file mode 100644 index 0000000000..c0fd14a2bc --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_colorinkjet_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 30 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg new file mode 100644 index 0000000000..8d0a1d48b9 --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_colorinkjet_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg new file mode 100644 index 0000000000..6bebb3d706 --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_colorinkjet_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 30 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg new file mode 100644 index 0000000000..ec1ac6e945 --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_colorinkjet_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 30 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg new file mode 100644 index 0000000000..7a7196e95c --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_colorinkjet_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg new file mode 100644 index 0000000000..37462f7ee0 --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_colorinkjet_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg new file mode 100644 index 0000000000..1ed81effae --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_colorinkjet_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg new file mode 100644 index 0000000000..7b2bbc01f8 --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_colorinkjet_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg new file mode 100644 index 0000000000..b8e45ecb27 --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_colorinkjet_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg new file mode 100644 index 0000000000..ee2d6bc5a4 --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_colorinkjet_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg new file mode 100644 index 0000000000..1f0c5e654e --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_colorinkjet_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg new file mode 100644 index 0000000000..7356f4a39f --- /dev/null +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_colorinkjet_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg new file mode 100644 index 0000000000..009a232b6b --- /dev/null +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_flexible +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +infill_sparse_density = 20 +retraction_amount = 6.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print \ No newline at end of file diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg new file mode 100644 index 0000000000..3424449e8c --- /dev/null +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_flexible +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +infill_sparse_density = 20 +retraction_amount = 6.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print \ No newline at end of file diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg new file mode 100644 index 0000000000..cd37ef504a --- /dev/null +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_flexible +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +infill_sparse_density = 20 +retraction_amount = 6.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print \ No newline at end of file diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg new file mode 100644 index 0000000000..96ea38b3d7 --- /dev/null +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_flexible +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +infill_sparse_density = 20 +retraction_amount = 6.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg new file mode 100644 index 0000000000..98a573cfff --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg new file mode 100644 index 0000000000..c9ed3ef6c8 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = 0 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg new file mode 100644 index 0000000000..934e6ccc14 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg new file mode 100644 index 0000000000..11a7fc100f --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg new file mode 100644 index 0000000000..a0894899db --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg new file mode 100644 index 0000000000..09027e6aa7 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg new file mode 100644 index 0000000000..20696a1c53 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg new file mode 100644 index 0000000000..0478b12cfb --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg new file mode 100644 index 0000000000..92647a35c0 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg new file mode 100644 index 0000000000..2dfe27abb5 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg new file mode 100644 index 0000000000..1b69b2c680 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg new file mode 100644 index 0000000000..d384f1c461 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 7.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg new file mode 100644 index 0000000000..1d76ce8b0b --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg new file mode 100644 index 0000000000..99943e8d5e --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg new file mode 100644 index 0000000000..2379e379a2 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg new file mode 100644 index 0000000000..b842e33472 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 40 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg new file mode 100644 index 0000000000..bebd6da8be --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg new file mode 100644 index 0000000000..864607a918 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg new file mode 100644 index 0000000000..0ec1ae0596 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg new file mode 100644 index 0000000000..24fa6852de --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 6.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg new file mode 100644 index 0000000000..131b3bde1a --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_nylon +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 0 +brim_width = 5.0 \ No newline at end of file diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg new file mode 100644 index 0000000000..1d11122fc0 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_nylon +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 0 +brim_width = 5.0 \ No newline at end of file diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg new file mode 100644 index 0000000000..5b9549f8a9 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_nylon +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 0 +brim_width = 5.0 \ No newline at end of file diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg new file mode 100644 index 0000000000..1decc8e40f --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_nylon +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 8.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 0 +brim_width = 5.0 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg new file mode 100644 index 0000000000..92233ea283 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.5 +retraction_speed = 25 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg new file mode 100644 index 0000000000..94b245b752 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.5 +retraction_speed = 25 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..2ee10b585f --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.5 +retraction_speed = 25 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg new file mode 100644 index 0000000000..5eab80c575 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.5 +retraction_speed = 25 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg new file mode 100644 index 0000000000..056c8eebc5 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_wall = 35 +speed_print = 30 +speed_topbottom = 10 +speed_infill = 50 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 25 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg new file mode 100644 index 0000000000..99dcef26e1 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_wall = 35 +speed_print = 30 +speed_topbottom = 10 +speed_infill = 50 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 25 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..b040b6f163 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_wall = 35 +speed_print = 30 +speed_topbottom = 10 +speed_infill = 50 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 25 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg new file mode 100644 index 0000000000..9da9927322 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_wall = 35 +speed_print = 30 +speed_topbottom = 10 +speed_infill = 50 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 25 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg new file mode 100644 index 0000000000..e6b547b571 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 3.5 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg new file mode 100644 index 0000000000..cf82a0ff43 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 3.5 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..80398c3905 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 3.5 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg new file mode 100644 index 0000000000..047928bf59 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 3.5 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg new file mode 100644 index 0000000000..ca65aecc3c --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 3.5 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg new file mode 100644 index 0000000000..bccc7000f5 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 3.5 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..e3b3b8ca84 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 3.5 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg new file mode 100644 index 0000000000..9944b65f17 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 3.5 +retraction_speed = 20 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg new file mode 100644 index 0000000000..c2e182a292 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_petg +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg new file mode 100644 index 0000000000..a82a71aa88 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_petg +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..48b8837f5a --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_petg +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg new file mode 100644 index 0000000000..ac2f07f066 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_petg +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg new file mode 100644 index 0000000000..356d795ba3 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 60 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 25 +skirt_brim_speed = =speed_support +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg new file mode 100644 index 0000000000..107f625238 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 60 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 25 +skirt_brim_speed = =speed_support +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..d6bf841a74 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 60 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 25 +skirt_brim_speed = =speed_support +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg new file mode 100644 index 0000000000..708456f9cf --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_petg +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 60 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 25 +skirt_brim_speed = =speed_support +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg new file mode 100644 index 0000000000..4666ba3ea3 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..5987389b80 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..738e119ff6 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg new file mode 100644 index 0000000000..de4ba3160f --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg new file mode 100644 index 0000000000..0eafc09b3b --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..cae3827892 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..81e457a2a7 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg new file mode 100644 index 0000000000..7940cae382 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg new file mode 100644 index 0000000000..2c1b7ecb46 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..7b0d47b11e --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..ecc0484c42 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg new file mode 100644 index 0000000000..82fbd49cc6 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg new file mode 100644 index 0000000000..28e395f849 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..851e1d167e --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..30f81b6797 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg new file mode 100644 index 0000000000..aa102dd9a4 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg new file mode 100644 index 0000000000..e8fd8e062d --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..41d2ffff50 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +retraction_prime_speed = =retraction_speed +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..b07650d9e6 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg new file mode 100644 index 0000000000..ac013f0343 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg new file mode 100644 index 0000000000..1bd4f8fbf9 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..62fe459bfe --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..f8278006fb --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg new file mode 100644 index 0000000000..5c166dca66 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg new file mode 100644 index 0000000000..399b7db820 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg new file mode 100644 index 0000000000..b9f85dcd3f --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg new file mode 100644 index 0000000000..e6b2e48b13 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg new file mode 100644 index 0000000000..bc2a638077 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 20 +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 4.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg new file mode 100644 index 0000000000..e27de06402 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 30 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg new file mode 100644 index 0000000000..dfe0724569 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 30 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg new file mode 100644 index 0000000000..6e572f9fb1 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 30 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg new file mode 100644 index 0000000000..d4efcdee7d --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 65 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 4.5 +retraction_speed = 30 +skirt_brim_speed = 30 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg new file mode 100644 index 0000000000..41dbf46e9c --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg new file mode 100644 index 0000000000..df57ca2d5f --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg new file mode 100644 index 0000000000..fbbeca7bb8 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg new file mode 100644 index 0000000000..5bb0cf8f0c --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg new file mode 100644 index 0000000000..64af004e74 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg new file mode 100644 index 0000000000..f8c25551d6 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg new file mode 100644 index 0000000000..5c267c3c94 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg new file mode 100644 index 0000000000..08e8d08c8f --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.0 +retraction_speed = 15 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg new file mode 100644 index 0000000000..1ddf6713e1 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tough_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg new file mode 100644 index 0000000000..a9f33805c1 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tough_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg new file mode 100644 index 0000000000..cdac51a11d --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tough_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg new file mode 100644 index 0000000000..2f2f84feae --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg @@ -0,0 +1,30 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tough_pla +variant = Stainless Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_wall = =speed_print +speed_topbottom = 10 +speed_infill = 60 +speed_support = =speed_print +speed_travel = 100 +retraction_amount = 5.0 +retraction_speed = =speed_print +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg new file mode 100644 index 0000000000..c06be52e4c --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg new file mode 100644 index 0000000000..9032b9ae1d --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg new file mode 100644 index 0000000000..cfa097741d --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg new file mode 100644 index 0000000000..52ac344ac1 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tough_pla +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 30 +speed_topbottom = 10 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 120 +retraction_amount = 5.5 +retraction_speed = 50 +skirt_brim_speed = =speed_print +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg new file mode 100644 index 0000000000..e713a1bc1d --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tpu +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 15 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = 30 +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 30 +skirt_brim_speed = 30 +brim_width = 5.0 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg new file mode 100644 index 0000000000..05b0ca0d27 --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tpu +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 15 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = 30 +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 30 +skirt_brim_speed = 30 +brim_width = 5.0 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg new file mode 100644 index 0000000000..0edef2022c --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tpu +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 15 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = 30 +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 30 +skirt_brim_speed = 30 +brim_width = 5.0 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg new file mode 100644 index 0000000000..172499405d --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tpu +variant = Copper 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.35 +material_diameter = 1.75 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 15 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = 30 +speed_travel = 120 +retraction_amount = 4.0 +retraction_speed = 30 +skirt_brim_speed = 30 +brim_width = 5.0 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg new file mode 100644 index 0000000000..22d4f080f6 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg new file mode 100644 index 0000000000..e4bba6ef43 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg new file mode 100644 index 0000000000..43732d22bc --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg new file mode 100644 index 0000000000..59851849f2 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +global_quality = True + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg new file mode 100644 index 0000000000..759d92c12d --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg new file mode 100644 index 0000000000..f0b985cbbc --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg new file mode 100644 index 0000000000..887658e75b --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg new file mode 100644 index 0000000000..df36350350 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +global_quality = True + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg new file mode 100644 index 0000000000..927bf458ab --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg new file mode 100644 index 0000000000..711a072e8d --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg new file mode 100644 index 0000000000..d7c9059a53 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg new file mode 100644 index 0000000000..d0d05d205c --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +global_quality = True + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg new file mode 100644 index 0000000000..5f56c8eb12 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg new file mode 100644 index 0000000000..97790a58d1 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg new file mode 100644 index 0000000000..23fb57ee4c --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg new file mode 100644 index 0000000000..f3af960d25 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +global_quality = True + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg new file mode 100644 index 0000000000..d10765c9b5 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg new file mode 100644 index 0000000000..5f02e6e862 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg new file mode 100644 index 0000000000..4e046542fe --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg new file mode 100644 index 0000000000..b091961142 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +global_quality = True + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg new file mode 100644 index 0000000000..020671bcbf --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg new file mode 100644 index 0000000000..abc8b5d167 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = normal +weight = -1 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg new file mode 100644 index 0000000000..1d779df02b --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg new file mode 100644 index 0000000000..0b7e1313e1 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = quality +quality_type = coarse +weight = -3 +global_quality = True + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg index f49aa6efba..1b21f984f5 100644 --- a/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.20_lay0.05 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_005 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg index e1ac9f5a87..06b0388794 100644 --- a/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.20_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg index ce19a54f0b..7cec4e06df 100644 --- a/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.20_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg index 1abe7b3b62..c672991542 100644 --- a/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.25_lay0.05 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_005 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg index ff6d3ef1e8..3195f17062 100644 --- a/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.25_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg index cdf983d767..d2dbd935da 100644 --- a/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.25_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg index 1c97c7b2f9..1c24d0b55c 100644 --- a/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.25_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg index db24ab36fb..3dd9e0a587 100644 --- a/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.30_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg index b72d2f65cb..4fa74c83b2 100644 --- a/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.30_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg index 58f665aaaa..b0d7b6e137 100644 --- a/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.30_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg index aff39f5aea..803a2c034f 100644 --- a/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.30_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg index 775c58b5cf..1014992b36 100644 --- a/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.35_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg index 15d56f9bc6..9e8e467aad 100644 --- a/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.35_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg index 300fdb0074..d1f760603d 100644 --- a/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.35_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg index 9476b39ee1..9454b32fc4 100644 --- a/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.35_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg index 0117638bd1..824b2d7584 100644 --- a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.40_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg index fd52e93e0b..e0464d4dc9 100644 --- a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.40_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg index f55b249c99..7da7257112 100644 --- a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.40_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg index e0a0deb698..e0c06f3345 100644 --- a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.40_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg index bdf2c7744c..2241bcb76b 100644 --- a/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.40_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg index c5aef24c65..cef96c0898 100644 --- a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.45_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg index 9b9eefca4e..f15d00327f 100644 --- a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.45_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg index 5f18e8901a..59e6754aa2 100644 --- a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.45_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg index e985507ee5..e5c8acc714 100644 --- a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.45_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg index fd4f0a3574..c691aebe20 100644 --- a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.45_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg index 4e940640fe..243f43f9e6 100644 --- a/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.45_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg index 04b3b6b961..4169ce8f65 100644 --- a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.50_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg index 0a907a9a54..d9e24979d2 100644 --- a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.50_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg index a8ac764d0a..eb33bcc204 100644 --- a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.50_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg index 3b6d232072..21a48b5661 100644 --- a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.50_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg index ff02813377..3090a9e96a 100644 --- a/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.50_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg index 2bf1ebbd31..3ffbaa698b 100644 --- a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.60_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg index a34c41acd5..4fae6824b0 100644 --- a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.60_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg index 1edcb5b936..5ba6e6d93e 100644 --- a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.60_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg index dbb7cdbf16..78595dc756 100644 --- a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.60_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg index 1628351d67..b20c650d46 100644 --- a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.60_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg index d52992efe5..46827ba7c5 100644 --- a/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.60_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg index 2544b856dd..ec9d0d58ab 100644 --- a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.80_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg index 313c6b58e6..33e05e8302 100644 --- a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.80_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg index 64e746ee5f..7266cdf071 100644 --- a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.80_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg index 10b8fa9583..242d64e81a 100644 --- a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.80_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg index fbe01dc482..c96241b4b9 100644 --- a/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0.80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz0.80_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg index cf0808c667..e98bc7cba2 100644 --- a/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz1.00_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg index 2764b97ee9..ea0bbfeffe 100644 --- a/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz1.00_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg index 6e90b68f78..41a7409cd9 100644 --- a/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz1.00_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_abs diff --git a/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg index 75cfc48e87..fb7ab4db7d 100644 --- a/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1.00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = abs_noz1.00_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_abs diff --git a/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg index 1cad57f527..a97f2a6b01 100644 --- a/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.20_lay0.05 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_005 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg index e083459a14..c52a9465bb 100644 --- a/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.20_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg index cb89c91fb6..6369089f33 100644 --- a/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.20_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg index a296abfae0..4486093cd5 100644 --- a/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.25_lay0.05 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_005 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg index f9287075a7..f20d9f83ea 100644 --- a/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.25_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg index 2c09fff5ae..82f2593ebb 100644 --- a/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.25_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg index 5842a20d52..63476ba2e9 100644 --- a/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.25_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg index 42414d553d..708f0ba969 100644 --- a/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.30_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg index 1ac134381c..230dd1e4bd 100644 --- a/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.30_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg index cd838cc667..8b7fbbcdb8 100644 --- a/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.30_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg index 08853e94e2..06fba51c64 100644 --- a/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.30_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg index 7395bce88c..f93ba52e32 100644 --- a/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.35_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg index 9c92e1a075..0022d8f4ae 100644 --- a/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.35_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg index e8589e890a..edb26335aa 100644 --- a/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.35_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg index ddbaf42e76..0433d92e29 100644 --- a/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.35_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg index af1b046af8..536fa33299 100644 --- a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.40_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg index 41b9d770d5..ffcf31fc93 100644 --- a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.40_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg index ab2b64b2b1..306bb9b2bf 100644 --- a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.40_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg index 063ecfd44e..6636cbda29 100644 --- a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.40_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg index eec655e442..a089da5bca 100644 --- a/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.40_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg index 2e3bfd74ac..c2106719af 100644 --- a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.45_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg index c22fbc08ea..8b4f4b51c7 100644 --- a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.45_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg index bf2a1252dd..e3f41f193b 100644 --- a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.45_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg index 4f8efbb16a..f7a6a1fd65 100644 --- a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.45_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg index 0177d2a524..7b02d71f58 100644 --- a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.45_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg index 513edc647f..51d07e5c86 100644 --- a/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.45_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg index ebb8368fb0..8ce318a968 100644 --- a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.50_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg index c1cee2fb76..ac9c59a988 100644 --- a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.50_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg index 5740a92038..643c870cdf 100644 --- a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.50_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg index cb7539d9e9..e4e038da93 100644 --- a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.50_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg index c95fd7b0c3..dcacc6db26 100644 --- a/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.50_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg index 4d81ef5e1b..c70d9c3983 100644 --- a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.60_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg index fdee650a52..6a32fe2f54 100644 --- a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.60_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg index e3f04ac214..69b7c45f8a 100644 --- a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.60_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg index ec50ded68f..98c8981a32 100644 --- a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.60_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg index 1d60ebf0fa..ba10a91b5e 100644 --- a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.60_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg index 7b236ea520..f69eb77bd8 100644 --- a/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.60_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg index 0e504b0d3c..30b335d00a 100644 --- a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.80_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg index 525383238f..5c42dfcaa4 100644 --- a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.80_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg index b596cd83f4..c9128d0e7c 100644 --- a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.80_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg index 48adfa799c..68abc0abbf 100644 --- a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.80_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg index 8d8023d19d..94dc88aec2 100644 --- a/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0.80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz0.80_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg index 1850a8b4a3..79514ae273 100644 --- a/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz1.00_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg index f96326e664..7576c64b45 100644 --- a/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz1.00_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg index 4fb5f9991c..5f1f8e2106 100644 --- a/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz1.00_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_petg diff --git a/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg index 85bbf08066..aaa42e4af4 100644 --- a/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1.00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = petg_noz1.00_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_petg diff --git a/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg index 67bbfb2dc5..9cc9256c43 100644 --- a/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.20_lay0.05 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_005 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg index 3e30fb5872..22a8882dfb 100644 --- a/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.20_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg index af980f531f..83f5a4a6d7 100644 --- a/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.20_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg index 709c871c9d..2eaefe8219 100644 --- a/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.25_lay0.05 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_005 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg index 134095df2b..bd4e5cb3ed 100644 --- a/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.25_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg index 70c745dffc..5517ef516e 100644 --- a/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.25_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg index 96a14fec50..5fa944c9bf 100644 --- a/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.25_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg index 4db1a169e6..ece851d4d0 100644 --- a/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.30_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg index 0f219331da..304d05e5b7 100644 --- a/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.30_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg index 82834e5f91..53db44a845 100644 --- a/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.30_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg index a172ed68d6..202b7d3472 100644 --- a/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.30_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg index 484c33f11f..44a059020a 100644 --- a/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.35_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg index ac03808b5c..ca2ea03c5c 100644 --- a/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.35_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg index 7d275e2fe7..939cb910df 100644 --- a/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.35_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg index 5318ccf58e..2c3792b067 100644 --- a/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.35_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg index 921e1d7034..4c40ebc8af 100644 --- a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.40_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg index e76776a62e..655d1b031a 100644 --- a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.40_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg index 4b97cea0a7..6f15d4cba2 100644 --- a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.40_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg index 570ccc6e60..fea18bf5a1 100644 --- a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.40_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg index f01be1b0a9..a8955ec2ca 100644 --- a/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.40_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg index 6536228dcd..7596df4259 100644 --- a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.45_lay0.10 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg index 1bc4e7b6d7..8d60c1e7d9 100644 --- a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.45_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg index 645e3ac958..96b51a9338 100644 --- a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.45_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg index ea1dac8cc6..c40dbe1bb7 100644 --- a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.45_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg index a510c89be1..463469f66c 100644 --- a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.45_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg index 6a3495ff20..f7362df51e 100644 --- a/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.45_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg index 9e5a343483..b03842d770 100644 --- a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.50_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg index ccd52c8cf3..ee8737305c 100644 --- a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.50_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg index 6fabfd9538..68ddff68f5 100644 --- a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.50_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg index 4a53d994e7..6d36baa747 100644 --- a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.50_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg index 34e702812c..1c80c6e816 100644 --- a/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.50_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg index 3d83a4d5d7..4bb6f7e128 100644 --- a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.60_lay0.15 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg index 182fa1befa..5e871a7d57 100644 --- a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.60_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg index f31acf5dca..3f2037dcb8 100644 --- a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.60_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg index 0d09bd84f4..a2c2206ade 100644 --- a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.60_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg index 8762443d77..bcc58b89c0 100644 --- a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.60_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg index a64fcba9b3..52fc804218 100644 --- a/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.60_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg index 40ad00d442..076dcb61ec 100644 --- a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.80_lay0.20 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg index b0a1f7809f..3fde2b0c46 100644 --- a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.80_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg index 753d872472..19e6dec562 100644 --- a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.80_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg index dec573b097..328f32757c 100644 --- a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.80_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg index 90803f5629..988dfa1556 100644 --- a/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0.80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz0.80_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg index 234f6fdd7a..9da8318bdd 100644 --- a/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz1.00_lay0.25 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg index dbe1b68be9..33eb70a6eb 100644 --- a/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz1.00_lay0.30 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg index 91c9664f5d..1eea57e56f 100644 --- a/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz1.00_lay0.35 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 material = generic_pla diff --git a/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg index facaf551dd..bec3820cf9 100644 --- a/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1.00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = pla_noz1.00_lay0.40 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 material = generic_pla diff --git a/resources/quality/zav_base/zav_layer_0.05.inst.cfg b/resources/quality/zav_base/zav_layer_0.05.inst.cfg index 7da4f92fa0..909b63f6b8 100644 --- a/resources/quality/zav_base/zav_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.05.inst.cfg @@ -4,7 +4,7 @@ name = Ultra Quality definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_005 weight = -1 diff --git a/resources/quality/zav_base/zav_layer_0.10.inst.cfg b/resources/quality/zav_base/zav_layer_0.10.inst.cfg index 7329c71d14..ac2fbc1e99 100644 --- a/resources/quality/zav_base/zav_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.10.inst.cfg @@ -4,7 +4,7 @@ name = Super Quality definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_010 weight = -2 diff --git a/resources/quality/zav_base/zav_layer_0.15.inst.cfg b/resources/quality/zav_base/zav_layer_0.15.inst.cfg index 1ef5fa57ea..91b463bbeb 100644 --- a/resources/quality/zav_base/zav_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.15.inst.cfg @@ -4,7 +4,7 @@ name = Fast Super Quality definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_015 weight = -3 diff --git a/resources/quality/zav_base/zav_layer_0.20.inst.cfg b/resources/quality/zav_base/zav_layer_0.20.inst.cfg index 1afcb2cc68..c163c00bdb 100644 --- a/resources/quality/zav_base/zav_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.20.inst.cfg @@ -1,10 +1,10 @@ [general] version = 4 -name = Standart Quality +name = Standard Quality definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_020 weight = -4 diff --git a/resources/quality/zav_base/zav_layer_0.25.inst.cfg b/resources/quality/zav_base/zav_layer_0.25.inst.cfg index 0c3874ab59..6e40236be5 100644 --- a/resources/quality/zav_base/zav_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.25.inst.cfg @@ -1,10 +1,10 @@ [general] version = 4 -name = Fast Standart Quality +name = Fast Standard Quality definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_025 weight = -5 diff --git a/resources/quality/zav_base/zav_layer_0.30.inst.cfg b/resources/quality/zav_base/zav_layer_0.30.inst.cfg index 625283107c..698820750d 100644 --- a/resources/quality/zav_base/zav_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.30.inst.cfg @@ -4,7 +4,7 @@ name = Fast Print Quality definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_030 weight = -6 diff --git a/resources/quality/zav_base/zav_layer_0.35.inst.cfg b/resources/quality/zav_base/zav_layer_0.35.inst.cfg index 072faf9fe0..0cf5838d3d 100644 --- a/resources/quality/zav_base/zav_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.35.inst.cfg @@ -4,7 +4,7 @@ name = Draft Quality definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_035 weight = -7 diff --git a/resources/quality/zav_base/zav_layer_0.40.inst.cfg b/resources/quality/zav_base/zav_layer_0.40.inst.cfg index 1baac5c023..1de575e3a7 100644 --- a/resources/quality/zav_base/zav_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.40.inst.cfg @@ -4,7 +4,7 @@ name = Poor Draft Quality definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = ZAV_layer_040 weight = -8 diff --git a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg index 5abbf8e3fc..2bbb604f08 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg index d42f44f69e..e38d170586 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg index 681b38f1ec..cfd89b863c 100644 --- a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg index 60abe34b8d..0fb13aea67 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg index 32f1e8a2f5..ff83ce5bc2 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg index da498f4bd4..53774ca36a 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg index 529300b6d8..084ea161c7 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg @@ -4,7 +4,7 @@ name = Fast definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fast weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg index fde8bd40be..a314855e5f 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg @@ -4,7 +4,7 @@ name = Fine definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = fine weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg index 16def77172..635329f893 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg @@ -4,7 +4,7 @@ name = Normal definition = zyyx_agile [metadata] -setting_version = 17 +setting_version = 19 type = quality quality_type = normal weight = 0 diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index f4acaca9a0..768dad20a5 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -23,7 +23,6 @@ wall_x_extruder_nr wall_thickness wall_line_count optimize_wall_printing_order -fill_perimeter_gaps xy_offset [top_bottom] diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 55a3ab6ce9..8078cf84da 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -31,12 +31,8 @@ wall_line_count wall_0_wipe_dist wall_0_inset optimize_wall_printing_order -outer_inset_first +inset_direction alternate_extra_perimeter -travel_compensate_overlapping_walls_enabled -travel_compensate_overlapping_walls_0_enabled -travel_compensate_overlapping_walls_x_enabled -fill_perimeter_gaps filter_out_tiny_gaps fill_outline_gaps xy_offset @@ -137,6 +133,7 @@ support_bottom_material_flow prime_tower_flow material_flow_layer_0 material_standby_temperature +material_alternate_walls [speed] speed_print @@ -156,8 +153,7 @@ speed_print_layer_0 speed_travel_layer_0 skirt_brim_speed speed_slowdown_layers -speed_equalize_flow_enabled -speed_equalize_flow_max +speed_equalize_flow_width_factor acceleration_enabled acceleration_print acceleration_infill @@ -293,6 +289,7 @@ support_mesh_drop_down prime_blob_enable adhesion_type adhesion_extruder_nr +raft_surface_extruder_nr skirt_line_count skirt_gap skirt_brim_minimal_length @@ -307,6 +304,7 @@ raft_surface_layers raft_surface_thickness raft_surface_line_width raft_surface_line_spacing +raft_interface_layers raft_interface_thickness raft_interface_line_width raft_interface_line_spacing @@ -317,6 +315,7 @@ raft_speed raft_acceleration raft_jerk raft_fan_speed +raft_is_shrink_plate [dual] prime_tower_enable @@ -338,6 +337,7 @@ meshfix_keep_open_polygons meshfix_maximum_resolution meshfix_maximum_travel_resolution meshfix_maximum_deviation +meshfix_maximum_extrusion_area_deviation multiple_mesh_overlap carve_multiple_volumes alternate_carve_order @@ -358,6 +358,10 @@ magic_mesh_surface_mode magic_spiralize smooth_spiralized_contours relative_extrusion +lightning_infill_support_angle +lightning_infill_overhang_angle +lightning_infill_prune_angle +lightning_infill_straightening_angle [experimental] support_tree_wall_thickness diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index df347ef8aa..91d54ef17a 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -1,3 +1,205 @@ +[4.13.1] +* Bug fixes +- Fixed a bug where tree support could go through the model +- Fixed a bug where there were incomplete layers in surface mode + +[4.13.0] +For an overview of the new features in Cura 4.13, please watch our video. + +* Sync material profiles +With Ultimaker Cura 4.13, we give you access to a seamless material experience for Ultimaker Material Alliance materials – with the ease of use you’ve come to expect from Ultimaker materials. You can easily synchronize your Material Alliance profiles with your S-line Ultimaker hardware, at the click of a button. + +* New print profile +A new print profile with 0.3mm layer height for PLA Tough PLA, PVA and BAM for Ultimaker S-line printers + +* 3MF thumbnail +Show the model in the thumbnail of a .3mf file, contributed by fieldOfView + +* Infill density +When printing with a 100% infill the infill pattern will change to ZigZag for all Ultimaker print profiles + +* User login authentication +We’ve streamlined the user login authentication by removing any restrictions, especially for strict enterprise-level IT requirements. + +* Other new features and improvements: +- Improved TPU: top layers have large bridge distance +- Add warning icon to show which extruder is causing the configuration to be 'Not Supported', contributed by fieldOfView +- Show what's new pages with every Cura build +- Speed up loading of settings list +- Re-use vertex buffer objects in rendering +- Add Build Volume Temperature value to ChangeAtZ, contributed by legend069 +- Allow plugins to have multiple views, contributed by Tyronnosaurus +- Reduced top/bottom speed for TPU +- Increased lined width for 0.3mm layer height profiles +- Improved logging to allow debugging in early start-up process + +* Bug fixes: +- Fixed a bug with surface mode will not print all layers +- Fixed a bug where maximum retraction could cause a crash +- Reduced flow for 100% density parts +- Fixed a bug in Surface Mode where small line-segments were created +- Changed the Russian translation for 'nozzle', contributed by mlapkin +- Fixed a visualization bug where layer lines were rendered in weird directions +- Fixed a crash when receiving incomplete cloud API responses +- Add SET_RPATH option to CMake, contributed by boomanaiden154 +- Fixed initial layer bed and print head temperature for Snapmaker profile, contributed by prueker +- Fixed shader compilation on some GPUs, contributed by fieldOfView +- Fixed a bug where Cross 3D infill pattern vertical angles varies wildly +- Bridge Skin Density can be set above 100% +- Fixed tiny travel moves when monotonic ordering was enabled +- Fix crash when using 'Select face to align to the build plate', contributed by eliadevito +- Fixed a bug in fuzzy skin where sometimes it produced weird long overshoots, contributed by BagelOrb +- Fixed undo and redo for support blockers +- Fixed a bug where the Native CAD plugin wouldn't loading +- Fixed a bug where the camera view toggle was not visible +- Fixed some German translations, contributed by Sekisback +- Fixed the link of the beta update message +- Fixed a crash due to extruder being out of range +- Fixed a bug where a disabled extruder was used +- Fixed a bug where the aborted state was not reflected correctly in Monitor view +- Fixed a bug in Pause at Height where it stops extruding +- Fixed a bug where support blockers were included in the bounding box after loading a project file +- Fixed a bug where grouped models become unslicable if the first extruder was disabled +- Fixed a bug in Tree Support where the Z Distance was too big +- Prevented QT plug-ins from being loaded from an insecure directory if an environment variable is set + +* Printer definitions, profiles and materials: +- Add Eazao Zero printer definition, contributed by Hogan-Polaris +- Add XYZprinting printer definitions, contributed by heed818 + +[4.12.1] +* Bug fixes +- Updated Shapely to version 1.8.0 which, among other things, fixes multiplying objects on MacOS Monterey +- Fixed a bug in Lightning infill where the infill was printed multiple times under certain circumstances + +[4.12.0] +For an overview of the new features in Cura 4.12, please watch our video. + +* Lightning infill +The new lightning infill setting lets you to print high-quality top layers but is optimized to use less material and increase your production speed. Special thanks to rburema and BagelOrb! + +* Improved top surface quality +We’ve tweaked the Monotonic setting and made adjustments throughout Ultimaker print profiles. This removes occasional scarring on models and improves top surface quality by default. + +* Improved horizontal print quality +Resulting in reduction of ringing, improving resolution and overall print quality. + +* App switcher +The new switcher provides a simpler way to navigate and use other Ultimaker applications, including Ultimaker Digital Factory, Ultimaker Marketplace, and Ultimaker 3D Printing Academy. Reporting bugs to Github is now just one click away, and it’s easier to find the application you need. + +* Faster start-up +We've shaved 10 seconds from Ultimaker Cura's start-up time by optimizing profile data caching. + +* Other new features: +- Moved the skip button to the left bottom on the sign in onboarding page and replaced with the sign in button and Create new account +- Add {material_type} and {material_name} as replacement patterns, contributed by fieldOfView +- Update file name after saving +- Make parking optional in all "methods" of Pause at Height, contributed by fieldOfView + +* Bug fixes: +- Fixed a bug when combing goes through skin on Top Surface Skin Layers +- Fixed a bug in one-at-a-time mode to not wait for initial layer bed temperature if the temperature stays the same +- Fixed a bug where there was double infill and gap filling +- Fixed a bug with monotonic ironing that causes fan speed jump to 255 for ironing pass +- Fixed an engine crash when using monotonic ordering with zigzag skin pattern +- Fixed missing commas in disallowed list for code injections, contributed by YuvalZilber +- Fixed various typos, contributed by luzpaz +- Fixed Filament Change Retract method +- Fixed extra microsegments inserted from Wall Overlap Computation +- Fixed inconsistent material name in the header and material selection dropdown +- Fixed scaling model down after scaling it up with tool handles +- Fixed single instance option when opening different files +- Fixed duplicating and multiplying support blockers +- Fixed a bug where a random 0 was added in end g-code +- Fixed a bug in Tree support in the global and per object settings +- Fixed a bug where special characters in configuration files caused a crash +- Fixed a bug where infill goes through skin +- Fixed a bug where ironing doesn't listen to combing mode +- Fixed a bug related to the translations in the monitor tab + +* Printer definitions, profiles and materials: +- Added Creasee CS50S pro, Creasee Skywalker and Creasee Phoenix printer definitions, contributed by ivovk9 +- Added Joyplace Cremaker M V1, M V2, S V1, contributed by hyu7000 +- Added Hellbot printer definitions, contributed by DevelopmentHellbot +- Added Arjun Pro 300 printer definition, contributed by venkatkamesh +- Added AtomStack printer definitions, contributed by zhpt +- Added Weedo X40 printer definition, contributed by x40-Community +- Added 3DI D300 printer definition, contributed by v27jain +- Changed Crealiy Ender 5 Plus end g-code, contributed by mothnox +- Updated definitions and extruders of Hellbot Magna 2 230/300 dual, contributed by DevelopmentHellbot +- Updated Eryone Thinker printer profile, contributed by Eryone +- Updated FLSUN Super Racer profiles, contritubed by Guilouz +- Updated Mega S and X acceleration to firmware default, contributed by NilsRo + +* Known bugs with Lighting infill: +- Connect infill polygons doesn't work +- Infill Wipe Distance applies to every polyline +- Infill mesh modifier density +- Infill Overlap doesn't work +- Infill before walls order doesn't respect the order when Lightning is enabled + +[4.11.0] +For an overview of the new features in Cura 4.11, please watch our video. + +* Monotonic ordering +The new Monotonic top/bottom order setting enables users to print parts with smoother top surfaces. This is especially useful for parts that need good aesthetics, such as visual prototypes. Or for parts that benefit from smooth surfaces, such as those that contact-sensitive components. + +* Complete UI refresh +Look around and you will notice that we have refreshed over 100 icons throughout Ultimaker Cura. The new icons are designed for clarity – resulting in a simpler and more informative slicing experience. Also, when scaling the Ultimaker Cura window, the UI will adapt, resulting in less visual clutter. + +* Improved digital library integration +Collaborative workflows using the Digital Library are now simpler. Every user with a cloud-connected Ultimaker 3D printer can access stored projects. And we have added a “Search” function to make finding files easier. + +* Save materials profiles to USB +Users can now save all third-party material profiles to USB. This feature is for Ultimaker S-line printers only and is especially useful for cloud-connected (or offline) printers. + +* Notifications for beta and plugin releases +Users can now set notification preferences to alert them to new Ultimaker Cura beta and plug-in releases. + +* Improve logging of errors in OAuth flow +When helping a user with log-in problems it is easier to see where the OAuth flow goes wrong. + +* Search in the description in the settings visibility menu +When searching in the settings visibility menu you will also search in the description of the settings. + +* Bug fixes: +- Fixed the setting visibility button to make it easier to click +- Inform the user that their webcam does not work because they are cloud connected +- Inform the user that their webcam does not work if the firewall is enabled +- Fixed a crash when pressing the slice button while context menu is opened +- Support non-ASCII character in the Digital Library project name +- Fixed integer underflow if print is less than half the initial layer height +- Fixed a bug where infill mesh sometimes default to having walls or skin +- Fix builds with Python 3.8, contributed by StefanBruens +- Fix CC settings for PLA +- Fixed memory leak in Zeroconf 0.25 +- Fixed connecting USB printing with detecting baud-rates, contributed by rrrlasse +- Fixed crash when Cura crashes on exit +- Fixed a bug where the infill goes through walls +- Fixed the version upgrade of preferences file +- Fixed missing icons in deprecated icons list, contributed by fieldOfView +- Fixed a crash in CuraEngine when the prime tower is placed in an invalid position +- Fixed a bug when user is unable to sign in on Linux if a Keyring backend is installed +- Fixed the rotation direction of the 90 degrees rotation arrows, contributed by fieldOfView + +* Printer definitions, profiles and materials: +- Added SecKit SK-Tank, SK-Go printer definitions, contributed by SecKit +- Added MP Mini Delta 2 printer definition, contributed by PurpleHullPeas +- Added Kingroon K3P and K3PS printer definitions, contributed by NoTaMu +- Added Eryone PLA, PLA Wood, PLA Matte and PETG 1.75mm profiles, contributed by dapostol73 +- Added BIQU BX printer definition, contributed by looxonline +- Added FLSun Super race printer definitions, contributed by thushan +- Added Atom 2.0 and Atom Plus printer definitions, contributed by lin-ycv +- Added PBR 3D Gen-I printer definition, contributed by pbr-research +- Added Creasee 3D printer definitions, contributed by ivovk9 +- Updated Strateo3D profiles, contributed by ChronosTech +- Added Voron V0 printer definitions, contributed by jgehrig +- Updated Liquid profiles, contributed by alexgrigoras +- Added Farm 2 and Farm2CE printer definitions, contributed by saliery999 +- Added GooFoo and Renkforce print definitions and GooFoo materials, contributed by goofoo3d + +*From version 4.11 onwards - Ultimaker Cura is only supported on operating systems actively maintained by their software manufacturer or community. This means Windows 7 and MacOS 10.13 will no longer be supported. Technically this means Ultimaker will stop testing and developing for such operating systems. However, even though it is no longer supported, there is still a high likelihood the application keeps functioning. + [4.10.0] For an overview of the new features in Cura 4.10, please watch our video. @@ -36,7 +238,7 @@ When double clicking on a file in the open project dialog in Digital Factory it - Fixed a bug when the seam was not placed in sharpest corner. - Fixed the gantry height for S-line printers. - Fixed a bug where a model is partially below build plate if center selected model is used. -- Fixed a bug where a tootip arrow appeared when the "Manage printers" button is hovered. +- Fixed a bug where a tooltip arrow appeared when the "Manage printers" button is hovered. - Fixed a bug where assemblies were not arranged in the center of the build plate. * Printer definitions, profiles and materials. @@ -53,407 +255,8 @@ When double clicking on a file in the open project dialog in Digital Factory it - Mingda D3, D4 and Rock3, contributed by cataclism. - JGAurora A6, contributed by CrissR. -Please, be aware that after version 4.10 Ultimaker Cura will only be supported on operating systems actively maintained by their software manufacturer or community. This means Windows 7 and MacOS 10.13 will no longer be supported. Technically this means Ultimaker will stop testing and developing for such operating systems. However, even though it is no longer supported, there is still a high likelihood the application keeps functioning. +*Please, be aware that after version 4.10 Ultimaker Cura will only be supported on operating systems actively maintained by their software manufacturer or community. This means Windows 7 and MacOS 10.13 will no longer be supported. Technically this means Ultimaker will stop testing and developing for such operating systems. However, even though it is no longer supported, there is still a high likelihood the application keeps functioning. [4.9.1] -* PETG Profile update. -Ultimaker PETG profiles have been added. The Generic PETG profile for 2.85mm filaments has been updated as well. -* Bug Fixes -- The second extruder should now prime properly again when using a prime blob. -- Reduced the flood of QML errors in the log file. Contributed by fieldOfView. -- Fixed a crash when entering layer view on MacOS 10.13.6. Contributed by jwrw. -- Fixed a crash when there was an inaccessible X: drive in Windows. Cura should no longer try to access the X: drive now. - -[4.9.0] -For an overview of the new features in Cura 4.9, please watch our video. - -* Digital factory integration. -Now you can open files directly from Digital Library projects. Then, after preparation, quickly and easily export them back. This feature is available for all users with an Ultimaker Essentials, Professional, or Excellence subscription. Learn more - -* "Line type" is now the default color scheme. -When entering the Preview mode, you don't have to switch manually to line type. - -* Z-seam is now clearly shown in preview mode. -This ensures that you will know whether the seam will be sufficiently hidden in the end product. This will also indicate the starting point of the print. - Thanks to BasF0 for contributing to this feature - -* New 'line width' color-scheme available in preview mode. -Line-width can now be selected as a color-scheme in preview mode. - -* Weight estimation in decimals. -This provides a more detailed idea of the amount of material used - which is especially useful for smaller prints. - -* Split Shell category into Walls and Top/Bottom. -The shell category was a mix of settings about walls and settings about top/bottom, splitting them into two categories makes more sense. - -* Post-processing script to embed screenshot in g-code. -The ability to have thumbnails embedded. Contributed by Gravedigger7789. - -* Add checkbox for Extruder Offsets. -Ability to enable or disable the extruder offsets to gcode. This will be enabled by default, unless it is in the printer's def.json file. Contributed by RFBomb. - -* Cura should work properly on MacOS 'Big Sur' now, afforded by upgrades to Python (to 3.8) and Qt (to 5.15). -If you had (UX, visual, graphics card) problems, specifically on (newer) MacOS versions, like Big Sur, you should be able to use this new version. - -* Bug Fixes -- Fixed a security vulnerability on windows permitting the openssl library used to launch other programs. Thanks to Xavier Danest for raising this bug. -- Fixed Connect Top/Bottom Polygons. -- Fixed closing Marketplace after quitting Cura. -- Fixed clicking on Marketplace button to go to web Marketplace. -- Fixed Pause at Height when using Repetier flavour. Contributed by EGOiST1991. -- Fixed correct desity for current PETG filaments. Contributed by kad. -- Fixed Pause at height post processing script that returns to right position. -- Fixed layer view being grayed out after reslicing. -- Fixed fan speed issue due to reuse of empty extruder plan. -- Fixed loading OBJ files with no texture references, but does have normal references. -- Fixed retraction/priming while extruder switches. Contributed by sisu70. -- Fixed loading script from all registered resource path. Contributed by fieldOfView. -- Fixed typeError: define_round_method. Contributed by Sophist-UK. -- Fixed missing layer with Hole Horizontal Expansion. -- Fixed Tree Support Floor layers. Contributed by ThomasRahm. -- Fixed Top Surface Skin Layers if Top layers = 0. -- Fixed recent files on opening as project. -- Fixed opening project file from command-line. -- Fixed thumbnail in UFP files. -- Fixed validator for floats in Machine Settings dialog. Contributed by fieldOfView. -- Fixed recessed areas at the bottom of a model while using Make Overhangs Printable. Contributed by OpusMcN. -- Fixed slicing grouped models if one of the group parts is below Z=0. -- Fixed material temperatures and fan speed for Anycubic i3 Mega. Contributed by trunneml. -- Fixed drop model down to buildplate when always drop to buildplate is disabled. -- Fixed drop objects to buildplate after scaling. -- Fixed disallowed areas while using Brim Line Widths. -- Fixed message for non manifold models. -- Fixed setting category arrows. Contributed by fieldOfView. -- Fixed metadate tags for 3MF files. -- Fixed engine crash when using low-density Cross Infill. -- Improved performance of loading .def.json files. - -* Printer definitions, profiles and materials -- 3DFuel Pro PLA and SnapSupport materials, contributed by grk3010. -- Cubincon Style NeoA31, contributed by HUNIBESTHyVISION. -- Eryone thinker series and Eryone ER20, contributed by Eryone. -- Flashforge DreamerNX, contributed by KeltE. -- Fused Form FF300, contributed by FusedForm. -- Geeetech A10 improved start and end gcode, contributed by TheTRCG. -- ideagen3D Sapphire and ideagen3D Sapphire Plus, contributed by Firedrops. -- INAT Proton X printers, contributed by MarkINAT. -- Koonovo, contributed by KOONOVO3DPRINTER. -- Liquid, contributed by alexgrigoras. -- Lulzbot TAZ Pro and Lulzbot Mini 2, contributed by spotrh. -- Maker Made 300x printer, contributed by skilescm. -- MINGDA D2, contributed by cataclism. -- Snapmaker 2.0, contributed by maihde. -- Sri Vignan Technologies, contributed by venkatkamesh. -- Syndaver AXI Machine, contributed by synsuiter. -- Tinyboy Fabricator Mini 1.5, contributed by reibuehl. -- Trimaker printers, contributed by tomasbaldi. -- TwoTrees Bluer, contributed by WashingtonJunior. -- Update Hellbot Magna 1 and Hellbot Magna dual, contributed by DevelopmentHellbot. -- Update Rigid3D and added Rigid3D Mucit2, contributed by mehmetsutas. -- Update TPU profiles for 0.6mm nozzle of UM2+C. -- ZAV series, contributed by kimer2002. - -[4.8.0] -For an overview of the new features in Cura 4.8, please see this video: Change log overview. - -* New arrange algorithm! -Shout-out to Prusa Research, since they made the libnest2d library for this, and allowed a licence change. - -* When opening a project file, pick any matching printer in addition to just exact match and new definition. -Previously, when someone sent you a project, you either had to have the exact same printer under the exact same name, or create an entirely new instance. Now, in the open project dialog, you can specify any printer that has a(n exactly) matching printer-type. - -* Show warning message on profiles that where successfully imported, but not supported by the currently active configuration. -People where a bit confused when adding profiles, which then didn't show up. With this new version, when you add a profile that isn't supported by the current instance (but otherwise correctly imported), you get a warning-message. - -* Show parts of the model below the build-plate in a different color. -When viewing the build-plate from below, there's now shadow visible anymore. As this helped the user determine what part of the model was below the buildplate, we decided to color that part differently instead. - -* Show the familiar striped pattern for objects outside of the build-volume in Preview mode as well. -Models outside of the build-volume can of course not be sliced. In the Prepare mode, this was already visible with solid objects indicated in the familiar grey-yellow striped pattern. Now you can also see the objects that are still in the scene just outside if the build-volume in Preview mode. - -* Iron the top-most bottom layer when spiralizing a solid model, contributed by smartavionics -Ironing was only used for top-layers, or every layer. But what is the biggest flat surface in a vase? This helpful pull request made it so that, in this case, the top-most bottom layer is used to iron on. - -* Allow scrolling through setting-tooltips, useful for some plugins. -Certain plugins, such as the very useful Settings Guide, occasionally have very large tooltips. This update allows you to scroll through those. - -* Bug Fixes -- Fixed under-simplification (blobs, zits) on some printer models. An oversight in 4.6.x resulted in an oversimplification (smoothing) of models. The attempted fix in 4.7.x overcompensated, which gave difficulty (zits, blobs) for some printer models when the resulting gcode became too intricate. This is now fixed, though some profiles might need to be updated, since they where made against 4.6.x, and therefore may rely on the over-simplification. -- Fix percentage text-fields when scaling non-uniformly. -- Fix cloud printer stuck in connect/disconnect loop. -- Fix rare crash when processing stair stepping in support. -- Fix sudden increase in tree support branch diameter. -- Fix cases of tree-support resting against vertical wall. -- Fix conical support missing on printers with 'origin at center' set. -- Fix infill multiplier and connected lines settings not cooperating with each other. -- Fixed an issue with skin-edge support, contributed by smartavionics -- Fix printer renaming didn't always stick after restart. -- Fix move after retraction not changing speed if it's a factor 60 greater. -- Fix Windows file alteration detection (reload file popup message appears again). -- OBJ-file reader now doesn't get confused by legal negative indices. -- Fix off-by-one error that could cause horizontal faces to shift one layer upwards. -- Fix out of bounds array and lost checks for segments ended with mesh vertices, contributed bt skarasov -- Remove redundant 'successful responses' variable, contributed by aerotog -- In rare cases, brim and prime-tower-bim would overlap. -- Fix support for some models when bottom distance and stair step height where both 0 (like with PVA). -- An issue with infill only overlap modifier when the wall line count was overridden in the global settings. -- Filling gaps between walls would also fill between skin and infill. - -* Printer definitions and profiles -- Introducing the Ultimaker 2+ Connect -- Artillery Sidewinder X1, Artillery Sidewinder Genius, contributed by cataclism -- AnyCubic Kossel, contributed by FoxExe -- BIQU B1, contributed by looxonline -- BLV mgn Cube 300, contributed by wolfgangmauer -- Cocoon Create, Cocoon Create Touch, contributed by thushan -- Creality CR-6 SE, contributed by MatthieuMH -- Flying Bear Ghost 5, contributed by oducceu -- Fused Form 3D (FF300, FF600, FF600+, FFmini), contributed by FusedForm -- Add Acetate profiles for Strateo3D, contributed by KOUBeMT - -[4.7.1] -For an overview of the new features in Cura 4.7, please see this video: Change log overview. - -* Bug fixes -- Fixed a crash when duplicating a built-in profile. -- Having an equals symbol in your start or end g-code would cause part of that g-code to disappear and could cause a crash when loading a model. This is fixed now. -- The MacOS build is now notarized by Apple, to prevent a security warning from popping up when starting Cura for the first time. -- Corrected the orientation of the build plate mesh for Tevo Tarantula Pro. - -[4.7.0] -* Rotation widgets -fieldOfView has contributed code that adds 3 pairs of arrow widgets to the Rotate tool handle, to rotate objects by exactly 90 degrees. - -* Performance improvements with multiple 3D models -In previous versions many objects on a build plate could cause Cura's performance and response to be slow. We have made some code optimizations to increase the responsiveness of Cura in such cases. - -* Cloud connections improvements -Improved the overall UX workflow when a user is using a cloud connection. Check our new enhancements below. - -* Moved tree-support from experimental to normal settings -We've made stability fixes and tested thoroughly so that it can be considered stable. - -* Improve object list GUI -The object list indicates now the extruder used for each model, the mesh type if the model is not a normal mesh, and the number of per model setting overrides and whether a model is outside of the build plate. Contributed by fieldOfView. - -* Support for MacOS Big Sur -Ultimaker Cura will now run on Apple's upcoming operating system. - -* Change normal support vs. tree support into a drop-down -There is now the option of easily switching between normal and tree support. You cannot enable both at the same time any more. - -* Add "Multiply model" to Edit menu -The option is now also accessible in the Edit menu and not only in the context menu (right-click). - -* Add local printer improvements -Whenever the user wants to add a non-networked printer it is now easier to distinguish the scrollbar and some more information regarding the selected printer in our new redesigned layout. Have a look yourself! Brought to us by fieldOfView. - -* Show all while searching per object settings -For more ease-of-use, the behavior has been changed so that all settings are visible temporarily, even if initial were hidden. - -* Search through setting descriptions -When searching through the custom settings, the results include all the matches found in both the setting names and setting descriptions. This makes some settings easier to find if you don't remember the name. - -* Check for account updates manually -A check for update/sync/refresh button was added near the account so that the user can manually check for updates of subscribed Marketplace packages and available Digital Factory printers. - -* Always select last write-device -Cura will now remember the last used output device to save the g-code to (to file, USB stick, etc.) Contributed by fieldOfView. - -* Improved sync with the Ultimaker Marketplace -Profile picture and links to the Digital Factory have been improved in the account dropdown. - -* Add option to sign in with another account while looking for cloud printers -The "Sign in with a different account" link logs the user off both from Cura and the browser, so that they can sign in with another account. In case the other account has extra cloud printers, then these printers are added to Cura and are available for use. - -* Show warning in printer management page that removing is temporary -When removing a printer in your Digital Factory, a message pops up to inform the user that the printer will be re-added in the next sync. - -* Show cloud connection not available -We now display an offline icon when losing connection to a printer in the Digital Factory. - -* Show notification when printer is removed from account -We show a notification when a printer is removed from the account. You can either go to the account page to restore access or remove it from Cura. In order to establish a new connection, the user is directed to the Digital Factory. - -* Add an offline printer, linked to an account, to Cura -Printers that are temporarily offline (but previously added to your account) will also be added to Cura. You won't be able to send a print to that printer, but you could slice for it and store the g-code elsewhere. - -* Adjust initial layer horizontal expansion -We adjusted the initial layer horizontal expansion for some profiles. This compensates for Elephant's Foot, a small defect where the bottom of the print has a little ridge where it is molten to the build plate. - -* Allow a g-code to be inserted before or after pausing -It allows the user to enter a custom g-code before and after a pause at height. Contributed by rodrigosclosa. - -* Remove package ratings -The package ratings have been removed from the Marketplace. - -* Remove extra skin wall count in concentric -Hide "Extra Skin Wall Count" setting if a concentric pattern is used, and don't let it affect the print any more. - -* Support Stair Step Minimum Slope Angle -With this setting you can disable stair stepping on the very bottom of the support, up until the slope of the model has a certain angle. - -* Pause at Height scripts combined -Instead of having various scripts to use for different machines, there is now just one Pause at Height post-processing script, so all printers can now have the same features when pausing. Contributed by fieldOfView. - -* Pause at Height limited to 1 redo layer -The "redo layers" setting is replaced by a checkbox to redo just the last layer, to prevent colliding the print head with previously printed layers. - -* Change at Z improvements -Added support for changing Retract Length and Speed and fixed an issue when multiple changes are stacked on top of each other. Contributed by novamxd. - -* Add post-processing script display progress on LCD -The "Display Progress On LCD" post-processing script shows the time left and the percentage on their LCD screen. Contributed by Bostwickenator. - -* Add preference for single instance -If enabled, only one instance of Cura will be started at a time. Contributed by fieldOfView. - -* Remove spaghetti infill -This setting was rarely used and didn't work well. - -* Bug fixes -- Fixed issues with support no longer generated on some parts of the model. Support Stair Steps has caused some support to be missing where it touches the build plate or where it's resting on a shallow surface. It should be complete again. -- Fixed multiple different issues with tree support, where branches would intersect with the model, the wouldn't keep distance when resting on the model, or when printing with Spiralize mode. -- Fixed an issue where Cubic Subdivision infill didn't move along with the model. -- Cubic Subdivision will now rotate according to the Infill Line Directions setting. Contributed by smartavionics. -- X-ray view is now red again, instead of translucent green. -- Improved wording of the "Discard/Keep Changes" dialog for clarity. -- Models assigned to extruders >4 are visible again in layer view. -- Fixed an issue when importing images if the "Base" setting was greater than "Height". -- Cura now outputs a command to cool down the build plate for the second object in one-at-a-time mode even if the Initial Layer Build Plate Temperature is 0. -- Distance between infill and walls and between infill and skin is corrected when using Infill Layer Thickness. -- Fixed a crash when Coasting Minimum Volume is set to 0. -- The usable build volume will no longer be shrunk unnecessarily when not using any adhesion, but using a prime tower with a brim. -- Fixed a slicing crash when combining Randomize Infill Start with an even number for Infill Line Multiplier. -- Improved reduction of model resolution. The Maximum Resolution and Deviation settings should now be more accurate and no longer behave differently in one corner of the model. -- Removed an unintended gap when something was resting on an ironed surface. -- Fix skirt printing out of order, causing unnecessary travel moves. Contributed by smartavionics. -- A fix was added by smartavionics which removes unnecessary long moves that travel towards the outer wall. -- It wasn't possible to connect to a network printer if two network plugins were enabled simultaneously. Now made possible by Loociano. -- Support settings are now visible when you have support disabled, but a support mesh is present in the scene. Fixed by fieldOfView. -- Fix printing speed after performing a retraction when using the stretch post-processing script. Contributed by sgtnoodle. -- Prevent tool panels from overlapping with scene information. Fix made by smartavionics. -- The values of the machine settings would look cut-off on some Linux distributions. Now fixed by smartavionics. -- Fixed settings sometimes not appearing if they belong to a checkbox setting that is enabled by default (e.g. retraction settings belonging to Enable Retraction). -- We cleaned up our “About...” dialog. It is now up to date. -- Improve performance of loading profile metadata. This fix improves the start-up time of Cura. -- When loading images, the translucency and linear options were swapped. Translucency should now again be tuned for lithophanes, and linear for a height map. Contributed by michalsc. -- Retractions in travel move to next layer were sometimes omitted, but that's fixed now. Contributed by smartavionics. -- Fix initial layer thickness when empty initial layers are removed. Contributed by smartavionics. -- If Brim Replaces Support is enabled, the brim will now also replace support interface. - -* Printer definitions and profiles -- Custom printer for Smoothieware firmware. Contributed by grk3010. -- SVT DYITech. Contributed by venkatkamesh. -- HMS434 update. Contributed by maukCC. -- Cubicon Style NEO-A22. Contributed by hunibest-Hyvision. -- Atmat Machines. Contributed by gandzia44. -- Adjusted error limits for some MonoPrice Mini Delta settings. Contributed by PurpleHullPeas. -- Tronxy. Contributed by 64bittuning. -- Uni 3D Series. Contributed by evg33. -- Predator printers and mesh for FLSUN-QQ. Contributed by curso007. -- Fixed bed dimensions for Geeetech A10M and update Geeetech A10. Contributed by gerardrubio and keleticsaba. -- Anycubic Mega Zero. Contributed by kad. -- New Deltacomb models and updates. Contributed by kaleidoscopeit. -- Add 2nd extruder to Tevo Tarantula printers. Contributed by paalex. -- I3 Metal Motion. Contributed by pfelecan. -- Lotmaxx Shark. Contributed by sm3dp. -- Dagoma dual-extrusion printers. Contributed by 0r31. -- Sovol 3D. Contributed by Joyce-lujunxu. -- Tinyboy printers. Contributed by fred2088. -- Beamup L. Contributed by beamup3d. -- Strateo3D material updates. Contributed by KOUBeMT. -- Adjusted firmware speed/acceleration rates for Dagoma Disco. Contributed by Sophist-UK. - -[4.6.2] -* Removed Ultibot from Marketplace login screen. -For professionalism, Ultibot has been asked to leave the Marketplace login screen. He's now gone from everything. - -* Bug fixes -- We fixed a frustrating bug where a package would keep issuing a badge notification to update, even after the package had been updated. -- The Ultimaker 2+ generated an unwanted travel move that could drag priming material into the start of a print. This is now fixed. - -[4.6.1] -* Bug fixes -- Changes to the Simplify() algorithm in 4.6.0 caused Z seam placement issues, which resulted in less-than-perfect results. This has been fixed. -- Added missing nozzle profiles for Ender 3 Pro. - -[4.6.0] - -THANK YOU to all Ultimaker Cura users helping in the fight against COVID-19 – with 3D printing, volunteering, or just by staying home. Want to get involved? Find out more at https://ultimaker.com/in/cura/covid-19 - -* New Intent profiles. -In version 4.4 we introduced Intent profiles for the Ultimaker S3 and Ultimaker S5 which allow you to start prints at the click of a button without a lot of configuration steps. Due to popular demand, version 4.6 expands the range of Engineering Intent profiles to include more of the Ultimaker material portfolio: PC, Nylon, CPE, and CPE+. These work with 0.4 print cores. - -* Show active post processing scripts. -fieldOfview has contributed an ease of use improvement to the post processing plugin. The number of enabled post processing scripts will now display as a badge notification over the post processing scripts icon. A tooltip gives extra information about which scripts are enabled for quick and easy inspection, so there's no need to open the post processing dialog. - -* Hole Horizontal Expansion. -smartavionics has contributed a new setting that applies an offset to all holes on each layer, allowing you to manually enlarge or contract holes to compensate for horizontal expansion. - -* Per-model settings. -The "Infill only" checkbox has been changed to a dropdown selection: “Infill mesh only” or “Cutting mesh”. - -* Transparent support rendering. -In preview mode with ‘Line type’ selected, support material will render with transparency so you can easily see what’s being supported. - -* No stair stepping for PVA profiles. -Stair stepping is intended to reduce the adhesion between support and the model, where the support rests on the model, and to reduce scarring. As PVA doesn't suffer from scarring or adhesion issues due to its water-solubility, this value has been set to 0 for PVA profiles. A known issue with the stair stepping algorithm causes support to disappear sometimes, so doing this reduces the chance of that happening when PVA is used. - -* Separators in extensions menu. -fieldOfview has contributed a method for plugin authors to add separators between menu items in the “Extensions” submenu. The method is backwards-compatible so changes don’t have to be made in Cura and Uranium together. - -* Ultimaker account sign in prompt. -Added clearer text to the sign in popup and first use flow to highlight the benefits of using an Ultimaker account with Cura. - -* Updated installer. -Small fixes have been made to the installer. To keep up with the times, we’ve also updated the images to display an Ultimaker S3 instead of an Ultimaker 3. - -* Infill mesh ordering. -When you have three objects overlapping each other and you set two of them to "Modify settings for infill of other models", then the setting "Infill Mesh Order" determines which of the two infill meshes gets priority where they overlap. This was broken for cutting meshes, so BagelOrb contributed a fix. - -* Backups storage size. -We’ve put a hard limit on backup file size in this release to prevent other files being stored there. - -* 3MF gcode comments removed. -Fixed a bug where comments were removed from Start/End G-codes when opening from a 3MF. - -* Print monitor preheat fields. -Values in the print monitor preheat fields were broken in previous versions, they have now been fixed by fieldOfview. - -* Stepper motor disarming during pause at height. -Some printers automatically disable their steppers after a pause after a certain time. This script makes it possible to set that in the pause script (instead of relying on default behavior of the firmware). - -* Crash if logging in on two instances at the same time. -During the beta period we caught a critical bug where logging in to an Ultimaker account with two instances of Cura would crash the second instance. It crashes because while the web page is open, Cura opens a web server in the local host. The web page redirects to that web server when you've logged in, so that it knows that the log-in was successful and what the credentials are. Both instances try to create a web server on the same port, which is impossible. - -* "Changes detected from your Ultimaker account" message. -We fixed a bug on MacOS where duplicate "Changes detected from your Ultimaker account" popups would appear at a single time. - -* Crashes when inactive. -Some people reported experiencing crashes when the computer had been inactive for a long time, or when the laptop got suspended or went to sleep. This has been fixed. - -* Support blocker is not blocking support. -Fixed an issue where the support blocker was not blocking support. - -* Sending slice message takes too long when using mesh helpers. -Fixed an issue where it would take too long to trigger a slice when using the mesh helpers and support blocker. - -* Flying Bear printers. -oducceu has contributed a machine definition for the Flying Bear Ghost 4S Printer. - -* Magicfirm printers. -jeffkyjin has contributed machine definitions for MBot Grid II+, MBot Grid II+ (dual), MBot Grid IV+ and MBot Grid IV+ (dual). - -* HMS434. -Updates to the HMS434 machine definition have been contributed by maukcc. - -* FabX Pro. -hussainsail2002 has contributed machine definitions for FabX Pro and print profiles for REDD materials. - -* Disclaimer: Third-party machine definitions are accepted as contributed, and are not tested or maintained in any way by the Cura development team. - -[4.5.0] - -The release notes of versions <= 4.5.0 can be found in our releases GitHub page. +The release notes of versions <= 4.9.1 can be found in our releases GitHub page. \ No newline at end of file diff --git a/resources/texts/whats_new/0.html b/resources/texts/whats_new/0.html deleted file mode 100644 index d0a7459099..0000000000 --- a/resources/texts/whats_new/0.html +++ /dev/null @@ -1,3 +0,0 @@ -

    Open native CAD files for Ultimaker Professional and Excellence

    -

    Ultimaker Professional and Excellence subscribers can now directly import native CAD files into Ultimaker Cura. This provides users with an even more effective workflow by boosting productivity and increasing first-time right results.
    -Learn more about our enterprise plans to access this feature.

    \ No newline at end of file diff --git a/resources/texts/whats_new/1.html b/resources/texts/whats_new/1.html deleted file mode 100644 index 2537344454..0000000000 --- a/resources/texts/whats_new/1.html +++ /dev/null @@ -1,2 +0,0 @@ -

    Try Ultimaker 3D Printing Academy and level up your slicing skills

    -

    Follow the Expert Tips for Ultimaker Cura course in the Ultimaker 3D Printing Academy and expand your knowledge. Get the most out of your slicing software by learning how to optimize prints and receive plugin recommendations from our team of 3D printing experts.

    diff --git a/resources/texts/whats_new/2.html b/resources/texts/whats_new/2.html deleted file mode 100644 index a6f20cb493..0000000000 --- a/resources/texts/whats_new/2.html +++ /dev/null @@ -1,2 +0,0 @@ -

    Ultimaker PETG print profiles are now available for the Ultimaker 3

    -

    Ultimaker PETG sets the standard for industrial applications and is suitable for a wide range of use cases thanks to its ease of use and versatility. Ultimaker PETG is now fully supported on the Ultimaker 3. Find out more.

    \ No newline at end of file diff --git a/resources/texts/whats_new/3.html b/resources/texts/whats_new/3.html deleted file mode 100644 index a433453bde..0000000000 --- a/resources/texts/whats_new/3.html +++ /dev/null @@ -1,2 +0,0 @@ -

    Flow rate

    -

    Thanks to Khani3s, we have now added the volumetric flow rate (in mm³/s) to the preview mode color schemes. In addition, we tweaked the minimum/maximum color values, making it easier to optimize your print strategy displayed as the flow, layer thickness, line width and speed.

    \ No newline at end of file diff --git a/resources/texts/whats_new/4.html b/resources/texts/whats_new/4.html deleted file mode 100644 index 5997ce2408..0000000000 --- a/resources/texts/whats_new/4.html +++ /dev/null @@ -1,2 +0,0 @@ -

    Learn more!

    -

    Want more information for Ultimaker Cura 4.10? Read the blog post or watch the video, and don't forget to give us your feedback!

    \ No newline at end of file diff --git a/resources/themes/cura-dark-colorblind/theme.json b/resources/themes/cura-dark-colorblind/theme.json index c98fb0c815..4a006ee836 100644 --- a/resources/themes/cura-dark-colorblind/theme.json +++ b/resources/themes/cura-dark-colorblind/theme.json @@ -8,12 +8,8 @@ "x_axis": [212, 0, 0, 255], "y_axis": [64, 64, 255, 255], - "model_default": [156, 201, 36, 255], "model_overhang": [200, 0, 255, 255], - - "xray_error_dark": [255, 0, 0, 255], - "xray_error_light": [255, 255, 0, 255], "xray": [26, 26, 62, 255], "xray_error": [255, 0, 0, 255], diff --git a/resources/themes/cura-dark/images/first_run_ultimaker_cloud.svg b/resources/themes/cura-dark/images/first_run_ultimaker_cloud.svg new file mode 100644 index 0000000000..8cd749305e --- /dev/null +++ b/resources/themes/cura-dark/images/first_run_ultimaker_cloud.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-dark/images/welcome_cura.svg b/resources/themes/cura-dark/images/welcome_cura.svg new file mode 100644 index 0000000000..f92f032a2a --- /dev/null +++ b/resources/themes/cura-dark/images/welcome_cura.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-dark/theme.json b/resources/themes/cura-dark/theme.json index 457d2092c1..afd36e8741 100644 --- a/resources/themes/cura-dark/theme.json +++ b/resources/themes/cura-dark/theme.json @@ -4,46 +4,85 @@ "inherits": "cura-light" }, + "base_colors": + { + "background_1": [31, 31, 32, 255], + "background_2": [57, 57, 58, 255], + "background_3": [85, 85, 87, 255], + "background_4": [23, 23, 23, 255], + + "accent_1": [25, 110, 240, 255], + "accent_2": [16, 70, 156, 255], + "border_main": [118, 118, 119, 255], + "border_accent_1": [255, 255, 255, 255], + "border_accent_2": [16, 70, 156, 255], + "border_field": [57, 57, 58, 255], + + "text_default": [255, 255, 255, 255], + "text_disabled": [118, 118, 118, 255], + "text_primary_button": [255, 255, 255, 255], + "text_secondary_button": [255, 255, 255, 255], + "text_link_hover": [156, 195, 255, 255], + "text_lighter": [243, 243, 243, 255], + + "um_green_1": [233, 245, 237, 255], + "um_green_5": [36, 162, 73, 255], + "um_green_9": [31, 44, 36, 255], + "um_red_1": [251, 232, 233, 255], + "um_red_5": [218, 30, 40, 255], + "um_red_9": [59, 31, 33, 255], + "um_orange_1": [255, 235, 221, 255], + "um_orange_5": [252, 123, 30, 255], + "um_orange_9": [64, 45, 32, 255], + "um_yellow_1": [255, 248, 225, 255], + "um_yellow_5": [253, 209, 58, 255], + "um_yellow_9": [64, 58, 36, 255] + }, + "colors": { - "main_background": [39, 44, 48, 255], - "message_background": [39, 44, 48, 255], + "main_background": "background_1", + "detail_background": "background_2", + "message_background": "background_1", "wide_lining": [31, 36, 39, 255], "thick_lining": [255, 255, 255, 60], - "lining": [64, 69, 72, 255], - "viewport_overlay": [30, 36, 39, 255], + "lining": "border_main", + "viewport_overlay": "background_1", "primary": [12, 169, 227, 255], - "primary_text": [255, 255, 255, 204], + "primary_text": "text_default", "secondary": [95, 95, 95, 255], - "secondary_button": [39, 44, 48, 255], - "secondary_button_hover": [85, 85, 87, 255], + "expandable_active": "background_2", + "expandable_hover": "background_2", + + "secondary_button": "background_1", + "secondary_button_hover": "background_3", "secondary_button_text": [255, 255, 255, 255], - "icon": [255, 255, 255, 255], - "toolbar_background": [39, 44, 48, 255], - "toolbar_button_active": [57, 57, 58, 255], - "toolbar_button_hover": [57, 57, 58, 255], - "toolbar_button_active_hover": [57, 57, 58, 255], + "icon": "text_default", + "toolbar_background": "background_1", + "toolbar_button_active": "background_3", + "toolbar_button_hover": "background_3", + "toolbar_button_active_hover": "background_3", - "main_window_header_button_text_inactive": [128, 128, 128, 255], - "main_window_header_background": [14, 14, 14, 255], - "main_window_header_background_gradient": [32, 32, 32, 255], + "main_window_header_button_background_inactive": "background_4", + "main_window_header_button_text_inactive": "text_primary_button", + "main_window_header_button_text_active": "background_4", + "main_window_header_background": "background_4", + "main_window_header_background_gradient": "background_4", "main_window_header_button_background_hovered": [46, 46, 46, 255], + "secondary_button_text": "text_secondary_button", + "account_sync_state_icon": [255, 255, 255, 204], - "machine_selector_bar": [39, 44, 48, 255], - "machine_selector_active": [39, 44, 48, 255], "machine_selector_printer_icon": [204, 204, 204, 255], - "text": [255, 255, 255, 204], + "text": "text_default", "text_detail": [255, 255, 255, 172], - "text_link": [25, 110, 240, 255], + "text_link": "accent_1", "text_inactive": [255, 255, 255, 88], "text_hover": [255, 255, 255, 204], - "text_pressed": [255, 255, 255, 204], - "text_subtext": [255, 255, 255, 172], "text_scene": [255, 255, 255, 162], "text_scene_hover": [255, 255, 255, 204], @@ -54,22 +93,14 @@ "button": [39, 44, 48, 255], "button_hover": [39, 44, 48, 255], - "button_active": [67, 72, 75, 255], - "button_active_hover": [67, 72, 75, 255], - "button_text": [255, 255, 255, 197], + "button_text": "text_default", "button_disabled": [39, 44, 48, 255], "button_disabled_text": [255, 255, 255, 101], - "small_button": [39, 44, 48, 0], - "small_button_hover": [39, 44, 48, 255], - "small_button_active": [67, 72, 75, 255], - "small_button_active_hover": [67, 72, 75, 255], "small_button_text": [255, 255, 255, 197], "small_button_text_hover": [255, 255, 255, 255], "button_tooltip": [39, 44, 48, 255], - "button_tooltip_border": [39, 44, 48, 255], - "button_tooltip_text": [255, 255, 255, 172], "tab_checked": [39, 44, 48, 255], "tab_checked_border": [255, 255, 255, 30], @@ -85,17 +116,17 @@ "tab_active_text": [255, 255, 255, 255], "tab_background": [39, 44, 48, 255], - "action_button": [39, 44, 48, 255], + "action_button": "background_1", "action_button_text": [255, 255, 255, 200], - "action_button_border": [255, 255, 255, 30], + "action_button_border": "border_main", "action_button_hovered": [79, 85, 89, 255], - "action_button_hovered_text": [255, 255, 255, 255], - "action_button_hovered_border": [255, 255, 255, 30], + "action_button_hovered_text": "text_default", + "action_button_hovered_border": "border_main", "action_button_active": [39, 44, 48, 30], - "action_button_active_text": [255, 255, 255, 255], + "action_button_active_text": "text_default", "action_button_active_border": [255, 255, 255, 100], - "action_button_disabled": [85, 85, 87, 255], - "action_button_disabled_text": [103, 103, 104, 255], + "action_button_disabled": "background_3", + "action_button_disabled_text": "text_disabled", "action_button_disabled_border": [255, 255, 255, 30], "scrollbar_background": [39, 44, 48, 0], @@ -103,39 +134,28 @@ "scrollbar_handle_hover": [255, 255, 255, 255], "scrollbar_handle_down": [255, 255, 255, 255], - "setting_category": [75, 80, 83, 255], + "setting_category": "background_3", "setting_category_disabled": [75, 80, 83, 255], - "setting_category_hover": [75, 80, 83, 255], - "setting_category_active": [75, 80, 83, 255], - "setting_category_active_hover": [75, 80, 83, 255], + "setting_category_hover": "background_3", "setting_category_text": [255, 255, 255, 152], "setting_category_disabled_text": [255, 255, 255, 101], - "setting_category_hover_text": [255, 255, 255, 204], "setting_category_active_text": [255, 255, 255, 204], - "setting_category_active_hover_text": [255, 255, 255, 204], - "setting_category_border": [39, 44, 48, 0], - "setting_category_disabled_border": [39, 44, 48, 0], - "setting_category_hover_border": [12, 169, 227, 255], - "setting_category_active_border": [39, 44, 48, 0], - "setting_category_active_hover_border": [12, 169, 227, 255], - "setting_control": [43, 48, 52, 255], + "setting_control": "background_2", "setting_control_selected": [34, 39, 42, 38], - "setting_control_highlight": [43, 48, 52, 255], + "setting_control_highlight": "background_3", "setting_control_border": [255, 255, 255, 38], "setting_control_border_highlight": [12, 169, 227, 255], - "setting_control_text": [255, 255, 255, 181], + "setting_control_text": "text_default", "setting_control_button": [255, 255, 255, 127], "setting_control_button_hover": [255, 255, 255, 204], "setting_control_disabled": [34, 39, 42, 255], "setting_control_disabled_text": [255, 255, 255, 101], "setting_control_disabled_border": [255, 255, 255, 101], "setting_unit": [255, 255, 255, 127], - "setting_validation_error_background": [59, 31, 53, 255], - "setting_validation_error": [212, 31, 53, 255], - "setting_validation_warning_background": [62, 54, 46, 255], - "setting_validation_warning": [245, 166, 35, 255], - "setting_validation_ok": [43, 48, 52, 255], + "setting_validation_error_background": "um_red_9", + "setting_validation_warning_background": "um_yellow_9", + "setting_validation_ok": "background_2", "progressbar_background": [255, 255, 255, 48], "progressbar_control": [255, 255, 255, 197], @@ -146,23 +166,14 @@ "slider_handle": [255, 255, 255, 255], "slider_handle_active": [68, 192, 255, 255], - "checkbox": [43, 48, 52, 255], - "checkbox_hover": [43, 48, 52, 255], - "checkbox_border": [255, 255, 255, 38], - "checkbox_border_hover": [255, 255, 255, 38], - "checkbox_mark": [255, 255, 255, 181], - "checkbox_text": [255, 255, 255, 181], + "category_background": "background_3", - "tooltip": [39, 44, 48, 255], - "tooltip_text": [255, 255, 255, 204], + "tooltip": "background_2", + "tooltip_text": "text_default", - "tool_panel_background": [39, 44, 48, 255], + "tool_panel_background": "background_1", - "tool_button_border": [255, 255, 255, 38], - - "y_axis": [96, 96, 255, 255], - - "viewport_background": [31, 36, 39, 255], + "viewport_background": "background_1", "volume_outline": [12, 169, 227, 128], "buildplate": [169, 169, 169, 255], "buildplate_grid_minor": [154, 154, 155, 255], @@ -175,9 +186,6 @@ "quality_slider_available": [255, 255, 255, 255], - "toolbox_header_button_text_active": [255, 255, 255, 255], - "toolbox_header_button_text_inactive": [128, 128, 128, 255], - "monitor_printer_family_tag": [86, 86, 106, 255], "monitor_text_disabled": [102, 102, 102, 255], "monitor_icon_primary": [229, 229, 229, 255], @@ -185,16 +193,12 @@ "monitor_icon_disabled": [102, 102, 102, 255], "monitor_secondary_button_hover": [80, 80, 80, 255], - "monitor_secondary_button": [92, 92, 92, 255], - "monitor_secondary_button_text": [250, 250, 250, 255], - "monitor_secondary_button_shadow": [74, 74, 74, 255], - "monitor_card_border": [102, 102, 102, 255], "monitor_card_background": [51, 53, 54, 255], "monitor_card_hover": [84, 89, 95, 255], - "monitor_stage_background": [30, 36, 39, 255], - "monitor_stage_background_fade": [30, 36, 39, 102], + "monitor_stage_background": "background_1", + "monitor_stage_background_fade": "background_1", "monitor_progress_bar_deactive": [102, 102, 102, 255], "monitor_progress_bar_empty": [67, 67, 67, 255], diff --git a/resources/themes/cura-light-colorblind/theme.json b/resources/themes/cura-light-colorblind/theme.json index 5628fad880..740bf977b2 100644 --- a/resources/themes/cura-light-colorblind/theme.json +++ b/resources/themes/cura-light-colorblind/theme.json @@ -8,7 +8,6 @@ "x_axis": [200, 0, 0, 255], "y_axis": [64, 64, 255, 255], - "model_default": [156, 201, 36, 255], "model_overhang": [200, 0, 255, 255], "model_selection_outline": [12, 169, 227, 255], diff --git a/resources/themes/cura-light/icons/default/ArrowDown.svg b/resources/themes/cura-light/icons/default/ArrowDown.svg new file mode 100644 index 0000000000..ab5ea8e076 --- /dev/null +++ b/resources/themes/cura-light/icons/default/ArrowDown.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/ArrowLeft.svg b/resources/themes/cura-light/icons/default/ArrowLeft.svg new file mode 100644 index 0000000000..d722b8ae8d --- /dev/null +++ b/resources/themes/cura-light/icons/default/ArrowLeft.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/BlockGrid.svg b/resources/themes/cura-light/icons/default/BlockGrid.svg new file mode 100644 index 0000000000..207171b8f7 --- /dev/null +++ b/resources/themes/cura-light/icons/default/BlockGrid.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Browser.svg b/resources/themes/cura-light/icons/default/Browser.svg new file mode 100644 index 0000000000..01365ec678 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Browser.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Bug.svg b/resources/themes/cura-light/icons/default/Bug.svg new file mode 100644 index 0000000000..7ad9bb4f1c --- /dev/null +++ b/resources/themes/cura-light/icons/default/Bug.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/UM3NetworkPrinting/resources/svg/icons/Buildplate.svg b/resources/themes/cura-light/icons/default/Buildplate.svg old mode 100755 new mode 100644 similarity index 100% rename from plugins/UM3NetworkPrinting/resources/svg/icons/Buildplate.svg rename to resources/themes/cura-light/icons/default/Buildplate.svg diff --git a/resources/themes/cura-light/icons/default/Certified.svg b/resources/themes/cura-light/icons/default/Certified.svg new file mode 100644 index 0000000000..031011213a --- /dev/null +++ b/resources/themes/cura-light/icons/default/Certified.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/DocumentFilled.svg b/resources/themes/cura-light/icons/default/DocumentFilled.svg new file mode 100644 index 0000000000..bb654fea33 --- /dev/null +++ b/resources/themes/cura-light/icons/default/DocumentFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Download.svg b/resources/themes/cura-light/icons/default/Download.svg new file mode 100644 index 0000000000..cbe0da2a99 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Download.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/EmptyInfo.svg b/resources/themes/cura-light/icons/default/EmptyInfo.svg new file mode 100644 index 0000000000..49d67746d1 --- /dev/null +++ b/resources/themes/cura-light/icons/default/EmptyInfo.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/FoodBeverages.svg b/resources/themes/cura-light/icons/default/FoodBeverages.svg new file mode 100644 index 0000000000..1e74b33955 --- /dev/null +++ b/resources/themes/cura-light/icons/default/FoodBeverages.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Globe.svg b/resources/themes/cura-light/icons/default/Globe.svg new file mode 100644 index 0000000000..4d955e9615 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Globe.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/themes/cura-light/icons/default/Help.svg b/resources/themes/cura-light/icons/default/Help.svg new file mode 100644 index 0000000000..84f94c2703 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Help.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Knowledge.svg b/resources/themes/cura-light/icons/default/Knowledge.svg new file mode 100644 index 0000000000..4f8798d5f1 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Knowledge.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Library.svg b/resources/themes/cura-light/icons/default/Library.svg new file mode 100644 index 0000000000..beb8c6e593 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Library.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/People.svg b/resources/themes/cura-light/icons/default/People.svg new file mode 100644 index 0000000000..8632b37f7c --- /dev/null +++ b/resources/themes/cura-light/icons/default/People.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Play.svg b/resources/themes/cura-light/icons/default/Play.svg new file mode 100644 index 0000000000..1b2510513d --- /dev/null +++ b/resources/themes/cura-light/icons/default/Play.svg @@ -0,0 +1,5 @@ + + + + diff --git a/resources/themes/cura-light/icons/default/Settings.svg b/resources/themes/cura-light/icons/default/Settings.svg new file mode 100644 index 0000000000..feb0ab0cc8 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Settings.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Shop.svg b/resources/themes/cura-light/icons/default/Shop.svg new file mode 100644 index 0000000000..bfd5a4bf69 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Shop.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/ShoppingCart.svg b/resources/themes/cura-light/icons/default/ShoppingCart.svg new file mode 100644 index 0000000000..b3fece3fab --- /dev/null +++ b/resources/themes/cura-light/icons/default/ShoppingCart.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Speak.svg b/resources/themes/cura-light/icons/default/Speak.svg new file mode 100644 index 0000000000..8f308643a7 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Speak.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/Spinner.svg b/resources/themes/cura-light/icons/default/Spinner.svg new file mode 100644 index 0000000000..22a8f4dfd9 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Spinner.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/deprecated_icons.json b/resources/themes/cura-light/icons/deprecated_icons.json index df286cffc7..28abf119ae 100644 --- a/resources/themes/cura-light/icons/deprecated_icons.json +++ b/resources/themes/cura-light/icons/deprecated_icons.json @@ -1,306 +1,402 @@ { - "notice": { - "new_icon": "Information", - "size": "default" - }, - "info": { - "new_icon": "Information", - "size": "default" - }, - "plus": { - "new_icon": "Plus", - "size": "default" - }, - "cross1": { - "new_icon": "Cancel", - "size": "default" - }, - "application": { - "new_icon": "UltimakerCura", - "size": "default" - }, - "printer_single": { - "new_icon": "Printer", - "size": "default" - }, - "category_material": { - "new_icon": "Spool", - "size": "default" - }, - "settings": { - "new_icon": "Sliders", - "size": "default" - }, - "plugin": { - "new_icon": "Plugin", - "size": "default" - }, - "external_link": { - "new_icon": "LinkExternal", - "size": "default" - }, - "arrow_top": { - "new_icon": "ChevronSingleUp", - "size": "default" - }, - "arrow_bottom": { - "new_icon": "ChevronSingleDown", - "size": "default" - }, - "arrow_right": { - "new_icon": "ChevronSingleRight", - "size": "default" - }, - "pos_normal": { - "new_icon": "Infill0", - "size": "default" - }, - "pos_print_as_support": { - "new_icon": "MeshTypeSupport", - "size": "default" - }, - "pos_modify_overlaps": { - "new_icon": "MeshTypeIntersect", - "size": "default" - }, - "pos_modify_dont_support_overlap": { - "new_icon": "BlockSupportOverlaps", - "size": "default" - }, - "minus": { - "new_icon": "Minus", - "size": "default" - }, - "load": { - "new_icon": "Folder", - "size": "default" - }, - "extruder_button": { - "new_icon": "Extruder", - "size": "medium" - }, - "category_adhesion": { - "new_icon": "Adhesion", - "size": "default" - }, - "category_machine": { - "new_icon": "Printer", - "size": "default" - }, - "category_layer_height": { - "new_icon": "PrintQuality", - "size": "default" - }, - "category_shell": { - "new_icon": "PrintShell", - "size": "default" - }, - "category_topbottom": { - "new_icon": "PrintTopBottom", - "size": "default" - }, - "category_infill": { - "new_icon": "Infill1", - "size": "default" - }, - "category_speed": { - "new_icon": "SpeedOMeter", - "size": "default" - }, - "category_travel": { - "new_icon": "PrintTravel", - "size": "default" - }, - "category_cool": { - "new_icon": "Fan", - "size": "default" - }, - "category_support": { - "new_icon": "Support", - "size": "default" - }, - "category_dual": { - "new_icon": "DualExtrusion", - "size": "default" - }, - "category_fixes": { - "new_icon": "Bandage", - "size": "default" - }, - "category_blackmagic": { - "new_icon": "BlackMagic", - "size": "default" - }, - "category_experimental": { - "new_icon": "Experiment", - "size": "default" - }, - "circle_outline": { - "new_icon": "CircleOutline", - "size": "default" - }, - "update": { - "new_icon": "ArrowDoubleCircleRight", - "size": "default" - }, - "checked": { - "new_icon": "CheckCircle", - "size": "default" - }, - "warning_light": { - "new_icon": "Warning", - "size": "default" - }, - "clock": { - "new_icon": "Clock", - "size": "default" - }, - "spool": { - "new_icon": "Spool", - "size": "default" - }, - "warning": { - "new_icon": "Warning", - "size": "default" - }, - "check": { - "new_icon": "Check", - "size": "default" - }, - "pencil": { - "new_icon": "Pencil", - "size": "default" - }, - "printing_guideline": { - "new_icon": "Guide", - "size": "default" - }, - "favorites_star_full": { - "new_icon": "StarFilled", - "size": "default" - }, - "favorites_star_empty": { - "new_icon": "Star", - "size": "default" - }, - "resize": { - "new_icon": "ThreeDots", - "size": "default" - }, - "gradual": { - "new_icon": "InfillGradual", - "size": "default" - }, - "hollow": { - "new_icon": "Infill0", - "size": "default" - }, - "sparse": { - "new_icon": "Infill3", - "size": "default" - }, - "dense": { - "new_icon": "Infill2", - "size": "default" - }, - "solid": { - "new_icon": "Solid", - "size": "default" - }, - "reset": { - "new_icon": "ArrowReset", - "size": "default" - }, - "arrow_left": { - "new_icon": "ChevronSingleLeft", - "size": "default" - }, - "home": { - "new_icon": "House", - "size": "default" - }, - "printer_group": { - "new_icon": "PrinterTriple", - "size": "medium" - }, - "formula": { - "new_icon": "Function", - "size": "default" - }, - "search": { - "new_icon": "Magnifier", - "size": "default" - }, - "menu": { - "new_icon": "Hamburger", - "size": "default" - }, - "view_3d": { - "new_icon": "View3D", - "size": "default" - }, - "view_layer": { - "new_icon": "Layers", - "size": "default" - }, - "view_front": { - "new_icon": "ViewFront", - "size": "default" - }, - "view_top": { - "new_icon": "ViewTop", - "size": "default" - }, - "view_left": { - "new_icon": "ViewLeft", - "size": "default" - }, - "view_right": { - "new_icon": "ViewRight", - "size": "default" - }, - "package": { - "new_icon": "Plugin", - "size": "default" - }, - "material_spool": { - "new_icon": "Spool", - "size": "default" - }, - "dot": { - "new_icon": "Dot", - "size": "low" - }, - "mirror": { - "new_icon": "Mirror", - "size": "default" - }, - "rotate_reset": { - "new_icon": "ArrowReset", - "size": "default" - }, - "rotate_layflat": { - "new_icon": "LayFlat", - "size": "default" - }, - "rotate_face_layflat": { - "new_icon": "LayFlatOnFace", - "size": "default" - }, - "rotate": { - "new_icon": "Rotate", - "size": "default" - }, - "scale_reset": { - "new_icon": "ArrowReset", - "size": "default" - }, - "scale": { - "new_icon": "Scale", - "size": "default" - }, - "translate": { - "new_icon": "ArrowFourWay", - "size": "default" - } + "notice": { + "new_icon": "Information", + "size": "default" + }, + "info": { + "new_icon": "Information", + "size": "default" + }, + "plus": { + "new_icon": "Plus", + "size": "default" + }, + "cross1": { + "new_icon": "Cancel", + "size": "default" + }, + "application": { + "new_icon": "UltimakerCura", + "size": "default" + }, + "printer_single": { + "new_icon": "Printer", + "size": "default" + }, + "category_material": { + "new_icon": "Spool", + "size": "default" + }, + "settings": { + "new_icon": "Sliders", + "size": "default" + }, + "plugin": { + "new_icon": "Plugin", + "size": "default" + }, + "external_link": { + "new_icon": "LinkExternal", + "size": "default" + }, + "arrow_top": { + "new_icon": "ChevronSingleUp", + "size": "default" + }, + "arrow_bottom": { + "new_icon": "ChevronSingleDown", + "size": "default" + }, + "arrow_right": { + "new_icon": "ChevronSingleRight", + "size": "default" + }, + "pos_normal": { + "new_icon": "Infill0", + "size": "default" + }, + "pos_print_as_support": { + "new_icon": "MeshTypeSupport", + "size": "default" + }, + "pos_modify_overlaps": { + "new_icon": "MeshTypeIntersect", + "size": "default" + }, + "pos_modify_dont_support_overlap": { + "new_icon": "BlockSupportOverlaps", + "size": "default" + }, + "minus": { + "new_icon": "Minus", + "size": "default" + }, + "load": { + "new_icon": "Folder", + "size": "default" + }, + "extruder_button": { + "new_icon": "Extruder", + "size": "medium" + }, + "category_adhesion": { + "new_icon": "Adhesion", + "size": "default" + }, + "category_machine": { + "new_icon": "Printer", + "size": "default" + }, + "category_layer_height": { + "new_icon": "PrintQuality", + "size": "default" + }, + "category_shell": { + "new_icon": "PrintShell", + "size": "default" + }, + "category_topbottom": { + "new_icon": "PrintTopBottom", + "size": "default" + }, + "category_infill": { + "new_icon": "Infill1", + "size": "default" + }, + "category_speed": { + "new_icon": "SpeedOMeter", + "size": "default" + }, + "category_travel": { + "new_icon": "PrintTravel", + "size": "default" + }, + "category_cool": { + "new_icon": "Fan", + "size": "default" + }, + "category_support": { + "new_icon": "Support", + "size": "default" + }, + "category_dual": { + "new_icon": "DualExtrusion", + "size": "default" + }, + "category_fixes": { + "new_icon": "Bandage", + "size": "default" + }, + "category_blackmagic": { + "new_icon": "BlackMagic", + "size": "default" + }, + "category_experimental": { + "new_icon": "Experiment", + "size": "default" + }, + "circle_outline": { + "new_icon": "CircleOutline", + "size": "default" + }, + "update": { + "new_icon": "ArrowDoubleCircleRight", + "size": "default" + }, + "checked": { + "new_icon": "CheckCircle", + "size": "default" + }, + "warning_light": { + "new_icon": "Warning", + "size": "default" + }, + "clock": { + "new_icon": "Clock", + "size": "default" + }, + "spool": { + "new_icon": "Spool", + "size": "default" + }, + "warning": { + "new_icon": "Warning", + "size": "default" + }, + "check": { + "new_icon": "Check", + "size": "default" + }, + "star": { + "new_icon": "StarFilled", + "size": "default" + }, + "pencil": { + "new_icon": "Pen", + "size": "default" + }, + "printing_guideline": { + "new_icon": "Guide", + "size": "default" + }, + "favorites_star_full": { + "new_icon": "StarFilled", + "size": "default" + }, + "favorites_star_empty": { + "new_icon": "Star", + "size": "default" + }, + "resize": { + "new_icon": "ThreeDots", + "size": "default" + }, + "gradual": { + "new_icon": "InfillGradual", + "size": "default" + }, + "hollow": { + "new_icon": "Infill0", + "size": "default" + }, + "sparse": { + "new_icon": "Infill3", + "size": "default" + }, + "dense": { + "new_icon": "Infill2", + "size": "default" + }, + "solid": { + "new_icon": "Solid", + "size": "default" + }, + "reset": { + "new_icon": "ArrowReset", + "size": "default" + }, + "arrow_left": { + "new_icon": "ChevronSingleLeft", + "size": "default" + }, + "home": { + "new_icon": "House", + "size": "default" + }, + "printer_group": { + "new_icon": "PrinterTriple", + "size": "medium" + }, + "formula": { + "new_icon": "Function", + "size": "default" + }, + "search": { + "new_icon": "Magnifier", + "size": "default" + }, + "menu": { + "new_icon": "Hamburger", + "size": "default" + }, + "view_3d": { + "new_icon": "View3D", + "size": "default" + }, + "view_layer": { + "new_icon": "Layers", + "size": "default" + }, + "view_front": { + "new_icon": "ViewFront", + "size": "default" + }, + "view_top": { + "new_icon": "ViewTop", + "size": "default" + }, + "view_left": { + "new_icon": "ViewLeft", + "size": "default" + }, + "view_right": { + "new_icon": "ViewRight", + "size": "default" + }, + "package": { + "new_icon": "Plugin", + "size": "default" + }, + "material_spool": { + "new_icon": "Spool", + "size": "default" + }, + "dot": { + "new_icon": "Dot", + "size": "low" + }, + "mirror": { + "new_icon": "Mirror", + "size": "default" + }, + "rotate_reset": { + "new_icon": "ArrowReset", + "size": "default" + }, + "rotate_layflat": { + "new_icon": "LayFlat", + "size": "default" + }, + "rotate_face_layflat": { + "new_icon": "LayFlatOnFace", + "size": "default" + }, + "rotate": { + "new_icon": "Rotate", + "size": "default" + }, + "scale_reset": { + "new_icon": "ArrowReset", + "size": "default" + }, + "scale": { + "new_icon": "Scale", + "size": "default" + }, + "translate": { + "new_icon": "ArrowFourWay", + "size": "default" + }, + "buildplate": { + "new_icon": "Buildplate", + "size": "default" + }, + "basic": { + "new_icon": "PrintQuality", + "size": "default" + }, + "category_shield": { + "new_icon": "Shield", + "size": "default" + }, + "category_unknown": { + "new_icon": "Sputnik", + "size": "default" + }, + "cross2": { + "new_icon": "CancelBlock", + "size": "default" + }, + "drop_down_button": { + "new_icon": "ChevronSingleDown", + "size": "default" + }, + "group": { + "new_icon": "People", + "size": "default" + }, + "link": { + "new_icon": "Link", + "size": "default" + }, + "play": { + "new_icon": "Play", + "size": "default" + }, + "print_time": { + "new_icon": "Clock", + "size": "default" + }, + "printer_cloud_connected": { + "new_icon": "CloudBadge", + "size": "low" + }, + "printer_cloud_not_available": { + "new_icon": "CloudBadge", + "size": "low" + }, + "printer_connected": { + "new_icon": "CheckBlueBG", + "size": "low" + }, + "printsetup": { + "new_icon": "Sliders", + "size": "default" + }, + "quick": { + "new_icon": "Quick", + "size": "default" + }, + "scale_max": { + "new_icon": "ScaleMax", + "size": "default" + }, + "setting_per_object": { + "new_icon": "MeshType", + "size": "default" + }, + "star_empty": { + "new_icon": "Star", + "size": "default" + }, + "star_filled": { + "new_icon": "StarFilled", + "size": "default" + }, + "ulti": { + "new_icon": "PrintQuality", + "size": "default" + }, + "view_xray": { + "new_icon": "CancelBlock", + "size": "default" + }, + "view_normal": { + "new_icon": "Infill0", + "size": "default" + }, + "viewmode": { + "new_icon": "Eye", + "size": "default" + } } \ No newline at end of file diff --git a/resources/themes/cura-light/icons/high/Bug.svg b/resources/themes/cura-light/icons/high/Bug.svg new file mode 100644 index 0000000000..a24963cd8e --- /dev/null +++ b/resources/themes/cura-light/icons/high/Bug.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/Certificate.svg b/resources/themes/cura-light/icons/high/Certificate.svg new file mode 100644 index 0000000000..b588bddd8b --- /dev/null +++ b/resources/themes/cura-light/icons/high/Certificate.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/Help.svg b/resources/themes/cura-light/icons/high/Help.svg new file mode 100644 index 0000000000..355b9dd468 --- /dev/null +++ b/resources/themes/cura-light/icons/high/Help.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/Library.svg b/resources/themes/cura-light/icons/high/Library.svg new file mode 100644 index 0000000000..3ddc018543 --- /dev/null +++ b/resources/themes/cura-light/icons/high/Library.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/People.svg b/resources/themes/cura-light/icons/high/People.svg new file mode 100644 index 0000000000..058353015a --- /dev/null +++ b/resources/themes/cura-light/icons/high/People.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/Plugin.svg b/resources/themes/cura-light/icons/high/Plugin.svg new file mode 100644 index 0000000000..89346eee57 --- /dev/null +++ b/resources/themes/cura-light/icons/high/Plugin.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/PrinterTriple.svg b/resources/themes/cura-light/icons/high/PrinterTriple.svg new file mode 100644 index 0000000000..65e4936bc2 --- /dev/null +++ b/resources/themes/cura-light/icons/high/PrinterTriple.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/Settings.svg b/resources/themes/cura-light/icons/high/Settings.svg new file mode 100644 index 0000000000..1cd2ff324e --- /dev/null +++ b/resources/themes/cura-light/icons/high/Settings.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/Shop.svg b/resources/themes/cura-light/icons/high/Shop.svg new file mode 100644 index 0000000000..7662cf4b9b --- /dev/null +++ b/resources/themes/cura-light/icons/high/Shop.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/Speak.svg b/resources/themes/cura-light/icons/high/Speak.svg new file mode 100644 index 0000000000..68642bba2b --- /dev/null +++ b/resources/themes/cura-light/icons/high/Speak.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/high/Spool.svg b/resources/themes/cura-light/icons/high/Spool.svg new file mode 100644 index 0000000000..3faffb7a52 --- /dev/null +++ b/resources/themes/cura-light/icons/high/Spool.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/low/Check.svg b/resources/themes/cura-light/icons/low/Check.svg index a20a9b1b70..9630b70052 100644 --- a/resources/themes/cura-light/icons/low/Check.svg +++ b/resources/themes/cura-light/icons/low/Check.svg @@ -1,3 +1,3 @@ - - + + diff --git a/resources/themes/cura-light/icons/low/CheckBoxFill.svg b/resources/themes/cura-light/icons/low/CheckBoxFill.svg new file mode 100644 index 0000000000..bfbb6d87f2 --- /dev/null +++ b/resources/themes/cura-light/icons/low/CheckBoxFill.svg @@ -0,0 +1,4 @@ + + + + diff --git a/resources/themes/cura-light/icons/low/CheckThin.svg b/resources/themes/cura-light/icons/low/CheckThin.svg new file mode 100644 index 0000000000..a20a9b1b70 --- /dev/null +++ b/resources/themes/cura-light/icons/low/CheckThin.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/low/ErrorBadge.svg b/resources/themes/cura-light/icons/low/ErrorBadge.svg new file mode 100644 index 0000000000..a4df126394 --- /dev/null +++ b/resources/themes/cura-light/icons/low/ErrorBadge.svg @@ -0,0 +1,4 @@ + + + + diff --git a/resources/themes/cura-light/icons/low/WarningBadge.svg b/resources/themes/cura-light/icons/low/WarningBadge.svg new file mode 100644 index 0000000000..63a77919d4 --- /dev/null +++ b/resources/themes/cura-light/icons/low/WarningBadge.svg @@ -0,0 +1,4 @@ + + + + diff --git a/resources/themes/cura-light/images/3d_printer_faded.svg b/resources/themes/cura-light/images/3d_printer_faded.svg new file mode 100644 index 0000000000..001b12e266 --- /dev/null +++ b/resources/themes/cura-light/images/3d_printer_faded.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/themes/cura-light/images/insert_usb.svg b/resources/themes/cura-light/images/insert_usb.svg new file mode 100644 index 0000000000..4a343e1477 --- /dev/null +++ b/resources/themes/cura-light/images/insert_usb.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/themes/cura-light/images/material_ecosystem.svg b/resources/themes/cura-light/images/material_ecosystem.svg new file mode 100644 index 0000000000..30cf7a6473 --- /dev/null +++ b/resources/themes/cura-light/images/material_ecosystem.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/themes/cura-light/styles.qml b/resources/themes/cura-light/styles.qml deleted file mode 100755 index 1320b54f37..0000000000 --- a/resources/themes/cura-light/styles.qml +++ /dev/null @@ -1,809 +0,0 @@ -// Copyright (c) 2021 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.10 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 - -import UM 1.1 as UM - -QtObject -{ - property Component print_setup_header_button: Component - { - ButtonStyle - { - background: Rectangle - { - color: - { - if(control.enabled) - { - if(control.valueError) - { - return UM.Theme.getColor("setting_validation_error_background"); - } - else if(control.valueWarning) - { - return UM.Theme.getColor("setting_validation_warning_background"); - } - else - { - return UM.Theme.getColor("setting_control"); - } - } - else - { - return UM.Theme.getColor("setting_control_disabled"); - } - } - - radius: UM.Theme.getSize("setting_control_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: - { - if (control.enabled) - { - if (control.valueError) - { - return UM.Theme.getColor("setting_validation_error"); - } - else if (control.valueWarning) - { - return UM.Theme.getColor("setting_validation_warning"); - } - else if (control.hovered) - { - return UM.Theme.getColor("setting_control_border_highlight"); - } - else - { - return UM.Theme.getColor("setting_control_border"); - } - } - else - { - return UM.Theme.getColor("setting_control_disabled_border"); - } - } - UM.RecolorImage - { - id: downArrow - anchors.verticalCenter: parent.verticalCenter - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - width: UM.Theme.getSize("standard_arrow").width - height: UM.Theme.getSize("standard_arrow").height - sourceSize.height: width - color: control.enabled ? UM.Theme.getColor("setting_control_button") : UM.Theme.getColor("setting_category_disabled_text") - source: UM.Theme.getIcon("ChevronSingleDown") - } - Label - { - id: printSetupComboBoxLabel - color: control.enabled ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text") - text: control.text; - elide: Text.ElideRight; - anchors.left: parent.left; - anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width - anchors.right: downArrow.left; - anchors.rightMargin: control.rightMargin; - anchors.verticalCenter: parent.verticalCenter; - font: UM.Theme.getFont("default") - } - } - label: Label{} - } - } - - property Component main_window_header_tab: Component - { - ButtonStyle - { - // This property will be back-propagated when the width of the label is calculated - property var buttonWidth: 0 - - background: Rectangle - { - id: backgroundRectangle - implicitHeight: control.height - implicitWidth: buttonWidth - radius: UM.Theme.getSize("action_button_radius").width - - color: - { - if (control.checked) - { - return UM.Theme.getColor("main_window_header_button_background_active") - } - else - { - if (control.hovered) - { - return UM.Theme.getColor("main_window_header_button_background_hovered") - } - return UM.Theme.getColor("main_window_header_button_background_inactive") - } - } - - } - - label: Item - { - id: contents - anchors.horizontalCenter: parent.horizontalCenter - anchors.verticalCenter: parent.verticalCenter - height: control.height - width: buttonLabel.width + 4 * UM.Theme.getSize("default_margin").width - - Label - { - id: buttonLabel - text: control.text - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - font: UM.Theme.getFont("medium") - color: - { - if (control.checked) - { - return UM.Theme.getColor("main_window_header_button_text_active") - } - else - { - if (control.hovered) - { - return UM.Theme.getColor("main_window_header_button_text_hovered") - } - return UM.Theme.getColor("main_window_header_button_text_inactive") - } - } - } - Component.onCompleted: - { - buttonWidth = width - } - } - - - } - } - - property Component tool_button: Component - { - ButtonStyle - { - background: Item - { - implicitWidth: UM.Theme.getSize("button").width - implicitHeight: UM.Theme.getSize("button").height - - UM.PointingRectangle - { - id: button_tooltip - - anchors.left: parent.right - anchors.leftMargin: UM.Theme.getSize("button_tooltip_arrow").width * 2 - anchors.verticalCenter: parent.verticalCenter - - target: Qt.point(parent.x, y + Math.round(height/2)) - arrowSize: UM.Theme.getSize("button_tooltip_arrow").width - color: UM.Theme.getColor("button_tooltip") - opacity: control.hovered ? 1.0 : 0.0; - visible: control.text != "" - - width: control.hovered ? button_tip.width + UM.Theme.getSize("button_tooltip").width : 0 - height: UM.Theme.getSize("button_tooltip").height - - Behavior on width { NumberAnimation { duration: 100; } } - Behavior on opacity { NumberAnimation { duration: 100; } } - - Label - { - id: button_tip - - anchors.horizontalCenter: parent.horizontalCenter - anchors.verticalCenter: parent.verticalCenter - - text: control.text - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("tooltip_text") - } - } - - Rectangle - { - id: buttonFace - - anchors.fill: parent - property bool down: control.pressed || (control.checkable && control.checked) - - color: - { - if(control.customColor !== undefined && control.customColor !== null) - { - return control.customColor - } - else if(control.checkable && control.checked && control.hovered) - { - return UM.Theme.getColor("toolbar_button_active_hover") - } - else if(control.pressed || (control.checkable && control.checked)) - { - return UM.Theme.getColor("toolbar_button_active") - } - else if(control.hovered) - { - return UM.Theme.getColor("toolbar_button_hover") - } - return UM.Theme.getColor("toolbar_background") - } - Behavior on color { ColorAnimation { duration: 50; } } - - border.width: (control.hasOwnProperty("needBorder") && control.needBorder) ? UM.Theme.getSize("default_lining").width : 0 - border.color: control.checked ? UM.Theme.getColor("icon") : UM.Theme.getColor("lining") - } - } - - label: Item - { - UM.RecolorImage - { - anchors.centerIn: parent - opacity: control.enabled ? 1.0 : 0.2 - source: control.iconSource - width: UM.Theme.getSize("medium_button_icon").width - height: UM.Theme.getSize("medium_button_icon").height - color: UM.Theme.getColor("icon") - - sourceSize: UM.Theme.getSize("medium_button_icon") - } - } - } - } - - property Component progressbar: Component - { - ProgressBarStyle - { - background: Rectangle - { - implicitWidth: UM.Theme.getSize("message").width - (UM.Theme.getSize("default_margin").width * 2) - implicitHeight: UM.Theme.getSize("progressbar").height - color: control.hasOwnProperty("backgroundColor") ? control.backgroundColor : UM.Theme.getColor("progressbar_background") - radius: UM.Theme.getSize("progressbar_radius").width - } - progress: Rectangle - { - color: - { - if(control.indeterminate) - { - return "transparent"; - } - else if(control.hasOwnProperty("controlColor")) - { - return control.controlColor; - } - else - { - return UM.Theme.getColor("progressbar_control"); - } - } - radius: UM.Theme.getSize("progressbar_radius").width - Rectangle - { - radius: UM.Theme.getSize("progressbar_radius").width - color: control.hasOwnProperty("controlColor") ? control.controlColor : UM.Theme.getColor("progressbar_control") - width: UM.Theme.getSize("progressbar_control").width - height: UM.Theme.getSize("progressbar_control").height - visible: control.indeterminate - - SequentialAnimation on x - { - id: xAnim - property int animEndPoint: UM.Theme.getSize("message").width - Math.round((UM.Theme.getSize("default_margin").width * 2.5)) - UM.Theme.getSize("progressbar_control").width - running: control.indeterminate && control.visible - loops: Animation.Infinite - NumberAnimation { from: 0; to: xAnim.animEndPoint; duration: 2000;} - NumberAnimation { from: xAnim.animEndPoint; to: 0; duration: 2000;} - } - } - } - } - } - - property Component scrollview: Component - { - ScrollViewStyle - { - decrementControl: Item { } - incrementControl: Item { } - - transientScrollBars: false - - scrollBarBackground: Rectangle - { - implicitWidth: UM.Theme.getSize("scrollbar").width - radius: Math.round(implicitWidth / 2) - color: UM.Theme.getColor("scrollbar_background") - } - - handle: Rectangle - { - id: scrollViewHandle - implicitWidth: UM.Theme.getSize("scrollbar").width - radius: Math.round(implicitWidth / 2) - - color: styleData.pressed ? UM.Theme.getColor("scrollbar_handle_down") : styleData.hovered ? UM.Theme.getColor("scrollbar_handle_hover") : UM.Theme.getColor("scrollbar_handle") - Behavior on color { ColorAnimation { duration: 50; } } - } - } - } - - property Component combobox: Component - { - ComboBoxStyle - { - - background: Rectangle - { - implicitHeight: UM.Theme.getSize("setting_control").height; - implicitWidth: UM.Theme.getSize("setting_control").width; - - color: control.hovered ? UM.Theme.getColor("setting_control_highlight") : UM.Theme.getColor("setting_control") - Behavior on color { ColorAnimation { duration: 50; } } - - border.width: UM.Theme.getSize("default_lining").width; - border.color: control.hovered ? UM.Theme.getColor("setting_control_border_highlight") : UM.Theme.getColor("setting_control_border"); - radius: UM.Theme.getSize("setting_control_radius").width - } - - label: Item - { - Label - { - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_lining").width - anchors.right: downArrow.left - anchors.rightMargin: UM.Theme.getSize("default_lining").width - anchors.verticalCenter: parent.verticalCenter - - text: control.currentText - font: UM.Theme.getFont("default"); - color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text") - - elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter - } - - UM.RecolorImage - { - id: downArrow - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_lining").width * 2 - anchors.verticalCenter: parent.verticalCenter - - source: UM.Theme.getIcon("ChevronSingleDown") - width: UM.Theme.getSize("standard_arrow").width - height: UM.Theme.getSize("standard_arrow").height - sourceSize.width: width + 5 * screenScaleFactor - sourceSize.height: width + 5 * screenScaleFactor - - color: UM.Theme.getColor("setting_control_button"); - } - } - } - } - - property Component checkbox: Component - { - CheckBoxStyle - { - background: Item { } - indicator: Rectangle - { - implicitWidth: UM.Theme.getSize("checkbox").width - implicitHeight: UM.Theme.getSize("checkbox").height - - color: (control.hovered || control._hovered) ? UM.Theme.getColor("checkbox_hover") : (control.enabled ? UM.Theme.getColor("checkbox") : UM.Theme.getColor("checkbox_disabled")) - Behavior on color { ColorAnimation { duration: 50; } } - - radius: control.exclusiveGroup ? Math.round(UM.Theme.getSize("checkbox").width / 2) : UM.Theme.getSize("checkbox_radius").width - - border.width: UM.Theme.getSize("default_lining").width - border.color: (control.hovered || control._hovered) ? UM.Theme.getColor("checkbox_border_hover") : UM.Theme.getColor("checkbox_border") - - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: Math.round(parent.width / 2.5) - height: Math.round(parent.height / 2.5) - sourceSize.height: width - color: UM.Theme.getColor("checkbox_mark") - source: control.exclusiveGroup ? UM.Theme.getIcon("Dot") : UM.Theme.getIcon("Check") - opacity: control.checked - Behavior on opacity { NumberAnimation { duration: 100; } } - } - } - label: Label - { - text: control.text - color: UM.Theme.getColor("checkbox_text") - font: UM.Theme.getFont("default") - elide: Text.ElideRight - renderType: Text.NativeRendering - } - } - } - - property Component partially_checkbox: Component - { - CheckBoxStyle - { - background: Item { } - indicator: Rectangle - { - implicitWidth: UM.Theme.getSize("checkbox").width - implicitHeight: UM.Theme.getSize("checkbox").height - - color: (control.hovered || control._hovered) ? UM.Theme.getColor("checkbox_hover") : UM.Theme.getColor("checkbox"); - Behavior on color { ColorAnimation { duration: 50; } } - - radius: control.exclusiveGroup ? Math.round(UM.Theme.getSize("checkbox").width / 2) : UM.Theme.getSize("checkbox_radius").width - - border.width: UM.Theme.getSize("default_lining").width; - border.color: (control.hovered || control._hovered) ? UM.Theme.getColor("checkbox_border_hover") : UM.Theme.getColor("checkbox_border"); - - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: Math.round(parent.width / 2.5) - height: Math.round(parent.height / 2.5) - sourceSize.height: width - color: UM.Theme.getColor("checkbox_mark") - source: - { - if (control.checkbox_state == 2) - { - return UM.Theme.getIcon("Solid"); - } - else - { - return control.exclusiveGroup ? UM.Theme.getIcon("Dot", "low") : UM.Theme.getIcon("Check"); - } - } - opacity: control.checked - Behavior on opacity { NumberAnimation { duration: 100; } } - } - } - label: Label - { - text: control.text - color: UM.Theme.getColor("checkbox_text") - font: UM.Theme.getFont("default") - } - } - } - - property Component text_field: Component - { - TextFieldStyle - { - textColor: UM.Theme.getColor("setting_control_text") - placeholderTextColor: UM.Theme.getColor("setting_control_text") - font: UM.Theme.getFont("default") - - background: Rectangle - { - implicitHeight: control.height; - implicitWidth: control.width; - - border.width: UM.Theme.getSize("default_lining").width; - border.color: control.hovered ? UM.Theme.getColor("setting_control_border_highlight") : UM.Theme.getColor("setting_control_border"); - radius: UM.Theme.getSize("setting_control_radius").width - - color: UM.Theme.getColor("setting_validation_ok"); - - Label - { - anchors.right: parent.right; - anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width; - anchors.verticalCenter: parent.verticalCenter; - - text: control.unit ? control.unit : "" - color: UM.Theme.getColor("setting_unit"); - font: UM.Theme.getFont("default"); - renderType: Text.NativeRendering - } - } - } - } - - property Component print_setup_action_button: Component - { - ButtonStyle - { - background: Rectangle - { - border.width: UM.Theme.getSize("default_lining").width - border.color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_border"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active_border"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_border"); - } - else - { - return UM.Theme.getColor("action_button_border"); - } - } - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered"); - } - else - { - return UM.Theme.getColor("action_button"); - } - } - Behavior on color { ColorAnimation { duration: 50 } } - - implicitWidth: actualLabel.contentWidth + (UM.Theme.getSize("thick_margin").width * 2) - - Label - { - id: actualLabel - anchors.centerIn: parent - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_text"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active_text"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_text"); - } - else - { - return UM.Theme.getColor("action_button_text"); - } - } - font: UM.Theme.getFont("medium") - text: control.text - } - } - label: Item { } - } - } - - property Component toolbox_action_button: Component - { - ButtonStyle - { - background: Rectangle - { - implicitWidth: UM.Theme.getSize("toolbox_action_button").width - implicitHeight: UM.Theme.getSize("toolbox_action_button").height - color: - { - if (control.installed) - { - return UM.Theme.getColor("action_button_disabled"); - } - else - { - if (control.hovered) - { - return UM.Theme.getColor("primary_hover"); - } - else - { - return UM.Theme.getColor("primary"); - } - } - - } - } - label: Label - { - text: control.text - color: - { - if (control.installed) - { - return UM.Theme.getColor("action_button_disabled_text"); - } - else - { - if (control.hovered) - { - return UM.Theme.getColor("button_text_hover"); - } - else - { - return UM.Theme.getColor("button_text"); - } - } - } - verticalAlignment: Text.AlignVCenter - horizontalAlignment: Text.AlignHCenter - font: UM.Theme.getFont("default_bold") - } - } - } - - property Component monitor_button_style: Component - { - ButtonStyle - { - background: Rectangle - { - border.width: UM.Theme.getSize("default_lining").width - border.color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_border"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active_border"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_border"); - } - return UM.Theme.getColor("action_button_border"); - } - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered"); - } - return UM.Theme.getColor("action_button"); - } - Behavior on color - { - ColorAnimation - { - duration: 50 - } - } - } - - label: Item - { - UM.RecolorImage - { - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - width: Math.floor(control.width / 2) - height: Math.floor(control.height / 2) - sourceSize.height: width - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_text"); - } - else if(control.pressed) - { - return UM.Theme.getColor("action_button_active_text"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_text"); - } - return UM.Theme.getColor("action_button_text"); - } - source: control.iconSource - } - } - } - } - - property Component monitor_checkable_button_style: Component - { - ButtonStyle { - background: Rectangle { - border.width: control.checked ? UM.Theme.getSize("default_lining").width * 2 : UM.Theme.getSize("default_lining").width - border.color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_border"); - } - else if (control.checked || control.pressed) - { - return UM.Theme.getColor("action_button_active_border"); - } - else if(control.hovered) - { - return UM.Theme.getColor("action_button_hovered_border"); - } - return UM.Theme.getColor("action_button_border"); - } - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled"); - } - else if (control.checked || control.pressed) - { - return UM.Theme.getColor("action_button_active"); - } - else if (control.hovered) - { - return UM.Theme.getColor("action_button_hovered"); - } - return UM.Theme.getColor("action_button"); - } - Behavior on color { ColorAnimation { duration: 50; } } - Label { - anchors.left: parent.left - anchors.right: parent.right - anchors.verticalCenter: parent.verticalCenter - anchors.leftMargin: UM.Theme.getSize("default_lining").width * 2 - anchors.rightMargin: UM.Theme.getSize("default_lining").width * 2 - color: - { - if(!control.enabled) - { - return UM.Theme.getColor("action_button_disabled_text"); - } - else if (control.checked || control.pressed) - { - return UM.Theme.getColor("action_button_active_text"); - } - else if (control.hovered) - { - return UM.Theme.getColor("action_button_hovered_text"); - } - return UM.Theme.getColor("action_button_text"); - } - font: UM.Theme.getFont("default") - text: control.text - horizontalAlignment: Text.AlignHCenter - elide: Text.ElideMiddle - } - } - label: Item { } - } - } -} diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 6d99b7ae03..2f14a5be78 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -170,33 +170,70 @@ } }, + "base_colors": { + "background_1": [255, 255, 255, 255], + "background_2": [243, 243, 243, 255], + "background_3": [232, 240, 253, 255], + "background_4": [3, 12, 66, 255], + + "accent_1": [25, 110, 240, 255], + "accent_2": [16, 70, 156, 255], + "border_main": [212, 212, 212, 255], + "border_accent_1": [25, 110, 240, 255], + "border_accent_2": [16, 70, 156, 255], + "border_field": [180, 180, 180, 255], + + "text_default": [0, 14, 26, 255], + "text_disabled": [180, 180, 180, 255], + "text_primary_button": [255, 255, 255, 255], + "text_secondary_button": [25, 110, 240, 255], + "text_link_hover": [16, 70, 156, 255], + "text_lighter": [108, 108, 108, 255], + + "um_green_1": [233, 245, 237, 255], + "um_green_5": [36, 162, 73, 255], + "um_green_9": [31, 44, 36, 255], + "um_red_1": [251, 232, 233, 255], + "um_red_5": [218, 30, 40, 255], + "um_red_9": [59, 31, 33, 255], + "um_orange_1": [255, 235, 221, 255], + "um_orange_5": [252, 123, 30, 255], + "um_orange_9": [64, 45, 32, 255], + "um_yellow_1": [255, 248, 225, 255], + "um_yellow_5": [253, 209, 58, 255], + "um_yellow_9": [64, 58, 36, 255] + }, + "colors": { - "main_background": [255, 255, 255, 255], + "main_background": "background_1", + "detail_background": "background_2", "wide_lining": [245, 245, 245, 255], "thick_lining": [180, 180, 180, 255], "lining": [192, 193, 194, 255], "viewport_overlay": [246, 246, 246, 255], - "primary": [50, 130, 255, 255], - "primary_shadow": [64, 47, 205, 255], + "primary": [25, 110, 240, 255], "primary_hover": [48, 182, 231, 255], "primary_text": [255, 255, 255, 255], + "text_selection": [156, 195, 255, 127], "border": [127, 127, 127, 255], + "border_field": [180, 180, 180, 255], "secondary": [240, 240, 240, 255], - "secondary_shadow": [216, 216, 216, 255], + + "expandable_active": [240, 240, 240, 255], + "expandable_hover": [232, 242, 252, 255], "icon": [8, 7, 63, 255], - "primary_button": [25, 110, 240, 255], - "primary_button_shadow": [27, 95, 202, 255], + "primary_button": "accent_1", "primary_button_hover": [16, 70, 156, 255], "primary_button_text": [255, 255, 255, 255], - "secondary_button": [255, 255, 255, 255], + "secondary_button": "background_1", "secondary_button_shadow": [216, 216, 216, 255], "secondary_button_hover": [232, 240, 253, 255], - "secondary_button_text": [25, 110, 240, 255], + "secondary_button_text": "accent_1", "main_window_header_background": [8, 7, 63, 255], "main_window_header_background_gradient": [25, 23, 91, 255], @@ -210,13 +247,9 @@ "account_widget_outline_active": [70, 66, 126, 255], "account_sync_state_icon": [25, 25, 25, 255], - "machine_selector_bar": [31, 36, 39, 255], - "machine_selector_active": [68, 72, 75, 255], - "machine_selector_hover": [68, 72, 75, 255], - "machine_selector_text_active": [255, 255, 255, 255], "machine_selector_printer_icon": [8, 7, 63, 255], - "action_panel_secondary": [25, 110, 240, 255], + "action_panel_secondary": "accent_1", "first_run_shadow": [50, 50, 50, 255], @@ -229,13 +262,11 @@ "window_disabled_background": [0, 0, 0, 255], "text": [25, 25, 25, 255], + "text_disabled": [180, 180, 180, 255], "text_detail": [174, 174, 174, 128], "text_link": [25, 110, 240, 255], "text_inactive": [174, 174, 174, 255], - "text_pressed": [50, 130, 255, 255], - "text_subtext": [0, 0, 0, 255], "text_medium": [128, 128, 128, 255], - "text_emphasis": [255, 255, 255, 255], "text_scene": [102, 102, 102, 255], "text_scene_hover": [123, 123, 113, 255], @@ -248,50 +279,20 @@ "toolbar_button_active": [232, 242, 252, 255], "toolbar_button_active_hover": [232, 242, 252, 255], - "button": [31, 36, 39, 255], - "button_hover": [68, 72, 75, 255], - "button_active": [68, 72, 75, 255], - "button_active_hover": [68, 72, 75, 255], "button_text": [255, 255, 255, 255], - "button_text_hover": [255, 255, 255, 255], - "button_text_active": [255, 255, 255, 255], - "button_text_active_hover": [255, 255, 255, 255], - "small_button": [0, 0, 0, 0], - "small_button_hover": [102, 102, 102, 255], - "small_button_active": [10, 8, 80, 255], - "small_button_active_hover": [10, 8, 80, 255], "small_button_text": [102, 102, 102, 255], "small_button_text_hover": [8, 7, 63, 255], - "small_button_text_active": [255, 255, 255, 255], - "small_button_text_active_hover": [255, 255, 255, 255], "button_tooltip": [31, 36, 39, 255], - "button_tooltip_border": [68, 192, 255, 255], - "button_tooltip_text": [192, 193, 194, 255], - "extruder_button_material_border": [255, 255, 255, 255], "extruder_disabled": [255, 255, 255, 102], - "rating_star": [90, 90, 90, 255], - - "sync_button_text": [120, 120, 120, 255], - "sync_button_text_hovered": [0, 0, 0, 255], - "action_button": [255, 255, 255, 255], - "action_button_text": [0, 0, 0, 255], - "action_button_border": [127, 127, 127, 255], "action_button_hovered": [232, 242, 252, 255], - "action_button_hovered_text": [31, 36, 39, 255], - "action_button_hovered_border": [50, 130, 255, 255], - "action_button_active": [255, 255, 255, 255], - "action_button_active_text": [0, 0, 0, 255], - "action_button_active_border": [50, 130, 255, 255], "action_button_disabled": [245, 245, 245, 255], "action_button_disabled_text": [196, 196, 196, 255], - "action_button_disabled_border": [196, 196, 196, 255], "action_button_shadow": [223, 223, 223, 255], - "action_button_disabled_shadow": [228, 228, 228, 255], "scrollbar_background": [255, 255, 255, 255], "scrollbar_handle": [10, 8, 80, 255], @@ -301,22 +302,12 @@ "setting_category": [240, 240, 240, 255], "setting_category_disabled": [255, 255, 255, 255], "setting_category_hover": [232, 242, 252, 255], - "setting_category_active": [240, 240, 240, 255], - "setting_category_active_hover": [232, 242, 252, 255], "setting_category_text": [35, 35, 35, 255], "setting_category_disabled_text": [24, 41, 77, 101], "setting_category_active_text": [35, 35, 35, 255], - "setting_category_active_hover_text": [35, 35, 35, 255], - "setting_category_hover_text": [35, 35, 35, 255], - "setting_category_border": [240, 240, 240, 255], - "setting_category_disabled_border": [240, 240, 240, 255], - "setting_category_hover_border": [50, 130, 255, 255], - "setting_category_active_border": [50, 130, 255, 255], - "setting_category_active_hover_border": [50, 130, 255, 255], - "setting_control": [255, 255, 255, 255], - "setting_control_selected": [31, 36, 39, 255], - "setting_control_highlight": [255, 255, 255, 255], + "setting_control": "background_2", + "setting_control_highlight": "background_3", "setting_control_border": [199, 199, 199, 255], "setting_control_border_highlight": [50, 130, 255, 255], "setting_control_text": [35, 35, 35, 255], @@ -326,12 +317,11 @@ "setting_control_disabled_text": [127, 127, 127, 255], "setting_control_disabled_border": [127, 127, 127, 255], "setting_unit": [127, 127, 127, 255], - "setting_validation_error_background": [255, 66, 60, 255], - "setting_validation_error": [127, 127, 127, 255], - "setting_validation_warning_background": [255, 145, 62, 255], - "setting_validation_warning": [127, 127, 127, 255], - "setting_validation_ok": [255, 255, 255, 255], - "setting_filter_field" : [153, 153, 153, 255], + "setting_validation_error_background": "um_red_1", + "setting_validation_error": "um_red_5", + "setting_validation_warning_background": "um_yellow_1", + "setting_validation_warning": "um_yellow_5", + "setting_validation_ok": "background_2", "material_compatibility_warning": [243, 166, 59, 255], @@ -347,13 +337,38 @@ "quality_slider_unavailable": [179, 179, 179, 255], "quality_slider_available": [0, 0, 0, 255], - "checkbox": [255, 255, 255, 255], - "checkbox_hover": [255, 255, 255, 255], - "checkbox_border": [199, 199, 199, 255], - "checkbox_border_hover": [50, 130, 255, 255], - "checkbox_mark": [35, 35, 35, 255], - "checkbox_disabled": [223, 223, 223, 255], - "checkbox_text": [35, 35, 35, 255], + "checkbox": "background_1", + "checkbox_hover": "background_1", + "checkbox_disabled": "background_2", + "checkbox_border": [180, 180, 180, 255], + "checkbox_border_hover": "border_main", + "checkbox_border_disabled": "text_disabled", + "checkbox_mark": "text_default", + "checkbox_mark_disabled": "text_disabled", + "checkbox_square": [180, 180, 180, 255], + "checkbox_text": "text_default", + "checkbox_text_disabled": "text_disabled", + + "radio": "background_1", + "radio_disabled": "background_2", + "radio_selected": "accent_1", + "radio_selected_disabled": "text_disabled", + "radio_border": [180, 180, 180, 255], + "radio_border_hover": "border_main", + "radio_border_disabled": "text_disabled", + "radio_dot": "background_1", + "radio_dot_disabled": "background_2", + "radio_text": "text_default", + "radio_text_disabled": "text_disabled", + + "text_field": "background_1", + "text_field_border": [180, 180, 180, 255], + "text_field_border_hovered": "border_main", + "text_field_border_disabled": "border_main", + "text_field_text": "text_default", + "text_field_text_disabled": "text_disabled", + + "category_background": "background_2", "tooltip": [25, 25, 25, 255], "tooltip_text": [255, 255, 255, 255], @@ -375,35 +390,30 @@ "status_busy": [50, 130, 255, 255], "status_paused": [255, 140, 0, 255], "status_stopped": [236, 82, 80, 255], - "status_unknown": [127, 127, 127, 255], "disabled_axis": [127, 127, 127, 255], - "x_axis": [255, 0, 0, 255], - "y_axis": [0, 0, 255, 255], - "z_axis": [0, 255, 0, 255], + "x_axis": [218, 30, 40, 255], + "y_axis": [25, 110, 240, 255], + "z_axis": [36, 162, 73, 255], "all_axis": [255, 255, 255, 255], "viewport_background": [250, 250, 250, 255], "volume_outline": [50, 130, 255, 255], "buildplate": [244, 244, 244, 255], - "buildplate_grid": [129, 131, 134, 255], - "buildplate_grid_minor": [230, 230, 231, 255], + "buildplate_grid": [180, 180, 180, 255], + "buildplate_grid_minor": [228, 228, 228, 255], "convex_hull": [35, 35, 35, 127], "disallowed_area": [0, 0, 0, 40], "error_area": [255, 0, 0, 127], - "model_default": [255, 201, 36, 255], "model_overhang": [255, 0, 0, 255], "model_unslicable": [122, 122, 122, 255], "model_unslicable_alt": [172, 172, 127, 255], "model_selection_outline": [50, 130, 255, 255], "model_non_printing": [122, 122, 122, 255], - "xray_error_dark": [255, 0, 0, 255], - "xray_error_light": [255, 255, 0, 255], "xray": [26, 26, 62, 255], - "xray_error": [255, 0, 0, 255], "layerview_ghost": [31, 31, 31, 95], "layerview_none": [255, 255, 255, 255], @@ -421,18 +431,7 @@ "layerview_nozzle": [224, 192, 16, 64], "layerview_starts": [255, 255, 255, 255], - "tab_status_connected": [50, 130, 255, 255], - "tab_status_disconnected": [200, 200, 200, 255], - - "printer_config_matched": [50, 130, 255, 255], - "printer_config_mismatch": [127, 127, 127, 255], - - "toolbox_header_button_text_inactive": [0, 0, 0, 255], - "favorites_header_bar": [245, 245, 245, 255], - "favorites_header_hover": [245, 245, 245, 255], - "favorites_header_text": [31, 36, 39, 255], - "favorites_header_text_hover": [31, 36, 39, 255], "favorites_row_selected": [196, 239, 255, 255], "monitor_printer_family_tag": [228, 228, 242, 255], @@ -441,11 +440,6 @@ "monitor_icon_accent": [255, 255, 255, 255], "monitor_icon_disabled": [238, 238, 238, 255], - "monitor_secondary_button_hover": [232, 242, 252, 255], - "monitor_secondary_button": [240, 240, 240, 255], - "monitor_secondary_button_text": [30, 102, 215, 255], - "monitor_secondary_button_shadow": [216, 216, 216, 255], - "monitor_card_border": [192, 193, 194, 255], "monitor_card_background": [255, 255, 255, 255], "monitor_card_hover": [232, 242, 252, 255], @@ -453,10 +447,6 @@ "monitor_stage_background": [246, 246, 246, 255], "monitor_stage_background_fade": [246, 246, 246, 102], - "monitor_progress_bar_fill": [50, 130, 255, 255], - "monitor_progress_bar_deactive": [192, 193, 194, 255], - "monitor_progress_bar_empty": [245, 245, 245, 255], - "monitor_tooltip": [25, 25, 25, 255], "monitor_tooltip_text": [255, 255, 255, 255], "monitor_context_menu": [255, 255, 255, 255], @@ -471,25 +461,26 @@ "monitor_carousel_dot_current": [119, 119, 119, 255], "cloud_unavailable": [153, 153, 153, 255], - "connection_badge_background": [255, 255, 255, 255] + "connection_badge_background": [255, 255, 255, 255], + "warning_badge_background": [0, 0, 0, 255], + "error_badge_background": [255, 255, 255, 255], + + "border_field_light": [180, 180, 180, 255], + "border_main_light": [212, 212, 212, 255] }, "sizes": { "window_minimum_size": [80, 48], - "large_popup_dialog": [48, 40], "popup_dialog": [40, 36], "small_popup_dialog": [36, 12], "main_window_header": [0.0, 4.0], - "main_window_header_button": [8, 2.35], - "main_window_header_button_icon": [1.2, 1.2], "stage_menu": [0.0, 4.0], "account_button": [12, 2.5], "print_setup_widget": [38.0, 30.0], - "print_setup_mode_toggle": [0.0, 2.0], "print_setup_extruder_box": [0.0, 6.0], "print_setup_slider_groove": [0.16, 0.16], "print_setup_slider_handle": [1.0, 1.0], @@ -498,10 +489,12 @@ "print_setup_icon": [1.2, 1.2], "drag_icon": [1.416, 0.25], + "application_switcher_item": [8, 9], + "application_switcher_icon": [3.75, 3.75], + "expandable_component_content_header": [0.0, 3.0], "configuration_selector": [35.0, 4.0], - "configuration_selector_mode_tabs": [1.0, 3.0], "action_panel_widget": [26.0, 0.0], "action_panel_information_widget": [20.0, 0.0], @@ -535,28 +528,27 @@ "section_control": [0, 1], "section_icon": [2, 2], "section_icon_column": [2.5, 2.5], - "rating_star": [1.0, 1.0], "setting": [25.0, 1.8], "setting_control": [11.0, 2.0], "setting_control_radius": [0.15, 0.15], "setting_control_depth_margin": [1.4, 0.0], - "setting_preferences_button_margin": [4, 0.0], - "setting_control_margin": [0.0, 0.0], "setting_unit_margin": [0.5, 0.5], - "setting_text_maxwidth": [40.0, 0.0], "standard_list_lineheight": [1.5, 1.5], "standard_arrow": [1.0, 1.0], + "card": [25.0, 10], + "card_icon": [6.0, 6.0], + "card_tiny_icon": [1.5, 1.5], + "button": [4, 4], "button_icon": [2.5, 2.5], - "button_lining": [0, 0], "action_button": [15.0, 2.5], - "action_button_icon": [1.0, 1.0], + "action_button_icon": [1.5, 1.5], + "action_button_icon_small": [1.0, 1.0], "action_button_radius": [0.15, 0.15], - "dialog_primary_button_padding": [3.0, 0], "radio_button": [1.3, 1.3], @@ -566,21 +558,21 @@ "medium_button": [2.5, 2.5], "medium_button_icon": [2, 2], + "context_menu": [20, 2], + "favorites_row": [2, 2], "favorites_button": [2, 2], "favorites_button_icon": [1.2, 1.2], + "icon_indicator": [1, 1], + "printer_status_icon": [1.0, 1.0], - "printer_sync_icon": [1.2, 1.2], "button_tooltip": [1.0, 1.3], "button_tooltip_arrow": [0.25, 0.25], - "tool_button_border": [1.0, 0], - "progressbar": [26.0, 0.75], "progressbar_radius": [0.15, 0.15], - "progressbar_control": [8.0, 0.75], "scrollbar": [0.75, 0.5], @@ -594,83 +586,59 @@ "layerview_row": [11.0, 1.5], "layerview_row_spacing": [0.0, 0.5], - "checkbox": [1.5, 1.5], - "checkbox_radius": [0.08, 0.08], + "checkbox": [1.33, 1.33], + "checkbox_mark": [1, 1], + "checkbox_radius": [0.25, 0.25], + + "spinbox": [6.0, 3.0], + "combobox_wide": [14, 2], "tooltip": [20.0, 10.0], "tooltip_margins": [1.0, 1.0], "tooltip_arrow_margins": [2.0, 2.0], - "save_button_text_margin": [0.3, 0.6], "save_button_save_to_button": [0.3, 2.7], "save_button_specs_icons": [1.4, 1.4], - "job_specs_button": [2.7, 2.7], "first_run_shadow_radius": [1.2, 1.2], "monitor_preheat_temperature_control": [4.5, 2.0], "welcome_wizard_window": [46, 50], "modal_window_minimum": [60.0, 45], - "license_window_minimum": [45, 45], "wizard_progress": [10.0, 0.0], "message": [30.0, 5.0], "message_close": [1, 1], "message_radius": [0.25, 0.25], "message_action_button": [0, 2.5], - "message_image": [15.0, 5.0], + "message_image": [15.0, 10.0], "message_type_icon": [2, 2], - - "infill_button_margin": [0.5, 0.5], + "menu": [18, 2], "jobspecs_line": [2.0, 2.0], "objects_menu_size": [15, 15], - "objects_menu_size_collapsed": [20, 17], - "build_plate_selection_size": [15, 5], - "objects_menu_button": [0.3, 2.7], - - "toolbox_thumbnail_small": [6.0, 6.0], - "toolbox_thumbnail_medium": [8.0, 8.0], - "toolbox_thumbnail_large": [12.0, 10.0], - "toolbox_footer": [1.0, 4.5], - "toolbox_footer_button": [8.0, 2.5], - "toolbox_header_tab": [12.0, 4.0], - "toolbox_detail_header": [1.0, 14.0], - "toolbox_back_column": [6.0, 1.0], - "toolbox_back_button": [6.0, 2.0], - "toolbox_installed_tile": [1.0, 8.0], - "toolbox_property_label": [1.0, 2.0], - "toolbox_heading_label": [1.0, 3.8], - "toolbox_header": [1.0, 4.0], - "toolbox_header_highlight": [0.25, 0.25], - "toolbox_chart_row": [1.0, 2.0], - "toolbox_action_button": [8.0, 2.5], - "toolbox_loader": [2.0, 2.0], "notification_icon": [1.5, 1.5], "avatar_image": [6.8, 6.8], - "monitor_config_override_box": [1.0, 14.0], - "monitor_extruder_circle": [2.75, 2.75], - "monitor_text_line": [1.5, 1.5], - "monitor_text_line_large": [2.33, 2.33], - "monitor_thick_lining": [0.16, 0.16], - "monitor_corner_radius": [0.3, 0.3], "monitor_shadow_radius": [0.4, 0.4], - "monitor_shadow_offset": [0.15, 0.15], "monitor_empty_state_offset": [5.6, 5.6], "monitor_empty_state_size": [35.0, 25.0], - "monitor_external_link_icon": [1.16, 1.16], "monitor_column": [18.0, 1.0], "monitor_progress_bar": [16.5, 1.0], - "monitor_margin": [1.5, 1.5], "table_row": [2.0, 2.0], "welcome_wizard_content_image_big": [18, 15], - "welcome_wizard_cloud_content_image": [4, 4] + "welcome_wizard_cloud_content_image": [4, 4], + + "banner_icon_size": [2.0, 2.0], + + "marketplace_large_icon": [4.0, 4.0], + + "preferences_page_list_item": [8.0, 2.0] } } diff --git a/resources/variants/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg b/resources/variants/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg index 5b51e0b482..264c11c430 100644 --- a/resources/variants/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg +++ b/resources/variants/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg b/resources/variants/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg index e906e7ec90..d0dc97d493 100644 --- a/resources/variants/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg +++ b/resources/variants/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = leapfrog_bolt_pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/Mark2_for_Ultimaker2_0.25.inst.cfg b/resources/variants/Mark2_for_Ultimaker2_0.25.inst.cfg index cc5a70a23e..6a6157afeb 100644 --- a/resources/variants/Mark2_for_Ultimaker2_0.25.inst.cfg +++ b/resources/variants/Mark2_for_Ultimaker2_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = Mark2_for_Ultimaker2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/Mark2_for_Ultimaker2_0.4.inst.cfg b/resources/variants/Mark2_for_Ultimaker2_0.4.inst.cfg index be89ee6ae2..a07166cf8f 100644 --- a/resources/variants/Mark2_for_Ultimaker2_0.4.inst.cfg +++ b/resources/variants/Mark2_for_Ultimaker2_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = Mark2_for_Ultimaker2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/Mark2_for_Ultimaker2_0.6.inst.cfg b/resources/variants/Mark2_for_Ultimaker2_0.6.inst.cfg index b119de013d..fdb36fd291 100644 --- a/resources/variants/Mark2_for_Ultimaker2_0.6.inst.cfg +++ b/resources/variants/Mark2_for_Ultimaker2_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = Mark2_for_Ultimaker2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/Mark2_for_Ultimaker2_0.8.inst.cfg b/resources/variants/Mark2_for_Ultimaker2_0.8.inst.cfg index 46989d5682..32556fb2d7 100644 --- a/resources/variants/Mark2_for_Ultimaker2_0.8.inst.cfg +++ b/resources/variants/Mark2_for_Ultimaker2_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = Mark2_for_Ultimaker2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_0.2.inst.cfg b/resources/variants/arjun300_0.2.inst.cfg index c474539770..28e1394fb3 100644 --- a/resources/variants/arjun300_0.2.inst.cfg +++ b/resources/variants/arjun300_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_0.3.inst.cfg b/resources/variants/arjun300_0.3.inst.cfg index 785fb571fc..e2a4de82d3 100644 --- a/resources/variants/arjun300_0.3.inst.cfg +++ b/resources/variants/arjun300_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_0.4.inst.cfg b/resources/variants/arjun300_0.4.inst.cfg index 6b991d6ad5..df62f3d307 100644 --- a/resources/variants/arjun300_0.4.inst.cfg +++ b/resources/variants/arjun300_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_0.5.inst.cfg b/resources/variants/arjun300_0.5.inst.cfg index acaaf02c0c..e13e11a4fc 100644 --- a/resources/variants/arjun300_0.5.inst.cfg +++ b/resources/variants/arjun300_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_0.6.inst.cfg b/resources/variants/arjun300_0.6.inst.cfg index 4c65f48a1c..736a09d7da 100644 --- a/resources/variants/arjun300_0.6.inst.cfg +++ b/resources/variants/arjun300_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_0.8.inst.cfg b/resources/variants/arjun300_0.8.inst.cfg index d98859c5fe..86248008f4 100644 --- a/resources/variants/arjun300_0.8.inst.cfg +++ b/resources/variants/arjun300_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_dm_0.2.inst.cfg b/resources/variants/arjun300_dm_0.2.inst.cfg index 02873f05cf..91ceca9d78 100644 --- a/resources/variants/arjun300_dm_0.2.inst.cfg +++ b/resources/variants/arjun300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_dm_0.3.inst.cfg b/resources/variants/arjun300_dm_0.3.inst.cfg index 30e56eba3f..1c1a679a4e 100644 --- a/resources/variants/arjun300_dm_0.3.inst.cfg +++ b/resources/variants/arjun300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_dm_0.4.inst.cfg b/resources/variants/arjun300_dm_0.4.inst.cfg index 971b4f6f75..ce1b7cf789 100644 --- a/resources/variants/arjun300_dm_0.4.inst.cfg +++ b/resources/variants/arjun300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_dm_0.5.inst.cfg b/resources/variants/arjun300_dm_0.5.inst.cfg index 02ed6908fa..c99dad97c3 100644 --- a/resources/variants/arjun300_dm_0.5.inst.cfg +++ b/resources/variants/arjun300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_dm_0.6.inst.cfg b/resources/variants/arjun300_dm_0.6.inst.cfg index 55ca8fb6a5..c64914d604 100644 --- a/resources/variants/arjun300_dm_0.6.inst.cfg +++ b/resources/variants/arjun300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_dm_0.8.inst.cfg b/resources/variants/arjun300_dm_0.8.inst.cfg index 8d75b94e0b..d6eae842c2 100644 --- a/resources/variants/arjun300_dm_0.8.inst.cfg +++ b/resources/variants/arjun300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_mm_0.2.inst.cfg b/resources/variants/arjun300_mm_0.2.inst.cfg index c54de937c3..a25c3ae8aa 100644 --- a/resources/variants/arjun300_mm_0.2.inst.cfg +++ b/resources/variants/arjun300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_mirrored [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_mm_0.3.inst.cfg b/resources/variants/arjun300_mm_0.3.inst.cfg index bfd161883b..309c83eba6 100644 --- a/resources/variants/arjun300_mm_0.3.inst.cfg +++ b/resources/variants/arjun300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_mirrored [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_mm_0.4.inst.cfg b/resources/variants/arjun300_mm_0.4.inst.cfg index f48637d9a6..1097370920 100644 --- a/resources/variants/arjun300_mm_0.4.inst.cfg +++ b/resources/variants/arjun300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_mirrored [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_mm_0.5.inst.cfg b/resources/variants/arjun300_mm_0.5.inst.cfg index 0959140a0e..8f7f8fb133 100644 --- a/resources/variants/arjun300_mm_0.5.inst.cfg +++ b/resources/variants/arjun300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_mirrored [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_mm_0.6.inst.cfg b/resources/variants/arjun300_mm_0.6.inst.cfg index 783f48f105..be351215d3 100644 --- a/resources/variants/arjun300_mm_0.6.inst.cfg +++ b/resources/variants/arjun300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_mirrored [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_mm_0.8.inst.cfg b/resources/variants/arjun300_mm_0.8.inst.cfg index e445c13e4b..1158443bf9 100644 --- a/resources/variants/arjun300_mm_0.8.inst.cfg +++ b/resources/variants/arjun300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = arjun_mirrored [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun300_pva_0.2.inst.cfg index e58afe54b7..81ce7fc4e8 100644 --- a/resources/variants/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun300_pva_0.3.inst.cfg index 931caa8d79..1563a7b63b 100644 --- a/resources/variants/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun300_pva_0.4.inst.cfg index fbb7ed9546..6ee87b8a2f 100644 --- a/resources/variants/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun300_pva_0.5.inst.cfg index a49fe4aeda..836260d4b2 100644 --- a/resources/variants/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun300_pva_0.6.inst.cfg index 4f7a9a5475..2bea7e7af5 100644 --- a/resources/variants/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun300_pva_0.8.inst.cfg index 5a550ddff3..6b00ed5d27 100644 --- a/resources/variants/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = arjun300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/arjunpro300_0.2.inst.cfg b/resources/variants/arjunpro300_0.2.inst.cfg new file mode 100644 index 0000000000..51b359bfab --- /dev/null +++ b/resources/variants/arjunpro300_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.2 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/arjunpro300_0.3.inst.cfg b/resources/variants/arjunpro300_0.3.inst.cfg new file mode 100644 index 0000000000..4d647df100 --- /dev/null +++ b/resources/variants/arjunpro300_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.3 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/arjunpro300_0.4.inst.cfg b/resources/variants/arjunpro300_0.4.inst.cfg new file mode 100644 index 0000000000..d17e90e245 --- /dev/null +++ b/resources/variants/arjunpro300_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.4 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/arjunpro300_0.5.inst.cfg b/resources/variants/arjunpro300_0.5.inst.cfg new file mode 100644 index 0000000000..61bdaf0ab9 --- /dev/null +++ b/resources/variants/arjunpro300_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.5 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/arjunpro300_0.6.inst.cfg b/resources/variants/arjunpro300_0.6.inst.cfg new file mode 100644 index 0000000000..905162b547 --- /dev/null +++ b/resources/variants/arjunpro300_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.6 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/arjunpro300_0.8.inst.cfg b/resources/variants/arjunpro300_0.8.inst.cfg new file mode 100644 index 0000000000..f12ef67d30 --- /dev/null +++ b/resources/variants/arjunpro300_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.8 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/arjunpro300_dm_0.2.inst.cfg b/resources/variants/arjunpro300_dm_0.2.inst.cfg new file mode 100644 index 0000000000..6b61519d07 --- /dev/null +++ b/resources/variants/arjunpro300_dm_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.2 mm Nozzle +version = 4 +definition = arjunpro_duplication + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/arjunpro300_dm_0.3.inst.cfg b/resources/variants/arjunpro300_dm_0.3.inst.cfg new file mode 100644 index 0000000000..3570f3b57f --- /dev/null +++ b/resources/variants/arjunpro300_dm_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.3 mm Nozzle +version = 4 +definition = arjunpro_duplication + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/arjunpro300_dm_0.4.inst.cfg b/resources/variants/arjunpro300_dm_0.4.inst.cfg new file mode 100644 index 0000000000..e3ede604ab --- /dev/null +++ b/resources/variants/arjunpro300_dm_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.4 mm Nozzle +version = 4 +definition = arjunpro_duplication + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/arjunpro300_dm_0.5.inst.cfg b/resources/variants/arjunpro300_dm_0.5.inst.cfg new file mode 100644 index 0000000000..ada64e3553 --- /dev/null +++ b/resources/variants/arjunpro300_dm_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.5 mm Nozzle +version = 4 +definition = arjunpro_duplication + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/arjunpro300_dm_0.6.inst.cfg b/resources/variants/arjunpro300_dm_0.6.inst.cfg new file mode 100644 index 0000000000..47d80f5a4f --- /dev/null +++ b/resources/variants/arjunpro300_dm_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.6 mm Nozzle +version = 4 +definition = arjunpro_duplication + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/arjunpro300_dm_0.8.inst.cfg b/resources/variants/arjunpro300_dm_0.8.inst.cfg new file mode 100644 index 0000000000..a34524e268 --- /dev/null +++ b/resources/variants/arjunpro300_dm_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.8 mm Nozzle +version = 4 +definition = arjunpro_duplication + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/arjunpro300_mm_0.2.inst.cfg b/resources/variants/arjunpro300_mm_0.2.inst.cfg new file mode 100644 index 0000000000..9630a9e30b --- /dev/null +++ b/resources/variants/arjunpro300_mm_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.2 mm Nozzle +version = 4 +definition = arjunpro_mirrored + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/arjunpro300_mm_0.3.inst.cfg b/resources/variants/arjunpro300_mm_0.3.inst.cfg new file mode 100644 index 0000000000..09d397ddea --- /dev/null +++ b/resources/variants/arjunpro300_mm_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.3 mm Nozzle +version = 4 +definition = arjunpro_mirrored + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/arjunpro300_mm_0.4.inst.cfg b/resources/variants/arjunpro300_mm_0.4.inst.cfg new file mode 100644 index 0000000000..49b7851df7 --- /dev/null +++ b/resources/variants/arjunpro300_mm_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.4 mm Nozzle +version = 4 +definition = arjunpro_mirrored + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/arjunpro300_mm_0.5.inst.cfg b/resources/variants/arjunpro300_mm_0.5.inst.cfg new file mode 100644 index 0000000000..dfbf3662c3 --- /dev/null +++ b/resources/variants/arjunpro300_mm_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.5 mm Nozzle +version = 4 +definition = arjunpro_mirrored + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/arjunpro300_mm_0.6.inst.cfg b/resources/variants/arjunpro300_mm_0.6.inst.cfg new file mode 100644 index 0000000000..c13c5cf82b --- /dev/null +++ b/resources/variants/arjunpro300_mm_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.6 mm Nozzle +version = 4 +definition = arjunpro_mirrored + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/arjunpro300_mm_0.8.inst.cfg b/resources/variants/arjunpro300_mm_0.8.inst.cfg new file mode 100644 index 0000000000..feffb6846c --- /dev/null +++ b/resources/variants/arjunpro300_mm_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 0.8 mm Nozzle +version = 4 +definition = arjunpro_mirrored + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjunpro300_pva_0.2.inst.cfg new file mode 100644 index 0000000000..1abc708060 --- /dev/null +++ b/resources/variants/arjunpro300_pva_0.2.inst.cfg @@ -0,0 +1,32 @@ +[general] +name = PVA 0.2 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_offset = 3 +support_bottom_height = =layer_height * 2 +support_bottom_pattern = zigzag +support_bottom_stair_step_height = =layer_height +support_infill_rate = 50 +support_interface_enable = True +support_interface_height = =layer_height * 5 +support_interface_skip_height = =layer_height +support_join_distance = 3 +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 +support_angle = 45 +support_pattern = triangles +support_use_towers = False +support_z_distance = 0 +gradual_support_infill_steps = 2 +support_interface_density = 100 +support_interface_pattern = concentric \ No newline at end of file diff --git a/resources/variants/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjunpro300_pva_0.3.inst.cfg new file mode 100644 index 0000000000..5cb59930c1 --- /dev/null +++ b/resources/variants/arjunpro300_pva_0.3.inst.cfg @@ -0,0 +1,32 @@ +[general] +name = PVA 0.3 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_offset = 3 +support_bottom_height = =layer_height * 2 +support_bottom_pattern = zigzag +support_bottom_stair_step_height = =layer_height +support_infill_rate = 50 +support_interface_enable = True +support_interface_height = =layer_height * 5 +support_interface_skip_height = =layer_height +support_join_distance = 3 +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 +support_angle = 45 +support_pattern = triangles +support_use_towers = False +support_z_distance = 0 +gradual_support_infill_steps = 2 +support_interface_density = 100 +support_interface_pattern = concentric \ No newline at end of file diff --git a/resources/variants/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjunpro300_pva_0.4.inst.cfg new file mode 100644 index 0000000000..c2f5c68480 --- /dev/null +++ b/resources/variants/arjunpro300_pva_0.4.inst.cfg @@ -0,0 +1,32 @@ +[general] +name = PVA 0.4 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_offset = 3 +support_bottom_height = =layer_height * 2 +support_bottom_pattern = zigzag +support_bottom_stair_step_height = =layer_height +support_infill_rate = 50 +support_interface_enable = True +support_interface_height = =layer_height * 5 +support_interface_skip_height = =layer_height +support_join_distance = 3 +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 +support_angle = 45 +support_pattern = triangles +support_use_towers = False +support_z_distance = 0 +gradual_support_infill_steps = 2 +support_interface_density = 100 +support_interface_pattern = concentric \ No newline at end of file diff --git a/resources/variants/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjunpro300_pva_0.5.inst.cfg new file mode 100644 index 0000000000..6b985fb06b --- /dev/null +++ b/resources/variants/arjunpro300_pva_0.5.inst.cfg @@ -0,0 +1,32 @@ +[general] +name = PVA 0.5 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_offset = 3 +support_bottom_height = =layer_height * 2 +support_bottom_pattern = zigzag +support_bottom_stair_step_height = =layer_height +support_infill_rate = 50 +support_interface_enable = True +support_interface_height = =layer_height * 5 +support_interface_skip_height = =layer_height +support_join_distance = 3 +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 +support_angle = 45 +support_pattern = triangles +support_use_towers = False +support_z_distance = 0 +gradual_support_infill_steps = 2 +support_interface_density = 100 +support_interface_pattern = concentric \ No newline at end of file diff --git a/resources/variants/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjunpro300_pva_0.6.inst.cfg new file mode 100644 index 0000000000..6bfea88e1a --- /dev/null +++ b/resources/variants/arjunpro300_pva_0.6.inst.cfg @@ -0,0 +1,32 @@ +[general] +name = PVA 0.6 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_offset = 3 +support_bottom_height = =layer_height * 2 +support_bottom_pattern = zigzag +support_bottom_stair_step_height = =layer_height +support_infill_rate = 50 +support_interface_enable = True +support_interface_height = =layer_height * 5 +support_interface_skip_height = =layer_height +support_join_distance = 3 +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 +support_angle = 45 +support_pattern = triangles +support_use_towers = False +support_z_distance = 0 +gradual_support_infill_steps = 2 +support_interface_density = 100 +support_interface_pattern = concentric \ No newline at end of file diff --git a/resources/variants/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjunpro300_pva_0.8.inst.cfg new file mode 100644 index 0000000000..7cc066e19d --- /dev/null +++ b/resources/variants/arjunpro300_pva_0.8.inst.cfg @@ -0,0 +1,32 @@ +[general] +name = PVA 0.8 mm Nozzle +version = 4 +definition = arjunpro300 + +[metadata] + +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_offset = 3 +support_bottom_height = =layer_height * 2 +support_bottom_pattern = zigzag +support_bottom_stair_step_height = =layer_height +support_infill_rate = 50 +support_interface_enable = True +support_interface_height = =layer_height * 5 +support_interface_skip_height = =layer_height +support_join_distance = 3 +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 +support_angle = 45 +support_pattern = triangles +support_use_towers = False +support_z_distance = 0 +gradual_support_infill_steps = 2 +support_interface_density = 100 +support_interface_pattern = concentric \ No newline at end of file diff --git a/resources/variants/artillery_base_0.2.inst.cfg b/resources/variants/artillery_base_0.2.inst.cfg index 4f4fa338e4..8820151e01 100644 --- a/resources/variants/artillery_base_0.2.inst.cfg +++ b/resources/variants/artillery_base_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_base_0.3.inst.cfg b/resources/variants/artillery_base_0.3.inst.cfg index 21f8a518bf..00d6a9853d 100644 --- a/resources/variants/artillery_base_0.3.inst.cfg +++ b/resources/variants/artillery_base_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_base_0.4.inst.cfg b/resources/variants/artillery_base_0.4.inst.cfg index 78335018f3..19352f56ca 100644 --- a/resources/variants/artillery_base_0.4.inst.cfg +++ b/resources/variants/artillery_base_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_base_0.6.inst.cfg b/resources/variants/artillery_base_0.6.inst.cfg index cc32cff899..711b4a9d0d 100644 --- a/resources/variants/artillery_base_0.6.inst.cfg +++ b/resources/variants/artillery_base_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_base_0.8.inst.cfg b/resources/variants/artillery_base_0.8.inst.cfg index 4b97a009dc..580760ace0 100644 --- a/resources/variants/artillery_base_0.8.inst.cfg +++ b/resources/variants/artillery_base_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_base_1.0.inst.cfg b/resources/variants/artillery_base_1.0.inst.cfg index 0736b15ae3..dc2ab732ba 100644 --- a/resources/variants/artillery_base_1.0.inst.cfg +++ b/resources/variants/artillery_base_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_genius_0.2.inst.cfg b/resources/variants/artillery_genius_0.2.inst.cfg index a3fef44670..8289611572 100644 --- a/resources/variants/artillery_genius_0.2.inst.cfg +++ b/resources/variants/artillery_genius_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_genius [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_genius_0.3.inst.cfg b/resources/variants/artillery_genius_0.3.inst.cfg index 39f31d8af0..ce51db1d54 100644 --- a/resources/variants/artillery_genius_0.3.inst.cfg +++ b/resources/variants/artillery_genius_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_genius [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_genius_0.4.inst.cfg b/resources/variants/artillery_genius_0.4.inst.cfg index fe4657e0c8..627fda3609 100644 --- a/resources/variants/artillery_genius_0.4.inst.cfg +++ b/resources/variants/artillery_genius_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_genius [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_genius_0.5.inst.cfg b/resources/variants/artillery_genius_0.5.inst.cfg index 8a32d7504a..6c5f1f88ff 100644 --- a/resources/variants/artillery_genius_0.5.inst.cfg +++ b/resources/variants/artillery_genius_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_genius [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_genius_0.6.inst.cfg b/resources/variants/artillery_genius_0.6.inst.cfg index 814d2276f2..affbb1c0ca 100644 --- a/resources/variants/artillery_genius_0.6.inst.cfg +++ b/resources/variants/artillery_genius_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_genius [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_genius_0.8.inst.cfg b/resources/variants/artillery_genius_0.8.inst.cfg index b040f52592..f0003fe425 100644 --- a/resources/variants/artillery_genius_0.8.inst.cfg +++ b/resources/variants/artillery_genius_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_genius [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_genius_1.0.inst.cfg b/resources/variants/artillery_genius_1.0.inst.cfg index 49d44a845b..4de4523080 100644 --- a/resources/variants/artillery_genius_1.0.inst.cfg +++ b/resources/variants/artillery_genius_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_genius [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_sidewinder_x1_0.2.inst.cfg b/resources/variants/artillery_sidewinder_x1_0.2.inst.cfg index a4586c95ac..31f33352f5 100644 --- a/resources/variants/artillery_sidewinder_x1_0.2.inst.cfg +++ b/resources/variants/artillery_sidewinder_x1_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_sidewinder_x1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_sidewinder_x1_0.3.inst.cfg b/resources/variants/artillery_sidewinder_x1_0.3.inst.cfg index a2afe9d2bb..4858d84f17 100644 --- a/resources/variants/artillery_sidewinder_x1_0.3.inst.cfg +++ b/resources/variants/artillery_sidewinder_x1_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_sidewinder_x1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_sidewinder_x1_0.4.inst.cfg b/resources/variants/artillery_sidewinder_x1_0.4.inst.cfg index 0eab6e554c..636dd39ae6 100644 --- a/resources/variants/artillery_sidewinder_x1_0.4.inst.cfg +++ b/resources/variants/artillery_sidewinder_x1_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_sidewinder_x1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_sidewinder_x1_0.6.inst.cfg b/resources/variants/artillery_sidewinder_x1_0.6.inst.cfg index 125e151817..11d0ab2aef 100644 --- a/resources/variants/artillery_sidewinder_x1_0.6.inst.cfg +++ b/resources/variants/artillery_sidewinder_x1_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_sidewinder_x1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_sidewinder_x1_0.8.inst.cfg b/resources/variants/artillery_sidewinder_x1_0.8.inst.cfg index 25164030f5..508893fee6 100644 --- a/resources/variants/artillery_sidewinder_x1_0.8.inst.cfg +++ b/resources/variants/artillery_sidewinder_x1_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_sidewinder_x1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/artillery_sidewinder_x1_1.0.inst.cfg b/resources/variants/artillery_sidewinder_x1_1.0.inst.cfg index 656a2ccaa2..dfa2c7306a 100644 --- a/resources/variants/artillery_sidewinder_x1_1.0.inst.cfg +++ b/resources/variants/artillery_sidewinder_x1_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = artillery_sidewinder_x1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_asterion_ht_v6_0.40.inst.cfg b/resources/variants/atmat_asterion_ht_v6_0.40.inst.cfg index d627fab67a..3e5c143491 100644 --- a/resources/variants/atmat_asterion_ht_v6_0.40.inst.cfg +++ b/resources/variants/atmat_asterion_ht_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_asterion_ht [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_asterion_ht_v6_0.80.inst.cfg b/resources/variants/atmat_asterion_ht_v6_0.80.inst.cfg index e132dd69c8..8aa95acf28 100644 --- a/resources/variants/atmat_asterion_ht_v6_0.80.inst.cfg +++ b/resources/variants/atmat_asterion_ht_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_asterion_ht [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_asterion_v6_0.40.inst.cfg b/resources/variants/atmat_asterion_v6_0.40.inst.cfg index a24e8b9dc6..5c44df239b 100644 --- a/resources/variants/atmat_asterion_v6_0.40.inst.cfg +++ b/resources/variants/atmat_asterion_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_asterion [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_asterion_v6_0.80.inst.cfg b/resources/variants/atmat_asterion_v6_0.80.inst.cfg index b02c5f5ed9..c1f33484e1 100644 --- a/resources/variants/atmat_asterion_v6_0.80.inst.cfg +++ b/resources/variants/atmat_asterion_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_asterion [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_galaxy_500_v6_0.40.inst.cfg b/resources/variants/atmat_galaxy_500_v6_0.40.inst.cfg index b225049ff5..99fe393d5b 100644 --- a/resources/variants/atmat_galaxy_500_v6_0.40.inst.cfg +++ b/resources/variants/atmat_galaxy_500_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_galaxy_500 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_galaxy_500_v6_0.80.inst.cfg b/resources/variants/atmat_galaxy_500_v6_0.80.inst.cfg index 2e9aff8ec0..694545e190 100644 --- a/resources/variants/atmat_galaxy_500_v6_0.80.inst.cfg +++ b/resources/variants/atmat_galaxy_500_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_galaxy_500 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_galaxy_600_v6_0.40.inst.cfg b/resources/variants/atmat_galaxy_600_v6_0.40.inst.cfg index ff8094c16b..967cc2f30c 100644 --- a/resources/variants/atmat_galaxy_600_v6_0.40.inst.cfg +++ b/resources/variants/atmat_galaxy_600_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_galaxy_600 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_galaxy_600_v6_0.80.inst.cfg b/resources/variants/atmat_galaxy_600_v6_0.80.inst.cfg index 9fcb4c56f3..4b9ef175ba 100644 --- a/resources/variants/atmat_galaxy_600_v6_0.80.inst.cfg +++ b/resources/variants/atmat_galaxy_600_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_galaxy_600 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_300_v1_v6_0.40.inst.cfg b/resources/variants/atmat_signal_pro_300_v1_v6_0.40.inst.cfg index 72fefb525c..b1928c2e04 100644 --- a/resources/variants/atmat_signal_pro_300_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_pro_300_v1_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_300_v1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_300_v1_v6_0.80.inst.cfg b/resources/variants/atmat_signal_pro_300_v1_v6_0.80.inst.cfg index d7bb76982f..0ba93ebcb9 100644 --- a/resources/variants/atmat_signal_pro_300_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_pro_300_v1_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_300_v1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_300_v2_v6_0.40.inst.cfg b/resources/variants/atmat_signal_pro_300_v2_v6_0.40.inst.cfg index 50b6faf184..80b1adc5a9 100644 --- a/resources/variants/atmat_signal_pro_300_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_pro_300_v2_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_300_v2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_300_v2_v6_0.80.inst.cfg b/resources/variants/atmat_signal_pro_300_v2_v6_0.80.inst.cfg index 5198d82bf6..203e3fcc90 100644 --- a/resources/variants/atmat_signal_pro_300_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_pro_300_v2_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_300_v2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_400_v1_v6_0.40.inst.cfg b/resources/variants/atmat_signal_pro_400_v1_v6_0.40.inst.cfg index fac40b3ca2..f05d906298 100644 --- a/resources/variants/atmat_signal_pro_400_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_pro_400_v1_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_400_v1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_400_v1_v6_0.80.inst.cfg b/resources/variants/atmat_signal_pro_400_v1_v6_0.80.inst.cfg index 3565c9e790..59ed128beb 100644 --- a/resources/variants/atmat_signal_pro_400_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_pro_400_v1_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_400_v1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_400_v2_v6_0.40.inst.cfg b/resources/variants/atmat_signal_pro_400_v2_v6_0.40.inst.cfg index 0054553fab..5e0357aa29 100644 --- a/resources/variants/atmat_signal_pro_400_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_pro_400_v2_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_400_v2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_400_v2_v6_0.80.inst.cfg b/resources/variants/atmat_signal_pro_400_v2_v6_0.80.inst.cfg index 66a2741a4c..c405e533d6 100644 --- a/resources/variants/atmat_signal_pro_400_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_pro_400_v2_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_400_v2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_500_v1_v6_0.40.inst.cfg b/resources/variants/atmat_signal_pro_500_v1_v6_0.40.inst.cfg index 5bd2fb96cc..4af1edbfb2 100644 --- a/resources/variants/atmat_signal_pro_500_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_pro_500_v1_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_500_v1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_500_v1_v6_0.80.inst.cfg b/resources/variants/atmat_signal_pro_500_v1_v6_0.80.inst.cfg index e04c3958b8..4bbbc3ee5e 100644 --- a/resources/variants/atmat_signal_pro_500_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_pro_500_v1_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_500_v1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_500_v2_v6_0.40.inst.cfg b/resources/variants/atmat_signal_pro_500_v2_v6_0.40.inst.cfg index 325c344223..c58a9ec971 100644 --- a/resources/variants/atmat_signal_pro_500_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_pro_500_v2_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_500_v2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_pro_500_v2_v6_0.80.inst.cfg b/resources/variants/atmat_signal_pro_500_v2_v6_0.80.inst.cfg index 344f063c4a..3f5ae61d9a 100644 --- a/resources/variants/atmat_signal_pro_500_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_pro_500_v2_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_pro_500_v2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_xl_v6_0.40.inst.cfg b/resources/variants/atmat_signal_xl_v6_0.40.inst.cfg index ff150d86ec..7057acf885 100644 --- a/resources/variants/atmat_signal_xl_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_xl_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_xl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_xl_v6_0.80.inst.cfg b/resources/variants/atmat_signal_xl_v6_0.80.inst.cfg index 8a6aa68676..44e0d6e36e 100644 --- a/resources/variants/atmat_signal_xl_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_xl_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_xl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_xxl_v6_0.40.inst.cfg b/resources/variants/atmat_signal_xxl_v6_0.40.inst.cfg index d93c287a55..b98f652020 100644 --- a/resources/variants/atmat_signal_xxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_xxl_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_xxl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_xxl_v6_0.80.inst.cfg b/resources/variants/atmat_signal_xxl_v6_0.80.inst.cfg index ed3ec5de09..7c6f51a41e 100644 --- a/resources/variants/atmat_signal_xxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_xxl_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_xxl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_xxxl_v6_0.40.inst.cfg b/resources/variants/atmat_signal_xxxl_v6_0.40.inst.cfg index f3a3dded2e..a63c2d74a4 100644 --- a/resources/variants/atmat_signal_xxxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat_signal_xxxl_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_xxxl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atmat_signal_xxxl_v6_0.80.inst.cfg b/resources/variants/atmat_signal_xxxl_v6_0.80.inst.cfg index 88b5af6372..855c1d4c8f 100644 --- a/resources/variants/atmat_signal_xxxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat_signal_xxxl_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atmat_signal_xxxl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_all_metal_brass_0.2.inst.cfg b/resources/variants/atom3_all_metal_brass_0.2.inst.cfg index 54b649276f..4f782295c2 100644 --- a/resources/variants/atom3_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atom3_all_metal_brass_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_all_metal_brass_0.4.inst.cfg b/resources/variants/atom3_all_metal_brass_0.4.inst.cfg index 1cce5a141e..105f05bad0 100644 --- a/resources/variants/atom3_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atom3_all_metal_brass_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_all_metal_brass_0.6.inst.cfg b/resources/variants/atom3_all_metal_brass_0.6.inst.cfg index ed6b1987be..14a94299f4 100644 --- a/resources/variants/atom3_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atom3_all_metal_brass_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_lite_all_metal_brass_0.2.inst.cfg b/resources/variants/atom3_lite_all_metal_brass_0.2.inst.cfg index e649773986..db719ad8cb 100644 --- a/resources/variants/atom3_lite_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atom3_lite_all_metal_brass_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3_lite [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_lite_all_metal_brass_0.4.inst.cfg b/resources/variants/atom3_lite_all_metal_brass_0.4.inst.cfg index df28ad66b5..1c601403f0 100644 --- a/resources/variants/atom3_lite_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atom3_lite_all_metal_brass_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3_lite [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_lite_all_metal_brass_0.6.inst.cfg b/resources/variants/atom3_lite_all_metal_brass_0.6.inst.cfg index f6aceb953a..cedb7ad6ea 100644 --- a/resources/variants/atom3_lite_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atom3_lite_all_metal_brass_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3_lite [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_lite_ptfe_brass_0.2.inst.cfg b/resources/variants/atom3_lite_ptfe_brass_0.2.inst.cfg index 6a315929bf..27281bd4de 100644 --- a/resources/variants/atom3_lite_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atom3_lite_ptfe_brass_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3_lite [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_lite_ptfe_brass_0.4.inst.cfg b/resources/variants/atom3_lite_ptfe_brass_0.4.inst.cfg index ffbf1e3a8e..776715f9eb 100644 --- a/resources/variants/atom3_lite_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atom3_lite_ptfe_brass_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3_lite [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_lite_ptfe_brass_0.6.inst.cfg b/resources/variants/atom3_lite_ptfe_brass_0.6.inst.cfg index 9bd202c021..6edbe165a8 100644 --- a/resources/variants/atom3_lite_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atom3_lite_ptfe_brass_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3_lite [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_ptfe_brass_0.2.inst.cfg b/resources/variants/atom3_ptfe_brass_0.2.inst.cfg index 33eb1d7701..20edb60d2a 100644 --- a/resources/variants/atom3_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atom3_ptfe_brass_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_ptfe_brass_0.4.inst.cfg b/resources/variants/atom3_ptfe_brass_0.4.inst.cfg index 857737db18..356e8ec022 100644 --- a/resources/variants/atom3_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atom3_ptfe_brass_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/atom3_ptfe_brass_0.6.inst.cfg b/resources/variants/atom3_ptfe_brass_0.6.inst.cfg index e4137b7c99..c021ec3d57 100644 --- a/resources/variants/atom3_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atom3_ptfe_brass_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = atom3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_0.2.inst.cfg b/resources/variants/biqu_b1_0.2.inst.cfg index e31d52e941..624524391d 100755 --- a/resources/variants/biqu_b1_0.2.inst.cfg +++ b/resources/variants/biqu_b1_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_0.3.inst.cfg b/resources/variants/biqu_b1_0.3.inst.cfg index d91fa9f9d7..e113f9e2c3 100755 --- a/resources/variants/biqu_b1_0.3.inst.cfg +++ b/resources/variants/biqu_b1_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_0.4.inst.cfg b/resources/variants/biqu_b1_0.4.inst.cfg index be9e21432e..0344c3f680 100755 --- a/resources/variants/biqu_b1_0.4.inst.cfg +++ b/resources/variants/biqu_b1_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_0.5.inst.cfg b/resources/variants/biqu_b1_0.5.inst.cfg index 4760b6a063..d1cc4b293d 100755 --- a/resources/variants/biqu_b1_0.5.inst.cfg +++ b/resources/variants/biqu_b1_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_0.6.inst.cfg b/resources/variants/biqu_b1_0.6.inst.cfg index 46e309fb1b..5d8d3482d5 100755 --- a/resources/variants/biqu_b1_0.6.inst.cfg +++ b/resources/variants/biqu_b1_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_0.8.inst.cfg b/resources/variants/biqu_b1_0.8.inst.cfg index 0ecd60f6ff..f7d04235e0 100755 --- a/resources/variants/biqu_b1_0.8.inst.cfg +++ b/resources/variants/biqu_b1_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_abl_0.2.inst.cfg b/resources/variants/biqu_b1_abl_0.2.inst.cfg index d17d2189fb..dae85a4476 100755 --- a/resources/variants/biqu_b1_abl_0.2.inst.cfg +++ b/resources/variants/biqu_b1_abl_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_abl_0.3.inst.cfg b/resources/variants/biqu_b1_abl_0.3.inst.cfg index ea8032c264..9433b3114b 100755 --- a/resources/variants/biqu_b1_abl_0.3.inst.cfg +++ b/resources/variants/biqu_b1_abl_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_abl_0.4.inst.cfg b/resources/variants/biqu_b1_abl_0.4.inst.cfg index 09596bce06..8694a56470 100755 --- a/resources/variants/biqu_b1_abl_0.4.inst.cfg +++ b/resources/variants/biqu_b1_abl_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_abl_0.5.inst.cfg b/resources/variants/biqu_b1_abl_0.5.inst.cfg index 188030719b..ab06c05da1 100755 --- a/resources/variants/biqu_b1_abl_0.5.inst.cfg +++ b/resources/variants/biqu_b1_abl_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_abl_0.6.inst.cfg b/resources/variants/biqu_b1_abl_0.6.inst.cfg index e6220e395a..e6d6ba7b29 100755 --- a/resources/variants/biqu_b1_abl_0.6.inst.cfg +++ b/resources/variants/biqu_b1_abl_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_b1_abl_0.8.inst.cfg b/resources/variants/biqu_b1_abl_0.8.inst.cfg index 78e2953ff2..7780509ab2 100755 --- a/resources/variants/biqu_b1_abl_0.8.inst.cfg +++ b/resources/variants/biqu_b1_abl_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_b1_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_base_0.2.inst.cfg b/resources/variants/biqu_base_0.2.inst.cfg index 0dac1f681e..0203f151cf 100755 --- a/resources/variants/biqu_base_0.2.inst.cfg +++ b/resources/variants/biqu_base_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_base_0.3.inst.cfg b/resources/variants/biqu_base_0.3.inst.cfg index 5fc3bd51ab..6705355176 100755 --- a/resources/variants/biqu_base_0.3.inst.cfg +++ b/resources/variants/biqu_base_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_base_0.4.inst.cfg b/resources/variants/biqu_base_0.4.inst.cfg index 506e603abe..31e3b80430 100755 --- a/resources/variants/biqu_base_0.4.inst.cfg +++ b/resources/variants/biqu_base_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_base_0.5.inst.cfg b/resources/variants/biqu_base_0.5.inst.cfg index 9ff66385a3..29ded2ba1b 100755 --- a/resources/variants/biqu_base_0.5.inst.cfg +++ b/resources/variants/biqu_base_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_base_0.6.inst.cfg b/resources/variants/biqu_base_0.6.inst.cfg index 826fbcfb8f..4bf0f81c64 100755 --- a/resources/variants/biqu_base_0.6.inst.cfg +++ b/resources/variants/biqu_base_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_base_0.8.inst.cfg b/resources/variants/biqu_base_0.8.inst.cfg index c953604fee..c48f3e940f 100755 --- a/resources/variants/biqu_base_0.8.inst.cfg +++ b/resources/variants/biqu_base_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_bx_abl_0.2.inst.cfg b/resources/variants/biqu_bx_abl_0.2.inst.cfg index b72fdc83bb..19b350c5d8 100755 --- a/resources/variants/biqu_bx_abl_0.2.inst.cfg +++ b/resources/variants/biqu_bx_abl_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_bx_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_bx_abl_0.3.inst.cfg b/resources/variants/biqu_bx_abl_0.3.inst.cfg index 7b195c0013..866cfd5e98 100755 --- a/resources/variants/biqu_bx_abl_0.3.inst.cfg +++ b/resources/variants/biqu_bx_abl_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_bx_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_bx_abl_0.4.inst.cfg b/resources/variants/biqu_bx_abl_0.4.inst.cfg index 106c5ea5d7..fbb8fa45f1 100755 --- a/resources/variants/biqu_bx_abl_0.4.inst.cfg +++ b/resources/variants/biqu_bx_abl_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_bx_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_bx_abl_0.5.inst.cfg b/resources/variants/biqu_bx_abl_0.5.inst.cfg index c95388e23f..cbe2b5da38 100755 --- a/resources/variants/biqu_bx_abl_0.5.inst.cfg +++ b/resources/variants/biqu_bx_abl_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_bx_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_bx_abl_0.6.inst.cfg b/resources/variants/biqu_bx_abl_0.6.inst.cfg index 0116e7478f..36de930e66 100755 --- a/resources/variants/biqu_bx_abl_0.6.inst.cfg +++ b/resources/variants/biqu_bx_abl_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_bx_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/biqu_bx_abl_0.8.inst.cfg b/resources/variants/biqu_bx_abl_0.8.inst.cfg index 8a5747a9f7..60e0922c3a 100755 --- a/resources/variants/biqu_bx_abl_0.8.inst.cfg +++ b/resources/variants/biqu_bx_abl_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = biqu_bx_abl [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/cartesio_0.25.inst.cfg b/resources/variants/cartesio_0.25.inst.cfg index e1221b025d..63cdf7df6d 100644 --- a/resources/variants/cartesio_0.25.inst.cfg +++ b/resources/variants/cartesio_0.25.inst.cfg @@ -5,7 +5,7 @@ definition = cartesio [metadata] author = Cartesio -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/cartesio_0.4.inst.cfg b/resources/variants/cartesio_0.4.inst.cfg index 10d16e2f9c..77602cdb26 100644 --- a/resources/variants/cartesio_0.4.inst.cfg +++ b/resources/variants/cartesio_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = cartesio [metadata] author = Cartesio -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/cartesio_0.8.inst.cfg b/resources/variants/cartesio_0.8.inst.cfg index 698b693b0b..5f9647df26 100644 --- a/resources/variants/cartesio_0.8.inst.cfg +++ b/resources/variants/cartesio_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = cartesio [metadata] author = Cartesio -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/crazy3dprint_base_0.40.inst.cfg b/resources/variants/crazy3dprint_base_0.40.inst.cfg new file mode 100644 index 0000000000..358d998c79 --- /dev/null +++ b/resources/variants/crazy3dprint_base_0.40.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = crazy3dprint_base + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/crazy3dprint_cz_300_0.40.inst.cfg b/resources/variants/crazy3dprint_cz_300_0.40.inst.cfg new file mode 100644 index 0000000000..8339bbd381 --- /dev/null +++ b/resources/variants/crazy3dprint_cz_300_0.40.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = crazy3dprint_cz_300 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/creality_base_0.2.inst.cfg b/resources/variants/creality_base_0.2.inst.cfg index 71d11e62fb..8f0a40120b 100644 --- a/resources/variants/creality_base_0.2.inst.cfg +++ b/resources/variants/creality_base_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_base_0.3.inst.cfg b/resources/variants/creality_base_0.3.inst.cfg index 77443a81a3..1e51cf1309 100644 --- a/resources/variants/creality_base_0.3.inst.cfg +++ b/resources/variants/creality_base_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_base_0.4.inst.cfg b/resources/variants/creality_base_0.4.inst.cfg index 5e0d63f59c..dd25165387 100644 --- a/resources/variants/creality_base_0.4.inst.cfg +++ b/resources/variants/creality_base_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_base_0.5.inst.cfg b/resources/variants/creality_base_0.5.inst.cfg index 7097ab21a4..3c67a2b17a 100644 --- a/resources/variants/creality_base_0.5.inst.cfg +++ b/resources/variants/creality_base_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_base_0.6.inst.cfg b/resources/variants/creality_base_0.6.inst.cfg index 5528070963..595f08ce9f 100644 --- a/resources/variants/creality_base_0.6.inst.cfg +++ b/resources/variants/creality_base_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_base_0.8.inst.cfg b/resources/variants/creality_base_0.8.inst.cfg index e71a913ae8..e802444553 100644 --- a/resources/variants/creality_base_0.8.inst.cfg +++ b/resources/variants/creality_base_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_base_1.0.inst.cfg b/resources/variants/creality_base_1.0.inst.cfg index a38dde573c..00809f859b 100644 --- a/resources/variants/creality_base_1.0.inst.cfg +++ b/resources/variants/creality_base_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr100_0.4.inst.cfg b/resources/variants/creality_cr100_0.4.inst.cfg new file mode 100644 index 0000000000..ee6fc88135 --- /dev/null +++ b/resources/variants/creality_cr100_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = creality_cr100 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/creality_cr10_0.2.inst.cfg b/resources/variants/creality_cr10_0.2.inst.cfg index 79e12adecb..ff4ad9c52b 100644 --- a/resources/variants/creality_cr10_0.2.inst.cfg +++ b/resources/variants/creality_cr10_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10_0.3.inst.cfg b/resources/variants/creality_cr10_0.3.inst.cfg index 190ca6a488..e2a882fddc 100644 --- a/resources/variants/creality_cr10_0.3.inst.cfg +++ b/resources/variants/creality_cr10_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10_0.4.inst.cfg b/resources/variants/creality_cr10_0.4.inst.cfg index e02ee60edc..b0707ffa77 100644 --- a/resources/variants/creality_cr10_0.4.inst.cfg +++ b/resources/variants/creality_cr10_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10_0.5.inst.cfg b/resources/variants/creality_cr10_0.5.inst.cfg index 3a337af96b..85ef1b321c 100644 --- a/resources/variants/creality_cr10_0.5.inst.cfg +++ b/resources/variants/creality_cr10_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10_0.6.inst.cfg b/resources/variants/creality_cr10_0.6.inst.cfg index 7d45e2d9dc..7deb4f87cc 100644 --- a/resources/variants/creality_cr10_0.6.inst.cfg +++ b/resources/variants/creality_cr10_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10_0.8.inst.cfg b/resources/variants/creality_cr10_0.8.inst.cfg index 07b6bb5b29..5333e9eda3 100644 --- a/resources/variants/creality_cr10_0.8.inst.cfg +++ b/resources/variants/creality_cr10_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10_1.0.inst.cfg b/resources/variants/creality_cr10_1.0.inst.cfg index 3f694763f0..8bbf0d6d8a 100644 --- a/resources/variants/creality_cr10_1.0.inst.cfg +++ b/resources/variants/creality_cr10_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10max_0.2.inst.cfg b/resources/variants/creality_cr10max_0.2.inst.cfg index 1cb681c833..c68e4d75ec 100644 --- a/resources/variants/creality_cr10max_0.2.inst.cfg +++ b/resources/variants/creality_cr10max_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10max_0.3.inst.cfg b/resources/variants/creality_cr10max_0.3.inst.cfg index b919beb97a..6fe08b3141 100644 --- a/resources/variants/creality_cr10max_0.3.inst.cfg +++ b/resources/variants/creality_cr10max_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10max_0.4.inst.cfg b/resources/variants/creality_cr10max_0.4.inst.cfg index ca87afb28c..196cc45e2f 100644 --- a/resources/variants/creality_cr10max_0.4.inst.cfg +++ b/resources/variants/creality_cr10max_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10max_0.5.inst.cfg b/resources/variants/creality_cr10max_0.5.inst.cfg index 3d5a72b1f8..0f312703c9 100644 --- a/resources/variants/creality_cr10max_0.5.inst.cfg +++ b/resources/variants/creality_cr10max_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10max_0.6.inst.cfg b/resources/variants/creality_cr10max_0.6.inst.cfg index f56e9d2a82..81ec964fe5 100644 --- a/resources/variants/creality_cr10max_0.6.inst.cfg +++ b/resources/variants/creality_cr10max_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10max_0.8.inst.cfg b/resources/variants/creality_cr10max_0.8.inst.cfg index 76c9338d5e..00247c0223 100644 --- a/resources/variants/creality_cr10max_0.8.inst.cfg +++ b/resources/variants/creality_cr10max_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10max_1.0.inst.cfg b/resources/variants/creality_cr10max_1.0.inst.cfg index 38242024f1..39d30ca72d 100644 --- a/resources/variants/creality_cr10max_1.0.inst.cfg +++ b/resources/variants/creality_cr10max_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10mini_0.2.inst.cfg b/resources/variants/creality_cr10mini_0.2.inst.cfg index 61e3eb4426..88f513ee2d 100644 --- a/resources/variants/creality_cr10mini_0.2.inst.cfg +++ b/resources/variants/creality_cr10mini_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10mini_0.3.inst.cfg b/resources/variants/creality_cr10mini_0.3.inst.cfg index f8237eb546..31d3de552c 100644 --- a/resources/variants/creality_cr10mini_0.3.inst.cfg +++ b/resources/variants/creality_cr10mini_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10mini_0.4.inst.cfg b/resources/variants/creality_cr10mini_0.4.inst.cfg index cfd5370196..c435c68c74 100644 --- a/resources/variants/creality_cr10mini_0.4.inst.cfg +++ b/resources/variants/creality_cr10mini_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10mini_0.5.inst.cfg b/resources/variants/creality_cr10mini_0.5.inst.cfg index b40091f4d8..b1c3028541 100644 --- a/resources/variants/creality_cr10mini_0.5.inst.cfg +++ b/resources/variants/creality_cr10mini_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10mini_0.6.inst.cfg b/resources/variants/creality_cr10mini_0.6.inst.cfg index e6ab420dd2..c9d5996e5e 100644 --- a/resources/variants/creality_cr10mini_0.6.inst.cfg +++ b/resources/variants/creality_cr10mini_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10mini_0.8.inst.cfg b/resources/variants/creality_cr10mini_0.8.inst.cfg index df3746df00..1208698772 100644 --- a/resources/variants/creality_cr10mini_0.8.inst.cfg +++ b/resources/variants/creality_cr10mini_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10mini_1.0.inst.cfg b/resources/variants/creality_cr10mini_1.0.inst.cfg index 3c377248fa..d684540590 100644 --- a/resources/variants/creality_cr10mini_1.0.inst.cfg +++ b/resources/variants/creality_cr10mini_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s4_0.2.inst.cfg b/resources/variants/creality_cr10s4_0.2.inst.cfg index a10e134dcd..49692ce4de 100644 --- a/resources/variants/creality_cr10s4_0.2.inst.cfg +++ b/resources/variants/creality_cr10s4_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s4_0.3.inst.cfg b/resources/variants/creality_cr10s4_0.3.inst.cfg index 90fc424cd1..891abb5120 100644 --- a/resources/variants/creality_cr10s4_0.3.inst.cfg +++ b/resources/variants/creality_cr10s4_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s4_0.4.inst.cfg b/resources/variants/creality_cr10s4_0.4.inst.cfg index 2f151ea147..8b817f9641 100644 --- a/resources/variants/creality_cr10s4_0.4.inst.cfg +++ b/resources/variants/creality_cr10s4_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s4_0.5.inst.cfg b/resources/variants/creality_cr10s4_0.5.inst.cfg index 752917df6c..fed818f80e 100644 --- a/resources/variants/creality_cr10s4_0.5.inst.cfg +++ b/resources/variants/creality_cr10s4_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s4_0.6.inst.cfg b/resources/variants/creality_cr10s4_0.6.inst.cfg index 4711b4b426..21fad584a6 100644 --- a/resources/variants/creality_cr10s4_0.6.inst.cfg +++ b/resources/variants/creality_cr10s4_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s4_0.8.inst.cfg b/resources/variants/creality_cr10s4_0.8.inst.cfg index 4f5ce8f564..a7219e020c 100644 --- a/resources/variants/creality_cr10s4_0.8.inst.cfg +++ b/resources/variants/creality_cr10s4_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s4_1.0.inst.cfg b/resources/variants/creality_cr10s4_1.0.inst.cfg index b5431231cf..c6b4f06656 100644 --- a/resources/variants/creality_cr10s4_1.0.inst.cfg +++ b/resources/variants/creality_cr10s4_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s5_0.2.inst.cfg b/resources/variants/creality_cr10s5_0.2.inst.cfg index f1c297a288..25f2ba0dfe 100644 --- a/resources/variants/creality_cr10s5_0.2.inst.cfg +++ b/resources/variants/creality_cr10s5_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s5_0.3.inst.cfg b/resources/variants/creality_cr10s5_0.3.inst.cfg index f8a4ff87f8..6aa15dde3d 100644 --- a/resources/variants/creality_cr10s5_0.3.inst.cfg +++ b/resources/variants/creality_cr10s5_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s5_0.4.inst.cfg b/resources/variants/creality_cr10s5_0.4.inst.cfg index bcd6ce2c49..ddae1462a9 100644 --- a/resources/variants/creality_cr10s5_0.4.inst.cfg +++ b/resources/variants/creality_cr10s5_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s5_0.5.inst.cfg b/resources/variants/creality_cr10s5_0.5.inst.cfg index 322888dc96..4832d624b8 100644 --- a/resources/variants/creality_cr10s5_0.5.inst.cfg +++ b/resources/variants/creality_cr10s5_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s5_0.6.inst.cfg b/resources/variants/creality_cr10s5_0.6.inst.cfg index 73766ef2fc..498ed7a5ec 100644 --- a/resources/variants/creality_cr10s5_0.6.inst.cfg +++ b/resources/variants/creality_cr10s5_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s5_0.8.inst.cfg b/resources/variants/creality_cr10s5_0.8.inst.cfg index 7adb8c2299..2896ac8dd5 100644 --- a/resources/variants/creality_cr10s5_0.8.inst.cfg +++ b/resources/variants/creality_cr10s5_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s5_1.0.inst.cfg b/resources/variants/creality_cr10s5_1.0.inst.cfg index 2006a299fa..0371cce2a8 100644 --- a/resources/variants/creality_cr10s5_1.0.inst.cfg +++ b/resources/variants/creality_cr10s5_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s_0.2.inst.cfg b/resources/variants/creality_cr10s_0.2.inst.cfg index 70bb2b38db..8a637e80b0 100644 --- a/resources/variants/creality_cr10s_0.2.inst.cfg +++ b/resources/variants/creality_cr10s_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s_0.3.inst.cfg b/resources/variants/creality_cr10s_0.3.inst.cfg index fd7a408ea1..902f61e3c0 100644 --- a/resources/variants/creality_cr10s_0.3.inst.cfg +++ b/resources/variants/creality_cr10s_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s_0.4.inst.cfg b/resources/variants/creality_cr10s_0.4.inst.cfg index ec45fa5f4b..32daca4b85 100644 --- a/resources/variants/creality_cr10s_0.4.inst.cfg +++ b/resources/variants/creality_cr10s_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s_0.5.inst.cfg b/resources/variants/creality_cr10s_0.5.inst.cfg index 57a0c952d7..42e468b0fc 100644 --- a/resources/variants/creality_cr10s_0.5.inst.cfg +++ b/resources/variants/creality_cr10s_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s_0.6.inst.cfg b/resources/variants/creality_cr10s_0.6.inst.cfg index 81e2fe17f1..0b9d4ffc29 100644 --- a/resources/variants/creality_cr10s_0.6.inst.cfg +++ b/resources/variants/creality_cr10s_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s_0.8.inst.cfg b/resources/variants/creality_cr10s_0.8.inst.cfg index 7bb25fa9cb..84e4577be6 100644 --- a/resources/variants/creality_cr10s_0.8.inst.cfg +++ b/resources/variants/creality_cr10s_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10s_1.0.inst.cfg b/resources/variants/creality_cr10s_1.0.inst.cfg index f76ed1c3b5..c97444c373 100644 --- a/resources/variants/creality_cr10s_1.0.inst.cfg +++ b/resources/variants/creality_cr10s_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10spro_0.2.inst.cfg b/resources/variants/creality_cr10spro_0.2.inst.cfg index c3078ea70a..275e145bbd 100644 --- a/resources/variants/creality_cr10spro_0.2.inst.cfg +++ b/resources/variants/creality_cr10spro_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10spro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10spro_0.3.inst.cfg b/resources/variants/creality_cr10spro_0.3.inst.cfg index bc097c35b2..74b8e2a0b3 100644 --- a/resources/variants/creality_cr10spro_0.3.inst.cfg +++ b/resources/variants/creality_cr10spro_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10spro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10spro_0.4.inst.cfg b/resources/variants/creality_cr10spro_0.4.inst.cfg index e4dbda2a18..fe559b099e 100644 --- a/resources/variants/creality_cr10spro_0.4.inst.cfg +++ b/resources/variants/creality_cr10spro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10spro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10spro_0.5.inst.cfg b/resources/variants/creality_cr10spro_0.5.inst.cfg index d5cd455b5c..aec3e0b43c 100644 --- a/resources/variants/creality_cr10spro_0.5.inst.cfg +++ b/resources/variants/creality_cr10spro_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10spro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10spro_0.6.inst.cfg b/resources/variants/creality_cr10spro_0.6.inst.cfg index bcf95ca8ac..84fb0ba3c9 100644 --- a/resources/variants/creality_cr10spro_0.6.inst.cfg +++ b/resources/variants/creality_cr10spro_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10spro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10spro_0.8.inst.cfg b/resources/variants/creality_cr10spro_0.8.inst.cfg index c7732a99bf..0dd4221d51 100644 --- a/resources/variants/creality_cr10spro_0.8.inst.cfg +++ b/resources/variants/creality_cr10spro_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10spro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr10spro_1.0.inst.cfg b/resources/variants/creality_cr10spro_1.0.inst.cfg index a6067fd350..4d0a23ac03 100644 --- a/resources/variants/creality_cr10spro_1.0.inst.cfg +++ b/resources/variants/creality_cr10spro_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr10spro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20_0.2.inst.cfg b/resources/variants/creality_cr20_0.2.inst.cfg index 751ce5e82f..a5e1b3dd75 100644 --- a/resources/variants/creality_cr20_0.2.inst.cfg +++ b/resources/variants/creality_cr20_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20_0.3.inst.cfg b/resources/variants/creality_cr20_0.3.inst.cfg index ffb28cee57..0e05122e2e 100644 --- a/resources/variants/creality_cr20_0.3.inst.cfg +++ b/resources/variants/creality_cr20_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20_0.4.inst.cfg b/resources/variants/creality_cr20_0.4.inst.cfg index dd643b76f4..ea6790e25b 100644 --- a/resources/variants/creality_cr20_0.4.inst.cfg +++ b/resources/variants/creality_cr20_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20_0.5.inst.cfg b/resources/variants/creality_cr20_0.5.inst.cfg index 53c980f375..d7186c5211 100644 --- a/resources/variants/creality_cr20_0.5.inst.cfg +++ b/resources/variants/creality_cr20_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20_0.6.inst.cfg b/resources/variants/creality_cr20_0.6.inst.cfg index 3616941560..c94c5662d3 100644 --- a/resources/variants/creality_cr20_0.6.inst.cfg +++ b/resources/variants/creality_cr20_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20_0.8.inst.cfg b/resources/variants/creality_cr20_0.8.inst.cfg index efb0fb7a74..31fe39c71b 100644 --- a/resources/variants/creality_cr20_0.8.inst.cfg +++ b/resources/variants/creality_cr20_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20_1.0.inst.cfg b/resources/variants/creality_cr20_1.0.inst.cfg index b7da87c411..3b266aea7c 100644 --- a/resources/variants/creality_cr20_1.0.inst.cfg +++ b/resources/variants/creality_cr20_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20pro_0.2.inst.cfg b/resources/variants/creality_cr20pro_0.2.inst.cfg index 8649b48b29..da02c55dd0 100644 --- a/resources/variants/creality_cr20pro_0.2.inst.cfg +++ b/resources/variants/creality_cr20pro_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20pro_0.3.inst.cfg b/resources/variants/creality_cr20pro_0.3.inst.cfg index a21fb4d621..8955b538a5 100644 --- a/resources/variants/creality_cr20pro_0.3.inst.cfg +++ b/resources/variants/creality_cr20pro_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20pro_0.4.inst.cfg b/resources/variants/creality_cr20pro_0.4.inst.cfg index c8bec5726f..9f4b296654 100644 --- a/resources/variants/creality_cr20pro_0.4.inst.cfg +++ b/resources/variants/creality_cr20pro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20pro_0.5.inst.cfg b/resources/variants/creality_cr20pro_0.5.inst.cfg index 0573c5a998..f0e2a7853d 100644 --- a/resources/variants/creality_cr20pro_0.5.inst.cfg +++ b/resources/variants/creality_cr20pro_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20pro_0.6.inst.cfg b/resources/variants/creality_cr20pro_0.6.inst.cfg index 2c0e477ff8..ef111cf092 100644 --- a/resources/variants/creality_cr20pro_0.6.inst.cfg +++ b/resources/variants/creality_cr20pro_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20pro_0.8.inst.cfg b/resources/variants/creality_cr20pro_0.8.inst.cfg index 7be8be0b30..5e2f461bc9 100644 --- a/resources/variants/creality_cr20pro_0.8.inst.cfg +++ b/resources/variants/creality_cr20pro_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr20pro_1.0.inst.cfg b/resources/variants/creality_cr20pro_1.0.inst.cfg index 8a33ec81ca..f4e9faccb2 100644 --- a/resources/variants/creality_cr20pro_1.0.inst.cfg +++ b/resources/variants/creality_cr20pro_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr20pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr6se_0.2.inst.cfg b/resources/variants/creality_cr6se_0.2.inst.cfg index 076fd40ab1..56a078d208 100644 --- a/resources/variants/creality_cr6se_0.2.inst.cfg +++ b/resources/variants/creality_cr6se_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr6se [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr6se_0.3.inst.cfg b/resources/variants/creality_cr6se_0.3.inst.cfg index 4ab5a30d12..09a62ac4c3 100644 --- a/resources/variants/creality_cr6se_0.3.inst.cfg +++ b/resources/variants/creality_cr6se_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr6se [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr6se_0.4.inst.cfg b/resources/variants/creality_cr6se_0.4.inst.cfg index d17dc8c1f3..c4bcdb28da 100644 --- a/resources/variants/creality_cr6se_0.4.inst.cfg +++ b/resources/variants/creality_cr6se_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr6se [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr6se_0.5.inst.cfg b/resources/variants/creality_cr6se_0.5.inst.cfg index c9e6ee6fc0..87444c36fc 100644 --- a/resources/variants/creality_cr6se_0.5.inst.cfg +++ b/resources/variants/creality_cr6se_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr6se [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr6se_0.6.inst.cfg b/resources/variants/creality_cr6se_0.6.inst.cfg index 13a63bd08a..7c1552c51e 100644 --- a/resources/variants/creality_cr6se_0.6.inst.cfg +++ b/resources/variants/creality_cr6se_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr6se [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr6se_0.8.inst.cfg b/resources/variants/creality_cr6se_0.8.inst.cfg index 52686f5c6f..b0877fe69d 100644 --- a/resources/variants/creality_cr6se_0.8.inst.cfg +++ b/resources/variants/creality_cr6se_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr6se [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_cr6se_1.0.inst.cfg b/resources/variants/creality_cr6se_1.0.inst.cfg index 52f35938ff..54693cb329 100644 --- a/resources/variants/creality_cr6se_1.0.inst.cfg +++ b/resources/variants/creality_cr6se_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_cr6se [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender2_0.2.inst.cfg b/resources/variants/creality_ender2_0.2.inst.cfg index 3f36f171be..0934118ecf 100644 --- a/resources/variants/creality_ender2_0.2.inst.cfg +++ b/resources/variants/creality_ender2_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender2_0.3.inst.cfg b/resources/variants/creality_ender2_0.3.inst.cfg index 68ca89e3c7..cf1118440f 100644 --- a/resources/variants/creality_ender2_0.3.inst.cfg +++ b/resources/variants/creality_ender2_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender2_0.4.inst.cfg b/resources/variants/creality_ender2_0.4.inst.cfg index ca0ccb5547..2e98638ad1 100644 --- a/resources/variants/creality_ender2_0.4.inst.cfg +++ b/resources/variants/creality_ender2_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender2_0.5.inst.cfg b/resources/variants/creality_ender2_0.5.inst.cfg index bd7884f584..0fe42450a9 100644 --- a/resources/variants/creality_ender2_0.5.inst.cfg +++ b/resources/variants/creality_ender2_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender2_0.6.inst.cfg b/resources/variants/creality_ender2_0.6.inst.cfg index fc0a9d9b2c..056665c2cb 100644 --- a/resources/variants/creality_ender2_0.6.inst.cfg +++ b/resources/variants/creality_ender2_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender2_0.8.inst.cfg b/resources/variants/creality_ender2_0.8.inst.cfg index 643236993c..46c075e36e 100644 --- a/resources/variants/creality_ender2_0.8.inst.cfg +++ b/resources/variants/creality_ender2_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender2_1.0.inst.cfg b/resources/variants/creality_ender2_1.0.inst.cfg index 99ec9a948d..052d256fdf 100644 --- a/resources/variants/creality_ender2_1.0.inst.cfg +++ b/resources/variants/creality_ender2_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3_0.2.inst.cfg b/resources/variants/creality_ender3_0.2.inst.cfg index 67e0c11b4d..e366d333cd 100644 --- a/resources/variants/creality_ender3_0.2.inst.cfg +++ b/resources/variants/creality_ender3_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3_0.3.inst.cfg b/resources/variants/creality_ender3_0.3.inst.cfg index 4b1d369516..5b84abce30 100644 --- a/resources/variants/creality_ender3_0.3.inst.cfg +++ b/resources/variants/creality_ender3_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3_0.4.inst.cfg b/resources/variants/creality_ender3_0.4.inst.cfg index cd43aa9b22..75cc4afa8f 100644 --- a/resources/variants/creality_ender3_0.4.inst.cfg +++ b/resources/variants/creality_ender3_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3_0.5.inst.cfg b/resources/variants/creality_ender3_0.5.inst.cfg index 7cc64c7ec4..0598aaa426 100644 --- a/resources/variants/creality_ender3_0.5.inst.cfg +++ b/resources/variants/creality_ender3_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3_0.6.inst.cfg b/resources/variants/creality_ender3_0.6.inst.cfg index 0ea6093465..ff6147a0dd 100644 --- a/resources/variants/creality_ender3_0.6.inst.cfg +++ b/resources/variants/creality_ender3_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3_0.8.inst.cfg b/resources/variants/creality_ender3_0.8.inst.cfg index 53c45bbf35..d35114f1a5 100644 --- a/resources/variants/creality_ender3_0.8.inst.cfg +++ b/resources/variants/creality_ender3_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3_1.0.inst.cfg b/resources/variants/creality_ender3_1.0.inst.cfg index ef4ced850c..1c135ac112 100644 --- a/resources/variants/creality_ender3_1.0.inst.cfg +++ b/resources/variants/creality_ender3_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3max_0.2.inst.cfg b/resources/variants/creality_ender3max_0.2.inst.cfg new file mode 100644 index 0000000000..f90b9ad40a --- /dev/null +++ b/resources/variants/creality_ender3max_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = creality_ender3max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 \ No newline at end of file diff --git a/resources/variants/creality_ender3max_0.3.inst.cfg b/resources/variants/creality_ender3max_0.3.inst.cfg new file mode 100644 index 0000000000..24a99d42ab --- /dev/null +++ b/resources/variants/creality_ender3max_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = creality_ender3max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 \ No newline at end of file diff --git a/resources/variants/creality_ender3max_0.4.inst.cfg b/resources/variants/creality_ender3max_0.4.inst.cfg new file mode 100644 index 0000000000..d050f61480 --- /dev/null +++ b/resources/variants/creality_ender3max_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = creality_ender3max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 \ No newline at end of file diff --git a/resources/variants/creality_ender3max_0.5.inst.cfg b/resources/variants/creality_ender3max_0.5.inst.cfg new file mode 100644 index 0000000000..c85d287936 --- /dev/null +++ b/resources/variants/creality_ender3max_0.5.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.5mm Nozzle +version = 4 +definition = creality_ender3max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 \ No newline at end of file diff --git a/resources/variants/creality_ender3max_0.6.inst.cfg b/resources/variants/creality_ender3max_0.6.inst.cfg new file mode 100644 index 0000000000..f179a02cd2 --- /dev/null +++ b/resources/variants/creality_ender3max_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = creality_ender3max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 \ No newline at end of file diff --git a/resources/variants/creality_ender3max_0.8.inst.cfg b/resources/variants/creality_ender3max_0.8.inst.cfg new file mode 100644 index 0000000000..c5206e404f --- /dev/null +++ b/resources/variants/creality_ender3max_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = creality_ender3max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 \ No newline at end of file diff --git a/resources/variants/creality_ender3max_1.0.inst.cfg b/resources/variants/creality_ender3max_1.0.inst.cfg new file mode 100644 index 0000000000..da6d0448db --- /dev/null +++ b/resources/variants/creality_ender3max_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = creality_ender3max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 \ No newline at end of file diff --git a/resources/variants/creality_ender3pro_0.2.inst.cfg b/resources/variants/creality_ender3pro_0.2.inst.cfg index e446aa3934..214042a127 100644 --- a/resources/variants/creality_ender3pro_0.2.inst.cfg +++ b/resources/variants/creality_ender3pro_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3pro_0.3.inst.cfg b/resources/variants/creality_ender3pro_0.3.inst.cfg index 6058af4efd..fb34659573 100644 --- a/resources/variants/creality_ender3pro_0.3.inst.cfg +++ b/resources/variants/creality_ender3pro_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3pro_0.4.inst.cfg b/resources/variants/creality_ender3pro_0.4.inst.cfg index 63eb1cae27..1e2fdcbb16 100644 --- a/resources/variants/creality_ender3pro_0.4.inst.cfg +++ b/resources/variants/creality_ender3pro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3pro_0.5.inst.cfg b/resources/variants/creality_ender3pro_0.5.inst.cfg index 0225619747..468f754ee0 100644 --- a/resources/variants/creality_ender3pro_0.5.inst.cfg +++ b/resources/variants/creality_ender3pro_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3pro_0.6.inst.cfg b/resources/variants/creality_ender3pro_0.6.inst.cfg index bab4cb3298..600584aa12 100644 --- a/resources/variants/creality_ender3pro_0.6.inst.cfg +++ b/resources/variants/creality_ender3pro_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3pro_0.8.inst.cfg b/resources/variants/creality_ender3pro_0.8.inst.cfg index 23711a3ba9..96805958e1 100644 --- a/resources/variants/creality_ender3pro_0.8.inst.cfg +++ b/resources/variants/creality_ender3pro_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender3pro_1.0.inst.cfg b/resources/variants/creality_ender3pro_1.0.inst.cfg index a77bee2585..8e3d1ab7ce 100644 --- a/resources/variants/creality_ender3pro_1.0.inst.cfg +++ b/resources/variants/creality_ender3pro_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender4_0.2.inst.cfg b/resources/variants/creality_ender4_0.2.inst.cfg index 26b635548a..a6a0cb70dc 100644 --- a/resources/variants/creality_ender4_0.2.inst.cfg +++ b/resources/variants/creality_ender4_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender4_0.3.inst.cfg b/resources/variants/creality_ender4_0.3.inst.cfg index 61c24e4a0e..2068587092 100644 --- a/resources/variants/creality_ender4_0.3.inst.cfg +++ b/resources/variants/creality_ender4_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender4_0.4.inst.cfg b/resources/variants/creality_ender4_0.4.inst.cfg index a42d774600..405c343a11 100644 --- a/resources/variants/creality_ender4_0.4.inst.cfg +++ b/resources/variants/creality_ender4_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender4_0.5.inst.cfg b/resources/variants/creality_ender4_0.5.inst.cfg index 95592443c9..14944b32b5 100644 --- a/resources/variants/creality_ender4_0.5.inst.cfg +++ b/resources/variants/creality_ender4_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender4_0.6.inst.cfg b/resources/variants/creality_ender4_0.6.inst.cfg index 9d7d229ea4..1e6951c86f 100644 --- a/resources/variants/creality_ender4_0.6.inst.cfg +++ b/resources/variants/creality_ender4_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender4_0.8.inst.cfg b/resources/variants/creality_ender4_0.8.inst.cfg index 7dcb1e5cef..1c3400b753 100644 --- a/resources/variants/creality_ender4_0.8.inst.cfg +++ b/resources/variants/creality_ender4_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender4_1.0.inst.cfg b/resources/variants/creality_ender4_1.0.inst.cfg index 46c507913a..97be78e8be 100644 --- a/resources/variants/creality_ender4_1.0.inst.cfg +++ b/resources/variants/creality_ender4_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5_0.2.inst.cfg b/resources/variants/creality_ender5_0.2.inst.cfg index 83f946c771..bd12bad3b7 100644 --- a/resources/variants/creality_ender5_0.2.inst.cfg +++ b/resources/variants/creality_ender5_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5_0.3.inst.cfg b/resources/variants/creality_ender5_0.3.inst.cfg index 88deedc2ad..f647df602d 100644 --- a/resources/variants/creality_ender5_0.3.inst.cfg +++ b/resources/variants/creality_ender5_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5_0.4.inst.cfg b/resources/variants/creality_ender5_0.4.inst.cfg index 99db185ef8..84274e8c38 100644 --- a/resources/variants/creality_ender5_0.4.inst.cfg +++ b/resources/variants/creality_ender5_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5_0.5.inst.cfg b/resources/variants/creality_ender5_0.5.inst.cfg index 42d97bb6b5..6c47007823 100644 --- a/resources/variants/creality_ender5_0.5.inst.cfg +++ b/resources/variants/creality_ender5_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5_0.6.inst.cfg b/resources/variants/creality_ender5_0.6.inst.cfg index 0d9a6b3d3a..f32f4a21bf 100644 --- a/resources/variants/creality_ender5_0.6.inst.cfg +++ b/resources/variants/creality_ender5_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5_0.8.inst.cfg b/resources/variants/creality_ender5_0.8.inst.cfg index 4cedeb8f9b..cf0d11e2e0 100644 --- a/resources/variants/creality_ender5_0.8.inst.cfg +++ b/resources/variants/creality_ender5_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5_1.0.inst.cfg b/resources/variants/creality_ender5_1.0.inst.cfg index 9744cbdf2d..75f4ac5ab6 100644 --- a/resources/variants/creality_ender5_1.0.inst.cfg +++ b/resources/variants/creality_ender5_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5plus_0.2.inst.cfg b/resources/variants/creality_ender5plus_0.2.inst.cfg index 4c7ea4913f..999d31960b 100644 --- a/resources/variants/creality_ender5plus_0.2.inst.cfg +++ b/resources/variants/creality_ender5plus_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5plus_0.3.inst.cfg b/resources/variants/creality_ender5plus_0.3.inst.cfg index c28f790cc1..3c0d52072f 100644 --- a/resources/variants/creality_ender5plus_0.3.inst.cfg +++ b/resources/variants/creality_ender5plus_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5plus_0.4.inst.cfg b/resources/variants/creality_ender5plus_0.4.inst.cfg index 2b60e33641..4f84232d01 100644 --- a/resources/variants/creality_ender5plus_0.4.inst.cfg +++ b/resources/variants/creality_ender5plus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5plus_0.5.inst.cfg b/resources/variants/creality_ender5plus_0.5.inst.cfg index 8af06ec33a..4136638f3b 100644 --- a/resources/variants/creality_ender5plus_0.5.inst.cfg +++ b/resources/variants/creality_ender5plus_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5plus_0.6.inst.cfg b/resources/variants/creality_ender5plus_0.6.inst.cfg index 87e76b9a99..b6a5520de2 100644 --- a/resources/variants/creality_ender5plus_0.6.inst.cfg +++ b/resources/variants/creality_ender5plus_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5plus_0.8.inst.cfg b/resources/variants/creality_ender5plus_0.8.inst.cfg index c792dbc7bc..361b6c495c 100644 --- a/resources/variants/creality_ender5plus_0.8.inst.cfg +++ b/resources/variants/creality_ender5plus_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender5plus_1.0.inst.cfg b/resources/variants/creality_ender5plus_1.0.inst.cfg index 214ae7532c..7ddcbc99c8 100644 --- a/resources/variants/creality_ender5plus_1.0.inst.cfg +++ b/resources/variants/creality_ender5plus_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = creality_ender5plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/creality_ender6_0.2.inst.cfg b/resources/variants/creality_ender6_0.2.inst.cfg new file mode 100644 index 0000000000..ffa4156810 --- /dev/null +++ b/resources/variants/creality_ender6_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = creality_ender6 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/creality_ender6_0.3.inst.cfg b/resources/variants/creality_ender6_0.3.inst.cfg new file mode 100644 index 0000000000..398e975ff9 --- /dev/null +++ b/resources/variants/creality_ender6_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = creality_ender6 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/creality_ender6_0.4.inst.cfg b/resources/variants/creality_ender6_0.4.inst.cfg new file mode 100644 index 0000000000..93e4fb982c --- /dev/null +++ b/resources/variants/creality_ender6_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = creality_ender6 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/creality_ender6_0.5.inst.cfg b/resources/variants/creality_ender6_0.5.inst.cfg new file mode 100644 index 0000000000..017d1f4e6c --- /dev/null +++ b/resources/variants/creality_ender6_0.5.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.5mm Nozzle +version = 4 +definition = creality_ender6 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/creality_ender6_0.6.inst.cfg b/resources/variants/creality_ender6_0.6.inst.cfg new file mode 100644 index 0000000000..795c209d37 --- /dev/null +++ b/resources/variants/creality_ender6_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = creality_ender6 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/creality_ender6_0.8.inst.cfg b/resources/variants/creality_ender6_0.8.inst.cfg new file mode 100644 index 0000000000..1c91f353d8 --- /dev/null +++ b/resources/variants/creality_ender6_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = creality_ender6 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/creality_ender6_1.0.inst.cfg b/resources/variants/creality_ender6_1.0.inst.cfg new file mode 100644 index 0000000000..df3527ff2a --- /dev/null +++ b/resources/variants/creality_ender6_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = creality_ender6 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/creality_sermoond1_0.2.inst.cfg b/resources/variants/creality_sermoond1_0.2.inst.cfg new file mode 100644 index 0000000000..63ca5626b7 --- /dev/null +++ b/resources/variants/creality_sermoond1_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = creality_sermoond1 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/creality_sermoond1_0.3.inst.cfg b/resources/variants/creality_sermoond1_0.3.inst.cfg new file mode 100644 index 0000000000..0948db45c0 --- /dev/null +++ b/resources/variants/creality_sermoond1_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = creality_sermoond1 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/creality_sermoond1_0.4.inst.cfg b/resources/variants/creality_sermoond1_0.4.inst.cfg new file mode 100644 index 0000000000..033e3ce06a --- /dev/null +++ b/resources/variants/creality_sermoond1_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = creality_sermoond1 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/creality_sermoond1_0.5.inst.cfg b/resources/variants/creality_sermoond1_0.5.inst.cfg new file mode 100644 index 0000000000..c542f814cf --- /dev/null +++ b/resources/variants/creality_sermoond1_0.5.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.5mm Nozzle +version = 4 +definition = creality_sermoond1 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/creality_sermoond1_0.6.inst.cfg b/resources/variants/creality_sermoond1_0.6.inst.cfg new file mode 100644 index 0000000000..d1964a8ee3 --- /dev/null +++ b/resources/variants/creality_sermoond1_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = creality_sermoond1 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/creality_sermoond1_0.8.inst.cfg b/resources/variants/creality_sermoond1_0.8.inst.cfg new file mode 100644 index 0000000000..a50d2d7c2f --- /dev/null +++ b/resources/variants/creality_sermoond1_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = creality_sermoond1 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/creality_sermoond1_1.0.inst.cfg b/resources/variants/creality_sermoond1_1.0.inst.cfg new file mode 100644 index 0000000000..0e8a7b5137 --- /dev/null +++ b/resources/variants/creality_sermoond1_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = creality_sermoond1 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/dagoma_pro_430_bowden_steel_0.4.inst.cfg b/resources/variants/dagoma_pro_430_bowden_steel_0.4.inst.cfg new file mode 100644 index 0000000000..72a210ad50 --- /dev/null +++ b/resources/variants/dagoma_pro_430_bowden_steel_0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +name = 0.4 +version = 4 +definition = dagoma_pro_430_bowden + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_head_distance = 5 +machine_nozzle_tip_outer_diameter = 1 diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg index da82eca60e..4989915ef1 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg @@ -5,7 +5,7 @@ definition = deltacomb_dc20 [metadata] author = Deltacomb 3D -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg index 249648a531..a026999f0f 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg @@ -5,7 +5,7 @@ definition = deltacomb_dc20 [metadata] author = Deltacomb 3D -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg index 47c754b614..554e89ac89 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg @@ -5,7 +5,7 @@ definition = deltacomb_dc20 [metadata] author = Deltacomb 3D -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg old mode 100644 new mode 100755 index b8009205a6..6be85523f1 --- a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc20 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg old mode 100644 new mode 100755 index 2da301b7f6..bc0e4a290c --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc20dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg old mode 100644 new mode 100755 index f44ac939bb..5793a34bb9 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc20dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg old mode 100644 new mode 100755 index e4cad8e815..945b30da4a --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc20dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg old mode 100644 new mode 100755 index 81037229ba..520aa6eb0a --- a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc20dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg old mode 100644 new mode 100755 index ff25eeaa04..9f25059f8b --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc20flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg old mode 100644 new mode 100755 index b416888f43..385fda1bbf --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc20flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg old mode 100644 new mode 100755 index e1b878b8e7..a4d7e0ce0f --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc20flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg old mode 100644 new mode 100755 index c5299d1c36..e5218a20cc --- a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg old mode 100644 new mode 100755 index c43205ce7a..c6e7356844 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg old mode 100644 new mode 100755 index d716eaec74..b84f88d92e --- a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg old mode 100644 new mode 100755 index 91cc88dc55..e615659329 --- a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg old mode 100644 new mode 100755 index 870554f43d..c8ac27f1a1 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg old mode 100644 new mode 100755 index 6f0fc475c2..872fd2771b --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg old mode 100644 new mode 100755 index 5063ed66c2..a81144e0f5 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg old mode 100644 new mode 100755 index eea09bfa73..21d3210801 --- a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg old mode 100644 new mode 100755 index cf09be9b0e..e491021443 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg old mode 100644 new mode 100755 index 125d219546..8395b02434 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg old mode 100644 new mode 100755 index 5c8e8afb60..bb5f0e409d --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc21flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg old mode 100644 new mode 100755 index 3966c29b0b..6294afff45 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg old mode 100644 new mode 100755 index a37908e466..d3e86cab6a --- a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg old mode 100644 new mode 100755 index 3156509550..4715e2b3a0 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg old mode 100644 new mode 100755 index 031fbb3cf8..bb605c637a --- a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg old mode 100644 new mode 100755 index f23073148c..c07b2bad30 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg old mode 100644 new mode 100755 index 7766f3572f..7b33bbf49a --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg old mode 100644 new mode 100755 index 605093479d..71c4d59869 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg old mode 100644 new mode 100755 index 4d97e4cd56..d26ce6684d --- a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg old mode 100644 new mode 100755 index 7ddb8c1dd0..aaae9664fc --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg old mode 100644 new mode 100755 index d3ad5a963d..ec9d8ec376 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg old mode 100644 new mode 100755 index 957b5e5006..78d7d505a7 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = deltacomb_dc30flux [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/diy220_0.2.inst.cfg b/resources/variants/diy220_0.2.inst.cfg index 44b41501a6..9702495b40 100644 --- a/resources/variants/diy220_0.2.inst.cfg +++ b/resources/variants/diy220_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/diy220_0.3.inst.cfg b/resources/variants/diy220_0.3.inst.cfg index 5fe14e916d..5bfff0beee 100644 --- a/resources/variants/diy220_0.3.inst.cfg +++ b/resources/variants/diy220_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/diy220_0.4.inst.cfg b/resources/variants/diy220_0.4.inst.cfg index d718900676..d84d058c88 100644 --- a/resources/variants/diy220_0.4.inst.cfg +++ b/resources/variants/diy220_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/diy220_0.5.inst.cfg b/resources/variants/diy220_0.5.inst.cfg index 2aa1617eb9..7e456a61cb 100644 --- a/resources/variants/diy220_0.5.inst.cfg +++ b/resources/variants/diy220_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/diy220_0.6.inst.cfg b/resources/variants/diy220_0.6.inst.cfg index 4addd52900..23187a48f4 100644 --- a/resources/variants/diy220_0.6.inst.cfg +++ b/resources/variants/diy220_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/diy220_0.8.inst.cfg b/resources/variants/diy220_0.8.inst.cfg index 4c30f8cd18..bb170cc321 100644 --- a/resources/variants/diy220_0.8.inst.cfg +++ b/resources/variants/diy220_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = diy220 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/dxu_0.25.inst.cfg b/resources/variants/dxu_0.25.inst.cfg index 70d4956762..8e27eaf62f 100644 --- a/resources/variants/dxu_0.25.inst.cfg +++ b/resources/variants/dxu_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = dxu [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/dxu_0.4.inst.cfg b/resources/variants/dxu_0.4.inst.cfg index 9eca742fe1..b2ce53f220 100644 --- a/resources/variants/dxu_0.4.inst.cfg +++ b/resources/variants/dxu_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = dxu [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/dxu_0.6.inst.cfg b/resources/variants/dxu_0.6.inst.cfg index afc87f4cd2..c95661c24f 100644 --- a/resources/variants/dxu_0.6.inst.cfg +++ b/resources/variants/dxu_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = dxu [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/dxu_0.8.inst.cfg b/resources/variants/dxu_0.8.inst.cfg index 34252967e6..272d7e1e65 100644 --- a/resources/variants/dxu_0.8.inst.cfg +++ b/resources/variants/dxu_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = dxu [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/dxu_dual_0.25.inst.cfg b/resources/variants/dxu_dual_0.25.inst.cfg index f89c52934d..a5e53bb91a 100644 --- a/resources/variants/dxu_dual_0.25.inst.cfg +++ b/resources/variants/dxu_dual_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = dxu_dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/dxu_dual_0.4.inst.cfg b/resources/variants/dxu_dual_0.4.inst.cfg index e5c951e869..a531808f50 100644 --- a/resources/variants/dxu_dual_0.4.inst.cfg +++ b/resources/variants/dxu_dual_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = dxu_dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/dxu_dual_0.6.inst.cfg b/resources/variants/dxu_dual_0.6.inst.cfg index aa06772059..eaf098cc24 100644 --- a/resources/variants/dxu_dual_0.6.inst.cfg +++ b/resources/variants/dxu_dual_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = dxu_dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/dxu_dual_0.8.inst.cfg b/resources/variants/dxu_dual_0.8.inst.cfg index 6b12694573..01d8d4bba0 100644 --- a/resources/variants/dxu_dual_0.8.inst.cfg +++ b/resources/variants/dxu_dual_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = dxu_dual [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/fabtotum_hyb35.inst.cfg b/resources/variants/fabtotum_hyb35.inst.cfg index 634d20fd09..37dfb04d24 100644 --- a/resources/variants/fabtotum_hyb35.inst.cfg +++ b/resources/variants/fabtotum_hyb35.inst.cfg @@ -5,7 +5,7 @@ definition = fabtotum [metadata] author = FABtotum -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/fabtotum_lite04.inst.cfg b/resources/variants/fabtotum_lite04.inst.cfg index e7d584d2cf..a2237688cd 100644 --- a/resources/variants/fabtotum_lite04.inst.cfg +++ b/resources/variants/fabtotum_lite04.inst.cfg @@ -5,7 +5,7 @@ definition = fabtotum [metadata] author = FABtotum -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/fabtotum_lite06.inst.cfg b/resources/variants/fabtotum_lite06.inst.cfg index 1a0146e648..69473c40de 100644 --- a/resources/variants/fabtotum_lite06.inst.cfg +++ b/resources/variants/fabtotum_lite06.inst.cfg @@ -5,7 +5,7 @@ definition = fabtotum [metadata] author = FABtotum -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/fabtotum_pro02.inst.cfg b/resources/variants/fabtotum_pro02.inst.cfg index 28dd514ed3..82c4b08c19 100644 --- a/resources/variants/fabtotum_pro02.inst.cfg +++ b/resources/variants/fabtotum_pro02.inst.cfg @@ -5,7 +5,7 @@ definition = fabtotum [metadata] author = FABtotum -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/fabtotum_pro04.inst.cfg b/resources/variants/fabtotum_pro04.inst.cfg index 189330c14a..1ffc788474 100644 --- a/resources/variants/fabtotum_pro04.inst.cfg +++ b/resources/variants/fabtotum_pro04.inst.cfg @@ -5,7 +5,7 @@ definition = fabtotum [metadata] author = FABtotum -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/fabtotum_pro06.inst.cfg b/resources/variants/fabtotum_pro06.inst.cfg index 88e7e1bc36..f239cee716 100644 --- a/resources/variants/fabtotum_pro06.inst.cfg +++ b/resources/variants/fabtotum_pro06.inst.cfg @@ -5,7 +5,7 @@ definition = fabtotum [metadata] author = FABtotum -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/fabtotum_pro08.inst.cfg b/resources/variants/fabtotum_pro08.inst.cfg index 0e3b9ae55d..7776109cac 100644 --- a/resources/variants/fabtotum_pro08.inst.cfg +++ b/resources/variants/fabtotum_pro08.inst.cfg @@ -5,7 +5,7 @@ definition = fabtotum [metadata] author = FABtotum -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/farm2_ce_printhead_0.2.inst.cfg b/resources/variants/farm2_ce_printhead_0.2.inst.cfg index facddbee17..f735997b0f 100644 --- a/resources/variants/farm2_ce_printhead_0.2.inst.cfg +++ b/resources/variants/farm2_ce_printhead_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = farm2_ce [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/farm2_ce_printhead_0.3.inst.cfg b/resources/variants/farm2_ce_printhead_0.3.inst.cfg index 3a1ba72b42..92d477ee44 100644 --- a/resources/variants/farm2_ce_printhead_0.3.inst.cfg +++ b/resources/variants/farm2_ce_printhead_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = farm2_ce [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/farm2_ce_printhead_0.4.inst.cfg b/resources/variants/farm2_ce_printhead_0.4.inst.cfg index 083603bd53..ba231093fa 100644 --- a/resources/variants/farm2_ce_printhead_0.4.inst.cfg +++ b/resources/variants/farm2_ce_printhead_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = farm2_ce [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/farm2_ce_printhead_0.5.inst.cfg b/resources/variants/farm2_ce_printhead_0.5.inst.cfg index e10d3aa96b..f2e425ca0f 100644 --- a/resources/variants/farm2_ce_printhead_0.5.inst.cfg +++ b/resources/variants/farm2_ce_printhead_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = farm2_ce [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/farm2_printhead_0.2.inst.cfg b/resources/variants/farm2_printhead_0.2.inst.cfg index f91f1bffa3..6e67489ed6 100644 --- a/resources/variants/farm2_printhead_0.2.inst.cfg +++ b/resources/variants/farm2_printhead_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = farm2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/farm2_printhead_0.3.inst.cfg b/resources/variants/farm2_printhead_0.3.inst.cfg index 22985e0202..c456d804fd 100644 --- a/resources/variants/farm2_printhead_0.3.inst.cfg +++ b/resources/variants/farm2_printhead_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = farm2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/farm2_printhead_0.4.inst.cfg b/resources/variants/farm2_printhead_0.4.inst.cfg index 08767a44a0..5faf972fb6 100644 --- a/resources/variants/farm2_printhead_0.4.inst.cfg +++ b/resources/variants/farm2_printhead_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = farm2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/farm2_printhead_0.5.inst.cfg b/resources/variants/farm2_printhead_0.5.inst.cfg index 83daf92e9c..e7b2ef5933 100644 --- a/resources/variants/farm2_printhead_0.5.inst.cfg +++ b/resources/variants/farm2_printhead_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = farm2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/felixpro2_0.25.inst.cfg b/resources/variants/felixpro2_0.25.inst.cfg index ffa35a24ea..afef5dcbbc 100644 --- a/resources/variants/felixpro2_0.25.inst.cfg +++ b/resources/variants/felixpro2_0.25.inst.cfg @@ -6,7 +6,7 @@ definition = felixpro2dual [metadata] author = pnks type = variant -setting_version = 17 +setting_version = 19 hardware_type = nozzle [values] diff --git a/resources/variants/felixpro2_0.35.inst.cfg b/resources/variants/felixpro2_0.35.inst.cfg index 902a8aa699..463444b660 100644 --- a/resources/variants/felixpro2_0.35.inst.cfg +++ b/resources/variants/felixpro2_0.35.inst.cfg @@ -6,7 +6,7 @@ definition = felixpro2dual [metadata] author = pnks type = variant -setting_version = 17 +setting_version = 19 hardware_type = nozzle [values] diff --git a/resources/variants/felixpro2_0.50.inst.cfg b/resources/variants/felixpro2_0.50.inst.cfg index 21f5afacd5..3e4be18f57 100644 --- a/resources/variants/felixpro2_0.50.inst.cfg +++ b/resources/variants/felixpro2_0.50.inst.cfg @@ -6,7 +6,7 @@ definition = felixpro2dual [metadata] author = pnks type = variant -setting_version = 17 +setting_version = 19 hardware_type = nozzle [values] diff --git a/resources/variants/felixpro2_0.70.inst.cfg b/resources/variants/felixpro2_0.70.inst.cfg index 34fdd31350..99fe0dac76 100644 --- a/resources/variants/felixpro2_0.70.inst.cfg +++ b/resources/variants/felixpro2_0.70.inst.cfg @@ -6,7 +6,7 @@ definition = felixpro2dual [metadata] author = pnks type = variant -setting_version = 17 +setting_version = 19 hardware_type = nozzle [values] diff --git a/resources/variants/felixtec4_0.25.inst.cfg b/resources/variants/felixtec4_0.25.inst.cfg index 6096704613..bb30bef1d0 100644 --- a/resources/variants/felixtec4_0.25.inst.cfg +++ b/resources/variants/felixtec4_0.25.inst.cfg @@ -6,7 +6,7 @@ definition = felixtec4dual [metadata] author = kerog777 type = variant -setting_version = 17 +setting_version = 19 hardware_type = nozzle [values] diff --git a/resources/variants/felixtec4_0.35.inst.cfg b/resources/variants/felixtec4_0.35.inst.cfg index 1d1befb4f8..523ce0f08d 100644 --- a/resources/variants/felixtec4_0.35.inst.cfg +++ b/resources/variants/felixtec4_0.35.inst.cfg @@ -6,7 +6,7 @@ definition = felixtec4dual [metadata] author = kerog777 type = variant -setting_version = 17 +setting_version = 19 hardware_type = nozzle [values] diff --git a/resources/variants/felixtec4_0.50.inst.cfg b/resources/variants/felixtec4_0.50.inst.cfg index 1bc5e2d6f7..7d5ba049f8 100644 --- a/resources/variants/felixtec4_0.50.inst.cfg +++ b/resources/variants/felixtec4_0.50.inst.cfg @@ -7,7 +7,7 @@ definition = felixtec4dual author = kerog777 type = variant hardware_type = nozzle -setting_version = 17 +setting_version = 19 [values] machine_nozzle_size = 0.5 diff --git a/resources/variants/felixtec4_0.70.inst.cfg b/resources/variants/felixtec4_0.70.inst.cfg index 6de8e30ccc..e291b69c51 100644 --- a/resources/variants/felixtec4_0.70.inst.cfg +++ b/resources/variants/felixtec4_0.70.inst.cfg @@ -7,7 +7,7 @@ definition = felixtec4dual author = kerog777 type = variant hardware_type = nozzle -setting_version = 17 +setting_version = 19 [values] machine_nozzle_size = 0.70 diff --git a/resources/variants/flashforge_base_0.20.inst.cfg b/resources/variants/flashforge_base_0.20.inst.cfg index a10532e1ac..2157effda3 100644 --- a/resources/variants/flashforge_base_0.20.inst.cfg +++ b/resources/variants/flashforge_base_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_base_0.30.inst.cfg b/resources/variants/flashforge_base_0.30.inst.cfg index 9c75015dcd..5211126b0a 100644 --- a/resources/variants/flashforge_base_0.30.inst.cfg +++ b/resources/variants/flashforge_base_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_base_0.40.inst.cfg b/resources/variants/flashforge_base_0.40.inst.cfg index 7e1b24cc3e..18f5490cf4 100644 --- a/resources/variants/flashforge_base_0.40.inst.cfg +++ b/resources/variants/flashforge_base_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_base_0.50.inst.cfg b/resources/variants/flashforge_base_0.50.inst.cfg index eb76c9b071..752a366a93 100644 --- a/resources/variants/flashforge_base_0.50.inst.cfg +++ b/resources/variants/flashforge_base_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_base_0.60.inst.cfg b/resources/variants/flashforge_base_0.60.inst.cfg index 6f9c995ef2..d12f1d92a5 100644 --- a/resources/variants/flashforge_base_0.60.inst.cfg +++ b/resources/variants/flashforge_base_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_dreamer_nx_0.20.inst.cfg b/resources/variants/flashforge_dreamer_nx_0.20.inst.cfg index 77b8c464ad..aa93725048 100644 --- a/resources/variants/flashforge_dreamer_nx_0.20.inst.cfg +++ b/resources/variants/flashforge_dreamer_nx_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_dreamer_nx [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_dreamer_nx_0.30.inst.cfg b/resources/variants/flashforge_dreamer_nx_0.30.inst.cfg index 9d6e70a258..b4319e7c50 100644 --- a/resources/variants/flashforge_dreamer_nx_0.30.inst.cfg +++ b/resources/variants/flashforge_dreamer_nx_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_dreamer_nx [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_dreamer_nx_0.40.inst.cfg b/resources/variants/flashforge_dreamer_nx_0.40.inst.cfg index cf07236a10..12645ce8f7 100644 --- a/resources/variants/flashforge_dreamer_nx_0.40.inst.cfg +++ b/resources/variants/flashforge_dreamer_nx_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_dreamer_nx [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_dreamer_nx_0.50.inst.cfg b/resources/variants/flashforge_dreamer_nx_0.50.inst.cfg index 301454e826..53cdcec3ab 100644 --- a/resources/variants/flashforge_dreamer_nx_0.50.inst.cfg +++ b/resources/variants/flashforge_dreamer_nx_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_dreamer_nx [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flashforge_dreamer_nx_0.60.inst.cfg b/resources/variants/flashforge_dreamer_nx_0.60.inst.cfg index a8d2cf6ca7..bf41d3b508 100644 --- a/resources/variants/flashforge_dreamer_nx_0.60.inst.cfg +++ b/resources/variants/flashforge_dreamer_nx_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flashforge_dreamer_nx [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_base_0.25.inst.cfg b/resources/variants/flyingbear_base_0.25.inst.cfg index b97f3c9bb6..2778e98ffa 100644 --- a/resources/variants/flyingbear_base_0.25.inst.cfg +++ b/resources/variants/flyingbear_base_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_base_0.30.inst.cfg b/resources/variants/flyingbear_base_0.30.inst.cfg index 8fef3d34fd..e47f27a5a5 100644 --- a/resources/variants/flyingbear_base_0.30.inst.cfg +++ b/resources/variants/flyingbear_base_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_base_0.40.inst.cfg b/resources/variants/flyingbear_base_0.40.inst.cfg index 02b28e9271..ed526a23e2 100644 --- a/resources/variants/flyingbear_base_0.40.inst.cfg +++ b/resources/variants/flyingbear_base_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_base_0.50.inst.cfg b/resources/variants/flyingbear_base_0.50.inst.cfg index ad70b64a3c..feec00829f 100644 --- a/resources/variants/flyingbear_base_0.50.inst.cfg +++ b/resources/variants/flyingbear_base_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_base_0.60.inst.cfg b/resources/variants/flyingbear_base_0.60.inst.cfg index f4a572320f..940dc72bbb 100644 --- a/resources/variants/flyingbear_base_0.60.inst.cfg +++ b/resources/variants/flyingbear_base_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_base_0.80.inst.cfg b/resources/variants/flyingbear_base_0.80.inst.cfg index a24888e9b1..9406342237 100644 --- a/resources/variants/flyingbear_base_0.80.inst.cfg +++ b/resources/variants/flyingbear_base_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_4s_0.25.inst.cfg b/resources/variants/flyingbear_ghost_4s_0.25.inst.cfg index a0ba6ff2d9..3dd88dc319 100644 --- a/resources/variants/flyingbear_ghost_4s_0.25.inst.cfg +++ b/resources/variants/flyingbear_ghost_4s_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_4s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_4s_0.30.inst.cfg b/resources/variants/flyingbear_ghost_4s_0.30.inst.cfg index 9d9e7e3bd5..3457b85aef 100644 --- a/resources/variants/flyingbear_ghost_4s_0.30.inst.cfg +++ b/resources/variants/flyingbear_ghost_4s_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_4s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_4s_0.40.inst.cfg b/resources/variants/flyingbear_ghost_4s_0.40.inst.cfg index a6a2e36e04..2f8d091cd0 100644 --- a/resources/variants/flyingbear_ghost_4s_0.40.inst.cfg +++ b/resources/variants/flyingbear_ghost_4s_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_4s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_4s_0.50.inst.cfg b/resources/variants/flyingbear_ghost_4s_0.50.inst.cfg index 2310884cdb..460298dcf1 100644 --- a/resources/variants/flyingbear_ghost_4s_0.50.inst.cfg +++ b/resources/variants/flyingbear_ghost_4s_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_4s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_4s_0.60.inst.cfg b/resources/variants/flyingbear_ghost_4s_0.60.inst.cfg index eb837be06b..bd0addb713 100644 --- a/resources/variants/flyingbear_ghost_4s_0.60.inst.cfg +++ b/resources/variants/flyingbear_ghost_4s_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_4s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_4s_0.80.inst.cfg b/resources/variants/flyingbear_ghost_4s_0.80.inst.cfg index ddb597bc82..8fe01fa28f 100644 --- a/resources/variants/flyingbear_ghost_4s_0.80.inst.cfg +++ b/resources/variants/flyingbear_ghost_4s_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_4s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_5_0.25.inst.cfg b/resources/variants/flyingbear_ghost_5_0.25.inst.cfg index 3cd7d13ede..3d97e3aa33 100644 --- a/resources/variants/flyingbear_ghost_5_0.25.inst.cfg +++ b/resources/variants/flyingbear_ghost_5_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_5_0.30.inst.cfg b/resources/variants/flyingbear_ghost_5_0.30.inst.cfg index 670b47a3a9..bff59d6d81 100644 --- a/resources/variants/flyingbear_ghost_5_0.30.inst.cfg +++ b/resources/variants/flyingbear_ghost_5_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_5_0.40.inst.cfg b/resources/variants/flyingbear_ghost_5_0.40.inst.cfg index d6ae55ce8f..026b3fe27b 100644 --- a/resources/variants/flyingbear_ghost_5_0.40.inst.cfg +++ b/resources/variants/flyingbear_ghost_5_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_5_0.50.inst.cfg b/resources/variants/flyingbear_ghost_5_0.50.inst.cfg index 11977cfe41..b7598c771f 100644 --- a/resources/variants/flyingbear_ghost_5_0.50.inst.cfg +++ b/resources/variants/flyingbear_ghost_5_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_5_0.60.inst.cfg b/resources/variants/flyingbear_ghost_5_0.60.inst.cfg index 2b38cc45d2..a745a2abe2 100644 --- a/resources/variants/flyingbear_ghost_5_0.60.inst.cfg +++ b/resources/variants/flyingbear_ghost_5_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/flyingbear_ghost_5_0.80.inst.cfg b/resources/variants/flyingbear_ghost_5_0.80.inst.cfg index 4152ee0834..d43894c74b 100644 --- a/resources/variants/flyingbear_ghost_5_0.80.inst.cfg +++ b/resources/variants/flyingbear_ghost_5_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = flyingbear_ghost_5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_025_e3d.inst.cfg b/resources/variants/gmax15plus_025_e3d.inst.cfg index 8fe0a594c8..d39723d60a 100644 --- a/resources/variants/gmax15plus_025_e3d.inst.cfg +++ b/resources/variants/gmax15plus_025_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_04_e3d.inst.cfg b/resources/variants/gmax15plus_04_e3d.inst.cfg index f12e4e5b4f..b1505c2037 100644 --- a/resources/variants/gmax15plus_04_e3d.inst.cfg +++ b/resources/variants/gmax15plus_04_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_05_e3d.inst.cfg b/resources/variants/gmax15plus_05_e3d.inst.cfg index 14a0fce0b0..a7ba906c61 100644 --- a/resources/variants/gmax15plus_05_e3d.inst.cfg +++ b/resources/variants/gmax15plus_05_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_05_jhead.inst.cfg b/resources/variants/gmax15plus_05_jhead.inst.cfg index ee0193f8f8..419e0822e8 100644 --- a/resources/variants/gmax15plus_05_jhead.inst.cfg +++ b/resources/variants/gmax15plus_05_jhead.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_06_e3d.inst.cfg b/resources/variants/gmax15plus_06_e3d.inst.cfg index 4c61b44d7f..df8f8128e6 100644 --- a/resources/variants/gmax15plus_06_e3d.inst.cfg +++ b/resources/variants/gmax15plus_06_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_08_e3d.inst.cfg b/resources/variants/gmax15plus_08_e3d.inst.cfg index 8bb3241e4b..2877499d94 100644 --- a/resources/variants/gmax15plus_08_e3d.inst.cfg +++ b/resources/variants/gmax15plus_08_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_10_jhead.inst.cfg b/resources/variants/gmax15plus_10_jhead.inst.cfg index 30ef83b314..ac9014dd13 100644 --- a/resources/variants/gmax15plus_10_jhead.inst.cfg +++ b/resources/variants/gmax15plus_10_jhead.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_12_e3d.inst.cfg b/resources/variants/gmax15plus_12_e3d.inst.cfg index 14e80a2686..6c0d0086be 100644 --- a/resources/variants/gmax15plus_12_e3d.inst.cfg +++ b/resources/variants/gmax15plus_12_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_dual_025_e3d.inst.cfg b/resources/variants/gmax15plus_dual_025_e3d.inst.cfg index 039b04188f..33e546eebd 100644 --- a/resources/variants/gmax15plus_dual_025_e3d.inst.cfg +++ b/resources/variants/gmax15plus_dual_025_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_dual_04_e3d.inst.cfg b/resources/variants/gmax15plus_dual_04_e3d.inst.cfg index 32983577fc..26a936e393 100644 --- a/resources/variants/gmax15plus_dual_04_e3d.inst.cfg +++ b/resources/variants/gmax15plus_dual_04_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_dual_05_e3d.inst.cfg b/resources/variants/gmax15plus_dual_05_e3d.inst.cfg index 0d2d5faf77..ee57779983 100644 --- a/resources/variants/gmax15plus_dual_05_e3d.inst.cfg +++ b/resources/variants/gmax15plus_dual_05_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_dual_05_jhead.inst.cfg b/resources/variants/gmax15plus_dual_05_jhead.inst.cfg index 41dbed4f34..2da9fa411d 100644 --- a/resources/variants/gmax15plus_dual_05_jhead.inst.cfg +++ b/resources/variants/gmax15plus_dual_05_jhead.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_dual_06_e3d.inst.cfg b/resources/variants/gmax15plus_dual_06_e3d.inst.cfg index d44d3f9afe..139ec37893 100644 --- a/resources/variants/gmax15plus_dual_06_e3d.inst.cfg +++ b/resources/variants/gmax15plus_dual_06_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_dual_08_e3d.inst.cfg b/resources/variants/gmax15plus_dual_08_e3d.inst.cfg index 55e33e7d87..ef0967d9f5 100644 --- a/resources/variants/gmax15plus_dual_08_e3d.inst.cfg +++ b/resources/variants/gmax15plus_dual_08_e3d.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/gmax15plus_dual_10_jhead.inst.cfg b/resources/variants/gmax15plus_dual_10_jhead.inst.cfg index ed51574195..8e2df3bc15 100644 --- a/resources/variants/gmax15plus_dual_10_jhead.inst.cfg +++ b/resources/variants/gmax15plus_dual_10_jhead.inst.cfg @@ -5,7 +5,7 @@ definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo_base_0.4.inst.cfg index e3d0e539ef..4f0bf78e87 100644 --- a/resources/variants/goofoo_base_0.4.inst.cfg +++ b/resources/variants/goofoo_base_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_cube_0.7.inst.cfg b/resources/variants/goofoo_cube_0.7.inst.cfg new file mode 100644 index 0000000000..248870ae0d --- /dev/null +++ b/resources/variants/goofoo_cube_0.7.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.7mm Nozzle +version = 4 +definition = goofoo_cube + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.7 \ No newline at end of file diff --git a/resources/variants/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo_e-one_0.2.inst.cfg index cb7be65501..602fd550a6 100644 --- a/resources/variants/goofoo_e-one_0.2.inst.cfg +++ b/resources/variants/goofoo_e-one_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_e-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo_e-one_0.4.inst.cfg index d0bb8e2dd1..979d3da768 100644 --- a/resources/variants/goofoo_e-one_0.4.inst.cfg +++ b/resources/variants/goofoo_e-one_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_e-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo_e-one_0.6.inst.cfg index 4cb22fb14a..6950f5e5d9 100644 --- a/resources/variants/goofoo_e-one_0.6.inst.cfg +++ b/resources/variants/goofoo_e-one_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_e-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo_e-one_0.8.inst.cfg index 44e4bebb4e..06c69a5b93 100644 --- a/resources/variants/goofoo_e-one_0.8.inst.cfg +++ b/resources/variants/goofoo_e-one_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_e-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo_e-one_1.0.inst.cfg index e8ccee3a60..c212c3dc60 100644 --- a/resources/variants/goofoo_e-one_1.0.inst.cfg +++ b/resources/variants/goofoo_e-one_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_e-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo_gemini_0.2.inst.cfg index c512cea3ef..804a7ce63a 100644 --- a/resources/variants/goofoo_gemini_0.2.inst.cfg +++ b/resources/variants/goofoo_gemini_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_gemini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo_gemini_0.4.inst.cfg index f9cce304a2..59602d0be8 100644 --- a/resources/variants/goofoo_gemini_0.4.inst.cfg +++ b/resources/variants/goofoo_gemini_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_gemini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo_gemini_0.6.inst.cfg index c89168bc9d..6d512c1cf2 100644 --- a/resources/variants/goofoo_gemini_0.6.inst.cfg +++ b/resources/variants/goofoo_gemini_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_gemini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo_gemini_0.8.inst.cfg index 8846dc3966..3063312c56 100644 --- a/resources/variants/goofoo_gemini_0.8.inst.cfg +++ b/resources/variants/goofoo_gemini_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_gemini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo_gemini_1.0.inst.cfg index bc006589d8..7bf4761062 100644 --- a/resources/variants/goofoo_gemini_1.0.inst.cfg +++ b/resources/variants/goofoo_gemini_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_gemini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo_giant_0.2.inst.cfg index 79f11d6a19..e05209e51c 100644 --- a/resources/variants/goofoo_giant_0.2.inst.cfg +++ b/resources/variants/goofoo_giant_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_giant [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo_giant_0.4.inst.cfg index 514de79aef..5b2f45efc9 100644 --- a/resources/variants/goofoo_giant_0.4.inst.cfg +++ b/resources/variants/goofoo_giant_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_giant [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo_giant_0.6.inst.cfg index 9327fef669..7d8c5862a9 100644 --- a/resources/variants/goofoo_giant_0.6.inst.cfg +++ b/resources/variants/goofoo_giant_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_giant [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo_giant_0.8.inst.cfg index ce96cafb24..c0daf9773a 100644 --- a/resources/variants/goofoo_giant_0.8.inst.cfg +++ b/resources/variants/goofoo_giant_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_giant [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo_giant_1.0.inst.cfg index d8bac0ab65..3e34d090e5 100644 --- a/resources/variants/goofoo_giant_1.0.inst.cfg +++ b/resources/variants/goofoo_giant_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_giant [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo_max_0.2.inst.cfg index bdb151090b..74f3b5f9f3 100644 --- a/resources/variants/goofoo_max_0.2.inst.cfg +++ b/resources/variants/goofoo_max_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo_max_0.4.inst.cfg index 3e550e4b79..59ce709abd 100644 --- a/resources/variants/goofoo_max_0.4.inst.cfg +++ b/resources/variants/goofoo_max_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo_max_0.6.inst.cfg index 3d14181253..d5aeaf60cd 100644 --- a/resources/variants/goofoo_max_0.6.inst.cfg +++ b/resources/variants/goofoo_max_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo_max_0.8.inst.cfg index 286a7d16d8..ce98b2151f 100644 --- a/resources/variants/goofoo_max_0.8.inst.cfg +++ b/resources/variants/goofoo_max_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo_max_1.0.inst.cfg index 68aad8b62f..a8d39afcf7 100644 --- a/resources/variants/goofoo_max_1.0.inst.cfg +++ b/resources/variants/goofoo_max_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo_mido_0.2.inst.cfg index 560f63048c..3ea29bddb6 100644 --- a/resources/variants/goofoo_mido_0.2.inst.cfg +++ b/resources/variants/goofoo_mido_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_mido [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo_mido_0.4.inst.cfg index f87c98c1d5..a19b1f840a 100644 --- a/resources/variants/goofoo_mido_0.4.inst.cfg +++ b/resources/variants/goofoo_mido_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_mido [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo_mido_0.6.inst.cfg index 61d5755106..7e845c77a3 100644 --- a/resources/variants/goofoo_mido_0.6.inst.cfg +++ b/resources/variants/goofoo_mido_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_mido [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo_mido_0.8.inst.cfg index 2d48966a05..376f3c5c9e 100644 --- a/resources/variants/goofoo_mido_0.8.inst.cfg +++ b/resources/variants/goofoo_mido_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_mido [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo_mido_1.0.inst.cfg index bfb9c8568b..5ad1655cd6 100644 --- a/resources/variants/goofoo_mido_1.0.inst.cfg +++ b/resources/variants/goofoo_mido_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_mido [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo_miniplus_0.2.inst.cfg index e32d06e234..951b5dcc02 100644 --- a/resources/variants/goofoo_miniplus_0.2.inst.cfg +++ b/resources/variants/goofoo_miniplus_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_miniplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo_miniplus_0.4.inst.cfg index 256006bb7c..b85bb57e3d 100644 --- a/resources/variants/goofoo_miniplus_0.4.inst.cfg +++ b/resources/variants/goofoo_miniplus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_miniplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo_miniplus_0.6.inst.cfg index cc6b70810f..8b3bf12224 100644 --- a/resources/variants/goofoo_miniplus_0.6.inst.cfg +++ b/resources/variants/goofoo_miniplus_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_miniplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo_miniplus_0.8.inst.cfg index d8e752289d..42547f3913 100644 --- a/resources/variants/goofoo_miniplus_0.8.inst.cfg +++ b/resources/variants/goofoo_miniplus_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_miniplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo_miniplus_1.0.inst.cfg index e51c8b36b1..3587dc05ce 100644 --- a/resources/variants/goofoo_miniplus_1.0.inst.cfg +++ b/resources/variants/goofoo_miniplus_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_miniplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo_nova_0.2.inst.cfg index 53815ef7a9..2f2e37047a 100644 --- a/resources/variants/goofoo_nova_0.2.inst.cfg +++ b/resources/variants/goofoo_nova_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_nova [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo_nova_0.4.inst.cfg index 52f45ae3b0..682058aee6 100644 --- a/resources/variants/goofoo_nova_0.4.inst.cfg +++ b/resources/variants/goofoo_nova_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_nova [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo_nova_0.6.inst.cfg index 3817e42ec4..9ef6935046 100644 --- a/resources/variants/goofoo_nova_0.6.inst.cfg +++ b/resources/variants/goofoo_nova_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_nova [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo_nova_0.8.inst.cfg index 9b7cbe456e..475c5e7386 100644 --- a/resources/variants/goofoo_nova_0.8.inst.cfg +++ b/resources/variants/goofoo_nova_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_nova [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo_nova_1.0.inst.cfg index 27cde50c8e..b595bbe94c 100644 --- a/resources/variants/goofoo_nova_1.0.inst.cfg +++ b/resources/variants/goofoo_nova_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_nova [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo_plus_0.2.inst.cfg index cfa5727857..bffbde44fa 100644 --- a/resources/variants/goofoo_plus_0.2.inst.cfg +++ b/resources/variants/goofoo_plus_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo_plus_0.4.inst.cfg index 3dcfd10938..d74eaf9fac 100644 --- a/resources/variants/goofoo_plus_0.4.inst.cfg +++ b/resources/variants/goofoo_plus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo_plus_0.6.inst.cfg index 7b9c243fea..c7191bc658 100644 --- a/resources/variants/goofoo_plus_0.6.inst.cfg +++ b/resources/variants/goofoo_plus_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo_plus_0.8.inst.cfg index 1a71e694dd..7b847896c1 100644 --- a/resources/variants/goofoo_plus_0.8.inst.cfg +++ b/resources/variants/goofoo_plus_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo_plus_1.0.inst.cfg index 7cbcbf93e8..2cf9df66de 100644 --- a/resources/variants/goofoo_plus_1.0.inst.cfg +++ b/resources/variants/goofoo_plus_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo_t-one_0.2.inst.cfg index a966fdc57d..5eb0e327e7 100644 --- a/resources/variants/goofoo_t-one_0.2.inst.cfg +++ b/resources/variants/goofoo_t-one_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_t-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo_t-one_0.4.inst.cfg index 779d75cc43..e5bd5a06fa 100644 --- a/resources/variants/goofoo_t-one_0.4.inst.cfg +++ b/resources/variants/goofoo_t-one_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_t-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo_t-one_0.6.inst.cfg index 5d8e657107..2c57cd5d2e 100644 --- a/resources/variants/goofoo_t-one_0.6.inst.cfg +++ b/resources/variants/goofoo_t-one_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_t-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo_t-one_0.8.inst.cfg index bbbba8ccc4..f28337705c 100644 --- a/resources/variants/goofoo_t-one_0.8.inst.cfg +++ b/resources/variants/goofoo_t-one_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_t-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo_t-one_1.0.inst.cfg index 559704cec0..94cc5a239c 100644 --- a/resources/variants/goofoo_t-one_1.0.inst.cfg +++ b/resources/variants/goofoo_t-one_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_t-one [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo_tiny_0.2.inst.cfg index bf99b7570a..cc362854da 100644 --- a/resources/variants/goofoo_tiny_0.2.inst.cfg +++ b/resources/variants/goofoo_tiny_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tiny [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo_tiny_0.4.inst.cfg index ac662dff03..2cec206f05 100644 --- a/resources/variants/goofoo_tiny_0.4.inst.cfg +++ b/resources/variants/goofoo_tiny_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tiny [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo_tiny_0.6.inst.cfg index 5336ef5524..e9e7a077ce 100644 --- a/resources/variants/goofoo_tiny_0.6.inst.cfg +++ b/resources/variants/goofoo_tiny_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tiny [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo_tiny_0.8.inst.cfg index dbcb3e9820..998ce207e9 100644 --- a/resources/variants/goofoo_tiny_0.8.inst.cfg +++ b/resources/variants/goofoo_tiny_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tiny [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo_tiny_1.0.inst.cfg index 4d367692c9..81ab8513f7 100644 --- a/resources/variants/goofoo_tiny_1.0.inst.cfg +++ b/resources/variants/goofoo_tiny_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tiny [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo_tinyplus_0.2.inst.cfg index 1459b6bb53..76daac213b 100644 --- a/resources/variants/goofoo_tinyplus_0.2.inst.cfg +++ b/resources/variants/goofoo_tinyplus_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tinyplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo_tinyplus_0.4.inst.cfg index 75e32bc896..08069b2937 100644 --- a/resources/variants/goofoo_tinyplus_0.4.inst.cfg +++ b/resources/variants/goofoo_tinyplus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tinyplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo_tinyplus_0.6.inst.cfg index 95c71bdcf8..5c10586b5c 100644 --- a/resources/variants/goofoo_tinyplus_0.6.inst.cfg +++ b/resources/variants/goofoo_tinyplus_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tinyplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo_tinyplus_0.8.inst.cfg index b9a93a9561..99e1c5953c 100644 --- a/resources/variants/goofoo_tinyplus_0.8.inst.cfg +++ b/resources/variants/goofoo_tinyplus_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tinyplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo_tinyplus_1.0.inst.cfg index eab9605a3a..d944630d6c 100644 --- a/resources/variants/goofoo_tinyplus_1.0.inst.cfg +++ b/resources/variants/goofoo_tinyplus_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = goofoo_tinyplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/hms434_0.4tpnozzle.inst.cfg b/resources/variants/hms434_0.4tpnozzle.inst.cfg index 8ebc916682..403e562992 100644 --- a/resources/variants/hms434_0.4tpnozzle.inst.cfg +++ b/resources/variants/hms434_0.4tpnozzle.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = hms434 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/hms434_0.8tpnozzle.inst.cfg b/resources/variants/hms434_0.8tpnozzle.inst.cfg index 81a9b1a71f..8e047d458c 100644 --- a/resources/variants/hms434_0.8tpnozzle.inst.cfg +++ b/resources/variants/hms434_0.8tpnozzle.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = hms434 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/imade3d_jellybox_0.4.inst.cfg b/resources/variants/imade3d_jellybox_0.4.inst.cfg index 685d0e684f..1db190a95b 100644 --- a/resources/variants/imade3d_jellybox_0.4.inst.cfg +++ b/resources/variants/imade3d_jellybox_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = imade3d_jellybox [metadata] author = IMADE3D -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/imade3d_jellybox_2_0.4.inst.cfg b/resources/variants/imade3d_jellybox_2_0.4.inst.cfg index 3c1f74215d..111a9bfb2b 100644 --- a/resources/variants/imade3d_jellybox_2_0.4.inst.cfg +++ b/resources/variants/imade3d_jellybox_2_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = imade3d_jellybox_2 [metadata] author = IMADE3D -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3_0.2.inst.cfg b/resources/variants/kingroon_kp3_0.2.inst.cfg index 8fa9186bff..e9a323377f 100644 --- a/resources/variants/kingroon_kp3_0.2.inst.cfg +++ b/resources/variants/kingroon_kp3_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3_0.3.inst.cfg b/resources/variants/kingroon_kp3_0.3.inst.cfg index b31510e125..b0e944dca3 100644 --- a/resources/variants/kingroon_kp3_0.3.inst.cfg +++ b/resources/variants/kingroon_kp3_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3_0.4.inst.cfg b/resources/variants/kingroon_kp3_0.4.inst.cfg index 47e539ac09..26f2015168 100644 --- a/resources/variants/kingroon_kp3_0.4.inst.cfg +++ b/resources/variants/kingroon_kp3_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3_0.5.inst.cfg b/resources/variants/kingroon_kp3_0.5.inst.cfg index 4cf935f6e1..e2cc077ed2 100644 --- a/resources/variants/kingroon_kp3_0.5.inst.cfg +++ b/resources/variants/kingroon_kp3_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3_0.6.inst.cfg b/resources/variants/kingroon_kp3_0.6.inst.cfg index a1da7fb2c5..36ffc8ee25 100644 --- a/resources/variants/kingroon_kp3_0.6.inst.cfg +++ b/resources/variants/kingroon_kp3_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3_0.8.inst.cfg b/resources/variants/kingroon_kp3_0.8.inst.cfg index 1335367a25..d189ce6f05 100644 --- a/resources/variants/kingroon_kp3_0.8.inst.cfg +++ b/resources/variants/kingroon_kp3_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3_1.0.inst.cfg b/resources/variants/kingroon_kp3_1.0.inst.cfg index 0dba9543c9..966f973249 100644 --- a/resources/variants/kingroon_kp3_1.0.inst.cfg +++ b/resources/variants/kingroon_kp3_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3s_0.2.inst.cfg b/resources/variants/kingroon_kp3s_0.2.inst.cfg index 2ffda2c256..7945fc74cb 100644 --- a/resources/variants/kingroon_kp3s_0.2.inst.cfg +++ b/resources/variants/kingroon_kp3s_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3s_0.3.inst.cfg b/resources/variants/kingroon_kp3s_0.3.inst.cfg index 1f914eb6bf..d19c8b8631 100644 --- a/resources/variants/kingroon_kp3s_0.3.inst.cfg +++ b/resources/variants/kingroon_kp3s_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3s_0.4.inst.cfg b/resources/variants/kingroon_kp3s_0.4.inst.cfg index 479baabb4d..47a0203a5f 100644 --- a/resources/variants/kingroon_kp3s_0.4.inst.cfg +++ b/resources/variants/kingroon_kp3s_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3s_0.5.inst.cfg b/resources/variants/kingroon_kp3s_0.5.inst.cfg index 60100a80fd..9b6853ae72 100644 --- a/resources/variants/kingroon_kp3s_0.5.inst.cfg +++ b/resources/variants/kingroon_kp3s_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3s_0.6.inst.cfg b/resources/variants/kingroon_kp3s_0.6.inst.cfg index 2aed87e544..d23e988d50 100644 --- a/resources/variants/kingroon_kp3s_0.6.inst.cfg +++ b/resources/variants/kingroon_kp3s_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3s_0.8.inst.cfg b/resources/variants/kingroon_kp3s_0.8.inst.cfg index e0bce0a969..965d6b9f02 100644 --- a/resources/variants/kingroon_kp3s_0.8.inst.cfg +++ b/resources/variants/kingroon_kp3s_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kingroon_kp3s_1.0.inst.cfg b/resources/variants/kingroon_kp3s_1.0.inst.cfg index f9db27a49f..f708a97bc2 100644 --- a/resources/variants/kingroon_kp3s_1.0.inst.cfg +++ b/resources/variants/kingroon_kp3s_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = kingroon_kp3s [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_0.2.inst.cfg b/resources/variants/kosher220_0.2.inst.cfg index 1d5ed207d0..5b23ab2b50 100644 --- a/resources/variants/kosher220_0.2.inst.cfg +++ b/resources/variants/kosher220_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_0.3.inst.cfg b/resources/variants/kosher220_0.3.inst.cfg index 48d0d91b0a..acc57b8c6a 100644 --- a/resources/variants/kosher220_0.3.inst.cfg +++ b/resources/variants/kosher220_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_0.4.inst.cfg b/resources/variants/kosher220_0.4.inst.cfg index fe752c461c..48fc614103 100644 --- a/resources/variants/kosher220_0.4.inst.cfg +++ b/resources/variants/kosher220_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_0.5.inst.cfg b/resources/variants/kosher220_0.5.inst.cfg index 05ec490fef..78300ce4d4 100644 --- a/resources/variants/kosher220_0.5.inst.cfg +++ b/resources/variants/kosher220_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_0.6.inst.cfg b/resources/variants/kosher220_0.6.inst.cfg index 07c810e564..8476857104 100644 --- a/resources/variants/kosher220_0.6.inst.cfg +++ b/resources/variants/kosher220_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_0.8.inst.cfg b/resources/variants/kosher220_0.8.inst.cfg index 395a34c06c..d08c00ea9e 100644 --- a/resources/variants/kosher220_0.8.inst.cfg +++ b/resources/variants/kosher220_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_dm_0.2.inst.cfg b/resources/variants/kosher220_dm_0.2.inst.cfg index fbf3c6c068..6eb8fa7f39 100644 --- a/resources/variants/kosher220_dm_0.2.inst.cfg +++ b/resources/variants/kosher220_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_dm_0.3.inst.cfg b/resources/variants/kosher220_dm_0.3.inst.cfg index b7ccfe6afe..589beb9532 100644 --- a/resources/variants/kosher220_dm_0.3.inst.cfg +++ b/resources/variants/kosher220_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_dm_0.4.inst.cfg b/resources/variants/kosher220_dm_0.4.inst.cfg index ba26017c8d..20702f8684 100644 --- a/resources/variants/kosher220_dm_0.4.inst.cfg +++ b/resources/variants/kosher220_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_dm_0.5.inst.cfg b/resources/variants/kosher220_dm_0.5.inst.cfg index d3eb116228..774c1c6835 100644 --- a/resources/variants/kosher220_dm_0.5.inst.cfg +++ b/resources/variants/kosher220_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_dm_0.6.inst.cfg b/resources/variants/kosher220_dm_0.6.inst.cfg index 15ec258ec6..d533907883 100644 --- a/resources/variants/kosher220_dm_0.6.inst.cfg +++ b/resources/variants/kosher220_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_dm_0.8.inst.cfg b/resources/variants/kosher220_dm_0.8.inst.cfg index aa1ffc1a81..3775304d65 100644 --- a/resources/variants/kosher220_dm_0.8.inst.cfg +++ b/resources/variants/kosher220_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_mm_0.2.inst.cfg b/resources/variants/kosher220_mm_0.2.inst.cfg index 6d38bb983d..66087e4a5c 100644 --- a/resources/variants/kosher220_mm_0.2.inst.cfg +++ b/resources/variants/kosher220_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_mirror [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_mm_0.3.inst.cfg b/resources/variants/kosher220_mm_0.3.inst.cfg index e2b68f8c3a..6e0fb8c4c8 100644 --- a/resources/variants/kosher220_mm_0.3.inst.cfg +++ b/resources/variants/kosher220_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_mirror [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_mm_0.4.inst.cfg b/resources/variants/kosher220_mm_0.4.inst.cfg index 337ca8a37e..8d215abd6e 100644 --- a/resources/variants/kosher220_mm_0.4.inst.cfg +++ b/resources/variants/kosher220_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_mirror [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_mm_0.5.inst.cfg b/resources/variants/kosher220_mm_0.5.inst.cfg index 82c2fc0733..9757654b70 100644 --- a/resources/variants/kosher220_mm_0.5.inst.cfg +++ b/resources/variants/kosher220_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_mirror [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_mm_0.6.inst.cfg b/resources/variants/kosher220_mm_0.6.inst.cfg index 25b9050866..63cc553f5c 100644 --- a/resources/variants/kosher220_mm_0.6.inst.cfg +++ b/resources/variants/kosher220_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_mirror [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_mm_0.8.inst.cfg b/resources/variants/kosher220_mm_0.8.inst.cfg index cbb90c66c1..9baf4203ea 100644 --- a/resources/variants/kosher220_mm_0.8.inst.cfg +++ b/resources/variants/kosher220_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_mirror [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher220_pva_0.2.inst.cfg index 213896e6f4..aaf0f0d672 100644 --- a/resources/variants/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher220_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher220_pva_0.3.inst.cfg index b2ae8fe4ec..6e8983f2f3 100644 --- a/resources/variants/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher220_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = kosher_duplication [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher220_pva_0.4.inst.cfg index 4412c274f0..2cfbc31235 100644 --- a/resources/variants/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher220_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher220_pva_0.5.inst.cfg index 95297ec961..d4591cd560 100644 --- a/resources/variants/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher220_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher220_pva_0.6.inst.cfg index 5174be95ab..f7a24999f7 100644 --- a/resources/variants/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher220_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher220_pva_0.8.inst.cfg index aad1058ce8..7c9cfeda9c 100644 --- a/resources/variants/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher220_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = kosher [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/liquid_vo04.inst.cfg b/resources/variants/liquid_vo04.inst.cfg index b1fd741cc7..adfc5852fb 100644 --- a/resources/variants/liquid_vo04.inst.cfg +++ b/resources/variants/liquid_vo04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/liquid_vo06.inst.cfg b/resources/variants/liquid_vo06.inst.cfg index 6413394364..74c0189a03 100644 --- a/resources/variants/liquid_vo06.inst.cfg +++ b/resources/variants/liquid_vo06.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/liquid_vo08.inst.cfg b/resources/variants/liquid_vo08.inst.cfg index 46172aa3e8..7a84aad82c 100644 --- a/resources/variants/liquid_vo08.inst.cfg +++ b/resources/variants/liquid_vo08.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = liquid [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle @@ -47,7 +47,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/longer/longer_base_0.4.inst.cfg b/resources/variants/longer/longer_base_0.4.inst.cfg index 98ed064a29..2f18181cb3 100644 --- a/resources/variants/longer/longer_base_0.4.inst.cfg +++ b/resources/variants/longer/longer_base_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/longer/longer_cube2_0.4.inst.cfg b/resources/variants/longer/longer_cube2_0.4.inst.cfg index 2ffc9bddb9..1283a0d393 100644 --- a/resources/variants/longer/longer_cube2_0.4.inst.cfg +++ b/resources/variants/longer/longer_cube2_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_cube2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/longer/longer_lk1_0.4.inst.cfg b/resources/variants/longer/longer_lk1_0.4.inst.cfg index adb124aeb9..2ed19ed597 100644 --- a/resources/variants/longer/longer_lk1_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_lk1 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg index 1fcc80d9e4..d28b410eb0 100644 --- a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_lk1plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg index 4bf91d46a8..76f50e4b00 100644 --- a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_lk1pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/longer/longer_lk4_0.4.inst.cfg b/resources/variants/longer/longer_lk4_0.4.inst.cfg index 865d75a5ca..2bea740801 100644 --- a/resources/variants/longer/longer_lk4_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_lk4 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg index 51b21d8e92..d6f041a281 100644 --- a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_lk4pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/longer/longer_lk5_0.4.inst.cfg b/resources/variants/longer/longer_lk5_0.4.inst.cfg index fb5abf137e..9a5472e2aa 100644 --- a/resources/variants/longer/longer_lk5_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_lk5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg index b91a77149a..b0f9fa06c2 100644 --- a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = longer_lk5pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_base_0.2.inst.cfg b/resources/variants/mingda_base_0.2.inst.cfg index 36e4d8acd2..3742ccd65c 100644 --- a/resources/variants/mingda_base_0.2.inst.cfg +++ b/resources/variants/mingda_base_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_base_0.3.inst.cfg b/resources/variants/mingda_base_0.3.inst.cfg index 15408e7443..4f53853d97 100644 --- a/resources/variants/mingda_base_0.3.inst.cfg +++ b/resources/variants/mingda_base_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_base_0.4.inst.cfg b/resources/variants/mingda_base_0.4.inst.cfg index 557ff156db..d58fd69c40 100644 --- a/resources/variants/mingda_base_0.4.inst.cfg +++ b/resources/variants/mingda_base_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_base_0.6.inst.cfg b/resources/variants/mingda_base_0.6.inst.cfg index e09e6ff98d..43ec27d022 100644 --- a/resources/variants/mingda_base_0.6.inst.cfg +++ b/resources/variants/mingda_base_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_base_0.8.inst.cfg b/resources/variants/mingda_base_0.8.inst.cfg index bdefe68587..75f63903b3 100644 --- a/resources/variants/mingda_base_0.8.inst.cfg +++ b/resources/variants/mingda_base_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_base_1.0.inst.cfg b/resources/variants/mingda_base_1.0.inst.cfg index 59c42ada30..cf3074516a 100644 --- a/resources/variants/mingda_base_1.0.inst.cfg +++ b/resources/variants/mingda_base_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d2_0.2.inst.cfg b/resources/variants/mingda_d2_0.2.inst.cfg index 5cbe0917bd..503eaf0ff7 100644 --- a/resources/variants/mingda_d2_0.2.inst.cfg +++ b/resources/variants/mingda_d2_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d2_0.3.inst.cfg b/resources/variants/mingda_d2_0.3.inst.cfg index 8a26f8b187..2efaabce64 100644 --- a/resources/variants/mingda_d2_0.3.inst.cfg +++ b/resources/variants/mingda_d2_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d2_0.4.inst.cfg b/resources/variants/mingda_d2_0.4.inst.cfg index 27dd22ee4a..d40704f7ea 100644 --- a/resources/variants/mingda_d2_0.4.inst.cfg +++ b/resources/variants/mingda_d2_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d2_0.5.inst.cfg b/resources/variants/mingda_d2_0.5.inst.cfg index 0cc9173deb..25b3faed5e 100644 --- a/resources/variants/mingda_d2_0.5.inst.cfg +++ b/resources/variants/mingda_d2_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d2_0.6.inst.cfg b/resources/variants/mingda_d2_0.6.inst.cfg index faba5e8bfc..c8ef8362fc 100644 --- a/resources/variants/mingda_d2_0.6.inst.cfg +++ b/resources/variants/mingda_d2_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d2_0.8.inst.cfg b/resources/variants/mingda_d2_0.8.inst.cfg index 912d1ee05a..5e33265ab1 100644 --- a/resources/variants/mingda_d2_0.8.inst.cfg +++ b/resources/variants/mingda_d2_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d2_1.0.inst.cfg b/resources/variants/mingda_d2_1.0.inst.cfg index 866741c530..8c47de1c8f 100644 --- a/resources/variants/mingda_d2_1.0.inst.cfg +++ b/resources/variants/mingda_d2_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d3pro_0.2.inst.cfg b/resources/variants/mingda_d3pro_0.2.inst.cfg index c007fbe54a..bb71aa9473 100644 --- a/resources/variants/mingda_d3pro_0.2.inst.cfg +++ b/resources/variants/mingda_d3pro_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d3pro_0.3.inst.cfg b/resources/variants/mingda_d3pro_0.3.inst.cfg index c22782ef29..8c09769157 100644 --- a/resources/variants/mingda_d3pro_0.3.inst.cfg +++ b/resources/variants/mingda_d3pro_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d3pro_0.4.inst.cfg b/resources/variants/mingda_d3pro_0.4.inst.cfg index e50ee0f059..8c971486fb 100644 --- a/resources/variants/mingda_d3pro_0.4.inst.cfg +++ b/resources/variants/mingda_d3pro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d3pro_0.5.inst.cfg b/resources/variants/mingda_d3pro_0.5.inst.cfg index 31c3f3b0ad..6d83eb5ceb 100644 --- a/resources/variants/mingda_d3pro_0.5.inst.cfg +++ b/resources/variants/mingda_d3pro_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d3pro_0.6.inst.cfg b/resources/variants/mingda_d3pro_0.6.inst.cfg index 6d2447f423..a3d904e41c 100644 --- a/resources/variants/mingda_d3pro_0.6.inst.cfg +++ b/resources/variants/mingda_d3pro_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d3pro_0.8.inst.cfg b/resources/variants/mingda_d3pro_0.8.inst.cfg index ac8477e9a0..75341e3f35 100644 --- a/resources/variants/mingda_d3pro_0.8.inst.cfg +++ b/resources/variants/mingda_d3pro_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d3pro_1.0.inst.cfg b/resources/variants/mingda_d3pro_1.0.inst.cfg index c1420260c0..0f997ee714 100644 --- a/resources/variants/mingda_d3pro_1.0.inst.cfg +++ b/resources/variants/mingda_d3pro_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d3pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d4pro_0.2.inst.cfg b/resources/variants/mingda_d4pro_0.2.inst.cfg index 908ffdfb9b..ea22ef8fcf 100644 --- a/resources/variants/mingda_d4pro_0.2.inst.cfg +++ b/resources/variants/mingda_d4pro_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d4pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d4pro_0.3.inst.cfg b/resources/variants/mingda_d4pro_0.3.inst.cfg index 00b6992481..57e21332ed 100644 --- a/resources/variants/mingda_d4pro_0.3.inst.cfg +++ b/resources/variants/mingda_d4pro_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d4pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d4pro_0.4.inst.cfg b/resources/variants/mingda_d4pro_0.4.inst.cfg index dbc6beacf4..eebe710fca 100644 --- a/resources/variants/mingda_d4pro_0.4.inst.cfg +++ b/resources/variants/mingda_d4pro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d4pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d4pro_0.5.inst.cfg b/resources/variants/mingda_d4pro_0.5.inst.cfg index b175a8f12f..2c241dcf17 100644 --- a/resources/variants/mingda_d4pro_0.5.inst.cfg +++ b/resources/variants/mingda_d4pro_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d4pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d4pro_0.6.inst.cfg b/resources/variants/mingda_d4pro_0.6.inst.cfg index 3c017bbf6a..44acb3410d 100644 --- a/resources/variants/mingda_d4pro_0.6.inst.cfg +++ b/resources/variants/mingda_d4pro_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d4pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d4pro_0.8.inst.cfg b/resources/variants/mingda_d4pro_0.8.inst.cfg index f6000f72c0..ee5f265397 100644 --- a/resources/variants/mingda_d4pro_0.8.inst.cfg +++ b/resources/variants/mingda_d4pro_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d4pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_d4pro_1.0.inst.cfg b/resources/variants/mingda_d4pro_1.0.inst.cfg index bc2c329532..ab9caba44c 100644 --- a/resources/variants/mingda_d4pro_1.0.inst.cfg +++ b/resources/variants/mingda_d4pro_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_d4pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_magician_max_0.2.inst.cfg b/resources/variants/mingda_magician_max_0.2.inst.cfg new file mode 100644 index 0000000000..08a18a7c7f --- /dev/null +++ b/resources/variants/mingda_magician_max_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = mingda_magician_max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/mingda_magician_max_0.3.inst.cfg b/resources/variants/mingda_magician_max_0.3.inst.cfg new file mode 100644 index 0000000000..594e6395eb --- /dev/null +++ b/resources/variants/mingda_magician_max_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = mingda_magician_max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/mingda_magician_max_0.4.inst.cfg b/resources/variants/mingda_magician_max_0.4.inst.cfg new file mode 100644 index 0000000000..e09859e82c --- /dev/null +++ b/resources/variants/mingda_magician_max_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = mingda_magician_max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/mingda_magician_max_0.5.inst.cfg b/resources/variants/mingda_magician_max_0.5.inst.cfg new file mode 100644 index 0000000000..7d3aa63dd0 --- /dev/null +++ b/resources/variants/mingda_magician_max_0.5.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.5mm Nozzle +version = 4 +definition = mingda_magician_max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/mingda_magician_max_0.6.inst.cfg b/resources/variants/mingda_magician_max_0.6.inst.cfg new file mode 100644 index 0000000000..1ffacf08b3 --- /dev/null +++ b/resources/variants/mingda_magician_max_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = mingda_magician_max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/mingda_magician_max_0.8.inst.cfg b/resources/variants/mingda_magician_max_0.8.inst.cfg new file mode 100644 index 0000000000..3e44d4e82b --- /dev/null +++ b/resources/variants/mingda_magician_max_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = mingda_magician_max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/mingda_magician_max_1.0.inst.cfg b/resources/variants/mingda_magician_max_1.0.inst.cfg new file mode 100644 index 0000000000..349e93369d --- /dev/null +++ b/resources/variants/mingda_magician_max_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = mingda_magician_max + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/mingda_magician_pro_0.2.inst.cfg b/resources/variants/mingda_magician_pro_0.2.inst.cfg new file mode 100644 index 0000000000..ab0621308a --- /dev/null +++ b/resources/variants/mingda_magician_pro_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = mingda_magician_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/mingda_magician_pro_0.3.inst.cfg b/resources/variants/mingda_magician_pro_0.3.inst.cfg new file mode 100644 index 0000000000..b174d05c7a --- /dev/null +++ b/resources/variants/mingda_magician_pro_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = mingda_magician_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/mingda_magician_pro_0.4.inst.cfg b/resources/variants/mingda_magician_pro_0.4.inst.cfg new file mode 100644 index 0000000000..f66b5cc4cd --- /dev/null +++ b/resources/variants/mingda_magician_pro_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = mingda_magician_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/mingda_magician_pro_0.5.inst.cfg b/resources/variants/mingda_magician_pro_0.5.inst.cfg new file mode 100644 index 0000000000..2e9fda0dd1 --- /dev/null +++ b/resources/variants/mingda_magician_pro_0.5.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.5mm Nozzle +version = 4 +definition = mingda_magician_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/mingda_magician_pro_0.6.inst.cfg b/resources/variants/mingda_magician_pro_0.6.inst.cfg new file mode 100644 index 0000000000..ef17bf0350 --- /dev/null +++ b/resources/variants/mingda_magician_pro_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = mingda_magician_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/mingda_magician_pro_0.8.inst.cfg b/resources/variants/mingda_magician_pro_0.8.inst.cfg new file mode 100644 index 0000000000..7d489b1e7b --- /dev/null +++ b/resources/variants/mingda_magician_pro_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = mingda_magician_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/mingda_magician_pro_1.0.inst.cfg b/resources/variants/mingda_magician_pro_1.0.inst.cfg new file mode 100644 index 0000000000..c57bab368e --- /dev/null +++ b/resources/variants/mingda_magician_pro_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = mingda_magician_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/mingda_magician_x_0.2.inst.cfg b/resources/variants/mingda_magician_x_0.2.inst.cfg new file mode 100644 index 0000000000..133b164ec6 --- /dev/null +++ b/resources/variants/mingda_magician_x_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = mingda_magician_x + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/mingda_magician_x_0.3.inst.cfg b/resources/variants/mingda_magician_x_0.3.inst.cfg new file mode 100644 index 0000000000..c161d04995 --- /dev/null +++ b/resources/variants/mingda_magician_x_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = mingda_magician_x + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/mingda_magician_x_0.4.inst.cfg b/resources/variants/mingda_magician_x_0.4.inst.cfg new file mode 100644 index 0000000000..88a8b5af25 --- /dev/null +++ b/resources/variants/mingda_magician_x_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = mingda_magician_x + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/mingda_magician_x_0.5.inst.cfg b/resources/variants/mingda_magician_x_0.5.inst.cfg new file mode 100644 index 0000000000..0601788476 --- /dev/null +++ b/resources/variants/mingda_magician_x_0.5.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.5mm Nozzle +version = 4 +definition = mingda_magician_x + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/mingda_magician_x_0.6.inst.cfg b/resources/variants/mingda_magician_x_0.6.inst.cfg new file mode 100644 index 0000000000..bfb6fbccb5 --- /dev/null +++ b/resources/variants/mingda_magician_x_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = mingda_magician_x + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/mingda_magician_x_0.8.inst.cfg b/resources/variants/mingda_magician_x_0.8.inst.cfg new file mode 100644 index 0000000000..b502b4b617 --- /dev/null +++ b/resources/variants/mingda_magician_x_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = mingda_magician_x + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/mingda_magician_x_1.0.inst.cfg b/resources/variants/mingda_magician_x_1.0.inst.cfg new file mode 100644 index 0000000000..4b119508a1 --- /dev/null +++ b/resources/variants/mingda_magician_x_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = mingda_magician_x + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/mingda_rock3_0.2.inst.cfg b/resources/variants/mingda_rock3_0.2.inst.cfg index 14647c0ba5..3aaa30743b 100644 --- a/resources/variants/mingda_rock3_0.2.inst.cfg +++ b/resources/variants/mingda_rock3_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_rock3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_rock3_0.3.inst.cfg b/resources/variants/mingda_rock3_0.3.inst.cfg index bb4b928d78..1bb6e3d9d0 100644 --- a/resources/variants/mingda_rock3_0.3.inst.cfg +++ b/resources/variants/mingda_rock3_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_rock3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_rock3_0.4.inst.cfg b/resources/variants/mingda_rock3_0.4.inst.cfg index 1972f8da93..b0a91f7cf1 100644 --- a/resources/variants/mingda_rock3_0.4.inst.cfg +++ b/resources/variants/mingda_rock3_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_rock3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_rock3_0.5.inst.cfg b/resources/variants/mingda_rock3_0.5.inst.cfg index 843f80bc4a..25e1dcf9e3 100644 --- a/resources/variants/mingda_rock3_0.5.inst.cfg +++ b/resources/variants/mingda_rock3_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_rock3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_rock3_0.6.inst.cfg b/resources/variants/mingda_rock3_0.6.inst.cfg index 647691d2c4..39c952763e 100644 --- a/resources/variants/mingda_rock3_0.6.inst.cfg +++ b/resources/variants/mingda_rock3_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_rock3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_rock3_0.8.inst.cfg b/resources/variants/mingda_rock3_0.8.inst.cfg index cb21d8b907..f3b6fcfcba 100644 --- a/resources/variants/mingda_rock3_0.8.inst.cfg +++ b/resources/variants/mingda_rock3_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_rock3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/mingda_rock3_1.0.inst.cfg b/resources/variants/mingda_rock3_1.0.inst.cfg index 1f6213b528..7594cfe0ca 100644 --- a/resources/variants/mingda_rock3_1.0.inst.cfg +++ b/resources/variants/mingda_rock3_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = mingda_rock3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/nwa3d_a31_04.inst.cfg b/resources/variants/nwa3d_a31_04.inst.cfg index 49bf32b998..63c8a9df3e 100644 --- a/resources/variants/nwa3d_a31_04.inst.cfg +++ b/resources/variants/nwa3d_a31_04.inst.cfg @@ -5,7 +5,7 @@ definition = nwa3d_a31 [metadata] author = DragonJe -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/nwa3d_a31_06.inst.cfg b/resources/variants/nwa3d_a31_06.inst.cfg index 4e75a9795d..c613150690 100644 --- a/resources/variants/nwa3d_a31_06.inst.cfg +++ b/resources/variants/nwa3d_a31_06.inst.cfg @@ -5,7 +5,7 @@ definition = nwa3d_a31 [metadata] author = DragonJe -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce_basic3_0.2.inst.cfg index 56179dde96..4ea75089e6 100644 --- a/resources/variants/renkforce_basic3_0.2.inst.cfg +++ b/resources/variants/renkforce_basic3_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_basic3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce_basic3_0.4.inst.cfg index 3d2f509215..ba7c163bde 100644 --- a/resources/variants/renkforce_basic3_0.4.inst.cfg +++ b/resources/variants/renkforce_basic3_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_basic3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce_basic3_0.6.inst.cfg index 6f5866df2f..1ab27543f0 100644 --- a/resources/variants/renkforce_basic3_0.6.inst.cfg +++ b/resources/variants/renkforce_basic3_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_basic3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce_basic3_0.8.inst.cfg index db1bdce2dd..3bed7e5d58 100644 --- a/resources/variants/renkforce_basic3_0.8.inst.cfg +++ b/resources/variants/renkforce_basic3_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_basic3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce_basic3_1.0.inst.cfg index 3780573db0..a968478943 100644 --- a/resources/variants/renkforce_basic3_1.0.inst.cfg +++ b/resources/variants/renkforce_basic3_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_basic3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce_pro3_0.2.inst.cfg index 40dc654978..26977e0f12 100644 --- a/resources/variants/renkforce_pro3_0.2.inst.cfg +++ b/resources/variants/renkforce_pro3_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce_pro3_0.4.inst.cfg index d92d8b58fc..b5cc188f18 100644 --- a/resources/variants/renkforce_pro3_0.4.inst.cfg +++ b/resources/variants/renkforce_pro3_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce_pro3_0.6.inst.cfg index a32f42617f..46cca56594 100644 --- a/resources/variants/renkforce_pro3_0.6.inst.cfg +++ b/resources/variants/renkforce_pro3_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce_pro3_0.8.inst.cfg index d19df4598b..45d7c4eaa2 100644 --- a/resources/variants/renkforce_pro3_0.8.inst.cfg +++ b/resources/variants/renkforce_pro3_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce_pro3_1.0.inst.cfg index aa5dab10ea..dba34e48a5 100644 --- a/resources/variants/renkforce_pro3_1.0.inst.cfg +++ b/resources/variants/renkforce_pro3_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce_pro6_0.2.inst.cfg index 1e7e4763f4..0a16051854 100644 --- a/resources/variants/renkforce_pro6_0.2.inst.cfg +++ b/resources/variants/renkforce_pro6_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro6 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce_pro6_0.4.inst.cfg index e4ddcdde3d..5860e33357 100644 --- a/resources/variants/renkforce_pro6_0.4.inst.cfg +++ b/resources/variants/renkforce_pro6_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro6 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce_pro6_0.6.inst.cfg index 20acd99cf4..284a54585b 100644 --- a/resources/variants/renkforce_pro6_0.6.inst.cfg +++ b/resources/variants/renkforce_pro6_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro6 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce_pro6_0.8.inst.cfg index a9cebf4cc7..fbf9885965 100644 --- a/resources/variants/renkforce_pro6_0.8.inst.cfg +++ b/resources/variants/renkforce_pro6_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro6 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce_pro6_1.0.inst.cfg index cb869fef66..5ff7de57e5 100644 --- a/resources/variants/renkforce_pro6_1.0.inst.cfg +++ b/resources/variants/renkforce_pro6_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = renkforce_pro6 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d_high_temp_04.inst.cfg index bb51ab03cc..161b3abefd 100644 --- a/resources/variants/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d_high_temp_04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d_standard_04.inst.cfg index 136af87481..ee858f1809 100644 --- a/resources/variants/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d_standard_04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d_standard_06.inst.cfg index 4f9b2030ae..14594a3bf8 100644 --- a/resources/variants/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d_standard_06.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d_standard_08.inst.cfg index 838227ba0d..2a639e2cce 100644 --- a/resources/variants/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d_standard_08.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d_standard_10.inst.cfg index 9bb87eb6cf..8ca5328961 100644 --- a/resources/variants/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d_standard_10.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d_standard_12.inst.cfg index 30b72df660..0456e7bbf0 100644 --- a/resources/variants/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d_standard_12.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = strateo3d [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg index 17708f0b31..3dcfa760ae 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg +++ b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg index 769bd165dd..9742ae9f54 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg +++ b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg index e70ecce4c9..dffe4d6e49 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg +++ b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg index 39584ac416..19687a728a 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg +++ b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg index d6858025db..2cb8f951d3 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg +++ b/resources/variants/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg b/resources/variants/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg index 326177b030..96fd008615 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg +++ b/resources/variants/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg b/resources/variants/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg index 752bfcc5bc..e5ca4464f2 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg +++ b/resources/variants/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_0.2.inst.cfg b/resources/variants/tizyx_evy_0.2.inst.cfg index a3dd58d586..38ade9bd27 100644 --- a/resources/variants/tizyx_evy_0.2.inst.cfg +++ b/resources/variants/tizyx_evy_0.2.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_0.3.inst.cfg b/resources/variants/tizyx_evy_0.3.inst.cfg index 06fe49c80c..72f4e739fd 100644 --- a/resources/variants/tizyx_evy_0.3.inst.cfg +++ b/resources/variants/tizyx_evy_0.3.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_0.4.inst.cfg b/resources/variants/tizyx_evy_0.4.inst.cfg index 7dfa77cad2..b12149ef36 100644 --- a/resources/variants/tizyx_evy_0.4.inst.cfg +++ b/resources/variants/tizyx_evy_0.4.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_0.5.inst.cfg b/resources/variants/tizyx_evy_0.5.inst.cfg index 68820d1218..cc8763df73 100644 --- a/resources/variants/tizyx_evy_0.5.inst.cfg +++ b/resources/variants/tizyx_evy_0.5.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_0.6.inst.cfg b/resources/variants/tizyx_evy_0.6.inst.cfg index 7ba71e430c..ae45d571c0 100644 --- a/resources/variants/tizyx_evy_0.6.inst.cfg +++ b/resources/variants/tizyx_evy_0.6.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_0.8.inst.cfg b/resources/variants/tizyx_evy_0.8.inst.cfg index 987cfaef5d..2c5a70e7a4 100644 --- a/resources/variants/tizyx_evy_0.8.inst.cfg +++ b/resources/variants/tizyx_evy_0.8.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_1.0.inst.cfg b/resources/variants/tizyx_evy_1.0.inst.cfg index 08a1e8d10c..68b5da8316 100644 --- a/resources/variants/tizyx_evy_1.0.inst.cfg +++ b/resources/variants/tizyx_evy_1.0.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_dual_classic.inst.cfg b/resources/variants/tizyx_evy_dual_classic.inst.cfg index cc87395b7e..33fbf2151b 100644 --- a/resources/variants/tizyx_evy_dual_classic.inst.cfg +++ b/resources/variants/tizyx_evy_dual_classic.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy_dual [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_evy_dual_direct_drive.inst.cfg b/resources/variants/tizyx_evy_dual_direct_drive.inst.cfg index ecb2e3b8d0..3f9f564607 100644 --- a/resources/variants/tizyx_evy_dual_direct_drive.inst.cfg +++ b/resources/variants/tizyx_evy_dual_direct_drive.inst.cfg @@ -5,7 +5,7 @@ definition = tizyx_evy_dual [metadata] author = TiZYX -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_k25_0.2.inst.cfg b/resources/variants/tizyx_k25_0.2.inst.cfg index 7d1bec0e57..6564d4b24d 100644 --- a/resources/variants/tizyx_k25_0.2.inst.cfg +++ b/resources/variants/tizyx_k25_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = tizyx_k25 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_k25_0.3.inst.cfg b/resources/variants/tizyx_k25_0.3.inst.cfg index 8dd495598b..ea5fc0b009 100644 --- a/resources/variants/tizyx_k25_0.3.inst.cfg +++ b/resources/variants/tizyx_k25_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = tizyx_k25 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_k25_0.4.inst.cfg b/resources/variants/tizyx_k25_0.4.inst.cfg index 58d34c67f8..63a4b7f2e3 100644 --- a/resources/variants/tizyx_k25_0.4.inst.cfg +++ b/resources/variants/tizyx_k25_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = tizyx_k25 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_k25_0.5.inst.cfg b/resources/variants/tizyx_k25_0.5.inst.cfg index 3e8b792a4f..93715cdb62 100644 --- a/resources/variants/tizyx_k25_0.5.inst.cfg +++ b/resources/variants/tizyx_k25_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = tizyx_k25 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_k25_0.6.inst.cfg b/resources/variants/tizyx_k25_0.6.inst.cfg index 740f44d8ee..05ec6d491a 100644 --- a/resources/variants/tizyx_k25_0.6.inst.cfg +++ b/resources/variants/tizyx_k25_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = tizyx_k25 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_k25_0.8.inst.cfg b/resources/variants/tizyx_k25_0.8.inst.cfg index 113ce6990e..a02476bff0 100644 --- a/resources/variants/tizyx_k25_0.8.inst.cfg +++ b/resources/variants/tizyx_k25_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = tizyx_k25 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tizyx_k25_1.0.inst.cfg b/resources/variants/tizyx_k25_1.0.inst.cfg index 0354fadf72..03e43516d2 100644 --- a/resources/variants/tizyx_k25_1.0.inst.cfg +++ b/resources/variants/tizyx_k25_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = tizyx_k25 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/tronxy_d01_0.2.inst.cfg b/resources/variants/tronxy_d01_0.2.inst.cfg index df5944707b..d1b69df89b 100644 --- a/resources/variants/tronxy_d01_0.2.inst.cfg +++ b/resources/variants/tronxy_d01_0.2.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_d01 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_d01_0.3.inst.cfg b/resources/variants/tronxy_d01_0.3.inst.cfg index 9b950062c8..1a57e5d0d7 100644 --- a/resources/variants/tronxy_d01_0.3.inst.cfg +++ b/resources/variants/tronxy_d01_0.3.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_d01 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_d01_0.4.inst.cfg b/resources/variants/tronxy_d01_0.4.inst.cfg index 958e8e114b..9c7b4a1398 100644 --- a/resources/variants/tronxy_d01_0.4.inst.cfg +++ b/resources/variants/tronxy_d01_0.4.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_d01 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_d01_0.5.inst.cfg b/resources/variants/tronxy_d01_0.5.inst.cfg index fa6b5989e8..30ecfddb89 100644 --- a/resources/variants/tronxy_d01_0.5.inst.cfg +++ b/resources/variants/tronxy_d01_0.5.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_d01 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_d01_0.6.inst.cfg b/resources/variants/tronxy_d01_0.6.inst.cfg index 740b179ca8..5cec27219d 100644 --- a/resources/variants/tronxy_d01_0.6.inst.cfg +++ b/resources/variants/tronxy_d01_0.6.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_d01 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_d01_0.8.inst.cfg b/resources/variants/tronxy_d01_0.8.inst.cfg index 7d8609f662..1b2b6699af 100644 --- a/resources/variants/tronxy_d01_0.8.inst.cfg +++ b/resources/variants/tronxy_d01_0.8.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_d01 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_0.2.inst.cfg b/resources/variants/tronxy_x5sa_0.2.inst.cfg index e917955690..dd3de2a6ae 100644 --- a/resources/variants/tronxy_x5sa_0.2.inst.cfg +++ b/resources/variants/tronxy_x5sa_0.2.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_0.3.inst.cfg b/resources/variants/tronxy_x5sa_0.3.inst.cfg index ef951f3bd3..e4fe63257c 100644 --- a/resources/variants/tronxy_x5sa_0.3.inst.cfg +++ b/resources/variants/tronxy_x5sa_0.3.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_0.4.inst.cfg b/resources/variants/tronxy_x5sa_0.4.inst.cfg index dad0f32965..b133fe21fc 100644 --- a/resources/variants/tronxy_x5sa_0.4.inst.cfg +++ b/resources/variants/tronxy_x5sa_0.4.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_0.5.inst.cfg b/resources/variants/tronxy_x5sa_0.5.inst.cfg index 71daa61430..e4895a934e 100644 --- a/resources/variants/tronxy_x5sa_0.5.inst.cfg +++ b/resources/variants/tronxy_x5sa_0.5.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_0.6.inst.cfg b/resources/variants/tronxy_x5sa_0.6.inst.cfg index 349cd85c22..0b98a970f8 100644 --- a/resources/variants/tronxy_x5sa_0.6.inst.cfg +++ b/resources/variants/tronxy_x5sa_0.6.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_0.8.inst.cfg b/resources/variants/tronxy_x5sa_0.8.inst.cfg index 8aa61e1067..3a020e8f19 100644 --- a/resources/variants/tronxy_x5sa_0.8.inst.cfg +++ b/resources/variants/tronxy_x5sa_0.8.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_400_0.2.inst.cfg b/resources/variants/tronxy_x5sa_400_0.2.inst.cfg index 60ac6da3d9..6359923337 100644 --- a/resources/variants/tronxy_x5sa_400_0.2.inst.cfg +++ b/resources/variants/tronxy_x5sa_400_0.2.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_400 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_400_0.3.inst.cfg b/resources/variants/tronxy_x5sa_400_0.3.inst.cfg index f9934a142e..278b13565d 100644 --- a/resources/variants/tronxy_x5sa_400_0.3.inst.cfg +++ b/resources/variants/tronxy_x5sa_400_0.3.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_400 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_400_0.4.inst.cfg b/resources/variants/tronxy_x5sa_400_0.4.inst.cfg index c047a9d13a..d4276e87cc 100644 --- a/resources/variants/tronxy_x5sa_400_0.4.inst.cfg +++ b/resources/variants/tronxy_x5sa_400_0.4.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_400 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_400_0.5.inst.cfg b/resources/variants/tronxy_x5sa_400_0.5.inst.cfg index 4684590e9a..a9b69fc9e9 100644 --- a/resources/variants/tronxy_x5sa_400_0.5.inst.cfg +++ b/resources/variants/tronxy_x5sa_400_0.5.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_400 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_400_0.6.inst.cfg b/resources/variants/tronxy_x5sa_400_0.6.inst.cfg index d808230198..86fb1433a8 100644 --- a/resources/variants/tronxy_x5sa_400_0.6.inst.cfg +++ b/resources/variants/tronxy_x5sa_400_0.6.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_400 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_400_0.8.inst.cfg b/resources/variants/tronxy_x5sa_400_0.8.inst.cfg index 4c9df5e640..de8ebae08e 100644 --- a/resources/variants/tronxy_x5sa_400_0.8.inst.cfg +++ b/resources/variants/tronxy_x5sa_400_0.8.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_400 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_500_0.2.inst.cfg b/resources/variants/tronxy_x5sa_500_0.2.inst.cfg index 5b4d01a11d..284667199e 100644 --- a/resources/variants/tronxy_x5sa_500_0.2.inst.cfg +++ b/resources/variants/tronxy_x5sa_500_0.2.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_500 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_500_0.3.inst.cfg b/resources/variants/tronxy_x5sa_500_0.3.inst.cfg index d12a8803d9..4ba6315d0c 100644 --- a/resources/variants/tronxy_x5sa_500_0.3.inst.cfg +++ b/resources/variants/tronxy_x5sa_500_0.3.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_500 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_500_0.4.inst.cfg b/resources/variants/tronxy_x5sa_500_0.4.inst.cfg index 25232710e6..3d13c29e0e 100644 --- a/resources/variants/tronxy_x5sa_500_0.4.inst.cfg +++ b/resources/variants/tronxy_x5sa_500_0.4.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_500 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_500_0.5.inst.cfg b/resources/variants/tronxy_x5sa_500_0.5.inst.cfg index 9bda143666..6243219b32 100644 --- a/resources/variants/tronxy_x5sa_500_0.5.inst.cfg +++ b/resources/variants/tronxy_x5sa_500_0.5.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_500 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_500_0.6.inst.cfg b/resources/variants/tronxy_x5sa_500_0.6.inst.cfg index 29c3fe647a..3d6482f24a 100644 --- a/resources/variants/tronxy_x5sa_500_0.6.inst.cfg +++ b/resources/variants/tronxy_x5sa_500_0.6.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_500 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x5sa_500_0.8.inst.cfg b/resources/variants/tronxy_x5sa_500_0.8.inst.cfg index a5bc63c268..3aacec33a1 100644 --- a/resources/variants/tronxy_x5sa_500_0.8.inst.cfg +++ b/resources/variants/tronxy_x5sa_500_0.8.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x5sa_500 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x_0.2.inst.cfg b/resources/variants/tronxy_x_0.2.inst.cfg index 93ebaaac6c..39b6254f93 100644 --- a/resources/variants/tronxy_x_0.2.inst.cfg +++ b/resources/variants/tronxy_x_0.2.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x_0.3.inst.cfg b/resources/variants/tronxy_x_0.3.inst.cfg index 9eecf6bf60..7a07efea5a 100644 --- a/resources/variants/tronxy_x_0.3.inst.cfg +++ b/resources/variants/tronxy_x_0.3.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x_0.4.inst.cfg b/resources/variants/tronxy_x_0.4.inst.cfg index 5adf5b23c3..4f86994ca9 100644 --- a/resources/variants/tronxy_x_0.4.inst.cfg +++ b/resources/variants/tronxy_x_0.4.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x_0.5.inst.cfg b/resources/variants/tronxy_x_0.5.inst.cfg index 600e998589..fcfcf044c0 100644 --- a/resources/variants/tronxy_x_0.5.inst.cfg +++ b/resources/variants/tronxy_x_0.5.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x_0.6.inst.cfg b/resources/variants/tronxy_x_0.6.inst.cfg index 22e127108f..82b93615fb 100644 --- a/resources/variants/tronxy_x_0.6.inst.cfg +++ b/resources/variants/tronxy_x_0.6.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_x_0.8.inst.cfg b/resources/variants/tronxy_x_0.8.inst.cfg index cf9e80f3f0..f307a0a0e8 100644 --- a/resources/variants/tronxy_x_0.8.inst.cfg +++ b/resources/variants/tronxy_x_0.8.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_x [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2_0.2.inst.cfg b/resources/variants/tronxy_xy2_0.2.inst.cfg index 571fe9d53f..31d586e0e3 100644 --- a/resources/variants/tronxy_xy2_0.2.inst.cfg +++ b/resources/variants/tronxy_xy2_0.2.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2_0.3.inst.cfg b/resources/variants/tronxy_xy2_0.3.inst.cfg index 468b0ae69c..067972848b 100644 --- a/resources/variants/tronxy_xy2_0.3.inst.cfg +++ b/resources/variants/tronxy_xy2_0.3.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2_0.4.inst.cfg b/resources/variants/tronxy_xy2_0.4.inst.cfg index b57bc03d4c..1205055e2c 100644 --- a/resources/variants/tronxy_xy2_0.4.inst.cfg +++ b/resources/variants/tronxy_xy2_0.4.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2_0.5.inst.cfg b/resources/variants/tronxy_xy2_0.5.inst.cfg index 021f724b39..f8ca7b68ff 100644 --- a/resources/variants/tronxy_xy2_0.5.inst.cfg +++ b/resources/variants/tronxy_xy2_0.5.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2_0.6.inst.cfg b/resources/variants/tronxy_xy2_0.6.inst.cfg index d45c58038f..9bf3f365a9 100644 --- a/resources/variants/tronxy_xy2_0.6.inst.cfg +++ b/resources/variants/tronxy_xy2_0.6.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2_0.8.inst.cfg b/resources/variants/tronxy_xy2_0.8.inst.cfg index 5b3d7a550a..a4cae0e925 100644 --- a/resources/variants/tronxy_xy2_0.8.inst.cfg +++ b/resources/variants/tronxy_xy2_0.8.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2pro_0.2.inst.cfg b/resources/variants/tronxy_xy2pro_0.2.inst.cfg index 5136350dba..2301d166d1 100644 --- a/resources/variants/tronxy_xy2pro_0.2.inst.cfg +++ b/resources/variants/tronxy_xy2pro_0.2.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2pro_0.3.inst.cfg b/resources/variants/tronxy_xy2pro_0.3.inst.cfg index fb1f464c4d..b3b20419df 100644 --- a/resources/variants/tronxy_xy2pro_0.3.inst.cfg +++ b/resources/variants/tronxy_xy2pro_0.3.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2pro_0.4.inst.cfg b/resources/variants/tronxy_xy2pro_0.4.inst.cfg index 2ad291247c..c450cc95df 100644 --- a/resources/variants/tronxy_xy2pro_0.4.inst.cfg +++ b/resources/variants/tronxy_xy2pro_0.4.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin diff --git a/resources/variants/tronxy_xy2pro_0.5.inst.cfg b/resources/variants/tronxy_xy2pro_0.5.inst.cfg index 9fa17ac961..d123c4856e 100644 --- a/resources/variants/tronxy_xy2pro_0.5.inst.cfg +++ b/resources/variants/tronxy_xy2pro_0.5.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2pro_0.6.inst.cfg b/resources/variants/tronxy_xy2pro_0.6.inst.cfg index 67568813cf..a8a27dd9ef 100644 --- a/resources/variants/tronxy_xy2pro_0.6.inst.cfg +++ b/resources/variants/tronxy_xy2pro_0.6.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy2pro_0.8.inst.cfg b/resources/variants/tronxy_xy2pro_0.8.inst.cfg index 6cacb6b726..10cd9b080f 100644 --- a/resources/variants/tronxy_xy2pro_0.8.inst.cfg +++ b/resources/variants/tronxy_xy2pro_0.8.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy2pro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3_0.2.inst.cfg b/resources/variants/tronxy_xy3_0.2.inst.cfg index 3080c102fc..ae3fc395ae 100644 --- a/resources/variants/tronxy_xy3_0.2.inst.cfg +++ b/resources/variants/tronxy_xy3_0.2.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3_0.3.inst.cfg b/resources/variants/tronxy_xy3_0.3.inst.cfg index 4cb0243225..abb921cb5d 100644 --- a/resources/variants/tronxy_xy3_0.3.inst.cfg +++ b/resources/variants/tronxy_xy3_0.3.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3_0.4.inst.cfg b/resources/variants/tronxy_xy3_0.4.inst.cfg index 6d2df8e747..9003eafdb9 100644 --- a/resources/variants/tronxy_xy3_0.4.inst.cfg +++ b/resources/variants/tronxy_xy3_0.4.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3_0.5.inst.cfg b/resources/variants/tronxy_xy3_0.5.inst.cfg index cc1e2eb78f..86ff191408 100644 --- a/resources/variants/tronxy_xy3_0.5.inst.cfg +++ b/resources/variants/tronxy_xy3_0.5.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3_0.6.inst.cfg b/resources/variants/tronxy_xy3_0.6.inst.cfg index af7d4a8660..3796d52e78 100644 --- a/resources/variants/tronxy_xy3_0.6.inst.cfg +++ b/resources/variants/tronxy_xy3_0.6.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3_0.8.inst.cfg b/resources/variants/tronxy_xy3_0.8.inst.cfg index fd54db0fbf..74674b5809 100644 --- a/resources/variants/tronxy_xy3_0.8.inst.cfg +++ b/resources/variants/tronxy_xy3_0.8.inst.cfg @@ -4,9 +4,11 @@ version = 4 definition = tronxy_xy3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3proV2_0.2.inst.cfg b/resources/variants/tronxy_xy3proV2_0.2.inst.cfg new file mode 100644 index 0000000000..0ccda6bfd5 --- /dev/null +++ b/resources/variants/tronxy_xy3proV2_0.2.inst.cfg @@ -0,0 +1,14 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = tronxy_xy3proV2 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3proV2_0.3.inst.cfg b/resources/variants/tronxy_xy3proV2_0.3.inst.cfg new file mode 100644 index 0000000000..674549c6fa --- /dev/null +++ b/resources/variants/tronxy_xy3proV2_0.3.inst.cfg @@ -0,0 +1,14 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = tronxy_xy3proV2 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3proV2_0.4.inst.cfg b/resources/variants/tronxy_xy3proV2_0.4.inst.cfg new file mode 100644 index 0000000000..7a9b15c2f1 --- /dev/null +++ b/resources/variants/tronxy_xy3proV2_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = tronxy_xy3proV2 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3proV2_0.5.inst.cfg b/resources/variants/tronxy_xy3proV2_0.5.inst.cfg new file mode 100644 index 0000000000..d618f01e35 --- /dev/null +++ b/resources/variants/tronxy_xy3proV2_0.5.inst.cfg @@ -0,0 +1,14 @@ +[general] +name = 0.5mm Nozzle +version = 4 +definition = tronxy_xy3proV2 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3proV2_0.6.inst.cfg b/resources/variants/tronxy_xy3proV2_0.6.inst.cfg new file mode 100644 index 0000000000..3527fddd4f --- /dev/null +++ b/resources/variants/tronxy_xy3proV2_0.6.inst.cfg @@ -0,0 +1,14 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = tronxy_xy3proV2 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/tronxy_xy3proV2_0.8.inst.cfg b/resources/variants/tronxy_xy3proV2_0.8.inst.cfg new file mode 100644 index 0000000000..c1f996366e --- /dev/null +++ b/resources/variants/tronxy_xy3proV2_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = tronxy_xy3proV2 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 +zig_zaggify_infill = True +retraction_combing = noskin \ No newline at end of file diff --git a/resources/variants/two_trees_base_0.2.inst.cfg b/resources/variants/two_trees_base_0.2.inst.cfg index 837b25d556..28abc3c92f 100644 --- a/resources/variants/two_trees_base_0.2.inst.cfg +++ b/resources/variants/two_trees_base_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_base_0.3.inst.cfg b/resources/variants/two_trees_base_0.3.inst.cfg index 47d75854f0..f6f95712d4 100644 --- a/resources/variants/two_trees_base_0.3.inst.cfg +++ b/resources/variants/two_trees_base_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_base_0.4.inst.cfg b/resources/variants/two_trees_base_0.4.inst.cfg index 88de108c61..5d85ccab98 100644 --- a/resources/variants/two_trees_base_0.4.inst.cfg +++ b/resources/variants/two_trees_base_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_base_0.5.inst.cfg b/resources/variants/two_trees_base_0.5.inst.cfg index a239d16743..f5931231e4 100644 --- a/resources/variants/two_trees_base_0.5.inst.cfg +++ b/resources/variants/two_trees_base_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_base_0.6.inst.cfg b/resources/variants/two_trees_base_0.6.inst.cfg index 3f4438e465..b77d2b4c1f 100644 --- a/resources/variants/two_trees_base_0.6.inst.cfg +++ b/resources/variants/two_trees_base_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_base_0.8.inst.cfg b/resources/variants/two_trees_base_0.8.inst.cfg index c53de991af..118d9eabc1 100644 --- a/resources/variants/two_trees_base_0.8.inst.cfg +++ b/resources/variants/two_trees_base_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_base_1.0.inst.cfg b/resources/variants/two_trees_base_1.0.inst.cfg index a6f28c6d36..f94a41df45 100644 --- a/resources/variants/two_trees_base_1.0.inst.cfg +++ b/resources/variants/two_trees_base_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluer_0.2.inst.cfg b/resources/variants/two_trees_bluer_0.2.inst.cfg index aa3413a132..b7975ba82c 100644 --- a/resources/variants/two_trees_bluer_0.2.inst.cfg +++ b/resources/variants/two_trees_bluer_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluer [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluer_0.3.inst.cfg b/resources/variants/two_trees_bluer_0.3.inst.cfg index fe33cb9fc2..a858a1a64e 100644 --- a/resources/variants/two_trees_bluer_0.3.inst.cfg +++ b/resources/variants/two_trees_bluer_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluer [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluer_0.4.inst.cfg b/resources/variants/two_trees_bluer_0.4.inst.cfg index 31a729b96c..f51f4483e9 100644 --- a/resources/variants/two_trees_bluer_0.4.inst.cfg +++ b/resources/variants/two_trees_bluer_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluer [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluer_0.5.inst.cfg b/resources/variants/two_trees_bluer_0.5.inst.cfg index 71a0ca77bb..e63f547f26 100644 --- a/resources/variants/two_trees_bluer_0.5.inst.cfg +++ b/resources/variants/two_trees_bluer_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluer [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluer_0.6.inst.cfg b/resources/variants/two_trees_bluer_0.6.inst.cfg index 20ff068b3f..583e7aed7c 100644 --- a/resources/variants/two_trees_bluer_0.6.inst.cfg +++ b/resources/variants/two_trees_bluer_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluer [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluer_0.8.inst.cfg b/resources/variants/two_trees_bluer_0.8.inst.cfg index 9fc98da74e..ce3d1d646c 100644 --- a/resources/variants/two_trees_bluer_0.8.inst.cfg +++ b/resources/variants/two_trees_bluer_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluer [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluer_1.0.inst.cfg b/resources/variants/two_trees_bluer_1.0.inst.cfg index f20e89a14b..d313a96c2d 100644 --- a/resources/variants/two_trees_bluer_1.0.inst.cfg +++ b/resources/variants/two_trees_bluer_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluer [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluerplus_0.2.inst.cfg b/resources/variants/two_trees_bluerplus_0.2.inst.cfg index e7c286137c..48e67dc0fc 100644 --- a/resources/variants/two_trees_bluerplus_0.2.inst.cfg +++ b/resources/variants/two_trees_bluerplus_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluerplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluerplus_0.3.inst.cfg b/resources/variants/two_trees_bluerplus_0.3.inst.cfg index a4ff6f58b6..7a6f9afab6 100644 --- a/resources/variants/two_trees_bluerplus_0.3.inst.cfg +++ b/resources/variants/two_trees_bluerplus_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluerplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluerplus_0.4.inst.cfg b/resources/variants/two_trees_bluerplus_0.4.inst.cfg index 7d8d89528d..9200c1bb6e 100644 --- a/resources/variants/two_trees_bluerplus_0.4.inst.cfg +++ b/resources/variants/two_trees_bluerplus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluerplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluerplus_0.5.inst.cfg b/resources/variants/two_trees_bluerplus_0.5.inst.cfg index 9a6f0a62ed..5a0cce667c 100644 --- a/resources/variants/two_trees_bluerplus_0.5.inst.cfg +++ b/resources/variants/two_trees_bluerplus_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluerplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluerplus_0.6.inst.cfg b/resources/variants/two_trees_bluerplus_0.6.inst.cfg index ca514ce548..c74953714b 100644 --- a/resources/variants/two_trees_bluerplus_0.6.inst.cfg +++ b/resources/variants/two_trees_bluerplus_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluerplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluerplus_0.8.inst.cfg b/resources/variants/two_trees_bluerplus_0.8.inst.cfg index 805716e6cd..dc91514ac6 100644 --- a/resources/variants/two_trees_bluerplus_0.8.inst.cfg +++ b/resources/variants/two_trees_bluerplus_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluerplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_bluerplus_1.0.inst.cfg b/resources/variants/two_trees_bluerplus_1.0.inst.cfg index ba02103798..4c71f782a6 100644 --- a/resources/variants/two_trees_bluerplus_1.0.inst.cfg +++ b/resources/variants/two_trees_bluerplus_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_bluerplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphireplus_0.2.inst.cfg b/resources/variants/two_trees_sapphireplus_0.2.inst.cfg index 91fc6b038a..e171a81808 100644 --- a/resources/variants/two_trees_sapphireplus_0.2.inst.cfg +++ b/resources/variants/two_trees_sapphireplus_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphireplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphireplus_0.3.inst.cfg b/resources/variants/two_trees_sapphireplus_0.3.inst.cfg index 147dca33ce..3b14d47b19 100644 --- a/resources/variants/two_trees_sapphireplus_0.3.inst.cfg +++ b/resources/variants/two_trees_sapphireplus_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphireplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphireplus_0.4.inst.cfg b/resources/variants/two_trees_sapphireplus_0.4.inst.cfg index b4a39ceeda..dbb79ffbf3 100644 --- a/resources/variants/two_trees_sapphireplus_0.4.inst.cfg +++ b/resources/variants/two_trees_sapphireplus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphireplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphireplus_0.5.inst.cfg b/resources/variants/two_trees_sapphireplus_0.5.inst.cfg index 16020a2e83..a916091626 100644 --- a/resources/variants/two_trees_sapphireplus_0.5.inst.cfg +++ b/resources/variants/two_trees_sapphireplus_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphireplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphireplus_0.6.inst.cfg b/resources/variants/two_trees_sapphireplus_0.6.inst.cfg index c282b38446..2bce463041 100644 --- a/resources/variants/two_trees_sapphireplus_0.6.inst.cfg +++ b/resources/variants/two_trees_sapphireplus_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphireplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphireplus_0.8.inst.cfg b/resources/variants/two_trees_sapphireplus_0.8.inst.cfg index 01c34c5757..24bf5e05de 100644 --- a/resources/variants/two_trees_sapphireplus_0.8.inst.cfg +++ b/resources/variants/two_trees_sapphireplus_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphireplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphireplus_1.0.inst.cfg b/resources/variants/two_trees_sapphireplus_1.0.inst.cfg index 47686a2dd1..9847d1b0d2 100644 --- a/resources/variants/two_trees_sapphireplus_1.0.inst.cfg +++ b/resources/variants/two_trees_sapphireplus_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphireplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphirepro_0.2.inst.cfg b/resources/variants/two_trees_sapphirepro_0.2.inst.cfg index bad1de94b7..ee51eccc75 100644 --- a/resources/variants/two_trees_sapphirepro_0.2.inst.cfg +++ b/resources/variants/two_trees_sapphirepro_0.2.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphirepro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphirepro_0.3.inst.cfg b/resources/variants/two_trees_sapphirepro_0.3.inst.cfg index ae4bd5f0c0..2efa7e328b 100644 --- a/resources/variants/two_trees_sapphirepro_0.3.inst.cfg +++ b/resources/variants/two_trees_sapphirepro_0.3.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphirepro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphirepro_0.4.inst.cfg b/resources/variants/two_trees_sapphirepro_0.4.inst.cfg index 8abaca9abb..dfe08be76a 100644 --- a/resources/variants/two_trees_sapphirepro_0.4.inst.cfg +++ b/resources/variants/two_trees_sapphirepro_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphirepro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphirepro_0.5.inst.cfg b/resources/variants/two_trees_sapphirepro_0.5.inst.cfg index cfd4b94ca8..bfa797026a 100644 --- a/resources/variants/two_trees_sapphirepro_0.5.inst.cfg +++ b/resources/variants/two_trees_sapphirepro_0.5.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphirepro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphirepro_0.6.inst.cfg b/resources/variants/two_trees_sapphirepro_0.6.inst.cfg index b301d9266d..a1705b3de7 100644 --- a/resources/variants/two_trees_sapphirepro_0.6.inst.cfg +++ b/resources/variants/two_trees_sapphirepro_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphirepro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphirepro_0.8.inst.cfg b/resources/variants/two_trees_sapphirepro_0.8.inst.cfg index 209da133b3..4338f550f6 100644 --- a/resources/variants/two_trees_sapphirepro_0.8.inst.cfg +++ b/resources/variants/two_trees_sapphirepro_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphirepro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/two_trees_sapphirepro_1.0.inst.cfg b/resources/variants/two_trees_sapphirepro_1.0.inst.cfg index acb3ae8446..4f4fbd962b 100644 --- a/resources/variants/two_trees_sapphirepro_1.0.inst.cfg +++ b/resources/variants/two_trees_sapphirepro_1.0.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = two_trees_sapphirepro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg index abdbb3751c..ffbd25a630 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_extended_olsson [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg index af05195dee..fec6bf01d2 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_extended_olsson [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg index ed5a5c81a1..c4f28e3245 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_extended_olsson [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg index 2873e16644..29450506c3 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_extended_olsson [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg index aef0d4fbda..c934ca03c4 100644 --- a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_extended_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg index b21b2c6f4f..655d9bed36 100644 --- a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_extended_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg index d3827e01e5..01a48fbfaf 100644 --- a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_extended_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg index d0a5698538..557ddb89d1 100644 --- a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_extended_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_olsson_0.25.inst.cfg index 25bb8b67df..2419f4c56e 100644 --- a/resources/variants/ultimaker2_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_olsson [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_olsson_0.4.inst.cfg index 130eaa48a9..bf2d97156b 100644 --- a/resources/variants/ultimaker2_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_olsson [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_olsson_0.6.inst.cfg index 696973cb30..4fc8462528 100644 --- a/resources/variants/ultimaker2_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_olsson [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_olsson_0.8.inst.cfg index 7c6e70259b..0395c2ec93 100644 --- a/resources/variants/ultimaker2_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_olsson [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_plus_0.25.inst.cfg b/resources/variants/ultimaker2_plus_0.25.inst.cfg index d771865eca..f48df57e8a 100644 --- a/resources/variants/ultimaker2_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index b5eb384627..e3ccc6c80b 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_plus_0.6.inst.cfg b/resources/variants/ultimaker2_plus_0.6.inst.cfg index 0cd4b06e0e..2208bdf11a 100644 --- a/resources/variants/ultimaker2_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_plus_0.8.inst.cfg b/resources/variants/ultimaker2_plus_0.8.inst.cfg index b5579e7b8f..9d413948dc 100644 --- a/resources/variants/ultimaker2_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_plus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg index 36f81f143d..36d98a5d8f 100644 --- a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle @@ -14,6 +14,7 @@ coasting_volume = 0.1 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.8 raft_airgap = 0.25 +retraction_prime_speed = =retraction_speed speed_topbottom = =round(speed_print / 1.5, 1) speed_wall = =round(speed_print / 1.2, 1) speed_wall_0 = =1 if speed_wall < 5 else (speed_wall - 5) diff --git a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg index ac2b227e12..da8155f5e3 100644 --- a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg index db870f8e24..2d7330228d 100644 --- a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg index d570726cb4..99674d2375 100644 --- a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker2_plus_connect [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle @@ -12,6 +12,8 @@ hardware_type = nozzle machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.35 coasting_volume = 3.22 +retraction_speed = 25 +retraction_prime_speed = =retraction_speed speed_wall = =round(speed_print * 3 / 4, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) speed_topbottom = =round(speed_print / 2, 1) diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 33aae1abc3..e510bac6a8 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -4,15 +4,13 @@ version = 4 definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] brim_width = 7 -infill_line_width = 0.23 layer_height_0 = 0.17 -line_width = 0.23 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 @@ -46,6 +44,5 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 -wall_line_width_x = 0.23 wall_thickness = 1.3 xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index 94c5f0238b..abe079eeb5 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -4,30 +4,22 @@ version = 4 definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 7 cool_fan_speed = 7 cool_fan_speed_max = 100 cool_min_speed = 5 default_material_print_temperature = 200 -infill_before_walls = False -infill_line_width = =round(line_width * 0.6 / 0.7, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 -jerk_topbottom = =math.ceil(jerk_print * 25 / 25) -jerk_wall = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 25 / 25) layer_height = 0.2 -line_width = =machine_nozzle_size machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -48,7 +40,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) @@ -62,6 +53,4 @@ switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 16.5 top_bottom_thickness = 1.4 wall_0_inset = 0 -wall_line_width_0 = =wall_line_width -wall_line_width_x = =wall_line_width wall_thickness = 2 diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index 11a5c90d23..8362a52fb5 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 7aecc8e631..af5daf9f11 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -4,15 +4,14 @@ version = 4 definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] acceleration_enabled = True -acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 4000) -acceleration_print = 4000 -acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) brim_width = 3 @@ -20,16 +19,14 @@ cool_fan_speed = 50 cool_min_speed = 5 gradual_support_infill_step_height = 1.6 gradual_support_infill_steps = 2 -infill_line_width = =round(line_width * 0.8 / 0.7, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True -jerk_prime_tower = =math.ceil(jerk_print * 2 / 25) jerk_print = 25 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =math.ceil(jerk_support * 10 / 15) -jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) +jerk_support = =max(math.ceil(jerk_print * 15 / 25), 20) +jerk_support_interface = =max(math.ceil(jerk_support * 10 / 15), 20) +jerk_support_bottom = =max(math.ceil(jerk_support_interface * 1 / 10), 20) layer_height = 0.2 machine_min_cool_heat_time_window = 15 machine_nozzle_heat_up_speed = 1.5 @@ -77,7 +74,6 @@ support_interface_enable = True support_interface_height = 0.6 support_interface_skip_height = =layer_height support_join_distance = 3 -support_line_width = =round(line_width * 0.4 / 0.35, 2) support_offset = 1.5 support_pattern = triangles support_use_towers = False @@ -88,6 +84,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 top_bottom_thickness = 1 wall_0_inset = 0 -wall_line_width_0 = =wall_line_width -wall_line_width_x = =wall_line_width wall_thickness = 1 diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index 7a8b7a9944..89c5430af5 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -4,18 +4,17 @@ version = 4 definition = ultimaker3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 4000) -acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) cool_fan_speed_max = =cool_fan_speed gradual_support_infill_steps = 2 -jerk_prime_tower = =math.ceil(jerk_print * 2 / 25) jerk_support = =math.ceil(jerk_print * 15 / 25) jerk_support_interface = =math.ceil(jerk_support * 10 / 15) jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) @@ -44,7 +43,6 @@ support_interface_enable = True support_interface_height = 0.6 support_interface_skip_height = =layer_height support_join_distance = 3 -support_line_width = =round(line_width * 0.4 / 0.35, 2) support_offset = 3 support_xy_distance = =round(wall_line_width_0 * 0.75, 2) support_xy_distance_overhang = =wall_line_width_0 / 2 diff --git a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg index 13950f9771..c26249a17b 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -4,15 +4,13 @@ version = 4 definition = ultimaker3_extended [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] brim_width = 7 -infill_line_width = 0.23 layer_height_0 = 0.17 -line_width = 0.23 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 @@ -46,6 +44,5 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 -wall_line_width_x = 0.23 wall_thickness = 1.3 xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index 5209ce08c4..0f603036b8 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -4,30 +4,22 @@ version = 4 definition = ultimaker3_extended [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 7 cool_fan_speed = 7 cool_fan_speed_max = 100 cool_min_speed = 5 default_material_print_temperature = 200 -infill_before_walls = False -infill_line_width = =round(line_width * 0.6 / 0.7, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 -jerk_topbottom = =math.ceil(jerk_print * 25 / 25) -jerk_wall = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 25 / 25) layer_height = 0.2 -line_width = =machine_nozzle_size machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -48,7 +40,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) @@ -62,6 +53,4 @@ switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 16.5 top_bottom_thickness = 1.4 wall_0_inset = 0 -wall_line_width_0 = =wall_line_width -wall_line_width_x = =wall_line_width wall_thickness = 2 diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index ccd296136f..2a523703b6 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker3_extended [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index a5fb164591..b73d5c2bc7 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -4,15 +4,14 @@ version = 4 definition = ultimaker3_extended [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] acceleration_enabled = True -acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 4000) -acceleration_print = 4000 -acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) brim_width = 3 @@ -20,16 +19,14 @@ cool_fan_speed = 50 cool_min_speed = 5 gradual_support_infill_step_height = 1.6 gradual_support_infill_steps = 2 -infill_line_width = =round(line_width * 0.8 / 0.7, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True -jerk_prime_tower = =math.ceil(jerk_print * 2 / 25) jerk_print = 25 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =math.ceil(jerk_support * 10 / 15) -jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) +jerk_support = =max(math.ceil(jerk_print * 15 / 25), 20) +jerk_support_interface = =max(math.ceil(jerk_support * 10 / 15), 20) +jerk_support_bottom = =max(math.ceil(jerk_support_interface * 1 / 10), 20) layer_height = 0.2 machine_min_cool_heat_time_window = 15 machine_nozzle_heat_up_speed = 1.5 @@ -77,7 +74,6 @@ support_interface_enable = True support_interface_height = 0.6 support_interface_skip_height = =layer_height support_join_distance = 3 -support_line_width = =round(line_width * 0.4 / 0.35, 2) support_offset = 1.5 support_pattern = triangles support_use_towers = False @@ -88,6 +84,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 top_bottom_thickness = 1 wall_0_inset = 0 -wall_line_width_0 = =wall_line_width -wall_line_width_x = =wall_line_width wall_thickness = 1 diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index b7a8be2e28..79a7441256 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -4,18 +4,17 @@ version = 4 definition = ultimaker3_extended [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 4000) -acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) cool_fan_speed_max = =cool_fan_speed gradual_support_infill_steps = 2 -jerk_prime_tower = =math.ceil(jerk_print * 2 / 25) jerk_support = =math.ceil(jerk_print * 15 / 25) jerk_support_interface = =math.ceil(jerk_support * 10 / 15) jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) @@ -44,7 +43,6 @@ support_interface_enable = True support_interface_height = 0.6 support_interface_skip_height = =layer_height support_join_distance = 3 -support_line_width = =round(line_width * 0.4 / 0.35, 2) support_offset = 3 support_xy_distance = =round(wall_line_width_0 * 0.75, 2) support_xy_distance_overhang = =wall_line_width_0 / 2 diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index 60d25ec07c..9b0714b7bb 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -4,15 +4,13 @@ version = 4 definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] brim_width = 7 -infill_line_width = 0.23 layer_height_0 = 0.17 -line_width = 0.23 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 @@ -46,5 +44,4 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 -wall_line_width_x = 0.23 wall_thickness = 1.3 diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index 72adb16dd8..3bc112c7fa 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -4,30 +4,22 @@ version = 4 definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 7 cool_fan_speed = 7 cool_fan_speed_max = 100 cool_min_speed = 5 default_material_print_temperature = 200 -infill_before_walls = False -infill_line_width = =round(line_width * 0.6 / 0.7, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 -jerk_topbottom = =math.ceil(jerk_print * 25 / 25) -jerk_wall = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 25 / 25) layer_height = 0.2 -line_width = =machine_nozzle_size machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -47,8 +39,8 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 +retraction_speed = 25 skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) @@ -62,6 +54,4 @@ switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 16.5 top_bottom_thickness = 1.4 wall_0_inset = 0 -wall_line_width_0 = =wall_line_width -wall_line_width_x = =wall_line_width wall_thickness = 2 diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index 0dfa0e22e7..9e56a0e75e 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle @@ -25,7 +25,6 @@ raft_surface_layers = 2 retraction_amount = 6.5 retraction_count_max = 25 retraction_min_travel = =line_width * 2 -retraction_prime_speed = =retraction_speed skin_overlap = 15 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index af100aa1e7..5f6373338b 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -4,32 +4,28 @@ version = 4 definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_enabled = True -acceleration_print = 4000 -acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) -acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 4000) +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) brim_width = 3 cool_fan_speed = 50 cool_min_speed = 5 gradual_support_infill_step_height = 1.6 gradual_support_infill_steps = 2 -infill_line_width = =round(line_width * 0.8 / 0.7, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True -jerk_prime_tower = =math.ceil(jerk_print * 2 / 25) jerk_print = 25 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =math.ceil(jerk_support * 10 / 15) -jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) +jerk_support = =max(math.ceil(jerk_print * 15 / 25), 20) +jerk_support_interface = =max(math.ceil(jerk_support * 10 / 15), 20) +jerk_support_bottom = =max(math.ceil(jerk_support_interface * 1 / 10), 20) layer_height = 0.2 machine_min_cool_heat_time_window = 15 machine_nozzle_heat_up_speed = 1.5 @@ -58,7 +54,6 @@ retraction_extrusion_window = =retraction_amount retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 -retraction_prime_speed = 15 skin_overlap = 5 speed_layer_0 = 20 speed_print = 35 @@ -77,7 +72,6 @@ support_interface_enable = True support_interface_height = 0.6 support_interface_skip_height = =layer_height support_join_distance = 3 -support_line_width = =round(line_width * 0.4 / 0.35, 2) support_offset = 1.5 support_pattern = triangles support_use_towers = False @@ -88,6 +82,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 top_bottom_thickness = 1 wall_0_inset = 0 -wall_line_width_0 = =wall_line_width -wall_line_width_x = =wall_line_width wall_thickness = 1 diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 064fd004b8..cd33dbfe1b 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -4,18 +4,17 @@ version = 4 definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) -acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 4000) +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) cool_fan_speed_max = =cool_fan_speed gradual_support_infill_steps = 2 -jerk_prime_tower = =math.ceil(jerk_print * 2 / 25) jerk_support = =math.ceil(jerk_print * 15 / 25) jerk_support_interface = =math.ceil(jerk_support * 10 / 15) jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) @@ -44,7 +43,6 @@ support_interface_enable = True support_interface_height = 0.6 support_interface_skip_height = =layer_height support_join_distance = 3 -support_line_width = =round(line_width * 0.4 / 0.35, 2) support_offset = 3 support_xy_distance = =round(wall_line_width_0 * 0.75, 2) support_xy_distance_overhang = =wall_line_width_0 / 2 diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index 1f0fcc5e53..3f61f5d326 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index 5863b144be..9a216b8506 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker_s3 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 2f26bc1da4..91f05ac857 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -4,15 +4,13 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] brim_width = 7 -infill_line_width = 0.23 layer_height_0 = 0.17 -line_width = 0.23 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 @@ -46,6 +44,5 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 -wall_line_width_x = 0.23 wall_thickness = 1.3 xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index ce8c40444c..75581681f9 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -4,30 +4,22 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_enabled = True -acceleration_print = 4000 brim_width = 7 cool_fan_speed = 7 cool_fan_speed_max = 100 cool_min_speed = 5 default_material_print_temperature = 200 -infill_before_walls = False -infill_line_width = =round(line_width * 0.6 / 0.7, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 -jerk_topbottom = =math.ceil(jerk_print * 25 / 25) -jerk_wall = =math.ceil(jerk_print * 25 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 25 / 25) layer_height = 0.2 -line_width = =machine_nozzle_size machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -47,8 +39,8 @@ retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 +retraction_speed = 25 skin_overlap = 5 -speed_equalize_flow_enabled = True speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) @@ -62,6 +54,4 @@ switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 16.5 top_bottom_thickness = 1.4 wall_0_inset = 0 -wall_line_width_0 = =wall_line_width -wall_line_width_x = =wall_line_width wall_thickness = 2 diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index b290496288..923d8cadec 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle @@ -25,7 +25,6 @@ raft_surface_layers = 2 retraction_amount = 6.5 retraction_count_max = 25 retraction_min_travel = =line_width * 2 -retraction_prime_speed = =retraction_speed skin_overlap = 15 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s5_aluminum.inst.cfg b/resources/variants/ultimaker_s5_aluminum.inst.cfg index a867d6e24b..233584961d 100644 --- a/resources/variants/ultimaker_s5_aluminum.inst.cfg +++ b/resources/variants/ultimaker_s5_aluminum.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = buildplate diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index bc484f53df..4c43f2da26 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -4,28 +4,24 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_enabled = True -acceleration_print = 4000 -acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) -acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 4000) +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) brim_width = 3 cool_fan_speed = 50 cool_min_speed = 5 gradual_support_infill_step_height = 1.6 gradual_support_infill_steps = 2 -infill_line_width = =round(line_width * 0.8 / 0.7, 2) infill_overlap = 0 -infill_pattern = triangles +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_enabled = True -jerk_prime_tower = =math.ceil(jerk_print * 2 / 25) jerk_print = 25 jerk_support = =math.ceil(jerk_print * 15 / 25) jerk_support_interface = =math.ceil(jerk_support * 10 / 15) @@ -58,7 +54,6 @@ retraction_extrusion_window = =retraction_amount retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 -retraction_prime_speed = 15 skin_overlap = 5 speed_layer_0 = 20 speed_print = 35 @@ -77,17 +72,14 @@ support_interface_enable = True support_interface_height = 0.6 support_interface_skip_height = =layer_height support_join_distance = 3 -support_line_width = =round(line_width * 0.4 / 0.35, 2) support_offset = 1.5 support_pattern = triangles support_use_towers = False -support_xy_distance = =round(wall_line_width_0 * 0.75, 2) +support_xy_distance = =wall_line_width_0 support_xy_distance_overhang = =wall_line_width_0 / 4 support_z_distance = 0 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 top_bottom_thickness = 1 wall_0_inset = 0 -wall_line_width_0 = =wall_line_width -wall_line_width_x = =wall_line_width wall_thickness = 1 diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 741b7d78e3..3a4d937620 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -4,18 +4,17 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle [values] -acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) -acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 4000) +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) cool_fan_speed_max = =cool_fan_speed gradual_support_infill_steps = 2 -jerk_prime_tower = =math.ceil(jerk_print * 2 / 25) jerk_support = =math.ceil(jerk_print * 15 / 25) jerk_support_interface = =math.ceil(jerk_support * 10 / 15) jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) @@ -44,7 +43,6 @@ support_interface_enable = True support_interface_height = 0.6 support_interface_skip_height = =layer_height support_join_distance = 3 -support_line_width = =round(line_width * 0.4 / 0.35, 2) support_offset = 3 support_xy_distance = =round(wall_line_width_0 * 0.75, 2) support_xy_distance_overhang = =wall_line_width_0 / 2 diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index 8eea2a477b..6934706bcd 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index d1371db91e..98821ca002 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/ultimaker_s5_glass.inst.cfg b/resources/variants/ultimaker_s5_glass.inst.cfg index d5e345c2df..0fe0b4f683 100644 --- a/resources/variants/ultimaker_s5_glass.inst.cfg +++ b/resources/variants/ultimaker_s5_glass.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = ultimaker_s5 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = buildplate diff --git a/resources/variants/uni_200_0.30.inst.cfg b/resources/variants/uni_200_0.30.inst.cfg index 11e1348a1f..41fb83b999 100644 --- a/resources/variants/uni_200_0.30.inst.cfg +++ b/resources/variants/uni_200_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_200 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_200_0.40.inst.cfg b/resources/variants/uni_200_0.40.inst.cfg index 4f0d44ce11..9a1e4b94ed 100644 --- a/resources/variants/uni_200_0.40.inst.cfg +++ b/resources/variants/uni_200_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_200 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_200_0.50.inst.cfg b/resources/variants/uni_200_0.50.inst.cfg index 68fd13ed85..568af4638e 100644 --- a/resources/variants/uni_200_0.50.inst.cfg +++ b/resources/variants/uni_200_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_200 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_250_0.30.inst.cfg b/resources/variants/uni_250_0.30.inst.cfg index ec4e0772cc..95f6e28859 100644 --- a/resources/variants/uni_250_0.30.inst.cfg +++ b/resources/variants/uni_250_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_250_0.40.inst.cfg b/resources/variants/uni_250_0.40.inst.cfg index 1b9cbf90a5..f7312d4119 100644 --- a/resources/variants/uni_250_0.40.inst.cfg +++ b/resources/variants/uni_250_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_250_0.50.inst.cfg b/resources/variants/uni_250_0.50.inst.cfg index e335461844..e6123bf043 100644 --- a/resources/variants/uni_250_0.50.inst.cfg +++ b/resources/variants/uni_250_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_300_0.30.inst.cfg b/resources/variants/uni_300_0.30.inst.cfg index f49b730dc0..c404b6a844 100644 --- a/resources/variants/uni_300_0.30.inst.cfg +++ b/resources/variants/uni_300_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_300_0.40.inst.cfg b/resources/variants/uni_300_0.40.inst.cfg index 7ef53a99db..210ef09ca1 100644 --- a/resources/variants/uni_300_0.40.inst.cfg +++ b/resources/variants/uni_300_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_300_0.50.inst.cfg b/resources/variants/uni_300_0.50.inst.cfg index e43fc7eed8..e553d2c625 100644 --- a/resources/variants/uni_300_0.50.inst.cfg +++ b/resources/variants/uni_300_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_base_0.30.inst.cfg b/resources/variants/uni_base_0.30.inst.cfg index b7ba59defe..76ad227864 100644 --- a/resources/variants/uni_base_0.30.inst.cfg +++ b/resources/variants/uni_base_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_base_0.40.inst.cfg b/resources/variants/uni_base_0.40.inst.cfg index c73e30513a..9211eeef53 100644 --- a/resources/variants/uni_base_0.40.inst.cfg +++ b/resources/variants/uni_base_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_base_0.50.inst.cfg b/resources/variants/uni_base_0.50.inst.cfg index 3ac4e40438..9ed139ea7b 100644 --- a/resources/variants/uni_base_0.50.inst.cfg +++ b/resources/variants/uni_base_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_mini_0.30.inst.cfg b/resources/variants/uni_mini_0.30.inst.cfg index 45a5fbc2e3..ed63156ec8 100644 --- a/resources/variants/uni_mini_0.30.inst.cfg +++ b/resources/variants/uni_mini_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_mini_0.40.inst.cfg b/resources/variants/uni_mini_0.40.inst.cfg index 6689530fa9..5a92b67d25 100644 --- a/resources/variants/uni_mini_0.40.inst.cfg +++ b/resources/variants/uni_mini_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/uni_mini_0.50.inst.cfg b/resources/variants/uni_mini_0.50.inst.cfg index 3e6b1cc0d7..68ab4f641c 100644 --- a/resources/variants/uni_mini_0.50.inst.cfg +++ b/resources/variants/uni_mini_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = uni_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron0_120_v6_0.25.inst.cfg b/resources/variants/voron0_120_v6_0.25.inst.cfg index 8fd763e739..04a0935da6 100644 --- a/resources/variants/voron0_120_v6_0.25.inst.cfg +++ b/resources/variants/voron0_120_v6_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron0_120 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron0_120_v6_0.30.inst.cfg b/resources/variants/voron0_120_v6_0.30.inst.cfg index 65fd07de0b..2900d5704d 100644 --- a/resources/variants/voron0_120_v6_0.30.inst.cfg +++ b/resources/variants/voron0_120_v6_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron0_120 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron0_120_v6_0.40.inst.cfg b/resources/variants/voron0_120_v6_0.40.inst.cfg index 2cc9018970..161ff831d7 100644 --- a/resources/variants/voron0_120_v6_0.40.inst.cfg +++ b/resources/variants/voron0_120_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron0_120 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron0_120_v6_0.50.inst.cfg b/resources/variants/voron0_120_v6_0.50.inst.cfg index 6e30fb049b..dd0bcad518 100644 --- a/resources/variants/voron0_120_v6_0.50.inst.cfg +++ b/resources/variants/voron0_120_v6_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron0_120 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron0_120_v6_0.60.inst.cfg b/resources/variants/voron0_120_v6_0.60.inst.cfg index 53fc000477..122a498a9a 100644 --- a/resources/variants/voron0_120_v6_0.60.inst.cfg +++ b/resources/variants/voron0_120_v6_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron0_120 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron0_120_v6_0.80.inst.cfg b/resources/variants/voron0_120_v6_0.80.inst.cfg index 45e275060c..e828397e0a 100644 --- a/resources/variants/voron0_120_v6_0.80.inst.cfg +++ b/resources/variants/voron0_120_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron0_120 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_v6_0.25.inst.cfg b/resources/variants/voron2_250_v6_0.25.inst.cfg index 167cd4f59f..62156b79e9 100644 --- a/resources/variants/voron2_250_v6_0.25.inst.cfg +++ b/resources/variants/voron2_250_v6_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_v6_0.30.inst.cfg b/resources/variants/voron2_250_v6_0.30.inst.cfg index dc61747ba3..3eb878ec3e 100644 --- a/resources/variants/voron2_250_v6_0.30.inst.cfg +++ b/resources/variants/voron2_250_v6_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_v6_0.35.inst.cfg b/resources/variants/voron2_250_v6_0.35.inst.cfg index a87a201981..6183363ede 100644 --- a/resources/variants/voron2_250_v6_0.35.inst.cfg +++ b/resources/variants/voron2_250_v6_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_v6_0.40.inst.cfg b/resources/variants/voron2_250_v6_0.40.inst.cfg index 523146a300..a85aeae49f 100644 --- a/resources/variants/voron2_250_v6_0.40.inst.cfg +++ b/resources/variants/voron2_250_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_v6_0.50.inst.cfg b/resources/variants/voron2_250_v6_0.50.inst.cfg index 5fb22405e0..ef72dd83a6 100644 --- a/resources/variants/voron2_250_v6_0.50.inst.cfg +++ b/resources/variants/voron2_250_v6_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_v6_0.60.inst.cfg b/resources/variants/voron2_250_v6_0.60.inst.cfg index c6dd472216..b70d5f6b38 100644 --- a/resources/variants/voron2_250_v6_0.60.inst.cfg +++ b/resources/variants/voron2_250_v6_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_v6_0.80.inst.cfg b/resources/variants/voron2_250_v6_0.80.inst.cfg index 6fd6171f96..f16e0b2344 100644 --- a/resources/variants/voron2_250_v6_0.80.inst.cfg +++ b/resources/variants/voron2_250_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_volcano_0.40.inst.cfg b/resources/variants/voron2_250_volcano_0.40.inst.cfg index 0ed8ee6bf5..ed7737b34e 100644 --- a/resources/variants/voron2_250_volcano_0.40.inst.cfg +++ b/resources/variants/voron2_250_volcano_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_volcano_0.60.inst.cfg b/resources/variants/voron2_250_volcano_0.60.inst.cfg index 2683903c11..a82ed61655 100644 --- a/resources/variants/voron2_250_volcano_0.60.inst.cfg +++ b/resources/variants/voron2_250_volcano_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_volcano_0.80.inst.cfg b/resources/variants/voron2_250_volcano_0.80.inst.cfg index d3548c7bda..bd24fe6e65 100644 --- a/resources/variants/voron2_250_volcano_0.80.inst.cfg +++ b/resources/variants/voron2_250_volcano_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_volcano_1.00.inst.cfg b/resources/variants/voron2_250_volcano_1.00.inst.cfg index ac0ff7470f..588c6f9bbe 100644 --- a/resources/variants/voron2_250_volcano_1.00.inst.cfg +++ b/resources/variants/voron2_250_volcano_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_250_volcano_1.20.inst.cfg b/resources/variants/voron2_250_volcano_1.20.inst.cfg index 2563663dac..ca0898dd64 100644 --- a/resources/variants/voron2_250_volcano_1.20.inst.cfg +++ b/resources/variants/voron2_250_volcano_1.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_250 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_v6_0.25.inst.cfg b/resources/variants/voron2_300_v6_0.25.inst.cfg index 1ef5acb0eb..076368c27a 100644 --- a/resources/variants/voron2_300_v6_0.25.inst.cfg +++ b/resources/variants/voron2_300_v6_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_v6_0.30.inst.cfg b/resources/variants/voron2_300_v6_0.30.inst.cfg index d14eab17f5..d7246081c2 100644 --- a/resources/variants/voron2_300_v6_0.30.inst.cfg +++ b/resources/variants/voron2_300_v6_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_v6_0.35.inst.cfg b/resources/variants/voron2_300_v6_0.35.inst.cfg index 5c658c646b..3976e53731 100644 --- a/resources/variants/voron2_300_v6_0.35.inst.cfg +++ b/resources/variants/voron2_300_v6_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_v6_0.40.inst.cfg b/resources/variants/voron2_300_v6_0.40.inst.cfg index 228ea9c00e..26fdc7314d 100644 --- a/resources/variants/voron2_300_v6_0.40.inst.cfg +++ b/resources/variants/voron2_300_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_v6_0.50.inst.cfg b/resources/variants/voron2_300_v6_0.50.inst.cfg index e72fe598ab..7a09cf6a5d 100644 --- a/resources/variants/voron2_300_v6_0.50.inst.cfg +++ b/resources/variants/voron2_300_v6_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_v6_0.60.inst.cfg b/resources/variants/voron2_300_v6_0.60.inst.cfg index cfd96c1119..102e362f6d 100644 --- a/resources/variants/voron2_300_v6_0.60.inst.cfg +++ b/resources/variants/voron2_300_v6_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_v6_0.80.inst.cfg b/resources/variants/voron2_300_v6_0.80.inst.cfg index db6dd496d7..e18c408326 100644 --- a/resources/variants/voron2_300_v6_0.80.inst.cfg +++ b/resources/variants/voron2_300_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_volcano_0.40.inst.cfg b/resources/variants/voron2_300_volcano_0.40.inst.cfg index 0996fae206..168833b655 100644 --- a/resources/variants/voron2_300_volcano_0.40.inst.cfg +++ b/resources/variants/voron2_300_volcano_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_volcano_0.60.inst.cfg b/resources/variants/voron2_300_volcano_0.60.inst.cfg index 82cde5f43b..d20e6e9afe 100644 --- a/resources/variants/voron2_300_volcano_0.60.inst.cfg +++ b/resources/variants/voron2_300_volcano_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_volcano_0.80.inst.cfg b/resources/variants/voron2_300_volcano_0.80.inst.cfg index 4e7531ad77..f1136cea11 100644 --- a/resources/variants/voron2_300_volcano_0.80.inst.cfg +++ b/resources/variants/voron2_300_volcano_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_volcano_1.00.inst.cfg b/resources/variants/voron2_300_volcano_1.00.inst.cfg index 894cafeb8c..31d066c7c7 100644 --- a/resources/variants/voron2_300_volcano_1.00.inst.cfg +++ b/resources/variants/voron2_300_volcano_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_300_volcano_1.20.inst.cfg b/resources/variants/voron2_300_volcano_1.20.inst.cfg index 48a8c1510f..282c570bd4 100644 --- a/resources/variants/voron2_300_volcano_1.20.inst.cfg +++ b/resources/variants/voron2_300_volcano_1.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_300 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_v6_0.25.inst.cfg b/resources/variants/voron2_350_v6_0.25.inst.cfg index 75dbdf5c2e..5828b078d8 100644 --- a/resources/variants/voron2_350_v6_0.25.inst.cfg +++ b/resources/variants/voron2_350_v6_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_v6_0.30.inst.cfg b/resources/variants/voron2_350_v6_0.30.inst.cfg index 8d2d8613c9..9d19a8cc76 100644 --- a/resources/variants/voron2_350_v6_0.30.inst.cfg +++ b/resources/variants/voron2_350_v6_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_v6_0.35.inst.cfg b/resources/variants/voron2_350_v6_0.35.inst.cfg index 68160304a5..dfdec754e6 100644 --- a/resources/variants/voron2_350_v6_0.35.inst.cfg +++ b/resources/variants/voron2_350_v6_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_v6_0.40.inst.cfg b/resources/variants/voron2_350_v6_0.40.inst.cfg index cf682af633..7e27342c4a 100644 --- a/resources/variants/voron2_350_v6_0.40.inst.cfg +++ b/resources/variants/voron2_350_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_v6_0.50.inst.cfg b/resources/variants/voron2_350_v6_0.50.inst.cfg index 066bcf116a..7159c1a7fd 100644 --- a/resources/variants/voron2_350_v6_0.50.inst.cfg +++ b/resources/variants/voron2_350_v6_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_v6_0.60.inst.cfg b/resources/variants/voron2_350_v6_0.60.inst.cfg index 42d2ccea1b..30cc07146f 100644 --- a/resources/variants/voron2_350_v6_0.60.inst.cfg +++ b/resources/variants/voron2_350_v6_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_v6_0.80.inst.cfg b/resources/variants/voron2_350_v6_0.80.inst.cfg index a29e272753..aecdbe13dc 100644 --- a/resources/variants/voron2_350_v6_0.80.inst.cfg +++ b/resources/variants/voron2_350_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_volcano_0.40.inst.cfg b/resources/variants/voron2_350_volcano_0.40.inst.cfg index 1906e4274a..9fbf81cebe 100644 --- a/resources/variants/voron2_350_volcano_0.40.inst.cfg +++ b/resources/variants/voron2_350_volcano_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_volcano_0.60.inst.cfg b/resources/variants/voron2_350_volcano_0.60.inst.cfg index 32bf008ead..8ef1ef3266 100644 --- a/resources/variants/voron2_350_volcano_0.60.inst.cfg +++ b/resources/variants/voron2_350_volcano_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_volcano_0.80.inst.cfg b/resources/variants/voron2_350_volcano_0.80.inst.cfg index 17e1684bea..c0e050f744 100644 --- a/resources/variants/voron2_350_volcano_0.80.inst.cfg +++ b/resources/variants/voron2_350_volcano_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_volcano_1.00.inst.cfg b/resources/variants/voron2_350_volcano_1.00.inst.cfg index 2d16ba5ced..316cd4e7f0 100644 --- a/resources/variants/voron2_350_volcano_1.00.inst.cfg +++ b/resources/variants/voron2_350_volcano_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_350_volcano_1.20.inst.cfg b/resources/variants/voron2_350_volcano_1.20.inst.cfg index d242ce77c5..958a358016 100644 --- a/resources/variants/voron2_350_volcano_1.20.inst.cfg +++ b/resources/variants/voron2_350_volcano_1.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_350 [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_v6_0.25.inst.cfg b/resources/variants/voron2_custom_v6_0.25.inst.cfg index db89eedb39..7bd67b81cb 100644 --- a/resources/variants/voron2_custom_v6_0.25.inst.cfg +++ b/resources/variants/voron2_custom_v6_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_v6_0.30.inst.cfg b/resources/variants/voron2_custom_v6_0.30.inst.cfg index 2c9a4a37de..23a32a4ac9 100644 --- a/resources/variants/voron2_custom_v6_0.30.inst.cfg +++ b/resources/variants/voron2_custom_v6_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_v6_0.35.inst.cfg b/resources/variants/voron2_custom_v6_0.35.inst.cfg index 2e20be9c09..7e2f9b8cc8 100644 --- a/resources/variants/voron2_custom_v6_0.35.inst.cfg +++ b/resources/variants/voron2_custom_v6_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_v6_0.40.inst.cfg b/resources/variants/voron2_custom_v6_0.40.inst.cfg index 91e097e2ee..2b6bc16f96 100644 --- a/resources/variants/voron2_custom_v6_0.40.inst.cfg +++ b/resources/variants/voron2_custom_v6_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_v6_0.50.inst.cfg b/resources/variants/voron2_custom_v6_0.50.inst.cfg index 3b1007b55f..2f183b9791 100644 --- a/resources/variants/voron2_custom_v6_0.50.inst.cfg +++ b/resources/variants/voron2_custom_v6_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_v6_0.60.inst.cfg b/resources/variants/voron2_custom_v6_0.60.inst.cfg index 58097cbc74..674f583f64 100644 --- a/resources/variants/voron2_custom_v6_0.60.inst.cfg +++ b/resources/variants/voron2_custom_v6_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_v6_0.80.inst.cfg b/resources/variants/voron2_custom_v6_0.80.inst.cfg index 64b8f53edf..6eb310cc68 100644 --- a/resources/variants/voron2_custom_v6_0.80.inst.cfg +++ b/resources/variants/voron2_custom_v6_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_volcano_0.40.inst.cfg b/resources/variants/voron2_custom_volcano_0.40.inst.cfg index 51dfabd60f..dcae3bcbf7 100644 --- a/resources/variants/voron2_custom_volcano_0.40.inst.cfg +++ b/resources/variants/voron2_custom_volcano_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_volcano_0.60.inst.cfg b/resources/variants/voron2_custom_volcano_0.60.inst.cfg index 02d34d6196..672f842313 100644 --- a/resources/variants/voron2_custom_volcano_0.60.inst.cfg +++ b/resources/variants/voron2_custom_volcano_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_volcano_0.80.inst.cfg b/resources/variants/voron2_custom_volcano_0.80.inst.cfg index 9c6c4b9110..1d4e72a12e 100644 --- a/resources/variants/voron2_custom_volcano_0.80.inst.cfg +++ b/resources/variants/voron2_custom_volcano_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_volcano_1.00.inst.cfg b/resources/variants/voron2_custom_volcano_1.00.inst.cfg index 8f2bce8732..83baa06d71 100644 --- a/resources/variants/voron2_custom_volcano_1.00.inst.cfg +++ b/resources/variants/voron2_custom_volcano_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/voron2_custom_volcano_1.20.inst.cfg b/resources/variants/voron2_custom_volcano_1.20.inst.cfg index fc1cae14d7..3f5f2c77f6 100644 --- a/resources/variants/voron2_custom_volcano_1.20.inst.cfg +++ b/resources/variants/voron2_custom_volcano_1.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = voron2_custom [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/weedo_x40_weedo_0.4.inst.cfg b/resources/variants/weedo_x40_weedo_0.4.inst.cfg new file mode 100644 index 0000000000..89729bc1cd --- /dev/null +++ b/resources/variants/weedo_x40_weedo_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/weedo_x40_weedo_0.6.inst.cfg b/resources/variants/weedo_x40_weedo_0.6.inst.cfg new file mode 100644 index 0000000000..9ca020afbe --- /dev/null +++ b/resources/variants/weedo_x40_weedo_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/weedo_x40_weedo_0.8.inst.cfg b/resources/variants/weedo_x40_weedo_0.8.inst.cfg new file mode 100644 index 0000000000..46d9948e88 --- /dev/null +++ b/resources/variants/weedo_x40_weedo_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = weedo_x40 + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/xyzprinting_base_0.40.inst.cfg b/resources/variants/xyzprinting_base_0.40.inst.cfg new file mode 100644 index 0000000000..ade1dea1f1 --- /dev/null +++ b/resources/variants/xyzprinting_base_0.40.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = xyzprinting_base + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg new file mode 100644 index 0000000000..867fa94351 --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Copper 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_1p0_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Copper 0.4mm Nozzle \ No newline at end of file diff --git a/resources/variants/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg new file mode 100644 index 0000000000..79833c630c --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Copper 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Copper 0.4mm Nozzle \ No newline at end of file diff --git a/resources/variants/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg new file mode 100644 index 0000000000..8d542987a8 --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Hardened Steel 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_jr_1p0a_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Hardened Steel 0.4mm Nozzle \ No newline at end of file diff --git a/resources/variants/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg new file mode 100644 index 0000000000..bb83d95524 --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Copper 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Copper 0.4mm Nozzle diff --git a/resources/variants/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg new file mode 100644 index 0000000000..1cda9d703c --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Hardened Steel 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_jr_pro_xeplus + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Hardened Steel 0.4mm Nozzle diff --git a/resources/variants/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg new file mode 100644 index 0000000000..39ae593be4 --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Copper 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Copper 0.4mm Nozzle diff --git a/resources/variants/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg new file mode 100644 index 0000000000..2d192c729a --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Hardened Steel 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_jr_pro_xplus + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Hardened Steel 0.4mm Nozzle diff --git a/resources/variants/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg new file mode 100644 index 0000000000..1cda468b70 --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Hardened Steel 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Hardened Steel 0.4mm Nozzle \ No newline at end of file diff --git a/resources/variants/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg new file mode 100644 index 0000000000..aaf2d4054d --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Stainless Steel 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_jr_w_pro + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Stainless Steel 0.4mm Nozzle \ No newline at end of file diff --git a/resources/variants/xyzprinting_da_vinci_super_copper_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_super_copper_0.40.inst.cfg new file mode 100644 index 0000000000..e5a37cb1ed --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_super_copper_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Copper 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Copper 0.4mm Nozzle diff --git a/resources/variants/xyzprinting_da_vinci_super_hs_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_super_hs_0.40.inst.cfg new file mode 100644 index 0000000000..bd76c921ec --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_super_hs_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Hardened Steel 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_super + +[metadata] +setting_version = 19 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Hardened Steel 0.4mm Nozzle diff --git a/resources/variants/zav_base_0.20.inst.cfg b/resources/variants/zav_base_0.20.inst.cfg index f42153244b..c1980d6136 100644 --- a/resources/variants/zav_base_0.20.inst.cfg +++ b/resources/variants/zav_base_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_0.25.inst.cfg b/resources/variants/zav_base_0.25.inst.cfg index a646011949..3dd2db8d18 100644 --- a/resources/variants/zav_base_0.25.inst.cfg +++ b/resources/variants/zav_base_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_0.30.inst.cfg b/resources/variants/zav_base_0.30.inst.cfg index 9998d29c73..7f0c5b7c61 100644 --- a/resources/variants/zav_base_0.30.inst.cfg +++ b/resources/variants/zav_base_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_0.35.inst.cfg b/resources/variants/zav_base_0.35.inst.cfg index 8dc1531b20..472e770e6e 100644 --- a/resources/variants/zav_base_0.35.inst.cfg +++ b/resources/variants/zav_base_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_0.40.inst.cfg b/resources/variants/zav_base_0.40.inst.cfg index 984522d4dc..edc1d6c84a 100644 --- a/resources/variants/zav_base_0.40.inst.cfg +++ b/resources/variants/zav_base_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_0.45.inst.cfg b/resources/variants/zav_base_0.45.inst.cfg index f18bc3424f..7b4526eaa5 100644 --- a/resources/variants/zav_base_0.45.inst.cfg +++ b/resources/variants/zav_base_0.45.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_0.50.inst.cfg b/resources/variants/zav_base_0.50.inst.cfg index c3567879d2..b701586d53 100644 --- a/resources/variants/zav_base_0.50.inst.cfg +++ b/resources/variants/zav_base_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_0.60.inst.cfg b/resources/variants/zav_base_0.60.inst.cfg index 86abdb1bbe..7888359f35 100644 --- a/resources/variants/zav_base_0.60.inst.cfg +++ b/resources/variants/zav_base_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_0.80.inst.cfg b/resources/variants/zav_base_0.80.inst.cfg index 2d66ddb48a..15c8d43f8b 100644 --- a/resources/variants/zav_base_0.80.inst.cfg +++ b/resources/variants/zav_base_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_base_1.00.inst.cfg b/resources/variants/zav_base_1.00.inst.cfg index 04997c2f99..70a14ef0b9 100644 --- a/resources/variants/zav_base_1.00.inst.cfg +++ b/resources/variants/zav_base_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_base [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.20.inst.cfg b/resources/variants/zav_big_0.20.inst.cfg index e42bad482a..8e8e55136e 100644 --- a/resources/variants/zav_big_0.20.inst.cfg +++ b/resources/variants/zav_big_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.25.inst.cfg b/resources/variants/zav_big_0.25.inst.cfg index 637c14ea0b..4127940e4c 100644 --- a/resources/variants/zav_big_0.25.inst.cfg +++ b/resources/variants/zav_big_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.30.inst.cfg b/resources/variants/zav_big_0.30.inst.cfg index bfdececc66..f39a99cd28 100644 --- a/resources/variants/zav_big_0.30.inst.cfg +++ b/resources/variants/zav_big_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.35.inst.cfg b/resources/variants/zav_big_0.35.inst.cfg index f0e90d7434..a884306a05 100644 --- a/resources/variants/zav_big_0.35.inst.cfg +++ b/resources/variants/zav_big_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.40.inst.cfg b/resources/variants/zav_big_0.40.inst.cfg index e7aa29b064..72c1ce98ea 100644 --- a/resources/variants/zav_big_0.40.inst.cfg +++ b/resources/variants/zav_big_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.45.inst.cfg b/resources/variants/zav_big_0.45.inst.cfg index 795f0226a9..b87c7dd320 100644 --- a/resources/variants/zav_big_0.45.inst.cfg +++ b/resources/variants/zav_big_0.45.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.50.inst.cfg b/resources/variants/zav_big_0.50.inst.cfg index b79f09a473..7cf6d3819b 100644 --- a/resources/variants/zav_big_0.50.inst.cfg +++ b/resources/variants/zav_big_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.60.inst.cfg b/resources/variants/zav_big_0.60.inst.cfg index 850eb32304..7b720ab931 100644 --- a/resources/variants/zav_big_0.60.inst.cfg +++ b/resources/variants/zav_big_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_0.80.inst.cfg b/resources/variants/zav_big_0.80.inst.cfg index 38d5f456aa..f8b95d10a0 100644 --- a/resources/variants/zav_big_0.80.inst.cfg +++ b/resources/variants/zav_big_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_big_1.00.inst.cfg b/resources/variants/zav_big_1.00.inst.cfg index 17111898c5..38854811bd 100644 --- a/resources/variants/zav_big_1.00.inst.cfg +++ b/resources/variants/zav_big_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_big [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.20.inst.cfg b/resources/variants/zav_bigplus_0.20.inst.cfg index 770a165a40..b0f4536f89 100644 --- a/resources/variants/zav_bigplus_0.20.inst.cfg +++ b/resources/variants/zav_bigplus_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.25.inst.cfg b/resources/variants/zav_bigplus_0.25.inst.cfg index 55f0d6fd55..518ff815b0 100644 --- a/resources/variants/zav_bigplus_0.25.inst.cfg +++ b/resources/variants/zav_bigplus_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.30.inst.cfg b/resources/variants/zav_bigplus_0.30.inst.cfg index 97320e6d94..edf38bde79 100644 --- a/resources/variants/zav_bigplus_0.30.inst.cfg +++ b/resources/variants/zav_bigplus_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.35.inst.cfg b/resources/variants/zav_bigplus_0.35.inst.cfg index 39d0a77587..68fa6c6529 100644 --- a/resources/variants/zav_bigplus_0.35.inst.cfg +++ b/resources/variants/zav_bigplus_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.40.inst.cfg b/resources/variants/zav_bigplus_0.40.inst.cfg index 6d0d76757e..79c85468c8 100644 --- a/resources/variants/zav_bigplus_0.40.inst.cfg +++ b/resources/variants/zav_bigplus_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.45.inst.cfg b/resources/variants/zav_bigplus_0.45.inst.cfg index afe360b863..f3a97261aa 100644 --- a/resources/variants/zav_bigplus_0.45.inst.cfg +++ b/resources/variants/zav_bigplus_0.45.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.50.inst.cfg b/resources/variants/zav_bigplus_0.50.inst.cfg index 00f5d1e541..678d2cd99d 100644 --- a/resources/variants/zav_bigplus_0.50.inst.cfg +++ b/resources/variants/zav_bigplus_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.60.inst.cfg b/resources/variants/zav_bigplus_0.60.inst.cfg index b3c92214d1..2431f719d6 100644 --- a/resources/variants/zav_bigplus_0.60.inst.cfg +++ b/resources/variants/zav_bigplus_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_0.80.inst.cfg b/resources/variants/zav_bigplus_0.80.inst.cfg index 3e3a922a9a..41ac59a1d8 100644 --- a/resources/variants/zav_bigplus_0.80.inst.cfg +++ b/resources/variants/zav_bigplus_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_bigplus_1.00.inst.cfg b/resources/variants/zav_bigplus_1.00.inst.cfg index 3dfb0367ea..9f80a5b610 100644 --- a/resources/variants/zav_bigplus_1.00.inst.cfg +++ b/resources/variants/zav_bigplus_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_bigplus [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.20.inst.cfg b/resources/variants/zav_l_0.20.inst.cfg index dccbbf446a..15681c9e1f 100644 --- a/resources/variants/zav_l_0.20.inst.cfg +++ b/resources/variants/zav_l_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.25.inst.cfg b/resources/variants/zav_l_0.25.inst.cfg index aff8270c9b..1c1cb03350 100644 --- a/resources/variants/zav_l_0.25.inst.cfg +++ b/resources/variants/zav_l_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.30.inst.cfg b/resources/variants/zav_l_0.30.inst.cfg index ff479e17ee..3637a7154a 100644 --- a/resources/variants/zav_l_0.30.inst.cfg +++ b/resources/variants/zav_l_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.35.inst.cfg b/resources/variants/zav_l_0.35.inst.cfg index 701f9bc8a4..1240811b3c 100644 --- a/resources/variants/zav_l_0.35.inst.cfg +++ b/resources/variants/zav_l_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.40.inst.cfg b/resources/variants/zav_l_0.40.inst.cfg index d3987c5a78..b4fbf8a2cb 100644 --- a/resources/variants/zav_l_0.40.inst.cfg +++ b/resources/variants/zav_l_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.45.inst.cfg b/resources/variants/zav_l_0.45.inst.cfg index 558781d169..9b75a29753 100644 --- a/resources/variants/zav_l_0.45.inst.cfg +++ b/resources/variants/zav_l_0.45.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.50.inst.cfg b/resources/variants/zav_l_0.50.inst.cfg index a9afa17b3f..11c65599ba 100644 --- a/resources/variants/zav_l_0.50.inst.cfg +++ b/resources/variants/zav_l_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.60.inst.cfg b/resources/variants/zav_l_0.60.inst.cfg index 289067e11d..fe57db4446 100644 --- a/resources/variants/zav_l_0.60.inst.cfg +++ b/resources/variants/zav_l_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_0.80.inst.cfg b/resources/variants/zav_l_0.80.inst.cfg index 0fad9db4e7..a10f440cfc 100644 --- a/resources/variants/zav_l_0.80.inst.cfg +++ b/resources/variants/zav_l_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_l_1.00.inst.cfg b/resources/variants/zav_l_1.00.inst.cfg index f76e9df29d..ec62c6b38e 100644 --- a/resources/variants/zav_l_1.00.inst.cfg +++ b/resources/variants/zav_l_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_l [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.20.inst.cfg b/resources/variants/zav_max_0.20.inst.cfg index addfdd73fc..cfc9f4c46d 100644 --- a/resources/variants/zav_max_0.20.inst.cfg +++ b/resources/variants/zav_max_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.25.inst.cfg b/resources/variants/zav_max_0.25.inst.cfg index ae5d5cbe72..31bc52c629 100644 --- a/resources/variants/zav_max_0.25.inst.cfg +++ b/resources/variants/zav_max_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.30.inst.cfg b/resources/variants/zav_max_0.30.inst.cfg index 8deb24824e..a29ab2457e 100644 --- a/resources/variants/zav_max_0.30.inst.cfg +++ b/resources/variants/zav_max_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.35.inst.cfg b/resources/variants/zav_max_0.35.inst.cfg index 56cbbf4d69..bdae224874 100644 --- a/resources/variants/zav_max_0.35.inst.cfg +++ b/resources/variants/zav_max_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.40.inst.cfg b/resources/variants/zav_max_0.40.inst.cfg index c51e5276b4..dfb8bf0f55 100644 --- a/resources/variants/zav_max_0.40.inst.cfg +++ b/resources/variants/zav_max_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.45.inst.cfg b/resources/variants/zav_max_0.45.inst.cfg index 8aa5828d0c..e6d8dfe132 100644 --- a/resources/variants/zav_max_0.45.inst.cfg +++ b/resources/variants/zav_max_0.45.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.50.inst.cfg b/resources/variants/zav_max_0.50.inst.cfg index 2997b47573..5137435ef0 100644 --- a/resources/variants/zav_max_0.50.inst.cfg +++ b/resources/variants/zav_max_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.60.inst.cfg b/resources/variants/zav_max_0.60.inst.cfg index 4667f214be..705c69261e 100644 --- a/resources/variants/zav_max_0.60.inst.cfg +++ b/resources/variants/zav_max_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_0.80.inst.cfg b/resources/variants/zav_max_0.80.inst.cfg index f57e3f05cb..f02c8119ea 100644 --- a/resources/variants/zav_max_0.80.inst.cfg +++ b/resources/variants/zav_max_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_max_1.00.inst.cfg b/resources/variants/zav_max_1.00.inst.cfg index 68911890e4..b245e588b2 100644 --- a/resources/variants/zav_max_1.00.inst.cfg +++ b/resources/variants/zav_max_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_max [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.20.inst.cfg b/resources/variants/zav_maxpro_0.20.inst.cfg index 5f677706fa..3e5005fe2d 100644 --- a/resources/variants/zav_maxpro_0.20.inst.cfg +++ b/resources/variants/zav_maxpro_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.25.inst.cfg b/resources/variants/zav_maxpro_0.25.inst.cfg index f21ce6a34d..67664821de 100644 --- a/resources/variants/zav_maxpro_0.25.inst.cfg +++ b/resources/variants/zav_maxpro_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.30.inst.cfg b/resources/variants/zav_maxpro_0.30.inst.cfg index 7f939e9859..e233a18d66 100644 --- a/resources/variants/zav_maxpro_0.30.inst.cfg +++ b/resources/variants/zav_maxpro_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.35.inst.cfg b/resources/variants/zav_maxpro_0.35.inst.cfg index 3488092309..7c5d82e84b 100644 --- a/resources/variants/zav_maxpro_0.35.inst.cfg +++ b/resources/variants/zav_maxpro_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.40.inst.cfg b/resources/variants/zav_maxpro_0.40.inst.cfg index 854c3c54e1..0e65f412be 100644 --- a/resources/variants/zav_maxpro_0.40.inst.cfg +++ b/resources/variants/zav_maxpro_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.45.inst.cfg b/resources/variants/zav_maxpro_0.45.inst.cfg index 8b835256c4..b5bb719f07 100644 --- a/resources/variants/zav_maxpro_0.45.inst.cfg +++ b/resources/variants/zav_maxpro_0.45.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.50.inst.cfg b/resources/variants/zav_maxpro_0.50.inst.cfg index d83005c8a6..c4a1f423ea 100644 --- a/resources/variants/zav_maxpro_0.50.inst.cfg +++ b/resources/variants/zav_maxpro_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.60.inst.cfg b/resources/variants/zav_maxpro_0.60.inst.cfg index fc88761f3f..e81d56511e 100644 --- a/resources/variants/zav_maxpro_0.60.inst.cfg +++ b/resources/variants/zav_maxpro_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_0.80.inst.cfg b/resources/variants/zav_maxpro_0.80.inst.cfg index ca43f966c6..193b64590d 100644 --- a/resources/variants/zav_maxpro_0.80.inst.cfg +++ b/resources/variants/zav_maxpro_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_maxpro_1.00.inst.cfg b/resources/variants/zav_maxpro_1.00.inst.cfg index 0a63f6ffcf..294bc7a155 100644 --- a/resources/variants/zav_maxpro_1.00.inst.cfg +++ b/resources/variants/zav_maxpro_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_maxpro [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.20.inst.cfg b/resources/variants/zav_mini_0.20.inst.cfg index e9c2decc44..b38a0b60fa 100644 --- a/resources/variants/zav_mini_0.20.inst.cfg +++ b/resources/variants/zav_mini_0.20.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.25.inst.cfg b/resources/variants/zav_mini_0.25.inst.cfg index d14341b2e4..5362ac3b9d 100644 --- a/resources/variants/zav_mini_0.25.inst.cfg +++ b/resources/variants/zav_mini_0.25.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.30.inst.cfg b/resources/variants/zav_mini_0.30.inst.cfg index 8d5deff2e2..007f65c8c8 100644 --- a/resources/variants/zav_mini_0.30.inst.cfg +++ b/resources/variants/zav_mini_0.30.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.35.inst.cfg b/resources/variants/zav_mini_0.35.inst.cfg index 923cd0428e..2e4abf389d 100644 --- a/resources/variants/zav_mini_0.35.inst.cfg +++ b/resources/variants/zav_mini_0.35.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.40.inst.cfg b/resources/variants/zav_mini_0.40.inst.cfg index c2afd195d7..6af82f0c8b 100644 --- a/resources/variants/zav_mini_0.40.inst.cfg +++ b/resources/variants/zav_mini_0.40.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.45.inst.cfg b/resources/variants/zav_mini_0.45.inst.cfg index 439c7f36ca..d766d9b612 100644 --- a/resources/variants/zav_mini_0.45.inst.cfg +++ b/resources/variants/zav_mini_0.45.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.50.inst.cfg b/resources/variants/zav_mini_0.50.inst.cfg index 2545efb907..cadf873ee4 100644 --- a/resources/variants/zav_mini_0.50.inst.cfg +++ b/resources/variants/zav_mini_0.50.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.60.inst.cfg b/resources/variants/zav_mini_0.60.inst.cfg index e463987c89..8e4ebd36e1 100644 --- a/resources/variants/zav_mini_0.60.inst.cfg +++ b/resources/variants/zav_mini_0.60.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_0.80.inst.cfg b/resources/variants/zav_mini_0.80.inst.cfg index 5ffed37c19..86cb723e36 100644 --- a/resources/variants/zav_mini_0.80.inst.cfg +++ b/resources/variants/zav_mini_0.80.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/resources/variants/zav_mini_1.00.inst.cfg b/resources/variants/zav_mini_1.00.inst.cfg index 963fd26451..e06e42f931 100644 --- a/resources/variants/zav_mini_1.00.inst.cfg +++ b/resources/variants/zav_mini_1.00.inst.cfg @@ -4,7 +4,7 @@ version = 4 definition = zav_mini [metadata] -setting_version = 17 +setting_version = 19 type = variant hardware_type = nozzle diff --git a/screenshot.png b/screenshot.png deleted file mode 100644 index abdd38998e..0000000000 Binary files a/screenshot.png and /dev/null differ diff --git a/scripts/check_gcode_buffer.py b/scripts/check_gcode_buffer.py index ed093089e4..31ce5a046d 100755 --- a/scripts/check_gcode_buffer.py +++ b/scripts/check_gcode_buffer.py @@ -69,9 +69,9 @@ def calc_distance(pos1, pos2): def calc_acceleration_distance(init_speed: float, target_speed: float, acceleration: float) -> float: """Given the initial speed, the target speed, and the acceleration - - calculate the distance that's neede for the acceleration to finish. + calculate the distance that's needed for the acceleration to finish. """ + if acceleration == 0: return 0.0 return (target_speed ** 2 - init_speed ** 2) / (2 * acceleration) diff --git a/scripts/check_invalid_imports.py b/scripts/check_invalid_imports.py index ba21b9f822..b77a82568d 100644 --- a/scripts/check_invalid_imports.py +++ b/scripts/check_invalid_imports.py @@ -8,7 +8,7 @@ Run this file with the Cura project root as the working directory Checks for invalid imports. When importing from plugins, there will be no problems when running from source, but for some build types the plugins dir is not on the path, so relative imports should be used instead. eg: from ..UltimakerCloudScope import UltimakerCloudScope <-- OK -import plugins.Toolbox.src ... <-- NOT OK +import plugins.Marketplace.src ... <-- NOT OK """ diff --git a/scripts/lionbridge_import.py b/scripts/lionbridge_import.py index 0a7b63e9ac..65b07183a3 100644 --- a/scripts/lionbridge_import.py +++ b/scripts/lionbridge_import.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019 Ultimaker B.V. +# Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import argparse #To get the source directory from command line arguments. @@ -190,6 +190,20 @@ def find_translation(source: str, msgctxt: str, msgid: str) -> str: return "\"\"\n" if __name__ == "__main__": + print("""Usage instructions: + +1. In Smartling, in the Cura project go to the "Files" tab. +2. Select all four .pot files. +3. In the expando above the file list, choose "Download Selected". +4. In the pop-up, select: + - Current translations + - Select all languages + - Organize files: Folders for languages. +5. Download that and extract the .zip archive somewhere. +6. Start this script, with the location you extracted to as a parameter, e.g.: + python3 /path/to/lionbridge_import.py /home/username/Desktop/cura_translations +""") + argparser = argparse.ArgumentParser(description = "Import translation files from Lionbridge.") argparser.add_argument("source") args = argparser.parse_args() diff --git a/scripts/obj_trimmer.py b/scripts/obj_trimmer.py new file mode 100644 index 0000000000..703c648dd5 --- /dev/null +++ b/scripts/obj_trimmer.py @@ -0,0 +1,132 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +import argparse +import os +from typing import Optional, List, TextIO + +""" + Used to reduce the size of obj files used for printer platform models. + + Trims trailing 0 from coordinates + Removes duplicate vertex texture coordinates + Removes any rows that are not a face, vertex or vertex texture +""" + + +def process_obj(input_file: str, output_file: str) -> None: + with open(input_file, "r") as in_obj, open("temp", "w") as temp: + trim_lines(in_obj, temp) + + with open("temp", "r") as temp, open(output_file, "w") as out_obj: + merge_duplicate_vt(temp, out_obj) + + os.remove("temp") + + +def trim_lines(in_obj: TextIO, out_obj: TextIO) -> None: + for line in in_obj: + line = trim_line(line) + if line: + out_obj.write(line + "\n") + + +def trim_line(line: str) -> Optional[str]: + # Discards all rows that are not a vertex ("v"), face ("f") or vertex texture ("vt") + values = line.split() + + if values[0] == "vt": + return trim_vertex_texture(values) + elif values[0] == "f": + return trim_face(values) + elif values[0] == "v": + return trim_vertex(values) + + return + + +def trim_face(values: List[str]) -> str: + # Removes face normals (vn) + # f 15/15/17 15/15/17 14/14/17 -> f 15/15 15/15 14/14 + for i, coordinates in enumerate(values[1:]): + v, vt = coordinates.split("/")[:2] + values[i + 1] = v + "/" + vt + + return " ".join(values) + + +def trim_vertex(values: List[str]) -> str: + # Removes trailing zeros from vertex coordinates + # v 0.044000 0.137000 0.123000 -> v 0.044 0.137 0.123 + for i, coordinate in enumerate(values[1:]): + values[i + 1] = str(float(coordinate)) + return " ".join(values) + + +def trim_vertex_texture(values: List[str]) -> str: + # Removes trailing zeros from vertex texture coordinates + # vt 0.137000 0.123000 -> v 0.137 0.123 + for i, coordinate in enumerate(values[1:]): + values[i + 1] = str(float(coordinate)) + return " ".join(values) + + +def merge_duplicate_vt(in_obj, out_obj): + # Removes duplicate vertex texture ("vt") + # Points references to all deleted copies in face ("f") to a single vertex texture + + # Maps index of all copies of a vt line to the same index + vt_index_mapping = {} + # Maps vt line to index ("vt 0.043 0.137" -> 23) + vt_to_index = {} + + # .obj file indexes start at 1 + vt_index = 1 + skipped_count = 0 + + # First write everything except faces + for line in in_obj.readlines(): + if line[0] == "f": + continue + + if line[:2] == "vt": + if line in vt_to_index.keys(): + # vt with same value has already been written + # this points the current vt index to the one that has been written + vt_index_mapping[vt_index] = vt_to_index[line] + skipped_count += 1 + else: + # vt has not been seen, point vt line to index + vt_to_index[line] = vt_index - skipped_count + vt_index_mapping[vt_index] = vt_index - skipped_count + out_obj.write(line) + + vt_index += 1 + else: + out_obj.write(line) + + # Second pass remaps face vt index + in_obj.seek(0) + for line in in_obj.readlines(): + if line[0] != "f": + continue + + values = line.split() + + for i, coordinates in enumerate(values[1:]): + v, vt = coordinates.split("/")[:2] + vt = int(vt) + + if vt in vt_index_mapping.keys(): + vt = vt_index_mapping[vt] + + values[i + 1] = v + "/" + str(vt) + + out_obj.write(" ".join(values) + "\n") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description = "Reduce the size of a .obj file") + parser.add_argument("input_file", type = str, help = "Input .obj file name") + parser.add_argument("--output_file", default = "output.obj", type = str, help = "Output .obj file name") + args = parser.parse_args() + process_obj(args.input_file, args.output_file) diff --git a/tests/API/TestAccount.py b/tests/API/TestAccount.py index 6780e50b81..1ad73462c2 100644 --- a/tests/API/TestAccount.py +++ b/tests/API/TestAccount.py @@ -80,46 +80,6 @@ def test_errorLoginState(application): account._onLoginStateChanged(False, "OMGZOMG!") account.loginStateChanged.emit.called_with(False) - -def test_userName(user_profile): - account = Account(MagicMock()) - mocked_auth_service = MagicMock() - account._authorization_service = mocked_auth_service - mocked_auth_service.getUserProfile = MagicMock(return_value = user_profile) - - assert account.userName == "username!" - - mocked_auth_service.getUserProfile = MagicMock(return_value=None) - assert account.userName is None - - -def test_profileImageUrl(user_profile): - account = Account(MagicMock()) - mocked_auth_service = MagicMock() - account._authorization_service = mocked_auth_service - mocked_auth_service.getUserProfile = MagicMock(return_value = user_profile) - - assert account.profileImageUrl == "profile_image_url!" - - mocked_auth_service.getUserProfile = MagicMock(return_value=None) - assert account.profileImageUrl is None - - -def test_userProfile(user_profile): - account = Account(MagicMock()) - mocked_auth_service = MagicMock() - account._authorization_service = mocked_auth_service - mocked_auth_service.getUserProfile = MagicMock(return_value=user_profile) - - returned_user_profile = account.userProfile - assert returned_user_profile["username"] == "username!" - assert returned_user_profile["profile_image_url"] == "profile_image_url!" - assert returned_user_profile["user_id"] == "user_id!" - - mocked_auth_service.getUserProfile = MagicMock(return_value=None) - assert account.userProfile is None - - def test_sync_success(): account = Account(MagicMock()) diff --git a/tests/Machines/Models/TestDiscoveredPrintersModel.py b/tests/Machines/Models/TestDiscoveredPrintersModel.py index 1ec777ff88..3407ae575e 100644 --- a/tests/Machines/Models/TestDiscoveredPrintersModel.py +++ b/tests/Machines/Models/TestDiscoveredPrintersModel.py @@ -14,7 +14,7 @@ def discovered_printer() -> DiscoveredPrinter: return DiscoveredPrinter("127.0.0.1", "zomg", "yay", None, "bleep", MagicMock()) -@pytest.mark.skip # TODO: This has some unknown dependency on the applicaiton / registry, which is hard to patch out. (which doesn't mean we shouldn't fix it!) +@pytest.mark.skip # TODO: This has some unknown dependency on the application / registry, which is hard to patch out. (which doesn't mean we shouldn't fix it!) def test_discoveredPrinters(discovered_printer_model): mocked_device = MagicMock() cluster_size = PropertyMock(return_value = 1) diff --git a/tests/PrinterOutput/TestNetworkedPrinterOutputDevice.py b/tests/PrinterOutput/TestNetworkedPrinterOutputDevice.py index 107ed77b51..2a5cc8a2d5 100644 --- a/tests/PrinterOutput/TestNetworkedPrinterOutputDevice.py +++ b/tests/PrinterOutput/TestNetworkedPrinterOutputDevice.py @@ -1,3 +1,6 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + import time from unittest.mock import MagicMock, patch @@ -38,7 +41,7 @@ def test_post(): mocked_network_manager = MagicMock() output_device._manager = mocked_network_manager - # Create a fake reply (we cant use a QReply, since those are abstract C++) + # Create a fake reply (we can't use a QReply, since those are abstract C++) reply = MagicMock() reply.operation = MagicMock(return_value=QNetworkAccessManager.PostOperation) reply.url = MagicMock(return_value=QUrl("127.0.0.1")) @@ -47,7 +50,7 @@ def test_post(): mocked_callback_handler = MagicMock() output_device.post("whatever", "omgzomg", on_finished = mocked_callback_handler.onFinished) - # So we now fake that the request was sucesful. + # So we now fake that the request was successful. output_device._handleOnFinished(reply) # We expect to get a callback regarding this. @@ -60,7 +63,7 @@ def test_get(): mocked_network_manager = MagicMock() output_device._manager = mocked_network_manager - # Create a fake reply (we cant use a QReply, since those are abstract C++) + # Create a fake reply (we can't use a QReply, since those are abstract C++) reply = MagicMock() reply.operation = MagicMock(return_value=QNetworkAccessManager.PostOperation) reply.url = MagicMock(return_value=QUrl("127.0.0.1")) @@ -69,7 +72,7 @@ def test_get(): mocked_callback_handler = MagicMock() output_device.get("whatever", on_finished=mocked_callback_handler.onFinished) - # So we now fake that the request was sucesful. + # So we now fake that the request was successful. output_device._handleOnFinished(reply) # We expect to get a callback regarding this. @@ -82,7 +85,7 @@ def test_delete(): mocked_network_manager = MagicMock() output_device._manager = mocked_network_manager - # Create a fake reply (we cant use a QReply, since those are abstract C++) + # Create a fake reply (we can't use a QReply, since those are abstract C++) reply = MagicMock() reply.operation = MagicMock(return_value=QNetworkAccessManager.PostOperation) reply.url = MagicMock(return_value=QUrl("127.0.0.1")) @@ -91,7 +94,7 @@ def test_delete(): mocked_callback_handler = MagicMock() output_device.delete("whatever", on_finished=mocked_callback_handler.onFinished) - # So we now fake that the request was sucesful. + # So we now fake that the request was successful. output_device._handleOnFinished(reply) # We expect to get a callback regarding this. @@ -104,7 +107,7 @@ def test_put(): mocked_network_manager = MagicMock() output_device._manager = mocked_network_manager - # Create a fake reply (we cant use a QReply, since those are abstract C++) + # Create a fake reply (we can't use a QReply, since those are abstract C++) reply = MagicMock() reply.operation = MagicMock(return_value=QNetworkAccessManager.PostOperation) reply.url = MagicMock(return_value=QUrl("127.0.0.1")) @@ -113,7 +116,7 @@ def test_put(): mocked_callback_handler = MagicMock() output_device.put("whatever", "omgzomg", on_finished = mocked_callback_handler.onFinished) - # So we now fake that the request was sucesful. + # So we now fake that the request was successful. output_device._handleOnFinished(reply) # We expect to get a callback regarding this. @@ -122,8 +125,9 @@ def test_put(): def test_timeout(): with patch("UM.Qt.QtApplication.QtApplication.getInstance"): - output_device = NetworkedPrinterOutputDevice(device_id="test", address="127.0.0.1", properties={}) - output_device.setConnectionState(ConnectionState.Connected) + output_device = NetworkedPrinterOutputDevice(device_id = "test", address = "127.0.0.1", properties = {}) + with patch("cura.CuraApplication.CuraApplication.getInstance"): + output_device.setConnectionState(ConnectionState.Connected) assert output_device.connectionState == ConnectionState.Connected output_device._update() @@ -131,9 +135,8 @@ def test_timeout(): output_device._last_response_time = time.time() - 15 # But we did recently ask for a response! output_device._last_request_time = time.time() - 5 - output_device._update() + with patch("cura.CuraApplication.CuraApplication.getInstance"): + output_device._update() # The connection should now be closed, since it went into timeout. assert output_device.connectionState == ConnectionState.Closed - - diff --git a/tests/PrinterOutput/TestPrinterOutputDevice.py b/tests/PrinterOutput/TestPrinterOutputDevice.py index 7a9e4e2cc5..7913e156b0 100644 --- a/tests/PrinterOutput/TestPrinterOutputDevice.py +++ b/tests/PrinterOutput/TestPrinterOutputDevice.py @@ -1,7 +1,8 @@ -from unittest.mock import MagicMock +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. import pytest -from unittest.mock import patch +from unittest.mock import MagicMock, patch from cura.PrinterOutput.Models.ExtruderConfigurationModel import ExtruderConfigurationModel from cura.PrinterOutput.Models.MaterialOutputModel import MaterialOutputModel @@ -33,7 +34,8 @@ def test_getAndSet(data, printer_output_device): setattr(model, data["attribute"] + "Changed", MagicMock()) # Attempt to set the value - getattr(model, "set" + attribute)(data["value"]) + with patch("cura.CuraApplication.CuraApplication.getInstance"): + getattr(model, "set" + attribute)(data["value"]) # Check if signal fired. signal = getattr(model, data["attribute"] + "Changed") diff --git a/tests/Settings/TestSettingInheritanceManager.py b/tests/Settings/TestSettingInheritanceManager.py index 3589d8b91f..8613095a9a 100644 --- a/tests/Settings/TestSettingInheritanceManager.py +++ b/tests/Settings/TestSettingInheritanceManager.py @@ -84,12 +84,12 @@ def test_getOverridesForExtruderNoGlobalStack(setting_inheritance_manager): def test_settingIsOverwritingInheritanceNoUserState(setting_inheritance_manager, mocked_stack): - # Setting 1 doesn't have a user state, so it cant have an override + # Setting 1 doesn't have a user state, so it can't have an override assert not setting_inheritance_manager._settingIsOverwritingInheritance("setting_1", mocked_stack) def test_settingIsOverwritingInheritanceNotEnabled(setting_inheritance_manager, mocked_stack): - # Setting 2 doesn't have a enabled, so it cant have an override + # Setting 2 doesn't have a enabled, so it can't have an override assert not setting_inheritance_manager._settingIsOverwritingInheritance("setting_2", mocked_stack) diff --git a/tests/Settings/TestSettingVisibilityPresets.py b/tests/Settings/TestSettingVisibilityPresets.py index 017bb6077a..bb4738f4f7 100644 --- a/tests/Settings/TestSettingVisibilityPresets.py +++ b/tests/Settings/TestSettingVisibilityPresets.py @@ -15,11 +15,11 @@ Resources.addStorageType(CuraApplication.ResourceTypes.SettingVisibilityPreset, def test_createVisibilityPresetFromLocalFile(): - # Simple creation test. This is seperated from the visibilityFromPrevious, since we can't check for the contents + # Simple creation test. This is separated from the visibilityFromPrevious, since we can't check for the contents # of the other profiles, since they might change over time. visibility_preset = SettingVisibilityPreset() - visibility_preset.loadFromFile(os.path.join(os.path.dirname(os.path.abspath(__file__)), "setting_visiblity_preset_test.cfg")) + visibility_preset.loadFromFile(os.path.join(os.path.dirname(os.path.abspath(__file__)), "setting_visibility_preset_test.cfg")) assert setting_visibility_preset_test_settings == set(visibility_preset.settings) assert visibility_preset.name == "test" @@ -49,7 +49,7 @@ def test_setActivePreset(): with patch("cura.CuraApplication.CuraApplication.getInstance"): visibility_model = SettingVisibilityPresetsModel(preferences) visibility_model.activePresetChanged = MagicMock() - # Ensure that we start off with basic (since we didn't change anyting just yet!) + # Ensure that we start off with basic (since we didn't change anything just yet!) assert visibility_model.activePreset == "basic" # Everything should be the same. diff --git a/tests/Settings/setting_visiblity_preset_test.cfg b/tests/Settings/setting_visibility_preset_test.cfg similarity index 100% rename from tests/Settings/setting_visiblity_preset_test.cfg rename to tests/Settings/setting_visibility_preset_test.cfg diff --git a/tests/TestBuildVolume.py b/tests/TestBuildVolume.py index 293b8e0270..7bc629962d 100644 --- a/tests/TestBuildVolume.py +++ b/tests/TestBuildVolume.py @@ -57,7 +57,10 @@ class TestCalculateBedAdhesionSize: "machine_depth": {"value": 200}, "skirt_line_count": {"value": 0}, "skirt_gap": {"value": 0}, - "raft_margin": {"value": 0} + "raft_margin": {"value": 0}, + "material_shrinkage_percentage": {"value": 100.0}, + "material_shrinkage_percentage_xy": {"value": 100.0}, + "material_shrinkage_percentage_z": {"value": 100.0}, } def getPropertySideEffect(*args, **kwargs): @@ -93,7 +96,12 @@ class TestCalculateBedAdhesionSize: self.createAndSetGlobalStack(build_volume) patched_dictionary = self.setting_property_dict.copy() patched_dictionary.update(setting_dict) - patched_dictionary.update({"adhesion_extruder_nr": {"value": 0}}) + patched_dictionary.update({ + "skirt_brim_extruder_nr": {"value": 0}, + "raft_base_extruder_nr": {"value": 0}, + "raft_interface_extruder_nr": {"value": 0}, + "raft_surface_extruder_nr": {"value": 0} + }) with patch.dict(self.setting_property_dict, patched_dictionary): assert build_volume._calculateBedAdhesionSize([]) == result @@ -109,6 +117,9 @@ class TestComputeDisallowedAreasStatic: setting_property_dict = {"machine_disallowed_areas": {"value": [[[-200, 112.5], [ -82, 112.5], [ -84, 102.5], [-115, 102.5]]]}, "machine_width": {"value": 200}, "machine_depth": {"value": 200}, + "material_shrinkage_percentage": {"value": 100.0}, + "material_shrinkage_percentage_xy": {"value": 100.0}, + "material_shrinkage_percentage_z": {"value": 100.0}, } def getPropertySideEffect(*args, **kwargs): @@ -152,12 +163,17 @@ class TestComputeDisallowedAreasStatic: class TestUpdateRaftThickness: setting_property_dict = {"raft_base_thickness": {"value": 1}, + "raft_interface_layers": {"value": 2}, "raft_interface_thickness": {"value": 1}, - "raft_surface_layers": {"value": 1}, + "raft_surface_layers": {"value": 3}, "raft_surface_thickness": {"value": 1}, "raft_airgap": {"value": 1}, "layer_0_z_overlap": {"value": 1}, - "adhesion_type": {"value": "raft"}} + "adhesion_type": {"value": "raft"}, + "material_shrinkage_percentage": {"value": 100.0}, + "material_shrinkage_percentage_xy": {"value": 100.0}, + "material_shrinkage_percentage_z": {"value": 100.0}, + } def getPropertySideEffect(*args, **kwargs): properties = TestUpdateRaftThickness.setting_property_dict.get(args[1]) @@ -178,7 +194,7 @@ class TestUpdateRaftThickness: assert build_volume.getRaftThickness() == 0 build_volume._updateRaftThickness() - assert build_volume.getRaftThickness() == 3 + assert build_volume.getRaftThickness() == 6 # 1 base layer of 1mm, 2 interface layers of 1mm each, 3 surface layer of 1mm. assert build_volume.raftThicknessChanged.emit.call_count == 1 def test_adhesionIsNotRaft(self, build_volume: BuildVolume): @@ -208,6 +224,9 @@ class TestComputeDisallowedAreasPrimeBlob: "extruder_prime_pos_x": {"value": 25}, "extruder_prime_pos_y": {"value": 50}, "machine_center_is_zero": {"value": True}, + "material_shrinkage_percentage": {"value": 100.0}, + "material_shrinkage_percentage_xy": {"value": 100.0}, + "material_shrinkage_percentage_z": {"value": 100.0}, } def getPropertySideEffect(*args, **kwargs): @@ -248,7 +267,11 @@ class TestComputeDisallowedAreasPrimeBlob: class TestCalculateExtraZClearance: setting_property_dict = {"retraction_hop": {"value": 12}, - "retraction_hop_enabled": {"value": True}} + "retraction_hop_enabled": {"value": True}, + "material_shrinkage_percentage": {"value": 100.0}, + "material_shrinkage_percentage_xy": {"value": 100.0}, + "material_shrinkage_percentage_z": {"value": 100.0}, + } def getPropertySideEffect(*args, **kwargs): properties = TestCalculateExtraZClearance.setting_property_dict.get(args[1]) @@ -285,6 +308,16 @@ class TestCalculateExtraZClearance: class TestRebuild: + setting_property_dict = { + "material_shrinkage_percentage": {"value": 100.0}, + "material_shrinkage_percentage_xy": {"value": 100.0}, + "material_shrinkage_percentage_z": {"value": 100.0}, + } + def getPropertySideEffect(*args, **kwargs): + properties = TestCalculateExtraZClearance.setting_property_dict.get(args[1]) + if properties: + return properties.get(args[2]) + def test_zeroWidthHeightDepth(self, build_volume: BuildVolume): build_volume.rebuild() assert build_volume.getMeshData() is None @@ -311,6 +344,7 @@ class TestRebuild: build_volume.setDepth(10) mocked_global_stack = MagicMock() + mocked_global_stack.getProperty = MagicMock(side_effect=self.getPropertySideEffect) build_volume._global_container_stack = mocked_global_stack build_volume.getEdgeDisallowedSize = MagicMock(return_value = 0) build_volume.updateNodeBoundaryCheck = MagicMock() @@ -328,7 +362,11 @@ class TestUpdateMachineSizeProperties: setting_property_dict = {"machine_width": {"value": 50}, "machine_depth": {"value": 100}, "machine_height": {"value": 200}, - "machine_shape": {"value": "DERP!"}} + "machine_shape": {"value": "DERP!"}, + "material_shrinkage_percentage": {"value": 100.0}, + "material_shrinkage_percentage_xy": {"value": 100.0}, + "material_shrinkage_percentage_z": {"value": 100.0}, + } def getPropertySideEffect(*args, **kwargs): properties = TestUpdateMachineSizeProperties.setting_property_dict.get(args[1]) diff --git a/tests/TestCuraSceneController.py b/tests/TestCuraSceneController.py index ffffa8ac2a..634ce89d86 100644 --- a/tests/TestCuraSceneController.py +++ b/tests/TestCuraSceneController.py @@ -75,5 +75,5 @@ def test_updateMaxBuildPlate(objects_model, multi_build_plate_model): # And check what happens if we move down again! controller._calcMaxBuildPlate = MagicMock(return_value=2) controller.updateMaxBuildPlate(SceneNode()) - assert controller._active_build_plate == 0 # We don't have any items anywere, so default to 0 + assert controller._active_build_plate == 0 # We don't have any items anywhere, so default to 0 diff --git a/tests/TestMachineAction.py b/tests/TestMachineAction.py index 7dbc6b1270..2bc9659e42 100755 --- a/tests/TestMachineAction.py +++ b/tests/TestMachineAction.py @@ -38,7 +38,7 @@ def test_addDefaultMachineActions(machine_action_manager, global_stack): machine_action_manager.addMachineAction(action) # Only the actions in the definition that were registered first will be added to the machine. - # For the sake of this test, all the actions were previouly added. + # For the sake of this test, all the actions were previously added. machine_action_manager.addDefaultMachineActions(global_stack) definition_id = global_stack.getDefinition().getId() diff --git a/tests/TestOAuth2.py b/tests/TestOAuth2.py index 731a31690a..7d0a4bc5c4 100644 --- a/tests/TestOAuth2.py +++ b/tests/TestOAuth2.py @@ -1,9 +1,11 @@ -from datetime import datetime -from unittest.mock import MagicMock, patch +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. -import requests +from datetime import datetime +from unittest.mock import MagicMock, Mock, patch from PyQt5.QtGui import QDesktopServices +from PyQt5.QtNetwork import QNetworkReply from UM.Preferences import Preferences from cura.OAuth2.AuthorizationHelpers import AuthorizationHelpers, TOKEN_TIMESTAMP_FORMAT @@ -39,6 +41,14 @@ SUCCESSFUL_AUTH_RESPONSE = AuthenticationResponse( success = True ) +EXPIRED_AUTH_RESPONSE = AuthenticationResponse( + access_token = "expired", + refresh_token = "beep?", + received_at = datetime.now().strftime(TOKEN_TIMESTAMP_FORMAT), + expires_in = 300, # 5 minutes should be more than enough for testing + success = True +) + NO_REFRESH_AUTH_RESPONSE = AuthenticationResponse( access_token = "beep", received_at = datetime.now().strftime(TOKEN_TIMESTAMP_FORMAT), @@ -50,12 +60,17 @@ MALFORMED_AUTH_RESPONSE = AuthenticationResponse(success=False) def test_cleanAuthService() -> None: - # Ensure that when setting up an AuthorizationService, no data is set. + """ + Ensure that when setting up an AuthorizationService, no data is set. + """ authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) authorization_service.initialize() - assert authorization_service.getUserProfile() is None - assert authorization_service.getAccessToken() is None + mock_callback = Mock() + authorization_service.getUserProfile(mock_callback) + mock_callback.assert_called_once_with(None) + + assert authorization_service.getAccessToken() is None def test_refreshAccessTokenSuccess(): authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) @@ -68,34 +83,83 @@ def test_refreshAccessTokenSuccess(): authorization_service.refreshAccessToken() assert authorization_service.onAuthStateChanged.emit.called_with(True) - def test__parseJWTNoRefreshToken(): - authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) - with patch.object(AuthorizationService, "getUserProfile", return_value=UserProfile()): - authorization_service._storeAuthData(NO_REFRESH_AUTH_RESPONSE) - assert authorization_service._parseJWT() is None + """ + Tests parsing the user profile if there is no refresh token stored, but there is a normal authentication token. + The request for the user profile using the authentication token should still work normally. + """ + authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) + with patch.object(AuthorizationService, "getUserProfile", return_value = UserProfile()): + authorization_service._storeAuthData(NO_REFRESH_AUTH_RESPONSE) + + mock_callback = Mock() # To log the final profile response. + mock_reply = Mock() # The user profile that the service should respond with. + mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.NoError) + http_mock = Mock() + http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.readJSON = Mock(return_value = {"data": {"user_id": "id_ego_or_superego", "username": "Ghostkeeper"}}) + + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): + authorization_service._parseJWT(mock_callback) + mock_callback.assert_called_once() + profile_reply = mock_callback.call_args_list[0][0][0] + assert profile_reply.user_id == "id_ego_or_superego" + assert profile_reply.username == "Ghostkeeper" def test__parseJWTFailOnRefresh(): + """ + Tries to refresh the authentication token using an invalid refresh token. The request should fail. + """ authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) - with patch.object(AuthorizationService, "getUserProfile", return_value=UserProfile()): + with patch.object(AuthorizationService, "getUserProfile", return_value = UserProfile()): authorization_service._storeAuthData(SUCCESSFUL_AUTH_RESPONSE) - with patch.object(AuthorizationHelpers, "getAccessTokenUsingRefreshToken", return_value=FAILED_AUTH_RESPONSE): - assert authorization_service._parseJWT() is None + mock_callback = Mock() # To log the final profile response. + mock_reply = Mock() # The response that the request should give, containing an error about it failing to authenticate. + mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". + http_mock = Mock() + http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.post = lambda url, data, headers_dict, callback, error_callback: callback(mock_reply) + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): + authorization_service._parseJWT(mock_callback) + mock_callback.assert_called_once_with(None) def test__parseJWTSucceedOnRefresh(): + """ + Tries to refresh the authentication token using a valid refresh token. The request should succeed. + """ authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) authorization_service.initialize() - with patch.object(AuthorizationService, "getUserProfile", return_value=UserProfile()): - authorization_service._storeAuthData(SUCCESSFUL_AUTH_RESPONSE) + with patch.object(AuthorizationService, "getUserProfile", return_value = UserProfile()): + authorization_service._storeAuthData(EXPIRED_AUTH_RESPONSE) - with patch.object(AuthorizationHelpers, "getAccessTokenUsingRefreshToken", return_value=SUCCESSFUL_AUTH_RESPONSE): - with patch.object(AuthorizationHelpers, "parseJWT", MagicMock(return_value = None)) as mocked_parseJWT: - authorization_service._parseJWT() - mocked_parseJWT.assert_called_with("beep") + mock_callback = Mock() # To log the final profile response. + mock_reply_success = Mock() # The reply should be a failure when using the expired access token, but succeed when using the refresh token. + mock_reply_success.error = Mock(return_value = QNetworkReply.NetworkError.NoError) + mock_reply_failure = Mock() + mock_reply_failure.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) + http_mock = Mock() + def mock_get(url, headers_dict, callback, error_callback): + if(headers_dict == {"Authorization": "Bearer beep"}): + callback(mock_reply_success) + else: + callback(mock_reply_failure) + http_mock.get = mock_get + http_mock.readJSON = Mock(return_value = {"data": {"user_id": "user_idea", "username": "Ghostkeeper"}}) + def mock_refresh(self, refresh_token, callback): # Refreshing gives a valid token. + callback(SUCCESSFUL_AUTH_RESPONSE) + with patch("cura.OAuth2.AuthorizationHelpers.AuthorizationHelpers.getAccessTokenUsingRefreshToken", mock_refresh): + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): + authorization_service._parseJWT(mock_callback) + + mock_callback.assert_called_once() + profile_reply = mock_callback.call_args_list[0][0][0] + assert profile_reply.user_id == "user_idea" + assert profile_reply.username == "Ghostkeeper" def test_initialize(): original_preference = MagicMock() @@ -105,17 +169,28 @@ def test_initialize(): initialize_preferences.addPreference.assert_called_once_with("test/auth_data", "{}") original_preference.addPreference.assert_not_called() - def test_refreshAccessTokenFailed(): + """ + Test if the authentication is reset once the refresh token fails to refresh access. + """ authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) authorization_service.initialize() - with patch.object(AuthorizationService, "getUserProfile", return_value=UserProfile()): - authorization_service._storeAuthData(SUCCESSFUL_AUTH_RESPONSE) - authorization_service.onAuthStateChanged.emit = MagicMock() - with patch.object(AuthorizationHelpers, "getAccessTokenUsingRefreshToken", return_value=FAILED_AUTH_RESPONSE): - authorization_service.refreshAccessToken() - assert authorization_service.onAuthStateChanged.emit.called_with(False) + def mock_refresh(self, refresh_token, callback): # Refreshing gives a valid token. + callback(FAILED_AUTH_RESPONSE) + mock_reply = Mock() # The response that the request should give, containing an error about it failing to authenticate. + mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". + http_mock = Mock() + http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.post = lambda url, data, headers_dict, callback, error_callback: callback(mock_reply) + + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): + authorization_service._storeAuthData(SUCCESSFUL_AUTH_RESPONSE) + authorization_service.onAuthStateChanged.emit = MagicMock() + with patch("cura.OAuth2.AuthorizationHelpers.AuthorizationHelpers.getAccessTokenUsingRefreshToken", mock_refresh): + authorization_service.refreshAccessToken() + assert authorization_service.onAuthStateChanged.emit.called_with(False) def test_refreshAccesTokenWithoutData(): authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) @@ -124,14 +199,6 @@ def test_refreshAccesTokenWithoutData(): authorization_service.refreshAccessToken() authorization_service.onAuthStateChanged.emit.assert_not_called() - -def test_userProfileException(): - authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) - authorization_service.initialize() - authorization_service._parseJWT = MagicMock(side_effect=requests.exceptions.ConnectionError) - assert authorization_service.getUserProfile() is None - - def test_failedLogin() -> None: authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) authorization_service.onAuthenticationError.emit = MagicMock() @@ -151,8 +218,7 @@ def test_failedLogin() -> None: assert authorization_service.getUserProfile() is None assert authorization_service.getAccessToken() is None - -@patch.object(AuthorizationService, "getUserProfile", return_value=UserProfile()) +@patch.object(AuthorizationService, "getUserProfile") def test_storeAuthData(get_user_profile) -> None: preferences = Preferences() authorization_service = AuthorizationService(OAUTH_SETTINGS, preferences) @@ -170,7 +236,6 @@ def test_storeAuthData(get_user_profile) -> None: second_auth_service.loadAuthDataFromPreferences() assert second_auth_service.getAccessToken() == SUCCESSFUL_AUTH_RESPONSE.access_token - @patch.object(LocalAuthorizationServer, "stop") @patch.object(LocalAuthorizationServer, "start") @patch.object(QDesktopServices, "openUrl") @@ -188,7 +253,6 @@ def test_localAuthServer(QDesktopServices_openUrl, start_auth_server, stop_auth_ # Ensure that it stopped the server. assert stop_auth_server.call_count == 1 - def test_loginAndLogout() -> None: preferences = Preferences() authorization_service = AuthorizationService(OAUTH_SETTINGS, preferences) @@ -196,8 +260,14 @@ def test_loginAndLogout() -> None: authorization_service.onAuthStateChanged.emit = MagicMock() authorization_service.initialize() + mock_reply = Mock() # The user profile that the service should respond with. + mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.NoError) + http_mock = Mock() + http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.readJSON = Mock(return_value = {"data": {"user_id": "di_resu", "username": "Emanresu"}}) + # Let the service think there was a successful response - with patch.object(AuthorizationHelpers, "parseJWT", return_value=UserProfile()): + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): authorization_service._onAuthStateChanged(SUCCESSFUL_AUTH_RESPONSE) # Ensure that the error signal was not triggered @@ -205,7 +275,10 @@ def test_loginAndLogout() -> None: # Since we said that it went right this time, validate that we got a signal. assert authorization_service.onAuthStateChanged.emit.call_count == 1 - assert authorization_service.getUserProfile() is not None + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): + def callback(profile): + assert profile is not None + authorization_service.getUserProfile(callback) assert authorization_service.getAccessToken() == "beep" # Check that we stored the authentication data, so next time the user won't have to log in again. @@ -214,19 +287,22 @@ def test_loginAndLogout() -> None: # We're logged in now, also check if logging out works authorization_service.deleteAuthData() assert authorization_service.onAuthStateChanged.emit.call_count == 2 - assert authorization_service.getUserProfile() is None + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): + def callback(profile): + assert profile is None + authorization_service.getUserProfile(callback) # Ensure the data is gone after we logged out. assert preferences.getValue("test/auth_data") == "{}" - def test_wrongServerResponses() -> None: authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) authorization_service.initialize() - with patch.object(AuthorizationHelpers, "parseJWT", return_value=UserProfile()): - authorization_service._onAuthStateChanged(MALFORMED_AUTH_RESPONSE) - assert authorization_service.getUserProfile() is None + authorization_service._onAuthStateChanged(MALFORMED_AUTH_RESPONSE) + def callback(profile): + assert profile is None + authorization_service.getUserProfile(callback) def test__generate_auth_url() -> None: preferences = Preferences() @@ -238,7 +314,7 @@ def test__generate_auth_url() -> None: "response_type": "code" } auth_url = authorization_service._generate_auth_url(query_parameters_dict, force_browser_logout = False) - assert MYCLOUD_LOGOFF_URL + "?next=" not in auth_url + assert MYCLOUD_LOGOFF_URL + "&next=" not in auth_url auth_url = authorization_service._generate_auth_url(query_parameters_dict, force_browser_logout = True) - assert MYCLOUD_LOGOFF_URL + "?next=" in auth_url + assert MYCLOUD_LOGOFF_URL + "&next=" in auth_url diff --git a/tests/TestThemes.py b/tests/TestThemes.py new file mode 100644 index 0000000000..a84d94298c --- /dev/null +++ b/tests/TestThemes.py @@ -0,0 +1,33 @@ +# Copyright (c) 2021 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import json # To parse the deprecated icons files. +import os # To find the theme folders. +import pytest + +theme_base = os.path.join(os.path.split(__file__)[0], "..", "resources", "themes") +theme_paths = [os.path.join(theme_base, theme_folder) for theme_folder in os.listdir(theme_base) if os.path.isdir(os.path.join(theme_base, theme_folder))] + +@pytest.mark.parametrize("theme_path", theme_paths) +def test_deprecatedIconsExist(theme_path: str) -> None: + icons_folder = os.path.join(theme_path, "icons") + deprecated_icons_file = os.path.join(icons_folder, "deprecated_icons.json") + if not os.path.exists(deprecated_icons_file): + return # No deprecated icons file, there is nothing to go wrong. + + # Find out which icons exist in this theme file. + existing_icons = {} + for size in [subfolder for subfolder in os.listdir(icons_folder) if os.path.isdir(os.path.join(icons_folder, subfolder))]: + existing_icons[size] = set(os.path.splitext(fname)[0] for fname in os.listdir(os.path.join(icons_folder, size))) + + with open(deprecated_icons_file) as f: + deprecated_icons = json.load(f) + + for entry in deprecated_icons.values(): + assert "new_icon" in entry # For each deprecated icon we must know which icon replaced it. + new_icon = entry["new_icon"] + assert "size" in entry + size = entry["size"] + + assert size in existing_icons # The replacement icon must have a size that exists. + assert new_icon in existing_icons[size] # The new icon must exist for that size.